diff --git a/grammar.js b/grammar.js index 08a5f45..19822b9 100644 --- a/grammar.js +++ b/grammar.js @@ -1585,6 +1585,7 @@ function _command_rule(parenthesized) { choice( field("head", seq(optional(PUNC().caret), $.cmd_identifier)), field("head", seq(PUNC().caret, $._stringish)), + field("head", alias(choice(...INTERNAL()), $.cmd_identifier)), ), repeat(seq(sep, optional($._cmd_arg))), ), @@ -2160,6 +2161,405 @@ function STATEMENT_PREC() { }; } +/// internal commands +function INTERNAL() { + return [ + "ansi gradient", + "ansi link", + "ansi strip", + "bits and", + "bits not", + "bits or", + "bits rol", + "bits ror", + "bits shl", + "bits shr", + "bits xor", + "bytes add", + "bytes at", + "bytes build", + "bytes collect", + "bytes ends-with", + "bytes index-of", + "bytes length", + "bytes remove", + "bytes replace", + "bytes reverse", + "bytes starts-with", + "commandline edit", + "commandline get-cursor", + "commandline set-cursor", + "config env", + "config nu", + "config reset", + "date format", + "date humanize", + "date list-timezone", + "date now", + "date to-record", + "date to-table", + "date to-timezone", + "debug info", + "debug profile", + "decode base32", + "decode base32hex", + "decode base64", + "decode hex", + "detect columns", + "drop column", + "drop nth", + "dt add", + "dt diff", + "dt format", + "dt now", + "dt part", + "dt to", + "dt utcnow", + "each while", + "encode base32", + "encode base32hex", + "encode base64", + "encode hex", + "error make", + "explore ir", + "format date", + "format duration", + "format filesize", + "format pattern", + "from bz2", + "from csv", + "from eml", + "from gz", + "from ics", + "from ini", + "from json", + "from msgpack", + "from msgpackz", + "from nuon", + "from ods", + "from parquet", + "from plist", + "from png", + "from ssv", + "from toml", + "from tsv", + "from url", + "from vcf", + "from xlsx", + "from xml", + "from xz", + "from yaml", + "from yml", + "from zst", + "hash md5", + "hash sha256", + "help aliases", + "help commands", + "help escapes", + "help externs", + "help modules", + "help operators", + "history import", + "history session", + "http delete", + "http get", + "http head", + "http options", + "http patch", + "http post", + "http put", + "input list", + "input listen", + "into binary", + "into bits", + "into bool", + "into cell-path", + "into datetime", + "into duration", + "into filesize", + "into float", + "into glob", + "into int", + "into record", + "into sqlite", + "into string", + "into value", + "json path", + "keybindings default", + "keybindings list", + "keybindings listen", + "math abs", + "math arccos", + "math arccosh", + "math arcsin", + "math arcsinh", + "math arctan", + "math arctanh", + "math avg", + "math ceil", + "math cos", + "math cosh", + "math exp", + "math floor", + "math ln", + "math log", + "math max", + "math median", + "math min", + "math mode", + "math product", + "math round", + "math sin", + "math sinh", + "math sqrt", + "math stddev", + "math sum", + "math tan", + "math tanh", + "math variance", + "metadata access", + "metadata set", + "path basename", + "path dirname", + "path exists", + "path expand", + "path join", + "path parse", + "path relative-to", + "path split", + "path type", + "plugin add", + "plugin list", + "plugin rm", + "plugin stop", + "polars agg", + "polars agg-groups", + "polars all-false", + "polars all-true", + "polars append", + "polars arg-max", + "polars arg-min", + "polars arg-sort", + "polars arg-true", + "polars arg-unique", + "polars arg-where", + "polars as", + "polars as-date", + "polars as-datetime", + "polars cache", + "polars cast", + "polars col", + "polars collect", + "polars columns", + "polars concat", + "polars concat-str", + "polars contains", + "polars count", + "polars count-null", + "polars cumulative", + "polars datepart", + "polars decimal", + "polars drop", + "polars drop-duplicates", + "polars drop-nulls", + "polars dummies", + "polars explode", + "polars expr-not", + "polars fetch", + "polars fill-nan", + "polars fill-null", + "polars filter", + "polars filter-with", + "polars first", + "polars flatten", + "polars get", + "polars get-day", + "polars get-hour", + "polars get-minute", + "polars get-month", + "polars get-nanosecond", + "polars get-ordinal", + "polars get-second", + "polars get-week", + "polars get-weekday", + "polars get-year", + "polars group-by", + "polars implode", + "polars integer", + "polars into-df", + "polars into-lazy", + "polars into-nu", + "polars is-duplicated", + "polars is-in", + "polars is-not-null", + "polars is-null", + "polars is-unique", + "polars join", + "polars last", + "polars len", + "polars lit", + "polars lowercase", + "polars max", + "polars mean", + "polars median", + "polars min", + "polars n-unique", + "polars not", + "polars open", + "polars otherwise", + "polars pivot", + "polars profile", + "polars quantile", + "polars query", + "polars rename", + "polars replace", + "polars replace-all", + "polars reverse", + "polars rolling", + "polars sample", + "polars save", + "polars schema", + "polars select", + "polars set", + "polars set-with-idx", + "polars shape", + "polars shift", + "polars slice", + "polars sort-by", + "polars std", + "polars store-get", + "polars store-ls", + "polars store-rm", + "polars str-join", + "polars str-lengths", + "polars str-slice", + "polars strftime", + "polars sum", + "polars summary", + "polars take", + "polars unique", + "polars unnest", + "polars unpivot", + "polars uppercase", + "polars value-counts", + "polars var", + "polars when", + "polars with-column", + "query db", + "query git", + "query json", + "query web", + "query webpage-info", + "query xml", + "random binary", + "random bool", + "random chars", + "random dice", + "random float", + "random int", + "random uuid", + "roll down", + "roll left", + "roll right", + "roll up", + "scope aliases", + "scope commands", + "scope engine-stats", + "scope externs", + "scope modules", + "scope variables", + "seq char", + "seq date", + "skip until", + "skip while", + "split cell-path", + "split chars", + "split column", + "split list", + "split row", + "split words", + "stor create", + "stor delete", + "stor export", + "stor import", + "stor insert", + "stor open", + "stor reset", + "stor update", + "str bexpand", + "str camel-case", + "str capitalize", + "str compress", + "str contains", + "str decompress", + "str dedent", + "str deunicode", + "str distance", + "str downcase", + "str ends-with", + "str expand", + "str indent", + "str index-of", + "str join", + "str kebab-case", + "str length", + "str pascal-case", + "str replace", + "str reverse", + "str screaming-snake-case", + "str similarity", + "str snake-case", + "str starts-with", + "str stats", + "str substring", + "str title-case", + "str trim", + "str upcase", + "str wrap", + "sys cpu", + "sys disks", + "sys host", + "sys mem", + "sys net", + "sys temp", + "sys users", + "take until", + "take while", + "term query", + "term size", + "to bz2", + "to csv", + "to gz", + "to html", + "to json", + "to md", + "to msgpack", + "to msgpackz", + "to nuon", + "to parquet", + "to plist", + "to png", + "to text", + "to toml", + "to tsv", + "to xml", + "to xz", + "to yaml", + "to zst", + "update cells", + "url build-query", + "url decode", + "url encode", + "url join", + "url parse", + "url split-query", + "view files", + "view ir", + "view source", + "view span", + ]; +} + /// map of operators and their precedence function TABLE() { const multiplicatives = [ diff --git a/src/grammar.json b/src/grammar.json index fea706b..1a77ef3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -14625,85 +14625,3257 @@ } ] } - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_cmd_arg" - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - ] - } - }, - "_command_parenthesized": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "head", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "cmd_identifier" - } - ] - } }, { "type": "FIELD", "name": "head", "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "SYMBOL", - "name": "_stringish" - } - ] + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ansi gradient" + }, + { + "type": "STRING", + "value": "ansi link" + }, + { + "type": "STRING", + "value": "ansi strip" + }, + { + "type": "STRING", + "value": "bits and" + }, + { + "type": "STRING", + "value": "bits not" + }, + { + "type": "STRING", + "value": "bits or" + }, + { + "type": "STRING", + "value": "bits rol" + }, + { + "type": "STRING", + "value": "bits ror" + }, + { + "type": "STRING", + "value": "bits shl" + }, + { + "type": "STRING", + "value": "bits shr" + }, + { + "type": "STRING", + "value": "bits xor" + }, + { + "type": "STRING", + "value": "bytes add" + }, + { + "type": "STRING", + "value": "bytes at" + }, + { + "type": "STRING", + "value": "bytes build" + }, + { + "type": "STRING", + "value": "bytes collect" + }, + { + "type": "STRING", + "value": "bytes ends-with" + }, + { + "type": "STRING", + "value": "bytes index-of" + }, + { + "type": "STRING", + "value": "bytes length" + }, + { + "type": "STRING", + "value": "bytes remove" + }, + { + "type": "STRING", + "value": "bytes replace" + }, + { + "type": "STRING", + "value": "bytes reverse" + }, + { + "type": "STRING", + "value": "bytes starts-with" + }, + { + "type": "STRING", + "value": "commandline edit" + }, + { + "type": "STRING", + "value": "commandline get-cursor" + }, + { + "type": "STRING", + "value": "commandline set-cursor" + }, + { + "type": "STRING", + "value": "config env" + }, + { + "type": "STRING", + "value": "config nu" + }, + { + "type": "STRING", + "value": "config reset" + }, + { + "type": "STRING", + "value": "date format" + }, + { + "type": "STRING", + "value": "date humanize" + }, + { + "type": "STRING", + "value": "date list-timezone" + }, + { + "type": "STRING", + "value": "date now" + }, + { + "type": "STRING", + "value": "date to-record" + }, + { + "type": "STRING", + "value": "date to-table" + }, + { + "type": "STRING", + "value": "date to-timezone" + }, + { + "type": "STRING", + "value": "debug info" + }, + { + "type": "STRING", + "value": "debug profile" + }, + { + "type": "STRING", + "value": "decode base32" + }, + { + "type": "STRING", + "value": "decode base32hex" + }, + { + "type": "STRING", + "value": "decode base64" + }, + { + "type": "STRING", + "value": "decode hex" + }, + { + "type": "STRING", + "value": "detect columns" + }, + { + "type": "STRING", + "value": "drop column" + }, + { + "type": "STRING", + "value": "drop nth" + }, + { + "type": "STRING", + "value": "dt add" + }, + { + "type": "STRING", + "value": "dt diff" + }, + { + "type": "STRING", + "value": "dt format" + }, + { + "type": "STRING", + "value": "dt now" + }, + { + "type": "STRING", + "value": "dt part" + }, + { + "type": "STRING", + "value": "dt to" + }, + { + "type": "STRING", + "value": "dt utcnow" + }, + { + "type": "STRING", + "value": "each while" + }, + { + "type": "STRING", + "value": "encode base32" + }, + { + "type": "STRING", + "value": "encode base32hex" + }, + { + "type": "STRING", + "value": "encode base64" + }, + { + "type": "STRING", + "value": "encode hex" + }, + { + "type": "STRING", + "value": "error make" + }, + { + "type": "STRING", + "value": "explore ir" + }, + { + "type": "STRING", + "value": "format date" + }, + { + "type": "STRING", + "value": "format duration" + }, + { + "type": "STRING", + "value": "format filesize" + }, + { + "type": "STRING", + "value": "format pattern" + }, + { + "type": "STRING", + "value": "from bz2" + }, + { + "type": "STRING", + "value": "from csv" + }, + { + "type": "STRING", + "value": "from eml" + }, + { + "type": "STRING", + "value": "from gz" + }, + { + "type": "STRING", + "value": "from ics" + }, + { + "type": "STRING", + "value": "from ini" + }, + { + "type": "STRING", + "value": "from json" + }, + { + "type": "STRING", + "value": "from msgpack" + }, + { + "type": "STRING", + "value": "from msgpackz" + }, + { + "type": "STRING", + "value": "from nuon" + }, + { + "type": "STRING", + "value": "from ods" + }, + { + "type": "STRING", + "value": "from parquet" + }, + { + "type": "STRING", + "value": "from plist" + }, + { + "type": "STRING", + "value": "from png" + }, + { + "type": "STRING", + "value": "from ssv" + }, + { + "type": "STRING", + "value": "from toml" + }, + { + "type": "STRING", + "value": "from tsv" + }, + { + "type": "STRING", + "value": "from url" + }, + { + "type": "STRING", + "value": "from vcf" + }, + { + "type": "STRING", + "value": "from xlsx" + }, + { + "type": "STRING", + "value": "from xml" + }, + { + "type": "STRING", + "value": "from xz" + }, + { + "type": "STRING", + "value": "from yaml" + }, + { + "type": "STRING", + "value": "from yml" + }, + { + "type": "STRING", + "value": "from zst" + }, + { + "type": "STRING", + "value": "hash md5" + }, + { + "type": "STRING", + "value": "hash sha256" + }, + { + "type": "STRING", + "value": "help aliases" + }, + { + "type": "STRING", + "value": "help commands" + }, + { + "type": "STRING", + "value": "help escapes" + }, + { + "type": "STRING", + "value": "help externs" + }, + { + "type": "STRING", + "value": "help modules" + }, + { + "type": "STRING", + "value": "help operators" + }, + { + "type": "STRING", + "value": "history import" + }, + { + "type": "STRING", + "value": "history session" + }, + { + "type": "STRING", + "value": "http delete" + }, + { + "type": "STRING", + "value": "http get" + }, + { + "type": "STRING", + "value": "http head" + }, + { + "type": "STRING", + "value": "http options" + }, + { + "type": "STRING", + "value": "http patch" + }, + { + "type": "STRING", + "value": "http post" + }, + { + "type": "STRING", + "value": "http put" + }, + { + "type": "STRING", + "value": "input list" + }, + { + "type": "STRING", + "value": "input listen" + }, + { + "type": "STRING", + "value": "into binary" + }, + { + "type": "STRING", + "value": "into bits" + }, + { + "type": "STRING", + "value": "into bool" + }, + { + "type": "STRING", + "value": "into cell-path" + }, + { + "type": "STRING", + "value": "into datetime" + }, + { + "type": "STRING", + "value": "into duration" + }, + { + "type": "STRING", + "value": "into filesize" + }, + { + "type": "STRING", + "value": "into float" + }, + { + "type": "STRING", + "value": "into glob" + }, + { + "type": "STRING", + "value": "into int" + }, + { + "type": "STRING", + "value": "into record" + }, + { + "type": "STRING", + "value": "into sqlite" + }, + { + "type": "STRING", + "value": "into string" + }, + { + "type": "STRING", + "value": "into value" + }, + { + "type": "STRING", + "value": "json path" + }, + { + "type": "STRING", + "value": "keybindings default" + }, + { + "type": "STRING", + "value": "keybindings list" + }, + { + "type": "STRING", + "value": "keybindings listen" + }, + { + "type": "STRING", + "value": "math abs" + }, + { + "type": "STRING", + "value": "math arccos" + }, + { + "type": "STRING", + "value": "math arccosh" + }, + { + "type": "STRING", + "value": "math arcsin" + }, + { + "type": "STRING", + "value": "math arcsinh" + }, + { + "type": "STRING", + "value": "math arctan" + }, + { + "type": "STRING", + "value": "math arctanh" + }, + { + "type": "STRING", + "value": "math avg" + }, + { + "type": "STRING", + "value": "math ceil" + }, + { + "type": "STRING", + "value": "math cos" + }, + { + "type": "STRING", + "value": "math cosh" + }, + { + "type": "STRING", + "value": "math exp" + }, + { + "type": "STRING", + "value": "math floor" + }, + { + "type": "STRING", + "value": "math ln" + }, + { + "type": "STRING", + "value": "math log" + }, + { + "type": "STRING", + "value": "math max" + }, + { + "type": "STRING", + "value": "math median" + }, + { + "type": "STRING", + "value": "math min" + }, + { + "type": "STRING", + "value": "math mode" + }, + { + "type": "STRING", + "value": "math product" + }, + { + "type": "STRING", + "value": "math round" + }, + { + "type": "STRING", + "value": "math sin" + }, + { + "type": "STRING", + "value": "math sinh" + }, + { + "type": "STRING", + "value": "math sqrt" + }, + { + "type": "STRING", + "value": "math stddev" + }, + { + "type": "STRING", + "value": "math sum" + }, + { + "type": "STRING", + "value": "math tan" + }, + { + "type": "STRING", + "value": "math tanh" + }, + { + "type": "STRING", + "value": "math variance" + }, + { + "type": "STRING", + "value": "metadata access" + }, + { + "type": "STRING", + "value": "metadata set" + }, + { + "type": "STRING", + "value": "path basename" + }, + { + "type": "STRING", + "value": "path dirname" + }, + { + "type": "STRING", + "value": "path exists" + }, + { + "type": "STRING", + "value": "path expand" + }, + { + "type": "STRING", + "value": "path join" + }, + { + "type": "STRING", + "value": "path parse" + }, + { + "type": "STRING", + "value": "path relative-to" + }, + { + "type": "STRING", + "value": "path split" + }, + { + "type": "STRING", + "value": "path type" + }, + { + "type": "STRING", + "value": "plugin add" + }, + { + "type": "STRING", + "value": "plugin list" + }, + { + "type": "STRING", + "value": "plugin rm" + }, + { + "type": "STRING", + "value": "plugin stop" + }, + { + "type": "STRING", + "value": "polars agg" + }, + { + "type": "STRING", + "value": "polars agg-groups" + }, + { + "type": "STRING", + "value": "polars all-false" + }, + { + "type": "STRING", + "value": "polars all-true" + }, + { + "type": "STRING", + "value": "polars append" + }, + { + "type": "STRING", + "value": "polars arg-max" + }, + { + "type": "STRING", + "value": "polars arg-min" + }, + { + "type": "STRING", + "value": "polars arg-sort" + }, + { + "type": "STRING", + "value": "polars arg-true" + }, + { + "type": "STRING", + "value": "polars arg-unique" + }, + { + "type": "STRING", + "value": "polars arg-where" + }, + { + "type": "STRING", + "value": "polars as" + }, + { + "type": "STRING", + "value": "polars as-date" + }, + { + "type": "STRING", + "value": "polars as-datetime" + }, + { + "type": "STRING", + "value": "polars cache" + }, + { + "type": "STRING", + "value": "polars cast" + }, + { + "type": "STRING", + "value": "polars col" + }, + { + "type": "STRING", + "value": "polars collect" + }, + { + "type": "STRING", + "value": "polars columns" + }, + { + "type": "STRING", + "value": "polars concat" + }, + { + "type": "STRING", + "value": "polars concat-str" + }, + { + "type": "STRING", + "value": "polars contains" + }, + { + "type": "STRING", + "value": "polars count" + }, + { + "type": "STRING", + "value": "polars count-null" + }, + { + "type": "STRING", + "value": "polars cumulative" + }, + { + "type": "STRING", + "value": "polars datepart" + }, + { + "type": "STRING", + "value": "polars decimal" + }, + { + "type": "STRING", + "value": "polars drop" + }, + { + "type": "STRING", + "value": "polars drop-duplicates" + }, + { + "type": "STRING", + "value": "polars drop-nulls" + }, + { + "type": "STRING", + "value": "polars dummies" + }, + { + "type": "STRING", + "value": "polars explode" + }, + { + "type": "STRING", + "value": "polars expr-not" + }, + { + "type": "STRING", + "value": "polars fetch" + }, + { + "type": "STRING", + "value": "polars fill-nan" + }, + { + "type": "STRING", + "value": "polars fill-null" + }, + { + "type": "STRING", + "value": "polars filter" + }, + { + "type": "STRING", + "value": "polars filter-with" + }, + { + "type": "STRING", + "value": "polars first" + }, + { + "type": "STRING", + "value": "polars flatten" + }, + { + "type": "STRING", + "value": "polars get" + }, + { + "type": "STRING", + "value": "polars get-day" + }, + { + "type": "STRING", + "value": "polars get-hour" + }, + { + "type": "STRING", + "value": "polars get-minute" + }, + { + "type": "STRING", + "value": "polars get-month" + }, + { + "type": "STRING", + "value": "polars get-nanosecond" + }, + { + "type": "STRING", + "value": "polars get-ordinal" + }, + { + "type": "STRING", + "value": "polars get-second" + }, + { + "type": "STRING", + "value": "polars get-week" + }, + { + "type": "STRING", + "value": "polars get-weekday" + }, + { + "type": "STRING", + "value": "polars get-year" + }, + { + "type": "STRING", + "value": "polars group-by" + }, + { + "type": "STRING", + "value": "polars implode" + }, + { + "type": "STRING", + "value": "polars integer" + }, + { + "type": "STRING", + "value": "polars into-df" + }, + { + "type": "STRING", + "value": "polars into-lazy" + }, + { + "type": "STRING", + "value": "polars into-nu" + }, + { + "type": "STRING", + "value": "polars is-duplicated" + }, + { + "type": "STRING", + "value": "polars is-in" + }, + { + "type": "STRING", + "value": "polars is-not-null" + }, + { + "type": "STRING", + "value": "polars is-null" + }, + { + "type": "STRING", + "value": "polars is-unique" + }, + { + "type": "STRING", + "value": "polars join" + }, + { + "type": "STRING", + "value": "polars last" + }, + { + "type": "STRING", + "value": "polars len" + }, + { + "type": "STRING", + "value": "polars lit" + }, + { + "type": "STRING", + "value": "polars lowercase" + }, + { + "type": "STRING", + "value": "polars max" + }, + { + "type": "STRING", + "value": "polars mean" + }, + { + "type": "STRING", + "value": "polars median" + }, + { + "type": "STRING", + "value": "polars min" + }, + { + "type": "STRING", + "value": "polars n-unique" + }, + { + "type": "STRING", + "value": "polars not" + }, + { + "type": "STRING", + "value": "polars open" + }, + { + "type": "STRING", + "value": "polars otherwise" + }, + { + "type": "STRING", + "value": "polars pivot" + }, + { + "type": "STRING", + "value": "polars profile" + }, + { + "type": "STRING", + "value": "polars quantile" + }, + { + "type": "STRING", + "value": "polars query" + }, + { + "type": "STRING", + "value": "polars rename" + }, + { + "type": "STRING", + "value": "polars replace" + }, + { + "type": "STRING", + "value": "polars replace-all" + }, + { + "type": "STRING", + "value": "polars reverse" + }, + { + "type": "STRING", + "value": "polars rolling" + }, + { + "type": "STRING", + "value": "polars sample" + }, + { + "type": "STRING", + "value": "polars save" + }, + { + "type": "STRING", + "value": "polars schema" + }, + { + "type": "STRING", + "value": "polars select" + }, + { + "type": "STRING", + "value": "polars set" + }, + { + "type": "STRING", + "value": "polars set-with-idx" + }, + { + "type": "STRING", + "value": "polars shape" + }, + { + "type": "STRING", + "value": "polars shift" + }, + { + "type": "STRING", + "value": "polars slice" + }, + { + "type": "STRING", + "value": "polars sort-by" + }, + { + "type": "STRING", + "value": "polars std" + }, + { + "type": "STRING", + "value": "polars store-get" + }, + { + "type": "STRING", + "value": "polars store-ls" + }, + { + "type": "STRING", + "value": "polars store-rm" + }, + { + "type": "STRING", + "value": "polars str-join" + }, + { + "type": "STRING", + "value": "polars str-lengths" + }, + { + "type": "STRING", + "value": "polars str-slice" + }, + { + "type": "STRING", + "value": "polars strftime" + }, + { + "type": "STRING", + "value": "polars sum" + }, + { + "type": "STRING", + "value": "polars summary" + }, + { + "type": "STRING", + "value": "polars take" + }, + { + "type": "STRING", + "value": "polars unique" + }, + { + "type": "STRING", + "value": "polars unnest" + }, + { + "type": "STRING", + "value": "polars unpivot" + }, + { + "type": "STRING", + "value": "polars uppercase" + }, + { + "type": "STRING", + "value": "polars value-counts" + }, + { + "type": "STRING", + "value": "polars var" + }, + { + "type": "STRING", + "value": "polars when" + }, + { + "type": "STRING", + "value": "polars with-column" + }, + { + "type": "STRING", + "value": "query db" + }, + { + "type": "STRING", + "value": "query git" + }, + { + "type": "STRING", + "value": "query json" + }, + { + "type": "STRING", + "value": "query web" + }, + { + "type": "STRING", + "value": "query webpage-info" + }, + { + "type": "STRING", + "value": "query xml" + }, + { + "type": "STRING", + "value": "random binary" + }, + { + "type": "STRING", + "value": "random bool" + }, + { + "type": "STRING", + "value": "random chars" + }, + { + "type": "STRING", + "value": "random dice" + }, + { + "type": "STRING", + "value": "random float" + }, + { + "type": "STRING", + "value": "random int" + }, + { + "type": "STRING", + "value": "random uuid" + }, + { + "type": "STRING", + "value": "roll down" + }, + { + "type": "STRING", + "value": "roll left" + }, + { + "type": "STRING", + "value": "roll right" + }, + { + "type": "STRING", + "value": "roll up" + }, + { + "type": "STRING", + "value": "scope aliases" + }, + { + "type": "STRING", + "value": "scope commands" + }, + { + "type": "STRING", + "value": "scope engine-stats" + }, + { + "type": "STRING", + "value": "scope externs" + }, + { + "type": "STRING", + "value": "scope modules" + }, + { + "type": "STRING", + "value": "scope variables" + }, + { + "type": "STRING", + "value": "seq char" + }, + { + "type": "STRING", + "value": "seq date" + }, + { + "type": "STRING", + "value": "skip until" + }, + { + "type": "STRING", + "value": "skip while" + }, + { + "type": "STRING", + "value": "split cell-path" + }, + { + "type": "STRING", + "value": "split chars" + }, + { + "type": "STRING", + "value": "split column" + }, + { + "type": "STRING", + "value": "split list" + }, + { + "type": "STRING", + "value": "split row" + }, + { + "type": "STRING", + "value": "split words" + }, + { + "type": "STRING", + "value": "stor create" + }, + { + "type": "STRING", + "value": "stor delete" + }, + { + "type": "STRING", + "value": "stor export" + }, + { + "type": "STRING", + "value": "stor import" + }, + { + "type": "STRING", + "value": "stor insert" + }, + { + "type": "STRING", + "value": "stor open" + }, + { + "type": "STRING", + "value": "stor reset" + }, + { + "type": "STRING", + "value": "stor update" + }, + { + "type": "STRING", + "value": "str bexpand" + }, + { + "type": "STRING", + "value": "str camel-case" + }, + { + "type": "STRING", + "value": "str capitalize" + }, + { + "type": "STRING", + "value": "str compress" + }, + { + "type": "STRING", + "value": "str contains" + }, + { + "type": "STRING", + "value": "str decompress" + }, + { + "type": "STRING", + "value": "str dedent" + }, + { + "type": "STRING", + "value": "str deunicode" + }, + { + "type": "STRING", + "value": "str distance" + }, + { + "type": "STRING", + "value": "str downcase" + }, + { + "type": "STRING", + "value": "str ends-with" + }, + { + "type": "STRING", + "value": "str expand" + }, + { + "type": "STRING", + "value": "str indent" + }, + { + "type": "STRING", + "value": "str index-of" + }, + { + "type": "STRING", + "value": "str join" + }, + { + "type": "STRING", + "value": "str kebab-case" + }, + { + "type": "STRING", + "value": "str length" + }, + { + "type": "STRING", + "value": "str pascal-case" + }, + { + "type": "STRING", + "value": "str replace" + }, + { + "type": "STRING", + "value": "str reverse" + }, + { + "type": "STRING", + "value": "str screaming-snake-case" + }, + { + "type": "STRING", + "value": "str similarity" + }, + { + "type": "STRING", + "value": "str snake-case" + }, + { + "type": "STRING", + "value": "str starts-with" + }, + { + "type": "STRING", + "value": "str stats" + }, + { + "type": "STRING", + "value": "str substring" + }, + { + "type": "STRING", + "value": "str title-case" + }, + { + "type": "STRING", + "value": "str trim" + }, + { + "type": "STRING", + "value": "str upcase" + }, + { + "type": "STRING", + "value": "str wrap" + }, + { + "type": "STRING", + "value": "sys cpu" + }, + { + "type": "STRING", + "value": "sys disks" + }, + { + "type": "STRING", + "value": "sys host" + }, + { + "type": "STRING", + "value": "sys mem" + }, + { + "type": "STRING", + "value": "sys net" + }, + { + "type": "STRING", + "value": "sys temp" + }, + { + "type": "STRING", + "value": "sys users" + }, + { + "type": "STRING", + "value": "take until" + }, + { + "type": "STRING", + "value": "take while" + }, + { + "type": "STRING", + "value": "term query" + }, + { + "type": "STRING", + "value": "term size" + }, + { + "type": "STRING", + "value": "to bz2" + }, + { + "type": "STRING", + "value": "to csv" + }, + { + "type": "STRING", + "value": "to gz" + }, + { + "type": "STRING", + "value": "to html" + }, + { + "type": "STRING", + "value": "to json" + }, + { + "type": "STRING", + "value": "to md" + }, + { + "type": "STRING", + "value": "to msgpack" + }, + { + "type": "STRING", + "value": "to msgpackz" + }, + { + "type": "STRING", + "value": "to nuon" + }, + { + "type": "STRING", + "value": "to parquet" + }, + { + "type": "STRING", + "value": "to plist" + }, + { + "type": "STRING", + "value": "to png" + }, + { + "type": "STRING", + "value": "to text" + }, + { + "type": "STRING", + "value": "to toml" + }, + { + "type": "STRING", + "value": "to tsv" + }, + { + "type": "STRING", + "value": "to xml" + }, + { + "type": "STRING", + "value": "to xz" + }, + { + "type": "STRING", + "value": "to yaml" + }, + { + "type": "STRING", + "value": "to zst" + }, + { + "type": "STRING", + "value": "update cells" + }, + { + "type": "STRING", + "value": "url build-query" + }, + { + "type": "STRING", + "value": "url decode" + }, + { + "type": "STRING", + "value": "url encode" + }, + { + "type": "STRING", + "value": "url join" + }, + { + "type": "STRING", + "value": "url parse" + }, + { + "type": "STRING", + "value": "url split-query" + }, + { + "type": "STRING", + "value": "view files" + }, + { + "type": "STRING", + "value": "view ir" + }, + { + "type": "STRING", + "value": "view source" + }, + { + "type": "STRING", + "value": "view span" + } + ] + }, + "named": true, + "value": "cmd_identifier" + } + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_space" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_cmd_arg" + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + } + }, + "_command_parenthesized": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "cmd_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "head", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "SYMBOL", + "name": "_stringish" + } + ] + } + }, + { + "type": "FIELD", + "name": "head", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "ansi gradient" + }, + { + "type": "STRING", + "value": "ansi link" + }, + { + "type": "STRING", + "value": "ansi strip" + }, + { + "type": "STRING", + "value": "bits and" + }, + { + "type": "STRING", + "value": "bits not" + }, + { + "type": "STRING", + "value": "bits or" + }, + { + "type": "STRING", + "value": "bits rol" + }, + { + "type": "STRING", + "value": "bits ror" + }, + { + "type": "STRING", + "value": "bits shl" + }, + { + "type": "STRING", + "value": "bits shr" + }, + { + "type": "STRING", + "value": "bits xor" + }, + { + "type": "STRING", + "value": "bytes add" + }, + { + "type": "STRING", + "value": "bytes at" + }, + { + "type": "STRING", + "value": "bytes build" + }, + { + "type": "STRING", + "value": "bytes collect" + }, + { + "type": "STRING", + "value": "bytes ends-with" + }, + { + "type": "STRING", + "value": "bytes index-of" + }, + { + "type": "STRING", + "value": "bytes length" + }, + { + "type": "STRING", + "value": "bytes remove" + }, + { + "type": "STRING", + "value": "bytes replace" + }, + { + "type": "STRING", + "value": "bytes reverse" + }, + { + "type": "STRING", + "value": "bytes starts-with" + }, + { + "type": "STRING", + "value": "commandline edit" + }, + { + "type": "STRING", + "value": "commandline get-cursor" + }, + { + "type": "STRING", + "value": "commandline set-cursor" + }, + { + "type": "STRING", + "value": "config env" + }, + { + "type": "STRING", + "value": "config nu" + }, + { + "type": "STRING", + "value": "config reset" + }, + { + "type": "STRING", + "value": "date format" + }, + { + "type": "STRING", + "value": "date humanize" + }, + { + "type": "STRING", + "value": "date list-timezone" + }, + { + "type": "STRING", + "value": "date now" + }, + { + "type": "STRING", + "value": "date to-record" + }, + { + "type": "STRING", + "value": "date to-table" + }, + { + "type": "STRING", + "value": "date to-timezone" + }, + { + "type": "STRING", + "value": "debug info" + }, + { + "type": "STRING", + "value": "debug profile" + }, + { + "type": "STRING", + "value": "decode base32" + }, + { + "type": "STRING", + "value": "decode base32hex" + }, + { + "type": "STRING", + "value": "decode base64" + }, + { + "type": "STRING", + "value": "decode hex" + }, + { + "type": "STRING", + "value": "detect columns" + }, + { + "type": "STRING", + "value": "drop column" + }, + { + "type": "STRING", + "value": "drop nth" + }, + { + "type": "STRING", + "value": "dt add" + }, + { + "type": "STRING", + "value": "dt diff" + }, + { + "type": "STRING", + "value": "dt format" + }, + { + "type": "STRING", + "value": "dt now" + }, + { + "type": "STRING", + "value": "dt part" + }, + { + "type": "STRING", + "value": "dt to" + }, + { + "type": "STRING", + "value": "dt utcnow" + }, + { + "type": "STRING", + "value": "each while" + }, + { + "type": "STRING", + "value": "encode base32" + }, + { + "type": "STRING", + "value": "encode base32hex" + }, + { + "type": "STRING", + "value": "encode base64" + }, + { + "type": "STRING", + "value": "encode hex" + }, + { + "type": "STRING", + "value": "error make" + }, + { + "type": "STRING", + "value": "explore ir" + }, + { + "type": "STRING", + "value": "format date" + }, + { + "type": "STRING", + "value": "format duration" + }, + { + "type": "STRING", + "value": "format filesize" + }, + { + "type": "STRING", + "value": "format pattern" + }, + { + "type": "STRING", + "value": "from bz2" + }, + { + "type": "STRING", + "value": "from csv" + }, + { + "type": "STRING", + "value": "from eml" + }, + { + "type": "STRING", + "value": "from gz" + }, + { + "type": "STRING", + "value": "from ics" + }, + { + "type": "STRING", + "value": "from ini" + }, + { + "type": "STRING", + "value": "from json" + }, + { + "type": "STRING", + "value": "from msgpack" + }, + { + "type": "STRING", + "value": "from msgpackz" + }, + { + "type": "STRING", + "value": "from nuon" + }, + { + "type": "STRING", + "value": "from ods" + }, + { + "type": "STRING", + "value": "from parquet" + }, + { + "type": "STRING", + "value": "from plist" + }, + { + "type": "STRING", + "value": "from png" + }, + { + "type": "STRING", + "value": "from ssv" + }, + { + "type": "STRING", + "value": "from toml" + }, + { + "type": "STRING", + "value": "from tsv" + }, + { + "type": "STRING", + "value": "from url" + }, + { + "type": "STRING", + "value": "from vcf" + }, + { + "type": "STRING", + "value": "from xlsx" + }, + { + "type": "STRING", + "value": "from xml" + }, + { + "type": "STRING", + "value": "from xz" + }, + { + "type": "STRING", + "value": "from yaml" + }, + { + "type": "STRING", + "value": "from yml" + }, + { + "type": "STRING", + "value": "from zst" + }, + { + "type": "STRING", + "value": "hash md5" + }, + { + "type": "STRING", + "value": "hash sha256" + }, + { + "type": "STRING", + "value": "help aliases" + }, + { + "type": "STRING", + "value": "help commands" + }, + { + "type": "STRING", + "value": "help escapes" + }, + { + "type": "STRING", + "value": "help externs" + }, + { + "type": "STRING", + "value": "help modules" + }, + { + "type": "STRING", + "value": "help operators" + }, + { + "type": "STRING", + "value": "history import" + }, + { + "type": "STRING", + "value": "history session" + }, + { + "type": "STRING", + "value": "http delete" + }, + { + "type": "STRING", + "value": "http get" + }, + { + "type": "STRING", + "value": "http head" + }, + { + "type": "STRING", + "value": "http options" + }, + { + "type": "STRING", + "value": "http patch" + }, + { + "type": "STRING", + "value": "http post" + }, + { + "type": "STRING", + "value": "http put" + }, + { + "type": "STRING", + "value": "input list" + }, + { + "type": "STRING", + "value": "input listen" + }, + { + "type": "STRING", + "value": "into binary" + }, + { + "type": "STRING", + "value": "into bits" + }, + { + "type": "STRING", + "value": "into bool" + }, + { + "type": "STRING", + "value": "into cell-path" + }, + { + "type": "STRING", + "value": "into datetime" + }, + { + "type": "STRING", + "value": "into duration" + }, + { + "type": "STRING", + "value": "into filesize" + }, + { + "type": "STRING", + "value": "into float" + }, + { + "type": "STRING", + "value": "into glob" + }, + { + "type": "STRING", + "value": "into int" + }, + { + "type": "STRING", + "value": "into record" + }, + { + "type": "STRING", + "value": "into sqlite" + }, + { + "type": "STRING", + "value": "into string" + }, + { + "type": "STRING", + "value": "into value" + }, + { + "type": "STRING", + "value": "json path" + }, + { + "type": "STRING", + "value": "keybindings default" + }, + { + "type": "STRING", + "value": "keybindings list" + }, + { + "type": "STRING", + "value": "keybindings listen" + }, + { + "type": "STRING", + "value": "math abs" + }, + { + "type": "STRING", + "value": "math arccos" + }, + { + "type": "STRING", + "value": "math arccosh" + }, + { + "type": "STRING", + "value": "math arcsin" + }, + { + "type": "STRING", + "value": "math arcsinh" + }, + { + "type": "STRING", + "value": "math arctan" + }, + { + "type": "STRING", + "value": "math arctanh" + }, + { + "type": "STRING", + "value": "math avg" + }, + { + "type": "STRING", + "value": "math ceil" + }, + { + "type": "STRING", + "value": "math cos" + }, + { + "type": "STRING", + "value": "math cosh" + }, + { + "type": "STRING", + "value": "math exp" + }, + { + "type": "STRING", + "value": "math floor" + }, + { + "type": "STRING", + "value": "math ln" + }, + { + "type": "STRING", + "value": "math log" + }, + { + "type": "STRING", + "value": "math max" + }, + { + "type": "STRING", + "value": "math median" + }, + { + "type": "STRING", + "value": "math min" + }, + { + "type": "STRING", + "value": "math mode" + }, + { + "type": "STRING", + "value": "math product" + }, + { + "type": "STRING", + "value": "math round" + }, + { + "type": "STRING", + "value": "math sin" + }, + { + "type": "STRING", + "value": "math sinh" + }, + { + "type": "STRING", + "value": "math sqrt" + }, + { + "type": "STRING", + "value": "math stddev" + }, + { + "type": "STRING", + "value": "math sum" + }, + { + "type": "STRING", + "value": "math tan" + }, + { + "type": "STRING", + "value": "math tanh" + }, + { + "type": "STRING", + "value": "math variance" + }, + { + "type": "STRING", + "value": "metadata access" + }, + { + "type": "STRING", + "value": "metadata set" + }, + { + "type": "STRING", + "value": "path basename" + }, + { + "type": "STRING", + "value": "path dirname" + }, + { + "type": "STRING", + "value": "path exists" + }, + { + "type": "STRING", + "value": "path expand" + }, + { + "type": "STRING", + "value": "path join" + }, + { + "type": "STRING", + "value": "path parse" + }, + { + "type": "STRING", + "value": "path relative-to" + }, + { + "type": "STRING", + "value": "path split" + }, + { + "type": "STRING", + "value": "path type" + }, + { + "type": "STRING", + "value": "plugin add" + }, + { + "type": "STRING", + "value": "plugin list" + }, + { + "type": "STRING", + "value": "plugin rm" + }, + { + "type": "STRING", + "value": "plugin stop" + }, + { + "type": "STRING", + "value": "polars agg" + }, + { + "type": "STRING", + "value": "polars agg-groups" + }, + { + "type": "STRING", + "value": "polars all-false" + }, + { + "type": "STRING", + "value": "polars all-true" + }, + { + "type": "STRING", + "value": "polars append" + }, + { + "type": "STRING", + "value": "polars arg-max" + }, + { + "type": "STRING", + "value": "polars arg-min" + }, + { + "type": "STRING", + "value": "polars arg-sort" + }, + { + "type": "STRING", + "value": "polars arg-true" + }, + { + "type": "STRING", + "value": "polars arg-unique" + }, + { + "type": "STRING", + "value": "polars arg-where" + }, + { + "type": "STRING", + "value": "polars as" + }, + { + "type": "STRING", + "value": "polars as-date" + }, + { + "type": "STRING", + "value": "polars as-datetime" + }, + { + "type": "STRING", + "value": "polars cache" + }, + { + "type": "STRING", + "value": "polars cast" + }, + { + "type": "STRING", + "value": "polars col" + }, + { + "type": "STRING", + "value": "polars collect" + }, + { + "type": "STRING", + "value": "polars columns" + }, + { + "type": "STRING", + "value": "polars concat" + }, + { + "type": "STRING", + "value": "polars concat-str" + }, + { + "type": "STRING", + "value": "polars contains" + }, + { + "type": "STRING", + "value": "polars count" + }, + { + "type": "STRING", + "value": "polars count-null" + }, + { + "type": "STRING", + "value": "polars cumulative" + }, + { + "type": "STRING", + "value": "polars datepart" + }, + { + "type": "STRING", + "value": "polars decimal" + }, + { + "type": "STRING", + "value": "polars drop" + }, + { + "type": "STRING", + "value": "polars drop-duplicates" + }, + { + "type": "STRING", + "value": "polars drop-nulls" + }, + { + "type": "STRING", + "value": "polars dummies" + }, + { + "type": "STRING", + "value": "polars explode" + }, + { + "type": "STRING", + "value": "polars expr-not" + }, + { + "type": "STRING", + "value": "polars fetch" + }, + { + "type": "STRING", + "value": "polars fill-nan" + }, + { + "type": "STRING", + "value": "polars fill-null" + }, + { + "type": "STRING", + "value": "polars filter" + }, + { + "type": "STRING", + "value": "polars filter-with" + }, + { + "type": "STRING", + "value": "polars first" + }, + { + "type": "STRING", + "value": "polars flatten" + }, + { + "type": "STRING", + "value": "polars get" + }, + { + "type": "STRING", + "value": "polars get-day" + }, + { + "type": "STRING", + "value": "polars get-hour" + }, + { + "type": "STRING", + "value": "polars get-minute" + }, + { + "type": "STRING", + "value": "polars get-month" + }, + { + "type": "STRING", + "value": "polars get-nanosecond" + }, + { + "type": "STRING", + "value": "polars get-ordinal" + }, + { + "type": "STRING", + "value": "polars get-second" + }, + { + "type": "STRING", + "value": "polars get-week" + }, + { + "type": "STRING", + "value": "polars get-weekday" + }, + { + "type": "STRING", + "value": "polars get-year" + }, + { + "type": "STRING", + "value": "polars group-by" + }, + { + "type": "STRING", + "value": "polars implode" + }, + { + "type": "STRING", + "value": "polars integer" + }, + { + "type": "STRING", + "value": "polars into-df" + }, + { + "type": "STRING", + "value": "polars into-lazy" + }, + { + "type": "STRING", + "value": "polars into-nu" + }, + { + "type": "STRING", + "value": "polars is-duplicated" + }, + { + "type": "STRING", + "value": "polars is-in" + }, + { + "type": "STRING", + "value": "polars is-not-null" + }, + { + "type": "STRING", + "value": "polars is-null" + }, + { + "type": "STRING", + "value": "polars is-unique" + }, + { + "type": "STRING", + "value": "polars join" + }, + { + "type": "STRING", + "value": "polars last" + }, + { + "type": "STRING", + "value": "polars len" + }, + { + "type": "STRING", + "value": "polars lit" + }, + { + "type": "STRING", + "value": "polars lowercase" + }, + { + "type": "STRING", + "value": "polars max" + }, + { + "type": "STRING", + "value": "polars mean" + }, + { + "type": "STRING", + "value": "polars median" + }, + { + "type": "STRING", + "value": "polars min" + }, + { + "type": "STRING", + "value": "polars n-unique" + }, + { + "type": "STRING", + "value": "polars not" + }, + { + "type": "STRING", + "value": "polars open" + }, + { + "type": "STRING", + "value": "polars otherwise" + }, + { + "type": "STRING", + "value": "polars pivot" + }, + { + "type": "STRING", + "value": "polars profile" + }, + { + "type": "STRING", + "value": "polars quantile" + }, + { + "type": "STRING", + "value": "polars query" + }, + { + "type": "STRING", + "value": "polars rename" + }, + { + "type": "STRING", + "value": "polars replace" + }, + { + "type": "STRING", + "value": "polars replace-all" + }, + { + "type": "STRING", + "value": "polars reverse" + }, + { + "type": "STRING", + "value": "polars rolling" + }, + { + "type": "STRING", + "value": "polars sample" + }, + { + "type": "STRING", + "value": "polars save" + }, + { + "type": "STRING", + "value": "polars schema" + }, + { + "type": "STRING", + "value": "polars select" + }, + { + "type": "STRING", + "value": "polars set" + }, + { + "type": "STRING", + "value": "polars set-with-idx" + }, + { + "type": "STRING", + "value": "polars shape" + }, + { + "type": "STRING", + "value": "polars shift" + }, + { + "type": "STRING", + "value": "polars slice" + }, + { + "type": "STRING", + "value": "polars sort-by" + }, + { + "type": "STRING", + "value": "polars std" + }, + { + "type": "STRING", + "value": "polars store-get" + }, + { + "type": "STRING", + "value": "polars store-ls" + }, + { + "type": "STRING", + "value": "polars store-rm" + }, + { + "type": "STRING", + "value": "polars str-join" + }, + { + "type": "STRING", + "value": "polars str-lengths" + }, + { + "type": "STRING", + "value": "polars str-slice" + }, + { + "type": "STRING", + "value": "polars strftime" + }, + { + "type": "STRING", + "value": "polars sum" + }, + { + "type": "STRING", + "value": "polars summary" + }, + { + "type": "STRING", + "value": "polars take" + }, + { + "type": "STRING", + "value": "polars unique" + }, + { + "type": "STRING", + "value": "polars unnest" + }, + { + "type": "STRING", + "value": "polars unpivot" + }, + { + "type": "STRING", + "value": "polars uppercase" + }, + { + "type": "STRING", + "value": "polars value-counts" + }, + { + "type": "STRING", + "value": "polars var" + }, + { + "type": "STRING", + "value": "polars when" + }, + { + "type": "STRING", + "value": "polars with-column" + }, + { + "type": "STRING", + "value": "query db" + }, + { + "type": "STRING", + "value": "query git" + }, + { + "type": "STRING", + "value": "query json" + }, + { + "type": "STRING", + "value": "query web" + }, + { + "type": "STRING", + "value": "query webpage-info" + }, + { + "type": "STRING", + "value": "query xml" + }, + { + "type": "STRING", + "value": "random binary" + }, + { + "type": "STRING", + "value": "random bool" + }, + { + "type": "STRING", + "value": "random chars" + }, + { + "type": "STRING", + "value": "random dice" + }, + { + "type": "STRING", + "value": "random float" + }, + { + "type": "STRING", + "value": "random int" + }, + { + "type": "STRING", + "value": "random uuid" + }, + { + "type": "STRING", + "value": "roll down" + }, + { + "type": "STRING", + "value": "roll left" + }, + { + "type": "STRING", + "value": "roll right" + }, + { + "type": "STRING", + "value": "roll up" + }, + { + "type": "STRING", + "value": "scope aliases" + }, + { + "type": "STRING", + "value": "scope commands" + }, + { + "type": "STRING", + "value": "scope engine-stats" + }, + { + "type": "STRING", + "value": "scope externs" + }, + { + "type": "STRING", + "value": "scope modules" + }, + { + "type": "STRING", + "value": "scope variables" + }, + { + "type": "STRING", + "value": "seq char" + }, + { + "type": "STRING", + "value": "seq date" + }, + { + "type": "STRING", + "value": "skip until" + }, + { + "type": "STRING", + "value": "skip while" + }, + { + "type": "STRING", + "value": "split cell-path" + }, + { + "type": "STRING", + "value": "split chars" + }, + { + "type": "STRING", + "value": "split column" + }, + { + "type": "STRING", + "value": "split list" + }, + { + "type": "STRING", + "value": "split row" + }, + { + "type": "STRING", + "value": "split words" + }, + { + "type": "STRING", + "value": "stor create" + }, + { + "type": "STRING", + "value": "stor delete" + }, + { + "type": "STRING", + "value": "stor export" + }, + { + "type": "STRING", + "value": "stor import" + }, + { + "type": "STRING", + "value": "stor insert" + }, + { + "type": "STRING", + "value": "stor open" + }, + { + "type": "STRING", + "value": "stor reset" + }, + { + "type": "STRING", + "value": "stor update" + }, + { + "type": "STRING", + "value": "str bexpand" + }, + { + "type": "STRING", + "value": "str camel-case" + }, + { + "type": "STRING", + "value": "str capitalize" + }, + { + "type": "STRING", + "value": "str compress" + }, + { + "type": "STRING", + "value": "str contains" + }, + { + "type": "STRING", + "value": "str decompress" + }, + { + "type": "STRING", + "value": "str dedent" + }, + { + "type": "STRING", + "value": "str deunicode" + }, + { + "type": "STRING", + "value": "str distance" + }, + { + "type": "STRING", + "value": "str downcase" + }, + { + "type": "STRING", + "value": "str ends-with" + }, + { + "type": "STRING", + "value": "str expand" + }, + { + "type": "STRING", + "value": "str indent" + }, + { + "type": "STRING", + "value": "str index-of" + }, + { + "type": "STRING", + "value": "str join" + }, + { + "type": "STRING", + "value": "str kebab-case" + }, + { + "type": "STRING", + "value": "str length" + }, + { + "type": "STRING", + "value": "str pascal-case" + }, + { + "type": "STRING", + "value": "str replace" + }, + { + "type": "STRING", + "value": "str reverse" + }, + { + "type": "STRING", + "value": "str screaming-snake-case" + }, + { + "type": "STRING", + "value": "str similarity" + }, + { + "type": "STRING", + "value": "str snake-case" + }, + { + "type": "STRING", + "value": "str starts-with" + }, + { + "type": "STRING", + "value": "str stats" + }, + { + "type": "STRING", + "value": "str substring" + }, + { + "type": "STRING", + "value": "str title-case" + }, + { + "type": "STRING", + "value": "str trim" + }, + { + "type": "STRING", + "value": "str upcase" + }, + { + "type": "STRING", + "value": "str wrap" + }, + { + "type": "STRING", + "value": "sys cpu" + }, + { + "type": "STRING", + "value": "sys disks" + }, + { + "type": "STRING", + "value": "sys host" + }, + { + "type": "STRING", + "value": "sys mem" + }, + { + "type": "STRING", + "value": "sys net" + }, + { + "type": "STRING", + "value": "sys temp" + }, + { + "type": "STRING", + "value": "sys users" + }, + { + "type": "STRING", + "value": "take until" + }, + { + "type": "STRING", + "value": "take while" + }, + { + "type": "STRING", + "value": "term query" + }, + { + "type": "STRING", + "value": "term size" + }, + { + "type": "STRING", + "value": "to bz2" + }, + { + "type": "STRING", + "value": "to csv" + }, + { + "type": "STRING", + "value": "to gz" + }, + { + "type": "STRING", + "value": "to html" + }, + { + "type": "STRING", + "value": "to json" + }, + { + "type": "STRING", + "value": "to md" + }, + { + "type": "STRING", + "value": "to msgpack" + }, + { + "type": "STRING", + "value": "to msgpackz" + }, + { + "type": "STRING", + "value": "to nuon" + }, + { + "type": "STRING", + "value": "to parquet" + }, + { + "type": "STRING", + "value": "to plist" + }, + { + "type": "STRING", + "value": "to png" + }, + { + "type": "STRING", + "value": "to text" + }, + { + "type": "STRING", + "value": "to toml" + }, + { + "type": "STRING", + "value": "to tsv" + }, + { + "type": "STRING", + "value": "to xml" + }, + { + "type": "STRING", + "value": "to xz" + }, + { + "type": "STRING", + "value": "to yaml" + }, + { + "type": "STRING", + "value": "to zst" + }, + { + "type": "STRING", + "value": "update cells" + }, + { + "type": "STRING", + "value": "url build-query" + }, + { + "type": "STRING", + "value": "url decode" + }, + { + "type": "STRING", + "value": "url encode" + }, + { + "type": "STRING", + "value": "url join" + }, + { + "type": "STRING", + "value": "url parse" + }, + { + "type": "STRING", + "value": "url split-query" + }, + { + "type": "STRING", + "value": "view files" + }, + { + "type": "STRING", + "value": "view ir" + }, + { + "type": "STRING", + "value": "view source" + }, + { + "type": "STRING", + "value": "view span" + } + ] + }, + "named": true, + "value": "cmd_identifier" } } ] diff --git a/src/parser.c b/src/parser.c index 0e7d9e4..d94569f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8175 +#define STATE_COUNT 8176 #define LARGE_STATE_COUNT 1727 -#define SYMBOL_COUNT 514 +#define SYMBOL_COUNT 907 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 307 +#define TOKEN_COUNT 700 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -291,256 +291,649 @@ enum ts_symbol_identifiers { aux_sym_env_var_token1 = 265, aux_sym_env_var_token2 = 266, anon_sym_CARET = 267, - anon_sym_err_GT = 268, - anon_sym_out_GT = 269, - anon_sym_e_GT = 270, - anon_sym_o_GT = 271, - anon_sym_err_PLUSout_GT = 272, - anon_sym_out_PLUSerr_GT = 273, - anon_sym_o_PLUSe_GT = 274, - anon_sym_e_PLUSo_GT = 275, - anon_sym_err_GT_GT = 276, - anon_sym_out_GT_GT = 277, - anon_sym_e_GT_GT = 278, - anon_sym_o_GT_GT = 279, - anon_sym_err_PLUSout_GT_GT = 280, - anon_sym_out_PLUSerr_GT_GT = 281, - anon_sym_o_PLUSe_GT_GT = 282, - anon_sym_e_PLUSo_GT_GT = 283, - anon_sym_EQ2 = 284, - sym_short_flag_identifier = 285, - sym__unquoted_naive = 286, - aux_sym_unquoted_token1 = 287, - aux_sym_unquoted_token2 = 288, - aux_sym_unquoted_token3 = 289, - aux_sym_unquoted_token4 = 290, - aux_sym__unquoted_in_list_token1 = 291, - aux_sym__unquoted_in_list_token2 = 292, - aux_sym__unquoted_in_list_token3 = 293, - aux_sym__unquoted_in_list_token4 = 294, - aux_sym__unquoted_in_record_token1 = 295, - aux_sym__unquoted_in_record_token2 = 296, - aux_sym__unquoted_in_record_token3 = 297, - aux_sym__unquoted_in_record_token4 = 298, - aux_sym__unquoted_with_expr_token1 = 299, - aux_sym__unquoted_in_list_with_expr_token1 = 300, - aux_sym__unquoted_in_record_with_expr_token1 = 301, - anon_sym_POUND = 302, - aux_sym_comment_token1 = 303, - sym_raw_string_begin = 304, - sym_raw_string_content = 305, - sym_raw_string_end = 306, - sym_nu_script = 307, - sym_shebang = 308, - sym__block_body_statement = 309, - sym__declaration = 310, - sym_decl_alias = 311, - sym_stmt_let = 312, - sym_stmt_mut = 313, - sym_stmt_const = 314, - sym_assignment = 315, - sym__assignment_pattern = 316, - sym__mutable_assignment_pattern = 317, - sym__statement = 318, - sym_pipeline = 319, - sym__block_body_statement_parenthesized = 320, - sym__declaration_parenthesized = 321, - sym_decl_alias_parenthesized = 322, - sym_stmt_let_parenthesized = 323, - sym_stmt_mut_parenthesized = 324, - sym_stmt_const_parenthesized = 325, - sym_assignment_parenthesized = 326, - sym__assignment_pattern_parenthesized = 327, - sym__mutable_assignment_pattern_parenthesized = 328, - sym__statement_parenthesized = 329, - sym_pipeline_parenthesized = 330, - sym__block_body = 331, - sym_cmd_identifier = 332, - sym__command_name = 333, - sym__variable_name = 334, - aux_sym__pipe_separator = 335, - sym_decl_def = 336, - sym_decl_export = 337, - sym_decl_extern = 338, - sym_decl_module = 339, - sym_decl_use = 340, - sym_returns = 341, - sym__one_type = 342, - sym__multiple_types = 343, - sym_parameter_parens = 344, - sym_parameter_bracks = 345, - sym_parameter_pipes = 346, - sym_parameter = 347, - sym__param_name = 348, - sym_param_type = 349, - sym_param_value = 350, - sym__type_annotation = 351, - sym__all_type = 352, - sym_flat_type = 353, - sym_collection_type = 354, - sym_list_type = 355, - sym_param_cmd = 356, - sym_param_rest = 357, - sym_param_opt = 358, - sym_param_long_flag = 359, - sym_flag_capsule = 360, - sym_param_short_flag = 361, - sym__ctrl_statement = 362, - sym__ctrl_expression = 363, - sym__ctrl_expression_parenthesized = 364, - sym_ctrl_for = 365, - sym_ctrl_loop = 366, - sym_ctrl_error = 367, - sym_ctrl_while = 368, - sym_ctrl_do = 369, - sym_ctrl_do_parenthesized = 370, - sym_ctrl_if = 371, - sym_ctrl_if_parenthesized = 372, - sym_ctrl_match = 373, - sym_match_arm = 374, - sym_default_arm = 375, - sym_match_pattern = 376, - sym__match_pattern = 377, - sym_match_guard = 378, - sym__match_pattern_expression = 379, - sym__match_pattern_value = 380, - sym__match_pattern_list = 381, - sym__match_pattern_rest = 382, - sym__match_pattern_record = 383, - sym__match_pattern_record_variable = 384, - sym_ctrl_try = 385, - sym_ctrl_try_parenthesized = 386, - sym_ctrl_return = 387, - sym_pipe_element = 388, - sym_pipe_element_parenthesized = 389, - sym_stmt_source = 390, - sym_stmt_register = 391, - sym__stmt_hide = 392, - sym_hide_mod = 393, - sym_hide_env = 394, - sym__stmt_overlay = 395, - sym_overlay_list = 396, - sym_overlay_hide = 397, - sym_overlay_new = 398, - sym_overlay_use = 399, - sym_scope_pattern = 400, - sym_wild_card = 401, - sym_command_list = 402, - sym_block = 403, - sym__blosure = 404, - sym__where_predicate_lhs = 405, - sym_where_command = 406, - sym_where_command_parenthesized = 407, - sym__binary_predicate = 408, - sym__binary_predicate_parenthesized = 409, - sym__predicate = 410, - sym__expression = 411, - sym__expression_parenthesized = 412, - sym_expr_unary = 413, - sym__expr_unary_minus = 414, - sym_expr_binary = 415, - sym_expr_binary_parenthesized = 416, - sym__expr_binary_expression = 417, - sym__expr_binary_expression_parenthesized = 418, - sym_expr_parenthesized = 419, - sym__spread_parenthesized = 420, - sym__expr_parenthesized_immediate = 421, - sym__parenthesized_body = 422, - sym_val_range = 423, - sym__val_range = 424, - sym__val_range_with_end = 425, - sym__immediate_decimal = 426, - sym__value = 427, - sym_val_nothing = 428, - sym_val_bool = 429, - sym__spread_variable = 430, - sym_val_variable = 431, - sym_val_number = 432, - sym__val_number_decimal = 433, - sym__val_number = 434, - sym_val_duration = 435, - sym_val_filesize = 436, - sym_val_binary = 437, - sym_val_string = 438, - sym__raw_str = 439, - sym__str_double_quotes = 440, - sym_val_interpolated = 441, - sym__inter_single_quotes = 442, - sym__inter_double_quotes = 443, - sym_expr_interpolated = 444, - sym_val_list = 445, - sym__spread_list = 446, - sym_list_body = 447, - sym_val_entry = 448, - sym_val_record = 449, - sym__spread_record = 450, - sym_record_body = 451, - sym_record_entry = 452, - sym__record_key = 453, - sym_val_table = 454, - sym_val_closure = 455, - sym_cell_path = 456, - sym_path = 457, - sym_env_var = 458, - sym_command = 459, - sym__command_parenthesized = 460, - sym__cmd_arg = 461, - sym_redirection = 462, - sym__flags_parenthesized = 463, - sym_short_flag = 464, - sym_long_flag = 465, - sym_unquoted = 466, - sym__unquoted_in_list = 467, - sym__unquoted_in_record = 468, - sym__unquoted_with_expr = 469, - sym__unquoted_in_list_with_expr = 470, - sym__unquoted_in_record_with_expr = 471, - sym__unquoted_anonymous_prefix = 472, - sym_comment = 473, - aux_sym_shebang_repeat1 = 474, - aux_sym_pipeline_repeat1 = 475, - aux_sym_pipeline_parenthesized_repeat1 = 476, - aux_sym__block_body_repeat1 = 477, - aux_sym__block_body_repeat2 = 478, - aux_sym_decl_def_repeat1 = 479, - aux_sym__multiple_types_repeat1 = 480, - aux_sym__multiple_types_repeat2 = 481, - aux_sym_parameter_parens_repeat1 = 482, - aux_sym_parameter_repeat1 = 483, - aux_sym_parameter_repeat2 = 484, - aux_sym_collection_type_repeat1 = 485, - aux_sym_ctrl_do_repeat1 = 486, - aux_sym_ctrl_do_repeat2 = 487, - aux_sym_ctrl_do_parenthesized_repeat1 = 488, - aux_sym_ctrl_do_parenthesized_repeat2 = 489, - aux_sym_ctrl_do_parenthesized_repeat3 = 490, - aux_sym_ctrl_match_repeat1 = 491, - aux_sym_match_pattern_repeat1 = 492, - aux_sym__match_pattern_list_repeat1 = 493, - aux_sym__match_pattern_record_repeat1 = 494, - aux_sym_pipe_element_repeat1 = 495, - aux_sym_pipe_element_repeat2 = 496, - aux_sym_pipe_element_parenthesized_repeat1 = 497, - aux_sym_command_list_repeat1 = 498, - aux_sym__parenthesized_body_repeat1 = 499, - aux_sym__parenthesized_body_repeat2 = 500, - aux_sym_val_binary_repeat1 = 501, - aux_sym__str_double_quotes_repeat1 = 502, - aux_sym__inter_single_quotes_repeat1 = 503, - aux_sym__inter_double_quotes_repeat1 = 504, - aux_sym_list_body_repeat1 = 505, - aux_sym_record_body_repeat1 = 506, - aux_sym_val_table_repeat1 = 507, - aux_sym_cell_path_repeat1 = 508, - aux_sym_command_repeat1 = 509, - aux_sym__command_parenthesized_repeat1 = 510, - aux_sym__unquoted_with_expr_repeat1 = 511, - aux_sym__unquoted_in_list_with_expr_repeat1 = 512, - aux_sym__unquoted_in_record_with_expr_repeat1 = 513, - anon_alias_sym__head = 514, - anon_alias_sym__prefix = 515, - anon_alias_sym__unit = 516, - anon_alias_sym_quoted = 517, + anon_sym_ansigradient = 268, + anon_sym_ansilink = 269, + anon_sym_ansistrip = 270, + anon_sym_bitsand = 271, + anon_sym_bitsnot = 272, + anon_sym_bitsor = 273, + anon_sym_bitsrol = 274, + anon_sym_bitsror = 275, + anon_sym_bitsshl = 276, + anon_sym_bitsshr = 277, + anon_sym_bitsxor = 278, + anon_sym_bytesadd = 279, + anon_sym_bytesat = 280, + anon_sym_bytesbuild = 281, + anon_sym_bytescollect = 282, + anon_sym_bytesends_DASHwith = 283, + anon_sym_bytesindex_DASHof = 284, + anon_sym_byteslength = 285, + anon_sym_bytesremove = 286, + anon_sym_bytesreplace = 287, + anon_sym_bytesreverse = 288, + anon_sym_bytesstarts_DASHwith = 289, + anon_sym_commandlineedit = 290, + anon_sym_commandlineget_DASHcursor = 291, + anon_sym_commandlineset_DASHcursor = 292, + anon_sym_configenv = 293, + anon_sym_confignu = 294, + anon_sym_configreset = 295, + anon_sym_dateformat = 296, + anon_sym_datehumanize = 297, + anon_sym_datelist_DASHtimezone = 298, + anon_sym_datenow = 299, + anon_sym_dateto_DASHrecord = 300, + anon_sym_dateto_DASHtable = 301, + anon_sym_dateto_DASHtimezone = 302, + anon_sym_debuginfo = 303, + anon_sym_debugprofile = 304, + anon_sym_decodebase32 = 305, + anon_sym_decodebase32hex = 306, + anon_sym_decodebase64 = 307, + anon_sym_decodehex = 308, + anon_sym_detectcolumns = 309, + anon_sym_dropcolumn = 310, + anon_sym_dropnth = 311, + anon_sym_dtadd = 312, + anon_sym_dtdiff = 313, + anon_sym_dtformat = 314, + anon_sym_dtnow = 315, + anon_sym_dtpart = 316, + anon_sym_dtto = 317, + anon_sym_dtutcnow = 318, + anon_sym_eachwhile = 319, + anon_sym_encodebase32 = 320, + anon_sym_encodebase32hex = 321, + anon_sym_encodebase64 = 322, + anon_sym_encodehex = 323, + anon_sym_errormake = 324, + anon_sym_exploreir = 325, + anon_sym_formatdate = 326, + anon_sym_formatduration = 327, + anon_sym_formatfilesize = 328, + anon_sym_formatpattern = 329, + anon_sym_frombz2 = 330, + anon_sym_fromcsv = 331, + anon_sym_fromeml = 332, + anon_sym_fromgz = 333, + anon_sym_fromics = 334, + anon_sym_fromini = 335, + anon_sym_fromjson = 336, + anon_sym_frommsgpack = 337, + anon_sym_frommsgpackz = 338, + anon_sym_fromnuon = 339, + anon_sym_fromods = 340, + anon_sym_fromparquet = 341, + anon_sym_fromplist = 342, + anon_sym_frompng = 343, + anon_sym_fromssv = 344, + anon_sym_fromtoml = 345, + anon_sym_fromtsv = 346, + anon_sym_fromurl = 347, + anon_sym_fromvcf = 348, + anon_sym_fromxlsx = 349, + anon_sym_fromxml = 350, + anon_sym_fromxz = 351, + anon_sym_fromyaml = 352, + anon_sym_fromyml = 353, + anon_sym_fromzst = 354, + anon_sym_hashmd5 = 355, + anon_sym_hashsha256 = 356, + anon_sym_helpaliases = 357, + anon_sym_helpcommands = 358, + anon_sym_helpescapes = 359, + anon_sym_helpexterns = 360, + anon_sym_helpmodules = 361, + anon_sym_helpoperators = 362, + anon_sym_historyimport = 363, + anon_sym_historysession = 364, + anon_sym_httpdelete = 365, + anon_sym_httpget = 366, + anon_sym_httphead = 367, + anon_sym_httpoptions = 368, + anon_sym_httppatch = 369, + anon_sym_httppost = 370, + anon_sym_httpput = 371, + anon_sym_inputlist = 372, + anon_sym_inputlisten = 373, + anon_sym_intobinary = 374, + anon_sym_intobits = 375, + anon_sym_intobool = 376, + anon_sym_intocell_DASHpath = 377, + anon_sym_intodatetime = 378, + anon_sym_intoduration = 379, + anon_sym_intofilesize = 380, + anon_sym_intofloat = 381, + anon_sym_intoglob = 382, + anon_sym_intoint = 383, + anon_sym_intorecord = 384, + anon_sym_intosqlite = 385, + anon_sym_intostring = 386, + anon_sym_intovalue = 387, + anon_sym_jsonpath = 388, + anon_sym_keybindingsdefault = 389, + anon_sym_keybindingslist = 390, + anon_sym_keybindingslisten = 391, + anon_sym_mathabs = 392, + anon_sym_matharccos = 393, + anon_sym_matharccosh = 394, + anon_sym_matharcsin = 395, + anon_sym_matharcsinh = 396, + anon_sym_matharctan = 397, + anon_sym_matharctanh = 398, + anon_sym_mathavg = 399, + anon_sym_mathceil = 400, + anon_sym_mathcos = 401, + anon_sym_mathcosh = 402, + anon_sym_mathexp = 403, + anon_sym_mathfloor = 404, + anon_sym_mathln = 405, + anon_sym_mathlog = 406, + anon_sym_mathmax = 407, + anon_sym_mathmedian = 408, + anon_sym_mathmin = 409, + anon_sym_mathmode = 410, + anon_sym_mathproduct = 411, + anon_sym_mathround = 412, + anon_sym_mathsin = 413, + anon_sym_mathsinh = 414, + anon_sym_mathsqrt = 415, + anon_sym_mathstddev = 416, + anon_sym_mathsum = 417, + anon_sym_mathtan = 418, + anon_sym_mathtanh = 419, + anon_sym_mathvariance = 420, + anon_sym_metadataaccess = 421, + anon_sym_metadataset = 422, + anon_sym_pathbasename = 423, + anon_sym_pathdirname = 424, + anon_sym_pathexists = 425, + anon_sym_pathexpand = 426, + anon_sym_pathjoin = 427, + anon_sym_pathparse = 428, + anon_sym_pathrelative_DASHto = 429, + anon_sym_pathsplit = 430, + anon_sym_pathtype = 431, + anon_sym_pluginadd = 432, + anon_sym_pluginlist = 433, + anon_sym_pluginrm = 434, + anon_sym_pluginstop = 435, + anon_sym_polarsagg = 436, + anon_sym_polarsagg_DASHgroups = 437, + anon_sym_polarsall_DASHfalse = 438, + anon_sym_polarsall_DASHtrue = 439, + anon_sym_polarsappend = 440, + anon_sym_polarsarg_DASHmax = 441, + anon_sym_polarsarg_DASHmin = 442, + anon_sym_polarsarg_DASHsort = 443, + anon_sym_polarsarg_DASHtrue = 444, + anon_sym_polarsarg_DASHunique = 445, + anon_sym_polarsarg_DASHwhere = 446, + anon_sym_polarsas = 447, + anon_sym_polarsas_DASHdate = 448, + anon_sym_polarsas_DASHdatetime = 449, + anon_sym_polarscache = 450, + anon_sym_polarscast = 451, + anon_sym_polarscol = 452, + anon_sym_polarscollect = 453, + anon_sym_polarscolumns = 454, + anon_sym_polarsconcat = 455, + anon_sym_polarsconcat_DASHstr = 456, + anon_sym_polarscontains = 457, + anon_sym_polarscount = 458, + anon_sym_polarscount_DASHnull = 459, + anon_sym_polarscumulative = 460, + anon_sym_polarsdatepart = 461, + anon_sym_polarsdecimal = 462, + anon_sym_polarsdrop = 463, + anon_sym_polarsdrop_DASHduplicates = 464, + anon_sym_polarsdrop_DASHnulls = 465, + anon_sym_polarsdummies = 466, + anon_sym_polarsexplode = 467, + anon_sym_polarsexpr_DASHnot = 468, + anon_sym_polarsfetch = 469, + anon_sym_polarsfill_DASHnan = 470, + anon_sym_polarsfill_DASHnull = 471, + anon_sym_polarsfilter = 472, + anon_sym_polarsfilter_DASHwith = 473, + anon_sym_polarsfirst = 474, + anon_sym_polarsflatten = 475, + anon_sym_polarsget = 476, + anon_sym_polarsget_DASHday = 477, + anon_sym_polarsget_DASHhour = 478, + anon_sym_polarsget_DASHminute = 479, + anon_sym_polarsget_DASHmonth = 480, + anon_sym_polarsget_DASHnanosecond = 481, + anon_sym_polarsget_DASHordinal = 482, + anon_sym_polarsget_DASHsecond = 483, + anon_sym_polarsget_DASHweek = 484, + anon_sym_polarsget_DASHweekday = 485, + anon_sym_polarsget_DASHyear = 486, + anon_sym_polarsgroup_DASHby = 487, + anon_sym_polarsimplode = 488, + anon_sym_polarsinteger = 489, + anon_sym_polarsinto_DASHdf = 490, + anon_sym_polarsinto_DASHlazy = 491, + anon_sym_polarsinto_DASHnu = 492, + anon_sym_polarsis_DASHduplicated = 493, + anon_sym_polarsis_DASHin = 494, + anon_sym_polarsis_DASHnot_DASHnull = 495, + anon_sym_polarsis_DASHnull = 496, + anon_sym_polarsis_DASHunique = 497, + anon_sym_polarsjoin = 498, + anon_sym_polarslast = 499, + anon_sym_polarslen = 500, + anon_sym_polarslit = 501, + anon_sym_polarslowercase = 502, + anon_sym_polarsmax = 503, + anon_sym_polarsmean = 504, + anon_sym_polarsmedian = 505, + anon_sym_polarsmin = 506, + anon_sym_polarsn_DASHunique = 507, + anon_sym_polarsnot = 508, + anon_sym_polarsopen = 509, + anon_sym_polarsotherwise = 510, + anon_sym_polarspivot = 511, + anon_sym_polarsprofile = 512, + anon_sym_polarsquantile = 513, + anon_sym_polarsquery = 514, + anon_sym_polarsrename = 515, + anon_sym_polarsreplace = 516, + anon_sym_polarsreplace_DASHall = 517, + anon_sym_polarsreverse = 518, + anon_sym_polarsrolling = 519, + anon_sym_polarssample = 520, + anon_sym_polarssave = 521, + anon_sym_polarsschema = 522, + anon_sym_polarsselect = 523, + anon_sym_polarsset = 524, + anon_sym_polarsset_DASHwith_DASHidx = 525, + anon_sym_polarsshape = 526, + anon_sym_polarsshift = 527, + anon_sym_polarsslice = 528, + anon_sym_polarssort_DASHby = 529, + anon_sym_polarsstd = 530, + anon_sym_polarsstore_DASHget = 531, + anon_sym_polarsstore_DASHls = 532, + anon_sym_polarsstore_DASHrm = 533, + anon_sym_polarsstr_DASHjoin = 534, + anon_sym_polarsstr_DASHlengths = 535, + anon_sym_polarsstr_DASHslice = 536, + anon_sym_polarsstrftime = 537, + anon_sym_polarssum = 538, + anon_sym_polarssummary = 539, + anon_sym_polarstake = 540, + anon_sym_polarsunique = 541, + anon_sym_polarsunnest = 542, + anon_sym_polarsunpivot = 543, + anon_sym_polarsuppercase = 544, + anon_sym_polarsvalue_DASHcounts = 545, + anon_sym_polarsvar = 546, + anon_sym_polarswhen = 547, + anon_sym_polarswith_DASHcolumn = 548, + anon_sym_querydb = 549, + anon_sym_querygit = 550, + anon_sym_queryjson = 551, + anon_sym_queryweb = 552, + anon_sym_querywebpage_DASHinfo = 553, + anon_sym_queryxml = 554, + anon_sym_randombinary = 555, + anon_sym_randombool = 556, + anon_sym_randomchars = 557, + anon_sym_randomdice = 558, + anon_sym_randomfloat = 559, + anon_sym_randomint = 560, + anon_sym_randomuuid = 561, + anon_sym_rolldown = 562, + anon_sym_rollleft = 563, + anon_sym_rollright = 564, + anon_sym_rollup = 565, + anon_sym_scopealiases = 566, + anon_sym_scopecommands = 567, + anon_sym_scopeengine_DASHstats = 568, + anon_sym_scopeexterns = 569, + anon_sym_scopemodules = 570, + anon_sym_scopevariables = 571, + anon_sym_seqchar = 572, + anon_sym_seqdate = 573, + anon_sym_skipuntil = 574, + anon_sym_skipwhile = 575, + anon_sym_splitcell_DASHpath = 576, + anon_sym_splitchars = 577, + anon_sym_splitcolumn = 578, + anon_sym_splitlist = 579, + anon_sym_splitrow = 580, + anon_sym_splitwords = 581, + anon_sym_storcreate = 582, + anon_sym_stordelete = 583, + anon_sym_storexport = 584, + anon_sym_storimport = 585, + anon_sym_storinsert = 586, + anon_sym_storopen = 587, + anon_sym_storreset = 588, + anon_sym_storupdate = 589, + anon_sym_strbexpand = 590, + anon_sym_strcamel_DASHcase = 591, + anon_sym_strcapitalize = 592, + anon_sym_strcompress = 593, + anon_sym_strcontains = 594, + anon_sym_strdecompress = 595, + anon_sym_strdedent = 596, + anon_sym_strdeunicode = 597, + anon_sym_strdistance = 598, + anon_sym_strdowncase = 599, + anon_sym_strends_DASHwith = 600, + anon_sym_strexpand = 601, + anon_sym_strindent = 602, + anon_sym_strindex_DASHof = 603, + anon_sym_strjoin = 604, + anon_sym_strkebab_DASHcase = 605, + anon_sym_strlength = 606, + anon_sym_strpascal_DASHcase = 607, + anon_sym_strreplace = 608, + anon_sym_strreverse = 609, + anon_sym_strscreaming_DASHsnake_DASHcase = 610, + anon_sym_strsimilarity = 611, + anon_sym_strsnake_DASHcase = 612, + anon_sym_strstarts_DASHwith = 613, + anon_sym_strstats = 614, + anon_sym_strsubstring = 615, + anon_sym_strtitle_DASHcase = 616, + anon_sym_strtrim = 617, + anon_sym_strupcase = 618, + anon_sym_strwrap = 619, + anon_sym_syscpu = 620, + anon_sym_sysdisks = 621, + anon_sym_syshost = 622, + anon_sym_sysmem = 623, + anon_sym_sysnet = 624, + anon_sym_systemp = 625, + anon_sym_sysusers = 626, + anon_sym_takeuntil = 627, + anon_sym_takewhile = 628, + anon_sym_termquery = 629, + anon_sym_termsize = 630, + anon_sym_tobz2 = 631, + anon_sym_tocsv = 632, + anon_sym_togz = 633, + anon_sym_tohtml = 634, + anon_sym_tojson = 635, + anon_sym_tomd = 636, + anon_sym_tomsgpack = 637, + anon_sym_tomsgpackz = 638, + anon_sym_tonuon = 639, + anon_sym_toparquet = 640, + anon_sym_toplist = 641, + anon_sym_topng = 642, + anon_sym_totext = 643, + anon_sym_totoml = 644, + anon_sym_totsv = 645, + anon_sym_toxml = 646, + anon_sym_toxz = 647, + anon_sym_toyaml = 648, + anon_sym_tozst = 649, + anon_sym_updatecells = 650, + anon_sym_urlbuild_DASHquery = 651, + anon_sym_urldecode = 652, + anon_sym_urlencode = 653, + anon_sym_urljoin = 654, + anon_sym_urlparse = 655, + anon_sym_urlsplit_DASHquery = 656, + anon_sym_viewfiles = 657, + anon_sym_viewir = 658, + anon_sym_viewsource = 659, + anon_sym_viewspan = 660, + anon_sym_err_GT = 661, + anon_sym_out_GT = 662, + anon_sym_e_GT = 663, + anon_sym_o_GT = 664, + anon_sym_err_PLUSout_GT = 665, + anon_sym_out_PLUSerr_GT = 666, + anon_sym_o_PLUSe_GT = 667, + anon_sym_e_PLUSo_GT = 668, + anon_sym_err_GT_GT = 669, + anon_sym_out_GT_GT = 670, + anon_sym_e_GT_GT = 671, + anon_sym_o_GT_GT = 672, + anon_sym_err_PLUSout_GT_GT = 673, + anon_sym_out_PLUSerr_GT_GT = 674, + anon_sym_o_PLUSe_GT_GT = 675, + anon_sym_e_PLUSo_GT_GT = 676, + anon_sym_EQ2 = 677, + sym_short_flag_identifier = 678, + sym__unquoted_naive = 679, + aux_sym_unquoted_token1 = 680, + aux_sym_unquoted_token2 = 681, + aux_sym_unquoted_token3 = 682, + aux_sym_unquoted_token4 = 683, + aux_sym__unquoted_in_list_token1 = 684, + aux_sym__unquoted_in_list_token2 = 685, + aux_sym__unquoted_in_list_token3 = 686, + aux_sym__unquoted_in_list_token4 = 687, + aux_sym__unquoted_in_record_token1 = 688, + aux_sym__unquoted_in_record_token2 = 689, + aux_sym__unquoted_in_record_token3 = 690, + aux_sym__unquoted_in_record_token4 = 691, + aux_sym__unquoted_with_expr_token1 = 692, + aux_sym__unquoted_in_list_with_expr_token1 = 693, + aux_sym__unquoted_in_record_with_expr_token1 = 694, + anon_sym_POUND = 695, + aux_sym_comment_token1 = 696, + sym_raw_string_begin = 697, + sym_raw_string_content = 698, + sym_raw_string_end = 699, + sym_nu_script = 700, + sym_shebang = 701, + sym__block_body_statement = 702, + sym__declaration = 703, + sym_decl_alias = 704, + sym_stmt_let = 705, + sym_stmt_mut = 706, + sym_stmt_const = 707, + sym_assignment = 708, + sym__assignment_pattern = 709, + sym__mutable_assignment_pattern = 710, + sym__statement = 711, + sym_pipeline = 712, + sym__block_body_statement_parenthesized = 713, + sym__declaration_parenthesized = 714, + sym_decl_alias_parenthesized = 715, + sym_stmt_let_parenthesized = 716, + sym_stmt_mut_parenthesized = 717, + sym_stmt_const_parenthesized = 718, + sym_assignment_parenthesized = 719, + sym__assignment_pattern_parenthesized = 720, + sym__mutable_assignment_pattern_parenthesized = 721, + sym__statement_parenthesized = 722, + sym_pipeline_parenthesized = 723, + sym__block_body = 724, + sym_cmd_identifier = 725, + sym__command_name = 726, + sym__variable_name = 727, + aux_sym__pipe_separator = 728, + sym_decl_def = 729, + sym_decl_export = 730, + sym_decl_extern = 731, + sym_decl_module = 732, + sym_decl_use = 733, + sym_returns = 734, + sym__one_type = 735, + sym__multiple_types = 736, + sym_parameter_parens = 737, + sym_parameter_bracks = 738, + sym_parameter_pipes = 739, + sym_parameter = 740, + sym__param_name = 741, + sym_param_type = 742, + sym_param_value = 743, + sym__type_annotation = 744, + sym__all_type = 745, + sym_flat_type = 746, + sym_collection_type = 747, + sym_list_type = 748, + sym_param_cmd = 749, + sym_param_rest = 750, + sym_param_opt = 751, + sym_param_long_flag = 752, + sym_flag_capsule = 753, + sym_param_short_flag = 754, + sym__ctrl_statement = 755, + sym__ctrl_expression = 756, + sym__ctrl_expression_parenthesized = 757, + sym_ctrl_for = 758, + sym_ctrl_loop = 759, + sym_ctrl_error = 760, + sym_ctrl_while = 761, + sym_ctrl_do = 762, + sym_ctrl_do_parenthesized = 763, + sym_ctrl_if = 764, + sym_ctrl_if_parenthesized = 765, + sym_ctrl_match = 766, + sym_match_arm = 767, + sym_default_arm = 768, + sym_match_pattern = 769, + sym__match_pattern = 770, + sym_match_guard = 771, + sym__match_pattern_expression = 772, + sym__match_pattern_value = 773, + sym__match_pattern_list = 774, + sym__match_pattern_rest = 775, + sym__match_pattern_record = 776, + sym__match_pattern_record_variable = 777, + sym_ctrl_try = 778, + sym_ctrl_try_parenthesized = 779, + sym_ctrl_return = 780, + sym_pipe_element = 781, + sym_pipe_element_parenthesized = 782, + sym_stmt_source = 783, + sym_stmt_register = 784, + sym__stmt_hide = 785, + sym_hide_mod = 786, + sym_hide_env = 787, + sym__stmt_overlay = 788, + sym_overlay_list = 789, + sym_overlay_hide = 790, + sym_overlay_new = 791, + sym_overlay_use = 792, + sym_scope_pattern = 793, + sym_wild_card = 794, + sym_command_list = 795, + sym_block = 796, + sym__blosure = 797, + sym__where_predicate_lhs = 798, + sym_where_command = 799, + sym_where_command_parenthesized = 800, + sym__binary_predicate = 801, + sym__binary_predicate_parenthesized = 802, + sym__predicate = 803, + sym__expression = 804, + sym__expression_parenthesized = 805, + sym_expr_unary = 806, + sym__expr_unary_minus = 807, + sym_expr_binary = 808, + sym_expr_binary_parenthesized = 809, + sym__expr_binary_expression = 810, + sym__expr_binary_expression_parenthesized = 811, + sym_expr_parenthesized = 812, + sym__spread_parenthesized = 813, + sym__expr_parenthesized_immediate = 814, + sym__parenthesized_body = 815, + sym_val_range = 816, + sym__val_range = 817, + sym__val_range_with_end = 818, + sym__immediate_decimal = 819, + sym__value = 820, + sym_val_nothing = 821, + sym_val_bool = 822, + sym__spread_variable = 823, + sym_val_variable = 824, + sym_val_number = 825, + sym__val_number_decimal = 826, + sym__val_number = 827, + sym_val_duration = 828, + sym_val_filesize = 829, + sym_val_binary = 830, + sym_val_string = 831, + sym__raw_str = 832, + sym__str_double_quotes = 833, + sym_val_interpolated = 834, + sym__inter_single_quotes = 835, + sym__inter_double_quotes = 836, + sym_expr_interpolated = 837, + sym_val_list = 838, + sym__spread_list = 839, + sym_list_body = 840, + sym_val_entry = 841, + sym_val_record = 842, + sym__spread_record = 843, + sym_record_body = 844, + sym_record_entry = 845, + sym__record_key = 846, + sym_val_table = 847, + sym_val_closure = 848, + sym_cell_path = 849, + sym_path = 850, + sym_env_var = 851, + sym_command = 852, + sym__command_parenthesized = 853, + sym__cmd_arg = 854, + sym_redirection = 855, + sym__flags_parenthesized = 856, + sym_short_flag = 857, + sym_long_flag = 858, + sym_unquoted = 859, + sym__unquoted_in_list = 860, + sym__unquoted_in_record = 861, + sym__unquoted_with_expr = 862, + sym__unquoted_in_list_with_expr = 863, + sym__unquoted_in_record_with_expr = 864, + sym__unquoted_anonymous_prefix = 865, + sym_comment = 866, + aux_sym_shebang_repeat1 = 867, + aux_sym_pipeline_repeat1 = 868, + aux_sym_pipeline_parenthesized_repeat1 = 869, + aux_sym__block_body_repeat1 = 870, + aux_sym__block_body_repeat2 = 871, + aux_sym_decl_def_repeat1 = 872, + aux_sym__multiple_types_repeat1 = 873, + aux_sym__multiple_types_repeat2 = 874, + aux_sym_parameter_parens_repeat1 = 875, + aux_sym_parameter_repeat1 = 876, + aux_sym_parameter_repeat2 = 877, + aux_sym_collection_type_repeat1 = 878, + aux_sym_ctrl_do_repeat1 = 879, + aux_sym_ctrl_do_repeat2 = 880, + aux_sym_ctrl_do_parenthesized_repeat1 = 881, + aux_sym_ctrl_do_parenthesized_repeat2 = 882, + aux_sym_ctrl_do_parenthesized_repeat3 = 883, + aux_sym_ctrl_match_repeat1 = 884, + aux_sym_match_pattern_repeat1 = 885, + aux_sym__match_pattern_list_repeat1 = 886, + aux_sym__match_pattern_record_repeat1 = 887, + aux_sym_pipe_element_repeat1 = 888, + aux_sym_pipe_element_repeat2 = 889, + aux_sym_pipe_element_parenthesized_repeat1 = 890, + aux_sym_command_list_repeat1 = 891, + aux_sym__parenthesized_body_repeat1 = 892, + aux_sym__parenthesized_body_repeat2 = 893, + aux_sym_val_binary_repeat1 = 894, + aux_sym__str_double_quotes_repeat1 = 895, + aux_sym__inter_single_quotes_repeat1 = 896, + aux_sym__inter_double_quotes_repeat1 = 897, + aux_sym_list_body_repeat1 = 898, + aux_sym_record_body_repeat1 = 899, + aux_sym_val_table_repeat1 = 900, + aux_sym_cell_path_repeat1 = 901, + aux_sym_command_repeat1 = 902, + aux_sym__command_parenthesized_repeat1 = 903, + aux_sym__unquoted_with_expr_repeat1 = 904, + aux_sym__unquoted_in_list_with_expr_repeat1 = 905, + aux_sym__unquoted_in_record_with_expr_repeat1 = 906, + anon_alias_sym__head = 907, + anon_alias_sym__prefix = 908, + anon_alias_sym__unit = 909, + anon_alias_sym_quoted = 910, }; static const char * const ts_symbol_names[] = { @@ -812,6 +1205,399 @@ static const char * const ts_symbol_names[] = { [aux_sym_env_var_token1] = "identifier", [aux_sym_env_var_token2] = "val_string", [anon_sym_CARET] = "^", + [anon_sym_ansigradient] = "cmd_identifier", + [anon_sym_ansilink] = "cmd_identifier", + [anon_sym_ansistrip] = "cmd_identifier", + [anon_sym_bitsand] = "cmd_identifier", + [anon_sym_bitsnot] = "cmd_identifier", + [anon_sym_bitsor] = "cmd_identifier", + [anon_sym_bitsrol] = "cmd_identifier", + [anon_sym_bitsror] = "cmd_identifier", + [anon_sym_bitsshl] = "cmd_identifier", + [anon_sym_bitsshr] = "cmd_identifier", + [anon_sym_bitsxor] = "cmd_identifier", + [anon_sym_bytesadd] = "cmd_identifier", + [anon_sym_bytesat] = "cmd_identifier", + [anon_sym_bytesbuild] = "cmd_identifier", + [anon_sym_bytescollect] = "cmd_identifier", + [anon_sym_bytesends_DASHwith] = "cmd_identifier", + [anon_sym_bytesindex_DASHof] = "cmd_identifier", + [anon_sym_byteslength] = "cmd_identifier", + [anon_sym_bytesremove] = "cmd_identifier", + [anon_sym_bytesreplace] = "cmd_identifier", + [anon_sym_bytesreverse] = "cmd_identifier", + [anon_sym_bytesstarts_DASHwith] = "cmd_identifier", + [anon_sym_commandlineedit] = "cmd_identifier", + [anon_sym_commandlineget_DASHcursor] = "cmd_identifier", + [anon_sym_commandlineset_DASHcursor] = "cmd_identifier", + [anon_sym_configenv] = "cmd_identifier", + [anon_sym_confignu] = "cmd_identifier", + [anon_sym_configreset] = "cmd_identifier", + [anon_sym_dateformat] = "cmd_identifier", + [anon_sym_datehumanize] = "cmd_identifier", + [anon_sym_datelist_DASHtimezone] = "cmd_identifier", + [anon_sym_datenow] = "cmd_identifier", + [anon_sym_dateto_DASHrecord] = "cmd_identifier", + [anon_sym_dateto_DASHtable] = "cmd_identifier", + [anon_sym_dateto_DASHtimezone] = "cmd_identifier", + [anon_sym_debuginfo] = "cmd_identifier", + [anon_sym_debugprofile] = "cmd_identifier", + [anon_sym_decodebase32] = "cmd_identifier", + [anon_sym_decodebase32hex] = "cmd_identifier", + [anon_sym_decodebase64] = "cmd_identifier", + [anon_sym_decodehex] = "cmd_identifier", + [anon_sym_detectcolumns] = "cmd_identifier", + [anon_sym_dropcolumn] = "cmd_identifier", + [anon_sym_dropnth] = "cmd_identifier", + [anon_sym_dtadd] = "cmd_identifier", + [anon_sym_dtdiff] = "cmd_identifier", + [anon_sym_dtformat] = "cmd_identifier", + [anon_sym_dtnow] = "cmd_identifier", + [anon_sym_dtpart] = "cmd_identifier", + [anon_sym_dtto] = "cmd_identifier", + [anon_sym_dtutcnow] = "cmd_identifier", + [anon_sym_eachwhile] = "cmd_identifier", + [anon_sym_encodebase32] = "cmd_identifier", + [anon_sym_encodebase32hex] = "cmd_identifier", + [anon_sym_encodebase64] = "cmd_identifier", + [anon_sym_encodehex] = "cmd_identifier", + [anon_sym_errormake] = "cmd_identifier", + [anon_sym_exploreir] = "cmd_identifier", + [anon_sym_formatdate] = "cmd_identifier", + [anon_sym_formatduration] = "cmd_identifier", + [anon_sym_formatfilesize] = "cmd_identifier", + [anon_sym_formatpattern] = "cmd_identifier", + [anon_sym_frombz2] = "cmd_identifier", + [anon_sym_fromcsv] = "cmd_identifier", + [anon_sym_fromeml] = "cmd_identifier", + [anon_sym_fromgz] = "cmd_identifier", + [anon_sym_fromics] = "cmd_identifier", + [anon_sym_fromini] = "cmd_identifier", + [anon_sym_fromjson] = "cmd_identifier", + [anon_sym_frommsgpack] = "cmd_identifier", + [anon_sym_frommsgpackz] = "cmd_identifier", + [anon_sym_fromnuon] = "cmd_identifier", + [anon_sym_fromods] = "cmd_identifier", + [anon_sym_fromparquet] = "cmd_identifier", + [anon_sym_fromplist] = "cmd_identifier", + [anon_sym_frompng] = "cmd_identifier", + [anon_sym_fromssv] = "cmd_identifier", + [anon_sym_fromtoml] = "cmd_identifier", + [anon_sym_fromtsv] = "cmd_identifier", + [anon_sym_fromurl] = "cmd_identifier", + [anon_sym_fromvcf] = "cmd_identifier", + [anon_sym_fromxlsx] = "cmd_identifier", + [anon_sym_fromxml] = "cmd_identifier", + [anon_sym_fromxz] = "cmd_identifier", + [anon_sym_fromyaml] = "cmd_identifier", + [anon_sym_fromyml] = "cmd_identifier", + [anon_sym_fromzst] = "cmd_identifier", + [anon_sym_hashmd5] = "cmd_identifier", + [anon_sym_hashsha256] = "cmd_identifier", + [anon_sym_helpaliases] = "cmd_identifier", + [anon_sym_helpcommands] = "cmd_identifier", + [anon_sym_helpescapes] = "cmd_identifier", + [anon_sym_helpexterns] = "cmd_identifier", + [anon_sym_helpmodules] = "cmd_identifier", + [anon_sym_helpoperators] = "cmd_identifier", + [anon_sym_historyimport] = "cmd_identifier", + [anon_sym_historysession] = "cmd_identifier", + [anon_sym_httpdelete] = "cmd_identifier", + [anon_sym_httpget] = "cmd_identifier", + [anon_sym_httphead] = "cmd_identifier", + [anon_sym_httpoptions] = "cmd_identifier", + [anon_sym_httppatch] = "cmd_identifier", + [anon_sym_httppost] = "cmd_identifier", + [anon_sym_httpput] = "cmd_identifier", + [anon_sym_inputlist] = "cmd_identifier", + [anon_sym_inputlisten] = "cmd_identifier", + [anon_sym_intobinary] = "cmd_identifier", + [anon_sym_intobits] = "cmd_identifier", + [anon_sym_intobool] = "cmd_identifier", + [anon_sym_intocell_DASHpath] = "cmd_identifier", + [anon_sym_intodatetime] = "cmd_identifier", + [anon_sym_intoduration] = "cmd_identifier", + [anon_sym_intofilesize] = "cmd_identifier", + [anon_sym_intofloat] = "cmd_identifier", + [anon_sym_intoglob] = "cmd_identifier", + [anon_sym_intoint] = "cmd_identifier", + [anon_sym_intorecord] = "cmd_identifier", + [anon_sym_intosqlite] = "cmd_identifier", + [anon_sym_intostring] = "cmd_identifier", + [anon_sym_intovalue] = "cmd_identifier", + [anon_sym_jsonpath] = "cmd_identifier", + [anon_sym_keybindingsdefault] = "cmd_identifier", + [anon_sym_keybindingslist] = "cmd_identifier", + [anon_sym_keybindingslisten] = "cmd_identifier", + [anon_sym_mathabs] = "cmd_identifier", + [anon_sym_matharccos] = "cmd_identifier", + [anon_sym_matharccosh] = "cmd_identifier", + [anon_sym_matharcsin] = "cmd_identifier", + [anon_sym_matharcsinh] = "cmd_identifier", + [anon_sym_matharctan] = "cmd_identifier", + [anon_sym_matharctanh] = "cmd_identifier", + [anon_sym_mathavg] = "cmd_identifier", + [anon_sym_mathceil] = "cmd_identifier", + [anon_sym_mathcos] = "cmd_identifier", + [anon_sym_mathcosh] = "cmd_identifier", + [anon_sym_mathexp] = "cmd_identifier", + [anon_sym_mathfloor] = "cmd_identifier", + [anon_sym_mathln] = "cmd_identifier", + [anon_sym_mathlog] = "cmd_identifier", + [anon_sym_mathmax] = "cmd_identifier", + [anon_sym_mathmedian] = "cmd_identifier", + [anon_sym_mathmin] = "cmd_identifier", + [anon_sym_mathmode] = "cmd_identifier", + [anon_sym_mathproduct] = "cmd_identifier", + [anon_sym_mathround] = "cmd_identifier", + [anon_sym_mathsin] = "cmd_identifier", + [anon_sym_mathsinh] = "cmd_identifier", + [anon_sym_mathsqrt] = "cmd_identifier", + [anon_sym_mathstddev] = "cmd_identifier", + [anon_sym_mathsum] = "cmd_identifier", + [anon_sym_mathtan] = "cmd_identifier", + [anon_sym_mathtanh] = "cmd_identifier", + [anon_sym_mathvariance] = "cmd_identifier", + [anon_sym_metadataaccess] = "cmd_identifier", + [anon_sym_metadataset] = "cmd_identifier", + [anon_sym_pathbasename] = "cmd_identifier", + [anon_sym_pathdirname] = "cmd_identifier", + [anon_sym_pathexists] = "cmd_identifier", + [anon_sym_pathexpand] = "cmd_identifier", + [anon_sym_pathjoin] = "cmd_identifier", + [anon_sym_pathparse] = "cmd_identifier", + [anon_sym_pathrelative_DASHto] = "cmd_identifier", + [anon_sym_pathsplit] = "cmd_identifier", + [anon_sym_pathtype] = "cmd_identifier", + [anon_sym_pluginadd] = "cmd_identifier", + [anon_sym_pluginlist] = "cmd_identifier", + [anon_sym_pluginrm] = "cmd_identifier", + [anon_sym_pluginstop] = "cmd_identifier", + [anon_sym_polarsagg] = "cmd_identifier", + [anon_sym_polarsagg_DASHgroups] = "cmd_identifier", + [anon_sym_polarsall_DASHfalse] = "cmd_identifier", + [anon_sym_polarsall_DASHtrue] = "cmd_identifier", + [anon_sym_polarsappend] = "cmd_identifier", + [anon_sym_polarsarg_DASHmax] = "cmd_identifier", + [anon_sym_polarsarg_DASHmin] = "cmd_identifier", + [anon_sym_polarsarg_DASHsort] = "cmd_identifier", + [anon_sym_polarsarg_DASHtrue] = "cmd_identifier", + [anon_sym_polarsarg_DASHunique] = "cmd_identifier", + [anon_sym_polarsarg_DASHwhere] = "cmd_identifier", + [anon_sym_polarsas] = "cmd_identifier", + [anon_sym_polarsas_DASHdate] = "cmd_identifier", + [anon_sym_polarsas_DASHdatetime] = "cmd_identifier", + [anon_sym_polarscache] = "cmd_identifier", + [anon_sym_polarscast] = "cmd_identifier", + [anon_sym_polarscol] = "cmd_identifier", + [anon_sym_polarscollect] = "cmd_identifier", + [anon_sym_polarscolumns] = "cmd_identifier", + [anon_sym_polarsconcat] = "cmd_identifier", + [anon_sym_polarsconcat_DASHstr] = "cmd_identifier", + [anon_sym_polarscontains] = "cmd_identifier", + [anon_sym_polarscount] = "cmd_identifier", + [anon_sym_polarscount_DASHnull] = "cmd_identifier", + [anon_sym_polarscumulative] = "cmd_identifier", + [anon_sym_polarsdatepart] = "cmd_identifier", + [anon_sym_polarsdecimal] = "cmd_identifier", + [anon_sym_polarsdrop] = "cmd_identifier", + [anon_sym_polarsdrop_DASHduplicates] = "cmd_identifier", + [anon_sym_polarsdrop_DASHnulls] = "cmd_identifier", + [anon_sym_polarsdummies] = "cmd_identifier", + [anon_sym_polarsexplode] = "cmd_identifier", + [anon_sym_polarsexpr_DASHnot] = "cmd_identifier", + [anon_sym_polarsfetch] = "cmd_identifier", + [anon_sym_polarsfill_DASHnan] = "cmd_identifier", + [anon_sym_polarsfill_DASHnull] = "cmd_identifier", + [anon_sym_polarsfilter] = "cmd_identifier", + [anon_sym_polarsfilter_DASHwith] = "cmd_identifier", + [anon_sym_polarsfirst] = "cmd_identifier", + [anon_sym_polarsflatten] = "cmd_identifier", + [anon_sym_polarsget] = "cmd_identifier", + [anon_sym_polarsget_DASHday] = "cmd_identifier", + [anon_sym_polarsget_DASHhour] = "cmd_identifier", + [anon_sym_polarsget_DASHminute] = "cmd_identifier", + [anon_sym_polarsget_DASHmonth] = "cmd_identifier", + [anon_sym_polarsget_DASHnanosecond] = "cmd_identifier", + [anon_sym_polarsget_DASHordinal] = "cmd_identifier", + [anon_sym_polarsget_DASHsecond] = "cmd_identifier", + [anon_sym_polarsget_DASHweek] = "cmd_identifier", + [anon_sym_polarsget_DASHweekday] = "cmd_identifier", + [anon_sym_polarsget_DASHyear] = "cmd_identifier", + [anon_sym_polarsgroup_DASHby] = "cmd_identifier", + [anon_sym_polarsimplode] = "cmd_identifier", + [anon_sym_polarsinteger] = "cmd_identifier", + [anon_sym_polarsinto_DASHdf] = "cmd_identifier", + [anon_sym_polarsinto_DASHlazy] = "cmd_identifier", + [anon_sym_polarsinto_DASHnu] = "cmd_identifier", + [anon_sym_polarsis_DASHduplicated] = "cmd_identifier", + [anon_sym_polarsis_DASHin] = "cmd_identifier", + [anon_sym_polarsis_DASHnot_DASHnull] = "cmd_identifier", + [anon_sym_polarsis_DASHnull] = "cmd_identifier", + [anon_sym_polarsis_DASHunique] = "cmd_identifier", + [anon_sym_polarsjoin] = "cmd_identifier", + [anon_sym_polarslast] = "cmd_identifier", + [anon_sym_polarslen] = "cmd_identifier", + [anon_sym_polarslit] = "cmd_identifier", + [anon_sym_polarslowercase] = "cmd_identifier", + [anon_sym_polarsmax] = "cmd_identifier", + [anon_sym_polarsmean] = "cmd_identifier", + [anon_sym_polarsmedian] = "cmd_identifier", + [anon_sym_polarsmin] = "cmd_identifier", + [anon_sym_polarsn_DASHunique] = "cmd_identifier", + [anon_sym_polarsnot] = "cmd_identifier", + [anon_sym_polarsopen] = "cmd_identifier", + [anon_sym_polarsotherwise] = "cmd_identifier", + [anon_sym_polarspivot] = "cmd_identifier", + [anon_sym_polarsprofile] = "cmd_identifier", + [anon_sym_polarsquantile] = "cmd_identifier", + [anon_sym_polarsquery] = "cmd_identifier", + [anon_sym_polarsrename] = "cmd_identifier", + [anon_sym_polarsreplace] = "cmd_identifier", + [anon_sym_polarsreplace_DASHall] = "cmd_identifier", + [anon_sym_polarsreverse] = "cmd_identifier", + [anon_sym_polarsrolling] = "cmd_identifier", + [anon_sym_polarssample] = "cmd_identifier", + [anon_sym_polarssave] = "cmd_identifier", + [anon_sym_polarsschema] = "cmd_identifier", + [anon_sym_polarsselect] = "cmd_identifier", + [anon_sym_polarsset] = "cmd_identifier", + [anon_sym_polarsset_DASHwith_DASHidx] = "cmd_identifier", + [anon_sym_polarsshape] = "cmd_identifier", + [anon_sym_polarsshift] = "cmd_identifier", + [anon_sym_polarsslice] = "cmd_identifier", + [anon_sym_polarssort_DASHby] = "cmd_identifier", + [anon_sym_polarsstd] = "cmd_identifier", + [anon_sym_polarsstore_DASHget] = "cmd_identifier", + [anon_sym_polarsstore_DASHls] = "cmd_identifier", + [anon_sym_polarsstore_DASHrm] = "cmd_identifier", + [anon_sym_polarsstr_DASHjoin] = "cmd_identifier", + [anon_sym_polarsstr_DASHlengths] = "cmd_identifier", + [anon_sym_polarsstr_DASHslice] = "cmd_identifier", + [anon_sym_polarsstrftime] = "cmd_identifier", + [anon_sym_polarssum] = "cmd_identifier", + [anon_sym_polarssummary] = "cmd_identifier", + [anon_sym_polarstake] = "cmd_identifier", + [anon_sym_polarsunique] = "cmd_identifier", + [anon_sym_polarsunnest] = "cmd_identifier", + [anon_sym_polarsunpivot] = "cmd_identifier", + [anon_sym_polarsuppercase] = "cmd_identifier", + [anon_sym_polarsvalue_DASHcounts] = "cmd_identifier", + [anon_sym_polarsvar] = "cmd_identifier", + [anon_sym_polarswhen] = "cmd_identifier", + [anon_sym_polarswith_DASHcolumn] = "cmd_identifier", + [anon_sym_querydb] = "cmd_identifier", + [anon_sym_querygit] = "cmd_identifier", + [anon_sym_queryjson] = "cmd_identifier", + [anon_sym_queryweb] = "cmd_identifier", + [anon_sym_querywebpage_DASHinfo] = "cmd_identifier", + [anon_sym_queryxml] = "cmd_identifier", + [anon_sym_randombinary] = "cmd_identifier", + [anon_sym_randombool] = "cmd_identifier", + [anon_sym_randomchars] = "cmd_identifier", + [anon_sym_randomdice] = "cmd_identifier", + [anon_sym_randomfloat] = "cmd_identifier", + [anon_sym_randomint] = "cmd_identifier", + [anon_sym_randomuuid] = "cmd_identifier", + [anon_sym_rolldown] = "cmd_identifier", + [anon_sym_rollleft] = "cmd_identifier", + [anon_sym_rollright] = "cmd_identifier", + [anon_sym_rollup] = "cmd_identifier", + [anon_sym_scopealiases] = "cmd_identifier", + [anon_sym_scopecommands] = "cmd_identifier", + [anon_sym_scopeengine_DASHstats] = "cmd_identifier", + [anon_sym_scopeexterns] = "cmd_identifier", + [anon_sym_scopemodules] = "cmd_identifier", + [anon_sym_scopevariables] = "cmd_identifier", + [anon_sym_seqchar] = "cmd_identifier", + [anon_sym_seqdate] = "cmd_identifier", + [anon_sym_skipuntil] = "cmd_identifier", + [anon_sym_skipwhile] = "cmd_identifier", + [anon_sym_splitcell_DASHpath] = "cmd_identifier", + [anon_sym_splitchars] = "cmd_identifier", + [anon_sym_splitcolumn] = "cmd_identifier", + [anon_sym_splitlist] = "cmd_identifier", + [anon_sym_splitrow] = "cmd_identifier", + [anon_sym_splitwords] = "cmd_identifier", + [anon_sym_storcreate] = "cmd_identifier", + [anon_sym_stordelete] = "cmd_identifier", + [anon_sym_storexport] = "cmd_identifier", + [anon_sym_storimport] = "cmd_identifier", + [anon_sym_storinsert] = "cmd_identifier", + [anon_sym_storopen] = "cmd_identifier", + [anon_sym_storreset] = "cmd_identifier", + [anon_sym_storupdate] = "cmd_identifier", + [anon_sym_strbexpand] = "cmd_identifier", + [anon_sym_strcamel_DASHcase] = "cmd_identifier", + [anon_sym_strcapitalize] = "cmd_identifier", + [anon_sym_strcompress] = "cmd_identifier", + [anon_sym_strcontains] = "cmd_identifier", + [anon_sym_strdecompress] = "cmd_identifier", + [anon_sym_strdedent] = "cmd_identifier", + [anon_sym_strdeunicode] = "cmd_identifier", + [anon_sym_strdistance] = "cmd_identifier", + [anon_sym_strdowncase] = "cmd_identifier", + [anon_sym_strends_DASHwith] = "cmd_identifier", + [anon_sym_strexpand] = "cmd_identifier", + [anon_sym_strindent] = "cmd_identifier", + [anon_sym_strindex_DASHof] = "cmd_identifier", + [anon_sym_strjoin] = "cmd_identifier", + [anon_sym_strkebab_DASHcase] = "cmd_identifier", + [anon_sym_strlength] = "cmd_identifier", + [anon_sym_strpascal_DASHcase] = "cmd_identifier", + [anon_sym_strreplace] = "cmd_identifier", + [anon_sym_strreverse] = "cmd_identifier", + [anon_sym_strscreaming_DASHsnake_DASHcase] = "cmd_identifier", + [anon_sym_strsimilarity] = "cmd_identifier", + [anon_sym_strsnake_DASHcase] = "cmd_identifier", + [anon_sym_strstarts_DASHwith] = "cmd_identifier", + [anon_sym_strstats] = "cmd_identifier", + [anon_sym_strsubstring] = "cmd_identifier", + [anon_sym_strtitle_DASHcase] = "cmd_identifier", + [anon_sym_strtrim] = "cmd_identifier", + [anon_sym_strupcase] = "cmd_identifier", + [anon_sym_strwrap] = "cmd_identifier", + [anon_sym_syscpu] = "cmd_identifier", + [anon_sym_sysdisks] = "cmd_identifier", + [anon_sym_syshost] = "cmd_identifier", + [anon_sym_sysmem] = "cmd_identifier", + [anon_sym_sysnet] = "cmd_identifier", + [anon_sym_systemp] = "cmd_identifier", + [anon_sym_sysusers] = "cmd_identifier", + [anon_sym_takeuntil] = "cmd_identifier", + [anon_sym_takewhile] = "cmd_identifier", + [anon_sym_termquery] = "cmd_identifier", + [anon_sym_termsize] = "cmd_identifier", + [anon_sym_tobz2] = "cmd_identifier", + [anon_sym_tocsv] = "cmd_identifier", + [anon_sym_togz] = "cmd_identifier", + [anon_sym_tohtml] = "cmd_identifier", + [anon_sym_tojson] = "cmd_identifier", + [anon_sym_tomd] = "cmd_identifier", + [anon_sym_tomsgpack] = "cmd_identifier", + [anon_sym_tomsgpackz] = "cmd_identifier", + [anon_sym_tonuon] = "cmd_identifier", + [anon_sym_toparquet] = "cmd_identifier", + [anon_sym_toplist] = "cmd_identifier", + [anon_sym_topng] = "cmd_identifier", + [anon_sym_totext] = "cmd_identifier", + [anon_sym_totoml] = "cmd_identifier", + [anon_sym_totsv] = "cmd_identifier", + [anon_sym_toxml] = "cmd_identifier", + [anon_sym_toxz] = "cmd_identifier", + [anon_sym_toyaml] = "cmd_identifier", + [anon_sym_tozst] = "cmd_identifier", + [anon_sym_updatecells] = "cmd_identifier", + [anon_sym_urlbuild_DASHquery] = "cmd_identifier", + [anon_sym_urldecode] = "cmd_identifier", + [anon_sym_urlencode] = "cmd_identifier", + [anon_sym_urljoin] = "cmd_identifier", + [anon_sym_urlparse] = "cmd_identifier", + [anon_sym_urlsplit_DASHquery] = "cmd_identifier", + [anon_sym_viewfiles] = "cmd_identifier", + [anon_sym_viewir] = "cmd_identifier", + [anon_sym_viewsource] = "cmd_identifier", + [anon_sym_viewspan] = "cmd_identifier", [anon_sym_err_GT] = "err>", [anon_sym_out_GT] = "out>", [anon_sym_e_GT] = "e>", @@ -1333,6 +2119,399 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_env_var_token1] = sym_identifier, [aux_sym_env_var_token2] = sym_val_string, [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_ansigradient] = sym_cmd_identifier, + [anon_sym_ansilink] = sym_cmd_identifier, + [anon_sym_ansistrip] = sym_cmd_identifier, + [anon_sym_bitsand] = sym_cmd_identifier, + [anon_sym_bitsnot] = sym_cmd_identifier, + [anon_sym_bitsor] = sym_cmd_identifier, + [anon_sym_bitsrol] = sym_cmd_identifier, + [anon_sym_bitsror] = sym_cmd_identifier, + [anon_sym_bitsshl] = sym_cmd_identifier, + [anon_sym_bitsshr] = sym_cmd_identifier, + [anon_sym_bitsxor] = sym_cmd_identifier, + [anon_sym_bytesadd] = sym_cmd_identifier, + [anon_sym_bytesat] = sym_cmd_identifier, + [anon_sym_bytesbuild] = sym_cmd_identifier, + [anon_sym_bytescollect] = sym_cmd_identifier, + [anon_sym_bytesends_DASHwith] = sym_cmd_identifier, + [anon_sym_bytesindex_DASHof] = sym_cmd_identifier, + [anon_sym_byteslength] = sym_cmd_identifier, + [anon_sym_bytesremove] = sym_cmd_identifier, + [anon_sym_bytesreplace] = sym_cmd_identifier, + [anon_sym_bytesreverse] = sym_cmd_identifier, + [anon_sym_bytesstarts_DASHwith] = sym_cmd_identifier, + [anon_sym_commandlineedit] = sym_cmd_identifier, + [anon_sym_commandlineget_DASHcursor] = sym_cmd_identifier, + [anon_sym_commandlineset_DASHcursor] = sym_cmd_identifier, + [anon_sym_configenv] = sym_cmd_identifier, + [anon_sym_confignu] = sym_cmd_identifier, + [anon_sym_configreset] = sym_cmd_identifier, + [anon_sym_dateformat] = sym_cmd_identifier, + [anon_sym_datehumanize] = sym_cmd_identifier, + [anon_sym_datelist_DASHtimezone] = sym_cmd_identifier, + [anon_sym_datenow] = sym_cmd_identifier, + [anon_sym_dateto_DASHrecord] = sym_cmd_identifier, + [anon_sym_dateto_DASHtable] = sym_cmd_identifier, + [anon_sym_dateto_DASHtimezone] = sym_cmd_identifier, + [anon_sym_debuginfo] = sym_cmd_identifier, + [anon_sym_debugprofile] = sym_cmd_identifier, + [anon_sym_decodebase32] = sym_cmd_identifier, + [anon_sym_decodebase32hex] = sym_cmd_identifier, + [anon_sym_decodebase64] = sym_cmd_identifier, + [anon_sym_decodehex] = sym_cmd_identifier, + [anon_sym_detectcolumns] = sym_cmd_identifier, + [anon_sym_dropcolumn] = sym_cmd_identifier, + [anon_sym_dropnth] = sym_cmd_identifier, + [anon_sym_dtadd] = sym_cmd_identifier, + [anon_sym_dtdiff] = sym_cmd_identifier, + [anon_sym_dtformat] = sym_cmd_identifier, + [anon_sym_dtnow] = sym_cmd_identifier, + [anon_sym_dtpart] = sym_cmd_identifier, + [anon_sym_dtto] = sym_cmd_identifier, + [anon_sym_dtutcnow] = sym_cmd_identifier, + [anon_sym_eachwhile] = sym_cmd_identifier, + [anon_sym_encodebase32] = sym_cmd_identifier, + [anon_sym_encodebase32hex] = sym_cmd_identifier, + [anon_sym_encodebase64] = sym_cmd_identifier, + [anon_sym_encodehex] = sym_cmd_identifier, + [anon_sym_errormake] = sym_cmd_identifier, + [anon_sym_exploreir] = sym_cmd_identifier, + [anon_sym_formatdate] = sym_cmd_identifier, + [anon_sym_formatduration] = sym_cmd_identifier, + [anon_sym_formatfilesize] = sym_cmd_identifier, + [anon_sym_formatpattern] = sym_cmd_identifier, + [anon_sym_frombz2] = sym_cmd_identifier, + [anon_sym_fromcsv] = sym_cmd_identifier, + [anon_sym_fromeml] = sym_cmd_identifier, + [anon_sym_fromgz] = sym_cmd_identifier, + [anon_sym_fromics] = sym_cmd_identifier, + [anon_sym_fromini] = sym_cmd_identifier, + [anon_sym_fromjson] = sym_cmd_identifier, + [anon_sym_frommsgpack] = sym_cmd_identifier, + [anon_sym_frommsgpackz] = sym_cmd_identifier, + [anon_sym_fromnuon] = sym_cmd_identifier, + [anon_sym_fromods] = sym_cmd_identifier, + [anon_sym_fromparquet] = sym_cmd_identifier, + [anon_sym_fromplist] = sym_cmd_identifier, + [anon_sym_frompng] = sym_cmd_identifier, + [anon_sym_fromssv] = sym_cmd_identifier, + [anon_sym_fromtoml] = sym_cmd_identifier, + [anon_sym_fromtsv] = sym_cmd_identifier, + [anon_sym_fromurl] = sym_cmd_identifier, + [anon_sym_fromvcf] = sym_cmd_identifier, + [anon_sym_fromxlsx] = sym_cmd_identifier, + [anon_sym_fromxml] = sym_cmd_identifier, + [anon_sym_fromxz] = sym_cmd_identifier, + [anon_sym_fromyaml] = sym_cmd_identifier, + [anon_sym_fromyml] = sym_cmd_identifier, + [anon_sym_fromzst] = sym_cmd_identifier, + [anon_sym_hashmd5] = sym_cmd_identifier, + [anon_sym_hashsha256] = sym_cmd_identifier, + [anon_sym_helpaliases] = sym_cmd_identifier, + [anon_sym_helpcommands] = sym_cmd_identifier, + [anon_sym_helpescapes] = sym_cmd_identifier, + [anon_sym_helpexterns] = sym_cmd_identifier, + [anon_sym_helpmodules] = sym_cmd_identifier, + [anon_sym_helpoperators] = sym_cmd_identifier, + [anon_sym_historyimport] = sym_cmd_identifier, + [anon_sym_historysession] = sym_cmd_identifier, + [anon_sym_httpdelete] = sym_cmd_identifier, + [anon_sym_httpget] = sym_cmd_identifier, + [anon_sym_httphead] = sym_cmd_identifier, + [anon_sym_httpoptions] = sym_cmd_identifier, + [anon_sym_httppatch] = sym_cmd_identifier, + [anon_sym_httppost] = sym_cmd_identifier, + [anon_sym_httpput] = sym_cmd_identifier, + [anon_sym_inputlist] = sym_cmd_identifier, + [anon_sym_inputlisten] = sym_cmd_identifier, + [anon_sym_intobinary] = sym_cmd_identifier, + [anon_sym_intobits] = sym_cmd_identifier, + [anon_sym_intobool] = sym_cmd_identifier, + [anon_sym_intocell_DASHpath] = sym_cmd_identifier, + [anon_sym_intodatetime] = sym_cmd_identifier, + [anon_sym_intoduration] = sym_cmd_identifier, + [anon_sym_intofilesize] = sym_cmd_identifier, + [anon_sym_intofloat] = sym_cmd_identifier, + [anon_sym_intoglob] = sym_cmd_identifier, + [anon_sym_intoint] = sym_cmd_identifier, + [anon_sym_intorecord] = sym_cmd_identifier, + [anon_sym_intosqlite] = sym_cmd_identifier, + [anon_sym_intostring] = sym_cmd_identifier, + [anon_sym_intovalue] = sym_cmd_identifier, + [anon_sym_jsonpath] = sym_cmd_identifier, + [anon_sym_keybindingsdefault] = sym_cmd_identifier, + [anon_sym_keybindingslist] = sym_cmd_identifier, + [anon_sym_keybindingslisten] = sym_cmd_identifier, + [anon_sym_mathabs] = sym_cmd_identifier, + [anon_sym_matharccos] = sym_cmd_identifier, + [anon_sym_matharccosh] = sym_cmd_identifier, + [anon_sym_matharcsin] = sym_cmd_identifier, + [anon_sym_matharcsinh] = sym_cmd_identifier, + [anon_sym_matharctan] = sym_cmd_identifier, + [anon_sym_matharctanh] = sym_cmd_identifier, + [anon_sym_mathavg] = sym_cmd_identifier, + [anon_sym_mathceil] = sym_cmd_identifier, + [anon_sym_mathcos] = sym_cmd_identifier, + [anon_sym_mathcosh] = sym_cmd_identifier, + [anon_sym_mathexp] = sym_cmd_identifier, + [anon_sym_mathfloor] = sym_cmd_identifier, + [anon_sym_mathln] = sym_cmd_identifier, + [anon_sym_mathlog] = sym_cmd_identifier, + [anon_sym_mathmax] = sym_cmd_identifier, + [anon_sym_mathmedian] = sym_cmd_identifier, + [anon_sym_mathmin] = sym_cmd_identifier, + [anon_sym_mathmode] = sym_cmd_identifier, + [anon_sym_mathproduct] = sym_cmd_identifier, + [anon_sym_mathround] = sym_cmd_identifier, + [anon_sym_mathsin] = sym_cmd_identifier, + [anon_sym_mathsinh] = sym_cmd_identifier, + [anon_sym_mathsqrt] = sym_cmd_identifier, + [anon_sym_mathstddev] = sym_cmd_identifier, + [anon_sym_mathsum] = sym_cmd_identifier, + [anon_sym_mathtan] = sym_cmd_identifier, + [anon_sym_mathtanh] = sym_cmd_identifier, + [anon_sym_mathvariance] = sym_cmd_identifier, + [anon_sym_metadataaccess] = sym_cmd_identifier, + [anon_sym_metadataset] = sym_cmd_identifier, + [anon_sym_pathbasename] = sym_cmd_identifier, + [anon_sym_pathdirname] = sym_cmd_identifier, + [anon_sym_pathexists] = sym_cmd_identifier, + [anon_sym_pathexpand] = sym_cmd_identifier, + [anon_sym_pathjoin] = sym_cmd_identifier, + [anon_sym_pathparse] = sym_cmd_identifier, + [anon_sym_pathrelative_DASHto] = sym_cmd_identifier, + [anon_sym_pathsplit] = sym_cmd_identifier, + [anon_sym_pathtype] = sym_cmd_identifier, + [anon_sym_pluginadd] = sym_cmd_identifier, + [anon_sym_pluginlist] = sym_cmd_identifier, + [anon_sym_pluginrm] = sym_cmd_identifier, + [anon_sym_pluginstop] = sym_cmd_identifier, + [anon_sym_polarsagg] = sym_cmd_identifier, + [anon_sym_polarsagg_DASHgroups] = sym_cmd_identifier, + [anon_sym_polarsall_DASHfalse] = sym_cmd_identifier, + [anon_sym_polarsall_DASHtrue] = sym_cmd_identifier, + [anon_sym_polarsappend] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHmax] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHmin] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHsort] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHtrue] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHunique] = sym_cmd_identifier, + [anon_sym_polarsarg_DASHwhere] = sym_cmd_identifier, + [anon_sym_polarsas] = sym_cmd_identifier, + [anon_sym_polarsas_DASHdate] = sym_cmd_identifier, + [anon_sym_polarsas_DASHdatetime] = sym_cmd_identifier, + [anon_sym_polarscache] = sym_cmd_identifier, + [anon_sym_polarscast] = sym_cmd_identifier, + [anon_sym_polarscol] = sym_cmd_identifier, + [anon_sym_polarscollect] = sym_cmd_identifier, + [anon_sym_polarscolumns] = sym_cmd_identifier, + [anon_sym_polarsconcat] = sym_cmd_identifier, + [anon_sym_polarsconcat_DASHstr] = sym_cmd_identifier, + [anon_sym_polarscontains] = sym_cmd_identifier, + [anon_sym_polarscount] = sym_cmd_identifier, + [anon_sym_polarscount_DASHnull] = sym_cmd_identifier, + [anon_sym_polarscumulative] = sym_cmd_identifier, + [anon_sym_polarsdatepart] = sym_cmd_identifier, + [anon_sym_polarsdecimal] = sym_cmd_identifier, + [anon_sym_polarsdrop] = sym_cmd_identifier, + [anon_sym_polarsdrop_DASHduplicates] = sym_cmd_identifier, + [anon_sym_polarsdrop_DASHnulls] = sym_cmd_identifier, + [anon_sym_polarsdummies] = sym_cmd_identifier, + [anon_sym_polarsexplode] = sym_cmd_identifier, + [anon_sym_polarsexpr_DASHnot] = sym_cmd_identifier, + [anon_sym_polarsfetch] = sym_cmd_identifier, + [anon_sym_polarsfill_DASHnan] = sym_cmd_identifier, + [anon_sym_polarsfill_DASHnull] = sym_cmd_identifier, + [anon_sym_polarsfilter] = sym_cmd_identifier, + [anon_sym_polarsfilter_DASHwith] = sym_cmd_identifier, + [anon_sym_polarsfirst] = sym_cmd_identifier, + [anon_sym_polarsflatten] = sym_cmd_identifier, + [anon_sym_polarsget] = sym_cmd_identifier, + [anon_sym_polarsget_DASHday] = sym_cmd_identifier, + [anon_sym_polarsget_DASHhour] = sym_cmd_identifier, + [anon_sym_polarsget_DASHminute] = sym_cmd_identifier, + [anon_sym_polarsget_DASHmonth] = sym_cmd_identifier, + [anon_sym_polarsget_DASHnanosecond] = sym_cmd_identifier, + [anon_sym_polarsget_DASHordinal] = sym_cmd_identifier, + [anon_sym_polarsget_DASHsecond] = sym_cmd_identifier, + [anon_sym_polarsget_DASHweek] = sym_cmd_identifier, + [anon_sym_polarsget_DASHweekday] = sym_cmd_identifier, + [anon_sym_polarsget_DASHyear] = sym_cmd_identifier, + [anon_sym_polarsgroup_DASHby] = sym_cmd_identifier, + [anon_sym_polarsimplode] = sym_cmd_identifier, + [anon_sym_polarsinteger] = sym_cmd_identifier, + [anon_sym_polarsinto_DASHdf] = sym_cmd_identifier, + [anon_sym_polarsinto_DASHlazy] = sym_cmd_identifier, + [anon_sym_polarsinto_DASHnu] = sym_cmd_identifier, + [anon_sym_polarsis_DASHduplicated] = sym_cmd_identifier, + [anon_sym_polarsis_DASHin] = sym_cmd_identifier, + [anon_sym_polarsis_DASHnot_DASHnull] = sym_cmd_identifier, + [anon_sym_polarsis_DASHnull] = sym_cmd_identifier, + [anon_sym_polarsis_DASHunique] = sym_cmd_identifier, + [anon_sym_polarsjoin] = sym_cmd_identifier, + [anon_sym_polarslast] = sym_cmd_identifier, + [anon_sym_polarslen] = sym_cmd_identifier, + [anon_sym_polarslit] = sym_cmd_identifier, + [anon_sym_polarslowercase] = sym_cmd_identifier, + [anon_sym_polarsmax] = sym_cmd_identifier, + [anon_sym_polarsmean] = sym_cmd_identifier, + [anon_sym_polarsmedian] = sym_cmd_identifier, + [anon_sym_polarsmin] = sym_cmd_identifier, + [anon_sym_polarsn_DASHunique] = sym_cmd_identifier, + [anon_sym_polarsnot] = sym_cmd_identifier, + [anon_sym_polarsopen] = sym_cmd_identifier, + [anon_sym_polarsotherwise] = sym_cmd_identifier, + [anon_sym_polarspivot] = sym_cmd_identifier, + [anon_sym_polarsprofile] = sym_cmd_identifier, + [anon_sym_polarsquantile] = sym_cmd_identifier, + [anon_sym_polarsquery] = sym_cmd_identifier, + [anon_sym_polarsrename] = sym_cmd_identifier, + [anon_sym_polarsreplace] = sym_cmd_identifier, + [anon_sym_polarsreplace_DASHall] = sym_cmd_identifier, + [anon_sym_polarsreverse] = sym_cmd_identifier, + [anon_sym_polarsrolling] = sym_cmd_identifier, + [anon_sym_polarssample] = sym_cmd_identifier, + [anon_sym_polarssave] = sym_cmd_identifier, + [anon_sym_polarsschema] = sym_cmd_identifier, + [anon_sym_polarsselect] = sym_cmd_identifier, + [anon_sym_polarsset] = sym_cmd_identifier, + [anon_sym_polarsset_DASHwith_DASHidx] = sym_cmd_identifier, + [anon_sym_polarsshape] = sym_cmd_identifier, + [anon_sym_polarsshift] = sym_cmd_identifier, + [anon_sym_polarsslice] = sym_cmd_identifier, + [anon_sym_polarssort_DASHby] = sym_cmd_identifier, + [anon_sym_polarsstd] = sym_cmd_identifier, + [anon_sym_polarsstore_DASHget] = sym_cmd_identifier, + [anon_sym_polarsstore_DASHls] = sym_cmd_identifier, + [anon_sym_polarsstore_DASHrm] = sym_cmd_identifier, + [anon_sym_polarsstr_DASHjoin] = sym_cmd_identifier, + [anon_sym_polarsstr_DASHlengths] = sym_cmd_identifier, + [anon_sym_polarsstr_DASHslice] = sym_cmd_identifier, + [anon_sym_polarsstrftime] = sym_cmd_identifier, + [anon_sym_polarssum] = sym_cmd_identifier, + [anon_sym_polarssummary] = sym_cmd_identifier, + [anon_sym_polarstake] = sym_cmd_identifier, + [anon_sym_polarsunique] = sym_cmd_identifier, + [anon_sym_polarsunnest] = sym_cmd_identifier, + [anon_sym_polarsunpivot] = sym_cmd_identifier, + [anon_sym_polarsuppercase] = sym_cmd_identifier, + [anon_sym_polarsvalue_DASHcounts] = sym_cmd_identifier, + [anon_sym_polarsvar] = sym_cmd_identifier, + [anon_sym_polarswhen] = sym_cmd_identifier, + [anon_sym_polarswith_DASHcolumn] = sym_cmd_identifier, + [anon_sym_querydb] = sym_cmd_identifier, + [anon_sym_querygit] = sym_cmd_identifier, + [anon_sym_queryjson] = sym_cmd_identifier, + [anon_sym_queryweb] = sym_cmd_identifier, + [anon_sym_querywebpage_DASHinfo] = sym_cmd_identifier, + [anon_sym_queryxml] = sym_cmd_identifier, + [anon_sym_randombinary] = sym_cmd_identifier, + [anon_sym_randombool] = sym_cmd_identifier, + [anon_sym_randomchars] = sym_cmd_identifier, + [anon_sym_randomdice] = sym_cmd_identifier, + [anon_sym_randomfloat] = sym_cmd_identifier, + [anon_sym_randomint] = sym_cmd_identifier, + [anon_sym_randomuuid] = sym_cmd_identifier, + [anon_sym_rolldown] = sym_cmd_identifier, + [anon_sym_rollleft] = sym_cmd_identifier, + [anon_sym_rollright] = sym_cmd_identifier, + [anon_sym_rollup] = sym_cmd_identifier, + [anon_sym_scopealiases] = sym_cmd_identifier, + [anon_sym_scopecommands] = sym_cmd_identifier, + [anon_sym_scopeengine_DASHstats] = sym_cmd_identifier, + [anon_sym_scopeexterns] = sym_cmd_identifier, + [anon_sym_scopemodules] = sym_cmd_identifier, + [anon_sym_scopevariables] = sym_cmd_identifier, + [anon_sym_seqchar] = sym_cmd_identifier, + [anon_sym_seqdate] = sym_cmd_identifier, + [anon_sym_skipuntil] = sym_cmd_identifier, + [anon_sym_skipwhile] = sym_cmd_identifier, + [anon_sym_splitcell_DASHpath] = sym_cmd_identifier, + [anon_sym_splitchars] = sym_cmd_identifier, + [anon_sym_splitcolumn] = sym_cmd_identifier, + [anon_sym_splitlist] = sym_cmd_identifier, + [anon_sym_splitrow] = sym_cmd_identifier, + [anon_sym_splitwords] = sym_cmd_identifier, + [anon_sym_storcreate] = sym_cmd_identifier, + [anon_sym_stordelete] = sym_cmd_identifier, + [anon_sym_storexport] = sym_cmd_identifier, + [anon_sym_storimport] = sym_cmd_identifier, + [anon_sym_storinsert] = sym_cmd_identifier, + [anon_sym_storopen] = sym_cmd_identifier, + [anon_sym_storreset] = sym_cmd_identifier, + [anon_sym_storupdate] = sym_cmd_identifier, + [anon_sym_strbexpand] = sym_cmd_identifier, + [anon_sym_strcamel_DASHcase] = sym_cmd_identifier, + [anon_sym_strcapitalize] = sym_cmd_identifier, + [anon_sym_strcompress] = sym_cmd_identifier, + [anon_sym_strcontains] = sym_cmd_identifier, + [anon_sym_strdecompress] = sym_cmd_identifier, + [anon_sym_strdedent] = sym_cmd_identifier, + [anon_sym_strdeunicode] = sym_cmd_identifier, + [anon_sym_strdistance] = sym_cmd_identifier, + [anon_sym_strdowncase] = sym_cmd_identifier, + [anon_sym_strends_DASHwith] = sym_cmd_identifier, + [anon_sym_strexpand] = sym_cmd_identifier, + [anon_sym_strindent] = sym_cmd_identifier, + [anon_sym_strindex_DASHof] = sym_cmd_identifier, + [anon_sym_strjoin] = sym_cmd_identifier, + [anon_sym_strkebab_DASHcase] = sym_cmd_identifier, + [anon_sym_strlength] = sym_cmd_identifier, + [anon_sym_strpascal_DASHcase] = sym_cmd_identifier, + [anon_sym_strreplace] = sym_cmd_identifier, + [anon_sym_strreverse] = sym_cmd_identifier, + [anon_sym_strscreaming_DASHsnake_DASHcase] = sym_cmd_identifier, + [anon_sym_strsimilarity] = sym_cmd_identifier, + [anon_sym_strsnake_DASHcase] = sym_cmd_identifier, + [anon_sym_strstarts_DASHwith] = sym_cmd_identifier, + [anon_sym_strstats] = sym_cmd_identifier, + [anon_sym_strsubstring] = sym_cmd_identifier, + [anon_sym_strtitle_DASHcase] = sym_cmd_identifier, + [anon_sym_strtrim] = sym_cmd_identifier, + [anon_sym_strupcase] = sym_cmd_identifier, + [anon_sym_strwrap] = sym_cmd_identifier, + [anon_sym_syscpu] = sym_cmd_identifier, + [anon_sym_sysdisks] = sym_cmd_identifier, + [anon_sym_syshost] = sym_cmd_identifier, + [anon_sym_sysmem] = sym_cmd_identifier, + [anon_sym_sysnet] = sym_cmd_identifier, + [anon_sym_systemp] = sym_cmd_identifier, + [anon_sym_sysusers] = sym_cmd_identifier, + [anon_sym_takeuntil] = sym_cmd_identifier, + [anon_sym_takewhile] = sym_cmd_identifier, + [anon_sym_termquery] = sym_cmd_identifier, + [anon_sym_termsize] = sym_cmd_identifier, + [anon_sym_tobz2] = sym_cmd_identifier, + [anon_sym_tocsv] = sym_cmd_identifier, + [anon_sym_togz] = sym_cmd_identifier, + [anon_sym_tohtml] = sym_cmd_identifier, + [anon_sym_tojson] = sym_cmd_identifier, + [anon_sym_tomd] = sym_cmd_identifier, + [anon_sym_tomsgpack] = sym_cmd_identifier, + [anon_sym_tomsgpackz] = sym_cmd_identifier, + [anon_sym_tonuon] = sym_cmd_identifier, + [anon_sym_toparquet] = sym_cmd_identifier, + [anon_sym_toplist] = sym_cmd_identifier, + [anon_sym_topng] = sym_cmd_identifier, + [anon_sym_totext] = sym_cmd_identifier, + [anon_sym_totoml] = sym_cmd_identifier, + [anon_sym_totsv] = sym_cmd_identifier, + [anon_sym_toxml] = sym_cmd_identifier, + [anon_sym_toxz] = sym_cmd_identifier, + [anon_sym_toyaml] = sym_cmd_identifier, + [anon_sym_tozst] = sym_cmd_identifier, + [anon_sym_updatecells] = sym_cmd_identifier, + [anon_sym_urlbuild_DASHquery] = sym_cmd_identifier, + [anon_sym_urldecode] = sym_cmd_identifier, + [anon_sym_urlencode] = sym_cmd_identifier, + [anon_sym_urljoin] = sym_cmd_identifier, + [anon_sym_urlparse] = sym_cmd_identifier, + [anon_sym_urlsplit_DASHquery] = sym_cmd_identifier, + [anon_sym_viewfiles] = sym_cmd_identifier, + [anon_sym_viewir] = sym_cmd_identifier, + [anon_sym_viewsource] = sym_cmd_identifier, + [anon_sym_viewspan] = sym_cmd_identifier, [anon_sym_err_GT] = anon_sym_err_GT, [anon_sym_out_GT] = anon_sym_out_GT, [anon_sym_e_GT] = anon_sym_e_GT, @@ -2658,10672 +3837,12245 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_err_GT] = { + [anon_sym_ansigradient] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_out_GT] = { + [anon_sym_ansilink] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_e_GT] = { + [anon_sym_ansistrip] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_o_GT] = { + [anon_sym_bitsand] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_err_PLUSout_GT] = { + [anon_sym_bitsnot] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_out_PLUSerr_GT] = { + [anon_sym_bitsor] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_o_PLUSe_GT] = { + [anon_sym_bitsrol] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_e_PLUSo_GT] = { + [anon_sym_bitsror] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_err_GT_GT] = { + [anon_sym_bitsshl] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_out_GT_GT] = { + [anon_sym_bitsshr] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_e_GT_GT] = { + [anon_sym_bitsxor] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_o_GT_GT] = { + [anon_sym_bytesadd] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_err_PLUSout_GT_GT] = { + [anon_sym_bytesat] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_out_PLUSerr_GT_GT] = { + [anon_sym_bytesbuild] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_o_PLUSe_GT_GT] = { + [anon_sym_bytescollect] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_e_PLUSo_GT_GT] = { + [anon_sym_bytesends_DASHwith] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_EQ2] = { + [anon_sym_bytesindex_DASHof] = { .visible = true, - .named = false, + .named = true, }, - [sym_short_flag_identifier] = { + [anon_sym_byteslength] = { .visible = true, .named = true, }, - [sym__unquoted_naive] = { + [anon_sym_bytesremove] = { .visible = true, .named = true, }, - [aux_sym_unquoted_token1] = { - .visible = false, - .named = false, + [anon_sym_bytesreplace] = { + .visible = true, + .named = true, }, - [aux_sym_unquoted_token2] = { - .visible = false, - .named = false, + [anon_sym_bytesreverse] = { + .visible = true, + .named = true, }, - [aux_sym_unquoted_token3] = { - .visible = false, - .named = false, + [anon_sym_bytesstarts_DASHwith] = { + .visible = true, + .named = true, }, - [aux_sym_unquoted_token4] = { - .visible = false, - .named = false, + [anon_sym_commandlineedit] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_token1] = { - .visible = false, - .named = false, + [anon_sym_commandlineget_DASHcursor] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_token2] = { - .visible = false, - .named = false, + [anon_sym_commandlineset_DASHcursor] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_token3] = { - .visible = false, - .named = false, + [anon_sym_configenv] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_token4] = { - .visible = false, - .named = false, + [anon_sym_confignu] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_token1] = { - .visible = false, - .named = false, + [anon_sym_configreset] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_token2] = { - .visible = false, - .named = false, + [anon_sym_dateformat] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_token3] = { - .visible = false, - .named = false, + [anon_sym_datehumanize] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_token4] = { - .visible = false, - .named = false, + [anon_sym_datelist_DASHtimezone] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_with_expr_token1] = { - .visible = false, - .named = false, + [anon_sym_datenow] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_with_expr_token1] = { - .visible = false, - .named = false, + [anon_sym_dateto_DASHrecord] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_with_expr_token1] = { - .visible = false, - .named = false, + [anon_sym_dateto_DASHtable] = { + .visible = true, + .named = true, }, - [anon_sym_POUND] = { + [anon_sym_dateto_DASHtimezone] = { .visible = true, - .named = false, + .named = true, }, - [aux_sym_comment_token1] = { - .visible = false, - .named = false, + [anon_sym_debuginfo] = { + .visible = true, + .named = true, }, - [sym_raw_string_begin] = { + [anon_sym_debugprofile] = { .visible = true, .named = true, }, - [sym_raw_string_content] = { + [anon_sym_decodebase32] = { .visible = true, .named = true, }, - [sym_raw_string_end] = { + [anon_sym_decodebase32hex] = { .visible = true, .named = true, }, - [sym_nu_script] = { + [anon_sym_decodebase64] = { .visible = true, .named = true, }, - [sym_shebang] = { + [anon_sym_decodehex] = { .visible = true, .named = true, }, - [sym__block_body_statement] = { - .visible = false, + [anon_sym_detectcolumns] = { + .visible = true, .named = true, }, - [sym__declaration] = { - .visible = false, + [anon_sym_dropcolumn] = { + .visible = true, .named = true, }, - [sym_decl_alias] = { + [anon_sym_dropnth] = { .visible = true, .named = true, }, - [sym_stmt_let] = { + [anon_sym_dtadd] = { .visible = true, .named = true, }, - [sym_stmt_mut] = { + [anon_sym_dtdiff] = { .visible = true, .named = true, }, - [sym_stmt_const] = { + [anon_sym_dtformat] = { .visible = true, .named = true, }, - [sym_assignment] = { + [anon_sym_dtnow] = { .visible = true, .named = true, }, - [sym__assignment_pattern] = { - .visible = false, + [anon_sym_dtpart] = { + .visible = true, .named = true, }, - [sym__mutable_assignment_pattern] = { - .visible = false, + [anon_sym_dtto] = { + .visible = true, .named = true, }, - [sym__statement] = { - .visible = false, + [anon_sym_dtutcnow] = { + .visible = true, .named = true, }, - [sym_pipeline] = { + [anon_sym_eachwhile] = { .visible = true, .named = true, }, - [sym__block_body_statement_parenthesized] = { - .visible = false, + [anon_sym_encodebase32] = { + .visible = true, .named = true, }, - [sym__declaration_parenthesized] = { - .visible = false, + [anon_sym_encodebase32hex] = { + .visible = true, .named = true, }, - [sym_decl_alias_parenthesized] = { + [anon_sym_encodebase64] = { .visible = true, .named = true, }, - [sym_stmt_let_parenthesized] = { + [anon_sym_encodehex] = { .visible = true, .named = true, }, - [sym_stmt_mut_parenthesized] = { + [anon_sym_errormake] = { .visible = true, .named = true, }, - [sym_stmt_const_parenthesized] = { + [anon_sym_exploreir] = { .visible = true, .named = true, }, - [sym_assignment_parenthesized] = { + [anon_sym_formatdate] = { .visible = true, .named = true, }, - [sym__assignment_pattern_parenthesized] = { - .visible = false, + [anon_sym_formatduration] = { + .visible = true, .named = true, }, - [sym__mutable_assignment_pattern_parenthesized] = { - .visible = false, + [anon_sym_formatfilesize] = { + .visible = true, .named = true, }, - [sym__statement_parenthesized] = { - .visible = false, + [anon_sym_formatpattern] = { + .visible = true, .named = true, }, - [sym_pipeline_parenthesized] = { + [anon_sym_frombz2] = { .visible = true, .named = true, }, - [sym__block_body] = { - .visible = false, + [anon_sym_fromcsv] = { + .visible = true, .named = true, }, - [sym_cmd_identifier] = { + [anon_sym_fromeml] = { .visible = true, .named = true, }, - [sym__command_name] = { - .visible = false, + [anon_sym_fromgz] = { + .visible = true, .named = true, }, - [sym__variable_name] = { - .visible = false, + [anon_sym_fromics] = { + .visible = true, .named = true, }, - [aux_sym__pipe_separator] = { - .visible = false, - .named = false, + [anon_sym_fromini] = { + .visible = true, + .named = true, }, - [sym_decl_def] = { + [anon_sym_fromjson] = { .visible = true, .named = true, }, - [sym_decl_export] = { + [anon_sym_frommsgpack] = { .visible = true, .named = true, }, - [sym_decl_extern] = { + [anon_sym_frommsgpackz] = { .visible = true, .named = true, }, - [sym_decl_module] = { + [anon_sym_fromnuon] = { .visible = true, .named = true, }, - [sym_decl_use] = { + [anon_sym_fromods] = { .visible = true, .named = true, }, - [sym_returns] = { + [anon_sym_fromparquet] = { .visible = true, .named = true, }, - [sym__one_type] = { - .visible = false, + [anon_sym_fromplist] = { + .visible = true, .named = true, }, - [sym__multiple_types] = { - .visible = false, + [anon_sym_frompng] = { + .visible = true, .named = true, }, - [sym_parameter_parens] = { + [anon_sym_fromssv] = { .visible = true, .named = true, }, - [sym_parameter_bracks] = { + [anon_sym_fromtoml] = { .visible = true, .named = true, }, - [sym_parameter_pipes] = { + [anon_sym_fromtsv] = { .visible = true, .named = true, }, - [sym_parameter] = { + [anon_sym_fromurl] = { .visible = true, .named = true, }, - [sym__param_name] = { - .visible = false, + [anon_sym_fromvcf] = { + .visible = true, .named = true, }, - [sym_param_type] = { + [anon_sym_fromxlsx] = { .visible = true, .named = true, }, - [sym_param_value] = { + [anon_sym_fromxml] = { .visible = true, .named = true, }, - [sym__type_annotation] = { - .visible = false, + [anon_sym_fromxz] = { + .visible = true, .named = true, }, - [sym__all_type] = { - .visible = false, + [anon_sym_fromyaml] = { + .visible = true, .named = true, }, - [sym_flat_type] = { + [anon_sym_fromyml] = { .visible = true, .named = true, }, - [sym_collection_type] = { + [anon_sym_fromzst] = { .visible = true, .named = true, }, - [sym_list_type] = { + [anon_sym_hashmd5] = { .visible = true, .named = true, }, - [sym_param_cmd] = { + [anon_sym_hashsha256] = { .visible = true, .named = true, }, - [sym_param_rest] = { + [anon_sym_helpaliases] = { .visible = true, .named = true, }, - [sym_param_opt] = { + [anon_sym_helpcommands] = { .visible = true, .named = true, }, - [sym_param_long_flag] = { + [anon_sym_helpescapes] = { .visible = true, .named = true, }, - [sym_flag_capsule] = { + [anon_sym_helpexterns] = { .visible = true, .named = true, }, - [sym_param_short_flag] = { + [anon_sym_helpmodules] = { .visible = true, .named = true, }, - [sym__ctrl_statement] = { - .visible = false, + [anon_sym_helpoperators] = { + .visible = true, .named = true, }, - [sym__ctrl_expression] = { - .visible = false, + [anon_sym_historyimport] = { + .visible = true, .named = true, }, - [sym__ctrl_expression_parenthesized] = { - .visible = false, + [anon_sym_historysession] = { + .visible = true, .named = true, }, - [sym_ctrl_for] = { + [anon_sym_httpdelete] = { .visible = true, .named = true, }, - [sym_ctrl_loop] = { + [anon_sym_httpget] = { .visible = true, .named = true, }, - [sym_ctrl_error] = { + [anon_sym_httphead] = { .visible = true, .named = true, }, - [sym_ctrl_while] = { + [anon_sym_httpoptions] = { .visible = true, .named = true, }, - [sym_ctrl_do] = { + [anon_sym_httppatch] = { .visible = true, .named = true, }, - [sym_ctrl_do_parenthesized] = { + [anon_sym_httppost] = { .visible = true, .named = true, }, - [sym_ctrl_if] = { + [anon_sym_httpput] = { .visible = true, .named = true, }, - [sym_ctrl_if_parenthesized] = { + [anon_sym_inputlist] = { .visible = true, .named = true, }, - [sym_ctrl_match] = { + [anon_sym_inputlisten] = { .visible = true, .named = true, }, - [sym_match_arm] = { + [anon_sym_intobinary] = { .visible = true, .named = true, }, - [sym_default_arm] = { + [anon_sym_intobits] = { .visible = true, .named = true, }, - [sym_match_pattern] = { + [anon_sym_intobool] = { .visible = true, .named = true, }, - [sym__match_pattern] = { - .visible = false, + [anon_sym_intocell_DASHpath] = { + .visible = true, .named = true, }, - [sym_match_guard] = { + [anon_sym_intodatetime] = { .visible = true, .named = true, }, - [sym__match_pattern_expression] = { - .visible = false, + [anon_sym_intoduration] = { + .visible = true, .named = true, }, - [sym__match_pattern_value] = { - .visible = false, + [anon_sym_intofilesize] = { + .visible = true, .named = true, }, - [sym__match_pattern_list] = { + [anon_sym_intofloat] = { .visible = true, .named = true, }, - [sym__match_pattern_rest] = { + [anon_sym_intoglob] = { .visible = true, .named = true, }, - [sym__match_pattern_record] = { + [anon_sym_intoint] = { .visible = true, .named = true, }, - [sym__match_pattern_record_variable] = { - .visible = false, + [anon_sym_intorecord] = { + .visible = true, .named = true, }, - [sym_ctrl_try] = { + [anon_sym_intosqlite] = { .visible = true, .named = true, }, - [sym_ctrl_try_parenthesized] = { + [anon_sym_intostring] = { .visible = true, .named = true, }, - [sym_ctrl_return] = { + [anon_sym_intovalue] = { .visible = true, .named = true, }, - [sym_pipe_element] = { + [anon_sym_jsonpath] = { .visible = true, .named = true, }, - [sym_pipe_element_parenthesized] = { + [anon_sym_keybindingsdefault] = { .visible = true, .named = true, }, - [sym_stmt_source] = { + [anon_sym_keybindingslist] = { .visible = true, .named = true, }, - [sym_stmt_register] = { + [anon_sym_keybindingslisten] = { .visible = true, .named = true, }, - [sym__stmt_hide] = { - .visible = false, + [anon_sym_mathabs] = { + .visible = true, .named = true, }, - [sym_hide_mod] = { + [anon_sym_matharccos] = { .visible = true, .named = true, }, - [sym_hide_env] = { + [anon_sym_matharccosh] = { .visible = true, .named = true, }, - [sym__stmt_overlay] = { - .visible = false, + [anon_sym_matharcsin] = { + .visible = true, .named = true, }, - [sym_overlay_list] = { + [anon_sym_matharcsinh] = { .visible = true, .named = true, }, - [sym_overlay_hide] = { + [anon_sym_matharctan] = { .visible = true, .named = true, }, - [sym_overlay_new] = { + [anon_sym_matharctanh] = { .visible = true, .named = true, }, - [sym_overlay_use] = { + [anon_sym_mathavg] = { .visible = true, .named = true, }, - [sym_scope_pattern] = { + [anon_sym_mathceil] = { .visible = true, .named = true, }, - [sym_wild_card] = { + [anon_sym_mathcos] = { .visible = true, .named = true, }, - [sym_command_list] = { + [anon_sym_mathcosh] = { .visible = true, .named = true, }, - [sym_block] = { + [anon_sym_mathexp] = { .visible = true, .named = true, }, - [sym__blosure] = { - .visible = false, + [anon_sym_mathfloor] = { + .visible = true, .named = true, }, - [sym__where_predicate_lhs] = { - .visible = false, + [anon_sym_mathln] = { + .visible = true, .named = true, }, - [sym_where_command] = { + [anon_sym_mathlog] = { .visible = true, .named = true, }, - [sym_where_command_parenthesized] = { + [anon_sym_mathmax] = { .visible = true, .named = true, }, - [sym__binary_predicate] = { - .visible = false, + [anon_sym_mathmedian] = { + .visible = true, .named = true, }, - [sym__binary_predicate_parenthesized] = { - .visible = false, + [anon_sym_mathmin] = { + .visible = true, .named = true, }, - [sym__predicate] = { - .visible = false, + [anon_sym_mathmode] = { + .visible = true, .named = true, }, - [sym__expression] = { - .visible = false, + [anon_sym_mathproduct] = { + .visible = true, .named = true, }, - [sym__expression_parenthesized] = { - .visible = false, + [anon_sym_mathround] = { + .visible = true, .named = true, }, - [sym_expr_unary] = { + [anon_sym_mathsin] = { .visible = true, .named = true, }, - [sym__expr_unary_minus] = { - .visible = false, + [anon_sym_mathsinh] = { + .visible = true, .named = true, }, - [sym_expr_binary] = { + [anon_sym_mathsqrt] = { .visible = true, .named = true, }, - [sym_expr_binary_parenthesized] = { + [anon_sym_mathstddev] = { .visible = true, .named = true, }, - [sym__expr_binary_expression] = { - .visible = false, + [anon_sym_mathsum] = { + .visible = true, .named = true, }, - [sym__expr_binary_expression_parenthesized] = { - .visible = false, + [anon_sym_mathtan] = { + .visible = true, .named = true, }, - [sym_expr_parenthesized] = { + [anon_sym_mathtanh] = { .visible = true, .named = true, }, - [sym__spread_parenthesized] = { + [anon_sym_mathvariance] = { .visible = true, .named = true, }, - [sym__expr_parenthesized_immediate] = { + [anon_sym_metadataaccess] = { .visible = true, .named = true, }, - [sym__parenthesized_body] = { - .visible = false, + [anon_sym_metadataset] = { + .visible = true, .named = true, }, - [sym_val_range] = { + [anon_sym_pathbasename] = { .visible = true, .named = true, }, - [sym__val_range] = { - .visible = false, + [anon_sym_pathdirname] = { + .visible = true, .named = true, }, - [sym__val_range_with_end] = { - .visible = false, + [anon_sym_pathexists] = { + .visible = true, .named = true, }, - [sym__immediate_decimal] = { - .visible = false, + [anon_sym_pathexpand] = { + .visible = true, .named = true, }, - [sym__value] = { - .visible = false, + [anon_sym_pathjoin] = { + .visible = true, .named = true, }, - [sym_val_nothing] = { + [anon_sym_pathparse] = { .visible = true, .named = true, }, - [sym_val_bool] = { + [anon_sym_pathrelative_DASHto] = { .visible = true, .named = true, }, - [sym__spread_variable] = { + [anon_sym_pathsplit] = { .visible = true, .named = true, }, - [sym_val_variable] = { + [anon_sym_pathtype] = { .visible = true, .named = true, }, - [sym_val_number] = { + [anon_sym_pluginadd] = { .visible = true, .named = true, }, - [sym__val_number_decimal] = { - .visible = false, + [anon_sym_pluginlist] = { + .visible = true, .named = true, }, - [sym__val_number] = { - .visible = false, + [anon_sym_pluginrm] = { + .visible = true, .named = true, }, - [sym_val_duration] = { + [anon_sym_pluginstop] = { .visible = true, .named = true, }, - [sym_val_filesize] = { + [anon_sym_polarsagg] = { .visible = true, .named = true, }, - [sym_val_binary] = { + [anon_sym_polarsagg_DASHgroups] = { .visible = true, .named = true, }, - [sym_val_string] = { + [anon_sym_polarsall_DASHfalse] = { .visible = true, .named = true, }, - [sym__raw_str] = { - .visible = false, + [anon_sym_polarsall_DASHtrue] = { + .visible = true, .named = true, }, - [sym__str_double_quotes] = { - .visible = false, + [anon_sym_polarsappend] = { + .visible = true, .named = true, }, - [sym_val_interpolated] = { + [anon_sym_polarsarg_DASHmax] = { .visible = true, .named = true, }, - [sym__inter_single_quotes] = { - .visible = false, + [anon_sym_polarsarg_DASHmin] = { + .visible = true, .named = true, }, - [sym__inter_double_quotes] = { - .visible = false, + [anon_sym_polarsarg_DASHsort] = { + .visible = true, .named = true, }, - [sym_expr_interpolated] = { + [anon_sym_polarsarg_DASHtrue] = { .visible = true, .named = true, }, - [sym_val_list] = { + [anon_sym_polarsarg_DASHunique] = { .visible = true, .named = true, }, - [sym__spread_list] = { + [anon_sym_polarsarg_DASHwhere] = { .visible = true, .named = true, }, - [sym_list_body] = { + [anon_sym_polarsas] = { .visible = true, .named = true, }, - [sym_val_entry] = { + [anon_sym_polarsas_DASHdate] = { .visible = true, .named = true, }, - [sym_val_record] = { + [anon_sym_polarsas_DASHdatetime] = { .visible = true, .named = true, }, - [sym__spread_record] = { + [anon_sym_polarscache] = { .visible = true, .named = true, }, - [sym_record_body] = { + [anon_sym_polarscast] = { .visible = true, .named = true, }, - [sym_record_entry] = { + [anon_sym_polarscol] = { .visible = true, .named = true, }, - [sym__record_key] = { + [anon_sym_polarscollect] = { .visible = true, .named = true, }, - [sym_val_table] = { + [anon_sym_polarscolumns] = { .visible = true, .named = true, }, - [sym_val_closure] = { + [anon_sym_polarsconcat] = { .visible = true, .named = true, }, - [sym_cell_path] = { + [anon_sym_polarsconcat_DASHstr] = { .visible = true, .named = true, }, - [sym_path] = { + [anon_sym_polarscontains] = { .visible = true, .named = true, }, - [sym_env_var] = { + [anon_sym_polarscount] = { .visible = true, .named = true, }, - [sym_command] = { + [anon_sym_polarscount_DASHnull] = { .visible = true, .named = true, }, - [sym__command_parenthesized] = { + [anon_sym_polarscumulative] = { .visible = true, .named = true, }, - [sym__cmd_arg] = { - .visible = false, + [anon_sym_polarsdatepart] = { + .visible = true, .named = true, }, - [sym_redirection] = { + [anon_sym_polarsdecimal] = { .visible = true, .named = true, }, - [sym__flags_parenthesized] = { - .visible = false, + [anon_sym_polarsdrop] = { + .visible = true, .named = true, }, - [sym_short_flag] = { + [anon_sym_polarsdrop_DASHduplicates] = { .visible = true, .named = true, }, - [sym_long_flag] = { + [anon_sym_polarsdrop_DASHnulls] = { .visible = true, .named = true, }, - [sym_unquoted] = { + [anon_sym_polarsdummies] = { .visible = true, .named = true, }, - [sym__unquoted_in_list] = { + [anon_sym_polarsexplode] = { .visible = true, .named = true, }, - [sym__unquoted_in_record] = { + [anon_sym_polarsexpr_DASHnot] = { .visible = true, .named = true, }, - [sym__unquoted_with_expr] = { + [anon_sym_polarsfetch] = { .visible = true, .named = true, }, - [sym__unquoted_in_list_with_expr] = { + [anon_sym_polarsfill_DASHnan] = { .visible = true, .named = true, }, - [sym__unquoted_in_record_with_expr] = { + [anon_sym_polarsfill_DASHnull] = { .visible = true, .named = true, }, - [sym__unquoted_anonymous_prefix] = { - .visible = false, + [anon_sym_polarsfilter] = { + .visible = true, .named = true, }, - [sym_comment] = { + [anon_sym_polarsfilter_DASHwith] = { .visible = true, .named = true, }, - [aux_sym_shebang_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsfirst] = { + .visible = true, + .named = true, }, - [aux_sym_pipeline_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsflatten] = { + .visible = true, + .named = true, }, - [aux_sym_pipeline_parenthesized_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget] = { + .visible = true, + .named = true, }, - [aux_sym__block_body_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHday] = { + .visible = true, + .named = true, }, - [aux_sym__block_body_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHhour] = { + .visible = true, + .named = true, }, - [aux_sym_decl_def_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHminute] = { + .visible = true, + .named = true, }, - [aux_sym__multiple_types_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHmonth] = { + .visible = true, + .named = true, }, - [aux_sym__multiple_types_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHnanosecond] = { + .visible = true, + .named = true, }, - [aux_sym_parameter_parens_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHordinal] = { + .visible = true, + .named = true, }, - [aux_sym_parameter_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHsecond] = { + .visible = true, + .named = true, }, - [aux_sym_parameter_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHweek] = { + .visible = true, + .named = true, }, - [aux_sym_collection_type_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHweekday] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_do_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsget_DASHyear] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_do_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsgroup_DASHby] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_do_parenthesized_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsimplode] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_do_parenthesized_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsinteger] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_do_parenthesized_repeat3] = { - .visible = false, - .named = false, + [anon_sym_polarsinto_DASHdf] = { + .visible = true, + .named = true, }, - [aux_sym_ctrl_match_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsinto_DASHlazy] = { + .visible = true, + .named = true, }, - [aux_sym_match_pattern_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsinto_DASHnu] = { + .visible = true, + .named = true, }, - [aux_sym__match_pattern_list_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsis_DASHduplicated] = { + .visible = true, + .named = true, }, - [aux_sym__match_pattern_record_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsis_DASHin] = { + .visible = true, + .named = true, }, - [aux_sym_pipe_element_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsis_DASHnot_DASHnull] = { + .visible = true, + .named = true, }, - [aux_sym_pipe_element_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarsis_DASHnull] = { + .visible = true, + .named = true, }, - [aux_sym_pipe_element_parenthesized_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsis_DASHunique] = { + .visible = true, + .named = true, }, - [aux_sym_command_list_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsjoin] = { + .visible = true, + .named = true, }, - [aux_sym__parenthesized_body_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarslast] = { + .visible = true, + .named = true, }, - [aux_sym__parenthesized_body_repeat2] = { - .visible = false, - .named = false, + [anon_sym_polarslen] = { + .visible = true, + .named = true, }, - [aux_sym_val_binary_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarslit] = { + .visible = true, + .named = true, }, - [aux_sym__str_double_quotes_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarslowercase] = { + .visible = true, + .named = true, }, - [aux_sym__inter_single_quotes_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsmax] = { + .visible = true, + .named = true, }, - [aux_sym__inter_double_quotes_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsmean] = { + .visible = true, + .named = true, }, - [aux_sym_list_body_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsmedian] = { + .visible = true, + .named = true, }, - [aux_sym_record_body_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsmin] = { + .visible = true, + .named = true, }, - [aux_sym_val_table_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsn_DASHunique] = { + .visible = true, + .named = true, }, - [aux_sym_cell_path_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsnot] = { + .visible = true, + .named = true, }, - [aux_sym_command_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsopen] = { + .visible = true, + .named = true, }, - [aux_sym__command_parenthesized_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsotherwise] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_with_expr_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarspivot] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_list_with_expr_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsprofile] = { + .visible = true, + .named = true, }, - [aux_sym__unquoted_in_record_with_expr_repeat1] = { - .visible = false, - .named = false, + [anon_sym_polarsquantile] = { + .visible = true, + .named = true, }, - [anon_alias_sym__head] = { + [anon_sym_polarsquery] = { .visible = true, - .named = false, + .named = true, }, - [anon_alias_sym__prefix] = { + [anon_sym_polarsrename] = { .visible = true, - .named = false, + .named = true, }, - [anon_alias_sym__unit] = { + [anon_sym_polarsreplace] = { .visible = true, - .named = false, + .named = true, }, - [anon_alias_sym_quoted] = { + [anon_sym_polarsreplace_DASHall] = { .visible = true, - .named = false, + .named = true, }, -}; - -enum ts_field_identifiers { - field_arg = 1, - field_arg_spread = 2, - field_arg_str = 3, - field_body = 4, - field_catch_branch = 5, - field_cmd = 6, - field_command = 7, - field_command_list = 8, - field_completion = 9, - field_condition = 10, - field_ctrl_break = 11, - field_ctrl_continue = 12, - field_default_pattern = 13, - field_digit = 14, - field_dollar_name = 15, - field_else_block = 16, - field_else_branch = 17, - field_end = 18, - field_entry = 19, - field_error_record = 20, - field_expr = 21, - field_expression = 22, - field_file = 23, - field_file_path = 24, - field_flag = 25, - field_flag_capsule = 26, - field_flat_type = 27, - field_head = 28, - field_import_pattern = 29, - field_inner = 30, - field_item = 31, - field_iterable = 32, - field_key = 33, - field_lhs = 34, - field_looping_var = 35, - field_module = 36, - field_name = 37, - field_opr = 38, - field_overlay = 39, - field_param_long_flag = 40, - field_param_name = 41, - field_param_optional = 42, - field_param_rest = 43, - field_param_short_flag = 44, - field_param_value = 45, - field_parameters = 46, - field_pattern = 47, - field_plugin = 48, - field_predicate = 49, - field_protected_path = 50, - field_quoted_name = 51, - field_raw_path = 52, - field_redir = 53, - field_rename = 54, - field_rest = 55, - field_return_type = 56, - field_rhs = 57, - field_row = 58, - field_scrutinee = 59, - field_signature = 60, - field_spread = 61, - field_start = 62, - field_step = 63, - field_then_branch = 64, - field_try_branch = 65, - field_type = 66, - field_unit = 67, - field_unquoted_name = 68, - field_value = 69, - field_var_name = 70, - field_variable = 71, - field_wildcard = 72, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_arg] = "arg", - [field_arg_spread] = "arg_spread", - [field_arg_str] = "arg_str", - [field_body] = "body", - [field_catch_branch] = "catch_branch", - [field_cmd] = "cmd", - [field_command] = "command", - [field_command_list] = "command_list", - [field_completion] = "completion", - [field_condition] = "condition", - [field_ctrl_break] = "ctrl_break", - [field_ctrl_continue] = "ctrl_continue", - [field_default_pattern] = "default_pattern", - [field_digit] = "digit", - [field_dollar_name] = "dollar_name", - [field_else_block] = "else_block", - [field_else_branch] = "else_branch", - [field_end] = "end", - [field_entry] = "entry", - [field_error_record] = "error_record", - [field_expr] = "expr", - [field_expression] = "expression", - [field_file] = "file", - [field_file_path] = "file_path", - [field_flag] = "flag", - [field_flag_capsule] = "flag_capsule", - [field_flat_type] = "flat_type", - [field_head] = "head", - [field_import_pattern] = "import_pattern", - [field_inner] = "inner", - [field_item] = "item", - [field_iterable] = "iterable", - [field_key] = "key", - [field_lhs] = "lhs", - [field_looping_var] = "looping_var", - [field_module] = "module", - [field_name] = "name", - [field_opr] = "opr", - [field_overlay] = "overlay", - [field_param_long_flag] = "param_long_flag", - [field_param_name] = "param_name", - [field_param_optional] = "param_optional", - [field_param_rest] = "param_rest", - [field_param_short_flag] = "param_short_flag", - [field_param_value] = "param_value", - [field_parameters] = "parameters", - [field_pattern] = "pattern", - [field_plugin] = "plugin", - [field_predicate] = "predicate", - [field_protected_path] = "protected_path", - [field_quoted_name] = "quoted_name", - [field_raw_path] = "raw_path", - [field_redir] = "redir", - [field_rename] = "rename", - [field_rest] = "rest", - [field_return_type] = "return_type", - [field_rhs] = "rhs", - [field_row] = "row", - [field_scrutinee] = "scrutinee", - [field_signature] = "signature", - [field_spread] = "spread", - [field_start] = "start", - [field_step] = "step", - [field_then_branch] = "then_branch", - [field_try_branch] = "try_branch", - [field_type] = "type", - [field_unit] = "unit", - [field_unquoted_name] = "unquoted_name", - [field_value] = "value", - [field_var_name] = "var_name", - [field_variable] = "variable", - [field_wildcard] = "wildcard", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 3}, - [4] = {.index = 5, .length = 1}, - [5] = {.index = 6, .length = 2}, - [6] = {.index = 8, .length = 1}, - [7] = {.index = 9, .length = 1}, - [8] = {.index = 10, .length = 1}, - [9] = {.index = 11, .length = 1}, - [10] = {.index = 12, .length = 5}, - [11] = {.index = 17, .length = 1}, - [12] = {.index = 18, .length = 1}, - [13] = {.index = 19, .length = 3}, - [15] = {.index = 22, .length = 1}, - [16] = {.index = 23, .length = 1}, - [17] = {.index = 24, .length = 1}, - [18] = {.index = 25, .length = 2}, - [19] = {.index = 27, .length = 1}, - [20] = {.index = 28, .length = 6}, - [21] = {.index = 34, .length = 1}, - [22] = {.index = 35, .length = 1}, - [23] = {.index = 35, .length = 1}, - [24] = {.index = 36, .length = 1}, - [25] = {.index = 37, .length = 1}, - [26] = {.index = 37, .length = 1}, - [27] = {.index = 38, .length = 1}, - [28] = {.index = 38, .length = 1}, - [29] = {.index = 39, .length = 3}, - [30] = {.index = 42, .length = 3}, - [32] = {.index = 45, .length = 4}, - [33] = {.index = 49, .length = 1}, - [34] = {.index = 50, .length = 1}, - [35] = {.index = 51, .length = 2}, - [36] = {.index = 53, .length = 2}, - [37] = {.index = 55, .length = 6}, - [38] = {.index = 61, .length = 1}, - [39] = {.index = 61, .length = 1}, - [40] = {.index = 62, .length = 2}, - [41] = {.index = 64, .length = 5}, - [42] = {.index = 69, .length = 3}, - [43] = {.index = 72, .length = 1}, - [44] = {.index = 73, .length = 4}, - [45] = {.index = 77, .length = 4}, - [46] = {.index = 81, .length = 3}, - [47] = {.index = 84, .length = 2}, - [48] = {.index = 86, .length = 1}, - [49] = {.index = 87, .length = 1}, - [51] = {.index = 88, .length = 1}, - [52] = {.index = 89, .length = 2}, - [53] = {.index = 91, .length = 2}, - [54] = {.index = 93, .length = 6}, - [55] = {.index = 99, .length = 1}, - [56] = {.index = 100, .length = 2}, - [57] = {.index = 102, .length = 2}, - [58] = {.index = 104, .length = 1}, - [59] = {.index = 105, .length = 4}, - [60] = {.index = 109, .length = 1}, - [61] = {.index = 110, .length = 1}, - [62] = {.index = 111, .length = 1}, - [63] = {.index = 112, .length = 1}, - [64] = {.index = 113, .length = 2}, - [65] = {.index = 113, .length = 2}, - [66] = {.index = 115, .length = 3}, - [67] = {.index = 118, .length = 1}, - [68] = {.index = 119, .length = 3}, - [69] = {.index = 122, .length = 2}, - [70] = {.index = 124, .length = 1}, - [71] = {.index = 125, .length = 1}, - [72] = {.index = 126, .length = 2}, - [73] = {.index = 128, .length = 7}, - [74] = {.index = 135, .length = 1}, - [75] = {.index = 136, .length = 1}, - [76] = {.index = 137, .length = 2}, - [77] = {.index = 139, .length = 5}, - [78] = {.index = 144, .length = 1}, - [79] = {.index = 145, .length = 1}, - [80] = {.index = 146, .length = 1}, - [81] = {.index = 147, .length = 10}, - [82] = {.index = 157, .length = 3}, - [83] = {.index = 157, .length = 3}, - [84] = {.index = 160, .length = 2}, - [85] = {.index = 160, .length = 2}, - [86] = {.index = 160, .length = 2}, - [87] = {.index = 160, .length = 2}, - [88] = {.index = 162, .length = 4}, - [89] = {.index = 166, .length = 4}, - [90] = {.index = 170, .length = 2}, - [91] = {.index = 172, .length = 4}, - [92] = {.index = 176, .length = 4}, - [93] = {.index = 180, .length = 1}, - [94] = {.index = 181, .length = 1}, - [95] = {.index = 182, .length = 1}, - [96] = {.index = 183, .length = 1}, - [97] = {.index = 183, .length = 1}, - [98] = {.index = 184, .length = 1}, - [99] = {.index = 185, .length = 5}, - [100] = {.index = 190, .length = 5}, - [101] = {.index = 195, .length = 1}, - [102] = {.index = 195, .length = 1}, - [103] = {.index = 196, .length = 1}, - [105] = {.index = 197, .length = 2}, - [106] = {.index = 199, .length = 1}, - [107] = {.index = 200, .length = 4}, - [108] = {.index = 204, .length = 1}, - [109] = {.index = 205, .length = 1}, - [110] = {.index = 206, .length = 1}, - [111] = {.index = 207, .length = 2}, - [112] = {.index = 209, .length = 1}, - [113] = {.index = 206, .length = 1}, - [114] = {.index = 210, .length = 2}, - [115] = {.index = 212, .length = 1}, - [116] = {.index = 213, .length = 2}, - [117] = {.index = 215, .length = 2}, - [118] = {.index = 217, .length = 1}, - [119] = {.index = 210, .length = 2}, - [120] = {.index = 218, .length = 2}, - [121] = {.index = 218, .length = 2}, - [122] = {.index = 218, .length = 2}, - [123] = {.index = 218, .length = 2}, - [124] = {.index = 220, .length = 2}, - [125] = {.index = 222, .length = 1}, - [126] = {.index = 223, .length = 9}, - [127] = {.index = 232, .length = 2}, - [128] = {.index = 234, .length = 1}, - [129] = {.index = 235, .length = 2}, - [130] = {.index = 237, .length = 1}, - [131] = {.index = 238, .length = 2}, - [132] = {.index = 238, .length = 2}, - [133] = {.index = 238, .length = 2}, - [134] = {.index = 238, .length = 2}, - [135] = {.index = 240, .length = 4}, - [136] = {.index = 244, .length = 5}, - [137] = {.index = 249, .length = 5}, - [138] = {.index = 254, .length = 2}, - [139] = {.index = 256, .length = 1}, - [140] = {.index = 257, .length = 5}, - [141] = {.index = 262, .length = 2}, - [142] = {.index = 262, .length = 2}, - [143] = {.index = 264, .length = 6}, - [144] = {.index = 270, .length = 3}, - [145] = {.index = 273, .length = 3}, - [146] = {.index = 276, .length = 6}, - [147] = {.index = 282, .length = 2}, - [148] = {.index = 282, .length = 2}, - [149] = {.index = 284, .length = 2}, - [150] = {.index = 286, .length = 1}, - [151] = {.index = 287, .length = 2}, - [152] = {.index = 289, .length = 1}, - [153] = {.index = 290, .length = 2}, - [154] = {.index = 292, .length = 2}, - [155] = {.index = 294, .length = 3}, - [156] = {.index = 294, .length = 3}, - [157] = {.index = 297, .length = 3}, - [158] = {.index = 297, .length = 3}, - [159] = {.index = 300, .length = 5}, - [160] = {.index = 305, .length = 3}, - [161] = {.index = 308, .length = 3}, - [162] = {.index = 311, .length = 1}, - [163] = {.index = 312, .length = 1}, - [164] = {.index = 313, .length = 1}, - [165] = {.index = 314, .length = 4}, - [166] = {.index = 318, .length = 3}, - [167] = {.index = 318, .length = 3}, - [168] = {.index = 318, .length = 3}, - [169] = {.index = 318, .length = 3}, - [170] = {.index = 318, .length = 3}, - [171] = {.index = 318, .length = 3}, - [172] = {.index = 318, .length = 3}, - [173] = {.index = 318, .length = 3}, - [174] = {.index = 321, .length = 6}, - [175] = {.index = 327, .length = 5}, - [176] = {.index = 332, .length = 1}, - [177] = {.index = 332, .length = 1}, - [178] = {.index = 333, .length = 2}, - [179] = {.index = 335, .length = 1}, - [180] = {.index = 336, .length = 2}, - [181] = {.index = 338, .length = 2}, - [182] = {.index = 340, .length = 3}, - [183] = {.index = 343, .length = 6}, - [184] = {.index = 349, .length = 2}, - [185] = {.index = 351, .length = 3}, - [186] = {.index = 354, .length = 2}, - [188] = {.index = 356, .length = 2}, - [189] = {.index = 358, .length = 2}, - [190] = {.index = 360, .length = 2}, - [191] = {.index = 362, .length = 9}, - [192] = {.index = 371, .length = 9}, - [193] = {.index = 380, .length = 3}, - [194] = {.index = 380, .length = 3}, - [195] = {.index = 383, .length = 5}, - [196] = {.index = 388, .length = 5}, - [197] = {.index = 393, .length = 5}, - [198] = {.index = 398, .length = 1}, - [199] = {.index = 399, .length = 2}, - [200] = {.index = 401, .length = 1}, - [201] = {.index = 402, .length = 2}, - [202] = {.index = 404, .length = 1}, - [203] = {.index = 405, .length = 2}, - [204] = {.index = 407, .length = 2}, - [205] = {.index = 409, .length = 1}, - [206] = {.index = 410, .length = 4}, - [207] = {.index = 414, .length = 4}, - [208] = {.index = 418, .length = 6}, - [209] = {.index = 424, .length = 3}, - [210] = {.index = 427, .length = 6}, - [211] = {.index = 433, .length = 2}, - [212] = {.index = 435, .length = 1}, - [213] = {.index = 436, .length = 2}, - [214] = {.index = 438, .length = 2}, - [215] = {.index = 440, .length = 6}, - [216] = {.index = 446, .length = 3}, - [217] = {.index = 449, .length = 2}, - [218] = {.index = 451, .length = 3}, - [219] = {.index = 454, .length = 3}, - [220] = {.index = 457, .length = 3}, - [221] = {.index = 460, .length = 3}, - [222] = {.index = 463, .length = 3}, - [223] = {.index = 466, .length = 3}, - [224] = {.index = 469, .length = 3}, - [225] = {.index = 472, .length = 2}, - [226] = {.index = 474, .length = 2}, - [227] = {.index = 476, .length = 9}, - [228] = {.index = 485, .length = 5}, - [229] = {.index = 490, .length = 5}, - [230] = {.index = 495, .length = 5}, - [231] = {.index = 500, .length = 5}, - [232] = {.index = 505, .length = 2}, - [233] = {.index = 507, .length = 1}, - [234] = {.index = 508, .length = 4}, - [235] = {.index = 512, .length = 2}, - [236] = {.index = 512, .length = 2}, - [237] = {.index = 514, .length = 3}, - [238] = {.index = 517, .length = 2}, - [239] = {.index = 519, .length = 3}, - [240] = {.index = 522, .length = 3}, - [241] = {.index = 525, .length = 3}, - [242] = {.index = 528, .length = 3}, - [243] = {.index = 531, .length = 3}, - [244] = {.index = 534, .length = 3}, - [245] = {.index = 537, .length = 3}, - [246] = {.index = 540, .length = 3}, - [247] = {.index = 543, .length = 3}, - [248] = {.index = 546, .length = 2}, - [249] = {.index = 548, .length = 2}, - [250] = {.index = 550, .length = 5}, - [251] = {.index = 555, .length = 5}, - [252] = {.index = 560, .length = 5}, - [253] = {.index = 565, .length = 3}, - [254] = {.index = 565, .length = 3}, - [255] = {.index = 568, .length = 3}, - [256] = {.index = 571, .length = 3}, - [257] = {.index = 574, .length = 3}, - [258] = {.index = 577, .length = 3}, - [259] = {.index = 580, .length = 3}, - [260] = {.index = 583, .length = 3}, - [261] = {.index = 586, .length = 3}, - [262] = {.index = 589, .length = 3}, - [263] = {.index = 592, .length = 2}, - [264] = {.index = 594, .length = 5}, - [265] = {.index = 599, .length = 3}, - [266] = {.index = 602, .length = 3}, - [267] = {.index = 605, .length = 3}, - [268] = {.index = 608, .length = 3}, - [269] = {.index = 611, .length = 3}, - [270] = {.index = 614, .length = 3}, - [271] = {.index = 617, .length = 3}, - [272] = {.index = 620, .length = 3}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_ctrl_break, 0}, - [1] = - {field_ctrl_continue, 0}, - [2] = - {field_lhs, 0, .inherited = true}, - {field_opr, 0, .inherited = true}, - {field_rhs, 0, .inherited = true}, - [5] = - {field_head, 0}, - [6] = - {field_ctrl_break, 0, .inherited = true}, - {field_ctrl_continue, 0, .inherited = true}, - [8] = - {field_expr, 0, .inherited = true}, - [9] = - {field_unquoted_name, 0}, - [10] = - {field_quoted_name, 0}, - [11] = - {field_var_name, 0}, - [12] = - {field_dollar_name, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - {field_var_name, 1, .inherited = true}, - [17] = - {field_dollar_name, 0}, - [18] = - {field_body, 1}, - [19] = - {field_name, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [22] = - {field_module, 1}, - [23] = - {field_item, 0}, - [24] = - {field_spread, 0}, - [25] = - {field_name, 0, .inherited = true}, - {field_spread, 0}, - [27] = - {field_entry, 0}, - [28] = - {field_arg, 0, .inherited = true}, - {field_arg_spread, 0, .inherited = true}, - {field_arg_str, 0, .inherited = true}, - {field_flag, 0, .inherited = true}, - {field_head, 0, .inherited = true}, - {field_redir, 0, .inherited = true}, - [34] = - {field_name, 1}, - [35] = - {field_end, 1}, - [36] = - {field_try_branch, 1}, - [37] = - {field_file, 1}, - [38] = - {field_plugin, 1}, - [39] = - {field_module, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [42] = - {field_dollar_name, 1, .inherited = true}, - {field_var_name, 1, .inherited = true}, - {field_variable, 1}, - [45] = - {field_lhs, 1, .inherited = true}, - {field_opr, 1, .inherited = true}, - {field_predicate, 1}, - {field_rhs, 1, .inherited = true}, - [49] = - {field_predicate, 1}, - [50] = - {field_expr, 0}, - [51] = - {field_value, 1}, - {field_variable, 0}, - [53] = - {field_head, 0}, - {field_head, 1}, - [55] = - {field_arg, 1, .inherited = true}, - {field_arg_spread, 1, .inherited = true}, - {field_arg_str, 1, .inherited = true}, - {field_flag, 1, .inherited = true}, - {field_head, 0}, - {field_redir, 1, .inherited = true}, - [61] = - {field_start, 0}, - [62] = - {field_unit, 1}, - {field_value, 0}, - [64] = - {field_dollar_name, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_type, 2, .inherited = true}, - {field_value, 2, .inherited = true}, - {field_var_name, 2, .inherited = true}, - [69] = - {field_name, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [72] = - {field_module, 2}, - [73] = - {field_name, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_signature, 2}, - {field_unquoted_name, 1, .inherited = true}, - [77] = - {field_body, 2}, - {field_name, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [81] = - {field_command, 0}, - {field_quoted_name, 0, .inherited = true}, - {field_unquoted_name, 0, .inherited = true}, - [84] = - {field_import_pattern, 2}, - {field_module, 1}, - [86] = - {field_wildcard, 0}, - [87] = - {field_command_list, 0}, - [88] = - {field_entry, 1}, - [89] = - {field_entry, 0, .inherited = true}, - {field_entry, 1}, - [91] = - {field_entry, 0, .inherited = true}, - {field_entry, 1, .inherited = true}, - [93] = - {field_arg, 1, .inherited = true}, - {field_arg_spread, 1, .inherited = true}, - {field_arg_str, 1, .inherited = true}, - {field_flag, 1, .inherited = true}, - {field_head, 1, .inherited = true}, - {field_redir, 1, .inherited = true}, - [99] = - {field_error_record, 2}, - [100] = - {field_body, 2}, - {field_condition, 1}, - [102] = - {field_condition, 1}, - {field_then_branch, 2}, - [104] = - {field_param_name, 0}, - [105] = - {field_param_name, 0, .inherited = true}, - {field_param_optional, 0, .inherited = true}, - {field_param_rest, 0, .inherited = true}, - {field_param_short_flag, 0, .inherited = true}, - [109] = - {field_param_rest, 0}, - [110] = - {field_param_optional, 0}, - [111] = - {field_param_long_flag, 0}, - [112] = - {field_param_short_flag, 0}, - [113] = - {field_plugin, 1}, - {field_signature, 2}, - [115] = - {field_dollar_name, 2, .inherited = true}, - {field_var_name, 2, .inherited = true}, - {field_variable, 2}, - [118] = - {field_overlay, 2}, - [119] = - {field_overlay, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [122] = - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [124] = - {field_digit, 0}, - [125] = - {field_expr, 1, .inherited = true}, - [126] = - {field_expr, 0, .inherited = true}, - {field_expr, 1, .inherited = true}, - [128] = - {field_arg, 2, .inherited = true}, - {field_arg_spread, 2, .inherited = true}, - {field_arg_str, 2, .inherited = true}, - {field_flag, 2, .inherited = true}, - {field_head, 0}, - {field_head, 1}, - {field_redir, 2, .inherited = true}, - [135] = - {field_arg, 0}, - [136] = - {field_arg_spread, 0}, - [137] = - {field_arg_spread, 0}, - {field_name, 0, .inherited = true}, - [139] = - {field_arg, 1, .inherited = true}, - {field_arg_spread, 1, .inherited = true}, - {field_arg_str, 1, .inherited = true}, - {field_flag, 1, .inherited = true}, - {field_redir, 1, .inherited = true}, - [144] = - {field_redir, 0}, - [145] = - {field_flag, 0}, - [146] = - {field_arg_str, 0}, - [147] = - {field_arg, 0, .inherited = true}, - {field_arg, 1, .inherited = true}, - {field_arg_spread, 0, .inherited = true}, - {field_arg_spread, 1, .inherited = true}, - {field_arg_str, 0, .inherited = true}, - {field_arg_str, 1, .inherited = true}, - {field_flag, 0, .inherited = true}, - {field_flag, 1, .inherited = true}, - {field_redir, 0, .inherited = true}, - {field_redir, 1, .inherited = true}, - [157] = - {field_lhs, 0}, - {field_opr, 1}, - {field_rhs, 2}, - [160] = - {field_end, 2}, - {field_start, 0}, - [162] = - {field_name, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_signature, 3}, - {field_unquoted_name, 2, .inherited = true}, - [166] = - {field_body, 3}, - {field_name, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [170] = - {field_import_pattern, 3}, - {field_module, 2}, - [172] = - {field_name, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - {field_value, 3}, - [176] = - {field_dollar_name, 0, .inherited = true}, - {field_name, 0}, - {field_value, 2}, - {field_var_name, 0, .inherited = true}, - [180] = - {field_flat_type, 0}, - [181] = - {field_type, 1, .inherited = true}, - [182] = - {field_type, 0}, - [183] = - {field_value, 2}, - [184] = - {field_type, 0, .inherited = true}, - [185] = - {field_body, 3}, - {field_name, 1}, - {field_parameters, 2}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [190] = - {field_body, 3}, - {field_name, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_signature, 2}, - {field_unquoted_name, 1, .inherited = true}, - [195] = - {field_raw_path, 1}, - [196] = - {field_head, 1}, - [197] = - {field_entry, 1, .inherited = true}, - {field_entry, 2}, - [199] = - {field_try_branch, 2}, - [200] = - {field_lhs, 2, .inherited = true}, - {field_opr, 2, .inherited = true}, - {field_predicate, 2}, - {field_rhs, 2, .inherited = true}, - [204] = - {field_predicate, 2}, - [205] = - {field_error_record, 3}, - [206] = - {field_scrutinee, 1}, - [207] = - {field_item, 0, .inherited = true}, - {field_rest, 0, .inherited = true}, - [209] = - {field_entry, 0, .inherited = true}, - [210] = - {field_key, 0}, - {field_value, 2}, - [212] = - {field_name, 0}, - [213] = - {field_param_name, 0}, - {field_param_name, 1}, - [215] = - {field_flag_capsule, 1}, - {field_param_long_flag, 0}, - [217] = - {field_parameters, 1}, - [218] = - {field_end, 3}, - {field_step, 1}, - [220] = - {field_catch_branch, 3}, - {field_try_branch, 1}, - [222] = - {field_overlay, 3}, - [223] = - {field_lhs, 0}, - {field_lhs, 0, .inherited = true}, - {field_lhs, 2, .inherited = true}, - {field_opr, 0, .inherited = true}, - {field_opr, 1}, - {field_opr, 2, .inherited = true}, - {field_rhs, 0, .inherited = true}, - {field_rhs, 2}, - {field_rhs, 2, .inherited = true}, - [232] = - {field_digit, 0}, - {field_digit, 1}, - [234] = - {field_digit, 2, .inherited = true}, - [235] = - {field_digit, 0, .inherited = true}, - {field_digit, 1, .inherited = true}, - [237] = - {field_file_path, 2}, - [238] = - {field_start, 0}, - {field_step, 2}, - [240] = - {field_name, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - {field_value, 4}, - [244] = - {field_body, 4}, - {field_name, 2}, - {field_parameters, 3}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [249] = - {field_body, 4}, - {field_name, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_signature, 3}, - {field_unquoted_name, 2, .inherited = true}, - [254] = - {field_completion, 2}, - {field_type, 1, .inherited = true}, - [256] = - {field_type, 2, .inherited = true}, - [257] = - {field_dollar_name, 0, .inherited = true}, - {field_name, 0}, - {field_type, 1}, - {field_value, 3}, - {field_var_name, 0, .inherited = true}, - [262] = - {field_name, 1}, - {field_value, 3}, - [264] = - {field_body, 4}, - {field_name, 1}, - {field_parameters, 2}, - {field_quoted_name, 1, .inherited = true}, - {field_return_type, 3}, - {field_unquoted_name, 1, .inherited = true}, - [270] = - {field_cmd, 1}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [273] = - {field_cmd, 0}, - {field_quoted_name, 0, .inherited = true}, - {field_unquoted_name, 0, .inherited = true}, - [276] = - {field_cmd, 0, .inherited = true}, - {field_cmd, 1, .inherited = true}, - {field_quoted_name, 0, .inherited = true}, - {field_quoted_name, 1, .inherited = true}, - {field_unquoted_name, 0, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - [282] = - {field_protected_path, 1}, - {field_protected_path, 2}, - [284] = - {field_head, 1}, - {field_row, 3}, - [286] = - {field_row, 0}, - [287] = - {field_row, 0, .inherited = true}, - {field_row, 1, .inherited = true}, - [289] = - {field_head, 2}, - [290] = - {field_condition, 1}, - {field_then_branch, 3}, - [292] = - {field_condition, 2}, - {field_then_branch, 3}, - [294] = - {field_lhs, 0}, - {field_opr, 1}, - {field_rhs, 3}, - [297] = - {field_lhs, 0}, - {field_opr, 2}, - {field_rhs, 3}, - [300] = - {field_body, 4}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 3}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [305] = - {field_condition, 1}, - {field_else_branch, 4}, - {field_then_branch, 2}, - [308] = - {field_condition, 1}, - {field_else_block, 4}, - {field_then_branch, 2}, - [311] = - {field_name, 2}, - [312] = - {field_param_value, 1}, - [313] = - {field_parameters, 2}, - [314] = - {field_overlay, 2}, - {field_quoted_name, 4, .inherited = true}, - {field_rename, 4}, - {field_unquoted_name, 4, .inherited = true}, - [318] = - {field_end, 4}, - {field_start, 0}, - {field_step, 2}, - [321] = - {field_body, 5}, - {field_name, 2}, - {field_parameters, 3}, - {field_quoted_name, 2, .inherited = true}, - {field_return_type, 4}, - {field_unquoted_name, 2, .inherited = true}, - [327] = - {field_body, 5}, - {field_name, 3}, - {field_parameters, 4}, - {field_quoted_name, 3, .inherited = true}, - {field_unquoted_name, 3, .inherited = true}, - [332] = - {field_key, 0}, - [333] = - {field_completion, 3}, - {field_type, 2, .inherited = true}, - [335] = - {field_type, 3, .inherited = true}, - [336] = - {field_type, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [338] = - {field_type, 0, .inherited = true}, - {field_type, 2, .inherited = true}, - [340] = - {field_cmd, 2}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [343] = - {field_cmd, 1, .inherited = true}, - {field_cmd, 2}, - {field_quoted_name, 1, .inherited = true}, - {field_quoted_name, 2, .inherited = true}, - {field_unquoted_name, 1, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - [349] = - {field_head, 1}, - {field_row, 4}, - [351] = - {field_head, 1}, - {field_row, 3, .inherited = true}, - {field_row, 4}, - [354] = - {field_head, 2}, - {field_row, 4}, - [356] = - {field_condition, 2}, - {field_then_branch, 4}, - [358] = - {field_catch_branch, 4}, - {field_try_branch, 1}, - [360] = - {field_catch_branch, 4}, - {field_try_branch, 2}, - [362] = - {field_lhs, 0}, - {field_lhs, 0, .inherited = true}, - {field_lhs, 3, .inherited = true}, - {field_opr, 0, .inherited = true}, - {field_opr, 1}, - {field_opr, 3, .inherited = true}, - {field_rhs, 0, .inherited = true}, - {field_rhs, 3}, - {field_rhs, 3, .inherited = true}, - [371] = - {field_lhs, 0}, - {field_lhs, 0, .inherited = true}, - {field_lhs, 3, .inherited = true}, - {field_opr, 0, .inherited = true}, - {field_opr, 2}, - {field_opr, 3, .inherited = true}, - {field_rhs, 0, .inherited = true}, - {field_rhs, 3}, - {field_rhs, 3, .inherited = true}, - [380] = - {field_lhs, 0}, - {field_opr, 2}, - {field_rhs, 4}, - [383] = - {field_body, 5}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 3}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [388] = - {field_body, 5}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [393] = - {field_body, 5}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [398] = - {field_rest, 1}, - [399] = - {field_item, 0}, - {field_item, 1}, - [401] = - {field_item, 1, .inherited = true}, - [402] = - {field_item, 0, .inherited = true}, - {field_item, 1, .inherited = true}, - [404] = - {field_entry, 1, .inherited = true}, - [405] = - {field_default_pattern, 0}, - {field_expression, 2}, - [407] = - {field_expression, 2}, - {field_pattern, 0}, - [409] = - {field_param_value, 2}, - [410] = - {field_overlay, 2}, - {field_quoted_name, 5, .inherited = true}, - {field_rename, 5}, - {field_unquoted_name, 5, .inherited = true}, - [414] = - {field_overlay, 3}, - {field_quoted_name, 5, .inherited = true}, - {field_rename, 5}, - {field_unquoted_name, 5, .inherited = true}, - [418] = - {field_body, 6}, - {field_name, 3}, - {field_parameters, 4}, - {field_quoted_name, 3, .inherited = true}, - {field_return_type, 5}, - {field_unquoted_name, 3, .inherited = true}, - [424] = - {field_completion, 2, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_type, 2, .inherited = true}, - [427] = - {field_completion, 0, .inherited = true}, - {field_completion, 1, .inherited = true}, - {field_key, 0, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_type, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [433] = - {field_inner, 2}, - {field_type, 2, .inherited = true}, - [435] = - {field_completion, 2}, - [436] = - {field_completion, 4}, - {field_type, 3, .inherited = true}, - [438] = - {field_type, 1, .inherited = true}, - {field_type, 2, .inherited = true}, - [440] = - {field_cmd, 2, .inherited = true}, - {field_cmd, 3}, - {field_quoted_name, 2, .inherited = true}, - {field_quoted_name, 3, .inherited = true}, - {field_unquoted_name, 2, .inherited = true}, - {field_unquoted_name, 3, .inherited = true}, - [446] = - {field_head, 1}, - {field_row, 4, .inherited = true}, - {field_row, 5}, - [449] = - {field_head, 2}, - {field_row, 5}, - [451] = - {field_head, 2}, - {field_row, 4, .inherited = true}, - {field_row, 5}, - [454] = - {field_condition, 1}, - {field_else_branch, 5}, - {field_then_branch, 2}, - [457] = - {field_condition, 1}, - {field_else_block, 5}, - {field_then_branch, 2}, - [460] = - {field_condition, 1}, - {field_else_branch, 5}, - {field_then_branch, 3}, - [463] = - {field_condition, 1}, - {field_else_block, 5}, - {field_then_branch, 3}, - [466] = - {field_condition, 2}, - {field_else_branch, 5}, - {field_then_branch, 3}, - [469] = - {field_condition, 2}, - {field_else_block, 5}, - {field_then_branch, 3}, - [472] = - {field_catch_branch, 5}, - {field_try_branch, 1}, - [474] = - {field_catch_branch, 5}, - {field_try_branch, 2}, - [476] = - {field_lhs, 0}, - {field_lhs, 0, .inherited = true}, - {field_lhs, 4, .inherited = true}, - {field_opr, 0, .inherited = true}, - {field_opr, 2}, - {field_opr, 4, .inherited = true}, - {field_rhs, 0, .inherited = true}, - {field_rhs, 4}, - {field_rhs, 4, .inherited = true}, - [485] = - {field_body, 6}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [490] = - {field_body, 6}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [495] = - {field_body, 6}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [500] = - {field_body, 6}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [505] = - {field_item, 1, .inherited = true}, - {field_rest, 2}, - [507] = - {field_param_value, 3}, - [508] = - {field_overlay, 3}, - {field_quoted_name, 6, .inherited = true}, - {field_rename, 6}, - {field_unquoted_name, 6, .inherited = true}, - [512] = - {field_key, 0}, - {field_type, 2, .inherited = true}, - [514] = - {field_completion, 3}, - {field_inner, 2}, - {field_type, 2, .inherited = true}, - [517] = - {field_type, 2, .inherited = true}, - {field_type, 3, .inherited = true}, - [519] = - {field_head, 2}, - {field_row, 5, .inherited = true}, - {field_row, 6}, - [522] = - {field_condition, 1}, - {field_else_branch, 6}, - {field_then_branch, 2}, - [525] = - {field_condition, 1}, - {field_else_block, 6}, - {field_then_branch, 2}, - [528] = - {field_condition, 1}, - {field_else_branch, 6}, - {field_then_branch, 3}, - [531] = - {field_condition, 1}, - {field_else_block, 6}, - {field_then_branch, 3}, - [534] = - {field_condition, 2}, - {field_else_branch, 6}, - {field_then_branch, 3}, - [537] = - {field_condition, 2}, - {field_else_block, 6}, - {field_then_branch, 3}, - [540] = - {field_condition, 2}, - {field_else_branch, 6}, - {field_then_branch, 4}, - [543] = - {field_condition, 2}, - {field_else_block, 6}, - {field_then_branch, 4}, - [546] = - {field_catch_branch, 6}, - {field_try_branch, 1}, - [548] = - {field_catch_branch, 6}, - {field_try_branch, 2}, - [550] = - {field_body, 7}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [555] = - {field_body, 7}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [560] = - {field_body, 7}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 6}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [565] = - {field_completion, 3}, - {field_key, 0}, - {field_type, 2, .inherited = true}, - [568] = - {field_condition, 1}, - {field_else_branch, 7}, - {field_then_branch, 2}, - [571] = - {field_condition, 1}, - {field_else_block, 7}, - {field_then_branch, 2}, - [574] = - {field_condition, 1}, - {field_else_branch, 7}, - {field_then_branch, 3}, - [577] = - {field_condition, 1}, - {field_else_block, 7}, - {field_then_branch, 3}, - [580] = - {field_condition, 2}, - {field_else_branch, 7}, - {field_then_branch, 3}, - [583] = - {field_condition, 2}, - {field_else_block, 7}, - {field_then_branch, 3}, - [586] = - {field_condition, 2}, - {field_else_branch, 7}, - {field_then_branch, 4}, - [589] = - {field_condition, 2}, - {field_else_block, 7}, - {field_then_branch, 4}, - [592] = - {field_catch_branch, 7}, - {field_try_branch, 2}, - [594] = - {field_body, 8}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 6}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [599] = - {field_condition, 1}, - {field_else_branch, 8}, - {field_then_branch, 3}, - [602] = - {field_condition, 1}, - {field_else_block, 8}, - {field_then_branch, 3}, - [605] = - {field_condition, 2}, - {field_else_branch, 8}, - {field_then_branch, 3}, - [608] = - {field_condition, 2}, - {field_else_block, 8}, - {field_then_branch, 3}, - [611] = - {field_condition, 2}, - {field_else_branch, 8}, - {field_then_branch, 4}, - [614] = - {field_condition, 2}, - {field_else_block, 8}, - {field_then_branch, 4}, - [617] = - {field_condition, 2}, - {field_else_branch, 9}, - {field_then_branch, 4}, - [620] = - {field_condition, 2}, - {field_else_block, 9}, - {field_then_branch, 4}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [14] = { - [0] = anon_alias_sym__prefix, + [anon_sym_polarsreverse] = { + .visible = true, + .named = true, }, - [23] = { - [1] = sym_val_number, + [anon_sym_polarsrolling] = { + .visible = true, + .named = true, }, - [26] = { - [1] = sym_val_string, + [anon_sym_polarssample] = { + .visible = true, + .named = true, }, - [28] = { - [1] = sym_val_string, + [anon_sym_polarssave] = { + .visible = true, + .named = true, }, - [31] = { - [0] = sym_val_string, + [anon_sym_polarsschema] = { + .visible = true, + .named = true, }, - [39] = { - [0] = sym_val_number, + [anon_sym_polarsselect] = { + .visible = true, + .named = true, }, - [40] = { - [0] = sym_val_number, + [anon_sym_polarsset] = { + .visible = true, + .named = true, }, - [50] = { - [1] = anon_alias_sym__unit, + [anon_sym_polarsset_DASHwith_DASHidx] = { + .visible = true, + .named = true, }, - [65] = { - [1] = sym_val_string, + [anon_sym_polarsshape] = { + .visible = true, + .named = true, }, - [80] = { - [0] = sym_val_string, + [anon_sym_polarsshift] = { + .visible = true, + .named = true, }, - [83] = { - [2] = sym_val_string, + [anon_sym_polarsslice] = { + .visible = true, + .named = true, }, - [85] = { - [2] = sym_val_number, + [anon_sym_polarssort_DASHby] = { + .visible = true, + .named = true, }, - [86] = { - [0] = sym_val_number, + [anon_sym_polarsstd] = { + .visible = true, + .named = true, }, - [87] = { - [0] = sym_val_number, - [2] = sym_val_number, + [anon_sym_polarsstore_DASHget] = { + .visible = true, + .named = true, }, - [97] = { - [2] = sym_val_string, + [anon_sym_polarsstore_DASHls] = { + .visible = true, + .named = true, }, - [102] = { - [1] = anon_alias_sym_quoted, + [anon_sym_polarsstore_DASHrm] = { + .visible = true, + .named = true, }, - [104] = { - [0] = anon_alias_sym__head, + [anon_sym_polarsstr_DASHjoin] = { + .visible = true, + .named = true, }, - [113] = { - [1] = sym_val_string, + [anon_sym_polarsstr_DASHlengths] = { + .visible = true, + .named = true, }, - [114] = { - [0] = sym_identifier, + [anon_sym_polarsstr_DASHslice] = { + .visible = true, + .named = true, }, - [121] = { - [3] = sym_val_number, + [anon_sym_polarsstrftime] = { + .visible = true, + .named = true, }, - [122] = { - [1] = sym_val_number, + [anon_sym_polarssum] = { + .visible = true, + .named = true, }, - [123] = { - [1] = sym_val_number, - [3] = sym_val_number, + [anon_sym_polarssummary] = { + .visible = true, + .named = true, }, - [132] = { - [2] = sym_val_number, + [anon_sym_polarstake] = { + .visible = true, + .named = true, }, - [133] = { - [0] = sym_val_number, + [anon_sym_polarsunique] = { + .visible = true, + .named = true, }, - [134] = { - [0] = sym_val_number, - [2] = sym_val_number, + [anon_sym_polarsunnest] = { + .visible = true, + .named = true, }, - [142] = { - [3] = sym_val_string, + [anon_sym_polarsunpivot] = { + .visible = true, + .named = true, }, - [148] = { - [1] = anon_alias_sym_quoted, + [anon_sym_polarsuppercase] = { + .visible = true, + .named = true, }, - [156] = { - [3] = sym_val_string, + [anon_sym_polarsvalue_DASHcounts] = { + .visible = true, + .named = true, }, - [158] = { - [3] = sym_val_string, + [anon_sym_polarsvar] = { + .visible = true, + .named = true, }, - [167] = { - [4] = sym_val_number, + [anon_sym_polarswhen] = { + .visible = true, + .named = true, }, - [168] = { - [2] = sym_val_number, + [anon_sym_polarswith_DASHcolumn] = { + .visible = true, + .named = true, }, - [169] = { - [2] = sym_val_number, - [4] = sym_val_number, + [anon_sym_querydb] = { + .visible = true, + .named = true, }, - [170] = { - [0] = sym_val_number, + [anon_sym_querygit] = { + .visible = true, + .named = true, }, - [171] = { - [0] = sym_val_number, - [4] = sym_val_number, + [anon_sym_queryjson] = { + .visible = true, + .named = true, }, - [172] = { - [0] = sym_val_number, - [2] = sym_val_number, + [anon_sym_queryweb] = { + .visible = true, + .named = true, }, - [173] = { - [0] = sym_val_number, - [2] = sym_val_number, - [4] = sym_val_number, + [anon_sym_querywebpage_DASHinfo] = { + .visible = true, + .named = true, }, - [177] = { - [0] = sym_identifier, + [anon_sym_queryxml] = { + .visible = true, + .named = true, }, - [187] = { - [1] = sym_val_string, + [anon_sym_randombinary] = { + .visible = true, + .named = true, }, - [194] = { - [4] = sym_val_string, + [anon_sym_randombool] = { + .visible = true, + .named = true, }, - [236] = { - [0] = sym_identifier, + [anon_sym_randomchars] = { + .visible = true, + .named = true, }, - [254] = { - [0] = sym_identifier, + [anon_sym_randomdice] = { + .visible = true, + .named = true, }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym_cmd_identifier, 2, - sym_cmd_identifier, - sym_identifier, - sym__immediate_decimal, 2, - sym__immediate_decimal, - sym_val_number, - sym_val_bool, 2, - sym_val_bool, - anon_alias_sym__prefix, - sym__val_number_decimal, 2, - sym__val_number_decimal, - sym_val_number, - sym_val_string, 3, - sym_val_string, - anon_alias_sym_quoted, - sym_identifier, - sym_unquoted, 3, - sym_unquoted, - anon_alias_sym__head, - sym_val_string, - sym__unquoted_in_list, 2, - sym_val_string, - anon_alias_sym__head, - sym__unquoted_in_record, 2, - sym_val_string, - anon_alias_sym__head, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 4, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, - [16] = 4, - [17] = 4, - [18] = 4, - [19] = 4, - [20] = 4, - [21] = 4, - [22] = 4, - [23] = 23, - [24] = 23, - [25] = 23, - [26] = 23, - [27] = 23, - [28] = 23, - [29] = 23, - [30] = 23, - [31] = 23, - [32] = 23, - [33] = 23, - [34] = 23, - [35] = 23, - [36] = 23, - [37] = 37, - [38] = 37, - [39] = 37, - [40] = 37, - [41] = 41, - [42] = 42, - [43] = 42, - [44] = 41, - [45] = 41, - [46] = 41, - [47] = 47, - [48] = 47, - [49] = 47, - [50] = 47, - [51] = 47, - [52] = 47, - [53] = 47, - [54] = 47, - [55] = 47, - [56] = 47, - [57] = 47, - [58] = 47, - [59] = 47, - [60] = 47, - [61] = 47, - [62] = 47, - [63] = 47, - [64] = 47, - [65] = 47, - [66] = 47, - [67] = 67, - [68] = 67, - [69] = 69, - [70] = 70, - [71] = 67, - [72] = 67, - [73] = 67, - [74] = 69, - [75] = 70, - [76] = 67, - [77] = 67, - [78] = 67, - [79] = 67, - [80] = 80, - [81] = 81, - [82] = 67, - [83] = 67, - [84] = 67, - [85] = 67, - [86] = 67, - [87] = 67, - [88] = 67, - [89] = 67, - [90] = 69, - [91] = 69, - [92] = 70, - [93] = 81, - [94] = 69, - [95] = 67, - [96] = 67, - [97] = 70, - [98] = 69, - [99] = 70, - [100] = 67, - [101] = 67, - [102] = 69, - [103] = 69, - [104] = 69, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 107, - [109] = 109, - [110] = 105, - [111] = 107, - [112] = 105, - [113] = 105, - [114] = 107, - [115] = 115, - [116] = 105, - [117] = 107, - [118] = 115, - [119] = 105, - [120] = 107, - [121] = 105, - [122] = 105, - [123] = 107, - [124] = 107, - [125] = 105, - [126] = 107, - [127] = 127, - [128] = 105, - [129] = 107, - [130] = 106, - [131] = 107, - [132] = 107, - [133] = 109, - [134] = 105, - [135] = 107, - [136] = 106, - [137] = 105, - [138] = 107, - [139] = 109, - [140] = 105, - [141] = 105, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 143, - [147] = 142, - [148] = 142, - [149] = 143, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 168, - [173] = 173, - [174] = 174, - [175] = 166, - [176] = 173, - [177] = 177, - [178] = 170, - [179] = 177, - [180] = 168, - [181] = 173, - [182] = 174, - [183] = 166, - [184] = 174, - [185] = 166, - [186] = 167, - [187] = 169, - [188] = 171, - [189] = 189, - [190] = 189, - [191] = 170, - [192] = 168, - [193] = 173, - [194] = 174, - [195] = 170, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 199, - [200] = 198, - [201] = 196, - [202] = 198, - [203] = 198, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, - [208] = 207, - [209] = 209, - [210] = 209, - [211] = 207, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 214, - [216] = 216, - [217] = 212, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 221, - [228] = 223, - [229] = 229, - [230] = 230, - [231] = 231, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 229, - [254] = 230, - [255] = 231, - [256] = 232, - [257] = 233, - [258] = 234, - [259] = 235, - [260] = 236, - [261] = 237, - [262] = 238, - [263] = 239, - [264] = 240, - [265] = 241, - [266] = 242, - [267] = 243, - [268] = 244, - [269] = 245, - [270] = 246, - [271] = 247, - [272] = 248, - [273] = 249, - [274] = 250, - [275] = 251, - [276] = 204, - [277] = 222, - [278] = 204, - [279] = 279, - [280] = 224, - [281] = 229, - [282] = 205, - [283] = 230, - [284] = 231, - [285] = 232, - [286] = 233, - [287] = 234, - [288] = 235, - [289] = 236, - [290] = 237, - [291] = 238, - [292] = 239, - [293] = 240, - [294] = 241, - [295] = 242, - [296] = 243, - [297] = 225, - [298] = 244, - [299] = 245, - [300] = 246, - [301] = 247, - [302] = 248, - [303] = 249, - [304] = 250, - [305] = 251, - [306] = 225, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 206, - [311] = 226, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 315, - [322] = 322, - [323] = 316, - [324] = 315, - [325] = 316, - [326] = 313, - [327] = 322, - [328] = 328, - [329] = 322, - [330] = 316, - [331] = 315, - [332] = 332, - [333] = 316, - [334] = 315, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 319, - [345] = 335, - [346] = 346, - [347] = 317, - [348] = 348, - [349] = 336, - [350] = 320, - [351] = 346, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 342, - [356] = 356, - [357] = 343, - [358] = 358, - [359] = 152, - [360] = 360, - [361] = 361, - [362] = 339, - [363] = 363, - [364] = 340, - [365] = 341, - [366] = 348, - [367] = 360, - [368] = 356, - [369] = 354, - [370] = 370, - [371] = 352, - [372] = 358, - [373] = 373, - [374] = 361, - [375] = 154, - [376] = 353, - [377] = 152, - [378] = 363, - [379] = 153, - [380] = 380, - [381] = 160, - [382] = 382, - [383] = 363, - [384] = 373, - [385] = 385, - [386] = 157, - [387] = 159, - [388] = 153, - [389] = 158, - [390] = 154, - [391] = 152, - [392] = 353, - [393] = 393, - [394] = 155, - [395] = 395, - [396] = 370, - [397] = 156, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 373, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 398, - [406] = 162, - [407] = 407, - [408] = 385, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 395, - [414] = 414, - [415] = 415, - [416] = 363, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 363, - [422] = 422, - [423] = 423, - [424] = 157, - [425] = 153, - [426] = 158, - [427] = 154, - [428] = 159, - [429] = 160, - [430] = 430, - [431] = 152, - [432] = 163, - [433] = 433, - [434] = 434, - [435] = 155, - [436] = 436, - [437] = 156, - [438] = 382, - [439] = 380, - [440] = 370, - [441] = 441, - [442] = 161, - [443] = 353, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 393, - [448] = 448, - [449] = 449, - [450] = 353, - [451] = 395, - [452] = 407, - [453] = 370, - [454] = 454, - [455] = 373, - [456] = 409, - [457] = 398, - [458] = 410, - [459] = 411, - [460] = 412, - [461] = 382, - [462] = 414, - [463] = 418, - [464] = 393, - [465] = 419, - [466] = 363, - [467] = 420, - [468] = 422, - [469] = 433, - [470] = 444, - [471] = 445, - [472] = 436, - [473] = 446, - [474] = 448, - [475] = 423, - [476] = 415, - [477] = 417, - [478] = 478, - [479] = 479, - [480] = 430, - [481] = 449, - [482] = 482, - [483] = 483, - [484] = 155, - [485] = 485, - [486] = 156, - [487] = 487, - [488] = 165, - [489] = 157, - [490] = 158, - [491] = 159, - [492] = 160, - [493] = 152, - [494] = 400, - [495] = 153, - [496] = 154, - [497] = 161, - [498] = 162, - [499] = 163, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 402, - [504] = 403, - [505] = 353, - [506] = 404, - [507] = 370, - [508] = 399, - [509] = 509, - [510] = 373, - [511] = 434, - [512] = 441, - [513] = 513, - [514] = 395, - [515] = 482, - [516] = 483, - [517] = 487, - [518] = 518, - [519] = 500, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 478, - [525] = 513, - [526] = 398, - [527] = 353, - [528] = 165, - [529] = 161, - [530] = 162, - [531] = 163, - [532] = 153, - [533] = 154, - [534] = 534, - [535] = 535, - [536] = 363, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 393, - [545] = 155, - [546] = 156, - [547] = 547, - [548] = 548, - [549] = 157, - [550] = 158, - [551] = 159, - [552] = 160, - [553] = 370, - [554] = 373, - [555] = 509, - [556] = 398, - [557] = 479, - [558] = 382, - [559] = 393, - [560] = 395, - [561] = 454, - [562] = 501, - [563] = 502, - [564] = 382, - [565] = 565, - [566] = 155, - [567] = 161, - [568] = 156, - [569] = 370, - [570] = 570, - [571] = 571, - [572] = 162, - [573] = 163, - [574] = 537, - [575] = 575, - [576] = 576, - [577] = 539, - [578] = 578, - [579] = 579, - [580] = 540, - [581] = 373, - [582] = 548, - [583] = 157, - [584] = 584, - [585] = 523, - [586] = 535, - [587] = 382, - [588] = 541, - [589] = 393, - [590] = 395, - [591] = 158, - [592] = 159, - [593] = 165, - [594] = 534, - [595] = 160, - [596] = 543, - [597] = 597, - [598] = 598, - [599] = 353, - [600] = 600, - [601] = 363, - [602] = 542, - [603] = 547, - [604] = 538, - [605] = 518, - [606] = 520, - [607] = 521, - [608] = 522, - [609] = 398, - [610] = 571, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 478, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 513, - [621] = 621, - [622] = 622, - [623] = 161, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 205, - [630] = 382, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 398, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 598, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 162, - [651] = 163, - [652] = 652, - [653] = 165, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 158, - [663] = 159, - [664] = 664, - [665] = 665, - [666] = 393, - [667] = 370, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 160, - [673] = 673, - [674] = 395, - [675] = 675, - [676] = 676, - [677] = 597, - [678] = 678, - [679] = 373, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 570, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 157, - [695] = 625, - [696] = 658, - [697] = 687, - [698] = 673, - [699] = 633, - [700] = 652, - [701] = 622, - [702] = 624, - [703] = 206, - [704] = 615, - [705] = 626, - [706] = 634, - [707] = 665, - [708] = 659, - [709] = 643, - [710] = 644, - [711] = 648, - [712] = 688, - [713] = 689, - [714] = 693, - [715] = 614, - [716] = 617, - [717] = 618, - [718] = 619, - [719] = 631, - [720] = 635, - [721] = 636, - [722] = 639, - [723] = 640, - [724] = 641, - [725] = 645, - [726] = 656, - [727] = 664, - [728] = 669, - [729] = 671, - [730] = 675, - [731] = 684, - [732] = 692, - [733] = 637, - [734] = 613, - [735] = 632, - [736] = 638, - [737] = 682, - [738] = 612, - [739] = 649, - [740] = 661, - [741] = 678, - [742] = 683, - [743] = 686, - [744] = 611, - [745] = 621, - [746] = 628, - [747] = 647, - [748] = 655, - [749] = 657, - [750] = 660, - [751] = 670, - [752] = 681, - [753] = 676, - [754] = 654, - [755] = 478, - [756] = 513, - [757] = 165, - [758] = 157, - [759] = 158, - [760] = 159, - [761] = 160, - [762] = 762, - [763] = 398, - [764] = 382, - [765] = 393, - [766] = 395, - [767] = 767, - [768] = 690, - [769] = 691, - [770] = 680, - [771] = 771, - [772] = 772, - [773] = 772, - [774] = 774, - [775] = 775, - [776] = 319, - [777] = 205, - [778] = 317, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 317, - [783] = 319, - [784] = 206, - [785] = 785, - [786] = 317, - [787] = 319, - [788] = 788, - [789] = 319, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 317, - [796] = 346, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 342, - [802] = 356, - [803] = 803, - [804] = 361, - [805] = 346, - [806] = 317, - [807] = 342, - [808] = 319, - [809] = 794, - [810] = 785, - [811] = 346, - [812] = 781, - [813] = 780, - [814] = 358, - [815] = 342, - [816] = 800, - [817] = 346, - [818] = 360, - [819] = 342, - [820] = 360, - [821] = 342, - [822] = 803, - [823] = 361, - [824] = 358, - [825] = 360, - [826] = 356, - [827] = 346, - [828] = 358, - [829] = 317, - [830] = 356, - [831] = 319, - [832] = 361, - [833] = 360, - [834] = 803, - [835] = 356, - [836] = 358, - [837] = 803, - [838] = 361, - [839] = 803, - [840] = 356, - [841] = 360, - [842] = 361, - [843] = 342, - [844] = 346, - [845] = 358, - [846] = 846, - [847] = 358, - [848] = 846, - [849] = 849, - [850] = 356, - [851] = 846, - [852] = 846, - [853] = 846, - [854] = 846, - [855] = 846, - [856] = 846, - [857] = 803, - [858] = 849, - [859] = 846, - [860] = 846, - [861] = 846, - [862] = 846, - [863] = 846, - [864] = 361, - [865] = 846, - [866] = 846, - [867] = 846, - [868] = 846, - [869] = 869, - [870] = 360, - [871] = 846, - [872] = 849, - [873] = 869, - [874] = 874, - [875] = 875, - [876] = 875, - [877] = 875, - [878] = 874, - [879] = 875, - [880] = 874, - [881] = 874, - [882] = 874, - [883] = 883, - [884] = 883, - [885] = 883, - [886] = 883, - [887] = 883, - [888] = 875, - [889] = 889, - [890] = 883, - [891] = 883, - [892] = 883, - [893] = 883, - [894] = 883, - [895] = 883, - [896] = 883, - [897] = 883, - [898] = 883, - [899] = 883, - [900] = 883, - [901] = 883, - [902] = 883, - [903] = 883, - [904] = 875, - [905] = 874, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 909, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 913, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 930, - [954] = 931, - [955] = 932, - [956] = 933, - [957] = 934, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 910, - [969] = 911, - [970] = 912, - [971] = 914, - [972] = 915, - [973] = 916, - [974] = 917, - [975] = 918, - [976] = 919, - [977] = 920, - [978] = 921, - [979] = 922, - [980] = 923, - [981] = 924, - [982] = 962, - [983] = 926, - [984] = 927, - [985] = 928, - [986] = 913, - [987] = 930, - [988] = 931, - [989] = 932, - [990] = 933, - [991] = 934, - [992] = 935, - [993] = 949, - [994] = 937, - [995] = 938, - [996] = 939, - [997] = 940, - [998] = 941, - [999] = 942, - [1000] = 943, - [1001] = 944, - [1002] = 945, - [1003] = 946, - [1004] = 947, - [1005] = 948, - [1006] = 949, - [1007] = 950, - [1008] = 951, - [1009] = 952, - [1010] = 935, - [1011] = 936, - [1012] = 937, - [1013] = 938, - [1014] = 939, - [1015] = 950, - [1016] = 951, - [1017] = 920, - [1018] = 914, - [1019] = 915, - [1020] = 916, - [1021] = 921, - [1022] = 917, - [1023] = 952, - [1024] = 961, - [1025] = 963, - [1026] = 918, - [1027] = 919, - [1028] = 966, - [1029] = 967, - [1030] = 910, - [1031] = 911, - [1032] = 912, - [1033] = 922, - [1034] = 940, - [1035] = 941, - [1036] = 942, - [1037] = 943, - [1038] = 923, - [1039] = 944, - [1040] = 945, - [1041] = 946, - [1042] = 958, - [1043] = 959, - [1044] = 947, - [1045] = 948, - [1046] = 960, - [1047] = 964, - [1048] = 965, - [1049] = 924, - [1050] = 909, - [1051] = 926, - [1052] = 927, - [1053] = 928, - [1054] = 958, - [1055] = 959, - [1056] = 960, - [1057] = 961, - [1058] = 962, - [1059] = 963, - [1060] = 964, - [1061] = 965, - [1062] = 966, - [1063] = 967, - [1064] = 936, - [1065] = 1065, - [1066] = 1066, - [1067] = 1066, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1069, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1070, - [1077] = 1069, - [1078] = 1072, - [1079] = 1073, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1072, - [1087] = 1073, - [1088] = 1068, - [1089] = 1080, - [1090] = 1081, - [1091] = 1082, - [1092] = 1083, - [1093] = 1084, - [1094] = 1085, - [1095] = 1074, - [1096] = 1075, - [1097] = 1070, - [1098] = 1069, - [1099] = 1072, - [1100] = 1073, - [1101] = 1068, - [1102] = 1080, - [1103] = 1081, - [1104] = 1082, - [1105] = 1083, - [1106] = 1084, - [1107] = 1085, - [1108] = 1108, - [1109] = 1068, - [1110] = 1080, - [1111] = 1081, - [1112] = 1082, - [1113] = 1083, - [1114] = 1075, - [1115] = 1085, - [1116] = 1074, - [1117] = 1075, - [1118] = 1070, - [1119] = 1069, - [1120] = 1072, - [1121] = 1073, - [1122] = 1068, - [1123] = 1080, - [1124] = 1081, - [1125] = 1082, - [1126] = 1083, - [1127] = 1084, - [1128] = 1085, - [1129] = 1074, - [1130] = 1075, - [1131] = 1070, - [1132] = 1069, - [1133] = 1072, - [1134] = 1073, - [1135] = 1068, - [1136] = 1080, - [1137] = 1081, - [1138] = 1082, - [1139] = 1083, - [1140] = 1084, - [1141] = 1085, - [1142] = 1074, - [1143] = 1108, - [1144] = 1074, - [1145] = 1075, - [1146] = 1070, - [1147] = 1069, - [1148] = 1072, - [1149] = 1073, - [1150] = 1068, - [1151] = 1080, - [1152] = 1081, - [1153] = 1082, - [1154] = 1083, - [1155] = 1084, - [1156] = 1085, - [1157] = 1108, - [1158] = 1075, - [1159] = 1070, - [1160] = 1074, - [1161] = 1084, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1163, - [1166] = 1108, - [1167] = 1162, - [1168] = 1164, - [1169] = 1169, - [1170] = 1108, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 317, - [1175] = 319, - [1176] = 317, - [1177] = 205, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 319, - [1183] = 1178, - [1184] = 1184, - [1185] = 319, - [1186] = 1186, - [1187] = 1180, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 317, - [1192] = 206, - [1193] = 319, - [1194] = 346, - [1195] = 342, - [1196] = 346, - [1197] = 317, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 346, - [1202] = 342, - [1203] = 1198, - [1204] = 1200, - [1205] = 342, - [1206] = 1206, - [1207] = 319, - [1208] = 358, - [1209] = 803, - [1210] = 360, - [1211] = 361, - [1212] = 1212, - [1213] = 360, - [1214] = 803, - [1215] = 356, - [1216] = 361, - [1217] = 346, - [1218] = 358, - [1219] = 356, - [1220] = 360, - [1221] = 356, - [1222] = 1212, - [1223] = 358, - [1224] = 361, - [1225] = 342, - [1226] = 803, - [1227] = 1206, - [1228] = 1206, - [1229] = 1212, - [1230] = 317, - [1231] = 1231, - [1232] = 346, - [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 356, - [1237] = 361, - [1238] = 1238, - [1239] = 360, - [1240] = 342, - [1241] = 1233, - [1242] = 1235, - [1243] = 1243, - [1244] = 1244, - [1245] = 803, - [1246] = 358, - [1247] = 1238, - [1248] = 1243, - [1249] = 1244, - [1250] = 1234, - [1251] = 313, - [1252] = 1252, - [1253] = 361, - [1254] = 1252, - [1255] = 803, - [1256] = 358, - [1257] = 356, - [1258] = 360, - [1259] = 335, - [1260] = 319, - [1261] = 320, - [1262] = 317, - [1263] = 336, - [1264] = 313, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 317, - [1270] = 1267, - [1271] = 1265, - [1272] = 1266, - [1273] = 1267, - [1274] = 1268, - [1275] = 1265, - [1276] = 1266, - [1277] = 1267, - [1278] = 1268, - [1279] = 319, - [1280] = 1265, - [1281] = 1265, - [1282] = 1266, - [1283] = 1267, - [1284] = 1268, - [1285] = 1265, - [1286] = 1286, - [1287] = 1268, - [1288] = 1266, - [1289] = 1267, - [1290] = 1268, - [1291] = 1265, - [1292] = 1267, - [1293] = 343, - [1294] = 1266, - [1295] = 342, - [1296] = 1267, - [1297] = 320, - [1298] = 1268, - [1299] = 1268, - [1300] = 1265, - [1301] = 1266, - [1302] = 1268, - [1303] = 1267, - [1304] = 1265, - [1305] = 1265, - [1306] = 346, - [1307] = 1266, - [1308] = 317, - [1309] = 1267, - [1310] = 336, - [1311] = 319, - [1312] = 1266, - [1313] = 1265, - [1314] = 1266, - [1315] = 1267, - [1316] = 1265, - [1317] = 1268, - [1318] = 335, - [1319] = 1267, - [1320] = 339, - [1321] = 1266, - [1322] = 340, - [1323] = 341, - [1324] = 1286, - [1325] = 1266, - [1326] = 1267, - [1327] = 152, - [1328] = 1265, - [1329] = 1265, - [1330] = 1266, - [1331] = 1265, - [1332] = 1267, - [1333] = 1333, - [1334] = 1266, - [1335] = 1267, - [1336] = 1268, - [1337] = 1268, - [1338] = 1268, - [1339] = 152, - [1340] = 1268, - [1341] = 159, - [1342] = 874, - [1343] = 317, - [1344] = 1333, - [1345] = 319, - [1346] = 339, - [1347] = 340, - [1348] = 153, - [1349] = 346, - [1350] = 153, - [1351] = 342, - [1352] = 874, - [1353] = 152, - [1354] = 875, - [1355] = 154, - [1356] = 341, - [1357] = 152, - [1358] = 346, - [1359] = 356, - [1360] = 874, - [1361] = 353, - [1362] = 875, - [1363] = 363, - [1364] = 358, - [1365] = 157, - [1366] = 1366, - [1367] = 154, - [1368] = 354, - [1369] = 158, - [1370] = 360, - [1371] = 361, - [1372] = 352, - [1373] = 343, - [1374] = 342, - [1375] = 160, - [1376] = 875, - [1377] = 352, - [1378] = 360, - [1379] = 342, - [1380] = 353, - [1381] = 157, - [1382] = 356, - [1383] = 361, - [1384] = 152, - [1385] = 875, - [1386] = 356, - [1387] = 346, - [1388] = 158, - [1389] = 358, - [1390] = 370, - [1391] = 874, - [1392] = 363, - [1393] = 155, - [1394] = 159, - [1395] = 1395, - [1396] = 160, - [1397] = 373, - [1398] = 156, - [1399] = 358, - [1400] = 153, - [1401] = 155, - [1402] = 154, - [1403] = 154, - [1404] = 1404, - [1405] = 156, - [1406] = 360, - [1407] = 153, - [1408] = 354, - [1409] = 361, - [1410] = 160, - [1411] = 158, - [1412] = 161, - [1413] = 155, - [1414] = 156, - [1415] = 162, - [1416] = 163, - [1417] = 157, - [1418] = 158, - [1419] = 159, - [1420] = 160, - [1421] = 161, - [1422] = 317, - [1423] = 319, - [1424] = 162, - [1425] = 163, - [1426] = 385, - [1427] = 380, - [1428] = 363, - [1429] = 1404, - [1430] = 373, - [1431] = 153, - [1432] = 154, - [1433] = 398, - [1434] = 382, - [1435] = 393, - [1436] = 395, - [1437] = 155, - [1438] = 156, - [1439] = 874, - [1440] = 356, - [1441] = 875, - [1442] = 358, - [1443] = 360, - [1444] = 361, - [1445] = 159, - [1446] = 353, - [1447] = 157, - [1448] = 370, - [1449] = 161, - [1450] = 346, - [1451] = 433, - [1452] = 444, - [1453] = 445, - [1454] = 446, - [1455] = 342, - [1456] = 448, - [1457] = 398, - [1458] = 423, - [1459] = 382, - [1460] = 415, - [1461] = 417, - [1462] = 393, - [1463] = 165, - [1464] = 395, - [1465] = 152, - [1466] = 363, - [1467] = 404, - [1468] = 155, - [1469] = 156, - [1470] = 407, - [1471] = 399, - [1472] = 403, - [1473] = 422, - [1474] = 409, - [1475] = 410, - [1476] = 353, - [1477] = 157, - [1478] = 363, - [1479] = 158, - [1480] = 159, - [1481] = 161, - [1482] = 160, - [1483] = 411, - [1484] = 165, - [1485] = 162, - [1486] = 163, - [1487] = 412, - [1488] = 380, - [1489] = 414, - [1490] = 418, - [1491] = 419, - [1492] = 1492, - [1493] = 385, - [1494] = 162, - [1495] = 370, - [1496] = 163, - [1497] = 373, - [1498] = 402, - [1499] = 353, - [1500] = 420, - [1501] = 165, - [1502] = 398, - [1503] = 410, - [1504] = 482, - [1505] = 483, - [1506] = 487, - [1507] = 370, - [1508] = 411, - [1509] = 412, - [1510] = 155, - [1511] = 414, - [1512] = 317, - [1513] = 418, - [1514] = 419, - [1515] = 509, - [1516] = 165, - [1517] = 500, - [1518] = 319, - [1519] = 161, - [1520] = 420, - [1521] = 373, - [1522] = 422, - [1523] = 433, - [1524] = 162, - [1525] = 163, - [1526] = 444, - [1527] = 354, - [1528] = 153, - [1529] = 445, - [1530] = 154, - [1531] = 446, - [1532] = 353, - [1533] = 448, - [1534] = 423, - [1535] = 370, - [1536] = 415, - [1537] = 373, - [1538] = 1538, - [1539] = 363, - [1540] = 417, - [1541] = 156, - [1542] = 356, - [1543] = 454, - [1544] = 157, - [1545] = 404, - [1546] = 1546, - [1547] = 513, - [1548] = 407, - [1549] = 1549, - [1550] = 152, - [1551] = 358, - [1552] = 158, - [1553] = 159, - [1554] = 479, - [1555] = 399, - [1556] = 478, - [1557] = 360, - [1558] = 160, - [1559] = 402, - [1560] = 352, - [1561] = 1561, - [1562] = 361, - [1563] = 382, - [1564] = 1549, - [1565] = 393, - [1566] = 152, - [1567] = 395, - [1568] = 403, - [1569] = 409, - [1570] = 1549, - [1571] = 420, - [1572] = 162, - [1573] = 370, - [1574] = 153, - [1575] = 1575, - [1576] = 411, - [1577] = 509, - [1578] = 412, - [1579] = 1561, - [1580] = 163, - [1581] = 523, - [1582] = 414, - [1583] = 418, - [1584] = 393, - [1585] = 513, - [1586] = 154, - [1587] = 395, - [1588] = 535, - [1589] = 155, - [1590] = 156, - [1591] = 352, - [1592] = 541, - [1593] = 154, - [1594] = 543, - [1595] = 363, - [1596] = 398, - [1597] = 1597, - [1598] = 342, - [1599] = 1599, - [1600] = 382, - [1601] = 548, - [1602] = 393, - [1603] = 395, - [1604] = 373, - [1605] = 1605, - [1606] = 1606, - [1607] = 1546, - [1608] = 419, - [1609] = 487, - [1610] = 422, - [1611] = 433, - [1612] = 537, - [1613] = 409, - [1614] = 410, - [1615] = 161, - [1616] = 445, - [1617] = 152, - [1618] = 446, - [1619] = 157, - [1620] = 158, - [1621] = 159, - [1622] = 160, - [1623] = 1549, - [1624] = 448, - [1625] = 1538, - [1626] = 423, - [1627] = 354, - [1628] = 415, - [1629] = 417, - [1630] = 479, - [1631] = 454, - [1632] = 478, - [1633] = 483, - [1634] = 534, - [1635] = 539, - [1636] = 540, - [1637] = 398, - [1638] = 1638, - [1639] = 1639, - [1640] = 165, - [1641] = 1641, - [1642] = 500, - [1643] = 153, - [1644] = 547, - [1645] = 346, - [1646] = 1646, - [1647] = 382, - [1648] = 407, - [1649] = 353, - [1650] = 482, - [1651] = 444, - [1652] = 479, - [1653] = 1605, - [1654] = 1606, - [1655] = 1655, - [1656] = 547, - [1657] = 540, - [1658] = 399, - [1659] = 153, - [1660] = 356, - [1661] = 1661, - [1662] = 352, - [1663] = 398, - [1664] = 154, - [1665] = 1665, - [1666] = 358, - [1667] = 157, - [1668] = 363, - [1669] = 158, - [1670] = 159, - [1671] = 154, - [1672] = 160, - [1673] = 157, - [1674] = 158, - [1675] = 159, - [1676] = 160, - [1677] = 403, - [1678] = 161, - [1679] = 1597, - [1680] = 1599, - [1681] = 162, - [1682] = 163, - [1683] = 352, - [1684] = 382, - [1685] = 360, - [1686] = 353, - [1687] = 1638, - [1688] = 393, - [1689] = 361, - [1690] = 153, - [1691] = 395, - [1692] = 539, - [1693] = 1693, - [1694] = 156, - [1695] = 548, - [1696] = 1639, - [1697] = 1641, - [1698] = 1698, - [1699] = 404, - [1700] = 535, - [1701] = 1701, - [1702] = 534, - [1703] = 152, - [1704] = 543, - [1705] = 165, - [1706] = 1693, - [1707] = 1707, - [1708] = 1708, - [1709] = 354, - [1710] = 1710, - [1711] = 537, - [1712] = 523, - [1713] = 537, - [1714] = 598, - [1715] = 534, - [1716] = 539, - [1717] = 540, - [1718] = 354, - [1719] = 541, - [1720] = 370, - [1721] = 402, - [1722] = 454, - [1723] = 155, - [1724] = 373, - [1725] = 547, - [1726] = 1726, - [1727] = 1693, - [1728] = 154, - [1729] = 654, - [1730] = 645, - [1731] = 370, - [1732] = 1732, - [1733] = 683, - [1734] = 158, - [1735] = 158, - [1736] = 159, - [1737] = 1737, - [1738] = 1710, - [1739] = 162, - [1740] = 688, - [1741] = 689, - [1742] = 537, - [1743] = 1743, - [1744] = 664, - [1745] = 638, - [1746] = 693, - [1747] = 539, - [1748] = 540, - [1749] = 637, - [1750] = 165, - [1751] = 1751, - [1752] = 1752, - [1753] = 614, - [1754] = 617, - [1755] = 1755, - [1756] = 547, - [1757] = 159, - [1758] = 1743, - [1759] = 1698, - [1760] = 618, - [1761] = 205, - [1762] = 160, - [1763] = 1763, - [1764] = 619, - [1765] = 1765, - [1766] = 1766, - [1767] = 1655, - [1768] = 163, - [1769] = 1707, - [1770] = 1770, - [1771] = 157, - [1772] = 1772, - [1773] = 626, - [1774] = 598, - [1775] = 656, - [1776] = 686, - [1777] = 661, - [1778] = 373, - [1779] = 654, - [1780] = 1752, - [1781] = 676, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 611, - [1786] = 1708, - [1787] = 612, - [1788] = 155, - [1789] = 1789, - [1790] = 1790, - [1791] = 157, - [1792] = 621, - [1793] = 625, - [1794] = 628, - [1795] = 156, - [1796] = 1796, - [1797] = 682, - [1798] = 669, - [1799] = 671, - [1800] = 634, - [1801] = 1701, - [1802] = 632, - [1803] = 678, - [1804] = 665, - [1805] = 640, - [1806] = 155, - [1807] = 1693, - [1808] = 160, - [1809] = 647, - [1810] = 156, - [1811] = 659, - [1812] = 676, - [1813] = 1813, - [1814] = 684, - [1815] = 1815, - [1816] = 153, - [1817] = 692, - [1818] = 1818, - [1819] = 655, - [1820] = 513, - [1821] = 657, - [1822] = 1708, - [1823] = 161, - [1824] = 1701, - [1825] = 660, - [1826] = 1826, - [1827] = 636, - [1828] = 1828, - [1829] = 631, - [1830] = 649, - [1831] = 1789, - [1832] = 643, - [1833] = 639, - [1834] = 478, - [1835] = 644, - [1836] = 675, - [1837] = 670, - [1838] = 680, - [1839] = 613, - [1840] = 641, - [1841] = 681, - [1842] = 1782, - [1843] = 398, - [1844] = 1783, - [1845] = 615, - [1846] = 534, - [1847] = 1784, - [1848] = 382, - [1849] = 1726, - [1850] = 1790, - [1851] = 393, - [1852] = 395, - [1853] = 648, - [1854] = 635, - [1855] = 1855, - [1856] = 157, - [1857] = 1708, - [1858] = 158, - [1859] = 159, - [1860] = 160, - [1861] = 1861, - [1862] = 1862, - [1863] = 160, - [1864] = 1597, - [1865] = 1599, - [1866] = 1866, - [1867] = 1770, - [1868] = 1868, - [1869] = 1605, - [1870] = 1606, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 631, - [1877] = 675, - [1878] = 615, - [1879] = 478, - [1880] = 1796, - [1881] = 1881, - [1882] = 161, - [1883] = 513, - [1884] = 1884, - [1885] = 635, - [1886] = 636, - [1887] = 637, - [1888] = 626, - [1889] = 634, - [1890] = 1890, - [1891] = 665, - [1892] = 1892, - [1893] = 659, - [1894] = 1751, - [1895] = 1755, - [1896] = 1815, - [1897] = 1818, - [1898] = 165, - [1899] = 1826, - [1900] = 155, - [1901] = 598, - [1902] = 639, - [1903] = 640, - [1904] = 641, - [1905] = 643, - [1906] = 644, - [1907] = 648, - [1908] = 632, - [1909] = 1765, - [1910] = 1766, - [1911] = 162, - [1912] = 163, - [1913] = 1828, - [1914] = 638, - [1915] = 645, - [1916] = 688, - [1917] = 689, - [1918] = 693, - [1919] = 159, - [1920] = 617, - [1921] = 618, - [1922] = 619, - [1923] = 682, - [1924] = 612, - [1925] = 649, - [1926] = 206, - [1927] = 661, - [1928] = 678, - [1929] = 683, - [1930] = 686, - [1931] = 611, - [1932] = 621, - [1933] = 625, - [1934] = 628, - [1935] = 669, - [1936] = 671, - [1937] = 647, - [1938] = 655, - [1939] = 657, - [1940] = 660, - [1941] = 670, - [1942] = 681, - [1943] = 684, - [1944] = 692, - [1945] = 156, - [1946] = 676, - [1947] = 161, - [1948] = 1948, - [1949] = 654, - [1950] = 680, - [1951] = 613, - [1952] = 1952, - [1953] = 162, - [1954] = 163, - [1955] = 1732, - [1956] = 1737, - [1957] = 1701, - [1958] = 398, - [1959] = 656, - [1960] = 1772, - [1961] = 1873, - [1962] = 1962, - [1963] = 1963, - [1964] = 382, - [1965] = 157, - [1966] = 1763, - [1967] = 1708, - [1968] = 1701, - [1969] = 1969, - [1970] = 393, - [1971] = 158, - [1972] = 664, - [1973] = 395, - [1974] = 1963, - [1975] = 1873, - [1976] = 1963, - [1977] = 614, - [1978] = 1978, - [1979] = 352, - [1980] = 163, - [1981] = 411, - [1982] = 412, - [1983] = 661, - [1984] = 414, - [1985] = 418, - [1986] = 637, - [1987] = 1987, - [1988] = 409, - [1989] = 410, - [1990] = 1990, - [1991] = 649, - [1992] = 686, - [1993] = 1993, - [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 509, - [2001] = 611, - [2002] = 2002, - [2003] = 678, - [2004] = 2004, - [2005] = 2005, - [2006] = 152, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 621, - [2011] = 625, - [2012] = 628, - [2013] = 2013, - [2014] = 2014, - [2015] = 647, - [2016] = 655, - [2017] = 2017, - [2018] = 657, - [2019] = 2019, - [2020] = 154, - [2021] = 407, - [2022] = 402, - [2023] = 660, - [2024] = 2024, - [2025] = 419, - [2026] = 420, - [2027] = 422, - [2028] = 433, - [2029] = 444, - [2030] = 445, - [2031] = 2031, - [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 162, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 446, - [2043] = 448, - [2044] = 423, - [2045] = 415, - [2046] = 670, - [2047] = 404, - [2048] = 632, - [2049] = 681, - [2050] = 638, - [2051] = 2051, - [2052] = 417, - [2053] = 675, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 683, - [2058] = 2058, - [2059] = 2059, - [2060] = 153, - [2061] = 399, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2014, - [2066] = 2017, - [2067] = 2067, - [2068] = 2024, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, - [2072] = 403, - [2073] = 2073, - [2074] = 479, - [2075] = 2075, - [2076] = 682, - [2077] = 2077, - [2078] = 2078, - [2079] = 354, - [2080] = 161, - [2081] = 2081, - [2082] = 2082, - [2083] = 612, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 454, - [2090] = 2090, - [2091] = 2091, - [2092] = 692, - [2093] = 157, - [2094] = 664, - [2095] = 680, - [2096] = 454, - [2097] = 2097, - [2098] = 2098, - [2099] = 684, - [2100] = 155, - [2101] = 156, - [2102] = 613, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 537, - [2109] = 534, - [2110] = 2110, - [2111] = 2111, - [2112] = 158, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 631, - [2117] = 2117, - [2118] = 539, - [2119] = 540, - [2120] = 639, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 640, - [2125] = 641, - [2126] = 509, - [2127] = 159, - [2128] = 635, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 2123, - [2137] = 636, - [2138] = 547, - [2139] = 2139, - [2140] = 479, - [2141] = 2107, - [2142] = 2133, - [2143] = 2143, - [2144] = 2144, - [2145] = 2091, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2103, - [2150] = 2104, - [2151] = 2105, - [2152] = 2106, - [2153] = 165, - [2154] = 2123, - [2155] = 547, - [2156] = 2123, - [2157] = 645, - [2158] = 2158, - [2159] = 2123, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 656, - [2164] = 160, - [2165] = 2143, - [2166] = 2144, - [2167] = 2146, - [2168] = 2147, - [2169] = 2148, - [2170] = 1998, - [2171] = 669, - [2172] = 671, - [2173] = 2173, - [2174] = 2174, - [2175] = 2110, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 163, - [2180] = 1693, - [2181] = 1866, - [2182] = 354, - [2183] = 1872, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, - [2211] = 2211, - [2212] = 547, - [2213] = 2213, - [2214] = 2214, - [2215] = 2215, - [2216] = 1701, - [2217] = 2217, - [2218] = 2218, - [2219] = 352, - [2220] = 313, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 537, - [2226] = 2226, - [2227] = 534, - [2228] = 2228, - [2229] = 2229, - [2230] = 1962, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 1597, - [2251] = 161, - [2252] = 2252, - [2253] = 2253, - [2254] = 1599, - [2255] = 2255, - [2256] = 1884, - [2257] = 1875, - [2258] = 2258, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 2263, - [2264] = 152, - [2265] = 2265, - [2266] = 2266, - [2267] = 2229, - [2268] = 1952, - [2269] = 2269, - [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 2273, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 1892, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 1969, - [2284] = 2284, - [2285] = 539, - [2286] = 2286, - [2287] = 2287, - [2288] = 540, - [2289] = 2289, - [2290] = 1874, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2246, - [2298] = 2298, - [2299] = 1708, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2303, - [2304] = 2304, - [2305] = 1861, - [2306] = 1948, - [2307] = 2307, - [2308] = 1862, - [2309] = 2309, - [2310] = 2310, - [2311] = 2311, - [2312] = 1605, - [2313] = 2313, - [2314] = 1606, - [2315] = 1881, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 162, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2329, - [2330] = 2330, - [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 319, - [2337] = 2337, - [2338] = 354, - [2339] = 2339, - [2340] = 317, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 319, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 336, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2365, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 2361, - [2375] = 2375, - [2376] = 320, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 335, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 676, - [2386] = 2386, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2355, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 317, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, - [2403] = 2403, - [2404] = 153, - [2405] = 2405, - [2406] = 2406, - [2407] = 2407, - [2408] = 2408, - [2409] = 2409, - [2410] = 2410, - [2411] = 2411, - [2412] = 2412, - [2413] = 2413, - [2414] = 2414, - [2415] = 2415, - [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 154, - [2420] = 152, - [2421] = 2421, - [2422] = 2422, - [2423] = 352, - [2424] = 2424, - [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2367, - [2433] = 2433, - [2434] = 2434, - [2435] = 2368, - [2436] = 2350, - [2437] = 2437, - [2438] = 2410, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 2443, - [2444] = 598, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 654, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 1693, - [2462] = 2462, - [2463] = 637, - [2464] = 632, - [2465] = 686, - [2466] = 611, - [2467] = 621, - [2468] = 625, - [2469] = 628, - [2470] = 320, - [2471] = 647, - [2472] = 655, - [2473] = 657, - [2474] = 660, - [2475] = 670, - [2476] = 681, - [2477] = 638, - [2478] = 635, - [2479] = 343, - [2480] = 636, - [2481] = 631, - [2482] = 684, - [2483] = 692, - [2484] = 339, - [2485] = 340, - [2486] = 341, - [2487] = 680, - [2488] = 613, - [2489] = 2134, - [2490] = 2425, - [2491] = 2111, - [2492] = 2429, - [2493] = 2117, - [2494] = 2430, - [2495] = 2122, - [2496] = 2437, - [2497] = 675, - [2498] = 2132, - [2499] = 2442, - [2500] = 2162, - [2501] = 2447, - [2502] = 2174, - [2503] = 2457, - [2504] = 2158, - [2505] = 2459, - [2506] = 2161, - [2507] = 2135, - [2508] = 2113, - [2509] = 2455, - [2510] = 2098, - [2511] = 683, - [2512] = 2121, - [2513] = 346, - [2514] = 342, - [2515] = 155, - [2516] = 156, - [2517] = 2333, - [2518] = 2097, - [2519] = 2399, - [2520] = 2114, - [2521] = 2521, - [2522] = 2130, - [2523] = 2131, - [2524] = 157, - [2525] = 158, - [2526] = 159, - [2527] = 160, - [2528] = 664, - [2529] = 2529, - [2530] = 346, - [2531] = 2531, - [2532] = 342, - [2533] = 645, - [2534] = 682, - [2535] = 612, - [2536] = 654, - [2537] = 669, - [2538] = 671, - [2539] = 656, - [2540] = 2129, - [2541] = 547, - [2542] = 676, - [2543] = 2160, - [2544] = 2139, - [2545] = 639, - [2546] = 640, - [2547] = 153, - [2548] = 649, - [2549] = 661, - [2550] = 154, - [2551] = 641, - [2552] = 678, - [2553] = 2431, - [2554] = 339, - [2555] = 1404, - [2556] = 354, - [2557] = 352, - [2558] = 2558, - [2559] = 343, - [2560] = 340, - [2561] = 152, - [2562] = 317, - [2563] = 319, - [2564] = 353, - [2565] = 356, - [2566] = 341, - [2567] = 2567, - [2568] = 358, - [2569] = 360, - [2570] = 361, - [2571] = 363, - [2572] = 356, - [2573] = 157, - [2574] = 160, - [2575] = 161, - [2576] = 2576, - [2577] = 360, - [2578] = 158, - [2579] = 2579, - [2580] = 2580, - [2581] = 2581, - [2582] = 361, - [2583] = 2583, - [2584] = 162, - [2585] = 163, - [2586] = 159, - [2587] = 155, - [2588] = 156, - [2589] = 2579, - [2590] = 2580, - [2591] = 2581, - [2592] = 2583, - [2593] = 2558, - [2594] = 2567, - [2595] = 358, - [2596] = 2596, - [2597] = 1701, - [2598] = 1708, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 158, - [2604] = 2596, - [2605] = 165, - [2606] = 2606, - [2607] = 2607, - [2608] = 346, - [2609] = 2609, - [2610] = 2600, - [2611] = 2611, - [2612] = 160, - [2613] = 2613, - [2614] = 159, - [2615] = 342, - [2616] = 370, - [2617] = 2617, - [2618] = 2602, - [2619] = 2619, - [2620] = 669, - [2621] = 671, - [2622] = 2622, - [2623] = 2596, - [2624] = 684, - [2625] = 692, - [2626] = 2626, - [2627] = 161, - [2628] = 157, - [2629] = 2629, - [2630] = 2622, - [2631] = 2631, - [2632] = 2632, - [2633] = 613, - [2634] = 2631, - [2635] = 152, - [2636] = 2629, - [2637] = 354, - [2638] = 352, - [2639] = 2613, - [2640] = 162, - [2641] = 163, - [2642] = 2642, - [2643] = 2606, - [2644] = 2644, - [2645] = 2599, - [2646] = 2619, - [2647] = 2609, - [2648] = 2611, - [2649] = 2601, - [2650] = 479, - [2651] = 373, - [2652] = 153, - [2653] = 154, - [2654] = 2617, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 454, - [2659] = 2599, - [2660] = 2609, - [2661] = 2599, - [2662] = 2609, - [2663] = 2663, - [2664] = 2626, - [2665] = 2607, - [2666] = 680, - [2667] = 385, - [2668] = 159, - [2669] = 479, - [2670] = 165, - [2671] = 680, - [2672] = 600, - [2673] = 2673, - [2674] = 2674, - [2675] = 160, - [2676] = 153, - [2677] = 353, - [2678] = 154, - [2679] = 613, - [2680] = 356, - [2681] = 358, - [2682] = 360, - [2683] = 2683, - [2684] = 361, - [2685] = 363, - [2686] = 398, - [2687] = 380, - [2688] = 382, - [2689] = 393, - [2690] = 395, - [2691] = 155, - [2692] = 156, - [2693] = 2693, - [2694] = 2694, - [2695] = 157, - [2696] = 158, - [2697] = 159, - [2698] = 160, - [2699] = 353, - [2700] = 404, - [2701] = 363, - [2702] = 1708, - [2703] = 669, - [2704] = 2704, - [2705] = 671, - [2706] = 2706, - [2707] = 2707, - [2708] = 454, - [2709] = 2709, - [2710] = 2642, - [2711] = 417, - [2712] = 2644, - [2713] = 2713, - [2714] = 399, - [2715] = 2655, - [2716] = 2657, - [2717] = 684, - [2718] = 692, - [2719] = 2663, - [2720] = 402, - [2721] = 2721, - [2722] = 157, - [2723] = 2706, - [2724] = 2707, - [2725] = 403, - [2726] = 2656, - [2727] = 2632, - [2728] = 407, - [2729] = 152, - [2730] = 158, - [2731] = 409, - [2732] = 410, - [2733] = 411, - [2734] = 412, - [2735] = 414, - [2736] = 418, - [2737] = 419, - [2738] = 420, - [2739] = 422, - [2740] = 433, - [2741] = 444, - [2742] = 445, - [2743] = 446, - [2744] = 448, - [2745] = 423, - [2746] = 415, - [2747] = 1701, - [2748] = 2748, - [2749] = 161, - [2750] = 353, - [2751] = 162, - [2752] = 163, - [2753] = 154, - [2754] = 353, - [2755] = 370, - [2756] = 205, - [2757] = 407, - [2758] = 409, - [2759] = 410, - [2760] = 370, - [2761] = 411, - [2762] = 373, - [2763] = 412, - [2764] = 414, - [2765] = 155, - [2766] = 363, - [2767] = 418, - [2768] = 419, - [2769] = 363, - [2770] = 420, - [2771] = 422, - [2772] = 152, - [2773] = 444, - [2774] = 445, - [2775] = 446, - [2776] = 448, - [2777] = 423, - [2778] = 415, - [2779] = 156, - [2780] = 417, - [2781] = 2781, - [2782] = 2748, - [2783] = 2783, - [2784] = 373, - [2785] = 668, - [2786] = 2783, - [2787] = 2787, - [2788] = 2781, - [2789] = 2721, - [2790] = 2790, - [2791] = 157, - [2792] = 153, - [2793] = 158, - [2794] = 159, - [2795] = 160, - [2796] = 433, - [2797] = 395, - [2798] = 395, - [2799] = 2799, - [2800] = 370, - [2801] = 161, - [2802] = 155, - [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 370, - [2807] = 393, - [2808] = 162, - [2809] = 163, - [2810] = 500, - [2811] = 2811, - [2812] = 454, - [2813] = 1639, - [2814] = 205, - [2815] = 2803, - [2816] = 156, - [2817] = 2804, - [2818] = 2805, - [2819] = 2819, - [2820] = 153, - [2821] = 398, - [2822] = 2822, - [2823] = 2823, - [2824] = 373, - [2825] = 2819, - [2826] = 407, - [2827] = 478, - [2828] = 513, - [2829] = 482, - [2830] = 157, - [2831] = 409, - [2832] = 410, - [2833] = 398, - [2834] = 152, - [2835] = 412, - [2836] = 414, - [2837] = 2837, - [2838] = 418, - [2839] = 419, - [2840] = 420, - [2841] = 158, - [2842] = 2842, - [2843] = 422, - [2844] = 159, - [2845] = 160, - [2846] = 433, - [2847] = 444, - [2848] = 487, - [2849] = 445, - [2850] = 600, - [2851] = 206, - [2852] = 446, - [2853] = 483, - [2854] = 382, - [2855] = 382, - [2856] = 423, - [2857] = 2857, - [2858] = 154, - [2859] = 373, - [2860] = 205, - [2861] = 415, - [2862] = 448, - [2863] = 393, - [2864] = 479, - [2865] = 165, - [2866] = 417, - [2867] = 411, - [2868] = 206, - [2869] = 1693, - [2870] = 395, - [2871] = 153, - [2872] = 353, - [2873] = 205, - [2874] = 393, - [2875] = 2875, - [2876] = 541, - [2877] = 2877, - [2878] = 363, - [2879] = 395, - [2880] = 353, - [2881] = 2881, - [2882] = 598, - [2883] = 2883, - [2884] = 162, - [2885] = 537, - [2886] = 534, - [2887] = 154, - [2888] = 523, - [2889] = 539, - [2890] = 540, - [2891] = 543, - [2892] = 2892, - [2893] = 482, - [2894] = 500, - [2895] = 1707, - [2896] = 547, - [2897] = 479, - [2898] = 539, - [2899] = 540, - [2900] = 398, - [2901] = 382, - [2902] = 548, - [2903] = 206, - [2904] = 483, - [2905] = 157, - [2906] = 363, - [2907] = 317, - [2908] = 319, - [2909] = 547, - [2910] = 478, - [2911] = 161, - [2912] = 513, - [2913] = 165, - [2914] = 163, - [2915] = 454, - [2916] = 158, - [2917] = 159, - [2918] = 382, - [2919] = 535, - [2920] = 487, - [2921] = 668, - [2922] = 155, - [2923] = 160, - [2924] = 156, - [2925] = 398, - [2926] = 393, - [2927] = 537, - [2928] = 647, - [2929] = 2929, - [2930] = 2930, - [2931] = 373, - [2932] = 163, - [2933] = 684, - [2934] = 692, - [2935] = 363, - [2936] = 640, - [2937] = 631, - [2938] = 632, - [2939] = 159, - [2940] = 2940, - [2941] = 2941, - [2942] = 638, - [2943] = 682, - [2944] = 612, - [2945] = 649, - [2946] = 661, - [2947] = 678, - [2948] = 683, - [2949] = 686, - [2950] = 611, - [2951] = 621, - [2952] = 625, - [2953] = 628, - [2954] = 370, - [2955] = 655, - [2956] = 657, - [2957] = 660, - [2958] = 670, - [2959] = 681, - [2960] = 2960, - [2961] = 676, - [2962] = 654, - [2963] = 1701, - [2964] = 206, - [2965] = 2965, - [2966] = 2966, - [2967] = 1708, - [2968] = 656, - [2969] = 160, - [2970] = 2930, - [2971] = 2940, - [2972] = 675, - [2973] = 346, - [2974] = 155, - [2975] = 342, - [2976] = 165, - [2977] = 319, - [2978] = 2965, - [2979] = 161, - [2980] = 669, - [2981] = 671, - [2982] = 156, - [2983] = 158, - [2984] = 1538, - [2985] = 159, - [2986] = 664, - [2987] = 160, - [2988] = 639, - [2989] = 641, - [2990] = 373, - [2991] = 2991, - [2992] = 2992, - [2993] = 353, - [2994] = 1751, - [2995] = 635, - [2996] = 636, - [2997] = 645, - [2998] = 598, - [2999] = 600, - [3000] = 2991, - [3001] = 370, - [3002] = 158, - [3003] = 637, - [3004] = 1765, - [3005] = 157, - [3006] = 2992, - [3007] = 3007, - [3008] = 680, - [3009] = 1755, - [3010] = 205, - [3011] = 613, - [3012] = 1766, - [3013] = 162, - [3014] = 157, - [3015] = 2929, - [3016] = 317, - [3017] = 3017, - [3018] = 681, - [3019] = 676, - [3020] = 654, - [3021] = 206, - [3022] = 648, - [3023] = 688, - [3024] = 3024, - [3025] = 689, - [3026] = 693, - [3027] = 614, - [3028] = 617, - [3029] = 618, - [3030] = 619, - [3031] = 598, - [3032] = 370, - [3033] = 660, - [3034] = 373, - [3035] = 2941, - [3036] = 3036, - [3037] = 3037, - [3038] = 398, - [3039] = 382, - [3040] = 393, - [3041] = 395, - [3042] = 1538, - [3043] = 356, - [3044] = 358, - [3045] = 360, - [3046] = 361, - [3047] = 346, - [3048] = 342, - [3049] = 615, - [3050] = 478, - [3051] = 513, - [3052] = 3052, - [3053] = 668, - [3054] = 3054, - [3055] = 3055, - [3056] = 626, - [3057] = 537, - [3058] = 539, - [3059] = 540, - [3060] = 3060, - [3061] = 670, - [3062] = 665, - [3063] = 547, - [3064] = 3064, - [3065] = 659, - [3066] = 675, - [3067] = 157, - [3068] = 158, - [3069] = 159, - [3070] = 165, - [3071] = 205, - [3072] = 160, - [3073] = 637, - [3074] = 632, - [3075] = 638, - [3076] = 398, - [3077] = 161, - [3078] = 643, - [3079] = 644, - [3080] = 382, - [3081] = 682, - [3082] = 393, - [3083] = 162, - [3084] = 163, - [3085] = 395, - [3086] = 612, - [3087] = 649, - [3088] = 661, - [3089] = 678, - [3090] = 683, - [3091] = 686, - [3092] = 611, - [3093] = 621, - [3094] = 625, - [3095] = 628, - [3096] = 647, - [3097] = 3097, - [3098] = 655, - [3099] = 657, - [3100] = 634, - [3101] = 693, - [3102] = 3102, - [3103] = 618, - [3104] = 688, - [3105] = 689, - [3106] = 356, - [3107] = 612, - [3108] = 358, - [3109] = 398, - [3110] = 360, - [3111] = 361, - [3112] = 649, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 661, - [3117] = 675, - [3118] = 3118, - [3119] = 3119, - [3120] = 3120, - [3121] = 678, - [3122] = 619, - [3123] = 683, - [3124] = 382, - [3125] = 157, - [3126] = 686, - [3127] = 158, - [3128] = 159, - [3129] = 160, - [3130] = 611, - [3131] = 621, - [3132] = 625, - [3133] = 628, - [3134] = 615, - [3135] = 626, - [3136] = 647, - [3137] = 478, - [3138] = 393, - [3139] = 655, - [3140] = 657, - [3141] = 395, - [3142] = 660, - [3143] = 614, - [3144] = 670, - [3145] = 681, - [3146] = 676, - [3147] = 654, - [3148] = 165, - [3149] = 2966, - [3150] = 665, - [3151] = 617, - [3152] = 634, - [3153] = 643, - [3154] = 206, - [3155] = 644, - [3156] = 2960, - [3157] = 648, - [3158] = 513, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 637, - [3164] = 632, - [3165] = 638, - [3166] = 682, - [3167] = 3167, - [3168] = 659, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3171, - [3176] = 3176, - [3177] = 3173, - [3178] = 3174, - [3179] = 3179, - [3180] = 3176, - [3181] = 3169, - [3182] = 3182, - [3183] = 3183, - [3184] = 3184, - [3185] = 3182, - [3186] = 3183, - [3187] = 3184, - [3188] = 3172, - [3189] = 3179, - [3190] = 534, - [3191] = 537, - [3192] = 3192, - [3193] = 547, - [3194] = 3194, - [3195] = 540, - [3196] = 165, - [3197] = 539, - [3198] = 3198, - [3199] = 540, - [3200] = 320, - [3201] = 547, - [3202] = 539, - [3203] = 363, - [3204] = 534, - [3205] = 1693, - [3206] = 353, - [3207] = 3207, - [3208] = 537, - [3209] = 3209, - [3210] = 3210, - [3211] = 2352, - [3212] = 2359, - [3213] = 2379, - [3214] = 2393, - [3215] = 2378, - [3216] = 2375, - [3217] = 2387, - [3218] = 2391, - [3219] = 2418, - [3220] = 2324, - [3221] = 2414, - [3222] = 2424, - [3223] = 2383, - [3224] = 2386, - [3225] = 2462, - [3226] = 2408, - [3227] = 2413, - [3228] = 2416, - [3229] = 2433, - [3230] = 2445, - [3231] = 2453, - [3232] = 2326, - [3233] = 2331, - [3234] = 2334, - [3235] = 2339, - [3236] = 2351, - [3237] = 2358, - [3238] = 2366, - [3239] = 2370, - [3240] = 2380, - [3241] = 2394, - [3242] = 2402, - [3243] = 2421, - [3244] = 2428, - [3245] = 2434, - [3246] = 2441, - [3247] = 2356, - [3248] = 2396, - [3249] = 2446, - [3250] = 2341, - [3251] = 2345, - [3252] = 2357, - [3253] = 2362, - [3254] = 2372, - [3255] = 2398, - [3256] = 2409, - [3257] = 2426, - [3258] = 2448, - [3259] = 2450, - [3260] = 2412, - [3261] = 2328, - [3262] = 2373, - [3263] = 2329, - [3264] = 2354, - [3265] = 2403, - [3266] = 2400, - [3267] = 2364, - [3268] = 2382, - [3269] = 2440, - [3270] = 2344, - [3271] = 2363, - [3272] = 2371, - [3273] = 2388, - [3274] = 2392, - [3275] = 2330, - [3276] = 2335, - [3277] = 2415, - [3278] = 2422, - [3279] = 2332, - [3280] = 2454, - [3281] = 2401, - [3282] = 2384, - [3283] = 3283, - [3284] = 2349, - [3285] = 2452, - [3286] = 2325, - [3287] = 2342, - [3288] = 2347, - [3289] = 2353, - [3290] = 2377, - [3291] = 2427, - [3292] = 2439, - [3293] = 2458, - [3294] = 2327, - [3295] = 340, - [3296] = 2425, - [3297] = 2429, - [3298] = 2430, - [3299] = 2437, - [3300] = 2442, - [3301] = 2447, - [3302] = 2457, - [3303] = 2459, - [3304] = 2455, - [3305] = 2431, - [3306] = 2333, - [3307] = 2399, - [3308] = 341, - [3309] = 3210, - [3310] = 373, - [3311] = 2343, - [3312] = 2406, - [3313] = 2389, - [3314] = 2417, - [3315] = 1693, - [3316] = 2449, - [3317] = 2348, - [3318] = 2456, - [3319] = 3319, - [3320] = 2407, - [3321] = 2369, - [3322] = 2405, - [3323] = 2411, - [3324] = 3324, - [3325] = 3325, - [3326] = 3326, - [3327] = 2365, - [3328] = 3328, - [3329] = 3210, - [3330] = 343, - [3331] = 339, - [3332] = 320, - [3333] = 370, - [3334] = 1796, - [3335] = 3210, - [3336] = 2443, - [3337] = 3337, - [3338] = 3338, - [3339] = 159, - [3340] = 2437, - [3341] = 2455, - [3342] = 2399, - [3343] = 157, - [3344] = 2333, - [3345] = 339, - [3346] = 2442, - [3347] = 3347, - [3348] = 3348, - [3349] = 3338, - [3350] = 158, - [3351] = 382, - [3352] = 340, - [3353] = 341, - [3354] = 319, - [3355] = 343, - [3356] = 2459, - [3357] = 3347, - [3358] = 3358, - [3359] = 393, - [3360] = 2425, - [3361] = 2431, - [3362] = 3362, - [3363] = 2447, - [3364] = 3194, - [3365] = 2429, - [3366] = 152, - [3367] = 2457, - [3368] = 3348, - [3369] = 478, - [3370] = 3362, - [3371] = 3371, - [3372] = 398, - [3373] = 3198, - [3374] = 1796, - [3375] = 395, - [3376] = 513, - [3377] = 317, - [3378] = 2430, - [3379] = 160, - [3380] = 363, - [3381] = 317, - [3382] = 319, - [3383] = 3383, - [3384] = 152, - [3385] = 346, - [3386] = 342, - [3387] = 3387, - [3388] = 3387, - [3389] = 354, - [3390] = 352, - [3391] = 317, - [3392] = 153, - [3393] = 154, - [3394] = 319, - [3395] = 356, - [3396] = 600, - [3397] = 319, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 346, - [3402] = 3402, - [3403] = 1538, - [3404] = 3404, - [3405] = 152, - [3406] = 1404, - [3407] = 358, - [3408] = 360, - [3409] = 1538, - [3410] = 361, - [3411] = 3411, - [3412] = 342, - [3413] = 342, - [3414] = 3400, - [3415] = 3383, - [3416] = 153, - [3417] = 154, - [3418] = 317, - [3419] = 3404, - [3420] = 346, - [3421] = 152, - [3422] = 3422, - [3423] = 358, - [3424] = 356, - [3425] = 354, - [3426] = 619, - [3427] = 352, - [3428] = 358, - [3429] = 648, - [3430] = 3430, - [3431] = 154, - [3432] = 3432, - [3433] = 361, - [3434] = 3411, - [3435] = 668, - [3436] = 342, - [3437] = 346, - [3438] = 689, - [3439] = 693, - [3440] = 3402, - [3441] = 360, - [3442] = 360, - [3443] = 644, - [3444] = 614, - [3445] = 615, - [3446] = 626, - [3447] = 361, - [3448] = 617, - [3449] = 634, - [3450] = 665, - [3451] = 659, - [3452] = 356, - [3453] = 618, - [3454] = 3454, - [3455] = 643, - [3456] = 152, - [3457] = 688, - [3458] = 153, - [3459] = 1538, - [3460] = 448, - [3461] = 205, - [3462] = 402, - [3463] = 361, - [3464] = 404, - [3465] = 399, - [3466] = 407, - [3467] = 409, - [3468] = 152, - [3469] = 353, - [3470] = 410, - [3471] = 403, - [3472] = 411, - [3473] = 412, - [3474] = 414, - [3475] = 1701, - [3476] = 153, - [3477] = 598, - [3478] = 418, - [3479] = 419, - [3480] = 420, - [3481] = 422, - [3482] = 356, - [3483] = 363, - [3484] = 154, - [3485] = 358, - [3486] = 433, - [3487] = 444, - [3488] = 445, - [3489] = 1708, - [3490] = 417, - [3491] = 446, - [3492] = 152, - [3493] = 423, - [3494] = 360, - [3495] = 415, - [3496] = 3496, - [3497] = 675, - [3498] = 657, - [3499] = 638, - [3500] = 660, - [3501] = 664, - [3502] = 153, - [3503] = 683, - [3504] = 686, - [3505] = 670, - [3506] = 611, - [3507] = 636, - [3508] = 373, - [3509] = 621, - [3510] = 631, - [3511] = 154, - [3512] = 639, - [3513] = 649, - [3514] = 680, - [3515] = 613, - [3516] = 632, - [3517] = 637, - [3518] = 671, - [3519] = 625, - [3520] = 682, - [3521] = 654, - [3522] = 500, - [3523] = 155, - [3524] = 482, - [3525] = 483, - [3526] = 156, - [3527] = 681, - [3528] = 487, - [3529] = 641, - [3530] = 676, - [3531] = 661, - [3532] = 647, - [3533] = 635, - [3534] = 640, - [3535] = 656, - [3536] = 645, - [3537] = 154, - [3538] = 692, - [3539] = 655, - [3540] = 669, - [3541] = 3541, - [3542] = 684, - [3543] = 370, - [3544] = 3169, - [3545] = 612, - [3546] = 206, - [3547] = 153, - [3548] = 3169, - [3549] = 678, - [3550] = 628, - [3551] = 420, - [3552] = 418, - [3553] = 482, - [3554] = 395, - [3555] = 382, - [3556] = 419, - [3557] = 483, - [3558] = 3169, - [3559] = 155, - [3560] = 156, - [3561] = 487, - [3562] = 157, - [3563] = 422, - [3564] = 158, - [3565] = 433, - [3566] = 444, - [3567] = 445, - [3568] = 159, - [3569] = 446, - [3570] = 160, - [3571] = 398, - [3572] = 500, - [3573] = 157, - [3574] = 158, - [3575] = 319, - [3576] = 161, - [3577] = 354, - [3578] = 352, - [3579] = 152, - [3580] = 160, - [3581] = 162, - [3582] = 163, - [3583] = 448, - [3584] = 423, - [3585] = 415, - [3586] = 417, - [3587] = 402, - [3588] = 1639, - [3589] = 404, - [3590] = 478, - [3591] = 513, - [3592] = 393, - [3593] = 399, - [3594] = 155, - [3595] = 156, - [3596] = 403, - [3597] = 414, - [3598] = 407, - [3599] = 3169, - [3600] = 409, - [3601] = 410, - [3602] = 317, - [3603] = 411, - [3604] = 412, - [3605] = 159, - [3606] = 162, - [3607] = 161, - [3608] = 342, - [3609] = 363, - [3610] = 3610, - [3611] = 547, - [3612] = 319, - [3613] = 1655, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 1693, - [3618] = 162, - [3619] = 163, - [3620] = 479, - [3621] = 161, - [3622] = 509, - [3623] = 317, - [3624] = 1998, - [3625] = 3625, - [3626] = 3626, - [3627] = 163, - [3628] = 454, - [3629] = 165, - [3630] = 534, - [3631] = 509, - [3632] = 1707, - [3633] = 537, - [3634] = 2173, - [3635] = 346, - [3636] = 598, - [3637] = 539, - [3638] = 540, - [3639] = 1766, - [3640] = 613, - [3641] = 1701, - [3642] = 638, - [3643] = 656, - [3644] = 360, - [3645] = 637, - [3646] = 346, - [3647] = 3647, - [3648] = 682, - [3649] = 612, - [3650] = 649, - [3651] = 534, - [3652] = 661, - [3653] = 678, - [3654] = 683, - [3655] = 686, - [3656] = 1708, - [3657] = 509, - [3658] = 611, - [3659] = 621, - [3660] = 625, - [3661] = 628, - [3662] = 647, - [3663] = 635, - [3664] = 636, - [3665] = 537, - [3666] = 655, - [3667] = 534, - [3668] = 537, - [3669] = 3669, - [3670] = 1884, - [3671] = 539, - [3672] = 540, - [3673] = 1892, - [3674] = 657, - [3675] = 1948, - [3676] = 1952, - [3677] = 660, - [3678] = 1962, - [3679] = 1969, - [3680] = 670, - [3681] = 1861, - [3682] = 681, - [3683] = 1862, - [3684] = 1866, - [3685] = 1872, - [3686] = 547, - [3687] = 680, - [3688] = 1875, - [3689] = 1881, - [3690] = 639, - [3691] = 640, - [3692] = 641, - [3693] = 547, - [3694] = 1815, - [3695] = 1818, - [3696] = 3696, - [3697] = 676, - [3698] = 1998, - [3699] = 539, - [3700] = 540, - [3701] = 1732, - [3702] = 1737, - [3703] = 654, - [3704] = 669, - [3705] = 671, - [3706] = 3706, - [3707] = 645, - [3708] = 358, - [3709] = 342, - [3710] = 664, - [3711] = 165, - [3712] = 1751, - [3713] = 1755, - [3714] = 684, - [3715] = 692, - [3716] = 1998, - [3717] = 509, - [3718] = 1765, - [3719] = 1597, - [3720] = 1599, - [3721] = 1605, - [3722] = 1606, - [3723] = 631, - [3724] = 3724, - [3725] = 356, - [3726] = 361, - [3727] = 675, - [3728] = 632, - [3729] = 1874, - [3730] = 540, - [3731] = 2454, - [3732] = 2401, - [3733] = 2384, - [3734] = 2349, - [3735] = 2443, - [3736] = 2452, - [3737] = 2325, - [3738] = 2342, - [3739] = 2347, - [3740] = 2353, - [3741] = 2377, - [3742] = 2427, - [3743] = 2439, - [3744] = 2458, - [3745] = 2327, - [3746] = 2389, - [3747] = 665, - [3748] = 2417, - [3749] = 2449, - [3750] = 688, - [3751] = 3696, - [3752] = 3752, - [3753] = 547, - [3754] = 615, - [3755] = 2348, - [3756] = 659, - [3757] = 2456, - [3758] = 2407, - [3759] = 1693, - [3760] = 2369, - [3761] = 2405, - [3762] = 2411, - [3763] = 2365, - [3764] = 3752, - [3765] = 361, - [3766] = 2352, - [3767] = 1693, - [3768] = 2359, - [3769] = 2379, - [3770] = 2393, - [3771] = 2378, - [3772] = 2375, - [3773] = 2387, - [3774] = 2391, - [3775] = 2418, - [3776] = 2324, - [3777] = 2414, - [3778] = 2424, - [3779] = 2383, - [3780] = 2386, - [3781] = 2462, - [3782] = 2408, - [3783] = 2413, - [3784] = 2416, - [3785] = 2433, - [3786] = 2445, - [3787] = 2453, - [3788] = 2326, - [3789] = 2331, - [3790] = 2334, - [3791] = 2339, - [3792] = 356, - [3793] = 2351, - [3794] = 358, - [3795] = 2358, - [3796] = 3669, - [3797] = 2366, - [3798] = 2370, - [3799] = 2380, - [3800] = 534, - [3801] = 2394, - [3802] = 2332, - [3803] = 2421, - [3804] = 2428, - [3805] = 2434, - [3806] = 3752, - [3807] = 2441, - [3808] = 2406, - [3809] = 2343, - [3810] = 2356, - [3811] = 2396, - [3812] = 689, - [3813] = 2446, - [3814] = 2341, - [3815] = 3752, - [3816] = 2345, - [3817] = 2357, - [3818] = 2362, - [3819] = 3752, - [3820] = 3752, - [3821] = 643, - [3822] = 644, - [3823] = 2372, - [3824] = 3752, - [3825] = 2398, - [3826] = 2409, - [3827] = 2426, - [3828] = 648, - [3829] = 693, - [3830] = 2448, - [3831] = 2450, - [3832] = 360, - [3833] = 3752, - [3834] = 2412, - [3835] = 2328, - [3836] = 2373, - [3837] = 2329, - [3838] = 614, - [3839] = 2354, - [3840] = 2403, - [3841] = 2400, - [3842] = 2364, - [3843] = 537, - [3844] = 2382, - [3845] = 617, - [3846] = 2440, - [3847] = 2344, - [3848] = 539, - [3849] = 634, - [3850] = 618, - [3851] = 2363, - [3852] = 2371, - [3853] = 2388, - [3854] = 2392, - [3855] = 2330, - [3856] = 619, - [3857] = 2335, - [3858] = 626, - [3859] = 2415, - [3860] = 2422, - [3861] = 2402, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3865, - [3866] = 2139, - [3867] = 3867, - [3868] = 3868, - [3869] = 3869, - [3870] = 3870, - [3871] = 3871, - [3872] = 3872, - [3873] = 3194, - [3874] = 3198, - [3875] = 2134, - [3876] = 2425, - [3877] = 2111, - [3878] = 2429, - [3879] = 1693, - [3880] = 2117, - [3881] = 2430, - [3882] = 2122, - [3883] = 2437, - [3884] = 3884, - [3885] = 2132, - [3886] = 2442, - [3887] = 2162, - [3888] = 2447, - [3889] = 2129, - [3890] = 2174, - [3891] = 2457, - [3892] = 3872, - [3893] = 2158, - [3894] = 2459, - [3895] = 2161, - [3896] = 3896, - [3897] = 2135, - [3898] = 2113, - [3899] = 2455, - [3900] = 2098, - [3901] = 2431, - [3902] = 2130, - [3903] = 2121, - [3904] = 2097, - [3905] = 2399, - [3906] = 3906, - [3907] = 2114, - [3908] = 2131, - [3909] = 2160, - [3910] = 3910, - [3911] = 3911, - [3912] = 3912, - [3913] = 3913, - [3914] = 3914, - [3915] = 3868, - [3916] = 3906, - [3917] = 3917, - [3918] = 3918, - [3919] = 3919, - [3920] = 3868, - [3921] = 3906, - [3922] = 3922, - [3923] = 3923, - [3924] = 3924, - [3925] = 3925, - [3926] = 3926, - [3927] = 547, - [3928] = 3928, - [3929] = 3929, - [3930] = 3930, - [3931] = 2333, - [3932] = 3932, - [3933] = 2447, - [3934] = 2457, - [3935] = 2459, - [3936] = 2455, - [3937] = 2431, - [3938] = 2333, - [3939] = 2399, - [3940] = 3940, - [3941] = 3932, - [3942] = 3942, - [3943] = 3932, - [3944] = 3932, - [3945] = 3932, - [3946] = 2429, - [3947] = 2437, - [3948] = 2442, - [3949] = 2437, - [3950] = 3932, - [3951] = 3871, - [3952] = 2442, - [3953] = 2447, - [3954] = 2457, - [3955] = 2459, - [3956] = 3956, - [3957] = 2425, - [3958] = 3867, - [3959] = 2431, - [3960] = 2430, - [3961] = 3932, - [3962] = 2333, - [3963] = 2399, - [3964] = 2455, - [3965] = 3932, - [3966] = 2425, - [3967] = 2429, - [3968] = 2430, - [3969] = 3932, - [3970] = 3970, - [3971] = 3971, - [3972] = 3610, - [3973] = 3973, - [3974] = 3974, - [3975] = 3975, - [3976] = 3625, - [3977] = 3977, - [3978] = 3978, - [3979] = 3614, - [3980] = 3980, - [3981] = 3980, - [3982] = 3980, - [3983] = 3980, - [3984] = 3980, - [3985] = 3974, - [3986] = 3980, - [3987] = 3978, - [3988] = 3615, - [3989] = 3971, - [3990] = 3973, - [3991] = 3616, - [3992] = 3980, - [3993] = 3975, - [3994] = 3970, - [3995] = 3626, - [3996] = 313, - [3997] = 3977, - [3998] = 336, - [3999] = 313, - [4000] = 335, - [4001] = 313, - [4002] = 317, - [4003] = 336, - [4004] = 319, - [4005] = 335, - [4006] = 317, - [4007] = 320, - [4008] = 346, - [4009] = 342, - [4010] = 313, - [4011] = 336, - [4012] = 335, - [4013] = 319, - [4014] = 1333, - [4015] = 353, - [4016] = 361, - [4017] = 342, - [4018] = 346, - [4019] = 360, - [4020] = 319, - [4021] = 343, - [4022] = 336, - [4023] = 356, - [4024] = 335, - [4025] = 363, - [4026] = 339, - [4027] = 354, - [4028] = 352, - [4029] = 340, - [4030] = 341, - [4031] = 358, - [4032] = 317, - [4033] = 320, - [4034] = 1333, - [4035] = 373, - [4036] = 358, - [4037] = 353, - [4038] = 370, - [4039] = 360, - [4040] = 319, - [4041] = 361, - [4042] = 339, - [4043] = 340, - [4044] = 341, - [4045] = 356, - [4046] = 343, - [4047] = 342, - [4048] = 313, - [4049] = 205, - [4050] = 363, - [4051] = 354, - [4052] = 346, - [4053] = 1333, - [4054] = 352, - [4055] = 317, - [4056] = 342, - [4057] = 346, - [4058] = 382, - [4059] = 393, - [4060] = 206, - [4061] = 360, - [4062] = 317, - [4063] = 395, - [4064] = 319, - [4065] = 373, - [4066] = 335, - [4067] = 353, - [4068] = 380, - [4069] = 398, - [4070] = 152, - [4071] = 358, - [4072] = 356, - [4073] = 1333, - [4074] = 361, - [4075] = 354, - [4076] = 363, - [4077] = 352, - [4078] = 370, - [4079] = 320, - [4080] = 336, - [4081] = 385, - [4082] = 341, - [4083] = 343, - [4084] = 370, - [4085] = 152, - [4086] = 382, - [4087] = 373, - [4088] = 346, - [4089] = 360, - [4090] = 153, - [4091] = 361, - [4092] = 398, - [4093] = 342, - [4094] = 385, - [4095] = 353, - [4096] = 363, - [4097] = 352, - [4098] = 358, - [4099] = 393, - [4100] = 380, - [4101] = 339, - [4102] = 340, - [4103] = 1404, - [4104] = 363, - [4105] = 395, - [4106] = 353, - [4107] = 154, - [4108] = 356, - [4109] = 2521, - [4110] = 354, - [4111] = 153, - [4112] = 361, - [4113] = 363, - [4114] = 152, - [4115] = 1404, - [4116] = 382, - [4117] = 356, - [4118] = 158, - [4119] = 155, - [4120] = 380, - [4121] = 370, - [4122] = 373, - [4123] = 354, - [4124] = 4124, - [4125] = 4125, - [4126] = 353, - [4127] = 358, - [4128] = 393, - [4129] = 360, - [4130] = 160, - [4131] = 363, - [4132] = 353, - [4133] = 385, - [4134] = 4134, - [4135] = 156, - [4136] = 159, - [4137] = 395, - [4138] = 398, - [4139] = 157, - [4140] = 352, - [4141] = 4141, - [4142] = 154, - [4143] = 373, - [4144] = 370, - [4145] = 403, - [4146] = 547, - [4147] = 417, - [4148] = 352, - [4149] = 446, - [4150] = 537, - [4151] = 523, - [4152] = 154, - [4153] = 2644, - [4154] = 2656, - [4155] = 543, - [4156] = 370, - [4157] = 393, - [4158] = 353, - [4159] = 155, - [4160] = 156, - [4161] = 2632, - [4162] = 423, - [4163] = 399, - [4164] = 535, - [4165] = 354, - [4166] = 373, - [4167] = 2663, - [4168] = 407, - [4169] = 395, - [4170] = 410, - [4171] = 539, - [4172] = 540, - [4173] = 415, - [4174] = 4174, - [4175] = 161, - [4176] = 2655, - [4177] = 534, - [4178] = 400, - [4179] = 382, - [4180] = 541, - [4181] = 548, - [4182] = 411, - [4183] = 363, - [4184] = 385, - [4185] = 4141, - [4186] = 430, - [4187] = 157, - [4188] = 398, - [4189] = 4189, - [4190] = 402, - [4191] = 412, - [4192] = 393, - [4193] = 398, - [4194] = 4194, - [4195] = 158, - [4196] = 159, - [4197] = 380, - [4198] = 2657, - [4199] = 414, - [4200] = 4124, - [4201] = 409, - [4202] = 444, - [4203] = 4125, - [4204] = 404, - [4205] = 370, - [4206] = 418, - [4207] = 419, - [4208] = 153, - [4209] = 382, - [4210] = 420, - [4211] = 160, - [4212] = 4212, - [4213] = 422, - [4214] = 448, - [4215] = 2642, - [4216] = 373, - [4217] = 395, - [4218] = 445, - [4219] = 433, - [4220] = 162, - [4221] = 163, - [4222] = 449, - [4223] = 4223, - [4224] = 152, - [4225] = 159, - [4226] = 419, - [4227] = 478, - [4228] = 420, - [4229] = 373, - [4230] = 4223, - [4231] = 399, - [4232] = 395, - [4233] = 422, - [4234] = 4234, - [4235] = 153, - [4236] = 454, - [4237] = 352, - [4238] = 433, - [4239] = 444, - [4240] = 400, - [4241] = 4241, - [4242] = 407, - [4243] = 445, - [4244] = 534, - [4245] = 479, - [4246] = 402, - [4247] = 4194, - [4248] = 446, - [4249] = 382, - [4250] = 482, - [4251] = 535, - [4252] = 161, - [4253] = 541, - [4254] = 483, - [4255] = 380, - [4256] = 398, - [4257] = 448, - [4258] = 513, - [4259] = 4241, - [4260] = 423, - [4261] = 353, - [4262] = 382, - [4263] = 415, - [4264] = 385, - [4265] = 403, - [4266] = 363, - [4267] = 417, - [4268] = 487, - [4269] = 4241, - [4270] = 4270, - [4271] = 154, - [4272] = 4174, - [4273] = 163, - [4274] = 4241, - [4275] = 449, - [4276] = 398, - [4277] = 4277, - [4278] = 540, - [4279] = 1693, - [4280] = 404, - [4281] = 547, - [4282] = 4212, - [4283] = 543, - [4284] = 155, - [4285] = 354, - [4286] = 411, - [4287] = 412, - [4288] = 430, - [4289] = 4289, - [4290] = 548, - [4291] = 500, - [4292] = 4292, - [4293] = 165, - [4294] = 414, - [4295] = 156, - [4296] = 158, - [4297] = 4297, - [4298] = 537, - [4299] = 4299, - [4300] = 4189, - [4301] = 393, - [4302] = 393, - [4303] = 418, - [4304] = 523, - [4305] = 160, - [4306] = 4306, - [4307] = 395, - [4308] = 509, - [4309] = 539, - [4310] = 152, - [4311] = 162, - [4312] = 370, - [4313] = 409, - [4314] = 410, - [4315] = 157, - [4316] = 4316, - [4317] = 1597, - [4318] = 1599, - [4319] = 382, - [4320] = 548, - [4321] = 1605, - [4322] = 1606, - [4323] = 154, - [4324] = 4324, - [4325] = 4325, - [4326] = 513, - [4327] = 4327, - [4328] = 4328, - [4329] = 4329, - [4330] = 407, - [4331] = 4331, - [4332] = 157, - [4333] = 4333, - [4334] = 4334, - [4335] = 393, - [4336] = 509, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 4342, - [4343] = 409, - [4344] = 410, - [4345] = 395, - [4346] = 4346, - [4347] = 4347, - [4348] = 4348, - [4349] = 4349, - [4350] = 4350, - [4351] = 353, - [4352] = 4352, - [4353] = 4353, - [4354] = 4354, - [4355] = 4355, - [4356] = 547, - [4357] = 411, - [4358] = 412, - [4359] = 152, - [4360] = 414, - [4361] = 418, - [4362] = 419, - [4363] = 420, - [4364] = 363, - [4365] = 422, - [4366] = 433, - [4367] = 161, - [4368] = 444, - [4369] = 445, - [4370] = 446, - [4371] = 157, - [4372] = 162, - [4373] = 163, - [4374] = 448, - [4375] = 423, - [4376] = 415, - [4377] = 152, - [4378] = 482, - [4379] = 483, - [4380] = 402, - [4381] = 417, - [4382] = 1639, - [4383] = 487, - [4384] = 1641, - [4385] = 155, - [4386] = 156, - [4387] = 478, - [4388] = 319, - [4389] = 160, - [4390] = 158, - [4391] = 403, - [4392] = 500, - [4393] = 159, - [4394] = 4394, - [4395] = 4395, - [4396] = 363, - [4397] = 4397, - [4398] = 4398, - [4399] = 370, - [4400] = 4400, - [4401] = 4401, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 4405, - [4406] = 4406, - [4407] = 4407, - [4408] = 158, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4416, - [4417] = 4417, - [4418] = 4418, - [4419] = 479, - [4420] = 4420, - [4421] = 4270, - [4422] = 165, - [4423] = 454, - [4424] = 160, - [4425] = 4425, - [4426] = 4426, - [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4434, - [4435] = 4435, - [4436] = 523, - [4437] = 4437, - [4438] = 4438, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 4442, - [4443] = 4443, - [4444] = 4444, - [4445] = 4445, - [4446] = 4446, - [4447] = 537, - [4448] = 534, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 4452, - [4453] = 4453, - [4454] = 4454, - [4455] = 4455, - [4456] = 4456, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 535, - [4462] = 539, - [4463] = 541, - [4464] = 540, - [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 4468, - [4469] = 373, - [4470] = 4470, - [4471] = 4471, - [4472] = 4472, - [4473] = 4473, - [4474] = 4474, - [4475] = 4475, - [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4485, - [4486] = 4486, - [4487] = 404, - [4488] = 4488, - [4489] = 4489, - [4490] = 4490, - [4491] = 398, - [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 4496, - [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 1693, - [4501] = 159, - [4502] = 4502, - [4503] = 4503, - [4504] = 4504, - [4505] = 4505, - [4506] = 4506, - [4507] = 4507, - [4508] = 4508, - [4509] = 4509, - [4510] = 4510, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, - [4514] = 543, - [4515] = 153, - [4516] = 399, - [4517] = 4517, - [4518] = 4518, - [4519] = 4519, - [4520] = 4520, - [4521] = 4521, - [4522] = 346, - [4523] = 4349, - [4524] = 4338, - [4525] = 487, - [4526] = 1605, - [4527] = 598, - [4528] = 157, - [4529] = 4354, - [4530] = 1639, - [4531] = 4531, - [4532] = 454, - [4533] = 4533, - [4534] = 398, - [4535] = 363, - [4536] = 1641, - [4537] = 4537, - [4538] = 158, - [4539] = 1606, - [4540] = 4355, - [4541] = 317, - [4542] = 500, - [4543] = 159, - [4544] = 543, - [4545] = 4545, - [4546] = 4546, - [4547] = 370, - [4548] = 4548, - [4549] = 4549, - [4550] = 4533, - [4551] = 513, - [4552] = 153, - [4553] = 4350, - [4554] = 4352, - [4555] = 155, - [4556] = 4549, - [4557] = 1597, - [4558] = 4558, - [4559] = 1701, - [4560] = 393, - [4561] = 4545, - [4562] = 4562, - [4563] = 1599, - [4564] = 154, - [4565] = 4333, - [4566] = 161, - [4567] = 160, - [4568] = 4353, - [4569] = 509, - [4570] = 548, - [4571] = 4571, - [4572] = 4572, - [4573] = 4348, - [4574] = 4574, - [4575] = 1763, - [4576] = 4398, - [4577] = 1708, - [4578] = 478, - [4579] = 4400, - [4580] = 156, - [4581] = 4574, - [4582] = 4401, - [4583] = 4337, - [4584] = 535, - [4585] = 1655, - [4586] = 1707, - [4587] = 4341, - [4588] = 4339, - [4589] = 382, - [4590] = 342, - [4591] = 4395, - [4592] = 4592, - [4593] = 4593, - [4594] = 162, - [4595] = 4595, - [4596] = 537, - [4597] = 395, - [4598] = 4598, - [4599] = 4340, - [4600] = 317, - [4601] = 534, - [4602] = 319, - [4603] = 163, - [4604] = 541, - [4605] = 4605, - [4606] = 4593, - [4607] = 482, - [4608] = 4346, - [4609] = 547, - [4610] = 4334, - [4611] = 373, - [4612] = 483, - [4613] = 4613, - [4614] = 4614, - [4615] = 523, - [4616] = 4347, - [4617] = 479, - [4618] = 1693, - [4619] = 539, - [4620] = 540, - [4621] = 4331, - [4622] = 165, - [4623] = 4342, - [4624] = 539, - [4625] = 358, - [4626] = 4626, - [4627] = 2397, - [4628] = 2644, - [4629] = 4629, - [4630] = 645, - [4631] = 4631, - [4632] = 4632, - [4633] = 548, - [4634] = 4634, - [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4638, - [4639] = 1701, - [4640] = 4640, - [4641] = 4641, - [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 398, - [4646] = 4646, - [4647] = 162, - [4648] = 4648, - [4649] = 4649, - [4650] = 1693, - [4651] = 4571, - [4652] = 615, - [4653] = 4546, - [4654] = 163, - [4655] = 2642, - [4656] = 382, - [4657] = 4657, - [4658] = 624, - [4659] = 4659, - [4660] = 4660, - [4661] = 1707, - [4662] = 1708, - [4663] = 4663, - [4664] = 393, - [4665] = 534, - [4666] = 395, - [4667] = 523, - [4668] = 4668, - [4669] = 4669, - [4670] = 356, - [4671] = 4595, - [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 656, - [4677] = 4613, - [4678] = 626, - [4679] = 4679, - [4680] = 634, - [4681] = 665, - [4682] = 4682, - [4683] = 659, - [4684] = 1751, - [4685] = 1755, - [4686] = 537, - [4687] = 4687, - [4688] = 360, - [4689] = 2642, - [4690] = 540, - [4691] = 4531, - [4692] = 317, - [4693] = 4693, - [4694] = 4694, - [4695] = 643, - [4696] = 644, - [4697] = 648, - [4698] = 319, - [4699] = 4699, - [4700] = 4700, - [4701] = 4701, - [4702] = 1765, - [4703] = 1766, - [4704] = 346, - [4705] = 4705, - [4706] = 4706, - [4707] = 342, - [4708] = 155, - [4709] = 156, - [4710] = 688, - [4711] = 689, - [4712] = 693, - [4713] = 614, - [4714] = 617, - [4715] = 618, - [4716] = 654, - [4717] = 2644, - [4718] = 652, - [4719] = 622, - [4720] = 4720, - [4721] = 157, - [4722] = 363, - [4723] = 158, - [4724] = 159, - [4725] = 1655, - [4726] = 160, - [4727] = 4598, - [4728] = 598, - [4729] = 631, - [4730] = 4730, - [4731] = 669, - [4732] = 671, - [4733] = 2655, - [4734] = 675, - [4735] = 2657, - [4736] = 4736, - [4737] = 4737, - [4738] = 4738, - [4739] = 684, - [4740] = 692, - [4741] = 4741, - [4742] = 4562, - [4743] = 535, - [4744] = 541, - [4745] = 4572, - [4746] = 635, - [4747] = 636, - [4748] = 4748, - [4749] = 637, - [4750] = 4750, - [4751] = 680, - [4752] = 613, - [4753] = 2655, - [4754] = 2657, - [4755] = 4755, - [4756] = 1815, - [4757] = 1818, - [4758] = 640, - [4759] = 664, - [4760] = 632, - [4761] = 361, - [4762] = 2663, - [4763] = 639, - [4764] = 638, - [4765] = 547, - [4766] = 1732, - [4767] = 1737, - [4768] = 4768, - [4769] = 682, - [4770] = 2663, - [4771] = 612, - [4772] = 543, - [4773] = 649, - [4774] = 661, - [4775] = 678, - [4776] = 4776, - [4777] = 683, - [4778] = 1763, - [4779] = 686, - [4780] = 161, - [4781] = 611, - [4782] = 621, - [4783] = 625, - [4784] = 628, - [4785] = 647, - [4786] = 655, - [4787] = 657, - [4788] = 660, - [4789] = 641, - [4790] = 670, - [4791] = 681, - [4792] = 676, - [4793] = 598, - [4794] = 4794, - [4795] = 619, - [4796] = 4796, - [4797] = 4797, - [4798] = 4798, - [4799] = 4648, - [4800] = 621, - [4801] = 4801, - [4802] = 682, - [4803] = 313, - [4804] = 4804, - [4805] = 625, - [4806] = 4806, - [4807] = 628, - [4808] = 4808, - [4809] = 2663, - [4810] = 4810, - [4811] = 647, - [4812] = 655, - [4813] = 624, - [4814] = 657, - [4815] = 660, - [4816] = 4816, - [4817] = 4660, - [4818] = 612, - [4819] = 4636, - [4820] = 161, - [4821] = 4637, - [4822] = 649, - [4823] = 4638, - [4824] = 670, - [4825] = 681, - [4826] = 4826, - [4827] = 4641, - [4828] = 2529, - [4829] = 4829, - [4830] = 2966, - [4831] = 4642, - [4832] = 4644, - [4833] = 4833, - [4834] = 669, - [4835] = 661, - [4836] = 671, - [4837] = 635, - [4838] = 680, - [4839] = 1737, - [4840] = 4646, - [4841] = 4841, - [4842] = 664, - [4843] = 636, - [4844] = 676, - [4845] = 639, - [4846] = 346, - [4847] = 641, - [4848] = 613, - [4849] = 637, - [4850] = 4850, - [4851] = 2657, - [4852] = 654, - [4853] = 342, - [4854] = 675, - [4855] = 4855, - [4856] = 4856, - [4857] = 356, - [4858] = 4858, - [4859] = 358, - [4860] = 1770, - [4861] = 1772, - [4862] = 360, - [4863] = 361, - [4864] = 645, - [4865] = 2644, - [4866] = 2941, - [4867] = 637, - [4868] = 1404, - [4869] = 2960, - [4870] = 2642, - [4871] = 4871, - [4872] = 162, - [4873] = 163, - [4874] = 4874, - [4875] = 4875, - [4876] = 4876, - [4877] = 2531, - [4878] = 4878, - [4879] = 4879, - [4880] = 4797, - [4881] = 2397, - [4882] = 655, - [4883] = 4883, - [4884] = 676, - [4885] = 4885, - [4886] = 612, - [4887] = 4887, - [4888] = 631, - [4889] = 4889, - [4890] = 4890, - [4891] = 669, - [4892] = 4892, - [4893] = 654, - [4894] = 4755, - [4895] = 4895, - [4896] = 671, - [4897] = 313, - [4898] = 635, - [4899] = 680, - [4900] = 613, - [4901] = 4901, - [4902] = 626, - [4903] = 4903, - [4904] = 678, - [4905] = 1815, - [4906] = 634, - [4907] = 1818, - [4908] = 4908, - [4909] = 4909, - [4910] = 683, - [4911] = 4841, - [4912] = 4755, - [4913] = 4913, - [4914] = 4914, - [4915] = 649, - [4916] = 4916, - [4917] = 675, - [4918] = 632, - [4919] = 4919, - [4920] = 639, - [4921] = 657, - [4922] = 636, - [4923] = 660, - [4924] = 4924, - [4925] = 665, - [4926] = 4926, - [4927] = 659, - [4928] = 1751, - [4929] = 1755, - [4930] = 4930, - [4931] = 615, - [4932] = 4878, - [4933] = 320, - [4934] = 661, - [4935] = 3383, - [4936] = 4936, - [4937] = 320, - [4938] = 641, - [4939] = 4936, - [4940] = 640, - [4941] = 4936, - [4942] = 643, - [4943] = 686, - [4944] = 644, - [4945] = 648, - [4946] = 684, - [4947] = 632, - [4948] = 4948, - [4949] = 4626, - [4950] = 4669, - [4951] = 4672, - [4952] = 4673, - [4953] = 4693, - [4954] = 4694, - [4955] = 4699, - [4956] = 4700, - [4957] = 4730, - [4958] = 4737, - [4959] = 4738, - [4960] = 4643, - [4961] = 320, - [4962] = 652, - [4963] = 622, - [4964] = 1765, - [4965] = 611, - [4966] = 678, - [4967] = 4720, - [4968] = 621, - [4969] = 1766, - [4970] = 638, - [4971] = 625, - [4972] = 638, - [4973] = 683, - [4974] = 684, - [4975] = 670, - [4976] = 4976, - [4977] = 688, - [4978] = 2655, - [4979] = 689, - [4980] = 4980, - [4981] = 656, - [4982] = 693, - [4983] = 628, - [4984] = 4984, - [4985] = 614, - [4986] = 681, - [4987] = 692, - [4988] = 617, - [4989] = 618, - [4990] = 686, - [4991] = 640, - [4992] = 619, - [4993] = 645, - [4994] = 4994, - [4995] = 4875, - [4996] = 4996, - [4997] = 647, - [4998] = 682, - [4999] = 692, - [5000] = 611, - [5001] = 4879, - [5002] = 631, - [5003] = 5003, - [5004] = 1732, - [5005] = 4901, - [5006] = 5006, - [5007] = 5007, - [5008] = 5008, - [5009] = 5009, - [5010] = 5010, - [5011] = 4885, - [5012] = 615, - [5013] = 5013, - [5014] = 4804, - [5015] = 5015, - [5016] = 5016, - [5017] = 618, - [5018] = 5018, - [5019] = 5019, - [5020] = 5020, - [5021] = 5021, - [5022] = 5022, - [5023] = 5023, - [5024] = 358, - [5025] = 5025, - [5026] = 5026, - [5027] = 5027, - [5028] = 5028, - [5029] = 5029, - [5030] = 360, - [5031] = 5031, - [5032] = 4913, - [5033] = 340, - [5034] = 361, - [5035] = 5035, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 626, - [5040] = 5040, - [5041] = 335, - [5042] = 5042, - [5043] = 2713, - [5044] = 5044, - [5045] = 5045, - [5046] = 5046, - [5047] = 5047, - [5048] = 5048, - [5049] = 4626, - [5050] = 5036, - [5051] = 5051, - [5052] = 341, - [5053] = 5053, - [5054] = 4871, - [5055] = 4914, - [5056] = 4806, - [5057] = 5057, - [5058] = 4669, - [5059] = 4672, - [5060] = 4673, - [5061] = 319, - [5062] = 5062, - [5063] = 5063, - [5064] = 619, - [5065] = 2531, - [5066] = 5066, - [5067] = 4909, - [5068] = 656, - [5069] = 317, - [5070] = 4693, - [5071] = 4694, - [5072] = 4699, - [5073] = 4700, - [5074] = 664, - [5075] = 5075, - [5076] = 336, - [5077] = 4730, - [5078] = 4737, - [5079] = 4738, - [5080] = 4643, - [5081] = 3402, - [5082] = 5082, - [5083] = 3411, - [5084] = 5084, - [5085] = 343, - [5086] = 339, - [5087] = 340, - [5088] = 341, - [5089] = 343, - [5090] = 4876, - [5091] = 4903, - [5092] = 319, - [5093] = 5093, - [5094] = 4919, - [5095] = 5095, - [5096] = 643, - [5097] = 5097, - [5098] = 4883, - [5099] = 2397, - [5100] = 4996, - [5101] = 3383, - [5102] = 4874, - [5103] = 4916, - [5104] = 335, - [5105] = 5105, - [5106] = 5106, - [5107] = 5107, - [5108] = 634, - [5109] = 5109, - [5110] = 644, - [5111] = 5111, - [5112] = 343, - [5113] = 339, - [5114] = 340, - [5115] = 341, - [5116] = 648, - [5117] = 5117, - [5118] = 5118, - [5119] = 4755, - [5120] = 5120, - [5121] = 5121, - [5122] = 5122, - [5123] = 4924, - [5124] = 5020, - [5125] = 4936, - [5126] = 4926, - [5127] = 317, - [5128] = 5128, - [5129] = 4948, - [5130] = 336, - [5131] = 5131, - [5132] = 688, - [5133] = 5133, - [5134] = 5134, - [5135] = 5135, - [5136] = 4808, - [5137] = 5137, - [5138] = 5138, - [5139] = 5139, - [5140] = 5140, - [5141] = 1404, - [5142] = 5142, - [5143] = 2529, - [5144] = 5144, - [5145] = 4895, - [5146] = 4930, - [5147] = 5147, - [5148] = 689, - [5149] = 5149, - [5150] = 665, - [5151] = 317, - [5152] = 5152, - [5153] = 5153, - [5154] = 5154, - [5155] = 5155, - [5156] = 659, - [5157] = 3383, - [5158] = 320, - [5159] = 5159, - [5160] = 4980, - [5161] = 356, - [5162] = 693, - [5163] = 5163, - [5164] = 339, - [5165] = 5025, - [5166] = 319, - [5167] = 4984, - [5168] = 1770, - [5169] = 5169, - [5170] = 614, - [5171] = 5171, - [5172] = 617, - [5173] = 5173, - [5174] = 5174, - [5175] = 1772, - [5176] = 5062, - [5177] = 5177, - [5178] = 317, - [5179] = 3402, - [5180] = 319, - [5181] = 3411, - [5182] = 5182, - [5183] = 317, - [5184] = 320, - [5185] = 399, - [5186] = 5186, - [5187] = 419, - [5188] = 422, - [5189] = 346, - [5190] = 448, - [5191] = 407, - [5192] = 339, - [5193] = 5182, - [5194] = 343, - [5195] = 319, - [5196] = 417, - [5197] = 414, - [5198] = 2529, - [5199] = 423, - [5200] = 445, - [5201] = 3402, - [5202] = 5202, - [5203] = 346, - [5204] = 410, - [5205] = 409, - [5206] = 342, - [5207] = 446, - [5208] = 415, - [5209] = 418, - [5210] = 3383, - [5211] = 346, - [5212] = 404, - [5213] = 5186, - [5214] = 3411, - [5215] = 5215, - [5216] = 402, - [5217] = 5217, - [5218] = 317, - [5219] = 3383, - [5220] = 4936, - [5221] = 152, - [5222] = 5222, - [5223] = 5223, - [5224] = 420, - [5225] = 342, - [5226] = 154, - [5227] = 5182, - [5228] = 341, - [5229] = 2531, - [5230] = 5230, - [5231] = 5231, - [5232] = 5182, - [5233] = 342, - [5234] = 411, - [5235] = 433, - [5236] = 5217, - [5237] = 444, - [5238] = 5238, - [5239] = 152, - [5240] = 412, - [5241] = 340, - [5242] = 153, - [5243] = 5182, - [5244] = 403, - [5245] = 319, - [5246] = 5246, - [5247] = 5247, - [5248] = 1404, - [5249] = 346, - [5250] = 342, - [5251] = 317, - [5252] = 319, - [5253] = 5253, - [5254] = 5254, - [5255] = 5255, - [5256] = 5256, - [5257] = 317, - [5258] = 5258, - [5259] = 319, - [5260] = 356, - [5261] = 152, - [5262] = 358, - [5263] = 153, - [5264] = 154, - [5265] = 353, - [5266] = 5266, - [5267] = 360, - [5268] = 5268, - [5269] = 2521, - [5270] = 1404, - [5271] = 361, - [5272] = 5272, - [5273] = 363, - [5274] = 5256, - [5275] = 5258, - [5276] = 5276, - [5277] = 5277, - [5278] = 5266, - [5279] = 5268, - [5280] = 402, - [5281] = 5281, - [5282] = 155, - [5283] = 156, - [5284] = 403, - [5285] = 5285, - [5286] = 5247, - [5287] = 5287, - [5288] = 404, - [5289] = 5289, - [5290] = 399, - [5291] = 5281, - [5292] = 5285, - [5293] = 348, - [5294] = 407, - [5295] = 409, - [5296] = 410, - [5297] = 411, - [5298] = 412, - [5299] = 414, - [5300] = 418, - [5301] = 419, - [5302] = 420, - [5303] = 152, - [5304] = 422, - [5305] = 433, - [5306] = 444, - [5307] = 445, - [5308] = 446, - [5309] = 5258, - [5310] = 448, - [5311] = 5276, - [5312] = 5277, - [5313] = 423, - [5314] = 415, - [5315] = 417, - [5316] = 5266, - [5317] = 5268, - [5318] = 5276, - [5319] = 5277, - [5320] = 5287, - [5321] = 5285, - [5322] = 5247, - [5323] = 5287, - [5324] = 5324, - [5325] = 5325, - [5326] = 5281, - [5327] = 317, - [5328] = 319, - [5329] = 5329, - [5330] = 5266, - [5331] = 5268, - [5332] = 5287, - [5333] = 5281, - [5334] = 356, - [5335] = 358, - [5336] = 360, - [5337] = 5266, - [5338] = 5268, - [5339] = 361, - [5340] = 5266, - [5341] = 5268, - [5342] = 346, - [5343] = 342, - [5344] = 205, - [5345] = 346, - [5346] = 342, - [5347] = 356, - [5348] = 5254, - [5349] = 358, - [5350] = 360, - [5351] = 361, - [5352] = 354, - [5353] = 5353, - [5354] = 3402, - [5355] = 3411, - [5356] = 352, - [5357] = 5357, - [5358] = 152, - [5359] = 317, - [5360] = 412, - [5361] = 414, - [5362] = 418, - [5363] = 419, - [5364] = 420, - [5365] = 422, - [5366] = 433, - [5367] = 444, - [5368] = 445, - [5369] = 446, - [5370] = 448, - [5371] = 423, - [5372] = 415, - [5373] = 417, - [5374] = 360, - [5375] = 346, - [5376] = 1641, - [5377] = 157, - [5378] = 158, - [5379] = 159, - [5380] = 160, - [5381] = 5381, - [5382] = 5382, - [5383] = 5383, - [5384] = 5384, - [5385] = 361, - [5386] = 5381, - [5387] = 4741, - [5388] = 5384, - [5389] = 5384, - [5390] = 342, - [5391] = 346, - [5392] = 5392, - [5393] = 161, - [5394] = 5329, - [5395] = 1639, - [5396] = 5392, - [5397] = 5397, - [5398] = 5398, - [5399] = 5382, - [5400] = 402, - [5401] = 5401, - [5402] = 370, - [5403] = 342, - [5404] = 153, - [5405] = 5405, - [5406] = 5401, - [5407] = 5381, - [5408] = 155, - [5409] = 5405, - [5410] = 5410, - [5411] = 5411, - [5412] = 353, - [5413] = 162, - [5414] = 346, - [5415] = 163, - [5416] = 152, - [5417] = 5405, - [5418] = 342, - [5419] = 5410, - [5420] = 363, - [5421] = 5381, - [5422] = 5384, - [5423] = 156, - [5424] = 356, - [5425] = 5401, - [5426] = 5405, - [5427] = 403, - [5428] = 5357, - [5429] = 154, - [5430] = 5410, - [5431] = 353, - [5432] = 5384, - [5433] = 5410, - [5434] = 5411, - [5435] = 411, - [5436] = 5401, - [5437] = 5410, - [5438] = 5438, - [5439] = 356, - [5440] = 5401, - [5441] = 5289, - [5442] = 358, - [5443] = 5401, - [5444] = 5410, - [5445] = 363, - [5446] = 358, - [5447] = 5401, - [5448] = 5410, - [5449] = 5401, - [5450] = 4736, - [5451] = 5410, - [5452] = 360, - [5453] = 206, - [5454] = 361, - [5455] = 5401, - [5456] = 5410, - [5457] = 356, - [5458] = 5324, - [5459] = 153, - [5460] = 5401, - [5461] = 5410, - [5462] = 5401, - [5463] = 5410, - [5464] = 358, - [5465] = 5401, - [5466] = 5410, - [5467] = 5325, - [5468] = 360, - [5469] = 361, - [5470] = 1404, - [5471] = 154, - [5472] = 5472, - [5473] = 5410, - [5474] = 5411, - [5475] = 353, - [5476] = 5472, - [5477] = 373, - [5478] = 404, - [5479] = 402, - [5480] = 363, - [5481] = 5411, - [5482] = 319, - [5483] = 5381, - [5484] = 5384, - [5485] = 5410, - [5486] = 399, - [5487] = 403, - [5488] = 5411, - [5489] = 407, - [5490] = 317, - [5491] = 5381, - [5492] = 319, - [5493] = 409, - [5494] = 410, - [5495] = 5381, - [5496] = 5410, - [5497] = 5411, - [5498] = 5498, - [5499] = 158, - [5500] = 5500, - [5501] = 1815, - [5502] = 1818, - [5503] = 1766, - [5504] = 398, - [5505] = 361, - [5506] = 5506, - [5507] = 158, - [5508] = 159, - [5509] = 373, - [5510] = 161, - [5511] = 1404, - [5512] = 370, - [5513] = 373, - [5514] = 1732, - [5515] = 1737, - [5516] = 356, - [5517] = 358, - [5518] = 540, - [5519] = 360, - [5520] = 361, - [5521] = 5506, - [5522] = 5522, - [5523] = 162, - [5524] = 163, - [5525] = 155, - [5526] = 363, - [5527] = 156, - [5528] = 382, - [5529] = 537, - [5530] = 5506, - [5531] = 370, - [5532] = 5506, - [5533] = 5506, - [5534] = 160, - [5535] = 547, - [5536] = 4994, - [5537] = 5506, - [5538] = 5500, - [5539] = 157, - [5540] = 5506, - [5541] = 4798, - [5542] = 393, - [5543] = 158, - [5544] = 5506, - [5545] = 1639, - [5546] = 159, - [5547] = 353, - [5548] = 395, - [5549] = 5506, - [5550] = 5550, - [5551] = 160, - [5552] = 4892, - [5553] = 4796, - [5554] = 5506, - [5555] = 4890, - [5556] = 4908, - [5557] = 5506, - [5558] = 5506, - [5559] = 4889, - [5560] = 152, - [5561] = 5506, - [5562] = 153, - [5563] = 154, - [5564] = 373, - [5565] = 5506, - [5566] = 5506, - [5567] = 5506, - [5568] = 5506, - [5569] = 1751, - [5570] = 5506, - [5571] = 155, - [5572] = 156, - [5573] = 5506, - [5574] = 5506, - [5575] = 5506, - [5576] = 5506, - [5577] = 5506, - [5578] = 5506, - [5579] = 5506, - [5580] = 5506, - [5581] = 5506, - [5582] = 5506, - [5583] = 5506, - [5584] = 5506, - [5585] = 5506, - [5586] = 5506, - [5587] = 5506, - [5588] = 5506, - [5589] = 5506, - [5590] = 5506, - [5591] = 5506, - [5592] = 5506, - [5593] = 5506, - [5594] = 5506, - [5595] = 5506, - [5596] = 5506, - [5597] = 5506, - [5598] = 370, - [5599] = 356, - [5600] = 356, - [5601] = 346, - [5602] = 1404, - [5603] = 1755, - [5604] = 152, - [5605] = 5383, - [5606] = 1655, - [5607] = 1707, - [5608] = 358, - [5609] = 358, - [5610] = 1693, - [5611] = 354, - [5612] = 360, - [5613] = 5613, - [5614] = 5614, - [5615] = 346, - [5616] = 157, - [5617] = 534, - [5618] = 539, - [5619] = 5506, - [5620] = 159, - [5621] = 342, - [5622] = 160, - [5623] = 352, - [5624] = 361, - [5625] = 157, - [5626] = 360, - [5627] = 1641, - [5628] = 342, - [5629] = 1765, - [5630] = 399, - [5631] = 420, - [5632] = 2857, - [5633] = 161, - [5634] = 422, - [5635] = 539, - [5636] = 547, - [5637] = 433, - [5638] = 444, - [5639] = 445, - [5640] = 395, - [5641] = 382, - [5642] = 5357, - [5643] = 403, - [5644] = 5644, - [5645] = 382, - [5646] = 399, - [5647] = 398, - [5648] = 2811, - [5649] = 1169, - [5650] = 370, - [5651] = 400, - [5652] = 5652, - [5653] = 382, - [5654] = 4816, - [5655] = 3169, - [5656] = 5656, - [5657] = 411, - [5658] = 2837, - [5659] = 412, - [5660] = 2842, - [5661] = 5661, - [5662] = 417, - [5663] = 395, - [5664] = 398, - [5665] = 393, - [5666] = 162, - [5667] = 163, - [5668] = 404, - [5669] = 2656, - [5670] = 356, - [5671] = 414, - [5672] = 2632, - [5673] = 373, - [5674] = 1693, - [5675] = 161, - [5676] = 5676, - [5677] = 395, - [5678] = 5678, - [5679] = 404, - [5680] = 385, - [5681] = 407, - [5682] = 5661, - [5683] = 385, - [5684] = 409, - [5685] = 380, - [5686] = 358, - [5687] = 540, - [5688] = 418, - [5689] = 534, - [5690] = 537, - [5691] = 361, - [5692] = 430, - [5693] = 5357, - [5694] = 402, - [5695] = 449, - [5696] = 152, - [5697] = 410, - [5698] = 5383, - [5699] = 1707, - [5700] = 356, - [5701] = 446, - [5702] = 1655, - [5703] = 448, - [5704] = 2644, - [5705] = 5705, - [5706] = 423, - [5707] = 1404, - [5708] = 358, - [5709] = 2663, - [5710] = 393, - [5711] = 152, - [5712] = 360, - [5713] = 415, - [5714] = 361, - [5715] = 398, - [5716] = 598, - [5717] = 162, - [5718] = 2655, - [5719] = 2657, - [5720] = 393, - [5721] = 163, - [5722] = 380, - [5723] = 1404, - [5724] = 360, - [5725] = 419, - [5726] = 2642, - [5727] = 5727, - [5728] = 5728, - [5729] = 5729, - [5730] = 5730, - [5731] = 5730, - [5732] = 5732, - [5733] = 5733, - [5734] = 5734, - [5735] = 5732, - [5736] = 5733, - [5737] = 539, - [5738] = 540, - [5739] = 5739, - [5740] = 5740, - [5741] = 5741, - [5742] = 5742, - [5743] = 5733, - [5744] = 500, - [5745] = 5745, - [5746] = 5739, - [5747] = 5734, - [5748] = 5741, - [5749] = 5749, - [5750] = 5750, - [5751] = 5751, - [5752] = 5752, - [5753] = 5753, - [5754] = 5739, - [5755] = 165, - [5756] = 353, - [5757] = 5757, - [5758] = 5758, - [5759] = 513, - [5760] = 5760, - [5761] = 5742, - [5762] = 5762, - [5763] = 5763, - [5764] = 153, - [5765] = 353, - [5766] = 5732, - [5767] = 2857, - [5768] = 5768, - [5769] = 5769, - [5770] = 5749, - [5771] = 5771, - [5772] = 454, - [5773] = 5773, - [5774] = 5774, - [5775] = 154, - [5776] = 5734, - [5777] = 5741, - [5778] = 5778, - [5779] = 5779, - [5780] = 5780, - [5781] = 5781, - [5782] = 5782, - [5783] = 5783, - [5784] = 4194, - [5785] = 398, - [5786] = 353, - [5787] = 656, - [5788] = 5749, - [5789] = 1186, - [5790] = 509, - [5791] = 5791, - [5792] = 5729, - [5793] = 5730, - [5794] = 5732, - [5795] = 5733, - [5796] = 5739, - [5797] = 5742, - [5798] = 5798, - [5799] = 5799, - [5800] = 664, - [5801] = 5801, - [5802] = 5749, - [5803] = 5803, - [5804] = 5804, - [5805] = 5805, - [5806] = 5758, - [5807] = 382, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 363, - [5812] = 5812, - [5813] = 5729, - [5814] = 5730, - [5815] = 5732, - [5816] = 5739, - [5817] = 5742, - [5818] = 547, - [5819] = 2875, - [5820] = 5820, - [5821] = 5821, - [5822] = 5749, - [5823] = 2811, - [5824] = 669, - [5825] = 671, - [5826] = 2883, - [5827] = 5729, - [5828] = 5828, - [5829] = 675, - [5830] = 5730, - [5831] = 5732, - [5832] = 5739, - [5833] = 5742, - [5834] = 478, - [5835] = 3179, - [5836] = 5836, - [5837] = 5837, - [5838] = 5749, - [5839] = 684, - [5840] = 692, - [5841] = 5798, - [5842] = 5729, - [5843] = 5730, - [5844] = 5732, - [5845] = 5804, - [5846] = 5739, - [5847] = 5742, - [5848] = 5805, - [5849] = 5812, - [5850] = 5749, - [5851] = 5820, - [5852] = 5729, - [5853] = 5730, - [5854] = 5732, - [5855] = 5739, - [5856] = 5742, - [5857] = 5749, - [5858] = 5773, - [5859] = 5729, - [5860] = 5730, - [5861] = 5732, - [5862] = 5739, - [5863] = 637, - [5864] = 5742, - [5865] = 5865, - [5866] = 680, - [5867] = 5749, - [5868] = 613, - [5869] = 5869, - [5870] = 5729, - [5871] = 5730, - [5872] = 5732, - [5873] = 363, - [5874] = 5739, - [5875] = 5875, - [5876] = 5742, - [5877] = 5877, - [5878] = 5749, - [5879] = 631, - [5880] = 632, - [5881] = 5729, - [5882] = 5730, - [5883] = 5732, - [5884] = 5739, - [5885] = 363, - [5886] = 5742, - [5887] = 5887, - [5888] = 5749, - [5889] = 638, - [5890] = 682, - [5891] = 612, - [5892] = 5769, - [5893] = 5729, - [5894] = 5730, - [5895] = 5732, - [5896] = 5739, - [5897] = 5771, - [5898] = 5742, - [5899] = 5774, - [5900] = 5778, - [5901] = 5749, - [5902] = 5779, - [5903] = 5780, - [5904] = 5781, - [5905] = 5783, - [5906] = 5729, - [5907] = 5730, - [5908] = 5732, - [5909] = 649, - [5910] = 5739, - [5911] = 661, - [5912] = 5742, - [5913] = 5749, - [5914] = 678, - [5915] = 5729, - [5916] = 683, - [5917] = 5739, - [5918] = 5742, - [5919] = 5749, - [5920] = 5729, - [5921] = 5739, - [5922] = 5742, - [5923] = 5749, - [5924] = 5729, - [5925] = 5729, - [5926] = 5739, - [5927] = 5749, - [5928] = 686, - [5929] = 611, - [5930] = 5742, - [5931] = 5749, - [5932] = 621, - [5933] = 625, - [5934] = 628, - [5935] = 5742, - [5936] = 5749, - [5937] = 441, - [5938] = 647, - [5939] = 5742, - [5940] = 5749, - [5941] = 655, - [5942] = 657, - [5943] = 660, - [5944] = 5791, - [5945] = 5945, - [5946] = 5946, - [5947] = 5947, - [5948] = 670, - [5949] = 681, - [5950] = 676, - [5951] = 654, - [5952] = 1701, - [5953] = 5953, - [5954] = 5945, - [5955] = 482, - [5956] = 165, - [5957] = 1708, - [5958] = 483, - [5959] = 1815, - [5960] = 1818, - [5961] = 537, - [5962] = 534, - [5963] = 5762, - [5964] = 5763, - [5965] = 5965, - [5966] = 487, - [5967] = 5745, - [5968] = 1732, - [5969] = 1737, - [5970] = 5970, - [5971] = 5971, - [5972] = 1639, - [5973] = 5965, - [5974] = 1641, - [5975] = 1639, - [5976] = 635, - [5977] = 500, - [5978] = 636, - [5979] = 5979, - [5980] = 5357, - [5981] = 5981, - [5982] = 1765, - [5983] = 1766, - [5984] = 5984, - [5985] = 5751, - [5986] = 434, - [5987] = 639, - [5988] = 640, - [5989] = 5946, - [5990] = 641, - [5991] = 393, - [5992] = 4223, - [5993] = 1641, - [5994] = 5760, - [5995] = 5947, - [5996] = 656, - [5997] = 153, - [5998] = 5676, - [5999] = 5999, - [6000] = 6000, - [6001] = 645, - [6002] = 6002, - [6003] = 479, - [6004] = 4736, - [6005] = 5730, - [6006] = 3669, - [6007] = 3696, - [6008] = 500, - [6009] = 1751, - [6010] = 482, - [6011] = 483, - [6012] = 487, - [6013] = 4741, - [6014] = 5760, - [6015] = 1755, - [6016] = 482, - [6017] = 483, - [6018] = 487, - [6019] = 5760, - [6020] = 154, - [6021] = 664, - [6022] = 395, - [6023] = 5729, - [6024] = 5742, - [6025] = 5837, - [6026] = 6026, - [6027] = 6027, - [6028] = 5742, - [6029] = 6029, - [6030] = 1693, - [6031] = 6029, - [6032] = 373, - [6033] = 407, - [6034] = 6034, - [6035] = 5676, - [6036] = 6036, - [6037] = 4994, - [6038] = 6034, - [6039] = 6029, - [6040] = 6040, - [6041] = 502, - [6042] = 6042, - [6043] = 353, - [6044] = 6029, - [6045] = 157, - [6046] = 6046, - [6047] = 6047, - [6048] = 409, - [6049] = 6049, - [6050] = 3669, - [6051] = 370, - [6052] = 410, - [6053] = 152, - [6054] = 404, - [6055] = 363, - [6056] = 501, - [6057] = 160, - [6058] = 4798, - [6059] = 6059, - [6060] = 3696, - [6061] = 6034, - [6062] = 370, - [6063] = 5801, - [6064] = 6034, - [6065] = 6029, - [6066] = 1708, - [6067] = 6067, - [6068] = 411, - [6069] = 5803, - [6070] = 6070, - [6071] = 412, - [6072] = 414, - [6073] = 373, - [6074] = 6040, - [6075] = 6075, - [6076] = 1655, - [6077] = 3696, - [6078] = 1693, - [6079] = 6079, - [6080] = 5799, - [6081] = 6081, - [6082] = 2857, - [6083] = 6083, - [6084] = 6084, - [6085] = 6085, - [6086] = 418, - [6087] = 6084, - [6088] = 6029, - [6089] = 6089, - [6090] = 6090, - [6091] = 482, - [6092] = 6034, - [6093] = 483, - [6094] = 487, - [6095] = 6095, - [6096] = 352, - [6097] = 1707, - [6098] = 419, - [6099] = 420, - [6100] = 158, - [6101] = 1641, - [6102] = 370, - [6103] = 3669, - [6104] = 6029, - [6105] = 422, - [6106] = 433, - [6107] = 444, - [6108] = 445, - [6109] = 5750, - [6110] = 6090, - [6111] = 6095, - [6112] = 6112, - [6113] = 446, - [6114] = 448, - [6115] = 6047, - [6116] = 423, - [6117] = 1732, - [6118] = 415, - [6119] = 6119, - [6120] = 417, - [6121] = 6034, - [6122] = 6122, - [6123] = 6122, - [6124] = 4796, - [6125] = 6029, - [6126] = 1701, - [6127] = 1655, - [6128] = 4890, - [6129] = 6081, - [6130] = 4908, - [6131] = 6084, - [6132] = 6034, - [6133] = 1639, - [6134] = 6134, - [6135] = 1707, - [6136] = 1765, - [6137] = 1766, - [6138] = 6138, - [6139] = 6034, - [6140] = 6029, - [6141] = 159, - [6142] = 6029, - [6143] = 1737, - [6144] = 6034, - [6145] = 6029, - [6146] = 6095, - [6147] = 6112, - [6148] = 6148, - [6149] = 6047, - [6150] = 6090, - [6151] = 6095, - [6152] = 6112, - [6153] = 6029, - [6154] = 6112, - [6155] = 6081, - [6156] = 6084, - [6157] = 6157, - [6158] = 399, - [6159] = 6081, - [6160] = 6084, - [6161] = 363, - [6162] = 1751, - [6163] = 373, - [6164] = 6081, - [6165] = 6084, - [6166] = 354, - [6167] = 6034, - [6168] = 6081, - [6169] = 6084, - [6170] = 157, - [6171] = 6081, - [6172] = 6084, - [6173] = 404, - [6174] = 6081, - [6175] = 6084, - [6176] = 2811, - [6177] = 6081, - [6178] = 6084, - [6179] = 6081, - [6180] = 6084, - [6181] = 6029, - [6182] = 1755, - [6183] = 6081, - [6184] = 6084, - [6185] = 6081, - [6186] = 6084, - [6187] = 5970, - [6188] = 5971, - [6189] = 399, - [6190] = 6081, - [6191] = 6084, - [6192] = 6081, - [6193] = 6084, - [6194] = 6081, - [6195] = 6084, - [6196] = 6081, - [6197] = 6084, - [6198] = 6081, - [6199] = 6084, - [6200] = 6081, - [6201] = 6084, - [6202] = 6202, - [6203] = 6203, - [6204] = 6204, - [6205] = 6067, - [6206] = 6148, - [6207] = 4892, - [6208] = 6203, - [6209] = 6036, - [6210] = 6138, - [6211] = 6034, - [6212] = 6122, - [6213] = 6034, - [6214] = 6034, - [6215] = 160, - [6216] = 6029, - [6217] = 1815, - [6218] = 6029, - [6219] = 6070, - [6220] = 155, - [6221] = 500, - [6222] = 6034, - [6223] = 155, - [6224] = 5752, - [6225] = 6029, - [6226] = 363, - [6227] = 5981, - [6228] = 156, - [6229] = 158, - [6230] = 353, - [6231] = 159, - [6232] = 6204, - [6233] = 6034, - [6234] = 6234, - [6235] = 6047, - [6236] = 156, - [6237] = 6122, - [6238] = 6034, - [6239] = 1818, - [6240] = 6081, - [6241] = 6241, - [6242] = 4889, - [6243] = 6090, - [6244] = 6244, - [6245] = 6234, - [6246] = 6246, - [6247] = 598, - [6248] = 6248, - [6249] = 162, - [6250] = 6250, - [6251] = 6251, - [6252] = 6252, - [6253] = 6253, - [6254] = 6254, - [6255] = 521, - [6256] = 6256, - [6257] = 6257, - [6258] = 537, - [6259] = 534, - [6260] = 6260, - [6261] = 522, - [6262] = 6262, - [6263] = 6263, - [6264] = 6264, - [6265] = 6265, - [6266] = 6266, - [6267] = 6267, - [6268] = 4776, - [6269] = 6269, - [6270] = 6270, - [6271] = 1641, - [6272] = 6119, - [6273] = 539, - [6274] = 6274, - [6275] = 540, - [6276] = 2656, - [6277] = 2632, - [6278] = 163, - [6279] = 3319, - [6280] = 3324, - [6281] = 6244, - [6282] = 6282, - [6283] = 6283, - [6284] = 6284, - [6285] = 6285, - [6286] = 1639, - [6287] = 6287, - [6288] = 6288, - [6289] = 6289, - [6290] = 6290, - [6291] = 6291, - [6292] = 6292, - [6293] = 370, - [6294] = 6294, - [6295] = 6270, - [6296] = 547, - [6297] = 6297, - [6298] = 6298, - [6299] = 6299, - [6300] = 6300, - [6301] = 6301, - [6302] = 398, - [6303] = 6303, - [6304] = 6304, - [6305] = 3097, - [6306] = 6244, - [6307] = 382, - [6308] = 3024, - [6309] = 373, - [6310] = 6310, - [6311] = 6311, - [6312] = 6312, - [6313] = 393, - [6314] = 6314, - [6315] = 6315, - [6316] = 395, - [6317] = 6284, - [6318] = 6318, - [6319] = 161, - [6320] = 6320, - [6321] = 6321, - [6322] = 6322, - [6323] = 6323, - [6324] = 6324, - [6325] = 6325, - [6326] = 6326, - [6327] = 6327, - [6328] = 6328, - [6329] = 6329, - [6330] = 6330, - [6331] = 537, - [6332] = 6332, - [6333] = 3283, - [6334] = 3326, - [6335] = 6335, - [6336] = 398, - [6337] = 6337, - [6338] = 6338, - [6339] = 6339, - [6340] = 6340, - [6341] = 534, - [6342] = 6342, - [6343] = 6343, - [6344] = 6344, - [6345] = 6345, - [6346] = 3036, - [6347] = 6304, - [6348] = 6348, - [6349] = 6349, - [6350] = 398, - [6351] = 6351, - [6352] = 6352, - [6353] = 382, - [6354] = 162, - [6355] = 163, - [6356] = 393, - [6357] = 6270, - [6358] = 395, - [6359] = 543, - [6360] = 6360, - [6361] = 6361, - [6362] = 6362, - [6363] = 6363, - [6364] = 1693, - [6365] = 6365, - [6366] = 3325, - [6367] = 3209, - [6368] = 6368, - [6369] = 6244, - [6370] = 6370, - [6371] = 6371, - [6372] = 6284, - [6373] = 6373, - [6374] = 6374, - [6375] = 6375, - [6376] = 6270, - [6377] = 523, - [6378] = 6298, - [6379] = 6312, - [6380] = 6321, - [6381] = 6322, - [6382] = 6323, - [6383] = 6342, - [6384] = 6343, - [6385] = 6344, - [6386] = 6304, - [6387] = 6387, - [6388] = 6388, - [6389] = 6389, - [6390] = 6390, - [6391] = 6391, - [6392] = 6392, - [6393] = 6393, - [6394] = 4679, - [6395] = 6312, - [6396] = 3017, - [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6400, - [6401] = 6244, - [6402] = 6284, - [6403] = 6403, - [6404] = 6404, - [6405] = 6405, - [6406] = 6270, - [6407] = 6407, - [6408] = 382, - [6409] = 6312, - [6410] = 6321, - [6411] = 6322, - [6412] = 6323, - [6413] = 6342, - [6414] = 6343, - [6415] = 6344, - [6416] = 6304, - [6417] = 537, - [6418] = 1639, - [6419] = 6244, - [6420] = 6284, - [6421] = 373, - [6422] = 6270, - [6423] = 6423, - [6424] = 6424, - [6425] = 6425, - [6426] = 1693, - [6427] = 6312, - [6428] = 6321, - [6429] = 6322, - [6430] = 6323, - [6431] = 6342, - [6432] = 6343, - [6433] = 6344, - [6434] = 6304, - [6435] = 6435, - [6436] = 534, - [6437] = 6244, - [6438] = 1641, - [6439] = 6284, - [6440] = 6440, - [6441] = 6270, - [6442] = 6442, - [6443] = 6443, - [6444] = 6444, - [6445] = 6312, - [6446] = 6321, - [6447] = 6322, - [6448] = 6323, - [6449] = 6342, - [6450] = 6343, - [6451] = 6344, - [6452] = 6304, - [6453] = 6453, - [6454] = 6244, - [6455] = 6455, - [6456] = 6284, - [6457] = 2655, - [6458] = 6458, - [6459] = 6459, - [6460] = 6460, - [6461] = 6270, - [6462] = 6462, - [6463] = 6463, - [6464] = 6464, - [6465] = 6465, - [6466] = 539, - [6467] = 6312, - [6468] = 6321, - [6469] = 6322, - [6470] = 6323, - [6471] = 6342, - [6472] = 6343, - [6473] = 6344, - [6474] = 6304, - [6475] = 540, - [6476] = 6244, - [6477] = 6477, - [6478] = 6284, - [6479] = 6479, - [6480] = 6270, - [6481] = 535, - [6482] = 541, - [6483] = 6312, - [6484] = 6321, - [6485] = 6322, - [6486] = 6323, - [6487] = 6342, - [6488] = 6343, - [6489] = 6344, - [6490] = 6304, - [6491] = 6244, - [6492] = 6284, - [6493] = 6270, - [6494] = 6494, - [6495] = 393, - [6496] = 6425, - [6497] = 4701, - [6498] = 6312, - [6499] = 6321, - [6500] = 6322, - [6501] = 6323, - [6502] = 6342, - [6503] = 6343, - [6504] = 6344, - [6505] = 6304, - [6506] = 6244, - [6507] = 6507, - [6508] = 6284, - [6509] = 6270, - [6510] = 6510, - [6511] = 6511, - [6512] = 6512, - [6513] = 543, - [6514] = 6312, - [6515] = 6321, - [6516] = 6322, - [6517] = 6323, - [6518] = 6342, - [6519] = 6343, - [6520] = 6344, - [6521] = 6304, - [6522] = 6522, - [6523] = 6523, - [6524] = 6524, - [6525] = 6525, - [6526] = 6244, - [6527] = 6284, - [6528] = 6270, - [6529] = 6312, - [6530] = 6321, - [6531] = 6322, - [6532] = 6323, - [6533] = 6342, - [6534] = 6343, - [6535] = 6344, - [6536] = 6304, - [6537] = 6244, - [6538] = 6538, - [6539] = 6284, - [6540] = 3037, - [6541] = 6270, - [6542] = 395, - [6543] = 6543, - [6544] = 6544, - [6545] = 548, - [6546] = 6546, - [6547] = 6312, - [6548] = 6321, - [6549] = 6322, - [6550] = 6323, - [6551] = 6342, - [6552] = 6343, - [6553] = 6344, - [6554] = 6304, - [6555] = 6555, - [6556] = 6556, - [6557] = 6244, - [6558] = 6558, - [6559] = 6284, - [6560] = 6270, - [6561] = 6561, - [6562] = 6312, - [6563] = 6563, - [6564] = 6244, - [6565] = 6321, - [6566] = 6322, - [6567] = 6323, - [6568] = 6342, - [6569] = 6343, - [6570] = 6344, - [6571] = 6304, - [6572] = 6572, - [6573] = 6573, - [6574] = 6244, - [6575] = 6575, - [6576] = 6284, - [6577] = 6270, - [6578] = 548, - [6579] = 6312, - [6580] = 6321, - [6581] = 6322, - [6582] = 6323, - [6583] = 6342, - [6584] = 6343, - [6585] = 6344, - [6586] = 6304, - [6587] = 6321, - [6588] = 6588, - [6589] = 6589, - [6590] = 6244, - [6591] = 537, - [6592] = 6284, - [6593] = 6270, - [6594] = 6322, - [6595] = 6595, - [6596] = 6312, - [6597] = 6321, - [6598] = 6322, - [6599] = 6323, - [6600] = 6342, - [6601] = 6343, - [6602] = 6344, - [6603] = 6304, - [6604] = 6604, - [6605] = 6244, - [6606] = 6284, - [6607] = 6607, - [6608] = 6270, - [6609] = 6609, - [6610] = 6312, - [6611] = 6321, - [6612] = 6322, - [6613] = 6323, - [6614] = 6342, - [6615] = 6343, - [6616] = 6344, - [6617] = 6304, - [6618] = 6323, - [6619] = 6244, - [6620] = 6284, - [6621] = 6270, - [6622] = 6312, - [6623] = 6321, - [6624] = 6322, - [6625] = 6323, - [6626] = 6342, - [6627] = 6343, - [6628] = 6344, - [6629] = 6304, - [6630] = 6244, - [6631] = 6284, - [6632] = 6270, - [6633] = 6312, - [6634] = 6321, - [6635] = 6322, - [6636] = 6323, - [6637] = 6342, - [6638] = 6343, - [6639] = 6344, - [6640] = 6304, - [6641] = 6244, - [6642] = 6284, - [6643] = 6643, - [6644] = 6270, - [6645] = 6244, - [6646] = 6284, - [6647] = 6647, - [6648] = 6270, - [6649] = 6244, - [6650] = 6284, - [6651] = 6270, - [6652] = 6244, - [6653] = 6284, - [6654] = 6270, - [6655] = 3064, - [6656] = 6244, - [6657] = 6284, - [6658] = 6270, - [6659] = 6244, - [6660] = 6284, - [6661] = 6270, - [6662] = 6244, - [6663] = 6284, - [6664] = 6270, - [6665] = 6244, - [6666] = 6284, - [6667] = 6270, - [6668] = 6244, - [6669] = 6284, - [6670] = 6270, - [6671] = 6244, - [6672] = 6284, - [6673] = 6270, - [6674] = 6244, - [6675] = 6284, - [6676] = 6270, - [6677] = 6244, - [6678] = 6284, - [6679] = 6270, - [6680] = 6244, - [6681] = 6284, - [6682] = 6270, - [6683] = 6244, - [6684] = 6284, - [6685] = 6270, - [6686] = 6244, - [6687] = 6284, - [6688] = 6270, - [6689] = 6244, - [6690] = 6284, - [6691] = 6270, - [6692] = 4768, - [6693] = 6244, - [6694] = 6284, - [6695] = 6270, - [6696] = 2663, - [6697] = 6244, - [6698] = 6284, - [6699] = 6270, - [6700] = 6244, - [6701] = 6284, - [6702] = 6270, - [6703] = 6244, - [6704] = 6284, - [6705] = 6270, - [6706] = 6244, - [6707] = 6284, - [6708] = 6270, - [6709] = 6709, - [6710] = 6244, - [6711] = 6284, - [6712] = 6270, - [6713] = 6244, - [6714] = 6284, - [6715] = 6270, - [6716] = 6244, - [6717] = 6284, - [6718] = 6270, - [6719] = 6244, - [6720] = 6284, - [6721] = 6270, - [6722] = 6244, - [6723] = 6284, - [6724] = 6270, - [6725] = 6244, - [6726] = 6284, - [6727] = 6270, - [6728] = 6244, - [6729] = 6284, - [6730] = 6270, - [6731] = 6284, - [6732] = 6270, - [6733] = 6284, - [6734] = 6270, - [6735] = 6284, - [6736] = 6270, - [6737] = 6737, - [6738] = 6738, - [6739] = 6244, - [6740] = 539, - [6741] = 540, - [6742] = 6742, - [6743] = 6743, - [6744] = 6744, - [6745] = 6745, - [6746] = 6310, - [6747] = 6747, - [6748] = 6748, - [6749] = 6749, - [6750] = 6750, - [6751] = 6751, - [6752] = 6752, - [6753] = 6753, - [6754] = 6754, - [6755] = 2642, - [6756] = 6756, - [6757] = 6757, - [6758] = 6297, - [6759] = 6314, - [6760] = 547, - [6761] = 6761, - [6762] = 2657, - [6763] = 6745, - [6764] = 518, - [6765] = 6321, - [6766] = 520, - [6767] = 6322, - [6768] = 6323, - [6769] = 370, - [6770] = 547, - [6771] = 6771, - [6772] = 542, - [6773] = 6244, - [6774] = 523, - [6775] = 363, - [6776] = 2644, - [6777] = 6777, - [6778] = 223, - [6779] = 535, - [6780] = 1655, - [6781] = 1707, - [6782] = 6782, - [6783] = 161, - [6784] = 6075, - [6785] = 6284, - [6786] = 6342, - [6787] = 6342, - [6788] = 6343, - [6789] = 6344, - [6790] = 6343, - [6791] = 6344, - [6792] = 539, - [6793] = 540, - [6794] = 6761, - [6795] = 6795, - [6796] = 6332, - [6797] = 541, - [6798] = 6246, - [6799] = 6304, - [6800] = 6265, - [6801] = 6266, - [6802] = 6782, - [6803] = 6262, - [6804] = 547, - [6805] = 538, - [6806] = 6315, - [6807] = 6246, - [6808] = 6265, - [6809] = 6266, - [6810] = 6782, - [6811] = 3669, - [6812] = 3696, - [6813] = 6813, - [6814] = 6814, - [6815] = 4856, - [6816] = 6274, - [6817] = 6312, - [6818] = 6818, - [6819] = 664, - [6820] = 6820, - [6821] = 6818, - [6822] = 6822, - [6823] = 6823, - [6824] = 6824, - [6825] = 6825, - [6826] = 6826, - [6827] = 675, - [6828] = 6828, - [6829] = 678, - [6830] = 6264, - [6831] = 6831, - [6832] = 683, - [6833] = 1655, - [6834] = 6283, - [6835] = 6835, - [6836] = 6360, - [6837] = 6361, - [6838] = 6838, - [6839] = 6839, - [6840] = 6320, - [6841] = 393, - [6842] = 6256, - [6843] = 6835, - [6844] = 6824, - [6845] = 6824, - [6846] = 6831, - [6847] = 6820, - [6848] = 6818, - [6849] = 6822, - [6850] = 6423, - [6851] = 6823, - [6852] = 6852, - [6853] = 6825, - [6854] = 6826, - [6855] = 6828, - [6856] = 6460, - [6857] = 6285, - [6858] = 1639, - [6859] = 1641, - [6860] = 6362, - [6861] = 1693, - [6862] = 6862, - [6863] = 6363, - [6864] = 6838, - [6865] = 6538, - [6866] = 6543, - [6867] = 6324, - [6868] = 6544, - [6869] = 6835, - [6870] = 6824, - [6871] = 6871, - [6872] = 6831, - [6873] = 6820, - [6874] = 6818, - [6875] = 6822, - [6876] = 6876, - [6877] = 6823, - [6878] = 654, - [6879] = 6825, - [6880] = 6826, - [6881] = 6507, - [6882] = 6326, - [6883] = 6828, - [6884] = 6884, - [6885] = 6327, - [6886] = 6328, - [6887] = 6329, - [6888] = 393, - [6889] = 6546, - [6890] = 6838, - [6891] = 6424, - [6892] = 6892, - [6893] = 6824, - [6894] = 6831, - [6895] = 6895, - [6896] = 6820, - [6897] = 6818, - [6898] = 6822, - [6899] = 6823, - [6900] = 639, - [6901] = 6825, - [6902] = 6826, - [6903] = 4736, - [6904] = 6820, - [6905] = 6828, - [6906] = 6818, - [6907] = 6822, - [6908] = 6876, - [6909] = 6555, - [6910] = 6257, - [6911] = 3017, - [6912] = 4635, - [6913] = 6831, - [6914] = 6462, - [6915] = 6463, - [6916] = 640, - [6917] = 6838, - [6918] = 641, - [6919] = 4705, - [6920] = 6556, - [6921] = 6818, - [6922] = 4741, - [6923] = 6558, - [6924] = 6824, - [6925] = 395, - [6926] = 6561, - [6927] = 6831, - [6928] = 3114, - [6929] = 6929, - [6930] = 6820, - [6931] = 6818, - [6932] = 6822, - [6933] = 6823, - [6934] = 643, - [6935] = 644, - [6936] = 6825, - [6937] = 6826, - [6938] = 648, - [6939] = 6330, - [6940] = 6828, - [6941] = 4640, - [6942] = 6435, - [6943] = 6563, - [6944] = 6944, - [6945] = 6945, - [6946] = 6440, - [6947] = 6572, - [6948] = 6573, - [6949] = 6949, - [6950] = 6575, - [6951] = 6838, - [6952] = 6952, - [6953] = 6588, - [6954] = 6464, - [6955] = 6442, - [6956] = 6824, - [6957] = 1641, - [6958] = 6831, - [6959] = 6510, - [6960] = 6820, - [6961] = 6818, - [6962] = 6822, - [6963] = 6823, - [6964] = 6825, - [6965] = 6826, - [6966] = 6966, - [6967] = 6828, - [6968] = 6335, - [6969] = 6368, - [6970] = 1707, - [6971] = 534, - [6972] = 3115, - [6973] = 6443, - [6974] = 6337, - [6975] = 6370, - [6976] = 6373, - [6977] = 6589, - [6978] = 6604, - [6979] = 6838, - [6980] = 6338, - [6981] = 6374, - [6982] = 6339, - [6983] = 6824, - [6984] = 686, - [6985] = 6831, - [6986] = 6340, - [6987] = 611, - [6988] = 6511, - [6989] = 6820, - [6990] = 6818, - [6991] = 6822, - [6992] = 6992, - [6993] = 6823, - [6994] = 6522, - [6995] = 1707, - [6996] = 6825, - [6997] = 6826, - [6998] = 6998, - [6999] = 632, - [7000] = 6828, - [7001] = 7001, - [7002] = 6387, - [7003] = 6388, - [7004] = 621, - [7005] = 6389, - [7006] = 656, - [7007] = 625, - [7008] = 6838, - [7009] = 6607, - [7010] = 7010, - [7011] = 7011, - [7012] = 628, - [7013] = 6824, - [7014] = 7014, - [7015] = 7015, - [7016] = 6831, - [7017] = 656, - [7018] = 6820, - [7019] = 6818, - [7020] = 6822, - [7021] = 6823, - [7022] = 6871, - [7023] = 6825, - [7024] = 6826, - [7025] = 7025, - [7026] = 6823, - [7027] = 6828, - [7028] = 205, - [7029] = 626, - [7030] = 6895, - [7031] = 647, - [7032] = 6825, - [7033] = 6826, - [7034] = 6375, - [7035] = 6838, - [7036] = 6390, - [7037] = 6824, - [7038] = 7038, - [7039] = 6831, - [7040] = 6444, - [7041] = 7041, - [7042] = 6820, - [7043] = 6818, - [7044] = 6822, - [7045] = 7045, - [7046] = 6823, - [7047] = 547, - [7048] = 6825, - [7049] = 6826, - [7050] = 6828, - [7051] = 6294, - [7052] = 7052, - [7053] = 7014, - [7054] = 676, - [7055] = 3102, - [7056] = 6838, - [7057] = 6391, - [7058] = 6992, - [7059] = 6998, - [7060] = 634, - [7061] = 6824, - [7062] = 5397, - [7063] = 6831, - [7064] = 6820, - [7065] = 6820, - [7066] = 6818, - [7067] = 6822, - [7068] = 6823, - [7069] = 2941, - [7070] = 6825, - [7071] = 6826, - [7072] = 6828, - [7073] = 6392, - [7074] = 638, - [7075] = 665, - [7076] = 6822, - [7077] = 6838, - [7078] = 6643, - [7079] = 6824, - [7080] = 6831, - [7081] = 6647, - [7082] = 6820, - [7083] = 6818, - [7084] = 6822, - [7085] = 6823, - [7086] = 5398, - [7087] = 6825, - [7088] = 6826, - [7089] = 6828, - [7090] = 6828, - [7091] = 6292, - [7092] = 2960, - [7093] = 7093, - [7094] = 6823, - [7095] = 7095, - [7096] = 6838, - [7097] = 6393, - [7098] = 6824, - [7099] = 6831, - [7100] = 6831, - [7101] = 6820, - [7102] = 6818, - [7103] = 6822, - [7104] = 6823, - [7105] = 6825, - [7106] = 6826, - [7107] = 6828, - [7108] = 6453, - [7109] = 3159, - [7110] = 1693, - [7111] = 6838, - [7112] = 6523, - [7113] = 6831, - [7114] = 3160, - [7115] = 6820, - [7116] = 6818, - [7117] = 6822, - [7118] = 6823, - [7119] = 6825, - [7120] = 6826, - [7121] = 6524, - [7122] = 645, - [7123] = 6828, - [7124] = 3036, - [7125] = 6525, - [7126] = 6825, - [7127] = 7127, - [7128] = 6826, - [7129] = 6831, - [7130] = 7130, - [7131] = 688, - [7132] = 6820, - [7133] = 6818, - [7134] = 6822, - [7135] = 689, - [7136] = 6823, - [7137] = 6825, - [7138] = 6826, - [7139] = 547, - [7140] = 6349, - [7141] = 6828, - [7142] = 631, - [7143] = 6737, - [7144] = 693, - [7145] = 614, - [7146] = 7146, - [7147] = 617, - [7148] = 3161, - [7149] = 6831, - [7150] = 6300, - [7151] = 6820, - [7152] = 6818, - [7153] = 6822, - [7154] = 6823, - [7155] = 6838, - [7156] = 618, - [7157] = 6825, - [7158] = 6826, - [7159] = 6351, - [7160] = 6828, - [7161] = 619, - [7162] = 7162, - [7163] = 6738, - [7164] = 3162, - [7165] = 7093, - [7166] = 6250, - [7167] = 6512, - [7168] = 398, - [7169] = 6455, - [7170] = 6251, - [7171] = 6609, - [7172] = 7172, - [7173] = 6371, - [7174] = 7174, - [7175] = 6458, - [7176] = 7176, - [7177] = 6459, - [7178] = 635, - [7179] = 6709, - [7180] = 6838, - [7181] = 636, - [7182] = 6838, - [7183] = 6365, - [7184] = 682, - [7185] = 6352, - [7186] = 6835, - [7187] = 6824, - [7188] = 6595, - [7189] = 615, - [7190] = 6831, - [7191] = 612, - [7192] = 1639, - [7193] = 6820, - [7194] = 6818, - [7195] = 6822, - [7196] = 6871, - [7197] = 6823, - [7198] = 7198, - [7199] = 6825, - [7200] = 6826, - [7201] = 6828, - [7202] = 6299, - [7203] = 3037, - [7204] = 6465, - [7205] = 6282, - [7206] = 624, - [7207] = 7207, - [7208] = 655, - [7209] = 657, - [7210] = 660, - [7211] = 3064, - [7212] = 670, - [7213] = 7213, - [7214] = 6477, - [7215] = 7045, - [7216] = 7216, - [7217] = 681, - [7218] = 537, - [7219] = 204, - [7220] = 6494, - [7221] = 659, - [7222] = 226, - [7223] = 6822, - [7224] = 6820, - [7225] = 1693, - [7226] = 7226, - [7227] = 6742, - [7228] = 7038, - [7229] = 539, - [7230] = 7172, - [7231] = 7231, - [7232] = 540, - [7233] = 7233, - [7234] = 6945, - [7235] = 6871, - [7236] = 7231, - [7237] = 7237, - [7238] = 669, - [7239] = 671, - [7240] = 7240, - [7241] = 7237, - [7242] = 3113, - [7243] = 7243, - [7244] = 7011, - [7245] = 7216, - [7246] = 7246, - [7247] = 7127, - [7248] = 7233, - [7249] = 6823, - [7250] = 6248, - [7251] = 7251, - [7252] = 7252, - [7253] = 6825, - [7254] = 6826, - [7255] = 2966, - [7256] = 6397, - [7257] = 6743, - [7258] = 7015, - [7259] = 6744, - [7260] = 398, - [7261] = 6479, - [7262] = 6398, - [7263] = 571, - [7264] = 637, - [7265] = 382, - [7266] = 6287, - [7267] = 684, - [7268] = 597, - [7269] = 692, - [7270] = 6399, - [7271] = 6400, - [7272] = 6895, - [7273] = 6756, - [7274] = 6345, - [7275] = 7207, - [7276] = 6757, - [7277] = 537, - [7278] = 534, - [7279] = 7226, - [7280] = 7280, - [7281] = 6945, - [7282] = 7282, - [7283] = 7231, - [7284] = 7237, - [7285] = 1655, - [7286] = 7286, - [7287] = 7127, - [7288] = 7288, - [7289] = 7289, - [7290] = 6403, - [7291] = 6404, - [7292] = 7292, - [7293] = 7226, - [7294] = 547, - [7295] = 7295, - [7296] = 7207, - [7297] = 6405, - [7298] = 6288, - [7299] = 6747, - [7300] = 6748, - [7301] = 7207, - [7302] = 6749, - [7303] = 7226, - [7304] = 7213, - [7305] = 6750, - [7306] = 6945, - [7307] = 7231, - [7308] = 7237, - [7309] = 7127, - [7310] = 7310, - [7311] = 6751, - [7312] = 7207, - [7313] = 7243, - [7314] = 7226, - [7315] = 570, - [7316] = 6945, - [7317] = 7231, - [7318] = 7246, - [7319] = 7237, - [7320] = 7127, - [7321] = 7207, - [7322] = 7226, - [7323] = 6945, - [7324] = 7231, - [7325] = 7237, - [7326] = 7127, - [7327] = 7207, - [7328] = 7226, - [7329] = 6828, - [7330] = 6945, - [7331] = 7231, - [7332] = 6752, - [7333] = 7237, - [7334] = 7127, - [7335] = 7207, - [7336] = 539, - [7337] = 540, - [7338] = 7226, - [7339] = 6753, - [7340] = 6945, - [7341] = 7231, - [7342] = 6754, - [7343] = 7237, - [7344] = 7127, - [7345] = 7207, - [7346] = 7346, - [7347] = 7347, - [7348] = 7226, - [7349] = 395, - [7350] = 6945, - [7351] = 7231, - [7352] = 3118, - [7353] = 7237, - [7354] = 7127, - [7355] = 7207, - [7356] = 3119, - [7357] = 7226, - [7358] = 6835, - [7359] = 6945, - [7360] = 7231, - [7361] = 7361, - [7362] = 7237, - [7363] = 7127, - [7364] = 7207, - [7365] = 6828, - [7366] = 6260, - [7367] = 7226, - [7368] = 537, - [7369] = 7369, - [7370] = 6945, - [7371] = 7231, - [7372] = 664, - [7373] = 7237, - [7374] = 7127, - [7375] = 7207, - [7376] = 6838, - [7377] = 7226, - [7378] = 6835, - [7379] = 3120, - [7380] = 6945, - [7381] = 7231, - [7382] = 7237, - [7383] = 7127, - [7384] = 7207, - [7385] = 7226, - [7386] = 6945, - [7387] = 7231, - [7388] = 7093, - [7389] = 7237, - [7390] = 7127, - [7391] = 7207, - [7392] = 649, - [7393] = 7226, - [7394] = 6945, - [7395] = 7231, - [7396] = 7237, - [7397] = 7127, - [7398] = 7207, - [7399] = 7226, - [7400] = 6945, - [7401] = 7231, - [7402] = 7237, - [7403] = 7127, - [7404] = 7207, - [7405] = 7226, - [7406] = 6945, - [7407] = 7231, - [7408] = 7237, - [7409] = 7127, - [7410] = 7207, - [7411] = 7226, - [7412] = 6945, - [7413] = 7231, - [7414] = 7237, - [7415] = 7127, - [7416] = 7207, - [7417] = 7226, - [7418] = 6945, - [7419] = 7231, - [7420] = 7237, - [7421] = 7127, - [7422] = 7207, - [7423] = 7226, - [7424] = 6945, - [7425] = 7231, - [7426] = 7237, - [7427] = 7127, - [7428] = 6252, - [7429] = 6253, - [7430] = 539, - [7431] = 540, - [7432] = 6254, - [7433] = 6269, - [7434] = 3097, - [7435] = 7435, - [7436] = 3024, - [7437] = 652, - [7438] = 661, - [7439] = 6835, - [7440] = 6824, - [7441] = 6263, - [7442] = 7442, - [7443] = 7443, - [7444] = 4750, - [7445] = 382, - [7446] = 6824, - [7447] = 6831, - [7448] = 622, - [7449] = 680, - [7450] = 613, - [7451] = 6290, - [7452] = 7452, - [7453] = 6291, - [7454] = 7454, - [7455] = 4720, - [7456] = 7456, - [7457] = 7457, - [7458] = 7458, - [7459] = 4889, - [7460] = 7460, - [7461] = 7461, - [7462] = 7462, - [7463] = 7463, - [7464] = 7464, - [7465] = 7465, - [7466] = 7466, - [7467] = 537, - [7468] = 4994, - [7469] = 4798, - [7470] = 7470, - [7471] = 7471, - [7472] = 7470, - [7473] = 7473, - [7474] = 7474, - [7475] = 7475, - [7476] = 7476, - [7477] = 7477, - [7478] = 633, - [7479] = 7479, - [7480] = 539, - [7481] = 540, - [7482] = 7482, - [7483] = 7483, - [7484] = 7484, - [7485] = 7485, - [7486] = 537, - [7487] = 3614, - [7488] = 7458, - [7489] = 7466, - [7490] = 547, - [7491] = 3194, - [7492] = 3198, - [7493] = 1707, - [7494] = 7463, - [7495] = 7470, - [7496] = 7496, - [7497] = 7497, - [7498] = 7463, - [7499] = 7458, - [7500] = 7466, - [7501] = 7501, - [7502] = 534, - [7503] = 690, - [7504] = 7504, - [7505] = 7505, - [7506] = 7470, - [7507] = 7507, - [7508] = 7482, - [7509] = 7456, - [7510] = 7510, - [7511] = 4660, - [7512] = 7512, - [7513] = 7513, - [7514] = 7514, - [7515] = 7515, - [7516] = 2632, - [7517] = 7517, - [7518] = 7518, - [7519] = 7519, - [7520] = 7520, - [7521] = 7458, - [7522] = 7522, - [7523] = 7523, - [7524] = 2663, - [7525] = 7466, - [7526] = 7526, - [7527] = 7527, - [7528] = 7515, - [7529] = 7529, - [7530] = 3097, - [7531] = 7531, - [7532] = 7458, - [7533] = 3615, - [7534] = 7534, - [7535] = 7535, - [7536] = 7504, - [7537] = 7523, - [7538] = 7538, - [7539] = 7520, - [7540] = 7540, - [7541] = 7541, - [7542] = 7542, - [7543] = 2644, - [7544] = 7544, - [7545] = 7545, - [7546] = 7546, - [7547] = 7540, - [7548] = 7548, - [7549] = 7549, - [7550] = 7550, - [7551] = 7465, - [7552] = 7552, - [7553] = 3017, - [7554] = 7554, - [7555] = 3024, - [7556] = 7556, - [7557] = 7557, - [7558] = 7558, - [7559] = 7559, - [7560] = 2642, - [7561] = 7561, - [7562] = 7562, - [7563] = 7563, - [7564] = 7564, - [7565] = 7565, - [7566] = 7566, - [7567] = 7567, - [7568] = 3610, - [7569] = 7569, - [7570] = 7465, - [7571] = 7484, - [7572] = 7534, - [7573] = 4796, - [7574] = 658, - [7575] = 7527, - [7576] = 7545, - [7577] = 7577, - [7578] = 7578, - [7579] = 7579, - [7580] = 1655, - [7581] = 7510, - [7582] = 7582, - [7583] = 7534, - [7584] = 7545, - [7585] = 691, - [7586] = 3625, - [7587] = 4890, - [7588] = 7588, - [7589] = 7589, - [7590] = 7461, - [7591] = 4908, - [7592] = 7548, - [7593] = 7554, - [7594] = 7561, - [7595] = 7582, - [7596] = 7596, - [7597] = 7597, - [7598] = 1707, - [7599] = 7599, - [7600] = 7600, - [7601] = 7601, - [7602] = 7527, - [7603] = 7603, - [7604] = 7604, - [7605] = 7605, - [7606] = 1693, - [7607] = 7534, - [7608] = 7529, - [7609] = 7549, - [7610] = 7527, - [7611] = 7523, - [7612] = 4856, - [7613] = 7534, - [7614] = 7614, - [7615] = 7596, - [7616] = 7597, - [7617] = 7556, - [7618] = 7557, - [7619] = 7534, - [7620] = 7620, - [7621] = 3616, - [7622] = 547, - [7623] = 7599, - [7624] = 7534, - [7625] = 7600, - [7626] = 5522, - [7627] = 539, - [7628] = 7476, - [7629] = 2655, - [7630] = 7630, - [7631] = 540, - [7632] = 7463, - [7633] = 7470, - [7634] = 7556, - [7635] = 547, - [7636] = 7535, - [7637] = 7557, - [7638] = 1796, - [7639] = 2129, - [7640] = 687, - [7641] = 2657, - [7642] = 7458, - [7643] = 7601, - [7644] = 7644, - [7645] = 7603, - [7646] = 7466, - [7647] = 7504, - [7648] = 7501, - [7649] = 2656, - [7650] = 7650, - [7651] = 7578, - [7652] = 7620, - [7653] = 7653, - [7654] = 7654, - [7655] = 7655, - [7656] = 7656, - [7657] = 7654, - [7658] = 7505, - [7659] = 7466, - [7660] = 7497, - [7661] = 7661, - [7662] = 534, - [7663] = 7663, - [7664] = 7579, - [7665] = 1655, - [7666] = 7457, - [7667] = 7663, - [7668] = 1693, - [7669] = 7479, - [7670] = 7661, - [7671] = 7513, - [7672] = 7514, - [7673] = 7463, - [7674] = 7527, - [7675] = 7470, - [7676] = 7526, - [7677] = 7655, - [7678] = 7656, - [7679] = 7531, - [7680] = 7550, - [7681] = 7470, - [7682] = 7567, - [7683] = 7569, - [7684] = 7458, - [7685] = 206, - [7686] = 3064, - [7687] = 673, - [7688] = 7462, - [7689] = 7496, - [7690] = 7522, - [7691] = 7558, - [7692] = 7460, - [7693] = 7693, - [7694] = 7464, - [7695] = 7474, - [7696] = 7471, - [7697] = 7475, - [7698] = 7466, - [7699] = 7699, - [7700] = 7463, - [7701] = 7701, - [7702] = 4892, - [7703] = 7518, - [7704] = 7650, - [7705] = 7705, - [7706] = 7706, - [7707] = 7463, - [7708] = 7708, - [7709] = 7588, - [7710] = 3036, - [7711] = 7512, - [7712] = 7712, - [7713] = 7713, - [7714] = 7714, - [7715] = 7715, - [7716] = 7716, - [7717] = 7717, - [7718] = 7718, - [7719] = 7719, - [7720] = 7720, - [7721] = 7715, - [7722] = 7722, - [7723] = 7723, - [7724] = 7724, - [7725] = 7725, - [7726] = 7720, - [7727] = 7727, - [7728] = 7715, - [7729] = 7729, - [7730] = 7730, - [7731] = 7731, - [7732] = 7732, - [7733] = 7733, - [7734] = 7734, - [7735] = 7735, - [7736] = 7715, - [7737] = 7715, - [7738] = 7738, - [7739] = 7720, - [7740] = 7740, - [7741] = 7729, - [7742] = 7712, - [7743] = 7715, - [7744] = 7744, - [7745] = 7720, - [7746] = 7734, - [7747] = 7712, - [7748] = 7748, - [7749] = 7749, - [7750] = 7749, - [7751] = 7751, - [7752] = 7714, - [7753] = 7753, - [7754] = 7754, - [7755] = 7755, - [7756] = 7756, - [7757] = 7734, - [7758] = 7753, - [7759] = 7759, - [7760] = 7715, - [7761] = 7712, - [7762] = 7754, - [7763] = 7714, - [7764] = 7764, - [7765] = 7719, - [7766] = 7766, - [7767] = 7714, - [7768] = 7715, - [7769] = 7719, - [7770] = 7770, - [7771] = 7722, - [7772] = 7748, - [7773] = 7749, - [7774] = 7753, - [7775] = 7754, - [7776] = 2655, - [7777] = 7777, - [7778] = 7722, - [7779] = 7720, - [7780] = 7720, - [7781] = 7754, - [7782] = 2657, - [7783] = 7715, - [7784] = 7730, - [7785] = 7734, - [7786] = 2642, - [7787] = 7733, - [7788] = 7734, - [7789] = 7712, - [7790] = 7790, - [7791] = 7722, - [7792] = 7732, - [7793] = 7715, - [7794] = 7794, - [7795] = 7749, - [7796] = 7719, - [7797] = 7797, - [7798] = 7753, - [7799] = 7733, - [7800] = 7749, - [7801] = 7731, - [7802] = 7802, - [7803] = 7803, - [7804] = 7754, - [7805] = 7797, - [7806] = 7806, - [7807] = 7720, - [7808] = 7734, - [7809] = 7715, - [7810] = 7756, - [7811] = 7811, - [7812] = 478, - [7813] = 7733, - [7814] = 7731, - [7815] = 7730, - [7816] = 7816, - [7817] = 7714, - [7818] = 7790, - [7819] = 7819, - [7820] = 7820, - [7821] = 7719, - [7822] = 7722, - [7823] = 7716, - [7824] = 7715, - [7825] = 7717, - [7826] = 7712, - [7827] = 7725, - [7828] = 7828, - [7829] = 7829, - [7830] = 7811, - [7831] = 7831, - [7832] = 7725, - [7833] = 7738, - [7834] = 7715, - [7835] = 7835, - [7836] = 7714, - [7837] = 7719, - [7838] = 7715, - [7839] = 7715, - [7840] = 7715, - [7841] = 7722, - [7842] = 7720, - [7843] = 7712, - [7844] = 7749, - [7845] = 7753, - [7846] = 478, - [7847] = 7734, - [7848] = 7725, - [7849] = 7715, - [7850] = 7730, - [7851] = 7715, - [7852] = 7852, - [7853] = 7740, - [7854] = 7754, - [7855] = 7855, - [7856] = 7749, - [7857] = 7715, - [7858] = 7740, - [7859] = 7712, - [7860] = 7730, - [7861] = 7794, - [7862] = 7862, - [7863] = 7749, - [7864] = 7803, - [7865] = 7715, - [7866] = 7722, - [7867] = 7806, - [7868] = 7733, - [7869] = 7738, - [7870] = 7870, - [7871] = 7715, - [7872] = 7872, - [7873] = 7803, - [7874] = 7714, - [7875] = 7875, - [7876] = 7876, - [7877] = 7719, - [7878] = 7722, - [7879] = 7730, - [7880] = 7880, - [7881] = 7719, - [7882] = 7722, - [7883] = 7730, - [7884] = 7720, - [7885] = 7715, - [7886] = 7803, - [7887] = 7730, - [7888] = 7806, - [7889] = 2663, - [7890] = 7734, - [7891] = 7722, - [7892] = 7712, - [7893] = 7733, - [7894] = 7714, - [7895] = 7715, - [7896] = 7729, - [7897] = 7719, - [7898] = 7720, - [7899] = 7722, - [7900] = 7900, - [7901] = 7803, - [7902] = 7806, - [7903] = 7725, - [7904] = 7734, - [7905] = 7715, - [7906] = 7720, - [7907] = 7749, - [7908] = 7819, - [7909] = 7738, - [7910] = 7715, - [7911] = 7749, - [7912] = 7712, - [7913] = 7734, - [7914] = 7740, - [7915] = 7803, - [7916] = 7806, - [7917] = 7715, - [7918] = 7749, - [7919] = 7753, - [7920] = 7712, - [7921] = 7727, - [7922] = 7790, - [7923] = 7754, - [7924] = 7714, - [7925] = 2644, - [7926] = 7719, - [7927] = 7715, - [7928] = 7749, - [7929] = 7803, - [7930] = 7806, - [7931] = 7715, - [7932] = 7720, - [7933] = 7712, - [7934] = 7749, - [7935] = 7753, - [7936] = 7754, - [7937] = 7794, - [7938] = 7725, - [7939] = 7715, - [7940] = 7738, - [7941] = 7754, - [7942] = 7803, - [7943] = 7806, - [7944] = 7944, - [7945] = 7722, - [7946] = 7712, - [7947] = 7880, - [7948] = 7715, - [7949] = 7819, - [7950] = 7749, - [7951] = 7730, - [7952] = 7715, - [7953] = 7797, - [7954] = 7803, - [7955] = 7806, - [7956] = 7722, - [7957] = 7819, - [7958] = 7958, - [7959] = 7715, - [7960] = 7731, - [7961] = 7715, - [7962] = 7753, - [7963] = 7963, - [7964] = 7720, - [7965] = 7734, - [7966] = 7966, - [7967] = 7732, - [7968] = 7806, - [7969] = 7749, - [7970] = 7729, - [7971] = 7712, - [7972] = 7753, - [7973] = 7715, - [7974] = 7733, - [7975] = 7749, - [7976] = 7754, - [7977] = 7725, - [7978] = 7715, - [7979] = 7712, - [7980] = 7803, - [7981] = 7806, - [7982] = 7749, - [7983] = 7754, - [7984] = 7862, - [7985] = 7803, - [7986] = 7986, - [7987] = 7987, - [7988] = 7722, - [7989] = 7754, - [7990] = 7990, - [7991] = 7759, - [7992] = 7722, - [7993] = 7803, - [7994] = 7806, - [7995] = 7734, - [7996] = 7996, - [7997] = 7997, - [7998] = 7998, - [7999] = 7999, - [8000] = 7733, - [8001] = 7712, - [8002] = 7733, - [8003] = 7806, - [8004] = 7740, - [8005] = 8005, - [8006] = 7803, - [8007] = 7806, - [8008] = 8008, - [8009] = 7714, - [8010] = 7753, - [8011] = 7749, - [8012] = 7715, - [8013] = 7749, - [8014] = 8014, - [8015] = 7719, - [8016] = 7820, - [8017] = 7722, - [8018] = 7714, - [8019] = 7803, - [8020] = 7806, - [8021] = 7719, - [8022] = 7722, - [8023] = 7722, - [8024] = 513, - [8025] = 7725, - [8026] = 8026, - [8027] = 7725, - [8028] = 8028, - [8029] = 7803, - [8030] = 7806, - [8031] = 7740, - [8032] = 7715, - [8033] = 7749, - [8034] = 7715, - [8035] = 8035, - [8036] = 7749, - [8037] = 7715, - [8038] = 7712, - [8039] = 7803, - [8040] = 7749, - [8041] = 7754, - [8042] = 8028, - [8043] = 7744, - [8044] = 7730, - [8045] = 7753, - [8046] = 7715, - [8047] = 7722, - [8048] = 7803, - [8049] = 7473, - [8050] = 8050, - [8051] = 7790, - [8052] = 7777, - [8053] = 7730, - [8054] = 7720, - [8055] = 7715, - [8056] = 7734, - [8057] = 7803, - [8058] = 8058, - [8059] = 7998, - [8060] = 7715, - [8061] = 7811, - [8062] = 7754, - [8063] = 513, - [8064] = 7797, - [8065] = 8065, - [8066] = 7803, - [8067] = 7803, - [8068] = 7803, - [8069] = 7803, - [8070] = 7803, - [8071] = 7803, - [8072] = 7803, - [8073] = 7803, - [8074] = 7803, - [8075] = 7803, - [8076] = 7803, - [8077] = 7803, - [8078] = 7803, - [8079] = 7803, - [8080] = 7803, - [8081] = 7803, - [8082] = 7803, - [8083] = 7803, - [8084] = 7803, - [8085] = 7803, - [8086] = 7803, - [8087] = 7803, - [8088] = 7803, - [8089] = 7803, - [8090] = 7803, - [8091] = 7803, - [8092] = 7803, - [8093] = 7803, - [8094] = 7803, - [8095] = 7803, - [8096] = 7803, - [8097] = 7730, - [8098] = 8098, - [8099] = 7958, - [8100] = 8100, - [8101] = 7733, - [8102] = 8102, - [8103] = 7727, - [8104] = 8104, - [8105] = 8105, - [8106] = 7862, - [8107] = 7712, - [8108] = 7749, - [8109] = 7753, - [8110] = 7715, - [8111] = 513, - [8112] = 7730, - [8113] = 7797, - [8114] = 7966, - [8115] = 7713, - [8116] = 7714, - [8117] = 7712, - [8118] = 7731, - [8119] = 7999, - [8120] = 8120, - [8121] = 8121, - [8122] = 8120, - [8123] = 7719, - [8124] = 7749, - [8125] = 8125, - [8126] = 7714, - [8127] = 8127, - [8128] = 7719, - [8129] = 7749, - [8130] = 7715, - [8131] = 7753, - [8132] = 7748, - [8133] = 7770, - [8134] = 7958, - [8135] = 7997, - [8136] = 7722, - [8137] = 7777, - [8138] = 7725, - [8139] = 7806, - [8140] = 7794, - [8141] = 7740, - [8142] = 8142, - [8143] = 7740, - [8144] = 7727, - [8145] = 7730, - [8146] = 7754, - [8147] = 8142, - [8148] = 7722, - [8149] = 8149, - [8150] = 478, - [8151] = 7749, - [8152] = 8152, - [8153] = 8026, - [8154] = 7996, - [8155] = 7715, - [8156] = 7740, - [8157] = 8035, - [8158] = 7754, - [8159] = 8159, - [8160] = 7720, - [8161] = 7715, - [8162] = 7715, - [8163] = 7754, - [8164] = 7753, - [8165] = 7715, - [8166] = 7777, - [8167] = 7852, - [8168] = 7715, - [8169] = 7997, - [8170] = 7714, - [8171] = 7740, - [8172] = 7715, - [8173] = 7803, - [8174] = 8174, -}; - -static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'%', '&'}, {'*', ','}, {'.', '9'}, {'?', 'Z'}, {'\\', '\\'}, - {'_', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_2[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '9'}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, - {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange sym_identifier_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'%', '%'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, - {'~', 0x10ffff}, -}; - -static TSCharacterRange sym_identifier_character_set_2[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, - {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - -static TSCharacterRange sym_long_flag_identifier_character_set_1[] = { - {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, - {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, - {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, - {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, - {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, - {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, - {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, - {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, - {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, - {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, - {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, - {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, - {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, - {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, - {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, - {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, - {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, - {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, - {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, - {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, + [anon_sym_randomfloat] = { + .visible = true, + .named = true, + }, + [anon_sym_randomint] = { + .visible = true, + .named = true, + }, + [anon_sym_randomuuid] = { + .visible = true, + .named = true, + }, + [anon_sym_rolldown] = { + .visible = true, + .named = true, + }, + [anon_sym_rollleft] = { + .visible = true, + .named = true, + }, + [anon_sym_rollright] = { + .visible = true, + .named = true, + }, + [anon_sym_rollup] = { + .visible = true, + .named = true, + }, + [anon_sym_scopealiases] = { + .visible = true, + .named = true, + }, + [anon_sym_scopecommands] = { + .visible = true, + .named = true, + }, + [anon_sym_scopeengine_DASHstats] = { + .visible = true, + .named = true, + }, + [anon_sym_scopeexterns] = { + .visible = true, + .named = true, + }, + [anon_sym_scopemodules] = { + .visible = true, + .named = true, + }, + [anon_sym_scopevariables] = { + .visible = true, + .named = true, + }, + [anon_sym_seqchar] = { + .visible = true, + .named = true, + }, + [anon_sym_seqdate] = { + .visible = true, + .named = true, + }, + [anon_sym_skipuntil] = { + .visible = true, + .named = true, + }, + [anon_sym_skipwhile] = { + .visible = true, + .named = true, + }, + [anon_sym_splitcell_DASHpath] = { + .visible = true, + .named = true, + }, + [anon_sym_splitchars] = { + .visible = true, + .named = true, + }, + [anon_sym_splitcolumn] = { + .visible = true, + .named = true, + }, + [anon_sym_splitlist] = { + .visible = true, + .named = true, + }, + [anon_sym_splitrow] = { + .visible = true, + .named = true, + }, + [anon_sym_splitwords] = { + .visible = true, + .named = true, + }, + [anon_sym_storcreate] = { + .visible = true, + .named = true, + }, + [anon_sym_stordelete] = { + .visible = true, + .named = true, + }, + [anon_sym_storexport] = { + .visible = true, + .named = true, + }, + [anon_sym_storimport] = { + .visible = true, + .named = true, + }, + [anon_sym_storinsert] = { + .visible = true, + .named = true, + }, + [anon_sym_storopen] = { + .visible = true, + .named = true, + }, + [anon_sym_storreset] = { + .visible = true, + .named = true, + }, + [anon_sym_storupdate] = { + .visible = true, + .named = true, + }, + [anon_sym_strbexpand] = { + .visible = true, + .named = true, + }, + [anon_sym_strcamel_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strcapitalize] = { + .visible = true, + .named = true, + }, + [anon_sym_strcompress] = { + .visible = true, + .named = true, + }, + [anon_sym_strcontains] = { + .visible = true, + .named = true, + }, + [anon_sym_strdecompress] = { + .visible = true, + .named = true, + }, + [anon_sym_strdedent] = { + .visible = true, + .named = true, + }, + [anon_sym_strdeunicode] = { + .visible = true, + .named = true, + }, + [anon_sym_strdistance] = { + .visible = true, + .named = true, + }, + [anon_sym_strdowncase] = { + .visible = true, + .named = true, + }, + [anon_sym_strends_DASHwith] = { + .visible = true, + .named = true, + }, + [anon_sym_strexpand] = { + .visible = true, + .named = true, + }, + [anon_sym_strindent] = { + .visible = true, + .named = true, + }, + [anon_sym_strindex_DASHof] = { + .visible = true, + .named = true, + }, + [anon_sym_strjoin] = { + .visible = true, + .named = true, + }, + [anon_sym_strkebab_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strlength] = { + .visible = true, + .named = true, + }, + [anon_sym_strpascal_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strreplace] = { + .visible = true, + .named = true, + }, + [anon_sym_strreverse] = { + .visible = true, + .named = true, + }, + [anon_sym_strscreaming_DASHsnake_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strsimilarity] = { + .visible = true, + .named = true, + }, + [anon_sym_strsnake_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strstarts_DASHwith] = { + .visible = true, + .named = true, + }, + [anon_sym_strstats] = { + .visible = true, + .named = true, + }, + [anon_sym_strsubstring] = { + .visible = true, + .named = true, + }, + [anon_sym_strtitle_DASHcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strtrim] = { + .visible = true, + .named = true, + }, + [anon_sym_strupcase] = { + .visible = true, + .named = true, + }, + [anon_sym_strwrap] = { + .visible = true, + .named = true, + }, + [anon_sym_syscpu] = { + .visible = true, + .named = true, + }, + [anon_sym_sysdisks] = { + .visible = true, + .named = true, + }, + [anon_sym_syshost] = { + .visible = true, + .named = true, + }, + [anon_sym_sysmem] = { + .visible = true, + .named = true, + }, + [anon_sym_sysnet] = { + .visible = true, + .named = true, + }, + [anon_sym_systemp] = { + .visible = true, + .named = true, + }, + [anon_sym_sysusers] = { + .visible = true, + .named = true, + }, + [anon_sym_takeuntil] = { + .visible = true, + .named = true, + }, + [anon_sym_takewhile] = { + .visible = true, + .named = true, + }, + [anon_sym_termquery] = { + .visible = true, + .named = true, + }, + [anon_sym_termsize] = { + .visible = true, + .named = true, + }, + [anon_sym_tobz2] = { + .visible = true, + .named = true, + }, + [anon_sym_tocsv] = { + .visible = true, + .named = true, + }, + [anon_sym_togz] = { + .visible = true, + .named = true, + }, + [anon_sym_tohtml] = { + .visible = true, + .named = true, + }, + [anon_sym_tojson] = { + .visible = true, + .named = true, + }, + [anon_sym_tomd] = { + .visible = true, + .named = true, + }, + [anon_sym_tomsgpack] = { + .visible = true, + .named = true, + }, + [anon_sym_tomsgpackz] = { + .visible = true, + .named = true, + }, + [anon_sym_tonuon] = { + .visible = true, + .named = true, + }, + [anon_sym_toparquet] = { + .visible = true, + .named = true, + }, + [anon_sym_toplist] = { + .visible = true, + .named = true, + }, + [anon_sym_topng] = { + .visible = true, + .named = true, + }, + [anon_sym_totext] = { + .visible = true, + .named = true, + }, + [anon_sym_totoml] = { + .visible = true, + .named = true, + }, + [anon_sym_totsv] = { + .visible = true, + .named = true, + }, + [anon_sym_toxml] = { + .visible = true, + .named = true, + }, + [anon_sym_toxz] = { + .visible = true, + .named = true, + }, + [anon_sym_toyaml] = { + .visible = true, + .named = true, + }, + [anon_sym_tozst] = { + .visible = true, + .named = true, + }, + [anon_sym_updatecells] = { + .visible = true, + .named = true, + }, + [anon_sym_urlbuild_DASHquery] = { + .visible = true, + .named = true, + }, + [anon_sym_urldecode] = { + .visible = true, + .named = true, + }, + [anon_sym_urlencode] = { + .visible = true, + .named = true, + }, + [anon_sym_urljoin] = { + .visible = true, + .named = true, + }, + [anon_sym_urlparse] = { + .visible = true, + .named = true, + }, + [anon_sym_urlsplit_DASHquery] = { + .visible = true, + .named = true, + }, + [anon_sym_viewfiles] = { + .visible = true, + .named = true, + }, + [anon_sym_viewir] = { + .visible = true, + .named = true, + }, + [anon_sym_viewsource] = { + .visible = true, + .named = true, + }, + [anon_sym_viewspan] = { + .visible = true, + .named = true, + }, + [anon_sym_err_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_out_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_e_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_o_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_err_PLUSout_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_out_PLUSerr_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_o_PLUSe_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_e_PLUSo_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_err_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_out_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_e_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_o_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_err_PLUSout_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_out_PLUSerr_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_o_PLUSe_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_e_PLUSo_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ2] = { + .visible = true, + .named = false, + }, + [sym_short_flag_identifier] = { + .visible = true, + .named = true, + }, + [sym__unquoted_naive] = { + .visible = true, + .named = true, + }, + [aux_sym_unquoted_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_unquoted_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_unquoted_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_unquoted_token4] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_token3] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_token4] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_token3] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_token4] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_with_expr_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_with_expr_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_with_expr_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token1] = { + .visible = false, + .named = false, + }, + [sym_raw_string_begin] = { + .visible = true, + .named = true, + }, + [sym_raw_string_content] = { + .visible = true, + .named = true, + }, + [sym_raw_string_end] = { + .visible = true, + .named = true, + }, + [sym_nu_script] = { + .visible = true, + .named = true, + }, + [sym_shebang] = { + .visible = true, + .named = true, + }, + [sym__block_body_statement] = { + .visible = false, + .named = true, + }, + [sym__declaration] = { + .visible = false, + .named = true, + }, + [sym_decl_alias] = { + .visible = true, + .named = true, + }, + [sym_stmt_let] = { + .visible = true, + .named = true, + }, + [sym_stmt_mut] = { + .visible = true, + .named = true, + }, + [sym_stmt_const] = { + .visible = true, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym__assignment_pattern] = { + .visible = false, + .named = true, + }, + [sym__mutable_assignment_pattern] = { + .visible = false, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym_pipeline] = { + .visible = true, + .named = true, + }, + [sym__block_body_statement_parenthesized] = { + .visible = false, + .named = true, + }, + [sym__declaration_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_decl_alias_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_stmt_let_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_stmt_mut_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_stmt_const_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_assignment_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__assignment_pattern_parenthesized] = { + .visible = false, + .named = true, + }, + [sym__mutable_assignment_pattern_parenthesized] = { + .visible = false, + .named = true, + }, + [sym__statement_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_pipeline_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__block_body] = { + .visible = false, + .named = true, + }, + [sym_cmd_identifier] = { + .visible = true, + .named = true, + }, + [sym__command_name] = { + .visible = false, + .named = true, + }, + [sym__variable_name] = { + .visible = false, + .named = true, + }, + [aux_sym__pipe_separator] = { + .visible = false, + .named = false, + }, + [sym_decl_def] = { + .visible = true, + .named = true, + }, + [sym_decl_export] = { + .visible = true, + .named = true, + }, + [sym_decl_extern] = { + .visible = true, + .named = true, + }, + [sym_decl_module] = { + .visible = true, + .named = true, + }, + [sym_decl_use] = { + .visible = true, + .named = true, + }, + [sym_returns] = { + .visible = true, + .named = true, + }, + [sym__one_type] = { + .visible = false, + .named = true, + }, + [sym__multiple_types] = { + .visible = false, + .named = true, + }, + [sym_parameter_parens] = { + .visible = true, + .named = true, + }, + [sym_parameter_bracks] = { + .visible = true, + .named = true, + }, + [sym_parameter_pipes] = { + .visible = true, + .named = true, + }, + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym__param_name] = { + .visible = false, + .named = true, + }, + [sym_param_type] = { + .visible = true, + .named = true, + }, + [sym_param_value] = { + .visible = true, + .named = true, + }, + [sym__type_annotation] = { + .visible = false, + .named = true, + }, + [sym__all_type] = { + .visible = false, + .named = true, + }, + [sym_flat_type] = { + .visible = true, + .named = true, + }, + [sym_collection_type] = { + .visible = true, + .named = true, + }, + [sym_list_type] = { + .visible = true, + .named = true, + }, + [sym_param_cmd] = { + .visible = true, + .named = true, + }, + [sym_param_rest] = { + .visible = true, + .named = true, + }, + [sym_param_opt] = { + .visible = true, + .named = true, + }, + [sym_param_long_flag] = { + .visible = true, + .named = true, + }, + [sym_flag_capsule] = { + .visible = true, + .named = true, + }, + [sym_param_short_flag] = { + .visible = true, + .named = true, + }, + [sym__ctrl_statement] = { + .visible = false, + .named = true, + }, + [sym__ctrl_expression] = { + .visible = false, + .named = true, + }, + [sym__ctrl_expression_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_ctrl_for] = { + .visible = true, + .named = true, + }, + [sym_ctrl_loop] = { + .visible = true, + .named = true, + }, + [sym_ctrl_error] = { + .visible = true, + .named = true, + }, + [sym_ctrl_while] = { + .visible = true, + .named = true, + }, + [sym_ctrl_do] = { + .visible = true, + .named = true, + }, + [sym_ctrl_do_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_ctrl_if] = { + .visible = true, + .named = true, + }, + [sym_ctrl_if_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_ctrl_match] = { + .visible = true, + .named = true, + }, + [sym_match_arm] = { + .visible = true, + .named = true, + }, + [sym_default_arm] = { + .visible = true, + .named = true, + }, + [sym_match_pattern] = { + .visible = true, + .named = true, + }, + [sym__match_pattern] = { + .visible = false, + .named = true, + }, + [sym_match_guard] = { + .visible = true, + .named = true, + }, + [sym__match_pattern_expression] = { + .visible = false, + .named = true, + }, + [sym__match_pattern_value] = { + .visible = false, + .named = true, + }, + [sym__match_pattern_list] = { + .visible = true, + .named = true, + }, + [sym__match_pattern_rest] = { + .visible = true, + .named = true, + }, + [sym__match_pattern_record] = { + .visible = true, + .named = true, + }, + [sym__match_pattern_record_variable] = { + .visible = false, + .named = true, + }, + [sym_ctrl_try] = { + .visible = true, + .named = true, + }, + [sym_ctrl_try_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_ctrl_return] = { + .visible = true, + .named = true, + }, + [sym_pipe_element] = { + .visible = true, + .named = true, + }, + [sym_pipe_element_parenthesized] = { + .visible = true, + .named = true, + }, + [sym_stmt_source] = { + .visible = true, + .named = true, + }, + [sym_stmt_register] = { + .visible = true, + .named = true, + }, + [sym__stmt_hide] = { + .visible = false, + .named = true, + }, + [sym_hide_mod] = { + .visible = true, + .named = true, + }, + [sym_hide_env] = { + .visible = true, + .named = true, + }, + [sym__stmt_overlay] = { + .visible = false, + .named = true, + }, + [sym_overlay_list] = { + .visible = true, + .named = true, + }, + [sym_overlay_hide] = { + .visible = true, + .named = true, + }, + [sym_overlay_new] = { + .visible = true, + .named = true, + }, + [sym_overlay_use] = { + .visible = true, + .named = true, + }, + [sym_scope_pattern] = { + .visible = true, + .named = true, + }, + [sym_wild_card] = { + .visible = true, + .named = true, + }, + [sym_command_list] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym__blosure] = { + .visible = false, + .named = true, + }, + [sym__where_predicate_lhs] = { + .visible = false, + .named = true, + }, + [sym_where_command] = { + .visible = true, + .named = true, + }, + [sym_where_command_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__binary_predicate] = { + .visible = false, + .named = true, + }, + [sym__binary_predicate_parenthesized] = { + .visible = false, + .named = true, + }, + [sym__predicate] = { + .visible = false, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + }, + [sym__expression_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_expr_unary] = { + .visible = true, + .named = true, + }, + [sym__expr_unary_minus] = { + .visible = false, + .named = true, + }, + [sym_expr_binary] = { + .visible = true, + .named = true, + }, + [sym_expr_binary_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__expr_binary_expression] = { + .visible = false, + .named = true, + }, + [sym__expr_binary_expression_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_expr_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__spread_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__expr_parenthesized_immediate] = { + .visible = true, + .named = true, + }, + [sym__parenthesized_body] = { + .visible = false, + .named = true, + }, + [sym_val_range] = { + .visible = true, + .named = true, + }, + [sym__val_range] = { + .visible = false, + .named = true, + }, + [sym__val_range_with_end] = { + .visible = false, + .named = true, + }, + [sym__immediate_decimal] = { + .visible = false, + .named = true, + }, + [sym__value] = { + .visible = false, + .named = true, + }, + [sym_val_nothing] = { + .visible = true, + .named = true, + }, + [sym_val_bool] = { + .visible = true, + .named = true, + }, + [sym__spread_variable] = { + .visible = true, + .named = true, + }, + [sym_val_variable] = { + .visible = true, + .named = true, + }, + [sym_val_number] = { + .visible = true, + .named = true, + }, + [sym__val_number_decimal] = { + .visible = false, + .named = true, + }, + [sym__val_number] = { + .visible = false, + .named = true, + }, + [sym_val_duration] = { + .visible = true, + .named = true, + }, + [sym_val_filesize] = { + .visible = true, + .named = true, + }, + [sym_val_binary] = { + .visible = true, + .named = true, + }, + [sym_val_string] = { + .visible = true, + .named = true, + }, + [sym__raw_str] = { + .visible = false, + .named = true, + }, + [sym__str_double_quotes] = { + .visible = false, + .named = true, + }, + [sym_val_interpolated] = { + .visible = true, + .named = true, + }, + [sym__inter_single_quotes] = { + .visible = false, + .named = true, + }, + [sym__inter_double_quotes] = { + .visible = false, + .named = true, + }, + [sym_expr_interpolated] = { + .visible = true, + .named = true, + }, + [sym_val_list] = { + .visible = true, + .named = true, + }, + [sym__spread_list] = { + .visible = true, + .named = true, + }, + [sym_list_body] = { + .visible = true, + .named = true, + }, + [sym_val_entry] = { + .visible = true, + .named = true, + }, + [sym_val_record] = { + .visible = true, + .named = true, + }, + [sym__spread_record] = { + .visible = true, + .named = true, + }, + [sym_record_body] = { + .visible = true, + .named = true, + }, + [sym_record_entry] = { + .visible = true, + .named = true, + }, + [sym__record_key] = { + .visible = true, + .named = true, + }, + [sym_val_table] = { + .visible = true, + .named = true, + }, + [sym_val_closure] = { + .visible = true, + .named = true, + }, + [sym_cell_path] = { + .visible = true, + .named = true, + }, + [sym_path] = { + .visible = true, + .named = true, + }, + [sym_env_var] = { + .visible = true, + .named = true, + }, + [sym_command] = { + .visible = true, + .named = true, + }, + [sym__command_parenthesized] = { + .visible = true, + .named = true, + }, + [sym__cmd_arg] = { + .visible = false, + .named = true, + }, + [sym_redirection] = { + .visible = true, + .named = true, + }, + [sym__flags_parenthesized] = { + .visible = false, + .named = true, + }, + [sym_short_flag] = { + .visible = true, + .named = true, + }, + [sym_long_flag] = { + .visible = true, + .named = true, + }, + [sym_unquoted] = { + .visible = true, + .named = true, + }, + [sym__unquoted_in_list] = { + .visible = true, + .named = true, + }, + [sym__unquoted_in_record] = { + .visible = true, + .named = true, + }, + [sym__unquoted_with_expr] = { + .visible = true, + .named = true, + }, + [sym__unquoted_in_list_with_expr] = { + .visible = true, + .named = true, + }, + [sym__unquoted_in_record_with_expr] = { + .visible = true, + .named = true, + }, + [sym__unquoted_anonymous_prefix] = { + .visible = false, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [aux_sym_shebang_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipeline_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipeline_parenthesized_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__block_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__block_body_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_decl_def_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiple_types_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiple_types_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_parens_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_collection_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_do_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_do_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_do_parenthesized_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_do_parenthesized_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_do_parenthesized_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_ctrl_match_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__match_pattern_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__match_pattern_record_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_element_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_element_parenthesized_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_command_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__parenthesized_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__parenthesized_body_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_val_binary_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__str_double_quotes_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__inter_single_quotes_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__inter_double_quotes_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_list_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_val_table_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_cell_path_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_command_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__command_parenthesized_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_with_expr_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_list_with_expr_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__unquoted_in_record_with_expr_repeat1] = { + .visible = false, + .named = false, + }, + [anon_alias_sym__head] = { + .visible = true, + .named = false, + }, + [anon_alias_sym__prefix] = { + .visible = true, + .named = false, + }, + [anon_alias_sym__unit] = { + .visible = true, + .named = false, + }, + [anon_alias_sym_quoted] = { + .visible = true, + .named = false, + }, +}; + +enum ts_field_identifiers { + field_arg = 1, + field_arg_spread = 2, + field_arg_str = 3, + field_body = 4, + field_catch_branch = 5, + field_cmd = 6, + field_command = 7, + field_command_list = 8, + field_completion = 9, + field_condition = 10, + field_ctrl_break = 11, + field_ctrl_continue = 12, + field_default_pattern = 13, + field_digit = 14, + field_dollar_name = 15, + field_else_block = 16, + field_else_branch = 17, + field_end = 18, + field_entry = 19, + field_error_record = 20, + field_expr = 21, + field_expression = 22, + field_file = 23, + field_file_path = 24, + field_flag = 25, + field_flag_capsule = 26, + field_flat_type = 27, + field_head = 28, + field_import_pattern = 29, + field_inner = 30, + field_item = 31, + field_iterable = 32, + field_key = 33, + field_lhs = 34, + field_looping_var = 35, + field_module = 36, + field_name = 37, + field_opr = 38, + field_overlay = 39, + field_param_long_flag = 40, + field_param_name = 41, + field_param_optional = 42, + field_param_rest = 43, + field_param_short_flag = 44, + field_param_value = 45, + field_parameters = 46, + field_pattern = 47, + field_plugin = 48, + field_predicate = 49, + field_protected_path = 50, + field_quoted_name = 51, + field_raw_path = 52, + field_redir = 53, + field_rename = 54, + field_rest = 55, + field_return_type = 56, + field_rhs = 57, + field_row = 58, + field_scrutinee = 59, + field_signature = 60, + field_spread = 61, + field_start = 62, + field_step = 63, + field_then_branch = 64, + field_try_branch = 65, + field_type = 66, + field_unit = 67, + field_unquoted_name = 68, + field_value = 69, + field_var_name = 70, + field_variable = 71, + field_wildcard = 72, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_arg] = "arg", + [field_arg_spread] = "arg_spread", + [field_arg_str] = "arg_str", + [field_body] = "body", + [field_catch_branch] = "catch_branch", + [field_cmd] = "cmd", + [field_command] = "command", + [field_command_list] = "command_list", + [field_completion] = "completion", + [field_condition] = "condition", + [field_ctrl_break] = "ctrl_break", + [field_ctrl_continue] = "ctrl_continue", + [field_default_pattern] = "default_pattern", + [field_digit] = "digit", + [field_dollar_name] = "dollar_name", + [field_else_block] = "else_block", + [field_else_branch] = "else_branch", + [field_end] = "end", + [field_entry] = "entry", + [field_error_record] = "error_record", + [field_expr] = "expr", + [field_expression] = "expression", + [field_file] = "file", + [field_file_path] = "file_path", + [field_flag] = "flag", + [field_flag_capsule] = "flag_capsule", + [field_flat_type] = "flat_type", + [field_head] = "head", + [field_import_pattern] = "import_pattern", + [field_inner] = "inner", + [field_item] = "item", + [field_iterable] = "iterable", + [field_key] = "key", + [field_lhs] = "lhs", + [field_looping_var] = "looping_var", + [field_module] = "module", + [field_name] = "name", + [field_opr] = "opr", + [field_overlay] = "overlay", + [field_param_long_flag] = "param_long_flag", + [field_param_name] = "param_name", + [field_param_optional] = "param_optional", + [field_param_rest] = "param_rest", + [field_param_short_flag] = "param_short_flag", + [field_param_value] = "param_value", + [field_parameters] = "parameters", + [field_pattern] = "pattern", + [field_plugin] = "plugin", + [field_predicate] = "predicate", + [field_protected_path] = "protected_path", + [field_quoted_name] = "quoted_name", + [field_raw_path] = "raw_path", + [field_redir] = "redir", + [field_rename] = "rename", + [field_rest] = "rest", + [field_return_type] = "return_type", + [field_rhs] = "rhs", + [field_row] = "row", + [field_scrutinee] = "scrutinee", + [field_signature] = "signature", + [field_spread] = "spread", + [field_start] = "start", + [field_step] = "step", + [field_then_branch] = "then_branch", + [field_try_branch] = "try_branch", + [field_type] = "type", + [field_unit] = "unit", + [field_unquoted_name] = "unquoted_name", + [field_value] = "value", + [field_var_name] = "var_name", + [field_variable] = "variable", + [field_wildcard] = "wildcard", +}; + +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 = 1}, + [8] = {.index = 10, .length = 1}, + [9] = {.index = 11, .length = 1}, + [10] = {.index = 12, .length = 5}, + [11] = {.index = 17, .length = 1}, + [12] = {.index = 18, .length = 1}, + [13] = {.index = 19, .length = 3}, + [15] = {.index = 22, .length = 1}, + [16] = {.index = 23, .length = 1}, + [17] = {.index = 24, .length = 1}, + [18] = {.index = 25, .length = 2}, + [19] = {.index = 27, .length = 1}, + [20] = {.index = 28, .length = 6}, + [21] = {.index = 34, .length = 1}, + [22] = {.index = 35, .length = 1}, + [23] = {.index = 35, .length = 1}, + [24] = {.index = 36, .length = 1}, + [25] = {.index = 37, .length = 1}, + [26] = {.index = 37, .length = 1}, + [27] = {.index = 38, .length = 1}, + [28] = {.index = 38, .length = 1}, + [29] = {.index = 39, .length = 3}, + [30] = {.index = 42, .length = 3}, + [32] = {.index = 45, .length = 4}, + [33] = {.index = 49, .length = 1}, + [34] = {.index = 50, .length = 1}, + [35] = {.index = 51, .length = 2}, + [36] = {.index = 53, .length = 2}, + [37] = {.index = 55, .length = 6}, + [38] = {.index = 61, .length = 1}, + [39] = {.index = 61, .length = 1}, + [40] = {.index = 62, .length = 2}, + [41] = {.index = 64, .length = 5}, + [42] = {.index = 69, .length = 3}, + [43] = {.index = 72, .length = 1}, + [44] = {.index = 73, .length = 4}, + [45] = {.index = 77, .length = 4}, + [46] = {.index = 81, .length = 3}, + [47] = {.index = 84, .length = 2}, + [48] = {.index = 86, .length = 1}, + [49] = {.index = 87, .length = 1}, + [51] = {.index = 88, .length = 1}, + [52] = {.index = 89, .length = 2}, + [53] = {.index = 91, .length = 2}, + [54] = {.index = 93, .length = 6}, + [55] = {.index = 99, .length = 1}, + [56] = {.index = 100, .length = 2}, + [57] = {.index = 102, .length = 2}, + [58] = {.index = 104, .length = 1}, + [59] = {.index = 105, .length = 4}, + [60] = {.index = 109, .length = 1}, + [61] = {.index = 110, .length = 1}, + [62] = {.index = 111, .length = 1}, + [63] = {.index = 112, .length = 1}, + [64] = {.index = 113, .length = 2}, + [65] = {.index = 113, .length = 2}, + [66] = {.index = 115, .length = 3}, + [67] = {.index = 118, .length = 1}, + [68] = {.index = 119, .length = 3}, + [69] = {.index = 122, .length = 2}, + [70] = {.index = 124, .length = 1}, + [71] = {.index = 125, .length = 1}, + [72] = {.index = 126, .length = 2}, + [73] = {.index = 128, .length = 7}, + [74] = {.index = 135, .length = 1}, + [75] = {.index = 136, .length = 1}, + [76] = {.index = 137, .length = 2}, + [77] = {.index = 139, .length = 5}, + [78] = {.index = 144, .length = 1}, + [79] = {.index = 145, .length = 1}, + [80] = {.index = 146, .length = 1}, + [81] = {.index = 147, .length = 10}, + [82] = {.index = 157, .length = 3}, + [83] = {.index = 157, .length = 3}, + [84] = {.index = 160, .length = 2}, + [85] = {.index = 160, .length = 2}, + [86] = {.index = 160, .length = 2}, + [87] = {.index = 160, .length = 2}, + [88] = {.index = 162, .length = 4}, + [89] = {.index = 166, .length = 4}, + [90] = {.index = 170, .length = 2}, + [91] = {.index = 172, .length = 4}, + [92] = {.index = 176, .length = 4}, + [93] = {.index = 180, .length = 1}, + [94] = {.index = 181, .length = 1}, + [95] = {.index = 182, .length = 1}, + [96] = {.index = 183, .length = 1}, + [97] = {.index = 183, .length = 1}, + [98] = {.index = 184, .length = 1}, + [99] = {.index = 185, .length = 5}, + [100] = {.index = 190, .length = 5}, + [101] = {.index = 195, .length = 1}, + [102] = {.index = 195, .length = 1}, + [103] = {.index = 196, .length = 1}, + [105] = {.index = 197, .length = 2}, + [106] = {.index = 199, .length = 1}, + [107] = {.index = 200, .length = 4}, + [108] = {.index = 204, .length = 1}, + [109] = {.index = 205, .length = 1}, + [110] = {.index = 206, .length = 1}, + [111] = {.index = 207, .length = 2}, + [112] = {.index = 209, .length = 1}, + [113] = {.index = 206, .length = 1}, + [114] = {.index = 210, .length = 2}, + [115] = {.index = 212, .length = 1}, + [116] = {.index = 213, .length = 2}, + [117] = {.index = 215, .length = 2}, + [118] = {.index = 217, .length = 1}, + [119] = {.index = 210, .length = 2}, + [120] = {.index = 218, .length = 2}, + [121] = {.index = 218, .length = 2}, + [122] = {.index = 218, .length = 2}, + [123] = {.index = 218, .length = 2}, + [124] = {.index = 220, .length = 2}, + [125] = {.index = 222, .length = 1}, + [126] = {.index = 223, .length = 9}, + [127] = {.index = 232, .length = 2}, + [128] = {.index = 234, .length = 1}, + [129] = {.index = 235, .length = 2}, + [130] = {.index = 237, .length = 1}, + [131] = {.index = 238, .length = 2}, + [132] = {.index = 238, .length = 2}, + [133] = {.index = 238, .length = 2}, + [134] = {.index = 238, .length = 2}, + [135] = {.index = 240, .length = 4}, + [136] = {.index = 244, .length = 5}, + [137] = {.index = 249, .length = 5}, + [138] = {.index = 254, .length = 2}, + [139] = {.index = 256, .length = 1}, + [140] = {.index = 257, .length = 5}, + [141] = {.index = 262, .length = 2}, + [142] = {.index = 262, .length = 2}, + [143] = {.index = 264, .length = 6}, + [144] = {.index = 270, .length = 3}, + [145] = {.index = 273, .length = 3}, + [146] = {.index = 276, .length = 6}, + [147] = {.index = 282, .length = 2}, + [148] = {.index = 282, .length = 2}, + [149] = {.index = 284, .length = 2}, + [150] = {.index = 286, .length = 1}, + [151] = {.index = 287, .length = 2}, + [152] = {.index = 289, .length = 1}, + [153] = {.index = 290, .length = 2}, + [154] = {.index = 292, .length = 2}, + [155] = {.index = 294, .length = 3}, + [156] = {.index = 294, .length = 3}, + [157] = {.index = 297, .length = 3}, + [158] = {.index = 297, .length = 3}, + [159] = {.index = 300, .length = 5}, + [160] = {.index = 305, .length = 3}, + [161] = {.index = 308, .length = 3}, + [162] = {.index = 311, .length = 1}, + [163] = {.index = 312, .length = 1}, + [164] = {.index = 313, .length = 1}, + [165] = {.index = 314, .length = 4}, + [166] = {.index = 318, .length = 3}, + [167] = {.index = 318, .length = 3}, + [168] = {.index = 318, .length = 3}, + [169] = {.index = 318, .length = 3}, + [170] = {.index = 318, .length = 3}, + [171] = {.index = 318, .length = 3}, + [172] = {.index = 318, .length = 3}, + [173] = {.index = 318, .length = 3}, + [174] = {.index = 321, .length = 6}, + [175] = {.index = 327, .length = 5}, + [176] = {.index = 332, .length = 1}, + [177] = {.index = 332, .length = 1}, + [178] = {.index = 333, .length = 2}, + [179] = {.index = 335, .length = 1}, + [180] = {.index = 336, .length = 2}, + [181] = {.index = 338, .length = 2}, + [182] = {.index = 340, .length = 3}, + [183] = {.index = 343, .length = 6}, + [184] = {.index = 349, .length = 2}, + [185] = {.index = 351, .length = 3}, + [186] = {.index = 354, .length = 2}, + [188] = {.index = 356, .length = 2}, + [189] = {.index = 358, .length = 2}, + [190] = {.index = 360, .length = 2}, + [191] = {.index = 362, .length = 9}, + [192] = {.index = 371, .length = 9}, + [193] = {.index = 380, .length = 3}, + [194] = {.index = 380, .length = 3}, + [195] = {.index = 383, .length = 5}, + [196] = {.index = 388, .length = 5}, + [197] = {.index = 393, .length = 5}, + [198] = {.index = 398, .length = 1}, + [199] = {.index = 399, .length = 2}, + [200] = {.index = 401, .length = 1}, + [201] = {.index = 402, .length = 2}, + [202] = {.index = 404, .length = 1}, + [203] = {.index = 405, .length = 2}, + [204] = {.index = 407, .length = 2}, + [205] = {.index = 409, .length = 1}, + [206] = {.index = 410, .length = 4}, + [207] = {.index = 414, .length = 4}, + [208] = {.index = 418, .length = 6}, + [209] = {.index = 424, .length = 3}, + [210] = {.index = 427, .length = 6}, + [211] = {.index = 433, .length = 2}, + [212] = {.index = 435, .length = 1}, + [213] = {.index = 436, .length = 2}, + [214] = {.index = 438, .length = 2}, + [215] = {.index = 440, .length = 6}, + [216] = {.index = 446, .length = 3}, + [217] = {.index = 449, .length = 2}, + [218] = {.index = 451, .length = 3}, + [219] = {.index = 454, .length = 3}, + [220] = {.index = 457, .length = 3}, + [221] = {.index = 460, .length = 3}, + [222] = {.index = 463, .length = 3}, + [223] = {.index = 466, .length = 3}, + [224] = {.index = 469, .length = 3}, + [225] = {.index = 472, .length = 2}, + [226] = {.index = 474, .length = 2}, + [227] = {.index = 476, .length = 9}, + [228] = {.index = 485, .length = 5}, + [229] = {.index = 490, .length = 5}, + [230] = {.index = 495, .length = 5}, + [231] = {.index = 500, .length = 5}, + [232] = {.index = 505, .length = 2}, + [233] = {.index = 507, .length = 1}, + [234] = {.index = 508, .length = 4}, + [235] = {.index = 512, .length = 2}, + [236] = {.index = 512, .length = 2}, + [237] = {.index = 514, .length = 3}, + [238] = {.index = 517, .length = 2}, + [239] = {.index = 519, .length = 3}, + [240] = {.index = 522, .length = 3}, + [241] = {.index = 525, .length = 3}, + [242] = {.index = 528, .length = 3}, + [243] = {.index = 531, .length = 3}, + [244] = {.index = 534, .length = 3}, + [245] = {.index = 537, .length = 3}, + [246] = {.index = 540, .length = 3}, + [247] = {.index = 543, .length = 3}, + [248] = {.index = 546, .length = 2}, + [249] = {.index = 548, .length = 2}, + [250] = {.index = 550, .length = 5}, + [251] = {.index = 555, .length = 5}, + [252] = {.index = 560, .length = 5}, + [253] = {.index = 565, .length = 3}, + [254] = {.index = 565, .length = 3}, + [255] = {.index = 568, .length = 3}, + [256] = {.index = 571, .length = 3}, + [257] = {.index = 574, .length = 3}, + [258] = {.index = 577, .length = 3}, + [259] = {.index = 580, .length = 3}, + [260] = {.index = 583, .length = 3}, + [261] = {.index = 586, .length = 3}, + [262] = {.index = 589, .length = 3}, + [263] = {.index = 592, .length = 2}, + [264] = {.index = 594, .length = 5}, + [265] = {.index = 599, .length = 3}, + [266] = {.index = 602, .length = 3}, + [267] = {.index = 605, .length = 3}, + [268] = {.index = 608, .length = 3}, + [269] = {.index = 611, .length = 3}, + [270] = {.index = 614, .length = 3}, + [271] = {.index = 617, .length = 3}, + [272] = {.index = 620, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_ctrl_break, 0}, + [1] = + {field_ctrl_continue, 0}, + [2] = + {field_head, 0}, + [3] = + {field_lhs, 0, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_rhs, 0, .inherited = true}, + [6] = + {field_ctrl_break, 0, .inherited = true}, + {field_ctrl_continue, 0, .inherited = true}, + [8] = + {field_expr, 0, .inherited = true}, + [9] = + {field_unquoted_name, 0}, + [10] = + {field_quoted_name, 0}, + [11] = + {field_var_name, 0}, + [12] = + {field_dollar_name, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_type, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + {field_var_name, 1, .inherited = true}, + [17] = + {field_dollar_name, 0}, + [18] = + {field_body, 1}, + [19] = + {field_name, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [22] = + {field_module, 1}, + [23] = + {field_item, 0}, + [24] = + {field_spread, 0}, + [25] = + {field_name, 0, .inherited = true}, + {field_spread, 0}, + [27] = + {field_entry, 0}, + [28] = + {field_arg, 0, .inherited = true}, + {field_arg_spread, 0, .inherited = true}, + {field_arg_str, 0, .inherited = true}, + {field_flag, 0, .inherited = true}, + {field_head, 0, .inherited = true}, + {field_redir, 0, .inherited = true}, + [34] = + {field_name, 1}, + [35] = + {field_end, 1}, + [36] = + {field_try_branch, 1}, + [37] = + {field_file, 1}, + [38] = + {field_plugin, 1}, + [39] = + {field_module, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [42] = + {field_dollar_name, 1, .inherited = true}, + {field_var_name, 1, .inherited = true}, + {field_variable, 1}, + [45] = + {field_lhs, 1, .inherited = true}, + {field_opr, 1, .inherited = true}, + {field_predicate, 1}, + {field_rhs, 1, .inherited = true}, + [49] = + {field_predicate, 1}, + [50] = + {field_expr, 0}, + [51] = + {field_value, 1}, + {field_variable, 0}, + [53] = + {field_head, 0}, + {field_head, 1}, + [55] = + {field_arg, 1, .inherited = true}, + {field_arg_spread, 1, .inherited = true}, + {field_arg_str, 1, .inherited = true}, + {field_flag, 1, .inherited = true}, + {field_head, 0}, + {field_redir, 1, .inherited = true}, + [61] = + {field_start, 0}, + [62] = + {field_unit, 1}, + {field_value, 0}, + [64] = + {field_dollar_name, 2, .inherited = true}, + {field_name, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + {field_value, 2, .inherited = true}, + {field_var_name, 2, .inherited = true}, + [69] = + {field_name, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [72] = + {field_module, 2}, + [73] = + {field_name, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_signature, 2}, + {field_unquoted_name, 1, .inherited = true}, + [77] = + {field_body, 2}, + {field_name, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [81] = + {field_command, 0}, + {field_quoted_name, 0, .inherited = true}, + {field_unquoted_name, 0, .inherited = true}, + [84] = + {field_import_pattern, 2}, + {field_module, 1}, + [86] = + {field_wildcard, 0}, + [87] = + {field_command_list, 0}, + [88] = + {field_entry, 1}, + [89] = + {field_entry, 0, .inherited = true}, + {field_entry, 1}, + [91] = + {field_entry, 0, .inherited = true}, + {field_entry, 1, .inherited = true}, + [93] = + {field_arg, 1, .inherited = true}, + {field_arg_spread, 1, .inherited = true}, + {field_arg_str, 1, .inherited = true}, + {field_flag, 1, .inherited = true}, + {field_head, 1, .inherited = true}, + {field_redir, 1, .inherited = true}, + [99] = + {field_error_record, 2}, + [100] = + {field_body, 2}, + {field_condition, 1}, + [102] = + {field_condition, 1}, + {field_then_branch, 2}, + [104] = + {field_param_name, 0}, + [105] = + {field_param_name, 0, .inherited = true}, + {field_param_optional, 0, .inherited = true}, + {field_param_rest, 0, .inherited = true}, + {field_param_short_flag, 0, .inherited = true}, + [109] = + {field_param_rest, 0}, + [110] = + {field_param_optional, 0}, + [111] = + {field_param_long_flag, 0}, + [112] = + {field_param_short_flag, 0}, + [113] = + {field_plugin, 1}, + {field_signature, 2}, + [115] = + {field_dollar_name, 2, .inherited = true}, + {field_var_name, 2, .inherited = true}, + {field_variable, 2}, + [118] = + {field_overlay, 2}, + [119] = + {field_overlay, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [122] = + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [124] = + {field_digit, 0}, + [125] = + {field_expr, 1, .inherited = true}, + [126] = + {field_expr, 0, .inherited = true}, + {field_expr, 1, .inherited = true}, + [128] = + {field_arg, 2, .inherited = true}, + {field_arg_spread, 2, .inherited = true}, + {field_arg_str, 2, .inherited = true}, + {field_flag, 2, .inherited = true}, + {field_head, 0}, + {field_head, 1}, + {field_redir, 2, .inherited = true}, + [135] = + {field_arg, 0}, + [136] = + {field_arg_spread, 0}, + [137] = + {field_arg_spread, 0}, + {field_name, 0, .inherited = true}, + [139] = + {field_arg, 1, .inherited = true}, + {field_arg_spread, 1, .inherited = true}, + {field_arg_str, 1, .inherited = true}, + {field_flag, 1, .inherited = true}, + {field_redir, 1, .inherited = true}, + [144] = + {field_redir, 0}, + [145] = + {field_flag, 0}, + [146] = + {field_arg_str, 0}, + [147] = + {field_arg, 0, .inherited = true}, + {field_arg, 1, .inherited = true}, + {field_arg_spread, 0, .inherited = true}, + {field_arg_spread, 1, .inherited = true}, + {field_arg_str, 0, .inherited = true}, + {field_arg_str, 1, .inherited = true}, + {field_flag, 0, .inherited = true}, + {field_flag, 1, .inherited = true}, + {field_redir, 0, .inherited = true}, + {field_redir, 1, .inherited = true}, + [157] = + {field_lhs, 0}, + {field_opr, 1}, + {field_rhs, 2}, + [160] = + {field_end, 2}, + {field_start, 0}, + [162] = + {field_name, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_signature, 3}, + {field_unquoted_name, 2, .inherited = true}, + [166] = + {field_body, 3}, + {field_name, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [170] = + {field_import_pattern, 3}, + {field_module, 2}, + [172] = + {field_name, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + {field_value, 3}, + [176] = + {field_dollar_name, 0, .inherited = true}, + {field_name, 0}, + {field_value, 2}, + {field_var_name, 0, .inherited = true}, + [180] = + {field_flat_type, 0}, + [181] = + {field_type, 1, .inherited = true}, + [182] = + {field_type, 0}, + [183] = + {field_value, 2}, + [184] = + {field_type, 0, .inherited = true}, + [185] = + {field_body, 3}, + {field_name, 1}, + {field_parameters, 2}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [190] = + {field_body, 3}, + {field_name, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_signature, 2}, + {field_unquoted_name, 1, .inherited = true}, + [195] = + {field_raw_path, 1}, + [196] = + {field_head, 1}, + [197] = + {field_entry, 1, .inherited = true}, + {field_entry, 2}, + [199] = + {field_try_branch, 2}, + [200] = + {field_lhs, 2, .inherited = true}, + {field_opr, 2, .inherited = true}, + {field_predicate, 2}, + {field_rhs, 2, .inherited = true}, + [204] = + {field_predicate, 2}, + [205] = + {field_error_record, 3}, + [206] = + {field_scrutinee, 1}, + [207] = + {field_item, 0, .inherited = true}, + {field_rest, 0, .inherited = true}, + [209] = + {field_entry, 0, .inherited = true}, + [210] = + {field_key, 0}, + {field_value, 2}, + [212] = + {field_name, 0}, + [213] = + {field_param_name, 0}, + {field_param_name, 1}, + [215] = + {field_flag_capsule, 1}, + {field_param_long_flag, 0}, + [217] = + {field_parameters, 1}, + [218] = + {field_end, 3}, + {field_step, 1}, + [220] = + {field_catch_branch, 3}, + {field_try_branch, 1}, + [222] = + {field_overlay, 3}, + [223] = + {field_lhs, 0}, + {field_lhs, 0, .inherited = true}, + {field_lhs, 2, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_opr, 1}, + {field_opr, 2, .inherited = true}, + {field_rhs, 0, .inherited = true}, + {field_rhs, 2}, + {field_rhs, 2, .inherited = true}, + [232] = + {field_digit, 0}, + {field_digit, 1}, + [234] = + {field_digit, 2, .inherited = true}, + [235] = + {field_digit, 0, .inherited = true}, + {field_digit, 1, .inherited = true}, + [237] = + {field_file_path, 2}, + [238] = + {field_start, 0}, + {field_step, 2}, + [240] = + {field_name, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + {field_value, 4}, + [244] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [249] = + {field_body, 4}, + {field_name, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_signature, 3}, + {field_unquoted_name, 2, .inherited = true}, + [254] = + {field_completion, 2}, + {field_type, 1, .inherited = true}, + [256] = + {field_type, 2, .inherited = true}, + [257] = + {field_dollar_name, 0, .inherited = true}, + {field_name, 0}, + {field_type, 1}, + {field_value, 3}, + {field_var_name, 0, .inherited = true}, + [262] = + {field_name, 1}, + {field_value, 3}, + [264] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 2}, + {field_quoted_name, 1, .inherited = true}, + {field_return_type, 3}, + {field_unquoted_name, 1, .inherited = true}, + [270] = + {field_cmd, 1}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [273] = + {field_cmd, 0}, + {field_quoted_name, 0, .inherited = true}, + {field_unquoted_name, 0, .inherited = true}, + [276] = + {field_cmd, 0, .inherited = true}, + {field_cmd, 1, .inherited = true}, + {field_quoted_name, 0, .inherited = true}, + {field_quoted_name, 1, .inherited = true}, + {field_unquoted_name, 0, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + [282] = + {field_protected_path, 1}, + {field_protected_path, 2}, + [284] = + {field_head, 1}, + {field_row, 3}, + [286] = + {field_row, 0}, + [287] = + {field_row, 0, .inherited = true}, + {field_row, 1, .inherited = true}, + [289] = + {field_head, 2}, + [290] = + {field_condition, 1}, + {field_then_branch, 3}, + [292] = + {field_condition, 2}, + {field_then_branch, 3}, + [294] = + {field_lhs, 0}, + {field_opr, 1}, + {field_rhs, 3}, + [297] = + {field_lhs, 0}, + {field_opr, 2}, + {field_rhs, 3}, + [300] = + {field_body, 4}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 3}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [305] = + {field_condition, 1}, + {field_else_branch, 4}, + {field_then_branch, 2}, + [308] = + {field_condition, 1}, + {field_else_block, 4}, + {field_then_branch, 2}, + [311] = + {field_name, 2}, + [312] = + {field_param_value, 1}, + [313] = + {field_parameters, 2}, + [314] = + {field_overlay, 2}, + {field_quoted_name, 4, .inherited = true}, + {field_rename, 4}, + {field_unquoted_name, 4, .inherited = true}, + [318] = + {field_end, 4}, + {field_start, 0}, + {field_step, 2}, + [321] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 3}, + {field_quoted_name, 2, .inherited = true}, + {field_return_type, 4}, + {field_unquoted_name, 2, .inherited = true}, + [327] = + {field_body, 5}, + {field_name, 3}, + {field_parameters, 4}, + {field_quoted_name, 3, .inherited = true}, + {field_unquoted_name, 3, .inherited = true}, + [332] = + {field_key, 0}, + [333] = + {field_completion, 3}, + {field_type, 2, .inherited = true}, + [335] = + {field_type, 3, .inherited = true}, + [336] = + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [338] = + {field_type, 0, .inherited = true}, + {field_type, 2, .inherited = true}, + [340] = + {field_cmd, 2}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [343] = + {field_cmd, 1, .inherited = true}, + {field_cmd, 2}, + {field_quoted_name, 1, .inherited = true}, + {field_quoted_name, 2, .inherited = true}, + {field_unquoted_name, 1, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + [349] = + {field_head, 1}, + {field_row, 4}, + [351] = + {field_head, 1}, + {field_row, 3, .inherited = true}, + {field_row, 4}, + [354] = + {field_head, 2}, + {field_row, 4}, + [356] = + {field_condition, 2}, + {field_then_branch, 4}, + [358] = + {field_catch_branch, 4}, + {field_try_branch, 1}, + [360] = + {field_catch_branch, 4}, + {field_try_branch, 2}, + [362] = + {field_lhs, 0}, + {field_lhs, 0, .inherited = true}, + {field_lhs, 3, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_opr, 1}, + {field_opr, 3, .inherited = true}, + {field_rhs, 0, .inherited = true}, + {field_rhs, 3}, + {field_rhs, 3, .inherited = true}, + [371] = + {field_lhs, 0}, + {field_lhs, 0, .inherited = true}, + {field_lhs, 3, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_opr, 2}, + {field_opr, 3, .inherited = true}, + {field_rhs, 0, .inherited = true}, + {field_rhs, 3}, + {field_rhs, 3, .inherited = true}, + [380] = + {field_lhs, 0}, + {field_opr, 2}, + {field_rhs, 4}, + [383] = + {field_body, 5}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 3}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [388] = + {field_body, 5}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 4}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [393] = + {field_body, 5}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 4}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [398] = + {field_rest, 1}, + [399] = + {field_item, 0}, + {field_item, 1}, + [401] = + {field_item, 1, .inherited = true}, + [402] = + {field_item, 0, .inherited = true}, + {field_item, 1, .inherited = true}, + [404] = + {field_entry, 1, .inherited = true}, + [405] = + {field_default_pattern, 0}, + {field_expression, 2}, + [407] = + {field_expression, 2}, + {field_pattern, 0}, + [409] = + {field_param_value, 2}, + [410] = + {field_overlay, 2}, + {field_quoted_name, 5, .inherited = true}, + {field_rename, 5}, + {field_unquoted_name, 5, .inherited = true}, + [414] = + {field_overlay, 3}, + {field_quoted_name, 5, .inherited = true}, + {field_rename, 5}, + {field_unquoted_name, 5, .inherited = true}, + [418] = + {field_body, 6}, + {field_name, 3}, + {field_parameters, 4}, + {field_quoted_name, 3, .inherited = true}, + {field_return_type, 5}, + {field_unquoted_name, 3, .inherited = true}, + [424] = + {field_completion, 2, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [427] = + {field_completion, 0, .inherited = true}, + {field_completion, 1, .inherited = true}, + {field_key, 0, .inherited = true}, + {field_key, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [433] = + {field_inner, 2}, + {field_type, 2, .inherited = true}, + [435] = + {field_completion, 2}, + [436] = + {field_completion, 4}, + {field_type, 3, .inherited = true}, + [438] = + {field_type, 1, .inherited = true}, + {field_type, 2, .inherited = true}, + [440] = + {field_cmd, 2, .inherited = true}, + {field_cmd, 3}, + {field_quoted_name, 2, .inherited = true}, + {field_quoted_name, 3, .inherited = true}, + {field_unquoted_name, 2, .inherited = true}, + {field_unquoted_name, 3, .inherited = true}, + [446] = + {field_head, 1}, + {field_row, 4, .inherited = true}, + {field_row, 5}, + [449] = + {field_head, 2}, + {field_row, 5}, + [451] = + {field_head, 2}, + {field_row, 4, .inherited = true}, + {field_row, 5}, + [454] = + {field_condition, 1}, + {field_else_branch, 5}, + {field_then_branch, 2}, + [457] = + {field_condition, 1}, + {field_else_block, 5}, + {field_then_branch, 2}, + [460] = + {field_condition, 1}, + {field_else_branch, 5}, + {field_then_branch, 3}, + [463] = + {field_condition, 1}, + {field_else_block, 5}, + {field_then_branch, 3}, + [466] = + {field_condition, 2}, + {field_else_branch, 5}, + {field_then_branch, 3}, + [469] = + {field_condition, 2}, + {field_else_block, 5}, + {field_then_branch, 3}, + [472] = + {field_catch_branch, 5}, + {field_try_branch, 1}, + [474] = + {field_catch_branch, 5}, + {field_try_branch, 2}, + [476] = + {field_lhs, 0}, + {field_lhs, 0, .inherited = true}, + {field_lhs, 4, .inherited = true}, + {field_opr, 0, .inherited = true}, + {field_opr, 2}, + {field_opr, 4, .inherited = true}, + {field_rhs, 0, .inherited = true}, + {field_rhs, 4}, + {field_rhs, 4, .inherited = true}, + [485] = + {field_body, 6}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 4}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [490] = + {field_body, 6}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 5}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [495] = + {field_body, 6}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 4}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [500] = + {field_body, 6}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 5}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [505] = + {field_item, 1, .inherited = true}, + {field_rest, 2}, + [507] = + {field_param_value, 3}, + [508] = + {field_overlay, 3}, + {field_quoted_name, 6, .inherited = true}, + {field_rename, 6}, + {field_unquoted_name, 6, .inherited = true}, + [512] = + {field_key, 0}, + {field_type, 2, .inherited = true}, + [514] = + {field_completion, 3}, + {field_inner, 2}, + {field_type, 2, .inherited = true}, + [517] = + {field_type, 2, .inherited = true}, + {field_type, 3, .inherited = true}, + [519] = + {field_head, 2}, + {field_row, 5, .inherited = true}, + {field_row, 6}, + [522] = + {field_condition, 1}, + {field_else_branch, 6}, + {field_then_branch, 2}, + [525] = + {field_condition, 1}, + {field_else_block, 6}, + {field_then_branch, 2}, + [528] = + {field_condition, 1}, + {field_else_branch, 6}, + {field_then_branch, 3}, + [531] = + {field_condition, 1}, + {field_else_block, 6}, + {field_then_branch, 3}, + [534] = + {field_condition, 2}, + {field_else_branch, 6}, + {field_then_branch, 3}, + [537] = + {field_condition, 2}, + {field_else_block, 6}, + {field_then_branch, 3}, + [540] = + {field_condition, 2}, + {field_else_branch, 6}, + {field_then_branch, 4}, + [543] = + {field_condition, 2}, + {field_else_block, 6}, + {field_then_branch, 4}, + [546] = + {field_catch_branch, 6}, + {field_try_branch, 1}, + [548] = + {field_catch_branch, 6}, + {field_try_branch, 2}, + [550] = + {field_body, 7}, + {field_dollar_name, 1, .inherited = true}, + {field_iterable, 5}, + {field_looping_var, 1}, + {field_var_name, 1, .inherited = true}, + [555] = + {field_body, 7}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 5}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [560] = + {field_body, 7}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 6}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [565] = + {field_completion, 3}, + {field_key, 0}, + {field_type, 2, .inherited = true}, + [568] = + {field_condition, 1}, + {field_else_branch, 7}, + {field_then_branch, 2}, + [571] = + {field_condition, 1}, + {field_else_block, 7}, + {field_then_branch, 2}, + [574] = + {field_condition, 1}, + {field_else_branch, 7}, + {field_then_branch, 3}, + [577] = + {field_condition, 1}, + {field_else_block, 7}, + {field_then_branch, 3}, + [580] = + {field_condition, 2}, + {field_else_branch, 7}, + {field_then_branch, 3}, + [583] = + {field_condition, 2}, + {field_else_block, 7}, + {field_then_branch, 3}, + [586] = + {field_condition, 2}, + {field_else_branch, 7}, + {field_then_branch, 4}, + [589] = + {field_condition, 2}, + {field_else_block, 7}, + {field_then_branch, 4}, + [592] = + {field_catch_branch, 7}, + {field_try_branch, 2}, + [594] = + {field_body, 8}, + {field_dollar_name, 2, .inherited = true}, + {field_iterable, 6}, + {field_looping_var, 2}, + {field_var_name, 2, .inherited = true}, + [599] = + {field_condition, 1}, + {field_else_branch, 8}, + {field_then_branch, 3}, + [602] = + {field_condition, 1}, + {field_else_block, 8}, + {field_then_branch, 3}, + [605] = + {field_condition, 2}, + {field_else_branch, 8}, + {field_then_branch, 3}, + [608] = + {field_condition, 2}, + {field_else_block, 8}, + {field_then_branch, 3}, + [611] = + {field_condition, 2}, + {field_else_branch, 8}, + {field_then_branch, 4}, + [614] = + {field_condition, 2}, + {field_else_block, 8}, + {field_then_branch, 4}, + [617] = + {field_condition, 2}, + {field_else_branch, 9}, + {field_then_branch, 4}, + [620] = + {field_condition, 2}, + {field_else_block, 9}, + {field_then_branch, 4}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [14] = { + [0] = anon_alias_sym__prefix, + }, + [23] = { + [1] = sym_val_number, + }, + [26] = { + [1] = sym_val_string, + }, + [28] = { + [1] = sym_val_string, + }, + [31] = { + [0] = sym_val_string, + }, + [39] = { + [0] = sym_val_number, + }, + [40] = { + [0] = sym_val_number, + }, + [50] = { + [1] = anon_alias_sym__unit, + }, + [65] = { + [1] = sym_val_string, + }, + [80] = { + [0] = sym_val_string, + }, + [83] = { + [2] = sym_val_string, + }, + [85] = { + [2] = sym_val_number, + }, + [86] = { + [0] = sym_val_number, + }, + [87] = { + [0] = sym_val_number, + [2] = sym_val_number, + }, + [97] = { + [2] = sym_val_string, + }, + [102] = { + [1] = anon_alias_sym_quoted, + }, + [104] = { + [0] = anon_alias_sym__head, + }, + [113] = { + [1] = sym_val_string, + }, + [114] = { + [0] = sym_identifier, + }, + [121] = { + [3] = sym_val_number, + }, + [122] = { + [1] = sym_val_number, + }, + [123] = { + [1] = sym_val_number, + [3] = sym_val_number, + }, + [132] = { + [2] = sym_val_number, + }, + [133] = { + [0] = sym_val_number, + }, + [134] = { + [0] = sym_val_number, + [2] = sym_val_number, + }, + [142] = { + [3] = sym_val_string, + }, + [148] = { + [1] = anon_alias_sym_quoted, + }, + [156] = { + [3] = sym_val_string, + }, + [158] = { + [3] = sym_val_string, + }, + [167] = { + [4] = sym_val_number, + }, + [168] = { + [2] = sym_val_number, + }, + [169] = { + [2] = sym_val_number, + [4] = sym_val_number, + }, + [170] = { + [0] = sym_val_number, + }, + [171] = { + [0] = sym_val_number, + [4] = sym_val_number, + }, + [172] = { + [0] = sym_val_number, + [2] = sym_val_number, + }, + [173] = { + [0] = sym_val_number, + [2] = sym_val_number, + [4] = sym_val_number, + }, + [177] = { + [0] = sym_identifier, + }, + [187] = { + [1] = sym_val_string, + }, + [194] = { + [4] = sym_val_string, + }, + [236] = { + [0] = sym_identifier, + }, + [254] = { + [0] = sym_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym_cmd_identifier, 2, + sym_cmd_identifier, + sym_identifier, + sym__immediate_decimal, 2, + sym__immediate_decimal, + sym_val_number, + sym_val_bool, 2, + sym_val_bool, + anon_alias_sym__prefix, + sym__val_number_decimal, 2, + sym__val_number_decimal, + sym_val_number, + sym_val_string, 3, + sym_val_string, + anon_alias_sym_quoted, + sym_identifier, + sym_unquoted, 3, + sym_unquoted, + anon_alias_sym__head, + sym_val_string, + sym__unquoted_in_list, 2, + sym_val_string, + anon_alias_sym__head, + sym__unquoted_in_record, 2, + sym_val_string, + anon_alias_sym__head, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 3, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 3, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, + [16] = 3, + [17] = 3, + [18] = 3, + [19] = 3, + [20] = 3, + [21] = 3, + [22] = 3, + [23] = 23, + [24] = 23, + [25] = 23, + [26] = 23, + [27] = 23, + [28] = 23, + [29] = 23, + [30] = 23, + [31] = 23, + [32] = 23, + [33] = 23, + [34] = 23, + [35] = 23, + [36] = 23, + [37] = 37, + [38] = 37, + [39] = 37, + [40] = 37, + [41] = 41, + [42] = 41, + [43] = 43, + [44] = 43, + [45] = 43, + [46] = 43, + [47] = 47, + [48] = 47, + [49] = 47, + [50] = 47, + [51] = 47, + [52] = 47, + [53] = 47, + [54] = 47, + [55] = 47, + [56] = 47, + [57] = 47, + [58] = 47, + [59] = 47, + [60] = 47, + [61] = 47, + [62] = 47, + [63] = 47, + [64] = 47, + [65] = 47, + [66] = 47, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 67, + [72] = 67, + [73] = 69, + [74] = 70, + [75] = 67, + [76] = 69, + [77] = 70, + [78] = 67, + [79] = 69, + [80] = 69, + [81] = 67, + [82] = 69, + [83] = 67, + [84] = 69, + [85] = 67, + [86] = 67, + [87] = 67, + [88] = 88, + [89] = 67, + [90] = 69, + [91] = 67, + [92] = 67, + [93] = 67, + [94] = 67, + [95] = 67, + [96] = 67, + [97] = 67, + [98] = 67, + [99] = 67, + [100] = 70, + [101] = 88, + [102] = 69, + [103] = 70, + [104] = 67, + [105] = 105, + [106] = 105, + [107] = 107, + [108] = 108, + [109] = 107, + [110] = 107, + [111] = 111, + [112] = 112, + [113] = 105, + [114] = 111, + [115] = 112, + [116] = 105, + [117] = 108, + [118] = 105, + [119] = 108, + [120] = 105, + [121] = 121, + [122] = 108, + [123] = 105, + [124] = 108, + [125] = 105, + [126] = 108, + [127] = 105, + [128] = 108, + [129] = 105, + [130] = 108, + [131] = 105, + [132] = 108, + [133] = 105, + [134] = 108, + [135] = 112, + [136] = 108, + [137] = 105, + [138] = 108, + [139] = 105, + [140] = 108, + [141] = 108, + [142] = 142, + [143] = 142, + [144] = 142, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 147, + [149] = 149, + [150] = 150, + [151] = 147, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 154, + [158] = 158, + [159] = 152, + [160] = 155, + [161] = 161, + [162] = 162, + [163] = 154, + [164] = 153, + [165] = 155, + [166] = 166, + [167] = 152, + [168] = 152, + [169] = 158, + [170] = 154, + [171] = 155, + [172] = 158, + [173] = 158, + [174] = 166, + [175] = 162, + [176] = 176, + [177] = 156, + [178] = 176, + [179] = 161, + [180] = 176, + [181] = 176, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 184, + [186] = 184, + [187] = 187, + [188] = 184, + [189] = 182, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 191, + [198] = 195, + [199] = 194, + [200] = 196, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 193, + [227] = 201, + [228] = 201, + [229] = 202, + [230] = 203, + [231] = 204, + [232] = 205, + [233] = 206, + [234] = 207, + [235] = 208, + [236] = 209, + [237] = 210, + [238] = 190, + [239] = 212, + [240] = 213, + [241] = 214, + [242] = 215, + [243] = 216, + [244] = 217, + [245] = 218, + [246] = 219, + [247] = 220, + [248] = 221, + [249] = 222, + [250] = 223, + [251] = 224, + [252] = 202, + [253] = 203, + [254] = 204, + [255] = 205, + [256] = 206, + [257] = 207, + [258] = 208, + [259] = 209, + [260] = 210, + [261] = 211, + [262] = 212, + [263] = 213, + [264] = 214, + [265] = 215, + [266] = 216, + [267] = 217, + [268] = 218, + [269] = 219, + [270] = 220, + [271] = 221, + [272] = 222, + [273] = 223, + [274] = 224, + [275] = 275, + [276] = 276, + [277] = 191, + [278] = 211, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 192, + [285] = 275, + [286] = 286, + [287] = 286, + [288] = 286, + [289] = 289, + [290] = 290, + [291] = 290, + [292] = 292, + [293] = 290, + [294] = 294, + [295] = 289, + [296] = 296, + [297] = 297, + [298] = 289, + [299] = 286, + [300] = 289, + [301] = 301, + [302] = 289, + [303] = 286, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 190, + [309] = 192, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 190, + [319] = 319, + [320] = 320, + [321] = 192, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 338, + [340] = 337, + [341] = 337, + [342] = 342, + [343] = 343, + [344] = 342, + [345] = 343, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 351, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 356, + [360] = 355, + [361] = 361, + [362] = 362, + [363] = 357, + [364] = 354, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 352, + [370] = 361, + [371] = 365, + [372] = 372, + [373] = 373, + [374] = 362, + [375] = 375, + [376] = 366, + [377] = 377, + [378] = 367, + [379] = 368, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 323, + [384] = 384, + [385] = 358, + [386] = 325, + [387] = 375, + [388] = 372, + [389] = 377, + [390] = 382, + [391] = 391, + [392] = 373, + [393] = 324, + [394] = 381, + [395] = 395, + [396] = 384, + [397] = 380, + [398] = 323, + [399] = 325, + [400] = 391, + [401] = 382, + [402] = 330, + [403] = 329, + [404] = 377, + [405] = 331, + [406] = 406, + [407] = 327, + [408] = 408, + [409] = 328, + [410] = 326, + [411] = 324, + [412] = 412, + [413] = 395, + [414] = 414, + [415] = 323, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 391, + [420] = 327, + [421] = 334, + [422] = 326, + [423] = 417, + [424] = 377, + [425] = 425, + [426] = 332, + [427] = 333, + [428] = 412, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 406, + [433] = 433, + [434] = 434, + [435] = 330, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 416, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 377, + [453] = 395, + [454] = 454, + [455] = 455, + [456] = 329, + [457] = 324, + [458] = 325, + [459] = 328, + [460] = 382, + [461] = 461, + [462] = 331, + [463] = 382, + [464] = 408, + [465] = 414, + [466] = 323, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 467, + [471] = 445, + [472] = 446, + [473] = 447, + [474] = 448, + [475] = 449, + [476] = 450, + [477] = 451, + [478] = 478, + [479] = 479, + [480] = 417, + [481] = 412, + [482] = 377, + [483] = 334, + [484] = 455, + [485] = 485, + [486] = 382, + [487] = 395, + [488] = 332, + [489] = 414, + [490] = 391, + [491] = 429, + [492] = 430, + [493] = 431, + [494] = 333, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 325, + [499] = 391, + [500] = 416, + [501] = 395, + [502] = 502, + [503] = 503, + [504] = 328, + [505] = 326, + [506] = 434, + [507] = 336, + [508] = 508, + [509] = 330, + [510] = 418, + [511] = 329, + [512] = 331, + [513] = 327, + [514] = 514, + [515] = 323, + [516] = 436, + [517] = 461, + [518] = 437, + [519] = 438, + [520] = 468, + [521] = 439, + [522] = 440, + [523] = 425, + [524] = 441, + [525] = 469, + [526] = 526, + [527] = 443, + [528] = 444, + [529] = 529, + [530] = 324, + [531] = 454, + [532] = 433, + [533] = 329, + [534] = 412, + [535] = 508, + [536] = 414, + [537] = 496, + [538] = 497, + [539] = 326, + [540] = 377, + [541] = 485, + [542] = 414, + [543] = 416, + [544] = 495, + [545] = 336, + [546] = 334, + [547] = 417, + [548] = 548, + [549] = 416, + [550] = 417, + [551] = 332, + [552] = 333, + [553] = 324, + [554] = 325, + [555] = 555, + [556] = 395, + [557] = 503, + [558] = 558, + [559] = 331, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 391, + [566] = 502, + [567] = 567, + [568] = 478, + [569] = 479, + [570] = 526, + [571] = 529, + [572] = 412, + [573] = 327, + [574] = 574, + [575] = 382, + [576] = 328, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 330, + [583] = 583, + [584] = 391, + [585] = 585, + [586] = 564, + [587] = 327, + [588] = 326, + [589] = 336, + [590] = 590, + [591] = 591, + [592] = 561, + [593] = 562, + [594] = 558, + [595] = 595, + [596] = 416, + [597] = 560, + [598] = 563, + [599] = 417, + [600] = 574, + [601] = 332, + [602] = 548, + [603] = 577, + [604] = 328, + [605] = 578, + [606] = 579, + [607] = 580, + [608] = 581, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 567, + [614] = 395, + [615] = 615, + [616] = 555, + [617] = 330, + [618] = 334, + [619] = 412, + [620] = 620, + [621] = 621, + [622] = 414, + [623] = 329, + [624] = 382, + [625] = 333, + [626] = 331, + [627] = 377, + [628] = 583, + [629] = 629, + [630] = 330, + [631] = 631, + [632] = 329, + [633] = 331, + [634] = 634, + [635] = 327, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 190, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 395, + [680] = 391, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 496, + [685] = 497, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 590, + [691] = 691, + [692] = 692, + [693] = 334, + [694] = 694, + [695] = 695, + [696] = 412, + [697] = 697, + [698] = 698, + [699] = 414, + [700] = 611, + [701] = 612, + [702] = 332, + [703] = 416, + [704] = 417, + [705] = 333, + [706] = 620, + [707] = 336, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 643, + [715] = 715, + [716] = 686, + [717] = 687, + [718] = 666, + [719] = 688, + [720] = 674, + [721] = 671, + [722] = 416, + [723] = 675, + [724] = 417, + [725] = 676, + [726] = 689, + [727] = 648, + [728] = 677, + [729] = 496, + [730] = 497, + [731] = 695, + [732] = 656, + [733] = 710, + [734] = 639, + [735] = 672, + [736] = 708, + [737] = 709, + [738] = 631, + [739] = 336, + [740] = 634, + [741] = 697, + [742] = 636, + [743] = 637, + [744] = 645, + [745] = 638, + [746] = 646, + [747] = 667, + [748] = 669, + [749] = 694, + [750] = 670, + [751] = 751, + [752] = 652, + [753] = 192, + [754] = 698, + [755] = 711, + [756] = 681, + [757] = 712, + [758] = 330, + [759] = 629, + [760] = 329, + [761] = 331, + [762] = 673, + [763] = 664, + [764] = 327, + [765] = 640, + [766] = 641, + [767] = 668, + [768] = 713, + [769] = 642, + [770] = 682, + [771] = 665, + [772] = 644, + [773] = 412, + [774] = 647, + [775] = 649, + [776] = 654, + [777] = 650, + [778] = 651, + [779] = 653, + [780] = 655, + [781] = 658, + [782] = 683, + [783] = 659, + [784] = 660, + [785] = 661, + [786] = 662, + [787] = 663, + [788] = 691, + [789] = 414, + [790] = 790, + [791] = 790, + [792] = 354, + [793] = 355, + [794] = 794, + [795] = 362, + [796] = 361, + [797] = 355, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 355, + [802] = 355, + [803] = 354, + [804] = 804, + [805] = 354, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 354, + [811] = 811, + [812] = 361, + [813] = 798, + [814] = 800, + [815] = 361, + [816] = 362, + [817] = 362, + [818] = 384, + [819] = 372, + [820] = 375, + [821] = 373, + [822] = 361, + [823] = 362, + [824] = 794, + [825] = 354, + [826] = 355, + [827] = 806, + [828] = 808, + [829] = 829, + [830] = 384, + [831] = 375, + [832] = 372, + [833] = 373, + [834] = 375, + [835] = 373, + [836] = 384, + [837] = 354, + [838] = 372, + [839] = 355, + [840] = 829, + [841] = 361, + [842] = 384, + [843] = 375, + [844] = 362, + [845] = 829, + [846] = 829, + [847] = 373, + [848] = 372, + [849] = 361, + [850] = 829, + [851] = 362, + [852] = 372, + [853] = 373, + [854] = 375, + [855] = 384, + [856] = 856, + [857] = 856, + [858] = 375, + [859] = 373, + [860] = 829, + [861] = 384, + [862] = 856, + [863] = 863, + [864] = 864, + [865] = 856, + [866] = 863, + [867] = 863, + [868] = 856, + [869] = 372, + [870] = 856, + [871] = 856, + [872] = 856, + [873] = 856, + [874] = 856, + [875] = 856, + [876] = 856, + [877] = 856, + [878] = 856, + [879] = 864, + [880] = 856, + [881] = 856, + [882] = 856, + [883] = 856, + [884] = 884, + [885] = 884, + [886] = 886, + [887] = 886, + [888] = 886, + [889] = 884, + [890] = 886, + [891] = 884, + [892] = 892, + [893] = 892, + [894] = 884, + [895] = 886, + [896] = 892, + [897] = 892, + [898] = 898, + [899] = 892, + [900] = 892, + [901] = 892, + [902] = 892, + [903] = 892, + [904] = 892, + [905] = 892, + [906] = 892, + [907] = 892, + [908] = 892, + [909] = 892, + [910] = 892, + [911] = 892, + [912] = 892, + [913] = 892, + [914] = 886, + [915] = 884, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 923, + [941] = 924, + [942] = 925, + [943] = 939, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 919, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 920, + [977] = 921, + [978] = 922, + [979] = 944, + [980] = 937, + [981] = 938, + [982] = 926, + [983] = 926, + [984] = 927, + [985] = 928, + [986] = 929, + [987] = 930, + [988] = 931, + [989] = 932, + [990] = 933, + [991] = 934, + [992] = 935, + [993] = 936, + [994] = 937, + [995] = 938, + [996] = 923, + [997] = 924, + [998] = 925, + [999] = 939, + [1000] = 944, + [1001] = 945, + [1002] = 946, + [1003] = 973, + [1004] = 954, + [1005] = 949, + [1006] = 950, + [1007] = 951, + [1008] = 952, + [1009] = 953, + [1010] = 954, + [1011] = 955, + [1012] = 956, + [1013] = 957, + [1014] = 958, + [1015] = 959, + [1016] = 960, + [1017] = 961, + [1018] = 962, + [1019] = 963, + [1020] = 964, + [1021] = 965, + [1022] = 966, + [1023] = 967, + [1024] = 968, + [1025] = 969, + [1026] = 970, + [1027] = 971, + [1028] = 972, + [1029] = 973, + [1030] = 974, + [1031] = 975, + [1032] = 920, + [1033] = 921, + [1034] = 922, + [1035] = 927, + [1036] = 928, + [1037] = 945, + [1038] = 929, + [1039] = 957, + [1040] = 946, + [1041] = 930, + [1042] = 931, + [1043] = 974, + [1044] = 932, + [1045] = 947, + [1046] = 919, + [1047] = 958, + [1048] = 959, + [1049] = 949, + [1050] = 950, + [1051] = 933, + [1052] = 934, + [1053] = 951, + [1054] = 935, + [1055] = 952, + [1056] = 953, + [1057] = 960, + [1058] = 961, + [1059] = 975, + [1060] = 962, + [1061] = 963, + [1062] = 964, + [1063] = 965, + [1064] = 936, + [1065] = 955, + [1066] = 956, + [1067] = 966, + [1068] = 967, + [1069] = 968, + [1070] = 969, + [1071] = 970, + [1072] = 971, + [1073] = 972, + [1074] = 947, + [1075] = 1075, + [1076] = 1076, + [1077] = 1075, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1079, + [1093] = 1078, + [1094] = 1080, + [1095] = 1081, + [1096] = 1082, + [1097] = 1083, + [1098] = 1084, + [1099] = 1085, + [1100] = 1086, + [1101] = 1087, + [1102] = 1080, + [1103] = 1081, + [1104] = 1082, + [1105] = 1083, + [1106] = 1084, + [1107] = 1085, + [1108] = 1086, + [1109] = 1087, + [1110] = 1088, + [1111] = 1089, + [1112] = 1090, + [1113] = 1091, + [1114] = 1079, + [1115] = 1088, + [1116] = 1089, + [1117] = 1091, + [1118] = 1079, + [1119] = 1080, + [1120] = 1081, + [1121] = 1082, + [1122] = 1080, + [1123] = 1081, + [1124] = 1082, + [1125] = 1083, + [1126] = 1084, + [1127] = 1085, + [1128] = 1086, + [1129] = 1087, + [1130] = 1088, + [1131] = 1089, + [1132] = 1090, + [1133] = 1091, + [1134] = 1079, + [1135] = 1083, + [1136] = 1084, + [1137] = 1080, + [1138] = 1081, + [1139] = 1082, + [1140] = 1083, + [1141] = 1084, + [1142] = 1085, + [1143] = 1086, + [1144] = 1087, + [1145] = 1088, + [1146] = 1089, + [1147] = 1090, + [1148] = 1091, + [1149] = 1079, + [1150] = 1085, + [1151] = 1086, + [1152] = 1087, + [1153] = 1088, + [1154] = 1089, + [1155] = 1090, + [1156] = 1091, + [1157] = 1079, + [1158] = 1078, + [1159] = 1080, + [1160] = 1081, + [1161] = 1082, + [1162] = 1083, + [1163] = 1084, + [1164] = 1085, + [1165] = 1086, + [1166] = 1087, + [1167] = 1088, + [1168] = 1089, + [1169] = 1090, + [1170] = 1091, + [1171] = 1090, + [1172] = 1078, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1175, + [1177] = 1174, + [1178] = 1173, + [1179] = 1078, + [1180] = 354, + [1181] = 1181, + [1182] = 355, + [1183] = 354, + [1184] = 1184, + [1185] = 355, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1188, + [1190] = 1190, + [1191] = 1190, + [1192] = 354, + [1193] = 355, + [1194] = 1194, + [1195] = 361, + [1196] = 361, + [1197] = 362, + [1198] = 1198, + [1199] = 1194, + [1200] = 1198, + [1201] = 362, + [1202] = 354, + [1203] = 361, + [1204] = 355, + [1205] = 362, + [1206] = 372, + [1207] = 372, + [1208] = 829, + [1209] = 384, + [1210] = 362, + [1211] = 384, + [1212] = 829, + [1213] = 361, + [1214] = 375, + [1215] = 373, + [1216] = 1216, + [1217] = 1217, + [1218] = 829, + [1219] = 1216, + [1220] = 375, + [1221] = 355, + [1222] = 1216, + [1223] = 373, + [1224] = 384, + [1225] = 1217, + [1226] = 1217, + [1227] = 372, + [1228] = 354, + [1229] = 375, + [1230] = 373, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1231, + [1236] = 829, + [1237] = 1237, + [1238] = 1238, + [1239] = 361, + [1240] = 362, + [1241] = 384, + [1242] = 1234, + [1243] = 372, + [1244] = 1238, + [1245] = 1237, + [1246] = 1246, + [1247] = 1233, + [1248] = 375, + [1249] = 373, + [1250] = 1246, + [1251] = 829, + [1252] = 372, + [1253] = 373, + [1254] = 384, + [1255] = 1255, + [1256] = 351, + [1257] = 375, + [1258] = 1255, + [1259] = 352, + [1260] = 354, + [1261] = 355, + [1262] = 356, + [1263] = 357, + [1264] = 351, + [1265] = 1265, + [1266] = 352, + [1267] = 1267, + [1268] = 1267, + [1269] = 1269, + [1270] = 1265, + [1271] = 1269, + [1272] = 1272, + [1273] = 1267, + [1274] = 1265, + [1275] = 1269, + [1276] = 1272, + [1277] = 1267, + [1278] = 1278, + [1279] = 354, + [1280] = 1269, + [1281] = 1267, + [1282] = 1265, + [1283] = 1269, + [1284] = 1272, + [1285] = 1267, + [1286] = 354, + [1287] = 1265, + [1288] = 1269, + [1289] = 1272, + [1290] = 1267, + [1291] = 1265, + [1292] = 1269, + [1293] = 1272, + [1294] = 1267, + [1295] = 1272, + [1296] = 361, + [1297] = 1265, + [1298] = 1269, + [1299] = 1272, + [1300] = 1267, + [1301] = 355, + [1302] = 1265, + [1303] = 1269, + [1304] = 1272, + [1305] = 355, + [1306] = 1267, + [1307] = 1265, + [1308] = 1269, + [1309] = 1272, + [1310] = 1267, + [1311] = 362, + [1312] = 1265, + [1313] = 1269, + [1314] = 1272, + [1315] = 1267, + [1316] = 1265, + [1317] = 1272, + [1318] = 1269, + [1319] = 1265, + [1320] = 1265, + [1321] = 1272, + [1322] = 1265, + [1323] = 323, + [1324] = 1269, + [1325] = 1272, + [1326] = 357, + [1327] = 1327, + [1328] = 365, + [1329] = 1267, + [1330] = 1265, + [1331] = 1272, + [1332] = 356, + [1333] = 1269, + [1334] = 1272, + [1335] = 366, + [1336] = 367, + [1337] = 368, + [1338] = 1327, + [1339] = 323, + [1340] = 1267, + [1341] = 886, + [1342] = 368, + [1343] = 330, + [1344] = 380, + [1345] = 329, + [1346] = 331, + [1347] = 381, + [1348] = 327, + [1349] = 382, + [1350] = 323, + [1351] = 362, + [1352] = 384, + [1353] = 324, + [1354] = 361, + [1355] = 377, + [1356] = 362, + [1357] = 367, + [1358] = 325, + [1359] = 375, + [1360] = 373, + [1361] = 884, + [1362] = 354, + [1363] = 324, + [1364] = 323, + [1365] = 886, + [1366] = 884, + [1367] = 325, + [1368] = 365, + [1369] = 1278, + [1370] = 886, + [1371] = 361, + [1372] = 355, + [1373] = 366, + [1374] = 884, + [1375] = 1375, + [1376] = 372, + [1377] = 377, + [1378] = 326, + [1379] = 327, + [1380] = 373, + [1381] = 384, + [1382] = 391, + [1383] = 380, + [1384] = 324, + [1385] = 325, + [1386] = 372, + [1387] = 375, + [1388] = 381, + [1389] = 382, + [1390] = 328, + [1391] = 326, + [1392] = 384, + [1393] = 323, + [1394] = 884, + [1395] = 373, + [1396] = 395, + [1397] = 361, + [1398] = 330, + [1399] = 324, + [1400] = 886, + [1401] = 362, + [1402] = 1402, + [1403] = 329, + [1404] = 1404, + [1405] = 372, + [1406] = 375, + [1407] = 325, + [1408] = 328, + [1409] = 331, + [1410] = 886, + [1411] = 326, + [1412] = 408, + [1413] = 329, + [1414] = 412, + [1415] = 328, + [1416] = 1404, + [1417] = 326, + [1418] = 332, + [1419] = 384, + [1420] = 331, + [1421] = 395, + [1422] = 328, + [1423] = 333, + [1424] = 355, + [1425] = 334, + [1426] = 330, + [1427] = 372, + [1428] = 334, + [1429] = 375, + [1430] = 377, + [1431] = 373, + [1432] = 324, + [1433] = 325, + [1434] = 414, + [1435] = 327, + [1436] = 417, + [1437] = 884, + [1438] = 382, + [1439] = 332, + [1440] = 354, + [1441] = 416, + [1442] = 330, + [1443] = 329, + [1444] = 331, + [1445] = 327, + [1446] = 333, + [1447] = 391, + [1448] = 406, + [1449] = 391, + [1450] = 336, + [1451] = 336, + [1452] = 334, + [1453] = 382, + [1454] = 330, + [1455] = 377, + [1456] = 329, + [1457] = 331, + [1458] = 334, + [1459] = 327, + [1460] = 332, + [1461] = 333, + [1462] = 395, + [1463] = 361, + [1464] = 362, + [1465] = 412, + [1466] = 1466, + [1467] = 414, + [1468] = 416, + [1469] = 332, + [1470] = 417, + [1471] = 333, + [1472] = 336, + [1473] = 326, + [1474] = 430, + [1475] = 434, + [1476] = 418, + [1477] = 436, + [1478] = 437, + [1479] = 438, + [1480] = 439, + [1481] = 440, + [1482] = 441, + [1483] = 469, + [1484] = 443, + [1485] = 444, + [1486] = 445, + [1487] = 446, + [1488] = 447, + [1489] = 448, + [1490] = 449, + [1491] = 450, + [1492] = 451, + [1493] = 431, + [1494] = 433, + [1495] = 382, + [1496] = 408, + [1497] = 406, + [1498] = 323, + [1499] = 377, + [1500] = 328, + [1501] = 429, + [1502] = 495, + [1503] = 323, + [1504] = 391, + [1505] = 418, + [1506] = 1506, + [1507] = 437, + [1508] = 502, + [1509] = 478, + [1510] = 479, + [1511] = 438, + [1512] = 436, + [1513] = 430, + [1514] = 354, + [1515] = 439, + [1516] = 333, + [1517] = 485, + [1518] = 355, + [1519] = 440, + [1520] = 382, + [1521] = 441, + [1522] = 469, + [1523] = 328, + [1524] = 326, + [1525] = 443, + [1526] = 444, + [1527] = 445, + [1528] = 446, + [1529] = 447, + [1530] = 412, + [1531] = 395, + [1532] = 448, + [1533] = 449, + [1534] = 450, + [1535] = 414, + [1536] = 451, + [1537] = 416, + [1538] = 324, + [1539] = 417, + [1540] = 434, + [1541] = 330, + [1542] = 431, + [1543] = 372, + [1544] = 380, + [1545] = 329, + [1546] = 503, + [1547] = 496, + [1548] = 508, + [1549] = 497, + [1550] = 1550, + [1551] = 381, + [1552] = 377, + [1553] = 395, + [1554] = 1554, + [1555] = 391, + [1556] = 331, + [1557] = 1550, + [1558] = 1550, + [1559] = 323, + [1560] = 332, + [1561] = 429, + [1562] = 433, + [1563] = 1563, + [1564] = 325, + [1565] = 375, + [1566] = 336, + [1567] = 334, + [1568] = 327, + [1569] = 373, + [1570] = 384, + [1571] = 1550, + [1572] = 564, + [1573] = 447, + [1574] = 448, + [1575] = 1575, + [1576] = 1576, + [1577] = 325, + [1578] = 567, + [1579] = 449, + [1580] = 332, + [1581] = 333, + [1582] = 1582, + [1583] = 1583, + [1584] = 323, + [1585] = 497, + [1586] = 412, + [1587] = 1563, + [1588] = 328, + [1589] = 382, + [1590] = 496, + [1591] = 1554, + [1592] = 1592, + [1593] = 330, + [1594] = 329, + [1595] = 331, + [1596] = 327, + [1597] = 548, + [1598] = 434, + [1599] = 326, + [1600] = 450, + [1601] = 451, + [1602] = 1602, + [1603] = 361, + [1604] = 495, + [1605] = 414, + [1606] = 377, + [1607] = 418, + [1608] = 395, + [1609] = 381, + [1610] = 416, + [1611] = 436, + [1612] = 558, + [1613] = 560, + [1614] = 324, + [1615] = 324, + [1616] = 478, + [1617] = 325, + [1618] = 479, + [1619] = 555, + [1620] = 412, + [1621] = 362, + [1622] = 336, + [1623] = 391, + [1624] = 414, + [1625] = 437, + [1626] = 416, + [1627] = 417, + [1628] = 561, + [1629] = 562, + [1630] = 563, + [1631] = 438, + [1632] = 439, + [1633] = 1506, + [1634] = 440, + [1635] = 503, + [1636] = 508, + [1637] = 380, + [1638] = 441, + [1639] = 485, + [1640] = 469, + [1641] = 1641, + [1642] = 443, + [1643] = 1643, + [1644] = 583, + [1645] = 1645, + [1646] = 417, + [1647] = 444, + [1648] = 445, + [1649] = 446, + [1650] = 334, + [1651] = 502, + [1652] = 329, + [1653] = 433, + [1654] = 564, + [1655] = 414, + [1656] = 375, + [1657] = 416, + [1658] = 373, + [1659] = 332, + [1660] = 417, + [1661] = 1661, + [1662] = 323, + [1663] = 1663, + [1664] = 1664, + [1665] = 336, + [1666] = 1666, + [1667] = 590, + [1668] = 380, + [1669] = 333, + [1670] = 561, + [1671] = 381, + [1672] = 1582, + [1673] = 1583, + [1674] = 562, + [1675] = 563, + [1676] = 381, + [1677] = 1575, + [1678] = 1576, + [1679] = 567, + [1680] = 1643, + [1681] = 1681, + [1682] = 555, + [1683] = 431, + [1684] = 1684, + [1685] = 561, + [1686] = 555, + [1687] = 429, + [1688] = 395, + [1689] = 324, + [1690] = 380, + [1691] = 334, + [1692] = 563, + [1693] = 1666, + [1694] = 558, + [1695] = 328, + [1696] = 326, + [1697] = 324, + [1698] = 325, + [1699] = 330, + [1700] = 329, + [1701] = 331, + [1702] = 325, + [1703] = 327, + [1704] = 508, + [1705] = 382, + [1706] = 1602, + [1707] = 1707, + [1708] = 1708, + [1709] = 583, + [1710] = 560, + [1711] = 372, + [1712] = 1712, + [1713] = 391, + [1714] = 384, + [1715] = 548, + [1716] = 1716, + [1717] = 562, + [1718] = 583, + [1719] = 412, + [1720] = 330, + [1721] = 377, + [1722] = 331, + [1723] = 1645, + [1724] = 327, + [1725] = 430, + [1726] = 503, + [1727] = 1727, + [1728] = 647, + [1729] = 686, + [1730] = 649, + [1731] = 694, + [1732] = 650, + [1733] = 651, + [1734] = 583, + [1735] = 653, + [1736] = 655, + [1737] = 1737, + [1738] = 672, + [1739] = 658, + [1740] = 659, + [1741] = 660, + [1742] = 661, + [1743] = 662, + [1744] = 663, + [1745] = 688, + [1746] = 665, + [1747] = 666, + [1748] = 667, + [1749] = 1708, + [1750] = 669, + [1751] = 670, + [1752] = 412, + [1753] = 1753, + [1754] = 671, + [1755] = 590, + [1756] = 672, + [1757] = 562, + [1758] = 695, + [1759] = 1759, + [1760] = 190, + [1761] = 1761, + [1762] = 710, + [1763] = 639, + [1764] = 681, + [1765] = 563, + [1766] = 631, + [1767] = 634, + [1768] = 1661, + [1769] = 645, + [1770] = 636, + [1771] = 646, + [1772] = 637, + [1773] = 638, + [1774] = 1664, + [1775] = 334, + [1776] = 496, + [1777] = 648, + [1778] = 641, + [1779] = 642, + [1780] = 1707, + [1781] = 325, + [1782] = 1782, + [1783] = 497, + [1784] = 332, + [1785] = 333, + [1786] = 1786, + [1787] = 671, + [1788] = 652, + [1789] = 654, + [1790] = 656, + [1791] = 1681, + [1792] = 328, + [1793] = 326, + [1794] = 555, + [1795] = 328, + [1796] = 326, + [1797] = 1797, + [1798] = 330, + [1799] = 395, + [1800] = 327, + [1801] = 329, + [1802] = 331, + [1803] = 1803, + [1804] = 1804, + [1805] = 336, + [1806] = 682, + [1807] = 327, + [1808] = 391, + [1809] = 683, + [1810] = 1737, + [1811] = 664, + [1812] = 1812, + [1813] = 1813, + [1814] = 1666, + [1815] = 668, + [1816] = 1712, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 713, + [1826] = 674, + [1827] = 1666, + [1828] = 1820, + [1829] = 675, + [1830] = 1821, + [1831] = 1822, + [1832] = 330, + [1833] = 1661, + [1834] = 676, + [1835] = 677, + [1836] = 1836, + [1837] = 640, + [1838] = 324, + [1839] = 416, + [1840] = 417, + [1841] = 1841, + [1842] = 689, + [1843] = 329, + [1844] = 561, + [1845] = 1819, + [1846] = 331, + [1847] = 687, + [1848] = 1663, + [1849] = 643, + [1850] = 1823, + [1851] = 1664, + [1852] = 644, + [1853] = 1824, + [1854] = 414, + [1855] = 1855, + [1856] = 687, + [1857] = 688, + [1858] = 1858, + [1859] = 683, + [1860] = 640, + [1861] = 652, + [1862] = 639, + [1863] = 414, + [1864] = 654, + [1865] = 656, + [1866] = 327, + [1867] = 643, + [1868] = 1818, + [1869] = 1836, + [1870] = 332, + [1871] = 694, + [1872] = 416, + [1873] = 333, + [1874] = 642, + [1875] = 644, + [1876] = 1876, + [1877] = 417, + [1878] = 689, + [1879] = 664, + [1880] = 668, + [1881] = 713, + [1882] = 1575, + [1883] = 674, + [1884] = 675, + [1885] = 676, + [1886] = 677, + [1887] = 647, + [1888] = 649, + [1889] = 650, + [1890] = 651, + [1891] = 653, + [1892] = 655, + [1893] = 658, + [1894] = 1661, + [1895] = 659, + [1896] = 638, + [1897] = 1897, + [1898] = 660, + [1899] = 1786, + [1900] = 1804, + [1901] = 641, + [1902] = 645, + [1903] = 1812, + [1904] = 661, + [1905] = 662, + [1906] = 646, + [1907] = 1813, + [1908] = 1841, + [1909] = 334, + [1910] = 330, + [1911] = 663, + [1912] = 665, + [1913] = 666, + [1914] = 667, + [1915] = 648, + [1916] = 1583, + [1917] = 669, + [1918] = 670, + [1919] = 1919, + [1920] = 1661, + [1921] = 334, + [1922] = 328, + [1923] = 1919, + [1924] = 329, + [1925] = 192, + [1926] = 1753, + [1927] = 590, + [1928] = 1727, + [1929] = 1929, + [1930] = 671, + [1931] = 330, + [1932] = 1932, + [1933] = 672, + [1934] = 1759, + [1935] = 496, + [1936] = 1936, + [1937] = 681, + [1938] = 336, + [1939] = 1939, + [1940] = 1761, + [1941] = 1664, + [1942] = 497, + [1943] = 327, + [1944] = 1803, + [1945] = 1945, + [1946] = 1946, + [1947] = 331, + [1948] = 1948, + [1949] = 332, + [1950] = 333, + [1951] = 631, + [1952] = 1817, + [1953] = 1953, + [1954] = 1664, + [1955] = 634, + [1956] = 637, + [1957] = 1957, + [1958] = 710, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1582, + [1963] = 329, + [1964] = 1576, + [1965] = 1782, + [1966] = 412, + [1967] = 695, + [1968] = 1968, + [1969] = 636, + [1970] = 682, + [1971] = 686, + [1972] = 331, + [1973] = 326, + [1974] = 1959, + [1975] = 1919, + [1976] = 1959, + [1977] = 1977, + [1978] = 1978, + [1979] = 503, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 325, + [1986] = 1986, + [1987] = 1987, + [1988] = 434, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 508, + [1998] = 1998, + [1999] = 437, + [2000] = 438, + [2001] = 439, + [2002] = 440, + [2003] = 430, + [2004] = 640, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 643, + [2018] = 636, + [2019] = 2019, + [2020] = 380, + [2021] = 2021, + [2022] = 2022, + [2023] = 644, + [2024] = 2024, + [2025] = 431, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 495, + [2034] = 2034, + [2035] = 647, + [2036] = 323, + [2037] = 441, + [2038] = 469, + [2039] = 443, + [2040] = 444, + [2041] = 381, + [2042] = 649, + [2043] = 2043, + [2044] = 1978, + [2045] = 429, + [2046] = 445, + [2047] = 418, + [2048] = 436, + [2049] = 446, + [2050] = 2050, + [2051] = 2051, + [2052] = 650, + [2053] = 651, + [2054] = 653, + [2055] = 655, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 447, + [2061] = 448, + [2062] = 449, + [2063] = 450, + [2064] = 332, + [2065] = 658, + [2066] = 659, + [2067] = 333, + [2068] = 660, + [2069] = 2069, + [2070] = 661, + [2071] = 662, + [2072] = 451, + [2073] = 663, + [2074] = 665, + [2075] = 666, + [2076] = 667, + [2077] = 669, + [2078] = 670, + [2079] = 2079, + [2080] = 2080, + [2081] = 2043, + [2082] = 2050, + [2083] = 2083, + [2084] = 2084, + [2085] = 334, + [2086] = 324, + [2087] = 433, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 681, + [2094] = 2094, + [2095] = 2095, + [2096] = 686, + [2097] = 495, + [2098] = 687, + [2099] = 688, + [2100] = 637, + [2101] = 336, + [2102] = 583, + [2103] = 2103, + [2104] = 327, + [2105] = 638, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 689, + [2114] = 2032, + [2115] = 2115, + [2116] = 508, + [2117] = 2117, + [2118] = 2118, + [2119] = 561, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 555, + [2127] = 2127, + [2128] = 328, + [2129] = 2129, + [2130] = 330, + [2131] = 682, + [2132] = 503, + [2133] = 2133, + [2134] = 641, + [2135] = 642, + [2136] = 683, + [2137] = 326, + [2138] = 2138, + [2139] = 2139, + [2140] = 329, + [2141] = 2141, + [2142] = 562, + [2143] = 2143, + [2144] = 695, + [2145] = 2145, + [2146] = 2146, + [2147] = 583, + [2148] = 2148, + [2149] = 2149, + [2150] = 331, + [2151] = 2148, + [2152] = 2149, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2121, + [2157] = 2122, + [2158] = 2110, + [2159] = 2111, + [2160] = 2115, + [2161] = 2117, + [2162] = 2118, + [2163] = 2120, + [2164] = 631, + [2165] = 634, + [2166] = 2106, + [2167] = 2107, + [2168] = 2108, + [2169] = 2109, + [2170] = 2149, + [2171] = 2149, + [2172] = 2149, + [2173] = 563, + [2174] = 710, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 1929, + [2201] = 2201, + [2202] = 2202, + [2203] = 1575, + [2204] = 1576, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 351, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2215, + [2216] = 332, + [2217] = 333, + [2218] = 1582, + [2219] = 1583, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 380, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 2247, + [2248] = 2248, + [2249] = 2249, + [2250] = 2250, + [2251] = 2251, + [2252] = 583, + [2253] = 2253, + [2254] = 2254, + [2255] = 2255, + [2256] = 1666, + [2257] = 2257, + [2258] = 2258, + [2259] = 2259, + [2260] = 2260, + [2261] = 2261, + [2262] = 2262, + [2263] = 561, + [2264] = 555, + [2265] = 2265, + [2266] = 1664, + [2267] = 1936, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 1858, + [2272] = 2272, + [2273] = 1661, + [2274] = 2274, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 1945, + [2279] = 2279, + [2280] = 2209, + [2281] = 1876, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 1946, + [2286] = 2286, + [2287] = 1855, + [2288] = 2288, + [2289] = 1957, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 323, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 1960, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2279, + [2305] = 2305, + [2306] = 334, + [2307] = 2307, + [2308] = 2308, + [2309] = 1961, + [2310] = 2310, + [2311] = 381, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 562, + [2316] = 2316, + [2317] = 1932, + [2318] = 2318, + [2319] = 1968, + [2320] = 2320, + [2321] = 1977, + [2322] = 563, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 355, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 356, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 355, + [2342] = 2342, + [2343] = 2343, + [2344] = 2344, + [2345] = 2345, + [2346] = 354, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 324, + [2351] = 325, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, + [2357] = 2357, + [2358] = 2358, + [2359] = 2359, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2366, + [2367] = 2367, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 357, + [2372] = 2372, + [2373] = 352, + [2374] = 590, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 380, + [2385] = 2324, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 671, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 2395, + [2396] = 2365, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, + [2409] = 2409, + [2410] = 2410, + [2411] = 672, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 323, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 381, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2442, + [2443] = 2364, + [2444] = 2419, + [2445] = 2379, + [2446] = 2446, + [2447] = 2386, + [2448] = 2448, + [2449] = 2449, + [2450] = 1666, + [2451] = 2451, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 354, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 2462, + [2463] = 2463, + [2464] = 325, + [2465] = 644, + [2466] = 689, + [2467] = 671, + [2468] = 682, + [2469] = 636, + [2470] = 672, + [2471] = 647, + [2472] = 2472, + [2473] = 357, + [2474] = 649, + [2475] = 2091, + [2476] = 642, + [2477] = 361, + [2478] = 2155, + [2479] = 2145, + [2480] = 658, + [2481] = 659, + [2482] = 2404, + [2483] = 2146, + [2484] = 710, + [2485] = 660, + [2486] = 661, + [2487] = 662, + [2488] = 362, + [2489] = 663, + [2490] = 683, + [2491] = 2175, + [2492] = 665, + [2493] = 666, + [2494] = 667, + [2495] = 2402, + [2496] = 669, + [2497] = 631, + [2498] = 640, + [2499] = 670, + [2500] = 634, + [2501] = 2095, + [2502] = 641, + [2503] = 365, + [2504] = 2125, + [2505] = 330, + [2506] = 329, + [2507] = 331, + [2508] = 327, + [2509] = 2408, + [2510] = 2153, + [2511] = 2123, + [2512] = 643, + [2513] = 2406, + [2514] = 324, + [2515] = 637, + [2516] = 638, + [2517] = 2127, + [2518] = 2415, + [2519] = 2138, + [2520] = 2416, + [2521] = 2143, + [2522] = 583, + [2523] = 2092, + [2524] = 2141, + [2525] = 650, + [2526] = 651, + [2527] = 2418, + [2528] = 653, + [2529] = 655, + [2530] = 2154, + [2531] = 681, + [2532] = 361, + [2533] = 2533, + [2534] = 695, + [2535] = 2129, + [2536] = 366, + [2537] = 367, + [2538] = 362, + [2539] = 368, + [2540] = 328, + [2541] = 326, + [2542] = 2094, + [2543] = 2422, + [2544] = 686, + [2545] = 2103, + [2546] = 2428, + [2547] = 2112, + [2548] = 2430, + [2549] = 687, + [2550] = 688, + [2551] = 2124, + [2552] = 2433, + [2553] = 2413, + [2554] = 334, + [2555] = 327, + [2556] = 2556, + [2557] = 373, + [2558] = 355, + [2559] = 384, + [2560] = 2560, + [2561] = 377, + [2562] = 382, + [2563] = 323, + [2564] = 365, + [2565] = 1404, + [2566] = 2566, + [2567] = 2567, + [2568] = 329, + [2569] = 372, + [2570] = 372, + [2571] = 2571, + [2572] = 366, + [2573] = 330, + [2574] = 354, + [2575] = 2575, + [2576] = 375, + [2577] = 2571, + [2578] = 367, + [2579] = 328, + [2580] = 2567, + [2581] = 368, + [2582] = 373, + [2583] = 2575, + [2584] = 2584, + [2585] = 380, + [2586] = 332, + [2587] = 331, + [2588] = 381, + [2589] = 333, + [2590] = 384, + [2591] = 375, + [2592] = 2560, + [2593] = 2584, + [2594] = 326, + [2595] = 2556, + [2596] = 2596, + [2597] = 1661, + [2598] = 325, + [2599] = 332, + [2600] = 327, + [2601] = 2601, + [2602] = 333, + [2603] = 330, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, + [2607] = 638, + [2608] = 2596, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 323, + [2613] = 508, + [2614] = 334, + [2615] = 2604, + [2616] = 2616, + [2617] = 2611, + [2618] = 2618, + [2619] = 336, + [2620] = 2620, + [2621] = 2610, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2622, + [2627] = 362, + [2628] = 391, + [2629] = 2609, + [2630] = 2620, + [2631] = 331, + [2632] = 2632, + [2633] = 2604, + [2634] = 395, + [2635] = 2596, + [2636] = 2618, + [2637] = 2604, + [2638] = 2596, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 380, + [2643] = 2643, + [2644] = 2625, + [2645] = 361, + [2646] = 631, + [2647] = 381, + [2648] = 329, + [2649] = 2649, + [2650] = 641, + [2651] = 634, + [2652] = 2652, + [2653] = 324, + [2654] = 642, + [2655] = 2649, + [2656] = 2605, + [2657] = 2622, + [2658] = 637, + [2659] = 2659, + [2660] = 2623, + [2661] = 2616, + [2662] = 2624, + [2663] = 1664, + [2664] = 503, + [2665] = 2632, + [2666] = 2641, + [2667] = 642, + [2668] = 469, + [2669] = 2669, + [2670] = 372, + [2671] = 2671, + [2672] = 331, + [2673] = 437, + [2674] = 377, + [2675] = 438, + [2676] = 328, + [2677] = 326, + [2678] = 445, + [2679] = 2679, + [2680] = 637, + [2681] = 446, + [2682] = 447, + [2683] = 414, + [2684] = 450, + [2685] = 2640, + [2686] = 448, + [2687] = 449, + [2688] = 416, + [2689] = 375, + [2690] = 2690, + [2691] = 330, + [2692] = 443, + [2693] = 2693, + [2694] = 451, + [2695] = 406, + [2696] = 2652, + [2697] = 412, + [2698] = 2671, + [2699] = 638, + [2700] = 330, + [2701] = 324, + [2702] = 382, + [2703] = 325, + [2704] = 631, + [2705] = 634, + [2706] = 444, + [2707] = 418, + [2708] = 384, + [2709] = 2659, + [2710] = 417, + [2711] = 2711, + [2712] = 1664, + [2713] = 439, + [2714] = 329, + [2715] = 331, + [2716] = 641, + [2717] = 2717, + [2718] = 436, + [2719] = 2719, + [2720] = 595, + [2721] = 503, + [2722] = 434, + [2723] = 373, + [2724] = 440, + [2725] = 2669, + [2726] = 429, + [2727] = 431, + [2728] = 2601, + [2729] = 2643, + [2730] = 2606, + [2731] = 2731, + [2732] = 382, + [2733] = 336, + [2734] = 327, + [2735] = 323, + [2736] = 2736, + [2737] = 433, + [2738] = 430, + [2739] = 1661, + [2740] = 327, + [2741] = 441, + [2742] = 2742, + [2743] = 508, + [2744] = 408, + [2745] = 2639, + [2746] = 377, + [2747] = 329, + [2748] = 443, + [2749] = 446, + [2750] = 323, + [2751] = 2751, + [2752] = 447, + [2753] = 395, + [2754] = 2690, + [2755] = 334, + [2756] = 324, + [2757] = 328, + [2758] = 326, + [2759] = 451, + [2760] = 469, + [2761] = 434, + [2762] = 438, + [2763] = 2763, + [2764] = 2764, + [2765] = 332, + [2766] = 439, + [2767] = 327, + [2768] = 391, + [2769] = 2769, + [2770] = 448, + [2771] = 325, + [2772] = 445, + [2773] = 444, + [2774] = 391, + [2775] = 418, + [2776] = 330, + [2777] = 382, + [2778] = 329, + [2779] = 2779, + [2780] = 436, + [2781] = 2751, + [2782] = 395, + [2783] = 377, + [2784] = 190, + [2785] = 437, + [2786] = 377, + [2787] = 2769, + [2788] = 450, + [2789] = 382, + [2790] = 333, + [2791] = 692, + [2792] = 440, + [2793] = 441, + [2794] = 2764, + [2795] = 331, + [2796] = 449, + [2797] = 437, + [2798] = 434, + [2799] = 438, + [2800] = 439, + [2801] = 440, + [2802] = 441, + [2803] = 469, + [2804] = 443, + [2805] = 436, + [2806] = 445, + [2807] = 446, + [2808] = 447, + [2809] = 448, + [2810] = 449, + [2811] = 450, + [2812] = 451, + [2813] = 2813, + [2814] = 2814, + [2815] = 595, + [2816] = 2816, + [2817] = 2817, + [2818] = 190, + [2819] = 503, + [2820] = 2820, + [2821] = 508, + [2822] = 2822, + [2823] = 496, + [2824] = 497, + [2825] = 1602, + [2826] = 190, + [2827] = 336, + [2828] = 328, + [2829] = 326, + [2830] = 412, + [2831] = 334, + [2832] = 414, + [2833] = 416, + [2834] = 332, + [2835] = 333, + [2836] = 417, + [2837] = 330, + [2838] = 323, + [2839] = 329, + [2840] = 331, + [2841] = 327, + [2842] = 395, + [2843] = 391, + [2844] = 395, + [2845] = 324, + [2846] = 325, + [2847] = 391, + [2848] = 412, + [2849] = 414, + [2850] = 416, + [2851] = 417, + [2852] = 2852, + [2853] = 2853, + [2854] = 418, + [2855] = 2855, + [2856] = 2852, + [2857] = 2853, + [2858] = 2822, + [2859] = 502, + [2860] = 478, + [2861] = 479, + [2862] = 2862, + [2863] = 2863, + [2864] = 2855, + [2865] = 485, + [2866] = 192, + [2867] = 444, + [2868] = 325, + [2869] = 414, + [2870] = 333, + [2871] = 416, + [2872] = 417, + [2873] = 412, + [2874] = 2874, + [2875] = 192, + [2876] = 414, + [2877] = 328, + [2878] = 326, + [2879] = 192, + [2880] = 496, + [2881] = 416, + [2882] = 417, + [2883] = 562, + [2884] = 563, + [2885] = 330, + [2886] = 508, + [2887] = 329, + [2888] = 331, + [2889] = 336, + [2890] = 327, + [2891] = 1666, + [2892] = 324, + [2893] = 382, + [2894] = 382, + [2895] = 692, + [2896] = 332, + [2897] = 377, + [2898] = 354, + [2899] = 355, + [2900] = 583, + [2901] = 562, + [2902] = 563, + [2903] = 503, + [2904] = 334, + [2905] = 502, + [2906] = 478, + [2907] = 479, + [2908] = 2908, + [2909] = 2909, + [2910] = 485, + [2911] = 1663, + [2912] = 548, + [2913] = 2913, + [2914] = 497, + [2915] = 2915, + [2916] = 558, + [2917] = 560, + [2918] = 583, + [2919] = 564, + [2920] = 567, + [2921] = 590, + [2922] = 561, + [2923] = 555, + [2924] = 190, + [2925] = 377, + [2926] = 412, + [2927] = 561, + [2928] = 663, + [2929] = 590, + [2930] = 1554, + [2931] = 595, + [2932] = 395, + [2933] = 328, + [2934] = 326, + [2935] = 391, + [2936] = 681, + [2937] = 2937, + [2938] = 636, + [2939] = 330, + [2940] = 2940, + [2941] = 329, + [2942] = 331, + [2943] = 327, + [2944] = 334, + [2945] = 332, + [2946] = 333, + [2947] = 682, + [2948] = 683, + [2949] = 382, + [2950] = 640, + [2951] = 687, + [2952] = 2952, + [2953] = 643, + [2954] = 2954, + [2955] = 644, + [2956] = 395, + [2957] = 391, + [2958] = 647, + [2959] = 649, + [2960] = 650, + [2961] = 651, + [2962] = 653, + [2963] = 655, + [2964] = 658, + [2965] = 659, + [2966] = 660, + [2967] = 377, + [2968] = 661, + [2969] = 662, + [2970] = 190, + [2971] = 665, + [2972] = 666, + [2973] = 667, + [2974] = 669, + [2975] = 670, + [2976] = 671, + [2977] = 672, + [2978] = 1661, + [2979] = 1664, + [2980] = 695, + [2981] = 710, + [2982] = 361, + [2983] = 336, + [2984] = 362, + [2985] = 354, + [2986] = 686, + [2987] = 355, + [2988] = 688, + [2989] = 689, + [2990] = 2990, + [2991] = 2991, + [2992] = 192, + [2993] = 2937, + [2994] = 2940, + [2995] = 2995, + [2996] = 2952, + [2997] = 2954, + [2998] = 2998, + [2999] = 2999, + [3000] = 631, + [3001] = 634, + [3002] = 637, + [3003] = 638, + [3004] = 2998, + [3005] = 641, + [3006] = 642, + [3007] = 1818, + [3008] = 2999, + [3009] = 3009, + [3010] = 1836, + [3011] = 1753, + [3012] = 1759, + [3013] = 330, + [3014] = 329, + [3015] = 331, + [3016] = 327, + [3017] = 563, + [3018] = 650, + [3019] = 651, + [3020] = 653, + [3021] = 655, + [3022] = 658, + [3023] = 659, + [3024] = 660, + [3025] = 661, + [3026] = 662, + [3027] = 663, + [3028] = 561, + [3029] = 583, + [3030] = 665, + [3031] = 666, + [3032] = 562, + [3033] = 330, + [3034] = 329, + [3035] = 667, + [3036] = 669, + [3037] = 384, + [3038] = 670, + [3039] = 331, + [3040] = 372, + [3041] = 640, + [3042] = 375, + [3043] = 373, + [3044] = 336, + [3045] = 361, + [3046] = 671, + [3047] = 672, + [3048] = 362, + [3049] = 2990, + [3050] = 192, + [3051] = 3051, + [3052] = 3052, + [3053] = 3053, + [3054] = 327, + [3055] = 395, + [3056] = 3056, + [3057] = 643, + [3058] = 412, + [3059] = 391, + [3060] = 333, + [3061] = 417, + [3062] = 3062, + [3063] = 3063, + [3064] = 334, + [3065] = 644, + [3066] = 3066, + [3067] = 647, + [3068] = 414, + [3069] = 636, + [3070] = 412, + [3071] = 694, + [3072] = 3072, + [3073] = 692, + [3074] = 639, + [3075] = 414, + [3076] = 649, + [3077] = 645, + [3078] = 646, + [3079] = 648, + [3080] = 416, + [3081] = 652, + [3082] = 654, + [3083] = 656, + [3084] = 496, + [3085] = 664, + [3086] = 668, + [3087] = 713, + [3088] = 674, + [3089] = 675, + [3090] = 676, + [3091] = 677, + [3092] = 497, + [3093] = 3093, + [3094] = 190, + [3095] = 590, + [3096] = 417, + [3097] = 3097, + [3098] = 416, + [3099] = 332, + [3100] = 1554, + [3101] = 3101, + [3102] = 643, + [3103] = 661, + [3104] = 644, + [3105] = 694, + [3106] = 665, + [3107] = 336, + [3108] = 672, + [3109] = 659, + [3110] = 666, + [3111] = 639, + [3112] = 647, + [3113] = 645, + [3114] = 646, + [3115] = 667, + [3116] = 648, + [3117] = 652, + [3118] = 654, + [3119] = 656, + [3120] = 649, + [3121] = 3121, + [3122] = 3122, + [3123] = 3123, + [3124] = 412, + [3125] = 3125, + [3126] = 664, + [3127] = 668, + [3128] = 713, + [3129] = 674, + [3130] = 675, + [3131] = 676, + [3132] = 677, + [3133] = 653, + [3134] = 2991, + [3135] = 650, + [3136] = 414, + [3137] = 417, + [3138] = 3138, + [3139] = 2995, + [3140] = 496, + [3141] = 655, + [3142] = 662, + [3143] = 3143, + [3144] = 663, + [3145] = 660, + [3146] = 669, + [3147] = 497, + [3148] = 670, + [3149] = 384, + [3150] = 3150, + [3151] = 3151, + [3152] = 3152, + [3153] = 658, + [3154] = 327, + [3155] = 3155, + [3156] = 3156, + [3157] = 651, + [3158] = 372, + [3159] = 671, + [3160] = 636, + [3161] = 375, + [3162] = 373, + [3163] = 192, + [3164] = 330, + [3165] = 329, + [3166] = 640, + [3167] = 331, + [3168] = 416, + [3169] = 3169, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, + [3175] = 3169, + [3176] = 3173, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 3178, + [3181] = 3181, + [3182] = 3182, + [3183] = 3172, + [3184] = 3179, + [3185] = 3177, + [3186] = 3171, + [3187] = 3181, + [3188] = 3182, + [3189] = 3174, + [3190] = 336, + [3191] = 3191, + [3192] = 562, + [3193] = 555, + [3194] = 563, + [3195] = 583, + [3196] = 3196, + [3197] = 3197, + [3198] = 561, + [3199] = 561, + [3200] = 1666, + [3201] = 382, + [3202] = 377, + [3203] = 562, + [3204] = 563, + [3205] = 555, + [3206] = 3206, + [3207] = 583, + [3208] = 357, + [3209] = 2394, + [3210] = 2363, + [3211] = 2391, + [3212] = 2434, + [3213] = 2442, + [3214] = 2333, + [3215] = 2387, + [3216] = 2462, + [3217] = 2414, + [3218] = 2392, + [3219] = 2357, + [3220] = 2372, + [3221] = 2437, + [3222] = 2452, + [3223] = 2399, + [3224] = 2328, + [3225] = 2340, + [3226] = 2356, + [3227] = 2409, + [3228] = 2424, + [3229] = 2439, + [3230] = 2330, + [3231] = 2348, + [3232] = 2360, + [3233] = 2412, + [3234] = 2461, + [3235] = 2446, + [3236] = 2325, + [3237] = 2352, + [3238] = 2368, + [3239] = 2388, + [3240] = 2397, + [3241] = 2458, + [3242] = 2326, + [3243] = 2358, + [3244] = 2383, + [3245] = 2390, + [3246] = 2393, + [3247] = 2395, + [3248] = 2398, + [3249] = 2403, + [3250] = 2405, + [3251] = 2407, + [3252] = 2429, + [3253] = 2432, + [3254] = 2435, + [3255] = 2440, + [3256] = 2369, + [3257] = 1666, + [3258] = 2449, + [3259] = 2402, + [3260] = 2404, + [3261] = 2406, + [3262] = 2408, + [3263] = 2413, + [3264] = 2415, + [3265] = 2416, + [3266] = 2418, + [3267] = 2422, + [3268] = 2428, + [3269] = 2430, + [3270] = 2433, + [3271] = 3271, + [3272] = 2342, + [3273] = 2347, + [3274] = 3271, + [3275] = 2339, + [3276] = 2381, + [3277] = 2401, + [3278] = 391, + [3279] = 2410, + [3280] = 2420, + [3281] = 2454, + [3282] = 2380, + [3283] = 2425, + [3284] = 2366, + [3285] = 367, + [3286] = 368, + [3287] = 2338, + [3288] = 3271, + [3289] = 3271, + [3290] = 2377, + [3291] = 357, + [3292] = 3292, + [3293] = 3293, + [3294] = 2382, + [3295] = 2417, + [3296] = 2423, + [3297] = 2453, + [3298] = 3298, + [3299] = 3299, + [3300] = 2455, + [3301] = 2334, + [3302] = 2343, + [3303] = 2460, + [3304] = 2400, + [3305] = 2327, + [3306] = 2329, + [3307] = 2349, + [3308] = 2332, + [3309] = 2344, + [3310] = 2354, + [3311] = 2370, + [3312] = 2376, + [3313] = 2378, + [3314] = 3314, + [3315] = 3315, + [3316] = 2427, + [3317] = 2431, + [3318] = 3318, + [3319] = 2436, + [3320] = 2441, + [3321] = 2448, + [3322] = 2451, + [3323] = 2456, + [3324] = 2459, + [3325] = 2375, + [3326] = 2345, + [3327] = 2426, + [3328] = 366, + [3329] = 395, + [3330] = 2361, + [3331] = 1727, + [3332] = 2353, + [3333] = 365, + [3334] = 2362, + [3335] = 2359, + [3336] = 2367, + [3337] = 3337, + [3338] = 3338, + [3339] = 414, + [3340] = 354, + [3341] = 355, + [3342] = 416, + [3343] = 3343, + [3344] = 3344, + [3345] = 417, + [3346] = 366, + [3347] = 367, + [3348] = 368, + [3349] = 3337, + [3350] = 3197, + [3351] = 3191, + [3352] = 330, + [3353] = 329, + [3354] = 331, + [3355] = 496, + [3356] = 327, + [3357] = 3357, + [3358] = 365, + [3359] = 3357, + [3360] = 1727, + [3361] = 497, + [3362] = 3338, + [3363] = 2402, + [3364] = 2404, + [3365] = 2406, + [3366] = 2408, + [3367] = 2413, + [3368] = 2415, + [3369] = 2416, + [3370] = 2418, + [3371] = 2422, + [3372] = 2428, + [3373] = 2430, + [3374] = 2433, + [3375] = 3375, + [3376] = 412, + [3377] = 3377, + [3378] = 323, + [3379] = 3377, + [3380] = 3380, + [3381] = 355, + [3382] = 362, + [3383] = 3383, + [3384] = 354, + [3385] = 323, + [3386] = 377, + [3387] = 361, + [3388] = 354, + [3389] = 380, + [3390] = 381, + [3391] = 355, + [3392] = 324, + [3393] = 325, + [3394] = 3383, + [3395] = 3395, + [3396] = 361, + [3397] = 373, + [3398] = 362, + [3399] = 3399, + [3400] = 3400, + [3401] = 3401, + [3402] = 595, + [3403] = 3403, + [3404] = 1404, + [3405] = 1554, + [3406] = 3380, + [3407] = 3395, + [3408] = 3408, + [3409] = 372, + [3410] = 1554, + [3411] = 361, + [3412] = 3401, + [3413] = 323, + [3414] = 324, + [3415] = 325, + [3416] = 384, + [3417] = 362, + [3418] = 354, + [3419] = 355, + [3420] = 375, + [3421] = 325, + [3422] = 324, + [3423] = 375, + [3424] = 372, + [3425] = 375, + [3426] = 373, + [3427] = 361, + [3428] = 384, + [3429] = 362, + [3430] = 692, + [3431] = 373, + [3432] = 668, + [3433] = 381, + [3434] = 713, + [3435] = 674, + [3436] = 323, + [3437] = 646, + [3438] = 676, + [3439] = 3439, + [3440] = 648, + [3441] = 323, + [3442] = 3442, + [3443] = 3403, + [3444] = 677, + [3445] = 372, + [3446] = 3446, + [3447] = 3447, + [3448] = 639, + [3449] = 652, + [3450] = 380, + [3451] = 1554, + [3452] = 654, + [3453] = 694, + [3454] = 656, + [3455] = 664, + [3456] = 384, + [3457] = 3408, + [3458] = 645, + [3459] = 675, + [3460] = 372, + [3461] = 323, + [3462] = 375, + [3463] = 190, + [3464] = 431, + [3465] = 324, + [3466] = 373, + [3467] = 440, + [3468] = 429, + [3469] = 434, + [3470] = 325, + [3471] = 590, + [3472] = 384, + [3473] = 441, + [3474] = 469, + [3475] = 438, + [3476] = 1664, + [3477] = 444, + [3478] = 445, + [3479] = 3479, + [3480] = 446, + [3481] = 433, + [3482] = 1661, + [3483] = 382, + [3484] = 377, + [3485] = 439, + [3486] = 447, + [3487] = 323, + [3488] = 437, + [3489] = 436, + [3490] = 430, + [3491] = 448, + [3492] = 449, + [3493] = 418, + [3494] = 450, + [3495] = 451, + [3496] = 443, + [3497] = 478, + [3498] = 689, + [3499] = 683, + [3500] = 661, + [3501] = 662, + [3502] = 695, + [3503] = 663, + [3504] = 324, + [3505] = 687, + [3506] = 643, + [3507] = 325, + [3508] = 665, + [3509] = 666, + [3510] = 667, + [3511] = 669, + [3512] = 328, + [3513] = 670, + [3514] = 326, + [3515] = 636, + [3516] = 479, + [3517] = 324, + [3518] = 644, + [3519] = 710, + [3520] = 686, + [3521] = 659, + [3522] = 502, + [3523] = 3523, + [3524] = 671, + [3525] = 391, + [3526] = 631, + [3527] = 634, + [3528] = 672, + [3529] = 325, + [3530] = 681, + [3531] = 640, + [3532] = 647, + [3533] = 637, + [3534] = 638, + [3535] = 395, + [3536] = 649, + [3537] = 3169, + [3538] = 485, + [3539] = 650, + [3540] = 651, + [3541] = 682, + [3542] = 660, + [3543] = 641, + [3544] = 642, + [3545] = 192, + [3546] = 653, + [3547] = 655, + [3548] = 658, + [3549] = 3169, + [3550] = 688, + [3551] = 326, + [3552] = 381, + [3553] = 355, + [3554] = 332, + [3555] = 354, + [3556] = 502, + [3557] = 478, + [3558] = 497, + [3559] = 418, + [3560] = 436, + [3561] = 333, + [3562] = 437, + [3563] = 438, + [3564] = 439, + [3565] = 331, + [3566] = 440, + [3567] = 330, + [3568] = 479, + [3569] = 441, + [3570] = 469, + [3571] = 323, + [3572] = 3169, + [3573] = 329, + [3574] = 416, + [3575] = 443, + [3576] = 444, + [3577] = 445, + [3578] = 446, + [3579] = 331, + [3580] = 447, + [3581] = 430, + [3582] = 429, + [3583] = 448, + [3584] = 449, + [3585] = 334, + [3586] = 450, + [3587] = 3169, + [3588] = 330, + [3589] = 328, + [3590] = 327, + [3591] = 328, + [3592] = 451, + [3593] = 326, + [3594] = 380, + [3595] = 1602, + [3596] = 431, + [3597] = 412, + [3598] = 485, + [3599] = 417, + [3600] = 496, + [3601] = 434, + [3602] = 433, + [3603] = 414, + [3604] = 327, + [3605] = 329, + [3606] = 555, + [3607] = 2139, + [3608] = 3608, + [3609] = 1663, + [3610] = 3610, + [3611] = 590, + [3612] = 3612, + [3613] = 495, + [3614] = 495, + [3615] = 332, + [3616] = 561, + [3617] = 562, + [3618] = 333, + [3619] = 563, + [3620] = 355, + [3621] = 334, + [3622] = 3622, + [3623] = 332, + [3624] = 333, + [3625] = 2032, + [3626] = 336, + [3627] = 3627, + [3628] = 1681, + [3629] = 583, + [3630] = 334, + [3631] = 508, + [3632] = 503, + [3633] = 3633, + [3634] = 1666, + [3635] = 361, + [3636] = 354, + [3637] = 377, + [3638] = 362, + [3639] = 640, + [3640] = 1957, + [3641] = 3641, + [3642] = 1960, + [3643] = 1961, + [3644] = 710, + [3645] = 1932, + [3646] = 1968, + [3647] = 373, + [3648] = 643, + [3649] = 1977, + [3650] = 1858, + [3651] = 644, + [3652] = 689, + [3653] = 636, + [3654] = 372, + [3655] = 647, + [3656] = 649, + [3657] = 650, + [3658] = 651, + [3659] = 336, + [3660] = 653, + [3661] = 361, + [3662] = 655, + [3663] = 658, + [3664] = 659, + [3665] = 660, + [3666] = 661, + [3667] = 1782, + [3668] = 1786, + [3669] = 662, + [3670] = 663, + [3671] = 665, + [3672] = 666, + [3673] = 667, + [3674] = 2032, + [3675] = 1803, + [3676] = 1804, + [3677] = 669, + [3678] = 670, + [3679] = 583, + [3680] = 671, + [3681] = 3681, + [3682] = 672, + [3683] = 631, + [3684] = 634, + [3685] = 384, + [3686] = 1876, + [3687] = 688, + [3688] = 637, + [3689] = 638, + [3690] = 695, + [3691] = 362, + [3692] = 1753, + [3693] = 1929, + [3694] = 1759, + [3695] = 1936, + [3696] = 561, + [3697] = 495, + [3698] = 562, + [3699] = 563, + [3700] = 641, + [3701] = 642, + [3702] = 561, + [3703] = 555, + [3704] = 1945, + [3705] = 562, + [3706] = 563, + [3707] = 1818, + [3708] = 1836, + [3709] = 1575, + [3710] = 1576, + [3711] = 375, + [3712] = 1582, + [3713] = 1583, + [3714] = 3714, + [3715] = 583, + [3716] = 681, + [3717] = 2032, + [3718] = 495, + [3719] = 3719, + [3720] = 3720, + [3721] = 1946, + [3722] = 1661, + [3723] = 1855, + [3724] = 1664, + [3725] = 682, + [3726] = 683, + [3727] = 686, + [3728] = 687, + [3729] = 555, + [3730] = 2391, + [3731] = 2361, + [3732] = 2362, + [3733] = 3714, + [3734] = 561, + [3735] = 2339, + [3736] = 3736, + [3737] = 2347, + [3738] = 652, + [3739] = 562, + [3740] = 563, + [3741] = 2369, + [3742] = 2410, + [3743] = 2425, + [3744] = 2338, + [3745] = 1666, + [3746] = 2334, + [3747] = 654, + [3748] = 384, + [3749] = 2349, + [3750] = 2353, + [3751] = 664, + [3752] = 2359, + [3753] = 2363, + [3754] = 668, + [3755] = 713, + [3756] = 674, + [3757] = 675, + [3758] = 676, + [3759] = 677, + [3760] = 2459, + [3761] = 2434, + [3762] = 2442, + [3763] = 2333, + [3764] = 2387, + [3765] = 2462, + [3766] = 583, + [3767] = 2414, + [3768] = 2392, + [3769] = 1666, + [3770] = 2357, + [3771] = 2372, + [3772] = 2437, + [3773] = 2452, + [3774] = 2399, + [3775] = 639, + [3776] = 2328, + [3777] = 2340, + [3778] = 2356, + [3779] = 2409, + [3780] = 2424, + [3781] = 2439, + [3782] = 2330, + [3783] = 2348, + [3784] = 2360, + [3785] = 645, + [3786] = 646, + [3787] = 2412, + [3788] = 2461, + [3789] = 3719, + [3790] = 2446, + [3791] = 2325, + [3792] = 375, + [3793] = 2352, + [3794] = 2368, + [3795] = 3736, + [3796] = 2388, + [3797] = 2397, + [3798] = 2458, + [3799] = 2326, + [3800] = 3736, + [3801] = 656, + [3802] = 2426, + [3803] = 2383, + [3804] = 3736, + [3805] = 2390, + [3806] = 2393, + [3807] = 2395, + [3808] = 3736, + [3809] = 373, + [3810] = 2398, + [3811] = 2403, + [3812] = 3736, + [3813] = 2405, + [3814] = 2407, + [3815] = 2429, + [3816] = 2432, + [3817] = 2435, + [3818] = 648, + [3819] = 2440, + [3820] = 3736, + [3821] = 694, + [3822] = 555, + [3823] = 2343, + [3824] = 2358, + [3825] = 2449, + [3826] = 2342, + [3827] = 2367, + [3828] = 2394, + [3829] = 2381, + [3830] = 2401, + [3831] = 2420, + [3832] = 2454, + [3833] = 2380, + [3834] = 2366, + [3835] = 372, + [3836] = 2345, + [3837] = 2377, + [3838] = 2382, + [3839] = 2417, + [3840] = 2423, + [3841] = 2453, + [3842] = 2455, + [3843] = 2460, + [3844] = 2400, + [3845] = 2327, + [3846] = 2329, + [3847] = 2332, + [3848] = 2344, + [3849] = 2354, + [3850] = 2370, + [3851] = 2376, + [3852] = 2378, + [3853] = 2427, + [3854] = 2431, + [3855] = 2375, + [3856] = 2436, + [3857] = 2441, + [3858] = 2448, + [3859] = 2451, + [3860] = 2456, + [3861] = 3736, + [3862] = 3862, + [3863] = 2404, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3867, + [3868] = 2153, + [3869] = 2406, + [3870] = 2095, + [3871] = 2422, + [3872] = 2408, + [3873] = 2112, + [3874] = 2418, + [3875] = 2430, + [3876] = 3197, + [3877] = 2103, + [3878] = 3878, + [3879] = 2124, + [3880] = 2092, + [3881] = 2433, + [3882] = 2125, + [3883] = 3883, + [3884] = 2428, + [3885] = 2123, + [3886] = 3866, + [3887] = 1666, + [3888] = 3888, + [3889] = 3889, + [3890] = 3191, + [3891] = 3865, + [3892] = 3892, + [3893] = 2413, + [3894] = 3894, + [3895] = 3895, + [3896] = 3896, + [3897] = 3897, + [3898] = 3898, + [3899] = 3867, + [3900] = 3900, + [3901] = 3901, + [3902] = 2094, + [3903] = 2143, + [3904] = 2145, + [3905] = 2146, + [3906] = 3906, + [3907] = 583, + [3908] = 3908, + [3909] = 2138, + [3910] = 3910, + [3911] = 2127, + [3912] = 3865, + [3913] = 2415, + [3914] = 3914, + [3915] = 3867, + [3916] = 3916, + [3917] = 2175, + [3918] = 2402, + [3919] = 2155, + [3920] = 2416, + [3921] = 2141, + [3922] = 3922, + [3923] = 3923, + [3924] = 3924, + [3925] = 3925, + [3926] = 3926, + [3927] = 2091, + [3928] = 3928, + [3929] = 2154, + [3930] = 2129, + [3931] = 3931, + [3932] = 3932, + [3933] = 2428, + [3934] = 3932, + [3935] = 3935, + [3936] = 3932, + [3937] = 3888, + [3938] = 2402, + [3939] = 2422, + [3940] = 2404, + [3941] = 2428, + [3942] = 2430, + [3943] = 2430, + [3944] = 2433, + [3945] = 3945, + [3946] = 2433, + [3947] = 3932, + [3948] = 2418, + [3949] = 2408, + [3950] = 3950, + [3951] = 3932, + [3952] = 2413, + [3953] = 2415, + [3954] = 3864, + [3955] = 3932, + [3956] = 2416, + [3957] = 2402, + [3958] = 2418, + [3959] = 2422, + [3960] = 3932, + [3961] = 2404, + [3962] = 2406, + [3963] = 3932, + [3964] = 2408, + [3965] = 2413, + [3966] = 2415, + [3967] = 2416, + [3968] = 3932, + [3969] = 2406, + [3970] = 3622, + [3971] = 3971, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3972, + [3977] = 3610, + [3978] = 3978, + [3979] = 3612, + [3980] = 3972, + [3981] = 3972, + [3982] = 3972, + [3983] = 3983, + [3984] = 3627, + [3985] = 3985, + [3986] = 3971, + [3987] = 3973, + [3988] = 3608, + [3989] = 3974, + [3990] = 3972, + [3991] = 3633, + [3992] = 3975, + [3993] = 3978, + [3994] = 3972, + [3995] = 3983, + [3996] = 3985, + [3997] = 351, + [3998] = 351, + [3999] = 356, + [4000] = 352, + [4001] = 352, + [4002] = 355, + [4003] = 356, + [4004] = 351, + [4005] = 354, + [4006] = 362, + [4007] = 355, + [4008] = 351, + [4009] = 361, + [4010] = 357, + [4011] = 352, + [4012] = 1278, + [4013] = 356, + [4014] = 354, + [4015] = 381, + [4016] = 354, + [4017] = 380, + [4018] = 1278, + [4019] = 384, + [4020] = 367, + [4021] = 382, + [4022] = 361, + [4023] = 375, + [4024] = 355, + [4025] = 368, + [4026] = 362, + [4027] = 352, + [4028] = 377, + [4029] = 373, + [4030] = 356, + [4031] = 366, + [4032] = 372, + [4033] = 365, + [4034] = 357, + [4035] = 391, + [4036] = 381, + [4037] = 377, + [4038] = 375, + [4039] = 361, + [4040] = 372, + [4041] = 368, + [4042] = 190, + [4043] = 380, + [4044] = 365, + [4045] = 384, + [4046] = 1278, + [4047] = 367, + [4048] = 351, + [4049] = 373, + [4050] = 362, + [4051] = 354, + [4052] = 382, + [4053] = 395, + [4054] = 366, + [4055] = 355, + [4056] = 408, + [4057] = 384, + [4058] = 391, + [4059] = 375, + [4060] = 356, + [4061] = 406, + [4062] = 361, + [4063] = 412, + [4064] = 395, + [4065] = 373, + [4066] = 381, + [4067] = 414, + [4068] = 192, + [4069] = 357, + [4070] = 382, + [4071] = 352, + [4072] = 354, + [4073] = 416, + [4074] = 380, + [4075] = 377, + [4076] = 362, + [4077] = 417, + [4078] = 355, + [4079] = 372, + [4080] = 1278, + [4081] = 323, + [4082] = 375, + [4083] = 381, + [4084] = 417, + [4085] = 377, + [4086] = 382, + [4087] = 366, + [4088] = 395, + [4089] = 384, + [4090] = 380, + [4091] = 325, + [4092] = 416, + [4093] = 373, + [4094] = 365, + [4095] = 367, + [4096] = 1404, + [4097] = 408, + [4098] = 368, + [4099] = 406, + [4100] = 372, + [4101] = 377, + [4102] = 414, + [4103] = 412, + [4104] = 382, + [4105] = 362, + [4106] = 323, + [4107] = 391, + [4108] = 324, + [4109] = 2472, + [4110] = 361, + [4111] = 416, + [4112] = 323, + [4113] = 377, + [4114] = 408, + [4115] = 4115, + [4116] = 382, + [4117] = 417, + [4118] = 384, + [4119] = 372, + [4120] = 375, + [4121] = 373, + [4122] = 395, + [4123] = 377, + [4124] = 380, + [4125] = 381, + [4126] = 324, + [4127] = 391, + [4128] = 391, + [4129] = 4129, + [4130] = 325, + [4131] = 4131, + [4132] = 4132, + [4133] = 382, + [4134] = 328, + [4135] = 326, + [4136] = 412, + [4137] = 330, + [4138] = 329, + [4139] = 331, + [4140] = 327, + [4141] = 414, + [4142] = 395, + [4143] = 406, + [4144] = 1404, + [4145] = 433, + [4146] = 438, + [4147] = 2606, + [4148] = 439, + [4149] = 440, + [4150] = 441, + [4151] = 469, + [4152] = 443, + [4153] = 444, + [4154] = 445, + [4155] = 446, + [4156] = 447, + [4157] = 448, + [4158] = 449, + [4159] = 450, + [4160] = 4160, + [4161] = 451, + [4162] = 4129, + [4163] = 431, + [4164] = 412, + [4165] = 429, + [4166] = 561, + [4167] = 395, + [4168] = 2659, + [4169] = 562, + [4170] = 563, + [4171] = 408, + [4172] = 4131, + [4173] = 377, + [4174] = 416, + [4175] = 391, + [4176] = 2643, + [4177] = 323, + [4178] = 548, + [4179] = 414, + [4180] = 555, + [4181] = 430, + [4182] = 416, + [4183] = 2639, + [4184] = 328, + [4185] = 417, + [4186] = 324, + [4187] = 417, + [4188] = 583, + [4189] = 4189, + [4190] = 325, + [4191] = 4191, + [4192] = 455, + [4193] = 395, + [4194] = 4194, + [4195] = 334, + [4196] = 4132, + [4197] = 2640, + [4198] = 468, + [4199] = 558, + [4200] = 560, + [4201] = 391, + [4202] = 332, + [4203] = 333, + [4204] = 330, + [4205] = 329, + [4206] = 331, + [4207] = 380, + [4208] = 327, + [4209] = 434, + [4210] = 2652, + [4211] = 2601, + [4212] = 564, + [4213] = 418, + [4214] = 381, + [4215] = 436, + [4216] = 382, + [4217] = 412, + [4218] = 4218, + [4219] = 567, + [4220] = 414, + [4221] = 437, + [4222] = 454, + [4223] = 406, + [4224] = 326, + [4225] = 377, + [4226] = 563, + [4227] = 324, + [4228] = 328, + [4229] = 326, + [4230] = 567, + [4231] = 4231, + [4232] = 508, + [4233] = 495, + [4234] = 4234, + [4235] = 325, + [4236] = 429, + [4237] = 4237, + [4238] = 4234, + [4239] = 4189, + [4240] = 4240, + [4241] = 395, + [4242] = 327, + [4243] = 583, + [4244] = 564, + [4245] = 4191, + [4246] = 430, + [4247] = 406, + [4248] = 4248, + [4249] = 502, + [4250] = 478, + [4251] = 479, + [4252] = 336, + [4253] = 555, + [4254] = 391, + [4255] = 434, + [4256] = 496, + [4257] = 454, + [4258] = 334, + [4259] = 412, + [4260] = 323, + [4261] = 408, + [4262] = 497, + [4263] = 468, + [4264] = 4234, + [4265] = 4218, + [4266] = 414, + [4267] = 4267, + [4268] = 418, + [4269] = 436, + [4270] = 332, + [4271] = 333, + [4272] = 4272, + [4273] = 503, + [4274] = 437, + [4275] = 438, + [4276] = 439, + [4277] = 440, + [4278] = 441, + [4279] = 469, + [4280] = 443, + [4281] = 444, + [4282] = 445, + [4283] = 4283, + [4284] = 446, + [4285] = 447, + [4286] = 448, + [4287] = 417, + [4288] = 449, + [4289] = 450, + [4290] = 412, + [4291] = 451, + [4292] = 4194, + [4293] = 382, + [4294] = 431, + [4295] = 414, + [4296] = 380, + [4297] = 485, + [4298] = 455, + [4299] = 416, + [4300] = 548, + [4301] = 417, + [4302] = 433, + [4303] = 381, + [4304] = 4304, + [4305] = 558, + [4306] = 562, + [4307] = 560, + [4308] = 4160, + [4309] = 4234, + [4310] = 1666, + [4311] = 561, + [4312] = 330, + [4313] = 329, + [4314] = 331, + [4315] = 416, + [4316] = 478, + [4317] = 446, + [4318] = 4318, + [4319] = 560, + [4320] = 4320, + [4321] = 4321, + [4322] = 355, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 4326, + [4327] = 4327, + [4328] = 4328, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, + [4338] = 329, + [4339] = 4339, + [4340] = 4340, + [4341] = 503, + [4342] = 4342, + [4343] = 377, + [4344] = 436, + [4345] = 4345, + [4346] = 331, + [4347] = 433, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 447, + [4352] = 417, + [4353] = 332, + [4354] = 331, + [4355] = 4355, + [4356] = 495, + [4357] = 333, + [4358] = 4358, + [4359] = 4359, + [4360] = 441, + [4361] = 334, + [4362] = 4362, + [4363] = 434, + [4364] = 508, + [4365] = 4365, + [4366] = 497, + [4367] = 1666, + [4368] = 4368, + [4369] = 4369, + [4370] = 418, + [4371] = 469, + [4372] = 327, + [4373] = 4373, + [4374] = 4374, + [4375] = 4375, + [4376] = 4376, + [4377] = 443, + [4378] = 4378, + [4379] = 416, + [4380] = 4380, + [4381] = 4381, + [4382] = 451, + [4383] = 4383, + [4384] = 328, + [4385] = 326, + [4386] = 330, + [4387] = 437, + [4388] = 4388, + [4389] = 412, + [4390] = 4390, + [4391] = 4391, + [4392] = 431, + [4393] = 4393, + [4394] = 4394, + [4395] = 4395, + [4396] = 4396, + [4397] = 324, + [4398] = 448, + [4399] = 4399, + [4400] = 4400, + [4401] = 444, + [4402] = 4402, + [4403] = 449, + [4404] = 445, + [4405] = 4405, + [4406] = 4406, + [4407] = 485, + [4408] = 4408, + [4409] = 4409, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, + [4417] = 4417, + [4418] = 4304, + [4419] = 4419, + [4420] = 4420, + [4421] = 567, + [4422] = 325, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, + [4426] = 1645, + [4427] = 4427, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 395, + [4434] = 4434, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 4439, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, + [4444] = 382, + [4445] = 4445, + [4446] = 336, + [4447] = 4447, + [4448] = 4448, + [4449] = 4449, + [4450] = 561, + [4451] = 555, + [4452] = 496, + [4453] = 4453, + [4454] = 4454, + [4455] = 4455, + [4456] = 391, + [4457] = 4457, + [4458] = 438, + [4459] = 4459, + [4460] = 1582, + [4461] = 564, + [4462] = 439, + [4463] = 1583, + [4464] = 562, + [4465] = 563, + [4466] = 583, + [4467] = 327, + [4468] = 4468, + [4469] = 4469, + [4470] = 502, + [4471] = 4471, + [4472] = 4472, + [4473] = 4473, + [4474] = 4474, + [4475] = 330, + [4476] = 4476, + [4477] = 4477, + [4478] = 4478, + [4479] = 323, + [4480] = 429, + [4481] = 4481, + [4482] = 450, + [4483] = 4483, + [4484] = 323, + [4485] = 1602, + [4486] = 4486, + [4487] = 4487, + [4488] = 4488, + [4489] = 4489, + [4490] = 4490, + [4491] = 4491, + [4492] = 440, + [4493] = 4493, + [4494] = 4494, + [4495] = 4495, + [4496] = 430, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 479, + [4501] = 4501, + [4502] = 4502, + [4503] = 4503, + [4504] = 4504, + [4505] = 1575, + [4506] = 4506, + [4507] = 548, + [4508] = 4508, + [4509] = 1576, + [4510] = 4510, + [4511] = 558, + [4512] = 414, + [4513] = 4513, + [4514] = 329, + [4515] = 4515, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 377, + [4521] = 4521, + [4522] = 485, + [4523] = 1661, + [4524] = 4524, + [4525] = 4437, + [4526] = 417, + [4527] = 4438, + [4528] = 4528, + [4529] = 331, + [4530] = 4423, + [4531] = 4443, + [4532] = 4532, + [4533] = 4381, + [4534] = 502, + [4535] = 4535, + [4536] = 478, + [4537] = 1582, + [4538] = 1583, + [4539] = 395, + [4540] = 4540, + [4541] = 354, + [4542] = 561, + [4543] = 555, + [4544] = 479, + [4545] = 4440, + [4546] = 327, + [4547] = 4540, + [4548] = 4548, + [4549] = 4441, + [4550] = 4550, + [4551] = 361, + [4552] = 4552, + [4553] = 1681, + [4554] = 1663, + [4555] = 4552, + [4556] = 354, + [4557] = 336, + [4558] = 391, + [4559] = 4559, + [4560] = 558, + [4561] = 332, + [4562] = 1664, + [4563] = 4563, + [4564] = 567, + [4565] = 333, + [4566] = 4566, + [4567] = 560, + [4568] = 4568, + [4569] = 412, + [4570] = 4570, + [4571] = 4491, + [4572] = 4572, + [4573] = 329, + [4574] = 4436, + [4575] = 4575, + [4576] = 4576, + [4577] = 355, + [4578] = 503, + [4579] = 4420, + [4580] = 334, + [4581] = 562, + [4582] = 496, + [4583] = 4424, + [4584] = 377, + [4585] = 4535, + [4586] = 548, + [4587] = 4488, + [4588] = 4427, + [4589] = 563, + [4590] = 590, + [4591] = 330, + [4592] = 324, + [4593] = 497, + [4594] = 4576, + [4595] = 4595, + [4596] = 4442, + [4597] = 1602, + [4598] = 564, + [4599] = 414, + [4600] = 325, + [4601] = 4489, + [4602] = 4575, + [4603] = 4419, + [4604] = 1666, + [4605] = 508, + [4606] = 328, + [4607] = 326, + [4608] = 4428, + [4609] = 1645, + [4610] = 1575, + [4611] = 4429, + [4612] = 1576, + [4613] = 4431, + [4614] = 583, + [4615] = 1761, + [4616] = 4616, + [4617] = 495, + [4618] = 4432, + [4619] = 4472, + [4620] = 362, + [4621] = 416, + [4622] = 4435, + [4623] = 4623, + [4624] = 652, + [4625] = 375, + [4626] = 1661, + [4627] = 660, + [4628] = 2659, + [4629] = 4629, + [4630] = 4630, + [4631] = 4631, + [4632] = 558, + [4633] = 560, + [4634] = 710, + [4635] = 686, + [4636] = 373, + [4637] = 688, + [4638] = 698, + [4639] = 564, + [4640] = 1818, + [4641] = 1836, + [4642] = 1803, + [4643] = 4643, + [4644] = 1804, + [4645] = 567, + [4646] = 647, + [4647] = 664, + [4648] = 668, + [4649] = 713, + [4650] = 674, + [4651] = 675, + [4652] = 676, + [4653] = 2601, + [4654] = 334, + [4655] = 677, + [4656] = 689, + [4657] = 4657, + [4658] = 697, + [4659] = 4659, + [4660] = 4660, + [4661] = 2640, + [4662] = 2643, + [4663] = 4663, + [4664] = 412, + [4665] = 694, + [4666] = 661, + [4667] = 4667, + [4668] = 354, + [4669] = 561, + [4670] = 355, + [4671] = 4671, + [4672] = 4623, + [4673] = 414, + [4674] = 2606, + [4675] = 361, + [4676] = 662, + [4677] = 4677, + [4678] = 4678, + [4679] = 384, + [4680] = 663, + [4681] = 562, + [4682] = 1681, + [4683] = 695, + [4684] = 4684, + [4685] = 4548, + [4686] = 416, + [4687] = 362, + [4688] = 563, + [4689] = 643, + [4690] = 681, + [4691] = 4691, + [4692] = 4692, + [4693] = 631, + [4694] = 634, + [4695] = 4695, + [4696] = 4696, + [4697] = 417, + [4698] = 4698, + [4699] = 4699, + [4700] = 665, + [4701] = 4701, + [4702] = 636, + [4703] = 4703, + [4704] = 1761, + [4705] = 4705, + [4706] = 4706, + [4707] = 1663, + [4708] = 666, + [4709] = 1664, + [4710] = 4550, + [4711] = 2355, + [4712] = 330, + [4713] = 377, + [4714] = 667, + [4715] = 637, + [4716] = 638, + [4717] = 329, + [4718] = 331, + [4719] = 583, + [4720] = 1782, + [4721] = 327, + [4722] = 649, + [4723] = 332, + [4724] = 669, + [4725] = 2643, + [4726] = 333, + [4727] = 328, + [4728] = 4559, + [4729] = 372, + [4730] = 326, + [4731] = 670, + [4732] = 682, + [4733] = 4733, + [4734] = 683, + [4735] = 4735, + [4736] = 4736, + [4737] = 640, + [4738] = 641, + [4739] = 642, + [4740] = 4595, + [4741] = 2640, + [4742] = 4742, + [4743] = 4743, + [4744] = 4744, + [4745] = 4745, + [4746] = 4746, + [4747] = 4747, + [4748] = 590, + [4749] = 4749, + [4750] = 4750, + [4751] = 4751, + [4752] = 548, + [4753] = 4753, + [4754] = 650, + [4755] = 651, + [4756] = 4570, + [4757] = 4757, + [4758] = 671, + [4759] = 4759, + [4760] = 4568, + [4761] = 4761, + [4762] = 590, + [4763] = 4763, + [4764] = 2659, + [4765] = 4765, + [4766] = 4766, + [4767] = 639, + [4768] = 691, + [4769] = 1666, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, + [4773] = 653, + [4774] = 645, + [4775] = 4775, + [4776] = 646, + [4777] = 672, + [4778] = 648, + [4779] = 4779, + [4780] = 2601, + [4781] = 1753, + [4782] = 1759, + [4783] = 655, + [4784] = 2606, + [4785] = 644, + [4786] = 4786, + [4787] = 555, + [4788] = 4788, + [4789] = 4616, + [4790] = 4790, + [4791] = 654, + [4792] = 656, + [4793] = 687, + [4794] = 658, + [4795] = 659, + [4796] = 1786, + [4797] = 2990, + [4798] = 4798, + [4799] = 651, + [4800] = 647, + [4801] = 674, + [4802] = 4802, + [4803] = 4743, + [4804] = 653, + [4805] = 4805, + [4806] = 675, + [4807] = 649, + [4808] = 4808, + [4809] = 4809, + [4810] = 695, + [4811] = 4811, + [4812] = 4812, + [4813] = 1803, + [4814] = 357, + [4815] = 650, + [4816] = 651, + [4817] = 2533, + [4818] = 676, + [4819] = 1404, + [4820] = 655, + [4821] = 4821, + [4822] = 689, + [4823] = 361, + [4824] = 4824, + [4825] = 2463, + [4826] = 677, + [4827] = 4827, + [4828] = 4828, + [4829] = 653, + [4830] = 4830, + [4831] = 682, + [4832] = 658, + [4833] = 334, + [4834] = 4830, + [4835] = 687, + [4836] = 659, + [4837] = 655, + [4838] = 4838, + [4839] = 660, + [4840] = 4840, + [4841] = 4841, + [4842] = 661, + [4843] = 662, + [4844] = 4844, + [4845] = 1804, + [4846] = 4846, + [4847] = 689, + [4848] = 644, + [4849] = 663, + [4850] = 658, + [4851] = 659, + [4852] = 647, + [4853] = 660, + [4854] = 4854, + [4855] = 640, + [4856] = 661, + [4857] = 665, + [4858] = 641, + [4859] = 362, + [4860] = 662, + [4861] = 2606, + [4862] = 4862, + [4863] = 4863, + [4864] = 351, + [4865] = 351, + [4866] = 4811, + [4867] = 642, + [4868] = 666, + [4869] = 332, + [4870] = 4870, + [4871] = 4871, + [4872] = 631, + [4873] = 634, + [4874] = 4874, + [4875] = 4875, + [4876] = 333, + [4877] = 663, + [4878] = 691, + [4879] = 667, + [4880] = 4821, + [4881] = 652, + [4882] = 683, + [4883] = 665, + [4884] = 4884, + [4885] = 666, + [4886] = 4844, + [4887] = 384, + [4888] = 3380, + [4889] = 4811, + [4890] = 4890, + [4891] = 357, + [4892] = 2659, + [4893] = 667, + [4894] = 669, + [4895] = 1836, + [4896] = 4896, + [4897] = 4897, + [4898] = 2640, + [4899] = 639, + [4900] = 670, + [4901] = 669, + [4902] = 681, + [4903] = 697, + [4904] = 1812, + [4905] = 654, + [4906] = 1813, + [4907] = 4840, + [4908] = 656, + [4909] = 670, + [4910] = 4910, + [4911] = 4659, + [4912] = 650, + [4913] = 713, + [4914] = 4735, + [4915] = 4770, + [4916] = 4771, + [4917] = 4772, + [4918] = 4631, + [4919] = 4757, + [4920] = 4706, + [4921] = 4667, + [4922] = 4753, + [4923] = 4763, + [4924] = 4766, + [4925] = 4691, + [4926] = 649, + [4927] = 357, + [4928] = 4928, + [4929] = 686, + [4930] = 4930, + [4931] = 645, + [4932] = 682, + [4933] = 631, + [4934] = 637, + [4935] = 634, + [4936] = 683, + [4937] = 638, + [4938] = 2991, + [4939] = 4744, + [4940] = 372, + [4941] = 681, + [4942] = 671, + [4943] = 4943, + [4944] = 644, + [4945] = 4945, + [4946] = 4660, + [4947] = 688, + [4948] = 671, + [4949] = 2643, + [4950] = 4841, + [4951] = 4745, + [4952] = 4692, + [4953] = 4746, + [4954] = 643, + [4955] = 646, + [4956] = 4660, + [4957] = 375, + [4958] = 664, + [4959] = 4959, + [4960] = 636, + [4961] = 4961, + [4962] = 1782, + [4963] = 4747, + [4964] = 373, + [4965] = 672, + [4966] = 687, + [4967] = 668, + [4968] = 4968, + [4969] = 4749, + [4970] = 672, + [4971] = 4971, + [4972] = 648, + [4973] = 4846, + [4974] = 694, + [4975] = 1786, + [4976] = 4976, + [4977] = 4977, + [4978] = 710, + [4979] = 4979, + [4980] = 1753, + [4981] = 1759, + [4982] = 4982, + [4983] = 643, + [4984] = 2601, + [4985] = 686, + [4986] = 4986, + [4987] = 4987, + [4988] = 688, + [4989] = 4759, + [4990] = 2355, + [4991] = 698, + [4992] = 4992, + [4993] = 637, + [4994] = 640, + [4995] = 638, + [4996] = 636, + [4997] = 4643, + [4998] = 4998, + [4999] = 4999, + [5000] = 641, + [5001] = 642, + [5002] = 1818, + [5003] = 5003, + [5004] = 2995, + [5005] = 5005, + [5006] = 5006, + [5007] = 3403, + [5008] = 5008, + [5009] = 5009, + [5010] = 5010, + [5011] = 354, + [5012] = 355, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 5016, + [5017] = 5017, + [5018] = 366, + [5019] = 367, + [5020] = 368, + [5021] = 5021, + [5022] = 2355, + [5023] = 4979, + [5024] = 4943, + [5025] = 694, + [5026] = 4961, + [5027] = 639, + [5028] = 645, + [5029] = 646, + [5030] = 648, + [5031] = 652, + [5032] = 654, + [5033] = 656, + [5034] = 664, + [5035] = 668, + [5036] = 713, + [5037] = 674, + [5038] = 675, + [5039] = 676, + [5040] = 677, + [5041] = 5041, + [5042] = 5042, + [5043] = 5043, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 5047, + [5048] = 1812, + [5049] = 1813, + [5050] = 5050, + [5051] = 384, + [5052] = 372, + [5053] = 375, + [5054] = 373, + [5055] = 4897, + [5056] = 5056, + [5057] = 5057, + [5058] = 4987, + [5059] = 5059, + [5060] = 4838, + [5061] = 5061, + [5062] = 5062, + [5063] = 4660, + [5064] = 5064, + [5065] = 4862, + [5066] = 4863, + [5067] = 5067, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 5057, + [5072] = 5072, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, + [5076] = 5076, + [5077] = 5077, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 354, + [5082] = 352, + [5083] = 355, + [5084] = 4976, + [5085] = 4809, + [5086] = 3380, + [5087] = 5087, + [5088] = 5088, + [5089] = 2533, + [5090] = 5064, + [5091] = 4870, + [5092] = 5092, + [5093] = 5093, + [5094] = 4871, + [5095] = 4977, + [5096] = 5096, + [5097] = 2463, + [5098] = 5098, + [5099] = 5099, + [5100] = 5100, + [5101] = 5101, + [5102] = 5102, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 5106, + [5107] = 5107, + [5108] = 5108, + [5109] = 5109, + [5110] = 5110, + [5111] = 5111, + [5112] = 1404, + [5113] = 4874, + [5114] = 4875, + [5115] = 356, + [5116] = 4982, + [5117] = 4986, + [5118] = 5118, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, + [5122] = 5122, + [5123] = 5123, + [5124] = 5124, + [5125] = 5125, + [5126] = 5126, + [5127] = 5127, + [5128] = 5128, + [5129] = 5129, + [5130] = 5130, + [5131] = 5131, + [5132] = 5132, + [5133] = 5133, + [5134] = 5134, + [5135] = 5135, + [5136] = 4998, + [5137] = 352, + [5138] = 695, + [5139] = 2742, + [5140] = 710, + [5141] = 365, + [5142] = 356, + [5143] = 5008, + [5144] = 4735, + [5145] = 4770, + [5146] = 4771, + [5147] = 4772, + [5148] = 4808, + [5149] = 4812, + [5150] = 4631, + [5151] = 4757, + [5152] = 4706, + [5153] = 4667, + [5154] = 5088, + [5155] = 4753, + [5156] = 4763, + [5157] = 4766, + [5158] = 4691, + [5159] = 3408, + [5160] = 365, + [5161] = 366, + [5162] = 367, + [5163] = 368, + [5164] = 354, + [5165] = 355, + [5166] = 4824, + [5167] = 365, + [5168] = 366, + [5169] = 367, + [5170] = 368, + [5171] = 4827, + [5172] = 4811, + [5173] = 5173, + [5174] = 5174, + [5175] = 5175, + [5176] = 3380, + [5177] = 357, + [5178] = 5178, + [5179] = 355, + [5180] = 430, + [5181] = 434, + [5182] = 418, + [5183] = 436, + [5184] = 437, + [5185] = 438, + [5186] = 439, + [5187] = 440, + [5188] = 441, + [5189] = 323, + [5190] = 469, + [5191] = 323, + [5192] = 431, + [5193] = 433, + [5194] = 443, + [5195] = 444, + [5196] = 5196, + [5197] = 445, + [5198] = 5198, + [5199] = 446, + [5200] = 5200, + [5201] = 447, + [5202] = 448, + [5203] = 449, + [5204] = 450, + [5205] = 451, + [5206] = 3403, + [5207] = 5196, + [5208] = 3408, + [5209] = 5209, + [5210] = 3380, + [5211] = 5196, + [5212] = 3408, + [5213] = 362, + [5214] = 354, + [5215] = 429, + [5216] = 2533, + [5217] = 5217, + [5218] = 324, + [5219] = 5219, + [5220] = 5196, + [5221] = 366, + [5222] = 361, + [5223] = 367, + [5224] = 368, + [5225] = 3380, + [5226] = 4811, + [5227] = 3403, + [5228] = 5228, + [5229] = 361, + [5230] = 361, + [5231] = 362, + [5232] = 2463, + [5233] = 5196, + [5234] = 5234, + [5235] = 354, + [5236] = 362, + [5237] = 5228, + [5238] = 5198, + [5239] = 355, + [5240] = 5240, + [5241] = 5241, + [5242] = 5242, + [5243] = 325, + [5244] = 357, + [5245] = 365, + [5246] = 354, + [5247] = 355, + [5248] = 5248, + [5249] = 362, + [5250] = 375, + [5251] = 190, + [5252] = 373, + [5253] = 5253, + [5254] = 354, + [5255] = 1404, + [5256] = 323, + [5257] = 355, + [5258] = 5258, + [5259] = 5259, + [5260] = 5260, + [5261] = 5261, + [5262] = 5262, + [5263] = 5263, + [5264] = 5264, + [5265] = 5248, + [5266] = 5259, + [5267] = 431, + [5268] = 377, + [5269] = 433, + [5270] = 5270, + [5271] = 5271, + [5272] = 5272, + [5273] = 372, + [5274] = 5274, + [5275] = 5260, + [5276] = 5261, + [5277] = 5270, + [5278] = 5272, + [5279] = 5271, + [5280] = 358, + [5281] = 5264, + [5282] = 5248, + [5283] = 5258, + [5284] = 5284, + [5285] = 323, + [5286] = 328, + [5287] = 326, + [5288] = 5288, + [5289] = 2472, + [5290] = 384, + [5291] = 380, + [5292] = 361, + [5293] = 5270, + [5294] = 434, + [5295] = 5271, + [5296] = 418, + [5297] = 436, + [5298] = 437, + [5299] = 438, + [5300] = 439, + [5301] = 440, + [5302] = 441, + [5303] = 469, + [5304] = 361, + [5305] = 444, + [5306] = 445, + [5307] = 446, + [5308] = 447, + [5309] = 448, + [5310] = 449, + [5311] = 450, + [5312] = 451, + [5313] = 5264, + [5314] = 5248, + [5315] = 5272, + [5316] = 5258, + [5317] = 5272, + [5318] = 384, + [5319] = 323, + [5320] = 5264, + [5321] = 5248, + [5322] = 5264, + [5323] = 5248, + [5324] = 372, + [5325] = 362, + [5326] = 354, + [5327] = 355, + [5328] = 5253, + [5329] = 354, + [5330] = 324, + [5331] = 5260, + [5332] = 5261, + [5333] = 5258, + [5334] = 382, + [5335] = 375, + [5336] = 1404, + [5337] = 325, + [5338] = 5338, + [5339] = 5339, + [5340] = 429, + [5341] = 355, + [5342] = 373, + [5343] = 5343, + [5344] = 5263, + [5345] = 384, + [5346] = 5346, + [5347] = 372, + [5348] = 3408, + [5349] = 430, + [5350] = 3403, + [5351] = 5264, + [5352] = 375, + [5353] = 5259, + [5354] = 373, + [5355] = 381, + [5356] = 361, + [5357] = 5357, + [5358] = 362, + [5359] = 443, + [5360] = 5360, + [5361] = 327, + [5362] = 362, + [5363] = 5363, + [5364] = 5364, + [5365] = 324, + [5366] = 5363, + [5367] = 5367, + [5368] = 5368, + [5369] = 354, + [5370] = 1404, + [5371] = 5360, + [5372] = 325, + [5373] = 5368, + [5374] = 5364, + [5375] = 448, + [5376] = 429, + [5377] = 5377, + [5378] = 5363, + [5379] = 5367, + [5380] = 395, + [5381] = 5360, + [5382] = 5382, + [5383] = 5363, + [5384] = 5364, + [5385] = 5367, + [5386] = 5360, + [5387] = 5367, + [5388] = 5360, + [5389] = 5389, + [5390] = 192, + [5391] = 5367, + [5392] = 5360, + [5393] = 5367, + [5394] = 5367, + [5395] = 5360, + [5396] = 372, + [5397] = 5367, + [5398] = 5360, + [5399] = 5367, + [5400] = 5360, + [5401] = 5401, + [5402] = 5367, + [5403] = 5360, + [5404] = 449, + [5405] = 382, + [5406] = 375, + [5407] = 377, + [5408] = 5377, + [5409] = 361, + [5410] = 450, + [5411] = 5411, + [5412] = 373, + [5413] = 355, + [5414] = 5414, + [5415] = 362, + [5416] = 5367, + [5417] = 451, + [5418] = 1645, + [5419] = 384, + [5420] = 361, + [5421] = 5364, + [5422] = 328, + [5423] = 377, + [5424] = 430, + [5425] = 5425, + [5426] = 326, + [5427] = 5346, + [5428] = 5368, + [5429] = 382, + [5430] = 441, + [5431] = 469, + [5432] = 1602, + [5433] = 354, + [5434] = 332, + [5435] = 5389, + [5436] = 440, + [5437] = 333, + [5438] = 5425, + [5439] = 362, + [5440] = 391, + [5441] = 5364, + [5442] = 443, + [5443] = 382, + [5444] = 5363, + [5445] = 355, + [5446] = 5364, + [5447] = 5360, + [5448] = 5425, + [5449] = 5360, + [5450] = 323, + [5451] = 444, + [5452] = 5274, + [5453] = 445, + [5454] = 5288, + [5455] = 5367, + [5456] = 324, + [5457] = 5457, + [5458] = 373, + [5459] = 446, + [5460] = 5425, + [5461] = 4677, + [5462] = 5462, + [5463] = 325, + [5464] = 5360, + [5465] = 5425, + [5466] = 5368, + [5467] = 5363, + [5468] = 4678, + [5469] = 447, + [5470] = 5360, + [5471] = 5425, + [5472] = 5360, + [5473] = 361, + [5474] = 384, + [5475] = 330, + [5476] = 329, + [5477] = 375, + [5478] = 431, + [5479] = 377, + [5480] = 429, + [5481] = 372, + [5482] = 433, + [5483] = 430, + [5484] = 434, + [5485] = 331, + [5486] = 375, + [5487] = 418, + [5488] = 373, + [5489] = 436, + [5490] = 437, + [5491] = 5363, + [5492] = 5284, + [5493] = 438, + [5494] = 384, + [5495] = 334, + [5496] = 439, + [5497] = 372, + [5498] = 5411, + [5499] = 5357, + [5500] = 5500, + [5501] = 561, + [5502] = 562, + [5503] = 563, + [5504] = 5504, + [5505] = 323, + [5506] = 324, + [5507] = 325, + [5508] = 1404, + [5509] = 5509, + [5510] = 361, + [5511] = 330, + [5512] = 362, + [5513] = 380, + [5514] = 555, + [5515] = 384, + [5516] = 1645, + [5517] = 4896, + [5518] = 1753, + [5519] = 1759, + [5520] = 329, + [5521] = 372, + [5522] = 331, + [5523] = 375, + [5524] = 373, + [5525] = 381, + [5526] = 1782, + [5527] = 5527, + [5528] = 328, + [5529] = 326, + [5530] = 362, + [5531] = 395, + [5532] = 583, + [5533] = 1818, + [5534] = 1836, + [5535] = 327, + [5536] = 391, + [5537] = 4999, + [5538] = 4805, + [5539] = 5504, + [5540] = 5006, + [5541] = 4928, + [5542] = 4930, + [5543] = 382, + [5544] = 4968, + [5545] = 5504, + [5546] = 5504, + [5547] = 1602, + [5548] = 5504, + [5549] = 1786, + [5550] = 330, + [5551] = 5504, + [5552] = 395, + [5553] = 5504, + [5554] = 5554, + [5555] = 5555, + [5556] = 5504, + [5557] = 384, + [5558] = 412, + [5559] = 5504, + [5560] = 5504, + [5561] = 323, + [5562] = 377, + [5563] = 329, + [5564] = 5504, + [5565] = 5504, + [5566] = 372, + [5567] = 5504, + [5568] = 391, + [5569] = 5504, + [5570] = 5504, + [5571] = 5504, + [5572] = 5504, + [5573] = 5504, + [5574] = 5504, + [5575] = 5504, + [5576] = 5504, + [5577] = 5504, + [5578] = 5504, + [5579] = 5504, + [5580] = 5504, + [5581] = 5504, + [5582] = 5504, + [5583] = 5504, + [5584] = 5504, + [5585] = 5504, + [5586] = 5504, + [5587] = 5504, + [5588] = 5504, + [5589] = 5504, + [5590] = 5504, + [5591] = 5504, + [5592] = 5504, + [5593] = 5504, + [5594] = 5504, + [5595] = 5504, + [5596] = 5504, + [5597] = 384, + [5598] = 331, + [5599] = 5504, + [5600] = 372, + [5601] = 375, + [5602] = 373, + [5603] = 375, + [5604] = 373, + [5605] = 414, + [5606] = 1404, + [5607] = 327, + [5608] = 1681, + [5609] = 1663, + [5610] = 361, + [5611] = 1803, + [5612] = 328, + [5613] = 326, + [5614] = 1666, + [5615] = 1804, + [5616] = 416, + [5617] = 391, + [5618] = 5382, + [5619] = 330, + [5620] = 417, + [5621] = 5504, + [5622] = 329, + [5623] = 331, + [5624] = 327, + [5625] = 334, + [5626] = 5504, + [5627] = 332, + [5628] = 333, + [5629] = 5527, + [5630] = 395, + [5631] = 5631, + [5632] = 449, + [5633] = 446, + [5634] = 416, + [5635] = 414, + [5636] = 314, + [5637] = 1404, + [5638] = 2643, + [5639] = 417, + [5640] = 372, + [5641] = 590, + [5642] = 375, + [5643] = 416, + [5644] = 2601, + [5645] = 2606, + [5646] = 417, + [5647] = 438, + [5648] = 431, + [5649] = 395, + [5650] = 5357, + [5651] = 469, + [5652] = 450, + [5653] = 2659, + [5654] = 443, + [5655] = 444, + [5656] = 384, + [5657] = 406, + [5658] = 5658, + [5659] = 5659, + [5660] = 431, + [5661] = 5661, + [5662] = 433, + [5663] = 391, + [5664] = 373, + [5665] = 583, + [5666] = 1681, + [5667] = 439, + [5668] = 2639, + [5669] = 2652, + [5670] = 5670, + [5671] = 1666, + [5672] = 5357, + [5673] = 429, + [5674] = 433, + [5675] = 2640, + [5676] = 451, + [5677] = 418, + [5678] = 334, + [5679] = 412, + [5680] = 2863, + [5681] = 436, + [5682] = 414, + [5683] = 373, + [5684] = 384, + [5685] = 434, + [5686] = 2813, + [5687] = 406, + [5688] = 430, + [5689] = 414, + [5690] = 454, + [5691] = 1404, + [5692] = 3169, + [5693] = 323, + [5694] = 440, + [5695] = 2862, + [5696] = 455, + [5697] = 441, + [5698] = 412, + [5699] = 408, + [5700] = 5382, + [5701] = 417, + [5702] = 416, + [5703] = 5703, + [5704] = 5670, + [5705] = 323, + [5706] = 5706, + [5707] = 561, + [5708] = 468, + [5709] = 2816, + [5710] = 445, + [5711] = 332, + [5712] = 408, + [5713] = 412, + [5714] = 333, + [5715] = 372, + [5716] = 375, + [5717] = 448, + [5718] = 332, + [5719] = 1663, + [5720] = 562, + [5721] = 563, + [5722] = 5003, + [5723] = 334, + [5724] = 333, + [5725] = 555, + [5726] = 437, + [5727] = 447, + [5728] = 1803, + [5729] = 5729, + [5730] = 5730, + [5731] = 5731, + [5732] = 561, + [5733] = 5733, + [5734] = 650, + [5735] = 5735, + [5736] = 5736, + [5737] = 651, + [5738] = 5738, + [5739] = 555, + [5740] = 1818, + [5741] = 5741, + [5742] = 653, + [5743] = 5743, + [5744] = 485, + [5745] = 5729, + [5746] = 5730, + [5747] = 5731, + [5748] = 377, + [5749] = 5733, + [5750] = 1836, + [5751] = 5738, + [5752] = 5752, + [5753] = 5753, + [5754] = 655, + [5755] = 5755, + [5756] = 5743, + [5757] = 382, + [5758] = 5729, + [5759] = 5730, + [5760] = 5731, + [5761] = 682, + [5762] = 5731, + [5763] = 5733, + [5764] = 683, + [5765] = 5738, + [5766] = 658, + [5767] = 659, + [5768] = 5768, + [5769] = 660, + [5770] = 5743, + [5771] = 5729, + [5772] = 5730, + [5773] = 5731, + [5774] = 661, + [5775] = 5733, + [5776] = 4160, + [5777] = 662, + [5778] = 5738, + [5779] = 5733, + [5780] = 479, + [5781] = 5743, + [5782] = 5743, + [5783] = 5729, + [5784] = 5730, + [5785] = 5731, + [5786] = 663, + [5787] = 5733, + [5788] = 5788, + [5789] = 665, + [5790] = 5738, + [5791] = 4218, + [5792] = 666, + [5793] = 667, + [5794] = 5743, + [5795] = 5729, + [5796] = 5730, + [5797] = 5797, + [5798] = 5731, + [5799] = 669, + [5800] = 5733, + [5801] = 5801, + [5802] = 670, + [5803] = 5738, + [5804] = 5729, + [5805] = 5805, + [5806] = 5738, + [5807] = 5743, + [5808] = 5729, + [5809] = 5730, + [5810] = 5731, + [5811] = 5733, + [5812] = 5812, + [5813] = 5813, + [5814] = 5738, + [5815] = 671, + [5816] = 502, + [5817] = 5817, + [5818] = 5730, + [5819] = 672, + [5820] = 5743, + [5821] = 5729, + [5822] = 5730, + [5823] = 5731, + [5824] = 1661, + [5825] = 5733, + [5826] = 5738, + [5827] = 5827, + [5828] = 5733, + [5829] = 5743, + [5830] = 5830, + [5831] = 5731, + [5832] = 5832, + [5833] = 5733, + [5834] = 5738, + [5835] = 583, + [5836] = 325, + [5837] = 5743, + [5838] = 5838, + [5839] = 5731, + [5840] = 5733, + [5841] = 5738, + [5842] = 5842, + [5843] = 5843, + [5844] = 5743, + [5845] = 5845, + [5846] = 5731, + [5847] = 5733, + [5848] = 5738, + [5849] = 5849, + [5850] = 5850, + [5851] = 5733, + [5852] = 5738, + [5853] = 5853, + [5854] = 5733, + [5855] = 5738, + [5856] = 5805, + [5857] = 5857, + [5858] = 5733, + [5859] = 5738, + [5860] = 1664, + [5861] = 5861, + [5862] = 5812, + [5863] = 5813, + [5864] = 5864, + [5865] = 5738, + [5866] = 5866, + [5867] = 631, + [5868] = 5731, + [5869] = 634, + [5870] = 5870, + [5871] = 636, + [5872] = 5872, + [5873] = 637, + [5874] = 5733, + [5875] = 638, + [5876] = 2908, + [5877] = 5729, + [5878] = 2909, + [5879] = 5730, + [5880] = 5743, + [5881] = 508, + [5882] = 5882, + [5883] = 695, + [5884] = 412, + [5885] = 5885, + [5886] = 640, + [5887] = 641, + [5888] = 1753, + [5889] = 5838, + [5890] = 5890, + [5891] = 5891, + [5892] = 649, + [5893] = 686, + [5894] = 5812, + [5895] = 687, + [5896] = 5896, + [5897] = 688, + [5898] = 5898, + [5899] = 5899, + [5900] = 642, + [5901] = 5901, + [5902] = 5902, + [5903] = 5903, + [5904] = 382, + [5905] = 5896, + [5906] = 5813, + [5907] = 562, + [5908] = 1759, + [5909] = 5898, + [5910] = 5899, + [5911] = 5901, + [5912] = 5903, + [5913] = 336, + [5914] = 689, + [5915] = 5735, + [5916] = 3174, + [5917] = 2813, + [5918] = 5918, + [5919] = 325, + [5920] = 4677, + [5921] = 563, + [5922] = 503, + [5923] = 4678, + [5924] = 324, + [5925] = 5925, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 1602, + [5931] = 5931, + [5932] = 5743, + [5933] = 5729, + [5934] = 5934, + [5935] = 485, + [5936] = 5872, + [5937] = 5937, + [5938] = 5938, + [5939] = 5753, + [5940] = 5730, + [5941] = 5830, + [5942] = 496, + [5943] = 5768, + [5944] = 5797, + [5945] = 5832, + [5946] = 5849, + [5947] = 5731, + [5948] = 5357, + [5949] = 5733, + [5950] = 5801, + [5951] = 5951, + [5952] = 2816, + [5953] = 5953, + [5954] = 5738, + [5955] = 1602, + [5956] = 377, + [5957] = 414, + [5958] = 5738, + [5959] = 5937, + [5960] = 315, + [5961] = 478, + [5962] = 497, + [5963] = 5963, + [5964] = 5925, + [5965] = 5927, + [5966] = 5928, + [5967] = 5929, + [5968] = 1782, + [5969] = 1786, + [5970] = 5830, + [5971] = 5731, + [5972] = 695, + [5973] = 1645, + [5974] = 681, + [5975] = 5975, + [5976] = 5729, + [5977] = 5977, + [5978] = 5978, + [5979] = 495, + [5980] = 5980, + [5981] = 382, + [5982] = 643, + [5983] = 5983, + [5984] = 5743, + [5985] = 710, + [5986] = 5986, + [5987] = 5729, + [5988] = 5890, + [5989] = 5891, + [5990] = 5730, + [5991] = 5991, + [5992] = 5992, + [5993] = 1645, + [5994] = 5994, + [5995] = 5731, + [5996] = 710, + [5997] = 425, + [5998] = 5866, + [5999] = 467, + [6000] = 5733, + [6001] = 5730, + [6002] = 5743, + [6003] = 1804, + [6004] = 3714, + [6005] = 3719, + [6006] = 485, + [6007] = 416, + [6008] = 502, + [6009] = 478, + [6010] = 479, + [6011] = 417, + [6012] = 5801, + [6013] = 5738, + [6014] = 644, + [6015] = 502, + [6016] = 478, + [6017] = 479, + [6018] = 5801, + [6019] = 336, + [6020] = 5830, + [6021] = 6021, + [6022] = 377, + [6023] = 324, + [6024] = 647, + [6025] = 5743, + [6026] = 5703, + [6027] = 5885, + [6028] = 5938, + [6029] = 5994, + [6030] = 1782, + [6031] = 6031, + [6032] = 6032, + [6033] = 6033, + [6034] = 6034, + [6035] = 433, + [6036] = 1753, + [6037] = 4805, + [6038] = 1759, + [6039] = 328, + [6040] = 326, + [6041] = 434, + [6042] = 5975, + [6043] = 1661, + [6044] = 380, + [6045] = 6045, + [6046] = 1664, + [6047] = 382, + [6048] = 381, + [6049] = 3714, + [6050] = 4968, + [6051] = 418, + [6052] = 436, + [6053] = 6053, + [6054] = 6054, + [6055] = 437, + [6056] = 438, + [6057] = 439, + [6058] = 440, + [6059] = 3719, + [6060] = 502, + [6061] = 478, + [6062] = 479, + [6063] = 6063, + [6064] = 323, + [6065] = 526, + [6066] = 1818, + [6067] = 431, + [6068] = 441, + [6069] = 433, + [6070] = 469, + [6071] = 443, + [6072] = 1836, + [6073] = 444, + [6074] = 445, + [6075] = 446, + [6076] = 6076, + [6077] = 6031, + [6078] = 447, + [6079] = 448, + [6080] = 449, + [6081] = 6081, + [6082] = 1786, + [6083] = 450, + [6084] = 5752, + [6085] = 1666, + [6086] = 451, + [6087] = 377, + [6088] = 5845, + [6089] = 5755, + [6090] = 2813, + [6091] = 3714, + [6092] = 1666, + [6093] = 395, + [6094] = 529, + [6095] = 4999, + [6096] = 6096, + [6097] = 377, + [6098] = 391, + [6099] = 6099, + [6100] = 5857, + [6101] = 5978, + [6102] = 5991, + [6103] = 382, + [6104] = 330, + [6105] = 329, + [6106] = 331, + [6107] = 6107, + [6108] = 327, + [6109] = 6109, + [6110] = 4896, + [6111] = 6076, + [6112] = 5861, + [6113] = 6031, + [6114] = 330, + [6115] = 6081, + [6116] = 6116, + [6117] = 395, + [6118] = 329, + [6119] = 331, + [6120] = 6120, + [6121] = 327, + [6122] = 6076, + [6123] = 6123, + [6124] = 6081, + [6125] = 3719, + [6126] = 391, + [6127] = 6127, + [6128] = 6076, + [6129] = 6081, + [6130] = 6076, + [6131] = 6131, + [6132] = 6081, + [6133] = 6076, + [6134] = 6081, + [6135] = 6096, + [6136] = 6053, + [6137] = 6054, + [6138] = 6076, + [6139] = 6081, + [6140] = 6076, + [6141] = 6141, + [6142] = 6081, + [6143] = 6076, + [6144] = 6144, + [6145] = 5006, + [6146] = 485, + [6147] = 6076, + [6148] = 6031, + [6149] = 4928, + [6150] = 6081, + [6151] = 4930, + [6152] = 6076, + [6153] = 6081, + [6154] = 6076, + [6155] = 328, + [6156] = 6081, + [6157] = 6157, + [6158] = 2816, + [6159] = 6076, + [6160] = 6081, + [6161] = 6081, + [6162] = 6162, + [6163] = 6144, + [6164] = 6076, + [6165] = 6081, + [6166] = 6076, + [6167] = 6081, + [6168] = 1803, + [6169] = 1804, + [6170] = 326, + [6171] = 395, + [6172] = 5703, + [6173] = 6109, + [6174] = 6081, + [6175] = 6175, + [6176] = 6176, + [6177] = 1681, + [6178] = 391, + [6179] = 6179, + [6180] = 6180, + [6181] = 6181, + [6182] = 1663, + [6183] = 1645, + [6184] = 6176, + [6185] = 6096, + [6186] = 6053, + [6187] = 6054, + [6188] = 6144, + [6189] = 1681, + [6190] = 6179, + [6191] = 6180, + [6192] = 6192, + [6193] = 1602, + [6194] = 1663, + [6195] = 6096, + [6196] = 6053, + [6197] = 6054, + [6198] = 6144, + [6199] = 6179, + [6200] = 6180, + [6201] = 6179, + [6202] = 6180, + [6203] = 6179, + [6204] = 6180, + [6205] = 6179, + [6206] = 6180, + [6207] = 6179, + [6208] = 6180, + [6209] = 6179, + [6210] = 6180, + [6211] = 6179, + [6212] = 6180, + [6213] = 431, + [6214] = 6179, + [6215] = 6180, + [6216] = 6179, + [6217] = 6180, + [6218] = 6180, + [6219] = 6179, + [6220] = 6180, + [6221] = 6179, + [6222] = 6180, + [6223] = 6179, + [6224] = 6180, + [6225] = 6179, + [6226] = 6180, + [6227] = 6179, + [6228] = 6180, + [6229] = 6179, + [6230] = 6180, + [6231] = 6179, + [6232] = 6180, + [6233] = 6076, + [6234] = 6032, + [6235] = 6033, + [6236] = 6034, + [6237] = 6099, + [6238] = 6181, + [6239] = 6239, + [6240] = 6239, + [6241] = 6241, + [6242] = 377, + [6243] = 6243, + [6244] = 6179, + [6245] = 6245, + [6246] = 6246, + [6247] = 6247, + [6248] = 567, + [6249] = 6249, + [6250] = 583, + [6251] = 6245, + [6252] = 6252, + [6253] = 4798, + [6254] = 6162, + [6255] = 6255, + [6256] = 6256, + [6257] = 6257, + [6258] = 555, + [6259] = 6259, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 6263, + [6264] = 6264, + [6265] = 6265, + [6266] = 6266, + [6267] = 6267, + [6268] = 6268, + [6269] = 6269, + [6270] = 6261, + [6271] = 6263, + [6272] = 6265, + [6273] = 6273, + [6274] = 2639, + [6275] = 2652, + [6276] = 412, + [6277] = 6277, + [6278] = 6278, + [6279] = 332, + [6280] = 6280, + [6281] = 6281, + [6282] = 1602, + [6283] = 333, + [6284] = 6284, + [6285] = 6285, + [6286] = 6286, + [6287] = 414, + [6288] = 6249, + [6289] = 6289, + [6290] = 6245, + [6291] = 6291, + [6292] = 3298, + [6293] = 6293, + [6294] = 6262, + [6295] = 6295, + [6296] = 3299, + [6297] = 6297, + [6298] = 2601, + [6299] = 6299, + [6300] = 6300, + [6301] = 6301, + [6302] = 6266, + [6303] = 6267, + [6304] = 6268, + [6305] = 6269, + [6306] = 6261, + [6307] = 6263, + [6308] = 6265, + [6309] = 6273, + [6310] = 6310, + [6311] = 2606, + [6312] = 416, + [6313] = 6249, + [6314] = 6245, + [6315] = 6315, + [6316] = 6316, + [6317] = 1666, + [6318] = 6318, + [6319] = 6319, + [6320] = 6262, + [6321] = 6321, + [6322] = 6322, + [6323] = 6269, + [6324] = 417, + [6325] = 6266, + [6326] = 6267, + [6327] = 6268, + [6328] = 6269, + [6329] = 6261, + [6330] = 6263, + [6331] = 6265, + [6332] = 6273, + [6333] = 3053, + [6334] = 6249, + [6335] = 6245, + [6336] = 6336, + [6337] = 578, + [6338] = 6338, + [6339] = 579, + [6340] = 2643, + [6341] = 6262, + [6342] = 6342, + [6343] = 3056, + [6344] = 6344, + [6345] = 6345, + [6346] = 6346, + [6347] = 6266, + [6348] = 6267, + [6349] = 6268, + [6350] = 6269, + [6351] = 6261, + [6352] = 6263, + [6353] = 6265, + [6354] = 6273, + [6355] = 6355, + [6356] = 6356, + [6357] = 6249, + [6358] = 6358, + [6359] = 6245, + [6360] = 6360, + [6361] = 6361, + [6362] = 6362, + [6363] = 6363, + [6364] = 6262, + [6365] = 583, + [6366] = 6366, + [6367] = 6367, + [6368] = 6368, + [6369] = 6369, + [6370] = 6370, + [6371] = 6266, + [6372] = 6267, + [6373] = 6268, + [6374] = 6269, + [6375] = 6261, + [6376] = 6263, + [6377] = 6265, + [6378] = 6273, + [6379] = 6262, + [6380] = 548, + [6381] = 6249, + [6382] = 6245, + [6383] = 6267, + [6384] = 6249, + [6385] = 6262, + [6386] = 574, + [6387] = 6387, + [6388] = 3062, + [6389] = 4701, + [6390] = 6266, + [6391] = 6267, + [6392] = 6268, + [6393] = 6269, + [6394] = 6261, + [6395] = 6263, + [6396] = 6265, + [6397] = 6273, + [6398] = 558, + [6399] = 6249, + [6400] = 6400, + [6401] = 6245, + [6402] = 561, + [6403] = 6403, + [6404] = 560, + [6405] = 6262, + [6406] = 6268, + [6407] = 6245, + [6408] = 6408, + [6409] = 6409, + [6410] = 6410, + [6411] = 6266, + [6412] = 6267, + [6413] = 6268, + [6414] = 6269, + [6415] = 6261, + [6416] = 6263, + [6417] = 6265, + [6418] = 6273, + [6419] = 6419, + [6420] = 6249, + [6421] = 6245, + [6422] = 6422, + [6423] = 6423, + [6424] = 6249, + [6425] = 6425, + [6426] = 6262, + [6427] = 6427, + [6428] = 3093, + [6429] = 4788, + [6430] = 6266, + [6431] = 6267, + [6432] = 6268, + [6433] = 6269, + [6434] = 6261, + [6435] = 6263, + [6436] = 6265, + [6437] = 6273, + [6438] = 3292, + [6439] = 6249, + [6440] = 6245, + [6441] = 3293, + [6442] = 6262, + [6443] = 6245, + [6444] = 391, + [6445] = 6266, + [6446] = 6267, + [6447] = 6268, + [6448] = 6269, + [6449] = 6261, + [6450] = 6263, + [6451] = 6265, + [6452] = 6273, + [6453] = 583, + [6454] = 6249, + [6455] = 6245, + [6456] = 6269, + [6457] = 6457, + [6458] = 6262, + [6459] = 6459, + [6460] = 6460, + [6461] = 6461, + [6462] = 562, + [6463] = 6463, + [6464] = 6266, + [6465] = 6267, + [6466] = 6268, + [6467] = 6269, + [6468] = 6261, + [6469] = 6263, + [6470] = 6265, + [6471] = 6273, + [6472] = 563, + [6473] = 6249, + [6474] = 6474, + [6475] = 6475, + [6476] = 6476, + [6477] = 6262, + [6478] = 6478, + [6479] = 6262, + [6480] = 395, + [6481] = 6481, + [6482] = 6482, + [6483] = 6266, + [6484] = 6267, + [6485] = 6268, + [6486] = 6269, + [6487] = 6261, + [6488] = 6263, + [6489] = 6265, + [6490] = 6273, + [6491] = 6400, + [6492] = 6249, + [6493] = 6493, + [6494] = 6245, + [6495] = 6249, + [6496] = 6262, + [6497] = 6497, + [6498] = 2640, + [6499] = 6266, + [6500] = 6267, + [6501] = 6268, + [6502] = 6269, + [6503] = 6261, + [6504] = 6263, + [6505] = 6265, + [6506] = 6273, + [6507] = 6507, + [6508] = 6249, + [6509] = 6509, + [6510] = 6245, + [6511] = 580, + [6512] = 6262, + [6513] = 6262, + [6514] = 6266, + [6515] = 6267, + [6516] = 6268, + [6517] = 6269, + [6518] = 6261, + [6519] = 6263, + [6520] = 6265, + [6521] = 6273, + [6522] = 6522, + [6523] = 6249, + [6524] = 6524, + [6525] = 6245, + [6526] = 6262, + [6527] = 6527, + [6528] = 6266, + [6529] = 6267, + [6530] = 6268, + [6531] = 6269, + [6532] = 6261, + [6533] = 6263, + [6534] = 6265, + [6535] = 6273, + [6536] = 6273, + [6537] = 6249, + [6538] = 6245, + [6539] = 6262, + [6540] = 6266, + [6541] = 6267, + [6542] = 6268, + [6543] = 6269, + [6544] = 6261, + [6545] = 6263, + [6546] = 6265, + [6547] = 6273, + [6548] = 6261, + [6549] = 6249, + [6550] = 6245, + [6551] = 6262, + [6552] = 6266, + [6553] = 6267, + [6554] = 6268, + [6555] = 6269, + [6556] = 6261, + [6557] = 6263, + [6558] = 6265, + [6559] = 6273, + [6560] = 6249, + [6561] = 6245, + [6562] = 6262, + [6563] = 6249, + [6564] = 6245, + [6565] = 6565, + [6566] = 6262, + [6567] = 6249, + [6568] = 6245, + [6569] = 6262, + [6570] = 6249, + [6571] = 6245, + [6572] = 6262, + [6573] = 6249, + [6574] = 6245, + [6575] = 6262, + [6576] = 6249, + [6577] = 6245, + [6578] = 6262, + [6579] = 6249, + [6580] = 6245, + [6581] = 6262, + [6582] = 6582, + [6583] = 6249, + [6584] = 6245, + [6585] = 6262, + [6586] = 6263, + [6587] = 6249, + [6588] = 6245, + [6589] = 6262, + [6590] = 6249, + [6591] = 6245, + [6592] = 6262, + [6593] = 6249, + [6594] = 6245, + [6595] = 6262, + [6596] = 6249, + [6597] = 6245, + [6598] = 6262, + [6599] = 6265, + [6600] = 6249, + [6601] = 6245, + [6602] = 6262, + [6603] = 6603, + [6604] = 6249, + [6605] = 6245, + [6606] = 6262, + [6607] = 6607, + [6608] = 6249, + [6609] = 6245, + [6610] = 6262, + [6611] = 6249, + [6612] = 6245, + [6613] = 6262, + [6614] = 6249, + [6615] = 6245, + [6616] = 6262, + [6617] = 6249, + [6618] = 6245, + [6619] = 6262, + [6620] = 6249, + [6621] = 6245, + [6622] = 6262, + [6623] = 6249, + [6624] = 6245, + [6625] = 6262, + [6626] = 6249, + [6627] = 6245, + [6628] = 6262, + [6629] = 6249, + [6630] = 6245, + [6631] = 6262, + [6632] = 6249, + [6633] = 6245, + [6634] = 6262, + [6635] = 6249, + [6636] = 6245, + [6637] = 6262, + [6638] = 6249, + [6639] = 6245, + [6640] = 6262, + [6641] = 6249, + [6642] = 6245, + [6643] = 6262, + [6644] = 6249, + [6645] = 6245, + [6646] = 6262, + [6647] = 6249, + [6648] = 6245, + [6649] = 6262, + [6650] = 6245, + [6651] = 6262, + [6652] = 6245, + [6653] = 6262, + [6654] = 6245, + [6655] = 6262, + [6656] = 6656, + [6657] = 6249, + [6658] = 6658, + [6659] = 6659, + [6660] = 581, + [6661] = 6661, + [6662] = 6662, + [6663] = 6663, + [6664] = 6664, + [6665] = 6665, + [6666] = 412, + [6667] = 6667, + [6668] = 6668, + [6669] = 6669, + [6670] = 6670, + [6671] = 6671, + [6672] = 1645, + [6673] = 414, + [6674] = 6674, + [6675] = 6527, + [6676] = 6674, + [6677] = 6677, + [6678] = 6425, + [6679] = 562, + [6680] = 6680, + [6681] = 6681, + [6682] = 563, + [6683] = 416, + [6684] = 6684, + [6685] = 417, + [6686] = 377, + [6687] = 6687, + [6688] = 395, + [6689] = 6689, + [6690] = 1666, + [6691] = 3314, + [6692] = 6692, + [6693] = 6693, + [6694] = 332, + [6695] = 3063, + [6696] = 412, + [6697] = 6697, + [6698] = 6698, + [6699] = 6107, + [6700] = 333, + [6701] = 6701, + [6702] = 6266, + [6703] = 577, + [6704] = 6704, + [6705] = 6705, + [6706] = 6706, + [6707] = 6707, + [6708] = 6708, + [6709] = 6709, + [6710] = 6249, + [6711] = 6249, + [6712] = 6712, + [6713] = 6713, + [6714] = 6714, + [6715] = 6715, + [6716] = 561, + [6717] = 555, + [6718] = 6718, + [6719] = 6719, + [6720] = 6720, + [6721] = 6721, + [6722] = 548, + [6723] = 3315, + [6724] = 564, + [6725] = 6725, + [6726] = 2659, + [6727] = 3066, + [6728] = 4698, + [6729] = 414, + [6730] = 6730, + [6731] = 6731, + [6732] = 6664, + [6733] = 6733, + [6734] = 196, + [6735] = 6735, + [6736] = 6736, + [6737] = 6266, + [6738] = 6267, + [6739] = 6739, + [6740] = 1681, + [6741] = 6268, + [6742] = 6269, + [6743] = 1663, + [6744] = 6744, + [6745] = 6745, + [6746] = 6746, + [6747] = 6747, + [6748] = 583, + [6749] = 561, + [6750] = 4705, + [6751] = 567, + [6752] = 6668, + [6753] = 555, + [6754] = 6754, + [6755] = 6677, + [6756] = 558, + [6757] = 6757, + [6758] = 560, + [6759] = 6661, + [6760] = 6261, + [6761] = 6263, + [6762] = 6265, + [6763] = 1645, + [6764] = 6764, + [6765] = 6245, + [6766] = 416, + [6767] = 562, + [6768] = 6063, + [6769] = 6769, + [6770] = 561, + [6771] = 6771, + [6772] = 6681, + [6773] = 6273, + [6774] = 6774, + [6775] = 6775, + [6776] = 391, + [6777] = 563, + [6778] = 6778, + [6779] = 6267, + [6780] = 564, + [6781] = 590, + [6782] = 6273, + [6783] = 6783, + [6784] = 562, + [6785] = 563, + [6786] = 6786, + [6787] = 6787, + [6788] = 6788, + [6789] = 6789, + [6790] = 6790, + [6791] = 6791, + [6792] = 417, + [6793] = 6733, + [6794] = 6794, + [6795] = 6493, + [6796] = 6507, + [6797] = 6774, + [6798] = 6721, + [6799] = 6266, + [6800] = 334, + [6801] = 6801, + [6802] = 6802, + [6803] = 6733, + [6804] = 6493, + [6805] = 6507, + [6806] = 6774, + [6807] = 6807, + [6808] = 3714, + [6809] = 3719, + [6810] = 6810, + [6811] = 6811, + [6812] = 6812, + [6813] = 6268, + [6814] = 334, + [6815] = 6815, + [6816] = 1602, + [6817] = 6259, + [6818] = 6818, + [6819] = 6819, + [6820] = 6812, + [6821] = 6821, + [6822] = 6822, + [6823] = 6823, + [6824] = 6824, + [6825] = 1666, + [6826] = 6826, + [6827] = 6827, + [6828] = 6693, + [6829] = 670, + [6830] = 6819, + [6831] = 191, + [6832] = 275, + [6833] = 6697, + [6834] = 6247, + [6835] = 6835, + [6836] = 6764, + [6837] = 6704, + [6838] = 710, + [6839] = 562, + [6840] = 611, + [6841] = 612, + [6842] = 6842, + [6843] = 563, + [6844] = 647, + [6845] = 6845, + [6846] = 6826, + [6847] = 6847, + [6848] = 6848, + [6849] = 6849, + [6850] = 6850, + [6851] = 6821, + [6852] = 6822, + [6853] = 6823, + [6854] = 631, + [6855] = 6824, + [6856] = 634, + [6857] = 6857, + [6858] = 6826, + [6859] = 6827, + [6860] = 6819, + [6861] = 6706, + [6862] = 6422, + [6863] = 6863, + [6864] = 6423, + [6865] = 6707, + [6866] = 6842, + [6867] = 6427, + [6868] = 6714, + [6869] = 649, + [6870] = 6847, + [6871] = 6848, + [6872] = 6842, + [6873] = 6850, + [6874] = 6874, + [6875] = 6821, + [6876] = 6822, + [6877] = 6823, + [6878] = 6878, + [6879] = 6824, + [6880] = 6735, + [6881] = 6826, + [6882] = 6827, + [6883] = 6819, + [6884] = 6849, + [6885] = 3101, + [6886] = 6345, + [6887] = 6887, + [6888] = 6863, + [6889] = 6889, + [6890] = 3062, + [6891] = 2995, + [6892] = 6842, + [6893] = 6893, + [6894] = 6460, + [6895] = 6827, + [6896] = 6848, + [6897] = 3155, + [6898] = 6850, + [6899] = 6821, + [6900] = 6822, + [6901] = 6823, + [6902] = 6824, + [6903] = 6826, + [6904] = 6827, + [6905] = 6842, + [6906] = 6819, + [6907] = 6819, + [6908] = 6461, + [6909] = 6788, + [6910] = 6299, + [6911] = 6911, + [6912] = 694, + [6913] = 3156, + [6914] = 691, + [6915] = 6842, + [6916] = 6476, + [6917] = 697, + [6918] = 6918, + [6919] = 6848, + [6920] = 6482, + [6921] = 6850, + [6922] = 6264, + [6923] = 583, + [6924] = 6821, + [6925] = 6822, + [6926] = 6823, + [6927] = 3053, + [6928] = 6824, + [6929] = 6509, + [6930] = 6826, + [6931] = 6827, + [6932] = 662, + [6933] = 6819, + [6934] = 6246, + [6935] = 6935, + [6936] = 3056, + [6937] = 6937, + [6938] = 6938, + [6939] = 6842, + [6940] = 6847, + [6941] = 412, + [6942] = 3121, + [6943] = 6848, + [6944] = 3122, + [6945] = 6850, + [6946] = 658, + [6947] = 6821, + [6948] = 6822, + [6949] = 6823, + [6950] = 6824, + [6951] = 6848, + [6952] = 6826, + [6953] = 6827, + [6954] = 6257, + [6955] = 3123, + [6956] = 6850, + [6957] = 6850, + [6958] = 6958, + [6959] = 6787, + [6960] = 644, + [6961] = 6789, + [6962] = 6842, + [6963] = 6801, + [6964] = 6811, + [6965] = 6965, + [6966] = 6848, + [6967] = 6850, + [6968] = 3125, + [6969] = 6316, + [6970] = 6821, + [6971] = 6822, + [6972] = 6823, + [6973] = 6824, + [6974] = 561, + [6975] = 1602, + [6976] = 6826, + [6977] = 6827, + [6978] = 6255, + [6979] = 6819, + [6980] = 6360, + [6981] = 6403, + [6982] = 6408, + [6983] = 583, + [6984] = 6409, + [6985] = 637, + [6986] = 6986, + [6987] = 6842, + [6988] = 6410, + [6989] = 6419, + [6990] = 6893, + [6991] = 1645, + [6992] = 6848, + [6993] = 416, + [6994] = 6850, + [6995] = 6463, + [6996] = 6821, + [6997] = 6822, + [6998] = 6823, + [6999] = 6497, + [7000] = 6824, + [7001] = 638, + [7002] = 6826, + [7003] = 6827, + [7004] = 6715, + [7005] = 6524, + [7006] = 6819, + [7007] = 6667, + [7008] = 6670, + [7009] = 6687, + [7010] = 7010, + [7011] = 6842, + [7012] = 6701, + [7013] = 6705, + [7014] = 6775, + [7015] = 6848, + [7016] = 6850, + [7017] = 6318, + [7018] = 6821, + [7019] = 6822, + [7020] = 6823, + [7021] = 6319, + [7022] = 6824, + [7023] = 6857, + [7024] = 6826, + [7025] = 6827, + [7026] = 6281, + [7027] = 6819, + [7028] = 6286, + [7029] = 7029, + [7030] = 6821, + [7031] = 6822, + [7032] = 6823, + [7033] = 7033, + [7034] = 7034, + [7035] = 6842, + [7036] = 6778, + [7037] = 6842, + [7038] = 6848, + [7039] = 6850, + [7040] = 6285, + [7041] = 6821, + [7042] = 6822, + [7043] = 6823, + [7044] = 6824, + [7045] = 710, + [7046] = 6322, + [7047] = 6826, + [7048] = 6827, + [7049] = 6358, + [7050] = 6819, + [7051] = 6842, + [7052] = 7052, + [7053] = 6848, + [7054] = 6850, + [7055] = 686, + [7056] = 6821, + [7057] = 6822, + [7058] = 6823, + [7059] = 6824, + [7060] = 7060, + [7061] = 6826, + [7062] = 6827, + [7063] = 7063, + [7064] = 1681, + [7065] = 6819, + [7066] = 645, + [7067] = 6362, + [7068] = 6582, + [7069] = 6794, + [7070] = 6603, + [7071] = 6289, + [7072] = 6842, + [7073] = 6607, + [7074] = 6848, + [7075] = 6850, + [7076] = 6310, + [7077] = 6790, + [7078] = 6821, + [7079] = 6822, + [7080] = 6823, + [7081] = 6824, + [7082] = 6826, + [7083] = 6827, + [7084] = 6819, + [7085] = 6791, + [7086] = 689, + [7087] = 7087, + [7088] = 1663, + [7089] = 6850, + [7090] = 7090, + [7091] = 6821, + [7092] = 6822, + [7093] = 6823, + [7094] = 6824, + [7095] = 646, + [7096] = 6826, + [7097] = 6827, + [7098] = 6835, + [7099] = 6819, + [7100] = 6824, + [7101] = 6826, + [7102] = 6720, + [7103] = 6827, + [7104] = 6850, + [7105] = 6342, + [7106] = 6821, + [7107] = 6822, + [7108] = 6823, + [7109] = 7109, + [7110] = 6824, + [7111] = 6826, + [7112] = 6827, + [7113] = 7113, + [7114] = 6819, + [7115] = 412, + [7116] = 6367, + [7117] = 6850, + [7118] = 7118, + [7119] = 6821, + [7120] = 6822, + [7121] = 6823, + [7122] = 6291, + [7123] = 6824, + [7124] = 6293, + [7125] = 6826, + [7126] = 6827, + [7127] = 6295, + [7128] = 6819, + [7129] = 6300, + [7130] = 6301, + [7131] = 6315, + [7132] = 6321, + [7133] = 7133, + [7134] = 6708, + [7135] = 6336, + [7136] = 6709, + [7137] = 6712, + [7138] = 664, + [7139] = 668, + [7140] = 6713, + [7141] = 6346, + [7142] = 7142, + [7143] = 6355, + [7144] = 6356, + [7145] = 6848, + [7146] = 6361, + [7147] = 6819, + [7148] = 648, + [7149] = 6819, + [7150] = 6363, + [7151] = 417, + [7152] = 6835, + [7153] = 6847, + [7154] = 4629, + [7155] = 562, + [7156] = 7156, + [7157] = 671, + [7158] = 6369, + [7159] = 414, + [7160] = 659, + [7161] = 414, + [7162] = 4630, + [7163] = 3063, + [7164] = 7034, + [7165] = 7165, + [7166] = 650, + [7167] = 713, + [7168] = 681, + [7169] = 6746, + [7170] = 674, + [7171] = 675, + [7172] = 6366, + [7173] = 651, + [7174] = 6338, + [7175] = 6256, + [7176] = 641, + [7177] = 642, + [7178] = 6669, + [7179] = 6565, + [7180] = 6824, + [7181] = 6278, + [7182] = 676, + [7183] = 695, + [7184] = 677, + [7185] = 6387, + [7186] = 6824, + [7187] = 6826, + [7188] = 6827, + [7189] = 6671, + [7190] = 6725, + [7191] = 6730, + [7192] = 7192, + [7193] = 6731, + [7194] = 6718, + [7195] = 6719, + [7196] = 4733, + [7197] = 3066, + [7198] = 1666, + [7199] = 561, + [7200] = 6847, + [7201] = 2990, + [7202] = 7202, + [7203] = 6769, + [7204] = 663, + [7205] = 555, + [7206] = 695, + [7207] = 7207, + [7208] = 7208, + [7209] = 7209, + [7210] = 416, + [7211] = 6848, + [7212] = 7212, + [7213] = 6818, + [7214] = 653, + [7215] = 7215, + [7216] = 687, + [7217] = 688, + [7218] = 643, + [7219] = 7219, + [7220] = 7215, + [7221] = 7221, + [7222] = 7222, + [7223] = 6344, + [7224] = 655, + [7225] = 417, + [7226] = 6958, + [7227] = 7227, + [7228] = 6842, + [7229] = 7229, + [7230] = 7230, + [7231] = 4677, + [7232] = 7232, + [7233] = 6807, + [7234] = 7234, + [7235] = 4678, + [7236] = 652, + [7237] = 654, + [7238] = 3143, + [7239] = 6874, + [7240] = 656, + [7241] = 7241, + [7242] = 7222, + [7243] = 6887, + [7244] = 672, + [7245] = 7245, + [7246] = 6457, + [7247] = 6850, + [7248] = 7248, + [7249] = 6459, + [7250] = 2991, + [7251] = 6847, + [7252] = 6475, + [7253] = 682, + [7254] = 683, + [7255] = 6478, + [7256] = 6481, + [7257] = 1681, + [7258] = 6848, + [7259] = 7259, + [7260] = 7260, + [7261] = 6297, + [7262] = 6850, + [7263] = 6656, + [7264] = 7264, + [7265] = 7202, + [7266] = 6252, + [7267] = 6658, + [7268] = 7215, + [7269] = 6821, + [7270] = 6822, + [7271] = 6823, + [7272] = 6958, + [7273] = 1666, + [7274] = 7232, + [7275] = 7234, + [7276] = 7202, + [7277] = 7277, + [7278] = 3150, + [7279] = 6874, + [7280] = 698, + [7281] = 6835, + [7282] = 7282, + [7283] = 190, + [7284] = 6824, + [7285] = 6284, + [7286] = 640, + [7287] = 639, + [7288] = 6826, + [7289] = 6827, + [7290] = 665, + [7291] = 6819, + [7292] = 6744, + [7293] = 563, + [7294] = 6821, + [7295] = 7295, + [7296] = 7113, + [7297] = 7232, + [7298] = 7202, + [7299] = 6659, + [7300] = 6822, + [7301] = 7215, + [7302] = 6662, + [7303] = 7303, + [7304] = 6663, + [7305] = 6958, + [7306] = 7232, + [7307] = 7234, + [7308] = 6874, + [7309] = 3093, + [7310] = 7202, + [7311] = 7142, + [7312] = 7215, + [7313] = 620, + [7314] = 6958, + [7315] = 7232, + [7316] = 5401, + [7317] = 7234, + [7318] = 6874, + [7319] = 7202, + [7320] = 7215, + [7321] = 1602, + [7322] = 7322, + [7323] = 6958, + [7324] = 7232, + [7325] = 5414, + [7326] = 7234, + [7327] = 6874, + [7328] = 7202, + [7329] = 6747, + [7330] = 6935, + [7331] = 7215, + [7332] = 7212, + [7333] = 6958, + [7334] = 7232, + [7335] = 7234, + [7336] = 6874, + [7337] = 7202, + [7338] = 6754, + [7339] = 7192, + [7340] = 7215, + [7341] = 6958, + [7342] = 7232, + [7343] = 7234, + [7344] = 6874, + [7345] = 7202, + [7346] = 6757, + [7347] = 7215, + [7348] = 6857, + [7349] = 3151, + [7350] = 6958, + [7351] = 7232, + [7352] = 7234, + [7353] = 6874, + [7354] = 7202, + [7355] = 7215, + [7356] = 6958, + [7357] = 7232, + [7358] = 583, + [7359] = 7234, + [7360] = 6874, + [7361] = 7202, + [7362] = 7362, + [7363] = 7215, + [7364] = 6958, + [7365] = 7232, + [7366] = 7234, + [7367] = 6874, + [7368] = 7202, + [7369] = 6823, + [7370] = 7215, + [7371] = 3152, + [7372] = 6958, + [7373] = 7232, + [7374] = 6802, + [7375] = 7234, + [7376] = 6874, + [7377] = 7202, + [7378] = 7215, + [7379] = 7234, + [7380] = 6958, + [7381] = 7232, + [7382] = 7234, + [7383] = 6874, + [7384] = 7202, + [7385] = 7385, + [7386] = 7215, + [7387] = 561, + [7388] = 6958, + [7389] = 7232, + [7390] = 7234, + [7391] = 6874, + [7392] = 7202, + [7393] = 7215, + [7394] = 6958, + [7395] = 7232, + [7396] = 7396, + [7397] = 7234, + [7398] = 6874, + [7399] = 7202, + [7400] = 7215, + [7401] = 666, + [7402] = 6958, + [7403] = 7232, + [7404] = 7234, + [7405] = 6874, + [7406] = 7202, + [7407] = 7215, + [7408] = 6958, + [7409] = 7232, + [7410] = 7234, + [7411] = 6874, + [7412] = 7202, + [7413] = 7215, + [7414] = 636, + [7415] = 6958, + [7416] = 7232, + [7417] = 7234, + [7418] = 6874, + [7419] = 7202, + [7420] = 7215, + [7421] = 6958, + [7422] = 7232, + [7423] = 7234, + [7424] = 6874, + [7425] = 667, + [7426] = 7208, + [7427] = 6745, + [7428] = 6893, + [7429] = 6842, + [7430] = 6280, + [7431] = 6810, + [7432] = 669, + [7433] = 7259, + [7434] = 7260, + [7435] = 6821, + [7436] = 6822, + [7437] = 6823, + [7438] = 1645, + [7439] = 6847, + [7440] = 6848, + [7441] = 6689, + [7442] = 7442, + [7443] = 7443, + [7444] = 6736, + [7445] = 660, + [7446] = 555, + [7447] = 1663, + [7448] = 6850, + [7449] = 661, + [7450] = 562, + [7451] = 563, + [7452] = 6692, + [7453] = 7209, + [7454] = 6815, + [7455] = 4695, + [7456] = 7456, + [7457] = 7457, + [7458] = 7458, + [7459] = 7459, + [7460] = 7460, + [7461] = 4928, + [7462] = 7462, + [7463] = 7463, + [7464] = 2640, + [7465] = 7465, + [7466] = 7466, + [7467] = 7467, + [7468] = 7468, + [7469] = 7459, + [7470] = 7470, + [7471] = 7471, + [7472] = 712, + [7473] = 3633, + [7474] = 7474, + [7475] = 7475, + [7476] = 4930, + [7477] = 7477, + [7478] = 7478, + [7479] = 7479, + [7480] = 7480, + [7481] = 7481, + [7482] = 7482, + [7483] = 7483, + [7484] = 7484, + [7485] = 7485, + [7486] = 7486, + [7487] = 7487, + [7488] = 1727, + [7489] = 7489, + [7490] = 7457, + [7491] = 2601, + [7492] = 7458, + [7493] = 7493, + [7494] = 7494, + [7495] = 7495, + [7496] = 7496, + [7497] = 583, + [7498] = 7498, + [7499] = 7499, + [7500] = 7500, + [7501] = 7501, + [7502] = 7502, + [7503] = 7503, + [7504] = 7486, + [7505] = 583, + [7506] = 2639, + [7507] = 7507, + [7508] = 3627, + [7509] = 7482, + [7510] = 2652, + [7511] = 7483, + [7512] = 7512, + [7513] = 7465, + [7514] = 7514, + [7515] = 3063, + [7516] = 7516, + [7517] = 1681, + [7518] = 7518, + [7519] = 7519, + [7520] = 7520, + [7521] = 7521, + [7522] = 7474, + [7523] = 709, + [7524] = 7466, + [7525] = 7525, + [7526] = 7526, + [7527] = 7527, + [7528] = 7528, + [7529] = 555, + [7530] = 7530, + [7531] = 1666, + [7532] = 7532, + [7533] = 7456, + [7534] = 7534, + [7535] = 7478, + [7536] = 562, + [7537] = 563, + [7538] = 7538, + [7539] = 7539, + [7540] = 7540, + [7541] = 4896, + [7542] = 7542, + [7543] = 7543, + [7544] = 7465, + [7545] = 7545, + [7546] = 7546, + [7547] = 561, + [7548] = 7548, + [7549] = 1681, + [7550] = 2606, + [7551] = 7480, + [7552] = 7494, + [7553] = 2643, + [7554] = 7466, + [7555] = 7540, + [7556] = 3066, + [7557] = 7495, + [7558] = 3608, + [7559] = 7487, + [7560] = 7496, + [7561] = 7561, + [7562] = 562, + [7563] = 563, + [7564] = 7470, + [7565] = 7565, + [7566] = 7498, + [7567] = 7539, + [7568] = 7568, + [7569] = 7569, + [7570] = 7519, + [7571] = 4999, + [7572] = 7572, + [7573] = 7489, + [7574] = 7527, + [7575] = 7493, + [7576] = 7576, + [7577] = 7457, + [7578] = 7458, + [7579] = 7539, + [7580] = 7580, + [7581] = 7581, + [7582] = 7582, + [7583] = 3093, + [7584] = 7457, + [7585] = 7458, + [7586] = 7481, + [7587] = 7532, + [7588] = 3197, + [7589] = 711, + [7590] = 7538, + [7591] = 7591, + [7592] = 7465, + [7593] = 1663, + [7594] = 7548, + [7595] = 7466, + [7596] = 7596, + [7597] = 7499, + [7598] = 1666, + [7599] = 4643, + [7600] = 7600, + [7601] = 7500, + [7602] = 2143, + [7603] = 7514, + [7604] = 7604, + [7605] = 3191, + [7606] = 4968, + [7607] = 4798, + [7608] = 7608, + [7609] = 7543, + [7610] = 7610, + [7611] = 7611, + [7612] = 7518, + [7613] = 7539, + [7614] = 7460, + [7615] = 629, + [7616] = 7538, + [7617] = 7617, + [7618] = 2659, + [7619] = 7619, + [7620] = 7501, + [7621] = 7539, + [7622] = 7457, + [7623] = 7502, + [7624] = 7458, + [7625] = 7538, + [7626] = 7626, + [7627] = 7482, + [7628] = 7475, + [7629] = 5500, + [7630] = 7538, + [7631] = 7548, + [7632] = 7463, + [7633] = 4659, + [7634] = 7634, + [7635] = 7467, + [7636] = 7538, + [7637] = 7477, + [7638] = 7512, + [7639] = 7639, + [7640] = 7640, + [7641] = 4805, + [7642] = 7642, + [7643] = 7546, + [7644] = 7644, + [7645] = 7543, + [7646] = 7582, + [7647] = 7640, + [7648] = 7648, + [7649] = 7649, + [7650] = 708, + [7651] = 7485, + [7652] = 7465, + [7653] = 7520, + [7654] = 7654, + [7655] = 7521, + [7656] = 7483, + [7657] = 561, + [7658] = 5006, + [7659] = 7604, + [7660] = 7611, + [7661] = 7462, + [7662] = 555, + [7663] = 7663, + [7664] = 3612, + [7665] = 7665, + [7666] = 7561, + [7667] = 7648, + [7668] = 673, + [7669] = 7479, + [7670] = 7670, + [7671] = 7465, + [7672] = 7569, + [7673] = 7673, + [7674] = 7619, + [7675] = 7457, + [7676] = 7626, + [7677] = 7458, + [7678] = 1663, + [7679] = 7466, + [7680] = 7649, + [7681] = 7681, + [7682] = 7465, + [7683] = 7466, + [7684] = 7654, + [7685] = 7685, + [7686] = 7475, + [7687] = 7477, + [7688] = 7572, + [7689] = 7466, + [7690] = 7690, + [7691] = 7576, + [7692] = 7617, + [7693] = 7693, + [7694] = 7670, + [7695] = 7600, + [7696] = 7528, + [7697] = 7673, + [7698] = 7693, + [7699] = 3610, + [7700] = 7700, + [7701] = 7701, + [7702] = 583, + [7703] = 7703, + [7704] = 192, + [7705] = 3056, + [7706] = 7706, + [7707] = 7545, + [7708] = 3053, + [7709] = 7538, + [7710] = 7457, + [7711] = 7458, + [7712] = 7712, + [7713] = 7713, + [7714] = 7714, + [7715] = 7715, + [7716] = 7716, + [7717] = 7717, + [7718] = 7718, + [7719] = 7713, + [7720] = 7720, + [7721] = 7721, + [7722] = 2643, + [7723] = 7723, + [7724] = 2640, + [7725] = 7714, + [7726] = 7726, + [7727] = 7713, + [7728] = 7715, + [7729] = 7729, + [7730] = 7730, + [7731] = 7714, + [7732] = 7732, + [7733] = 7733, + [7734] = 7714, + [7735] = 7735, + [7736] = 7736, + [7737] = 7737, + [7738] = 7713, + [7739] = 7739, + [7740] = 7714, + [7741] = 7715, + [7742] = 7742, + [7743] = 7743, + [7744] = 7744, + [7745] = 7745, + [7746] = 7746, + [7747] = 7747, + [7748] = 496, + [7749] = 7715, + [7750] = 2606, + [7751] = 7751, + [7752] = 7752, + [7753] = 7714, + [7754] = 7726, + [7755] = 7755, + [7756] = 7756, + [7757] = 7757, + [7758] = 7758, + [7759] = 7759, + [7760] = 7714, + [7761] = 7714, + [7762] = 7714, + [7763] = 7714, + [7764] = 7735, + [7765] = 7755, + [7766] = 7756, + [7767] = 7747, + [7768] = 7759, + [7769] = 7714, + [7770] = 7770, + [7771] = 7771, + [7772] = 7772, + [7773] = 7716, + [7774] = 7774, + [7775] = 7735, + [7776] = 7776, + [7777] = 7777, + [7778] = 7721, + [7779] = 7779, + [7780] = 7755, + [7781] = 7745, + [7782] = 7714, + [7783] = 7779, + [7784] = 7776, + [7785] = 7785, + [7786] = 7777, + [7787] = 7779, + [7788] = 7755, + [7789] = 7721, + [7790] = 7790, + [7791] = 7776, + [7792] = 7736, + [7793] = 7759, + [7794] = 7755, + [7795] = 7714, + [7796] = 7777, + [7797] = 7779, + [7798] = 7715, + [7799] = 7774, + [7800] = 7755, + [7801] = 7735, + [7802] = 7714, + [7803] = 7713, + [7804] = 7804, + [7805] = 7747, + [7806] = 7714, + [7807] = 7807, + [7808] = 7718, + [7809] = 7713, + [7810] = 7713, + [7811] = 7721, + [7812] = 7812, + [7813] = 7714, + [7814] = 7814, + [7815] = 7713, + [7816] = 7759, + [7817] = 7735, + [7818] = 7818, + [7819] = 7714, + [7820] = 497, + [7821] = 7755, + [7822] = 7721, + [7823] = 7714, + [7824] = 7714, + [7825] = 7825, + [7826] = 7714, + [7827] = 7825, + [7828] = 7701, + [7829] = 7756, + [7830] = 7737, + [7831] = 7713, + [7832] = 7739, + [7833] = 7747, + [7834] = 7834, + [7835] = 7744, + [7836] = 7723, + [7837] = 7714, + [7838] = 7732, + [7839] = 7839, + [7840] = 7840, + [7841] = 7729, + [7842] = 7834, + [7843] = 7714, + [7844] = 7735, + [7845] = 7714, + [7846] = 7777, + [7847] = 7714, + [7848] = 7743, + [7849] = 7849, + [7850] = 7747, + [7851] = 7851, + [7852] = 7714, + [7853] = 7714, + [7854] = 7723, + [7855] = 7855, + [7856] = 7770, + [7857] = 7759, + [7858] = 7714, + [7859] = 7770, + [7860] = 7714, + [7861] = 7747, + [7862] = 7735, + [7863] = 7770, + [7864] = 7735, + [7865] = 7804, + [7866] = 7735, + [7867] = 7776, + [7868] = 7807, + [7869] = 7721, + [7870] = 7714, + [7871] = 7747, + [7872] = 7759, + [7873] = 7776, + [7874] = 7770, + [7875] = 7875, + [7876] = 7755, + [7877] = 7877, + [7878] = 7714, + [7879] = 7777, + [7880] = 7779, + [7881] = 7714, + [7882] = 7755, + [7883] = 7735, + [7884] = 7747, + [7885] = 7744, + [7886] = 7721, + [7887] = 7804, + [7888] = 7714, + [7889] = 7807, + [7890] = 7776, + [7891] = 7736, + [7892] = 7713, + [7893] = 2659, + [7894] = 7721, + [7895] = 7714, + [7896] = 7737, + [7897] = 7897, + [7898] = 7756, + [7899] = 7899, + [7900] = 7774, + [7901] = 7804, + [7902] = 7807, + [7903] = 7747, + [7904] = 7904, + [7905] = 7714, + [7906] = 7737, + [7907] = 7714, + [7908] = 497, + [7909] = 7747, + [7910] = 7910, + [7911] = 7759, + [7912] = 7714, + [7913] = 7913, + [7914] = 7714, + [7915] = 7804, + [7916] = 7807, + [7917] = 7917, + [7918] = 7918, + [7919] = 7713, + [7920] = 7920, + [7921] = 7714, + [7922] = 7922, + [7923] = 7923, + [7924] = 7714, + [7925] = 7925, + [7926] = 7732, + [7927] = 7770, + [7928] = 7714, + [7929] = 7804, + [7930] = 7807, + [7931] = 7747, + [7932] = 7770, + [7933] = 7735, + [7934] = 7721, + [7935] = 7935, + [7936] = 7804, + [7937] = 7759, + [7938] = 7777, + [7939] = 7757, + [7940] = 7779, + [7941] = 7941, + [7942] = 7804, + [7943] = 7807, + [7944] = 7747, + [7945] = 7759, + [7946] = 7825, + [7947] = 7755, + [7948] = 7755, + [7949] = 7770, + [7950] = 7736, + [7951] = 7951, + [7952] = 7952, + [7953] = 7770, + [7954] = 7715, + [7955] = 7804, + [7956] = 7807, + [7957] = 7735, + [7958] = 7713, + [7959] = 7735, + [7960] = 7743, + [7961] = 7772, + [7962] = 7807, + [7963] = 7776, + [7964] = 7721, + [7965] = 7965, + [7966] = 7966, + [7967] = 7713, + [7968] = 7714, + [7969] = 7807, + [7970] = 7776, + [7971] = 7849, + [7972] = 7721, + [7973] = 7759, + [7974] = 7974, + [7975] = 7770, + [7976] = 7923, + [7977] = 7770, + [7978] = 7770, + [7979] = 7714, + [7980] = 7737, + [7981] = 7804, + [7982] = 7807, + [7983] = 7777, + [7984] = 7984, + [7985] = 7739, + [7986] = 7986, + [7987] = 7987, + [7988] = 7737, + [7989] = 7714, + [7990] = 7855, + [7991] = 7714, + [7992] = 7770, + [7993] = 7735, + [7994] = 7804, + [7995] = 7807, + [7996] = 7721, + [7997] = 7997, + [7998] = 7877, + [7999] = 496, + [8000] = 7807, + [8001] = 7735, + [8002] = 8002, + [8003] = 496, + [8004] = 7737, + [8005] = 8005, + [8006] = 7925, + [8007] = 7804, + [8008] = 7807, + [8009] = 7755, + [8010] = 7735, + [8011] = 7770, + [8012] = 7735, + [8013] = 7777, + [8014] = 7723, + [8015] = 7714, + [8016] = 7779, + [8017] = 8017, + [8018] = 8018, + [8019] = 7729, + [8020] = 7804, + [8021] = 7807, + [8022] = 7779, + [8023] = 7755, + [8024] = 497, + [8025] = 7777, + [8026] = 8026, + [8027] = 7952, + [8028] = 8028, + [8029] = 7779, + [8030] = 7804, + [8031] = 7807, + [8032] = 7812, + [8033] = 7834, + [8034] = 7777, + [8035] = 7755, + [8036] = 7737, + [8037] = 8037, + [8038] = 7739, + [8039] = 7779, + [8040] = 7804, + [8041] = 7804, + [8042] = 7923, + [8043] = 7714, + [8044] = 7714, + [8045] = 7714, + [8046] = 8046, + [8047] = 7770, + [8048] = 7735, + [8049] = 7804, + [8050] = 7721, + [8051] = 7772, + [8052] = 7755, + [8053] = 7776, + [8054] = 7755, + [8055] = 8055, + [8056] = 7736, + [8057] = 7747, + [8058] = 7804, + [8059] = 7735, + [8060] = 7759, + [8061] = 8026, + [8062] = 7770, + [8063] = 7735, + [8064] = 7747, + [8065] = 8065, + [8066] = 7776, + [8067] = 7804, + [8068] = 7804, + [8069] = 7804, + [8070] = 7804, + [8071] = 7804, + [8072] = 7804, + [8073] = 7804, + [8074] = 7804, + [8075] = 7804, + [8076] = 7804, + [8077] = 7804, + [8078] = 7804, + [8079] = 7804, + [8080] = 7804, + [8081] = 7804, + [8082] = 7804, + [8083] = 7804, + [8084] = 7804, + [8085] = 7804, + [8086] = 7804, + [8087] = 7804, + [8088] = 7804, + [8089] = 7804, + [8090] = 7804, + [8091] = 7804, + [8092] = 7804, + [8093] = 7804, + [8094] = 7804, + [8095] = 7804, + [8096] = 7804, + [8097] = 7804, + [8098] = 7759, + [8099] = 7714, + [8100] = 8028, + [8101] = 7744, + [8102] = 7721, + [8103] = 7770, + [8104] = 7735, + [8105] = 7772, + [8106] = 7735, + [8107] = 7776, + [8108] = 7721, + [8109] = 7735, + [8110] = 8110, + [8111] = 7776, + [8112] = 7717, + [8113] = 8113, + [8114] = 7732, + [8115] = 7974, + [8116] = 8116, + [8117] = 7715, + [8118] = 7747, + [8119] = 7737, + [8120] = 7941, + [8121] = 8002, + [8122] = 7713, + [8123] = 7759, + [8124] = 7729, + [8125] = 7777, + [8126] = 7777, + [8127] = 7756, + [8128] = 7744, + [8129] = 7779, + [8130] = 7737, + [8131] = 8116, + [8132] = 7746, + [8133] = 7714, + [8134] = 7758, + [8135] = 8028, + [8136] = 7772, + [8137] = 7923, + [8138] = 7735, + [8139] = 7770, + [8140] = 7777, + [8141] = 7779, + [8142] = 7755, + [8143] = 7735, + [8144] = 7925, + [8145] = 7779, + [8146] = 7743, + [8147] = 7917, + [8148] = 7776, + [8149] = 7736, + [8150] = 7755, + [8151] = 7715, + [8152] = 7770, + [8153] = 7735, + [8154] = 7777, + [8155] = 7736, + [8156] = 7755, + [8157] = 7736, + [8158] = 8158, + [8159] = 7779, + [8160] = 7755, + [8161] = 7755, + [8162] = 7736, + [8163] = 8163, + [8164] = 7899, + [8165] = 8165, + [8166] = 7715, + [8167] = 7721, + [8168] = 7736, + [8169] = 7812, + [8170] = 2601, + [8171] = 7776, + [8172] = 7721, + [8173] = 7715, + [8174] = 7804, + [8175] = 8175, +}; + +static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'%', '&'}, {'*', ','}, {'.', '9'}, {'?', 'Z'}, {'\\', '\\'}, + {'_', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; + +static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_2[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '9'}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, + {'a', 'z'}, {'~', 0x10ffff}, +}; + +static TSCharacterRange sym_identifier_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'%', '%'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, + {'~', 0x10ffff}, +}; + +static TSCharacterRange sym_identifier_character_set_2[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'/', '9'}, {'A', 'Z'}, {'\\', '\\'}, + {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; + +static TSCharacterRange sym_long_flag_identifier_character_set_1[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, + {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, + {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, + {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, + {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, + {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, + {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, + {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, + {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, + {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, + {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, + {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, + {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, + {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, + {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, + {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, + {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, @@ -13726,17456 +16478,22459 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '"', 4689, + '#', 6371, + '$', 4333, + '\'', 4705, + '(', 4413, + ')', 4538, + '*', 3676, + '+', 3681, + ',', 4211, + '-', 3682, + '.', 4477, + '/', 3678, + '0', 3878, + ':', 4717, + ';', 4170, + '<', 3699, + '=', 2393, + '>', 3702, + '?', 4235, + '@', 4232, + '[', 4659, + ']', 4208, + '^', 4726, + '_', 4325, + '`', 535, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 11, + ' ', 11, + '!', 5918, + '&', 5918, + 'I', 3931, + 'i', 3931, + 'N', 3925, + 'n', 3925, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead != 0) ADVANCE(3939); + END_STATE(); + case 1: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 3025, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '*', 4381, + '+', 4429, + ',', 4211, + '-', 4253, + '.', 4462, + '/', 4420, + '0', 4571, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3237, + 'b', 3199, + 'c', 3083, + 'd', 3120, + 'e', 2507, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3058, + 'n', 3285, + 'o', 2509, + 'r', 3161, + 's', 3292, + 't', 3317, + 'u', 3359, + 'w', 3186, + 'x', 3283, + '|', 4171, + '}', 4322, + '\t', 3, + ' ', 3, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 2: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 3025, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '*', 4381, + '+', 4429, + ',', 4211, + '-', 4253, + '.', 4462, + '/', 4420, + '0', 4571, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + 'I', 3437, + 'N', 3430, + '[', 4659, + '_', 3044, + '`', 535, + 'a', 3237, + 'b', 3199, + 'c', 3083, + 'd', 3120, + 'e', 2507, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3058, + 'n', 3285, + 'o', 2509, + 'r', 3161, + 's', 3292, + 't', 3317, + 'u', 3359, + 'w', 3186, + 'x', 3283, + '|', 4171, + '}', 4322, + '\t', 4, + ' ', 4, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 3: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 3025, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '*', 4381, + '+', 4429, + ',', 4211, + '-', 4253, + '.', 2670, + '/', 4420, + '0', 4571, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3237, + 'b', 3199, + 'c', 3083, + 'd', 3120, + 'e', 2507, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3058, + 'n', 3285, + 'o', 2509, + 'r', 3161, + 's', 3292, + 't', 3317, + 'u', 3359, + 'w', 3186, + 'x', 3283, + '|', 4171, + '}', 4322, + '\t', 3, + ' ', 3, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 4: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 3025, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '*', 4381, + '+', 4429, + ',', 4211, + '-', 4253, + '.', 2670, + '/', 4420, + '0', 4571, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3237, + 'b', 3199, + 'c', 3083, + 'd', 3120, + 'e', 2507, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3058, + 'n', 3285, + 'o', 2509, + 'r', 3161, + 's', 3292, + 't', 3317, + 'u', 3359, + 'w', 3186, + 'x', 3283, + '|', 4171, + '}', 4322, + '\t', 4, + ' ', 4, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 5: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 3025, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '*', 4381, + '+', 4429, + ',', 4211, + '-', 4253, + '.', 2669, + '/', 4420, + '0', 4571, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3237, + 'b', 3199, + 'c', 3083, + 'd', 3120, + 'e', 2507, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3058, + 'n', 3285, + 'o', 2509, + 'r', 3161, + 's', 3292, + 't', 3317, + 'u', 3359, + 'w', 3186, + 'x', 3283, + '|', 4171, + '}', 4322, + '\t', 4, + ' ', 4, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 6: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 504, + '#', 6369, + '$', 4212, + '(', 4209, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'f', 669, + 'i', 1051, + 'm', 1573, + 'n', 1592, + 'o', 422, + 's', 2065, + 't', 1774, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 7, + ' ', 7, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 7: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 504, + '#', 6369, + '$', 4212, + '(', 4209, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'f', 669, + 'i', 1051, + 'm', 1573, + 'n', 1592, + 'o', 422, + 's', 2065, + 't', 1774, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 7, + ' ', 7, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 8: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, + '\t', 8, + ' ', 8, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 9: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 504, + '#', 6369, + '*', 4381, + '+', 4430, + '-', 4263, + '.', 4466, + '/', 4420, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, + '\t', 10, + ' ', 10, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 10: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '!', 504, + '#', 6369, + '*', 4381, + '+', 4430, + '-', 4263, + '/', 4420, + ':', 4717, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, + '\t', 10, + ' ', 10, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 11: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '"', 4689, + '#', 6371, + '$', 4212, + '\'', 410, + '(', 4209, + ')', 4210, + '*', 4380, + '+', 4428, + ',', 4211, + '-', 4240, + '.', 5822, + '/', 4422, + '0', 3878, + ':', 4717, + ';', 4170, + '<', 4401, + '=', 2393, + '>', 4229, + '?', 4383, + '[', 4207, + ']', 4208, + '^', 4726, + '_', 4325, + '`', 535, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 11, + ' ', 11, + 'I', 3931, + 'i', 3931, + 'N', 3925, + 'n', 3925, + 0x0b, 500, + '\f', 500, + '!', 5825, + '&', 5825, + '@', 5825, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead != 0) ADVANCE(3939); + END_STATE(); + case 12: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4255, + '.', 481, + '0', 4567, + ':', 4717, + ';', 4170, + '>', 4229, + '?', 4383, + 'I', 2221, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'a', 1335, + 'c', 1584, + 'd', 941, + 'e', 421, + 'f', 669, + 'i', 1052, + 'm', 546, + 'n', 1591, + 'o', 424, + 't', 1708, + 'u', 1883, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 12, + ' ', 12, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 13: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4255, + '.', 4457, + '0', 4567, + ':', 4717, + ';', 4170, + '=', 5176, + '>', 4229, + '?', 4383, + '@', 4232, + 'I', 2221, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'a', 1335, + 'c', 1584, + 'd', 941, + 'e', 421, + 'f', 669, + 'i', 1052, + 'm', 546, + 'n', 1591, + 'o', 424, + 't', 1708, + 'u', 1883, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 12, + ' ', 12, + 0x0b, 500, + '\f', 500, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 14: + ADVANCE_MAP( + '\n', 4167, + '\r', 15, + '#', 6369, + ':', 4717, + ';', 4170, + 'e', 420, + 'o', 424, + '|', 4171, + '}', 4322, + '\t', 4168, + ' ', 4168, + 0x0b, 500, + '\f', 500, + ); + END_STATE(); + case 15: + if (lookahead == '\n') ADVANCE(4167); + if (lookahead == ':') ADVANCE(4717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(500); + END_STATE(); + case 16: + if (lookahead == '\n') ADVANCE(4166); + END_STATE(); + case 17: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 18: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 19: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 20: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5400, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 21: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'a', 5454, + 'b', 5442, + 'e', 5455, + 'i', 5453, + 'm', 5459, + 'n', 5461, + 'o', 5468, + 's', 5491, + 'x', 5463, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 22: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 5584, + '#', 6375, + '(', 4413, + '*', 4382, + '+', 4431, + '-', 4264, + '/', 4421, + '<', 4403, + '=', 5586, + '>', 4231, + 'a', 5673, + 'b', 5656, + 'e', 5678, + 'i', 5674, + 'm', 5686, + 'n', 5689, + 'o', 5699, + 's', 5729, + 'x', 5688, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 23: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 4466, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'B', 4638, + 'E', 518, + 'G', 521, + 'K', 521, + 'M', 521, + 'P', 521, + 'T', 521, + '[', 4659, + '_', 528, + 'a', 1482, + 'b', 4641, + 'd', 571, + 'e', 411, + 'g', 519, + 'h', 1706, + 'i', 1051, + 'k', 519, + 'm', 520, + 'n', 1590, + 'o', 422, + 'p', 519, + 's', 949, + 't', 519, + 'u', 1829, + 'w', 1244, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 1829, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + END_STATE(); + case 24: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(24); + END_STATE(); + case 25: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 419, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 423, + 's', 2065, + 'x', 1580, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + END_STATE(); + case 26: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4241, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'a', 1482, + 'b', 1171, + 'e', 416, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + END_STATE(); + case 27: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(27); + END_STATE(); + case 28: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 419, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 423, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + END_STATE(); + case 29: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + END_STATE(); + case 30: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 419, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 423, + 's', 2065, + 'x', 1580, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + END_STATE(); + case 31: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 1528, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 1702, + 's', 2065, + 'x', 1580, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + END_STATE(); + case 32: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 4476, + ':', 4204, + ';', 4170, + '<', 3699, + '=', 2393, + '>', 4229, + '?', 4383, + '@', 4232, + '[', 4207, + ']', 4208, + '`', 535, + '{', 4321, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(33); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(3939); + END_STATE(); + case 33: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 483, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + '?', 4383, + '[', 4207, + ']', 4208, + '`', 535, + '{', 4321, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(33); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(3939); + END_STATE(); + case 34: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2670, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 35: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 477, + '.', 5262, + '0', 4565, + 'N', 5324, + '[', 4207, + '_', 4326, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(35); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 36: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2513, + '0', 4572, + 'I', 2643, + 'N', 2640, + '[', 4659, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(34); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 37: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + '=', 5176, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2836, + 'b', 2810, + 'c', 2696, + 'd', 2712, + 'e', 2683, + 'f', 2686, + 'h', 2701, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2688, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(38); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); + END_STATE(); + case 38: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2836, + 'b', 2810, + 'c', 2696, + 'd', 2712, + 'e', 2683, + 'f', 2686, + 'h', 2701, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2688, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(38); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); + END_STATE(); + case 39: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + '=', 5176, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2851, + 'b', 2811, + 'c', 2698, + 'd', 2714, + 'e', 2684, + 'f', 2687, + 'h', 2702, + 'i', 2681, + 'j', 2935, + 'k', 2744, + 'l', 2774, + 'm', 2717, + 'n', 2886, + 'o', 2990, + 'p', 2706, + 'q', 2984, + 'r', 2691, + 's', 2731, + 't', 2694, + 'u', 2897, + 'v', 2814, + 'w', 2805, + '{', 4321, + '\t', 4169, + ' ', 4169, + '!', 3451, + '&', 3451, + '*', 3451, + ',', 3451, + '?', 3451, + '@', 3451, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); + END_STATE(); + case 40: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + 'I', 3437, + 'N', 3430, + '[', 4207, + '^', 4726, + '_', 3044, + '`', 535, + 'a', 3220, + 'b', 3187, + 'c', 3061, + 'd', 3076, + 'e', 3053, + 'f', 3054, + 'h', 3065, + 'i', 3037, + 'j', 3350, + 'k', 3115, + 'l', 3137, + 'm', 3055, + 'n', 3281, + 'o', 3419, + 'p', 3070, + 'q', 3409, + 'r', 3056, + 's', 3097, + 't', 3057, + 'u', 3298, + 'v', 3190, + 'w', 3180, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(40); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 41: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(41); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 42: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 4255, + '.', 5262, + '0', 4565, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5304, + 'o', 5258, + 't', 5307, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(42); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 43: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5818, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(43); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 44: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(44); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 45: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 3041, + 'I', 3439, + 'N', 3431, + ']', 4208, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(3451); + END_STATE(); + case 46: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 5370, + '.', 3041, + 'I', 3439, + 'N', 3431, + ']', 4208, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(45); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 47: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '+', 5910, + ',', 4211, + '-', 4246, + '.', 5906, + ':', 4204, + '=', 2393, + ']', 4208, + '_', 3880, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(64); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 48: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '+', 5910, + ',', 4211, + '-', 4246, + '.', 4473, + ':', 4204, + '=', 2393, + ']', 4208, + '_', 3880, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(64); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 49: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 4476, + ':', 4204, + '=', 2393, + 'E', 3866, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + ']', 4208, + 'd', 3882, + 'e', 3865, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + '|', 4171, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 50: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 4476, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 51: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + 'E', 3866, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + ']', 4208, + '_', 3880, + 'd', 3882, + 'e', 3865, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + '|', 4171, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 52: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + 'E', 3866, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + ']', 4208, + 'd', 3882, + 'e', 3865, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + '|', 4171, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 53: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + 'E', 3876, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + ']', 4208, + 'd', 3882, + 'e', 3875, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + '|', 4171, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 54: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + '[', 4659, + ']', 4208, + '{', 4321, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(67); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3939); + END_STATE(); + case 55: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + ']', 4208, + '_', 3880, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 56: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5911, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 57: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5907, + ':', 4204, + '=', 2393, + ']', 4208, + '_', 3880, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 58: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5907, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 59: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 5907, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 60: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 4472, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3867); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 61: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4209, + ')', 4210, + '-', 4241, + '.', 4452, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + '?', 4383, + '[', 4207, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(62); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 62: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4209, + ')', 4210, + '-', 4241, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + '?', 4383, + '[', 4207, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(62); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 63: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4209, + '+', 480, + '-', 4255, + '.', 525, + '0', 3878, + ':', 4204, + '=', 2393, + 'N', 3925, + '_', 3879, + 'f', 3884, + 'n', 3906, + 't', 3915, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(63); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 64: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '+', 485, + ',', 4211, + '-', 4244, + '.', 484, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(64); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 65: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 483, + ':', 4204, + '=', 2393, + '?', 4235, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 66: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 483, + ':', 4204, + '=', 2393, + '?', 4383, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(66); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 67: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 483, + ':', 4204, + '=', 2393, + ']', 4208, + '{', 4321, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 68: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 483, + ':', 4204, + '=', 2393, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 69: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + ',', 4211, + '-', 4241, + '.', 4474, + ':', 4204, + '=', 2393, + '?', 4383, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(66); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 70: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '-', 4241, + '.', 4452, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + '@', 4232, + '[', 4207, + ']', 4208, + 'c', 3888, + 'e', 3914, + 'f', 3923, + 'i', 3902, + 'o', 3905, + 'v', 3883, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 71: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '-', 4241, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + '[', 4207, + ']', 4208, + 'c', 3888, + 'e', 3914, + 'f', 3923, + 'i', 3902, + 'o', 3905, + 'v', 3883, + '{', 4321, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 72: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(4466); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 73: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 74: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 76: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '.', 4466, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 77: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 78: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 79: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '.', 5379, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 80: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4169); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + END_STATE(); + case 81: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4169); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 82: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + END_STATE(); + case 83: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4169); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 84: + if (lookahead == '\n') ADVANCE(4166); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4169); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 85: + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6374, + '$', 4217, + '(', 4413, + ')', 4210, + ',', 4211, + '-', 4252, + '.', 6023, + ':', 4205, + '=', 2395, + ']', 4208, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(68); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(6075); + END_STATE(); + case 86: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + '<', 4402, + '=', 5386, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 87: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5386, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 88: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5386, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 89: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5386, + '>', 4230, + 'B', 4638, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5400, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 90: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 4466, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 91: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 92: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5397, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 93: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '(', 4413, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 5379, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5400, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5468, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 94: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 5386, + '>', 4230, + 'a', 5454, + 'b', 5442, + 'e', 5455, + 'i', 5453, + 'm', 5459, + 'n', 5461, + 'o', 5468, + 's', 5491, + 'x', 5463, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 95: + ADVANCE_MAP( + '!', 5385, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4241, + '/', 4419, + '<', 4402, + '=', 5387, + '>', 4230, + 'a', 5454, + 'b', 5442, + 'e', 5455, + 'i', 5453, + 'm', 5459, + 'n', 5461, + 'o', 5468, + 's', 5491, + 'x', 5463, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 96: + ADVANCE_MAP( + '!', 5584, + '#', 6375, + '(', 4413, + '*', 4382, + '+', 4431, + '-', 4264, + '/', 4421, + '<', 4403, + '=', 5585, + '>', 4231, + 'a', 5673, + 'b', 5656, + 'e', 5678, + 'i', 5674, + 'm', 5686, + 'n', 5689, + 'o', 5699, + 's', 5729, + 'x', 5688, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 97: + ADVANCE_MAP( + '!', 5584, + '#', 6375, + '(', 4413, + '*', 4382, + '+', 4431, + '-', 4249, + '/', 4421, + '<', 4403, + '=', 5586, + '>', 4231, + 'a', 5673, + 'b', 5656, + 'e', 5678, + 'i', 5674, + 'm', 5686, + 'n', 5689, + 'o', 5699, + 's', 5729, + 'x', 5688, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 98: + ADVANCE_MAP( + '!', 504, + '#', 6369, + '$', 4212, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 4452, + '/', 4419, + ':', 4717, + ';', 4720, + '<', 4402, + '=', 506, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 1528, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 1702, + 's', 2065, + 'x', 1580, + '{', 4321, + '\t', 99, + ' ', 99, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(499); + END_STATE(); + case 99: + ADVANCE_MAP( + '!', 504, + '#', 6369, + '$', 4212, + '*', 4380, + '+', 4428, + '-', 4241, + '/', 4419, + ':', 4717, + ';', 4720, + '<', 4402, + '=', 506, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 1528, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 1702, + 's', 2065, + 'x', 1580, + '{', 4321, + '\t', 99, + ' ', 99, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(499); + END_STATE(); + case 100: + ADVANCE_MAP( + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + '<', 4402, + '=', 505, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 1528, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 1702, + 's', 2065, + 'x', 1580, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100); + END_STATE(); + case 101: + ADVANCE_MAP( + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4241, + '/', 4419, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 1528, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 1702, + 's', 2065, + 'x', 1580, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(101); + END_STATE(); + case 102: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 103: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5910, + ',', 4211, + '-', 5909, + '.', 5902, + '0', 4497, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(224); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 104: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5910, + ',', 4211, + '-', 5909, + '.', 4456, + '0', 4497, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(224); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 105: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5910, + ',', 4712, + '-', 5909, + '.', 5902, + '0', 4497, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 106: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5910, + ',', 4712, + '-', 5909, + '.', 4456, + '0', 4497, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 107: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2513, + '0', 4500, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 108: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2513, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 109: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2513, + '0', 4572, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 110: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 4475, + '0', 4572, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 111: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 4475, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 112: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 4464, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 113: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4500, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 114: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4500, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 115: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4572, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 116: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4572, + 'B', 4638, + 'E', 2525, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2522, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 117: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 118: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 3451, + '-', 4257, + '.', 2516, + '0', 4572, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 119: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2513, + '0', 4500, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 120: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2513, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 121: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2513, + '0', 4572, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 122: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 4475, + '0', 4572, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 123: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 4475, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 124: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 4464, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 125: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4500, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 126: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4500, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 127: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4572, + 'B', 4638, + 'E', 2520, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2519, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 128: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4572, + 'B', 4638, + 'E', 2525, + 'G', 2525, + 'I', 2643, + 'K', 2525, + 'M', 2525, + 'N', 2640, + 'P', 2525, + 'T', 2525, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 4643, + 'c', 2540, + 'd', 2546, + 'e', 2522, + 'f', 2541, + 'g', 2524, + 'h', 2578, + 'i', 2526, + 'k', 2524, + 'l', 2564, + 'm', 2521, + 'n', 2617, + 'o', 2637, + 'p', 2524, + 'r', 2555, + 's', 2567, + 't', 2523, + 'u', 2619, + 'w', 2576, + '}', 4322, + 0xb5, 2618, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 129: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4572, + 'E', 2538, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2537, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 130: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2516, + '0', 4572, + 'I', 2643, + 'N', 2640, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 131: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4497, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + '\t', 4713, + ' ', 4713, + 'B', 4638, + 'b', 4638, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 132: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4497, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 133: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + '\t', 4713, + ' ', 4713, + 'B', 4638, + 'b', 4638, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 134: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5929, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5894, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + '\t', 4713, + ' ', 4713, + 'B', 4638, + 'b', 4638, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 135: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 136: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5904, + '0', 4570, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 137: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5903, + '0', 4497, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 138: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5903, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 139: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5903, + '0', 4570, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 140: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 4470, + '0', 4570, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + '\t', 4713, + ' ', 4713, + 'B', 4638, + 'b', 4638, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 141: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 4470, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 142: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 4460, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 143: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4436, + ',', 3451, + '-', 4261, + '.', 4465, + '0', 4500, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(223); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 144: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4436, + ',', 3451, + '-', 4261, + '.', 2514, + '0', 4500, + 'I', 2643, + 'N', 2640, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(223); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 145: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4436, + ',', 4712, + '-', 4261, + '.', 4465, + '0', 4500, + 'I', 2643, + 'N', 2640, + '[', 4207, + ']', 4208, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 146: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 4436, + ',', 4712, + '-', 4261, + '.', 2514, + '0', 4500, + 'I', 2643, + 'N', 2640, + '[', 4659, + ']', 4208, + '_', 2532, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 147: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5820, + ',', 4211, + '-', 5819, + '.', 5814, + '0', 4498, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(224); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 148: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5820, + ',', 4211, + '-', 5819, + '.', 4459, + '0', 4498, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(224); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 149: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5820, + ',', 4712, + '-', 5819, + '.', 5814, + '0', 4498, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 150: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4413, + '+', 5820, + ',', 4712, + '-', 5819, + '.', 4459, + '0', 4498, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 151: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4211, + '-', 4254, + '.', 2670, + '0', 4571, + ':', 4717, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 151, + ' ', 151, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 152: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4211, + '-', 4254, + '.', 2670, + '0', 4571, + ':', 4717, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 152, + ' ', 152, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 153: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4211, + '-', 4254, + '.', 4463, + '0', 4571, + ':', 4717, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 151, + ' ', 151, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 154: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4211, + '-', 4254, + '.', 4463, + '0', 4571, + ':', 4717, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 152, + ' ', 152, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 155: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4462, + '0', 4571, + '<', 3699, + 'I', 3437, + 'N', 3430, + ']', 4208, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 156: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4462, + '0', 4571, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 157: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4462, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 158: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 2670, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 159: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 2670, + '0', 4499, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3049, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 160: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4463, + '0', 4571, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 161: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4463, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 162: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 4463, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 163: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 2669, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 164: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 2669, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 165: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + ',', 4712, + '-', 4254, + '.', 2669, + '0', 4499, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3049, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 166: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4462, + '0', 4571, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(169); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 167: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4462, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 168: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4462, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 169: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2670, + '0', 4571, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(169); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 170: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2670, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 171: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2670, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 172: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2670, + '0', 4499, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3049, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 173: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4463, + '0', 4571, + '?', 4383, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(169); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 174: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4463, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 175: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 4463, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 176: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2669, + '0', 4571, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 177: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2669, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 178: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4432, + '-', 4254, + '.', 2669, + '0', 4499, + 'E', 3051, + 'I', 3437, + 'N', 3430, + '_', 3049, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3050, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 179: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5266, + ',', 4712, + '-', 478, + '.', 5262, + '0', 4565, + 'N', 5324, + '[', 4207, + '_', 4326, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + '{', 4321, + '}', 4322, + '\t', 4713, + ' ', 4713, + 'I', 5327, + 'i', 5327, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 180: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + ';', 4720, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 180, + ' ', 180, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(503); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 181: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + '?', 4383, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(181); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 182: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 183: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4659, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 184: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 185: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5813, + '0', 4498, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 186: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5815, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 187: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5815, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 188: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 5815, + '0', 4498, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 189: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4469, + '0', 4566, + '?', 4383, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(181); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 190: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4469, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 191: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4469, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 192: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4454, + '0', 4566, + ';', 4720, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 180, + ' ', 180, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(503); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 193: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4454, + '0', 4566, + '?', 4383, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(181); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 194: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4211, + '-', 5816, + '.', 4454, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 195: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5813, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 196: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4659, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 197: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5813, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 198: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5813, + '0', 4498, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 199: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5815, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 200: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5815, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 201: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 5815, + '0', 4498, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5841, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4513); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 202: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4469, + '0', 4566, + '?', 4383, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 203: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4469, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 204: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4469, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 205: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4454, + '0', 4566, + ';', 4720, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4714, + ' ', 4714, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4715); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 206: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4454, + '0', 4566, + '?', 4383, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 207: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4454, + '0', 4566, + 'E', 5843, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5809, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 208: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5817, + ',', 4712, + '-', 5816, + '.', 4454, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 209: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4434, + ',', 4712, + '-', 4257, + '.', 2513, + '0', 4572, + 'I', 2643, + 'N', 2640, + '[', 4659, + '_', 2527, + '`', 535, + 'a', 2586, + 'b', 2609, + 'c', 2540, + 'd', 2554, + 'e', 2592, + 'f', 2541, + 'h', 2579, + 'i', 2526, + 'l', 2564, + 'm', 2542, + 'n', 2631, + 'o', 2637, + 'r', 2555, + 's', 2599, + 't', 2605, + 'u', 2620, + 'w', 2577, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6179); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2648); + END_STATE(); + case 210: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4497, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 211: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4497, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 212: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 213: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5929, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5894, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 214: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 215: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5904, + '0', 4570, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 216: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5903, + '0', 4497, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5931, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 217: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5903, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 218: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 5903, + '0', 4570, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 219: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 4470, + '0', 4570, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'N', 5974, + 'P', 5929, + 'T', 5929, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'd', 5945, + 'e', 5897, + 'f', 5944, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5965, + 'o', 5896, + 'p', 5928, + 's', 5950, + 't', 5927, + 'u', 5966, + 'w', 5953, + '{', 4321, + 0xb5, 5966, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 220: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 4470, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 221: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4211, + '-', 5912, + '.', 4460, + '0', 4570, + 'E', 5939, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5898, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5981); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 222: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5913, + ',', 4712, + '-', 5912, + '.', 5903, + '0', 4570, + 'N', 5974, + '[', 4207, + ']', 4208, + '_', 5943, + '`', 535, + 'e', 5895, + 'f', 5944, + 'n', 5970, + 'o', 5896, + 't', 5961, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 5981, + 'i', 5981, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4593); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 223: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 4435, + '-', 4260, + '.', 2671, + '0', 4571, + 'I', 3437, + 'N', 3430, + '_', 3044, + '`', 535, + 'a', 3238, + 'b', 3335, + 'c', 3083, + 'd', 3120, + 'e', 3241, + 'f', 3081, + 'h', 3205, + 'i', 3038, + 'l', 3147, + 'm', 3059, + 'n', 3413, + 'o', 3420, + 'r', 3161, + 's', 3293, + 't', 3317, + 'u', 3359, + 'w', 3186, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 224: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4212, + '\'', 410, + '(', 4209, + '+', 5820, + ',', 4211, + '-', 5819, + '.', 5814, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(224); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5871); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 225: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + '+', 480, + '-', 4256, + '.', 481, + '0', 5195, + '=', 5176, + 'N', 5221, + '[', 4207, + '_', 5196, + '`', 535, + 'f', 5203, + 'n', 5210, + 't', 5211, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5202); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 226: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ':', 4717, + ';', 4720, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2851, + 'b', 2810, + 'c', 2697, + 'd', 2713, + 'e', 2684, + 'f', 2687, + 'h', 2702, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2774, + 'm', 2689, + 'n', 2886, + 'o', 2990, + 'p', 2706, + 'q', 2984, + 'r', 2692, + 's', 2731, + 't', 2693, + 'u', 2897, + 'v', 2814, + 'w', 2809, + '{', 4321, + '\t', 226, + ' ', 226, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(499); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); + END_STATE(); + case 227: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2851, + 'b', 2811, + 'c', 2698, + 'd', 2714, + 'e', 2684, + 'f', 2687, + 'h', 2702, + 'i', 2681, + 'j', 2935, + 'k', 2744, + 'l', 2774, + 'm', 2717, + 'n', 2886, + 'o', 2990, + 'p', 2706, + 'q', 2984, + 'r', 2691, + 's', 2731, + 't', 2694, + 'u', 2897, + 'v', 2814, + 'w', 2805, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(227); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); + END_STATE(); + case 228: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 434, + '.', 3041, + ':', 4717, + '=', 5176, + 'I', 3439, + 'N', 3431, + '[', 4659, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '\t', 229, + ' ', 229, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 229: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 434, + '.', 3041, + ':', 4717, + 'I', 3439, + 'N', 3431, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '\t', 229, + ' ', 229, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 230: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4242, + '.', 481, + '0', 4567, + '=', 2393, + '@', 4232, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'f', 669, + 'n', 1591, + 't', 1774, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(231); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2221); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 231: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4242, + '.', 481, + '0', 4567, + '=', 2393, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'f', 669, + 'n', 1591, + 't', 1774, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(231); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2221); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 232: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4255, + '.', 481, + '0', 4567, + 'N', 2208, + '[', 4659, + '_', 524, + '`', 535, + 'f', 669, + 'n', 1591, + 't', 1774, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2221); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 233: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4255, + '.', 481, + '0', 4567, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'f', 669, + 'n', 1591, + 't', 1774, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2221); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); + END_STATE(); + case 234: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 480, + '-', 4255, + '.', 481, + '0', 3962, + '=', 5176, + 'N', 4090, + '[', 4207, + '_', 3963, + '`', 535, + 'f', 3970, + 'n', 4039, + 't', 4044, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + END_STATE(); + case 235: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 478, + '.', 5262, + '0', 4565, + ':', 4717, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + '{', 4321, + '\t', 235, + ' ', 235, + 'I', 5327, + 'i', 5327, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 236: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 478, + '.', 5262, + ':', 4717, + 'N', 5324, + '_', 5279, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + '\t', 236, + ' ', 236, + 'I', 5327, + 'i', 5327, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 237: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5266, + '-', 478, + '.', 5262, + 'N', 5324, + '_', 5279, + '`', 535, + 'e', 5257, + 'f', 5292, + 'n', 5320, + 'o', 5258, + 't', 5307, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(237); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4588); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5347); + END_STATE(); + case 238: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5817, + '-', 5816, + '.', 5818, + '0', 4566, + 'N', 5865, + '[', 4207, + ']', 4208, + '_', 5832, + '`', 535, + 'e', 5807, + 'f', 5845, + 'n', 5862, + 'o', 5808, + 't', 5855, + '{', 4321, + '\t', 4716, + ' ', 4716, + 'I', 5871, + 'i', 5871, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4589); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5893); + END_STATE(); + case 239: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 6099, + '-', 6098, + '.', 6097, + '0', 4568, + 'N', 6130, + '[', 4207, + '_', 6105, + '`', 535, + 'e', 6092, + 'f', 6110, + 'n', 6127, + 'o', 6093, + 't', 6120, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(239); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(6136); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4591); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6150); + END_STATE(); + case 240: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5381, + '-', 4262, + '.', 5378, + '0', 4495, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5406, + '`', 535, + 'd', 5421, + 'e', 5398, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5465, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); + END_STATE(); + case 241: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5381, + '-', 4262, + '.', 5378, + '0', 4569, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5398, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5465, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); + END_STATE(); + case 242: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5381, + '-', 4262, + '.', 5378, + '0', 4569, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5402, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5465, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); + END_STATE(); + case 243: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5381, + '-', 4262, + '.', 5377, + '0', 4569, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'f', 5420, + 'n', 5466, + 't', 5473, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); + END_STATE(); + case 244: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 5381, + '-', 4262, + '.', 4471, + '0', 4569, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5398, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5465, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); + END_STATE(); + case 245: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + ',', 4712, + '-', 479, + '.', 3041, + 'I', 3439, + 'N', 3431, + ']', 4208, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '\t', 4713, + ' ', 4713, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 246: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 4478, + '?', 4383, + 'I', 3439, + 'N', 3431, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(3451); + END_STATE(); + case 247: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 4478, + 'I', 3439, + 'N', 3431, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(3451); + END_STATE(); + case 248: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 3041, + '=', 5176, + 'I', 4103, + 'N', 4091, + '_', 3963, + '`', 535, + 'a', 4019, + 'b', 4051, + 'c', 3974, + 'd', 3984, + 'e', 4024, + 'f', 3976, + 'h', 4010, + 'i', 3958, + 'l', 3990, + 'm', 3971, + 'n', 4078, + 'o', 4083, + 'r', 3985, + 's', 4038, + 't', 4046, + 'u', 4061, + 'w', 4007, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 249: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 3041, + '?', 4383, + 'I', 3439, + 'N', 3431, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(3451); + END_STATE(); + case 250: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 434, + '.', 3041, + 'I', 3439, + 'N', 3431, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(3451); + END_STATE(); + case 251: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 5370, + '.', 2672, + 'B', 4638, + 'E', 3031, + 'G', 3036, + 'I', 3439, + 'K', 3036, + 'M', 3036, + 'N', 3431, + 'P', 3036, + 'T', 3036, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 4642, + 'c', 3062, + 'd', 3067, + 'e', 3030, + 'f', 3082, + 'g', 3035, + 'h', 3207, + 'i', 3039, + 'k', 3035, + 'l', 3137, + 'm', 3032, + 'n', 3347, + 'o', 3419, + 'p', 3035, + 'r', 3116, + 's', 3138, + 't', 3034, + 'u', 3349, + 'w', 3179, + 0xb5, 3348, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 252: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 5370, + '.', 2672, + 'B', 4638, + 'E', 3031, + 'G', 3036, + 'I', 3439, + 'K', 3036, + 'M', 3036, + 'N', 3431, + 'P', 3036, + 'T', 3036, + '_', 3049, + '`', 535, + 'a', 3221, + 'b', 4642, + 'c', 3062, + 'd', 3067, + 'e', 3030, + 'f', 3082, + 'g', 3035, + 'h', 3207, + 'i', 3039, + 'k', 3035, + 'l', 3137, + 'm', 3032, + 'n', 3347, + 'o', 3419, + 'p', 3035, + 'r', 3116, + 's', 3138, + 't', 3034, + 'u', 3349, + 'w', 3179, + 0xb5, 3348, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 253: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 5370, + '.', 2672, + 'B', 4638, + 'E', 3036, + 'G', 3036, + 'I', 3439, + 'K', 3036, + 'M', 3036, + 'N', 3431, + 'P', 3036, + 'T', 3036, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 4642, + 'c', 3062, + 'd', 3067, + 'e', 3033, + 'f', 3082, + 'g', 3035, + 'h', 3207, + 'i', 3039, + 'k', 3035, + 'l', 3137, + 'm', 3032, + 'n', 3347, + 'o', 3419, + 'p', 3035, + 'r', 3116, + 's', 3138, + 't', 3034, + 'u', 3349, + 'w', 3179, + 0xb5, 3348, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 254: + ADVANCE_MAP( + '"', 4689, + '#', 6369, + '\'', 410, + '+', 2665, + '-', 5370, + '.', 4467, + 'B', 4638, + 'E', 3031, + 'G', 3036, + 'I', 3439, + 'K', 3036, + 'M', 3036, + 'N', 3431, + 'P', 3036, + 'T', 3036, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 4642, + 'c', 3062, + 'd', 3067, + 'e', 3030, + 'f', 3082, + 'g', 3035, + 'h', 3207, + 'i', 3039, + 'k', 3035, + 'l', 3137, + 'm', 3032, + 'n', 3347, + 'o', 3419, + 'p', 3035, + 'r', 3116, + 's', 3138, + 't', 3034, + 'u', 3349, + 'w', 3179, + 0xb5, 3348, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); + END_STATE(); + case 255: + if (lookahead == '"') ADVANCE(4689); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\'') ADVANCE(410); + if (lookahead == '`') ADVANCE(535); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + END_STATE(); + case 256: + if (lookahead == '"') ADVANCE(4689); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\'') ADVANCE(4721); + if (lookahead == '`') ADVANCE(4722); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4723); + END_STATE(); + case 257: + ADVANCE_MAP( + '"', 4689, + '#', 6372, + '$', 4216, + '\'', 410, + '(', 4413, + '+', 4433, + ',', 3451, + '-', 4258, + '.', 6254, + '0', 6257, + 'I', 6355, + 'N', 6352, + '_', 6259, + '`', 535, + 'a', 6303, + 'b', 6325, + 'c', 6263, + 'd', 6274, + 'e', 6309, + 'f', 6264, + 'h', 6296, + 'i', 6256, + 'l', 6284, + 'm', 6265, + 'n', 6344, + 'o', 6350, + 'r', 6275, + 's', 6315, + 't', 6321, + 'u', 6333, + 'w', 6295, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6362); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6361); + END_STATE(); + case 258: + ADVANCE_MAP( + '"', 4689, + '#', 6372, + '$', 4216, + '\'', 410, + '(', 4413, + '+', 4433, + ',', 4712, + '-', 4258, + '.', 6254, + '0', 6257, + 'I', 6355, + 'N', 6352, + '_', 6259, + '`', 535, + 'a', 6303, + 'b', 6325, + 'c', 6263, + 'd', 6274, + 'e', 6309, + 'f', 6264, + 'h', 6296, + 'i', 6256, + 'l', 6284, + 'm', 6265, + 'n', 6344, + 'o', 6350, + 'r', 6275, + 's', 6315, + 't', 6321, + 'u', 6333, + 'w', 6295, + '}', 4322, + '\t', 4713, + ' ', 4713, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(6362); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6361); + END_STATE(); + case 259: + ADVANCE_MAP( + '"', 4689, + '#', 6375, + '$', 4214, + '\'', 410, + '(', 4209, + '+', 5576, + '-', 4259, + '.', 5577, + '0', 5598, + 'N', 5764, + '[', 4207, + '_', 5600, + '`', 535, + 'f', 5610, + 'n', 5693, + 't', 5697, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(233); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5774); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5603); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5805); + END_STATE(); + case 260: + ADVANCE_MAP( + '"', 4689, + '#', 6375, + '\'', 410, + '+', 5578, + '-', 5568, + '.', 5605, + 'I', 5776, + 'N', 5765, + '_', 5609, + '`', 535, + 'a', 5668, + 'b', 5705, + 'c', 5611, + 'd', 5630, + 'e', 5665, + 'f', 5612, + 'h', 5651, + 'i', 5596, + 'l', 5634, + 'm', 5613, + 'n', 5743, + 'o', 5751, + 'r', 5631, + 's', 5683, + 't', 5704, + 'u', 5722, + 'w', 5650, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5609); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5785); + END_STATE(); + case 261: + ADVANCE_MAP( + '"', 4689, + '#', 6374, + '$', 4217, + '\'', 410, + '(', 4413, + '+', 6020, + ',', 4712, + '-', 6019, + '.', 6021, + '0', 6034, + 'N', 6063, + '[', 4207, + ']', 4208, + '_', 6036, + '`', 535, + 'e', 6013, + 'f', 6042, + 'n', 6059, + 'o', 6014, + 't', 6052, + '{', 4321, + '\t', 4713, + ' ', 4713, + 'I', 6068, + 'i', 6068, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(6039); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6091); + END_STATE(); + case 262: + ADVANCE_MAP( + '"', 4689, + '#', 6374, + '$', 4217, + '\'', 410, + '(', 4209, + '+', 6020, + ',', 4211, + '-', 6019, + '.', 6021, + '0', 6034, + 'N', 6063, + '[', 4207, + ']', 4208, + '_', 6036, + '`', 535, + 'e', 6013, + 'f', 6042, + 'n', 6059, + 'o', 6014, + 't', 6052, + '{', 4321, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(184); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(6068); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(6039); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6091); + END_STATE(); + case 263: + if (lookahead == '"') ADVANCE(4689); + if (lookahead == '#') ADVANCE(4692); + if (lookahead == '\\') ADVANCE(2092); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4691); + if (lookahead != 0) ADVANCE(4692); + END_STATE(); + case 264: + if (lookahead == '"') ADVANCE(4690); + if (lookahead == '#') ADVANCE(6378); + if (lookahead == '$') ADVANCE(4215); + if (lookahead == '\'') ADVANCE(5248); + if (lookahead == '(') ADVANCE(4209); + if (lookahead == '`') ADVANCE(5249); + if (lookahead == '\t' || + lookahead == ' ') SKIP(264); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); + END_STATE(); + case 265: + if (lookahead == '"') ADVANCE(4708); + if (lookahead == '#') ADVANCE(4699); + if (lookahead == '(') ADVANCE(4209); + if (lookahead == '\\') ADVANCE(2070); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4698); + if (lookahead != 0) ADVANCE(4699); + END_STATE(); + case 266: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 5408, + '=', 5388, + '_', 5406, + 'i', 5438, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(299); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 267: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5408); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(300); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 268: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5408); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(302); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 269: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 5933, + ']', 4208, + '_', 5931, + '\t', 4716, + ' ', 4716, + '+', 5910, + '-', 5910, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 270: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 4479, + '=', 5388, + '_', 5406, + 'i', 5438, + '|', 4171, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(299); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 271: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(4479); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(300); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 272: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(4479); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(302); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 273: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 6162, + '_', 6161, + '}', 4322, + '\t', 4716, + ' ', 4716, + '+', 6153, + '-', 6153, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(6179); + END_STATE(); + case 274: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 4481, + ']', 4208, + '_', 6161, + '}', 4322, + '\t', 4716, + ' ', 4716, + '+', 6153, + '-', 6153, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6179); + END_STATE(); + case 275: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '(', 4413, + '.', 4480, + ']', 4208, + '_', 5931, + '\t', 4716, + ' ', 4716, + '+', 5910, + '-', 5910, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 276: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 4466, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 277: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 4466, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 278: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 279: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 280: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 281: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 3876, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3875, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 282: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + '_', 3880, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 283: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 284: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + ':', 4717, + ';', 4720, + '=', 5176, + '{', 4321, + '\t', 285, + ' ', 285, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(499); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 285: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '-', 4241, + ':', 4717, + ';', 4720, + '{', 4321, + '\t', 285, + ' ', 285, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(499); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 286: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + END_STATE(); + case 287: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4089); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(3939); + END_STATE(); + case 288: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + END_STATE(); + case 289: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 290: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(290); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 291: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 292: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 293: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4251); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 294: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '-') ADVANCE(4251); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') SKIP(292); + if (lookahead == '!' || + lookahead == '?' || + lookahead == '@') ADVANCE(5247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5230); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '.' < lookahead) && + (lookahead < '0' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(3939); + END_STATE(); + case 295: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '.', 4466, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 296: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '.', 5379, + 'E', 3876, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3875, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 297: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + '_', 3880, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 298: + ADVANCE_MAP( + '#', 6369, + '$', 4212, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 299: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '.') ADVANCE(532); + if (lookahead == '=') ADVANCE(508); + if (lookahead == 'i') ADVANCE(1050); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(299); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 300: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '.') ADVANCE(532); + if (lookahead == '=') ADVANCE(508); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(300); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 301: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '.') ADVANCE(532); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '\t' || + lookahead == ' ') SKIP(301); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 302: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '.') ADVANCE(532); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(302); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 303: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '.') ADVANCE(532); + if (lookahead == '\t' || + lookahead == ' ') SKIP(303); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 304: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == '!' || + lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(5247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5230); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '.' < lookahead) && + (lookahead < '0' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(3939); + END_STATE(); + case 305: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 306: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 307: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4466, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'P', 5929, + 'T', 5929, + ']', 4208, + 'd', 5945, + 'e', 5925, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5966, + 'p', 5928, + 's', 5950, + 't', 5928, + 'u', 5966, + 'w', 5953, + '}', 4322, + 0xb5, 5966, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 308: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4466, + 'E', 6155, + 'G', 6157, + 'K', 6157, + 'M', 6157, + 'P', 6157, + 'T', 6157, + 'd', 6167, + 'e', 6154, + 'g', 6156, + 'h', 6173, + 'k', 6156, + 'm', 6158, + 'n', 6174, + 'p', 6156, + 's', 6170, + 't', 6156, + 'u', 6174, + 'w', 6171, + '}', 4322, + 0xb5, 6174, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 309: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4466, + ']', 4208, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 5939, + 'e', 5939, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 310: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4466, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 6165, + 'e', 6165, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 311: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4452, + ']', 4208, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 5939, + 'e', 5939, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 312: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(4452); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 313: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 4452, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 6165, + 'e', 6165, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 314: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 6152, + 'E', 6155, + 'G', 6157, + 'K', 6157, + 'M', 6157, + 'P', 6157, + 'T', 6157, + '_', 6161, + 'd', 6167, + 'e', 6154, + 'g', 6156, + 'h', 6173, + 'k', 6156, + 'm', 6158, + 'n', 6174, + 'p', 6156, + 's', 6170, + 't', 6156, + 'u', 6174, + 'w', 6171, + '}', 4322, + 0xb5, 6174, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 315: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 6152, + 'E', 6155, + 'G', 6157, + 'K', 6157, + 'M', 6157, + 'P', 6157, + 'T', 6157, + 'd', 6167, + 'e', 6154, + 'g', 6156, + 'h', 6173, + 'k', 6156, + 'm', 6158, + 'n', 6174, + 'p', 6156, + 's', 6170, + 't', 6156, + 'u', 6174, + 'w', 6171, + '}', 4322, + 0xb5, 6174, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 316: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 6152, + 'E', 6157, + 'G', 6157, + 'K', 6157, + 'M', 6157, + 'P', 6157, + 'T', 6157, + 'd', 6167, + 'e', 6156, + 'g', 6156, + 'h', 6173, + 'k', 6156, + 'm', 6158, + 'n', 6174, + 'p', 6156, + 's', 6170, + 't', 6156, + 'u', 6174, + 'w', 6171, + '}', 4322, + 0xb5, 6174, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 317: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 6152, + '_', 6161, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 6165, + 'e', 6165, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 318: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 6152, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 6165, + 'e', 6165, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 319: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(6152); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 320: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 5905, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'P', 5929, + 'T', 5929, + ']', 4208, + '_', 5931, + 'd', 5945, + 'e', 5925, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5966, + 'p', 5928, + 's', 5950, + 't', 5928, + 'u', 5966, + 'w', 5953, + '}', 4322, + 0xb5, 5966, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 321: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 5905, + 'E', 5926, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'P', 5929, + 'T', 5929, + ']', 4208, + 'd', 5945, + 'e', 5925, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5966, + 'p', 5928, + 's', 5950, + 't', 5928, + 'u', 5966, + 'w', 5953, + '}', 4322, + 0xb5, 5966, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 322: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 5905, + 'E', 5929, + 'G', 5929, + 'K', 5929, + 'M', 5929, + 'P', 5929, + 'T', 5929, + ']', 4208, + 'd', 5945, + 'e', 5928, + 'g', 5928, + 'h', 5960, + 'k', 5928, + 'm', 5930, + 'n', 5966, + 'p', 5928, + 's', 5950, + 't', 5928, + 'u', 5966, + 'w', 5953, + '}', 4322, + 0xb5, 5966, + '\t', 4716, + ' ', 4716, + 'B', 4638, + 'b', 4638, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 323: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 5905, + ']', 4208, + '_', 5931, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 5939, + 'e', 5939, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 324: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '.', 5905, + ']', 4208, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 5939, + 'e', 5939, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 325: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5905); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 326: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + ']', 4208, + '_', 5931, + '\t', 4716, + ' ', 4716, + 'E', 5939, + 'e', 5939, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 327: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5939); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 328: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6003); + END_STATE(); + case 329: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 330: + ADVANCE_MAP( + '#', 6369, + '(', 4413, + '_', 6161, + '}', 4322, + '\t', 4716, + ' ', 4716, + 'E', 6165, + 'e', 6165, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 331: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 332: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 333: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(6165); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 334: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 335: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == ',') ADVANCE(4211); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '\t' || + lookahead == ' ') SKIP(335); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4660); + END_STATE(); + case 336: + ADVANCE_MAP( + '#', 6369, + ',', 4712, + '.', 4452, + ';', 4720, + '?', 4383, + ']', 4208, + '\t', 4714, + ' ', 4714, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4715); + END_STATE(); + case 337: + ADVANCE_MAP( + '#', 6369, + '-', 4241, + '.', 4466, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 338: + ADVANCE_MAP( + '#', 6369, + '-', 4241, + '.', 5379, + 'E', 3876, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3875, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 339: + ADVANCE_MAP( + '#', 6369, + '-', 4241, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + '_', 3880, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 340: + ADVANCE_MAP( + '#', 6369, + '-', 4241, + '.', 5379, + 'E', 3869, + 'G', 3876, + 'K', 3876, + 'M', 3876, + 'P', 3876, + 'T', 3876, + 'd', 3882, + 'e', 3868, + 'g', 3875, + 'h', 3913, + 'k', 3875, + 'm', 3877, + 'n', 3917, + 'p', 3875, + 's', 3892, + 't', 3875, + 'u', 3917, + 'w', 3896, + 0xb5, 3917, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 341: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5546); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3939); + END_STATE(); + case 342: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '-') ADVANCE(4241); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 343: + ADVANCE_MAP( + '#', 6369, + '-', 513, + ':', 4717, + '<', 3699, + '=', 2393, + '>', 4229, + '@', 4232, + 'h', 3895, + 'u', 3919, + '{', 4321, + '\t', 344, + ' ', 344, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 344: + ADVANCE_MAP( + '#', 6369, + '-', 513, + ':', 4717, + '=', 2393, + '>', 4229, + 'h', 3895, + 'u', 3919, + '{', 4321, + '\t', 344, + ' ', 344, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 345: + ADVANCE_MAP( + '#', 6369, + '.', 4466, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5438, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 346: + ADVANCE_MAP( + '#', 6369, + '.', 4466, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 347: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4466); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 348: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4466); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 349: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4466); + if (lookahead == '?') ADVANCE(4383); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + END_STATE(); + case 350: + ADVANCE_MAP( + '#', 6369, + '.', 4466, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 351: + ADVANCE_MAP( + '#', 6369, + '.', 4466, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 352: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5438, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 353: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 354: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5438, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 355: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 356: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'i', 5438, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 357: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + '=', 5388, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 358: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 359: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 360: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 361: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 362: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 363: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5379); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 364: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 365: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 366: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 367: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 368: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 369: + ADVANCE_MAP( + '#', 6369, + '.', 5379, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '{', 4321, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 370: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4452); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 371: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4452); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 372: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4452); + if (lookahead == '?') ADVANCE(4383); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + END_STATE(); + case 373: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5408); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '\t' || + lookahead == ' ') SKIP(375); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 374: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(4479); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '\t' || + lookahead == ' ') SKIP(375); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 375: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(532); + if (lookahead == '\t' || + lookahead == ' ') SKIP(375); + if (lookahead == '+' || + lookahead == '-') ADVANCE(485); + END_STATE(); + case 376: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == ':') ADVANCE(4717); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(376); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + END_STATE(); + case 377: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(508); + if (lookahead == 'i') ADVANCE(1050); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + END_STATE(); + case 378: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(508); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + END_STATE(); + case 379: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == 'i') ADVANCE(5209); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 380: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == 'i') ADVANCE(4030); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + END_STATE(); + case 381: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5176); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 382: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 383: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '_') ADVANCE(5406); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 384: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 385: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == 'i') ADVANCE(5438); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 386: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 387: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '=') ADVANCE(5388); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 388: + ADVANCE_MAP( + '#', 6369, + '[', 4207, + ']', 4208, + 'c', 3888, + 'e', 3914, + 'f', 3923, + 'i', 3902, + 'o', 3905, + 'v', 3883, + '\t', 4716, + ' ', 4716, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3939); + END_STATE(); + case 389: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == 'i') ADVANCE(5453); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 390: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == 'i') ADVANCE(3904); + if (lookahead == '\t' || + lookahead == ' ') SKIP(390); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3939); + END_STATE(); + case 391: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == 'i') ADVANCE(1452); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + END_STATE(); + case 392: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + END_STATE(); + case 393: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + END_STATE(); + case 394: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(4265); + END_STATE(); + case 395: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4725); + END_STATE(); + case 396: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); + END_STATE(); + case 397: + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); + END_STATE(); + case 398: + if (lookahead == '#') ADVANCE(6372); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '}') ADVANCE(4322); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); + END_STATE(); + case 399: + if (lookahead == '#') ADVANCE(6372); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); + END_STATE(); + case 400: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '$') ADVANCE(4218); + if (lookahead == '-') ADVANCE(4249); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(290); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5805); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5789); + END_STATE(); + case 401: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '$') ADVANCE(4218); + if (lookahead == '\t' || + lookahead == ' ') SKIP(306); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5805); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5789); + END_STATE(); + case 402: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '{') ADVANCE(4321); + if (lookahead == '\t' || + lookahead == ' ') SKIP(392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 403: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '-') ADVANCE(4249); + if (lookahead == '\t' || + lookahead == ' ') SKIP(342); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5805); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5789); + END_STATE(); + case 404: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '=') ADVANCE(5591); + if (lookahead == 'i') ADVANCE(5644); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 405: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == '=') ADVANCE(5591); + if (lookahead == '|') ADVANCE(4171); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 406: + if (lookahead == '#') ADVANCE(6375); + if (lookahead == 'i') ADVANCE(5674); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 407: + if (lookahead == '#') ADVANCE(6374); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4712); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(6091); + END_STATE(); + case 408: + if (lookahead == '#') ADVANCE(6374); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); + END_STATE(); + case 409: + if (lookahead == '#') ADVANCE(4701); + if (lookahead == '\'') ADVANCE(4704); + if (lookahead == '(') ADVANCE(4209); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4700); + if (lookahead != 0) ADVANCE(4701); + END_STATE(); + case 410: + if (lookahead == '\'') ADVANCE(4693); + if (lookahead != 0) ADVANCE(410); + END_STATE(); + case 411: + ADVANCE_MAP( + '+', 529, + '-', 531, + '>', 5129, + 'I', 2209, + '_', 531, + 'i', 2209, + 'n', 829, + 'r', 1707, + 'B', 4638, + 'b', 4638, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 412: + if (lookahead == '+') ADVANCE(529); + if (lookahead == '-') ADVANCE(531); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == '_') ADVANCE(531); + if (lookahead == 'n') ADVANCE(829); + if (lookahead == 'r') ADVANCE(1707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 413: + ADVANCE_MAP( + '+', 1539, + '>', 5129, + 'I', 2209, + 'i', 2209, + 'l', 1885, + 'n', 829, + 'r', 1707, + 'B', 4638, + 'b', 4638, + ); + END_STATE(); + case 414: + if (lookahead == '+') ADVANCE(1539); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'l') ADVANCE(1885); + if (lookahead == 'n') ADVANCE(829); + if (lookahead == 'r') ADVANCE(1707); + END_STATE(); + case 415: + if (lookahead == '+') ADVANCE(1539); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'l') ADVANCE(1885); + if (lookahead == 'r') ADVANCE(1707); + END_STATE(); + case 416: + if (lookahead == '+') ADVANCE(1539); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'n') ADVANCE(829); + if (lookahead == 'r') ADVANCE(1707); + END_STATE(); + case 417: + if (lookahead == '+') ADVANCE(1539); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'r') ADVANCE(1707); + END_STATE(); + case 418: + if (lookahead == '+') ADVANCE(1566); + if (lookahead == '>') ADVANCE(5121); + END_STATE(); + case 419: + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'n') ADVANCE(829); + if (lookahead == 'r') ADVANCE(1712); + END_STATE(); + case 420: + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'r') ADVANCE(1712); + END_STATE(); + case 421: + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'r') ADVANCE(1712); + if (lookahead == 'x') ADVANCE(2047); + END_STATE(); + case 422: + if (lookahead == '+') ADVANCE(923); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'r') ADVANCE(4389); + if (lookahead == 'u') ADVANCE(1974); + END_STATE(); + case 423: + if (lookahead == '+') ADVANCE(935); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'r') ADVANCE(4389); + if (lookahead == 'u') ADVANCE(1978); + END_STATE(); + case 424: + if (lookahead == '+') ADVANCE(935); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'u') ADVANCE(1978); + END_STATE(); + case 425: + if (lookahead == '+') ADVANCE(1600); + if (lookahead == '>') ADVANCE(2201); + END_STATE(); + case 426: + if (lookahead == '+') ADVANCE(981); + if (lookahead == '>') ADVANCE(5125); + END_STATE(); + case 427: + if (lookahead == '+') ADVANCE(998); + if (lookahead == '>') ADVANCE(2203); + END_STATE(); + case 428: + if (lookahead == '-') ADVANCE(803); + END_STATE(); + case 429: + if (lookahead == '-') ADVANCE(1062); + END_STATE(); + case 430: + if (lookahead == '-') ADVANCE(1364); + END_STATE(); + case 431: + if (lookahead == '-') ADVANCE(1239); + if (lookahead == 'f') ADVANCE(2055); + END_STATE(); + case 432: + if (lookahead == '-') ADVANCE(792); + END_STATE(); + case 433: + if (lookahead == '-') ADVANCE(1087); + END_STATE(); + case 434: + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + END_STATE(); + case 435: + if (lookahead == '-') ADVANCE(655); + END_STATE(); + case 436: + if (lookahead == '-') ADVANCE(1778); + END_STATE(); + case 437: + if (lookahead == '-') ADVANCE(689); + END_STATE(); + case 438: + if (lookahead == '-') ADVANCE(2140); + END_STATE(); + case 439: + if (lookahead == '-') ADVANCE(690); + END_STATE(); + case 440: + if (lookahead == '-') ADVANCE(2096); + if (lookahead == 'o') ADVANCE(1932); + END_STATE(); + case 441: + if (lookahead == '-') ADVANCE(740); + END_STATE(); + case 442: + if (lookahead == '-') ADVANCE(1150); + END_STATE(); + case 443: + if (lookahead == '-') ADVANCE(1551); + END_STATE(); + case 444: + if (lookahead == '-') ADVANCE(1554); + END_STATE(); + case 445: + if (lookahead == '-') ADVANCE(1455); + END_STATE(); + case 446: + if (lookahead == '-') ADVANCE(1595); + END_STATE(); + case 447: + if (lookahead == '-') ADVANCE(1861); + END_STATE(); + case 448: + if (lookahead == '-') ADVANCE(2013); + END_STATE(); + case 449: + if (lookahead == '-') ADVANCE(2050); + END_STATE(); + case 450: + if (lookahead == '-') ADVANCE(1506); + END_STATE(); + case 451: + if (lookahead == '-') ADVANCE(2239); + END_STATE(); + case 452: + if (lookahead == '-') ADVANCE(722); + END_STATE(); + case 453: + if (lookahead == '-') ADVANCE(1869); + END_STATE(); + case 454: + if (lookahead == '-') ADVANCE(1176); + END_STATE(); + case 455: + if (lookahead == '-') ADVANCE(1167); + END_STATE(); + case 456: + if (lookahead == '-') ADVANCE(1167); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(4412); + END_STATE(); + case 457: + if (lookahead == '-') ADVANCE(2035); + END_STATE(); + case 458: + if (lookahead == '-') ADVANCE(1685); + END_STATE(); + case 459: + if (lookahead == '-') ADVANCE(1687); + END_STATE(); + case 460: + if (lookahead == '-') ADVANCE(1669); + END_STATE(); + case 461: + if (lookahead == '-') ADVANCE(2144); + END_STATE(); + case 462: + if (lookahead == '-') ADVANCE(1522); + END_STATE(); + case 463: + if (lookahead == '-') ADVANCE(1672); + END_STATE(); + case 464: + if (lookahead == '-') ADVANCE(754); + END_STATE(); + case 465: + if (lookahead == '-') ADVANCE(755); + END_STATE(); + case 466: + if (lookahead == '-') ADVANCE(2146); + END_STATE(); + case 467: + if (lookahead == '-') ADVANCE(1674); + END_STATE(); + case 468: + if (lookahead == '-') ADVANCE(756); + END_STATE(); + case 469: + if (lookahead == '-') ADVANCE(2147); + END_STATE(); + case 470: + if (lookahead == '-') ADVANCE(757); + END_STATE(); + case 471: + if (lookahead == '-') ADVANCE(758); + END_STATE(); + case 472: + if (lookahead == '-') ADVANCE(2149); + END_STATE(); + case 473: + if (lookahead == '-') ADVANCE(2150); + END_STATE(); + case 474: + if (lookahead == '-') ADVANCE(761); + END_STATE(); + case 475: + if (lookahead == '-') ADVANCE(763); + END_STATE(); + case 476: + if (lookahead == '-') ADVANCE(764); + END_STATE(); + case 477: + if (lookahead == '.') ADVANCE(522); + if (lookahead == '>') ADVANCE(4206); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + END_STATE(); + case 478: + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + END_STATE(); + case 479: + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + END_STATE(); + case 480: + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + END_STATE(); + case 481: + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4603); + END_STATE(); + case 482: + if (lookahead == '.') ADVANCE(4233); + END_STATE(); + case 483: + if (lookahead == '.') ADVANCE(482); + END_STATE(); + case 484: + if (lookahead == '.') ADVANCE(482); + if (lookahead == '_') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4525); + END_STATE(); + case 485: + if (lookahead == '.') ADVANCE(523); + if (lookahead == '_') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + END_STATE(); + case 486: + if (lookahead == '2') ADVANCE(5090); + END_STATE(); + case 487: + if (lookahead == '2') ADVANCE(4789); + END_STATE(); + case 488: + if (lookahead == '2') ADVANCE(4764); + END_STATE(); + case 489: + if (lookahead == '2') ADVANCE(4779); + END_STATE(); + case 490: + if (lookahead == '2') ADVANCE(2228); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2234); + END_STATE(); + case 491: + if (lookahead == '2') ADVANCE(497); + END_STATE(); + case 492: + if (lookahead == '3') ADVANCE(488); + if (lookahead == '6') ADVANCE(494); + END_STATE(); + case 493: + if (lookahead == '3') ADVANCE(489); + if (lookahead == '6') ADVANCE(495); + END_STATE(); + case 494: + if (lookahead == '4') ADVANCE(4766); + END_STATE(); + case 495: + if (lookahead == '4') ADVANCE(4781); + END_STATE(); + case 496: + if (lookahead == '5') ADVANCE(4814); + END_STATE(); + case 497: + if (lookahead == '5') ADVANCE(498); + END_STATE(); + case 498: + if (lookahead == '6') ADVANCE(4815); + END_STATE(); + case 499: + if (lookahead == ':') ADVANCE(4717); + if (lookahead == ';') ADVANCE(4720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(499); + END_STATE(); + case 500: + if (lookahead == ':') ADVANCE(4717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(500); + END_STATE(); + case 501: + if (lookahead == ':') ADVANCE(2235); + END_STATE(); + case 502: + if (lookahead == ':') ADVANCE(2236); + END_STATE(); + case 503: + if (lookahead == ';') ADVANCE(4720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(503); + END_STATE(); + case 504: + if (lookahead == '=') ADVANCE(4399); + if (lookahead == '~') ADVANCE(4410); + END_STATE(); + case 505: + if (lookahead == '=') ADVANCE(4397); + if (lookahead == '>') ADVANCE(4323); + if (lookahead == '~') ADVANCE(4408); + END_STATE(); + case 506: + if (lookahead == '=') ADVANCE(4397); + if (lookahead == '~') ADVANCE(4408); + END_STATE(); + case 507: + if (lookahead == '=') ADVANCE(3697); + if (lookahead == '~') ADVANCE(3685); + END_STATE(); + case 508: + if (lookahead == '>') ADVANCE(4323); + END_STATE(); + case 509: + if (lookahead == '>') ADVANCE(5149); + END_STATE(); + case 510: + if (lookahead == '>') ADVANCE(5145); + END_STATE(); + case 511: + if (lookahead == '>') ADVANCE(5137); + END_STATE(); + case 512: + if (lookahead == '>') ADVANCE(5141); + END_STATE(); + case 513: + if (lookahead == '>') ADVANCE(4206); + END_STATE(); + case 514: + if (lookahead == '>') ADVANCE(2200); + END_STATE(); + case 515: + if (lookahead == '>') ADVANCE(2202); + END_STATE(); + case 516: + if (lookahead == '>') ADVANCE(2204); + END_STATE(); + case 517: + if (lookahead == '>') ADVANCE(2205); + END_STATE(); + case 518: + if (lookahead == 'I') ADVANCE(2209); + if (lookahead == '_') ADVANCE(531); + if (lookahead == 'i') ADVANCE(686); + if (lookahead == '+' || + lookahead == '-') ADVANCE(531); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 519: + if (lookahead == 'I') ADVANCE(2209); + if (lookahead == 'i') ADVANCE(2209); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + END_STATE(); + case 520: + if (lookahead == 'I') ADVANCE(2209); + if (lookahead == 'i') ADVANCE(1451); + if (lookahead == 'o') ADVANCE(788); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + END_STATE(); + case 521: + if (lookahead == 'I') ADVANCE(2209); + if (lookahead == 'i') ADVANCE(686); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + END_STATE(); + case 522: + if (lookahead == '_') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + END_STATE(); + case 523: + if (lookahead == '_') ADVANCE(523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + END_STATE(); + case 524: + if (lookahead == '_') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + END_STATE(); + case 525: + if (lookahead == '_') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4603); + END_STATE(); + case 526: + if (lookahead == '_') ADVANCE(527); + if (lookahead == '+' || + lookahead == '-') ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + END_STATE(); + case 527: + if (lookahead == '_') ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + END_STATE(); + case 528: + if (lookahead == '_') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + END_STATE(); + case 529: + if (lookahead == '_') ADVANCE(531); + if (lookahead == 'o') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 530: + if (lookahead == '_') ADVANCE(531); + if (lookahead == '+' || + lookahead == '-') ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 531: + if (lookahead == '_') ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + END_STATE(); + case 532: + if (lookahead == '_') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4525); + END_STATE(); + case 533: + if (lookahead == '_') ADVANCE(534); + if (lookahead == '+' || + lookahead == '-') ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + END_STATE(); + case 534: + if (lookahead == '_') ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + END_STATE(); + case 535: + if (lookahead == '`') ADVANCE(4695); + if (lookahead != 0) ADVANCE(535); + END_STATE(); + case 536: + if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'd') ADVANCE(1127); + if (lookahead == 'f') ADVANCE(1530); + if (lookahead == 'n') ADVANCE(1531); + if (lookahead == 'p') ADVANCE(547); + if (lookahead == 't') ADVANCE(1532); + if (lookahead == 'u') ADVANCE(1908); + END_STATE(); + case 537: ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '"', 2782, - '#', 4071, - '$', 2426, - '\'', 2798, - '(', 2506, - ')', 2631, - '*', 1769, - '+', 1774, - ',', 2304, - '-', 1775, - '.', 2570, - '/', 1771, - '0', 1971, - ':', 2810, - ';', 2263, - '<', 1792, - '=', 839, - '>', 1795, - '?', 2328, - '@', 2325, - '[', 2752, - ']', 2301, - '^', 2819, - '_', 2418, - '`', 485, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 12, - ' ', 12, - '!', 3618, - '&', 3618, - 'I', 2024, - 'i', 2024, - 'N', 2018, - 'n', 2018, - 0x0b, 450, - '\f', 450, + 'a', 691, + 'c', 1003, + 'e', 2163, + 'f', 1292, + 'l', 1410, + 'm', 552, + 'p', 1756, + 'r', 1543, + 's', 1138, + 't', 565, + 'v', 606, + ); + END_STATE(); + case 538: + if (lookahead == 'a') ADVANCE(1398); + if (lookahead == 'o') ADVANCE(1370); + END_STATE(); + case 539: + ADVANCE_MAP( + 'a', 794, + 'b', 2103, + 'c', 1599, + 'e', 1527, + 'i', 1463, + 'l', 1034, + 'r', 834, + 's', 2049, + ); + END_STATE(); + case 540: + if (lookahead == 'a') ADVANCE(1246); + END_STATE(); + case 541: + if (lookahead == 'a') ADVANCE(1737); + END_STATE(); + case 542: + ADVANCE_MAP( + 'a', 1075, + 'c', 543, + 'd', 631, + 'e', 2165, + 'f', 999, + 'g', 979, + 'i', 1372, + 'j', 1615, + 'l', 651, + 'm', 561, + 'n', 440, + 'o', 1661, + 'p', 1132, + 'q', 2068, + 'r', 838, + 's', 544, + 't', 612, + 'u', 1421, + 'v', 551, + 'w', 1121, + ); + END_STATE(); + case 543: + if (lookahead == 'a') ADVANCE(741); + if (lookahead == 'o') ADVANCE(1266); + if (lookahead == 'u') ADVANCE(1392); + END_STATE(); + case 544: + ADVANCE_MAP( + 'a', 1373, + 'c', 1115, + 'e', 1339, + 'h', 630, + 'l', 1195, + 'o', 1744, + 't', 774, + 'u', 1362, + ); + END_STATE(); + case 545: + if (lookahead == 'a') ADVANCE(4981); + END_STATE(); + case 546: + if (lookahead == 'a') ADVANCE(1249); + if (lookahead == 'o') ADVANCE(825); + END_STATE(); + case 547: + if (lookahead == 'a') ADVANCE(1716); + END_STATE(); + case 548: + if (lookahead == 'a') ADVANCE(1284); + if (lookahead == 'c') ADVANCE(1547); + if (lookahead == 'e') ADVANCE(1886); + if (lookahead == 'm') ADVANCE(1549); + if (lookahead == 'o') ADVANCE(1645); + END_STATE(); + case 549: + if (lookahead == 'a') ADVANCE(491); + END_STATE(); + case 550: + if (lookahead == 'a') ADVANCE(1688); + if (lookahead == 'l') ADVANCE(1187); + if (lookahead == 'n') ADVANCE(1066); + END_STATE(); + case 551: + if (lookahead == 'a') ADVANCE(1325); + END_STATE(); + case 552: + if (lookahead == 'a') ADVANCE(2152); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 'i') ADVANCE(1413); + if (lookahead == 'o') ADVANCE(806); + END_STATE(); + case 553: + if (lookahead == 'a') ADVANCE(2188); + END_STATE(); + case 554: + if (lookahead == 'a') ADVANCE(2172); + END_STATE(); + case 555: + if (lookahead == 'a') ADVANCE(700); + END_STATE(); + case 556: + if (lookahead == 'a') ADVANCE(1996); + END_STATE(); + case 557: + if (lookahead == 'a') ADVANCE(1889); + END_STATE(); + case 558: + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'i') ADVANCE(1383); + END_STATE(); + case 559: + if (lookahead == 'a') ADVANCE(1763); + END_STATE(); + case 560: + if (lookahead == 'a') ADVANCE(708); + END_STATE(); + case 561: + if (lookahead == 'a') ADVANCE(2156); + if (lookahead == 'e') ADVANCE(586); + if (lookahead == 'i') ADVANCE(1426); + END_STATE(); + case 562: + if (lookahead == 'a') ADVANCE(709); + END_STATE(); + case 563: + if (lookahead == 'a') ADVANCE(2157); + if (lookahead == 'i') ADVANCE(1442); + END_STATE(); + case 564: + if (lookahead == 'a') ADVANCE(771); + END_STATE(); + case 565: + if (lookahead == 'a') ADVANCE(1415); + END_STATE(); + case 566: + if (lookahead == 'a') ADVANCE(746); + if (lookahead == 's') ADVANCE(989); + END_STATE(); + case 567: + if (lookahead == 'a') ADVANCE(1633); + END_STATE(); + case 568: + if (lookahead == 'a') ADVANCE(1893); + END_STATE(); + case 569: + if (lookahead == 'a') ADVANCE(1402); + END_STATE(); + case 570: + if (lookahead == 'a') ADVANCE(2180); + END_STATE(); + case 571: + if (lookahead == 'a') ADVANCE(2181); + END_STATE(); + case 572: + if (lookahead == 'a') ADVANCE(1692); + END_STATE(); + case 573: + if (lookahead == 'a') ADVANCE(1321); + END_STATE(); + case 574: + if (lookahead == 'a') ADVANCE(2038); + if (lookahead == 'u') ADVANCE(1766); + END_STATE(); + case 575: + if (lookahead == 'a') ADVANCE(1711); + END_STATE(); + case 576: + if (lookahead == 'a') ADVANCE(1424); + END_STATE(); + case 577: + if (lookahead == 'a') ADVANCE(1503); + END_STATE(); + case 578: + if (lookahead == 'a') ADVANCE(1921); + END_STATE(); + case 579: + if (lookahead == 'a') ADVANCE(1768); + END_STATE(); + case 580: + if (lookahead == 'a') ADVANCE(1714); + END_STATE(); + case 581: + if (lookahead == 'a') ADVANCE(1430); + END_STATE(); + case 582: + if (lookahead == 'a') ADVANCE(2057); + END_STATE(); + case 583: + if (lookahead == 'a') ADVANCE(1717); + END_STATE(); + case 584: + if (lookahead == 'a') ADVANCE(1431); + END_STATE(); + case 585: + if (lookahead == 'a') ADVANCE(1332); + END_STATE(); + case 586: + if (lookahead == 'a') ADVANCE(1433); + if (lookahead == 'd') ADVANCE(1199); + END_STATE(); + case 587: + if (lookahead == 'a') ADVANCE(1270); + END_STATE(); + case 588: + if (lookahead == 'a') ADVANCE(1928); + END_STATE(); + case 589: + if (lookahead == 'a') ADVANCE(1698); + END_STATE(); + case 590: + if (lookahead == 'a') ADVANCE(2000); + END_STATE(); + case 591: + if (lookahead == 'a') ADVANCE(1274); + END_STATE(); + case 592: + if (lookahead == 'a') ADVANCE(1440); + END_STATE(); + case 593: + if (lookahead == 'a') ADVANCE(1940); + END_STATE(); + case 594: + if (lookahead == 'a') ADVANCE(1446); + if (lookahead == 'u') ADVANCE(1303); + END_STATE(); + case 595: + if (lookahead == 'a') ADVANCE(2045); + END_STATE(); + case 596: + if (lookahead == 'a') ADVANCE(2024); + END_STATE(); + case 597: + if (lookahead == 'a') ADVANCE(1830); + END_STATE(); + case 598: + if (lookahead == 'a') ADVANCE(1955); + END_STATE(); + case 599: + if (lookahead == 'a') ADVANCE(1958); + END_STATE(); + case 600: + if (lookahead == 'a') ADVANCE(2019); + END_STATE(); + case 601: + if (lookahead == 'a') ADVANCE(1981); + if (lookahead == 'o') ADVANCE(1846); + if (lookahead == 'u') ADVANCE(1917); + END_STATE(); + case 602: + if (lookahead == 'a') ADVANCE(1459); + if (lookahead == 'n') ADVANCE(1557); + if (lookahead == 'o') ADVANCE(1689); + if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 's') ADVANCE(1109); + if (lookahead == 'x') ADVANCE(1559); + END_STATE(); + case 603: + if (lookahead == 'a') ADVANCE(1247); + END_STATE(); + case 604: + if (lookahead == 'a') ADVANCE(1980); + END_STATE(); + case 605: + if (lookahead == 'a') ADVANCE(804); + END_STATE(); + case 606: + if (lookahead == 'a') ADVANCE(1726); + END_STATE(); + case 607: + if (lookahead == 'a') ADVANCE(1078); + END_STATE(); + case 608: + if (lookahead == 'a') ADVANCE(1384); + END_STATE(); + case 609: + if (lookahead == 'a') ADVANCE(1734); + END_STATE(); + case 610: + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'l') ADVANCE(1214); + if (lookahead == 'r') ADVANCE(1361); + if (lookahead == 's') ADVANCE(2010); + END_STATE(); + case 611: + if (lookahead == 'a') ADVANCE(1368); + END_STATE(); + case 612: + if (lookahead == 'a') ADVANCE(1248); + END_STATE(); + case 613: + if (lookahead == 'a') ADVANCE(1784); + END_STATE(); + case 614: + if (lookahead == 'a') ADVANCE(1510); + END_STATE(); + case 615: + if (lookahead == 'a') ADVANCE(1486); + END_STATE(); + case 616: + if (lookahead == 'a') ADVANCE(1650); + END_STATE(); + case 617: + if (lookahead == 'a') ADVANCE(2015); + if (lookahead == 'u') ADVANCE(1781); + END_STATE(); + case 618: + if (lookahead == 'a') ADVANCE(724); + END_STATE(); + case 619: + if (lookahead == 'a') ADVANCE(1757); + END_STATE(); + case 620: + if (lookahead == 'a') ADVANCE(1738); + END_STATE(); + case 621: + if (lookahead == 'a') ADVANCE(2039); + END_STATE(); + case 622: + if (lookahead == 'a') ADVANCE(2080); + END_STATE(); + case 623: + if (lookahead == 'a') ADVANCE(1386); + END_STATE(); + case 624: + if (lookahead == 'a') ADVANCE(2036); + END_STATE(); + case 625: + if (lookahead == 'a') ADVANCE(1326); + END_STATE(); + case 626: + if (lookahead == 'a') ADVANCE(1387); + END_STATE(); + case 627: + if (lookahead == 'a') ADVANCE(1468); + END_STATE(); + case 628: + if (lookahead == 'a') ADVANCE(1375); + if (lookahead == 'm') ADVANCE(1260); + END_STATE(); + case 629: + if (lookahead == 'a') ADVANCE(1853); + END_STATE(); + case 630: + if (lookahead == 'a') ADVANCE(1653); + if (lookahead == 'i') ADVANCE(1060); + END_STATE(); + case 631: + if (lookahead == 'a') ADVANCE(2018); + if (lookahead == 'e') ADVANCE(716); + if (lookahead == 'r') ADVANCE(1567); + if (lookahead == 'u') ADVANCE(1390); + END_STATE(); + case 632: + if (lookahead == 'a') ADVANCE(1473); + END_STATE(); + case 633: + if (lookahead == 'a') ADVANCE(1855); + END_STATE(); + case 634: + if (lookahead == 'a') ADVANCE(1991); + END_STATE(); + case 635: + if (lookahead == 'a') ADVANCE(2020); + END_STATE(); + case 636: + if (lookahead == 'a') ADVANCE(730); + END_STATE(); + case 637: + if (lookahead == 'a') ADVANCE(1475); + END_STATE(); + case 638: + if (lookahead == 'a') ADVANCE(1888); + END_STATE(); + case 639: + if (lookahead == 'a') ADVANCE(1505); + END_STATE(); + case 640: + if (lookahead == 'a') ADVANCE(1177); + END_STATE(); + case 641: + if (lookahead == 'a') ADVANCE(1856); + END_STATE(); + case 642: + if (lookahead == 'a') ADVANCE(2023); + END_STATE(); + case 643: + if (lookahead == 'a') ADVANCE(1307); + END_STATE(); + case 644: + if (lookahead == 'a') ADVANCE(1753); + END_STATE(); + case 645: + if (lookahead == 'a') ADVANCE(1993); + END_STATE(); + case 646: + if (lookahead == 'a') ADVANCE(2025); + END_STATE(); + case 647: + if (lookahead == 'a') ADVANCE(734); + END_STATE(); + case 648: + if (lookahead == 'a') ADVANCE(1507); + END_STATE(); + case 649: + if (lookahead == 'a') ADVANCE(1865); + END_STATE(); + case 650: + if (lookahead == 'a') ADVANCE(1866); + END_STATE(); + case 651: + if (lookahead == 'a') ADVANCE(1862); + if (lookahead == 'e') ADVANCE(1425); + if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'o') ADVANCE(2143); + END_STATE(); + case 652: + if (lookahead == 'a') ADVANCE(2027); + END_STATE(); + case 653: + if (lookahead == 'a') ADVANCE(1202); + END_STATE(); + case 654: + if (lookahead == 'a') ADVANCE(2028); + END_STATE(); + case 655: + if (lookahead == 'a') ADVANCE(1484); + if (lookahead == 'o') ADVANCE(1704); + if (lookahead == 's') ADVANCE(1110); + if (lookahead == 'x') ADVANCE(1581); + END_STATE(); + case 656: + if (lookahead == 'a') ADVANCE(1873); + END_STATE(); + case 657: + if (lookahead == 'a') ADVANCE(1874); + END_STATE(); + case 658: + if (lookahead == 'a') ADVANCE(1875); + END_STATE(); + case 659: + if (lookahead == 'a') ADVANCE(1876); + END_STATE(); + case 660: + if (lookahead == 'a') ADVANCE(1877); + END_STATE(); + case 661: + if (lookahead == 'a') ADVANCE(2011); + END_STATE(); + case 662: + if (lookahead == 'a') ADVANCE(2012); + END_STATE(); + case 663: + if (lookahead == 'a') ADVANCE(1879); + END_STATE(); + case 664: + if (lookahead == 'a') ADVANCE(1881); + END_STATE(); + case 665: + if (lookahead == 'a') ADVANCE(1882); + END_STATE(); + case 666: + if (lookahead == 'a') ADVANCE(697); + END_STATE(); + case 667: + if (lookahead == 'a') ADVANCE(1767); + END_STATE(); + case 668: + if (lookahead == 'a') ADVANCE(2051); + END_STATE(); + case 669: + if (lookahead == 'a') ADVANCE(1333); + END_STATE(); + case 670: + if (lookahead == 'a') ADVANCE(2054); + END_STATE(); + case 671: + if (lookahead == 'a') ADVANCE(1511); + END_STATE(); + case 672: + if (lookahead == 'a') ADVANCE(2056); + END_STATE(); + case 673: + if (lookahead == 'a') ADVANCE(1520); + if (lookahead == 'e') ADVANCE(1713); + END_STATE(); + case 674: + if (lookahead == 'a') ADVANCE(1780); + if (lookahead == 'l') ADVANCE(1204); + if (lookahead == 'n') ADVANCE(1067); + END_STATE(); + case 675: + if (lookahead == 'a') ADVANCE(2058); + END_STATE(); + case 676: + if (lookahead == 'a') ADVANCE(1349); + if (lookahead == 'c') ADVANCE(1630); + if (lookahead == 'e') ADVANCE(1462); + if (lookahead == 'm') ADVANCE(1627); + if (lookahead == 'v') ADVANCE(619); + END_STATE(); + case 677: + if (lookahead == 'a') ADVANCE(1355); + END_STATE(); + case 678: + if (lookahead == 'a') ADVANCE(1250); + END_STATE(); + case 679: + if (lookahead == 'a') ADVANCE(1785); + END_STATE(); + case 680: + ADVANCE_MAP( + 'b', 2184, + 'c', 1786, + 'g', 2185, + 'h', 1909, + 'j', 1837, + 'm', 766, + 'n', 2094, + 'p', 550, + 't', 830, + 'x', 1357, + 'y', 611, + 'z', 1834, + ); + END_STATE(); + case 681: + ADVANCE_MAP( + 'b', 927, + 'c', 538, + 'd', 831, + 'e', 1501, + 'i', 1457, + 'j', 1593, + 'k', 832, + 'l', 930, + 'p', 557, + 'r', 833, + 's', 738, + 't', 1133, + 'u', 1638, + 'w', 1718, + ); + END_STATE(); + case 682: + ADVANCE_MAP( + 'b', 1128, + 'c', 948, + 'd', 574, + 'f', 1144, + 'g', 1290, + 'i', 1472, + 'r', 929, + 's', 1680, + 'v', 573, + ); + END_STATE(); + case 683: + if (lookahead == 'b') ADVANCE(5008); + END_STATE(); + case 684: + if (lookahead == 'b') ADVANCE(4841); + END_STATE(); + case 685: + if (lookahead == 'b') ADVANCE(5011); + END_STATE(); + case 686: + if (lookahead == 'b') ADVANCE(4638); + END_STATE(); + case 687: + if (lookahead == 'b') ADVANCE(2071); + if (lookahead == 'd') ADVANCE(925); + if (lookahead == 'e') ADVANCE(1524); + if (lookahead == 'j') ADVANCE(1602); + if (lookahead == 'p') ADVANCE(559); + if (lookahead == 's') ADVANCE(1655); + END_STATE(); + case 688: + if (lookahead == 'b') ADVANCE(1153); + if (lookahead == 'c') ADVANCE(1123); + if (lookahead == 'd') ADVANCE(1174); + if (lookahead == 'f') ADVANCE(1336); + if (lookahead == 'i') ADVANCE(1491); + if (lookahead == 'u') ADVANCE(2074); + END_STATE(); + case 689: + if (lookahead == 'b') ADVANCE(2173); + END_STATE(); + case 690: + if (lookahead == 'b') ADVANCE(2176); + END_STATE(); + case 691: + if (lookahead == 'b') ADVANCE(1789); + if (lookahead == 'r') ADVANCE(703); + if (lookahead == 'v') ADVANCE(1068); + END_STATE(); + case 692: + if (lookahead == 'b') ADVANCE(555); + END_STATE(); + case 693: + if (lookahead == 'b') ADVANCE(1887); + END_STATE(); + case 694: + ADVANCE_MAP( + 'b', 2187, + 'c', 1835, + 'e', 1369, + 'g', 2186, + 'i', 712, + 'j', 1891, + 'm', 1900, + 'n', 2100, + 'o', 795, + 'p', 674, + 's', 1836, + 't', 1609, + 'u', 1722, + 'v', 705, + 'x', 1285, + 'y', 628, + 'z', 1839, + ); + END_STATE(); + case 695: + ADVANCE_MAP( + 'b', 568, + 'd', 1141, + 'e', 2161, + 'j', 1605, + 'p', 667, + 'r', 952, + 's', 1668, + 't', 2182, + ); + END_STATE(); + case 696: + if (lookahead == 'b') ADVANCE(1312); + END_STATE(); + case 697: + if (lookahead == 'b') ADVANCE(1317); + END_STATE(); + case 698: + if (lookahead == 'b') ADVANCE(633); + if (lookahead == 'h') ADVANCE(934); + END_STATE(); + case 699: + if (lookahead == 'b') ADVANCE(638); + if (lookahead == 'h') ADVANCE(936); + END_STATE(); + case 700: + if (lookahead == 'b') ADVANCE(465); + END_STATE(); + case 701: + if (lookahead == 'c') ADVANCE(1120); + if (lookahead == 'd') ADVANCE(556); + END_STATE(); + case 702: + if (lookahead == 'c') ADVANCE(1043); + if (lookahead == 'l') ADVANCE(1212); + if (lookahead == 'r') ADVANCE(1552); + if (lookahead == 'w') ADVANCE(1563); + END_STATE(); + case 703: + if (lookahead == 'c') ADVANCE(736); + END_STATE(); + case 704: + if (lookahead == 'c') ADVANCE(4645); + END_STATE(); + case 705: + if (lookahead == 'c') ADVANCE(1046); + END_STATE(); + case 706: + if (lookahead == 'c') ADVANCE(1639); + if (lookahead == 'd') ADVANCE(1134); + if (lookahead == 'h') ADVANCE(1603); + if (lookahead == 'm') ADVANCE(926); + if (lookahead == 'n') ADVANCE(937); + if (lookahead == 't') ADVANCE(931); + if (lookahead == 'u') ADVANCE(1840); + END_STATE(); + case 707: + if (lookahead == 'c') ADVANCE(1469); + END_STATE(); + case 708: + if (lookahead == 'c') ADVANCE(1241); + END_STATE(); + case 709: + if (lookahead == 'c') ADVANCE(1242); + END_STATE(); + case 710: + if (lookahead == 'c') ADVANCE(1728); + if (lookahead == 'd') ADVANCE(1035); + if (lookahead == 'e') ADVANCE(2164); + if (lookahead == 'i') ADVANCE(1403); + if (lookahead == 'o') ADVANCE(1657); + if (lookahead == 'r') ADVANCE(1000); + if (lookahead == 'u') ADVANCE(1641); + END_STATE(); + case 711: + if (lookahead == 'c') ADVANCE(1091); + END_STATE(); + case 712: + if (lookahead == 'c') ADVANCE(1787); + if (lookahead == 'n') ADVANCE(1129); + END_STATE(); + case 713: + if (lookahead == 'c') ADVANCE(1556); + if (lookahead == 'n') ADVANCE(1979); + END_STATE(); + case 714: + if (lookahead == 'c') ADVANCE(1094); + END_STATE(); + case 715: + if (lookahead == 'c') ADVANCE(616); + END_STATE(); + case 716: + if (lookahead == 'c') ADVANCE(1189); + END_STATE(); + case 717: + if (lookahead == 'c') ADVANCE(1594); + if (lookahead == 'd') ADVANCE(1008); + if (lookahead == 'u') ADVANCE(1471); + END_STATE(); + case 718: + if (lookahead == 'c') ADVANCE(1606); + END_STATE(); + case 719: + if (lookahead == 'c') ADVANCE(1105); + END_STATE(); + case 720: + if (lookahead == 'c') ADVANCE(1106); + END_STATE(); + case 721: + if (lookahead == 'c') ADVANCE(1621); + END_STATE(); + case 722: + if (lookahead == 'c') ADVANCE(1562); + END_STATE(); + case 723: + if (lookahead == 'c') ADVANCE(856); + END_STATE(); + case 724: + if (lookahead == 'c') ADVANCE(860); + END_STATE(); + case 725: + if (lookahead == 'c') ADVANCE(862); + END_STATE(); + case 726: + if (lookahead == 'c') ADVANCE(1949); + END_STATE(); + case 727: + if (lookahead == 'c') ADVANCE(867); + END_STATE(); + case 728: + if (lookahead == 'c') ADVANCE(868); + END_STATE(); + case 729: + if (lookahead == 'c') ADVANCE(1957); + END_STATE(); + case 730: + if (lookahead == 'c') ADVANCE(870); + END_STATE(); + case 731: + if (lookahead == 'c') ADVANCE(1959); + END_STATE(); + case 732: + if (lookahead == 'c') ADVANCE(1962); + END_STATE(); + case 733: + if (lookahead == 'c') ADVANCE(877); + END_STATE(); + case 734: + if (lookahead == 'c') ADVANCE(887); + END_STATE(); + case 735: + if (lookahead == 'c') ADVANCE(907); + END_STATE(); + case 736: + if (lookahead == 'c') ADVANCE(1570); + if (lookahead == 's') ADVANCE(1158); + if (lookahead == 't') ADVANCE(581); + END_STATE(); + case 737: + if (lookahead == 'c') ADVANCE(677); + END_STATE(); + case 738: + if (lookahead == 'c') ADVANCE(1755); + if (lookahead == 'i') ADVANCE(1397); + if (lookahead == 'n') ADVANCE(540); + if (lookahead == 't') ADVANCE(541); + if (lookahead == 'u') ADVANCE(693); + END_STATE(); + case 739: + if (lookahead == 'c') ADVANCE(629); + END_STATE(); + case 740: + if (lookahead == 'c') ADVANCE(2105); + END_STATE(); + case 741: + if (lookahead == 'c') ADVANCE(1117); + if (lookahead == 's') ADVANCE(1942); + END_STATE(); + case 742: + if (lookahead == 'c') ADVANCE(1569); + END_STATE(); + case 743: + if (lookahead == 'c') ADVANCE(1012); + END_STATE(); + case 744: + if (lookahead == 'c') ADVANCE(1005); + END_STATE(); + case 745: + if (lookahead == 'c') ADVANCE(1574); + END_STATE(); + case 746: + if (lookahead == 'c') ADVANCE(743); + END_STATE(); + case 747: + if (lookahead == 'c') ADVANCE(599); + if (lookahead == 't') ADVANCE(653); + END_STATE(); + case 748: + if (lookahead == 'c') ADVANCE(1611); + END_STATE(); + case 749: + if (lookahead == 'c') ADVANCE(1622); + END_STATE(); + case 750: + if (lookahead == 'c') ADVANCE(1614); + END_STATE(); + case 751: + if (lookahead == 'c') ADVANCE(652); + END_STATE(); + case 752: + if (lookahead == 'c') ADVANCE(654); + END_STATE(); + case 753: + if (lookahead == 'c') ADVANCE(650); + END_STATE(); + case 754: + if (lookahead == 'c') ADVANCE(656); + END_STATE(); + case 755: + if (lookahead == 'c') ADVANCE(657); + END_STATE(); + case 756: + if (lookahead == 'c') ADVANCE(658); + END_STATE(); + case 757: + if (lookahead == 'c') ADVANCE(659); + END_STATE(); + case 758: + if (lookahead == 'c') ADVANCE(660); + END_STATE(); + case 759: + if (lookahead == 'c') ADVANCE(663); + END_STATE(); + case 760: + if (lookahead == 'c') ADVANCE(664); + END_STATE(); + case 761: + if (lookahead == 'c') ADVANCE(665); + END_STATE(); + case 762: + if (lookahead == 'c') ADVANCE(1628); + END_STATE(); + case 763: + if (lookahead == 'c') ADVANCE(2119); + END_STATE(); + case 764: + if (lookahead == 'c') ADVANCE(1629); + END_STATE(); + case 765: + if (lookahead == 'c') ADVANCE(1044); + END_STATE(); + case 766: + if (lookahead == 'd') ADVANCE(5095); + if (lookahead == 's') ADVANCE(1080); + END_STATE(); + case 767: + if (lookahead == 'd') ADVANCE(4771); + END_STATE(); + case 768: + if (lookahead == 'd') ADVANCE(496); + END_STATE(); + case 769: + if (lookahead == 'd') ADVANCE(4730); + END_STATE(); + case 770: + if (lookahead == 'd') ADVANCE(4738); + END_STATE(); + case 771: + if (lookahead == 'd') ADVANCE(4826); + END_STATE(); + case 772: + if (lookahead == 'd') ADVANCE(4871); + END_STATE(); + case 773: + if (lookahead == 'd') ADVANCE(4891); + END_STATE(); + case 774: + if (lookahead == 'd') ADVANCE(4989); + if (lookahead == 'o') ADVANCE(1750); + if (lookahead == 'r') ADVANCE(431); + END_STATE(); + case 775: + if (lookahead == 'd') ADVANCE(5060); + END_STATE(); + case 776: + if (lookahead == 'd') ADVANCE(4740); + END_STATE(); + case 777: + if (lookahead == 'd') ADVANCE(4843); + END_STATE(); + case 778: + if (lookahead == 'd') ADVANCE(4885); + END_STATE(); + case 779: + if (lookahead == 'd') ADVANCE(5020); + END_STATE(); + case 780: + if (lookahead == 'd') ADVANCE(5049); + END_STATE(); + case 781: + if (lookahead == 'd') ADVANCE(4899); + END_STATE(); + case 782: + if (lookahead == 'd') ADVANCE(4759); + END_STATE(); + case 783: + if (lookahead == 'd') ADVANCE(4942); + END_STATE(); + case 784: + if (lookahead == 'd') ADVANCE(4952); + END_STATE(); + case 785: + if (lookahead == 'd') ADVANCE(4940); + END_STATE(); + case 786: + if (lookahead == 'd') ADVANCE(4385); + END_STATE(); + case 787: + if (lookahead == 'd') ADVANCE(4441); + END_STATE(); + case 788: + if (lookahead == 'd') ADVANCE(4423); + END_STATE(); + case 789: + if (lookahead == 'd') ADVANCE(767); + END_STATE(); + case 790: + if (lookahead == 'd') ADVANCE(683); + if (lookahead == 'g') ADVANCE(1155); + if (lookahead == 'j') ADVANCE(1894); + if (lookahead == 'w') ADVANCE(932); + if (lookahead == 'x') ADVANCE(1377); + END_STATE(); + case 791: + if (lookahead == 'd') ADVANCE(458); + END_STATE(); + case 792: + if (lookahead == 'd') ADVANCE(1049); + if (lookahead == 'l') ADVANCE(553); + if (lookahead == 'n') ADVANCE(2069); + END_STATE(); + case 793: + if (lookahead == 'd') ADVANCE(946); + if (lookahead == 'g') ADVANCE(947); + if (lookahead == 'h') ADVANCE(942); + if (lookahead == 'o') ADVANCE(1644); + if (lookahead == 'p') ADVANCE(601); + END_STATE(); + case 794: + if (lookahead == 'd') ADVANCE(770); + if (lookahead == 't') ADVANCE(4739); + END_STATE(); + case 795: + if (lookahead == 'd') ADVANCE(1788); + END_STATE(); + case 796: + if (lookahead == 'd') ADVANCE(2111); + END_STATE(); + case 797: + if (lookahead == 'd') ADVANCE(2073); + END_STATE(); + case 798: + if (lookahead == 'd') ADVANCE(2160); + END_STATE(); + case 799: + if (lookahead == 'd') ADVANCE(773); + END_STATE(); + case 800: + if (lookahead == 'd') ADVANCE(1192); + END_STATE(); + case 801: + if (lookahead == 'd') ADVANCE(1542); + if (lookahead == 'l') ADVANCE(924); + if (lookahead == 'r') ADVANCE(1131); + if (lookahead == 'u') ADVANCE(1631); + END_STATE(); + case 802: + if (lookahead == 'd') ADVANCE(1832); + END_STATE(); + case 803: + if (lookahead == 'd') ADVANCE(2117); + if (lookahead == 'i') ADVANCE(1437); + if (lookahead == 'n') ADVANCE(1586); + if (lookahead == 'u') ADVANCE(1525); + END_STATE(); + case 804: + if (lookahead == 'd') ADVANCE(1228); + END_STATE(); + case 805: + if (lookahead == 'd') ADVANCE(922); + END_STATE(); + case 806: + if (lookahead == 'd') ADVANCE(836); + END_STATE(); + case 807: + ADVANCE_MAP( + 'd', 554, + 'h', 1597, + 'm', 1164, + 'n', 615, + 'o', 1732, + 's', 1001, + 'w', 992, + 'y', 1021, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if (lookahead != 0) ADVANCE(2032); END_STATE(); - case 1: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 2555, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '|', 2264, - '}', 2415, - '\t', 3, - ' ', 3, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 808: + if (lookahead == 'd') ADVANCE(1799); + END_STATE(); + case 809: + if (lookahead == 'd') ADVANCE(938); + END_STATE(); + case 810: + if (lookahead == 'd') ADVANCE(1809); + END_STATE(); + case 811: + if (lookahead == 'd') ADVANCE(848); + END_STATE(); + case 812: + if (lookahead == 'd') ADVANCE(849); + END_STATE(); + case 813: + if (lookahead == 'd') ADVANCE(1817); + END_STATE(); + case 814: + if (lookahead == 'd') ADVANCE(882); + END_STATE(); + case 815: + if (lookahead == 'd') ADVANCE(939); + if (lookahead == 'l') ADVANCE(1222); + END_STATE(); + case 816: + if (lookahead == 'd') ADVANCE(884); + END_STATE(); + case 817: + if (lookahead == 'd') ADVANCE(885); + END_STATE(); + case 818: + if (lookahead == 'd') ADVANCE(617); + if (lookahead == 'f') ADVANCE(1236); + if (lookahead == 'p') ADVANCE(582); + END_STATE(); + case 819: + if (lookahead == 'd') ADVANCE(809); + END_STATE(); + case 820: + if (lookahead == 'd') ADVANCE(940); + END_STATE(); + case 821: + if (lookahead == 'd') ADVANCE(1170); + END_STATE(); + case 822: + if (lookahead == 'd') ADVANCE(1166); + END_STATE(); + case 823: + if (lookahead == 'd') ADVANCE(2112); + END_STATE(); + case 824: + if (lookahead == 'd') ADVANCE(642); + END_STATE(); + case 825: + if (lookahead == 'd') ADVANCE(2116); + END_STATE(); + case 826: + if (lookahead == 'd') ADVANCE(646); + END_STATE(); + case 827: + if (lookahead == 'd') ADVANCE(1903); + END_STATE(); + case 828: + if (lookahead == 'd') ADVANCE(2121); + if (lookahead == 'n') ADVANCE(2104); + END_STATE(); + case 829: + if (lookahead == 'd') ADVANCE(1906); + END_STATE(); + case 830: + if (lookahead == 'e') ADVANCE(2162); + if (lookahead == 'o') ADVANCE(1367); + if (lookahead == 's') ADVANCE(2123); + END_STATE(); + case 831: + if (lookahead == 'e') ADVANCE(717); + if (lookahead == 'i') ADVANCE(1841); + if (lookahead == 'o') ADVANCE(2141); + END_STATE(); + case 832: + if (lookahead == 'e') ADVANCE(692); + END_STATE(); + case 833: + if (lookahead == 'e') ADVANCE(1647); + END_STATE(); + case 834: + if (lookahead == 'e') ADVANCE(1378); + END_STATE(); + case 835: + if (lookahead == 'e') ADVANCE(5032); + END_STATE(); + case 836: + if (lookahead == 'e') ADVANCE(4869); + END_STATE(); + case 837: + if (lookahead == 'e') ADVANCE(4890); + END_STATE(); + case 838: + if (lookahead == 'e') ADVANCE(1521); + if (lookahead == 'o') ADVANCE(1324); + END_STATE(); + case 839: + if (lookahead == 'e') ADVANCE(5089); + END_STATE(); + case 840: + if (lookahead == 'e') ADVANCE(5114); + END_STATE(); + case 841: + if (lookahead == 'e') ADVANCE(4778); + END_STATE(); + case 842: + if (lookahead == 'e') ADVANCE(4783); + END_STATE(); + case 843: + if (lookahead == 'e') ADVANCE(4846); + END_STATE(); + case 844: + if (lookahead == 'e') ADVANCE(4887); + END_STATE(); + case 845: + if (lookahead == 'e') ADVANCE(5034); + END_STATE(); + case 846: + if (lookahead == 'e') ADVANCE(5077); + END_STATE(); + case 847: + if (lookahead == 'e') ADVANCE(5087); + END_STATE(); + case 848: + if (lookahead == 'e') ADVANCE(5111); + END_STATE(); + case 849: + if (lookahead == 'e') ADVANCE(5112); + END_STATE(); + case 850: + if (lookahead == 'e') ADVANCE(492); + END_STATE(); + case 851: + if (lookahead == 'e') ADVANCE(4785); + END_STATE(); + case 852: + if (lookahead == 'e') ADVANCE(4824); + END_STATE(); + case 853: + if (lookahead == 'e') ADVANCE(4844); + END_STATE(); + case 854: + if (lookahead == 'e') ADVANCE(4980); + END_STATE(); + case 855: + if (lookahead == 'e') ADVANCE(4999); + END_STATE(); + case 856: + if (lookahead == 'e') ADVANCE(5017); + END_STATE(); + case 857: + if (lookahead == 'e') ADVANCE(5041); + END_STATE(); + case 858: + if (lookahead == 'e') ADVANCE(5042); + END_STATE(); + case 859: + if (lookahead == 'e') ADVANCE(5048); + END_STATE(); + case 860: + if (lookahead == 'e') ADVANCE(5067); + END_STATE(); + case 861: + if (lookahead == 'e') ADVANCE(5068); + END_STATE(); + case 862: + if (lookahead == 'e') ADVANCE(5118); + END_STATE(); + case 863: + if (lookahead == 'e') ADVANCE(4745); + END_STATE(); + case 864: + if (lookahead == 'e') ADVANCE(4883); + END_STATE(); + case 865: + if (lookahead == 'e') ADVANCE(4909); + END_STATE(); + case 866: + if (lookahead == 'e') ADVANCE(4985); + END_STATE(); + case 867: + if (lookahead == 'e') ADVANCE(4987); + END_STATE(); + case 868: + if (lookahead == 'e') ADVANCE(5057); + END_STATE(); + case 869: + if (lookahead == 'e') ADVANCE(5058); + END_STATE(); + case 870: + if (lookahead == 'e') ADVANCE(4746); + END_STATE(); + case 871: + if (lookahead == 'e') ADVANCE(4747); + END_STATE(); + case 872: + if (lookahead == 'e') ADVANCE(4756); + END_STATE(); + case 873: + if (lookahead == 'e') ADVANCE(4760); + END_STATE(); + case 874: + if (lookahead == 'e') ADVANCE(4763); + END_STATE(); + case 875: + if (lookahead == 'e') ADVANCE(4837); + END_STATE(); + case 876: + if (lookahead == 'e') ADVANCE(4839); + END_STATE(); + case 877: + if (lookahead == 'e') ADVANCE(4879); + END_STATE(); + case 878: + if (lookahead == 'e') ADVANCE(4882); + END_STATE(); + case 879: + if (lookahead == 'e') ADVANCE(4974); + END_STATE(); + case 880: + if (lookahead == 'e') ADVANCE(4979); + END_STATE(); + case 881: + if (lookahead == 'e') ADVANCE(5000); + END_STATE(); + case 882: + if (lookahead == 'e') ADVANCE(5056); + END_STATE(); + case 883: + if (lookahead == 'e') ADVANCE(4907); + END_STATE(); + case 884: + if (lookahead == 'e') ADVANCE(4926); + END_STATE(); + case 885: + if (lookahead == 'e') ADVANCE(4947); + END_STATE(); + case 886: + if (lookahead == 'e') ADVANCE(4971); + END_STATE(); + case 887: + if (lookahead == 'e') ADVANCE(4975); + END_STATE(); + case 888: + if (lookahead == 'e') ADVANCE(4977); + END_STATE(); + case 889: + if (lookahead == 'e') ADVANCE(5050); + END_STATE(); + case 890: + if (lookahead == 'e') ADVANCE(5051); + END_STATE(); + case 891: + if (lookahead == 'e') ADVANCE(5064); + END_STATE(); + case 892: + if (lookahead == 'e') ADVANCE(5071); + END_STATE(); + case 893: + if (lookahead == 'e') ADVANCE(5075); + END_STATE(); + case 894: + if (lookahead == 'e') ADVANCE(4787); + END_STATE(); + case 895: + if (lookahead == 'e') ADVANCE(4898); + END_STATE(); + case 896: + if (lookahead == 'e') ADVANCE(4903); + END_STATE(); + case 897: + if (lookahead == 'e') ADVANCE(4966); + END_STATE(); + case 898: + if (lookahead == 'e') ADVANCE(4972); + END_STATE(); + case 899: + if (lookahead == 'e') ADVANCE(4996); + END_STATE(); + case 900: + if (lookahead == 'e') ADVANCE(5066); + END_STATE(); + case 901: + if (lookahead == 'e') ADVANCE(4761); + END_STATE(); + case 902: + if (lookahead == 'e') ADVANCE(4897); + END_STATE(); + case 903: + if (lookahead == 'e') ADVANCE(4905); + END_STATE(); + case 904: + if (lookahead == 'e') ADVANCE(4956); + END_STATE(); + case 905: + if (lookahead == 'e') ADVANCE(4961); + END_STATE(); + case 906: + if (lookahead == 'e') ADVANCE(4969); + END_STATE(); + case 907: + if (lookahead == 'e') ADVANCE(4995); + END_STATE(); + case 908: + if (lookahead == 'e') ADVANCE(5003); + END_STATE(); + case 909: + if (lookahead == 'e') ADVANCE(4904); + END_STATE(); + case 910: + if (lookahead == 'e') ADVANCE(4919); + END_STATE(); + case 911: + if (lookahead == 'e') ADVANCE(4938); + END_STATE(); + case 912: + if (lookahead == 'e') ADVANCE(4757); + END_STATE(); + case 913: + if (lookahead == 'e') ADVANCE(4908); + END_STATE(); + case 914: + if (lookahead == 'e') ADVANCE(5069); + END_STATE(); + case 915: + if (lookahead == 'e') ADVANCE(4539); + END_STATE(); + case 916: + if (lookahead == 'e') ADVANCE(4547); + END_STATE(); + case 917: + if (lookahead == 'e') ADVANCE(4198); + END_STATE(); + case 918: + if (lookahead == 'e') ADVANCE(4291); + END_STATE(); + case 919: + if (lookahead == 'e') ADVANCE(4193); + END_STATE(); + case 920: + if (lookahead == 'e') ADVANCE(4311); + END_STATE(); + case 921: + if (lookahead == 'e') ADVANCE(4228); + END_STATE(); + case 922: + if (lookahead == 'e') ADVANCE(1494); + END_STATE(); + case 923: + if (lookahead == 'e') ADVANCE(510); + END_STATE(); + case 924: + if (lookahead == 'e') ADVANCE(1057); + END_STATE(); + case 925: + if (lookahead == 'e') ADVANCE(718); + END_STATE(); + case 926: + if (lookahead == 'e') ADVANCE(1358); + END_STATE(); + case 927: + if (lookahead == 'e') ADVANCE(2167); + END_STATE(); + case 928: + if (lookahead == 'e') ADVANCE(2194); + END_STATE(); + case 929: + if (lookahead == 'e') ADVANCE(742); + END_STATE(); + case 930: + if (lookahead == 'e') ADVANCE(1461); + END_STATE(); + case 931: + if (lookahead == 'e') ADVANCE(1371); + END_STATE(); + case 932: + if (lookahead == 'e') ADVANCE(685); + END_STATE(); + case 933: + if (lookahead == 'e') ADVANCE(1243); + END_STATE(); + case 934: + if (lookahead == 'e') ADVANCE(2154); + END_STATE(); + case 935: + if (lookahead == 'e') ADVANCE(515); + END_STATE(); + case 936: + if (lookahead == 'e') ADVANCE(2155); + END_STATE(); + case 937: + if (lookahead == 'e') ADVANCE(1912); + END_STATE(); + case 938: + if (lookahead == 'e') ADVANCE(2128); + END_STATE(); + case 939: + if (lookahead == 'e') ADVANCE(1058); + END_STATE(); + case 940: + if (lookahead == 'e') ADVANCE(2166); + END_STATE(); + case 941: + if (lookahead == 'e') ADVANCE(1053); + if (lookahead == 'o') ADVANCE(4300); + END_STATE(); + case 942: + if (lookahead == 'e') ADVANCE(564); + END_STATE(); + case 943: + if (lookahead == 'e') ADVANCE(2158); + END_STATE(); + case 944: + if (lookahead == 'e') ADVANCE(1086); + if (lookahead == 'o') ADVANCE(432); + END_STATE(); + case 945: + if (lookahead == 'e') ADVANCE(2159); + END_STATE(); + case 946: + if (lookahead == 'e') ADVANCE(1322); + END_STATE(); + case 947: + if (lookahead == 'e') ADVANCE(1916); + END_STATE(); + case 948: + if (lookahead == 'e') ADVANCE(1294); + END_STATE(); + case 949: + if (lookahead == 'e') ADVANCE(704); + if (lookahead == 't') ADVANCE(679); + END_STATE(); + case 950: + if (lookahead == 'e') ADVANCE(1460); + if (lookahead == 'n') ADVANCE(2067); + if (lookahead == 'r') ADVANCE(1029); + END_STATE(); + case 951: + if (lookahead == 'e') ADVANCE(1730); + END_STATE(); + case 952: + if (lookahead == 'e') ADVANCE(1328); + END_STATE(); + case 953: + if (lookahead == 'e') ADVANCE(433); + END_STATE(); + case 954: + if (lookahead == 'e') ADVANCE(453); + END_STATE(); + case 955: + if (lookahead == 'e') ADVANCE(1710); + END_STATE(); + case 956: + if (lookahead == 'e') ADVANCE(454); + END_STATE(); + case 957: + if (lookahead == 'e') ADVANCE(569); + END_STATE(); + case 958: + if (lookahead == 'e') ADVANCE(1892); + END_STATE(); + case 959: + if (lookahead == 'e') ADVANCE(1670); + END_STATE(); + case 960: + if (lookahead == 'e') ADVANCE(1795); + END_STATE(); + case 961: + if (lookahead == 'e') ADVANCE(1423); + END_STATE(); + case 962: + if (lookahead == 'e') ADVANCE(1848); + END_STATE(); + case 963: + if (lookahead == 'e') ADVANCE(1281); + END_STATE(); + case 964: + if (lookahead == 'e') ADVANCE(784); + END_STATE(); + case 965: + if (lookahead == 'e') ADVANCE(1782); + END_STATE(); + case 966: + if (lookahead == 'e') ADVANCE(1800); + END_STATE(); + case 967: + if (lookahead == 'e') ADVANCE(1721); + END_STATE(); + case 968: + if (lookahead == 'e') ADVANCE(1801); + END_STATE(); + case 969: + if (lookahead == 'e') ADVANCE(1803); + END_STATE(); + case 970: + if (lookahead == 'e') ADVANCE(1695); + END_STATE(); + case 971: + if (lookahead == 'e') ADVANCE(1696); + END_STATE(); + case 972: + if (lookahead == 'e') ADVANCE(1723); + END_STATE(); + case 973: + if (lookahead == 'e') ADVANCE(2029); + END_STATE(); + case 974: + if (lookahead == 'e') ADVANCE(1725); + END_STATE(); + case 975: + if (lookahead == 'e') ADVANCE(1434); + END_STATE(); + case 976: + if (lookahead == 'e') ADVANCE(1435); + END_STATE(); + case 977: + if (lookahead == 'e') ADVANCE(1810); + END_STATE(); + case 978: + if (lookahead == 'e') ADVANCE(1812); + END_STATE(); + case 979: + if (lookahead == 'e') ADVANCE(1930); + if (lookahead == 'r') ADVANCE(1560); + END_STATE(); + case 980: + if (lookahead == 'e') ADVANCE(1816); + END_STATE(); + case 981: + if (lookahead == 'e') ADVANCE(1741); + END_STATE(); + case 982: + if (lookahead == 'e') ADVANCE(1936); + END_STATE(); + case 983: + if (lookahead == 'e') ADVANCE(1443); + END_STATE(); + case 984: + if (lookahead == 'e') ADVANCE(1822); + END_STATE(); + case 985: + if (lookahead == 'e') ADVANCE(1939); + END_STATE(); + case 986: + if (lookahead == 'e') ADVANCE(1828); + END_STATE(); + case 987: + if (lookahead == 'e') ADVANCE(1947); + END_STATE(); + case 988: + if (lookahead == 'e') ADVANCE(1948); + END_STATE(); + case 989: + if (lookahead == 'e') ADVANCE(1950); + END_STATE(); + case 990: + if (lookahead == 'e') ADVANCE(2002); + END_STATE(); + case 991: + if (lookahead == 'e') ADVANCE(1969); + END_STATE(); + case 992: + if (lookahead == 'e') ADVANCE(933); + END_STATE(); + case 993: + if (lookahead == 'e') ADVANCE(493); + END_STATE(); + case 994: + if (lookahead == 'e') ADVANCE(448); + END_STATE(); + case 995: + if (lookahead == 'e') ADVANCE(729); + END_STATE(); + case 996: + if (lookahead == 'e') ADVANCE(1736); + END_STATE(); + case 997: + if (lookahead == 'e') ADVANCE(1850); + END_STATE(); + case 998: + if (lookahead == 'e') ADVANCE(1742); + END_STATE(); + case 999: + if (lookahead == 'e') ADVANCE(2030); + if (lookahead == 'i') ADVANCE(1279); + if (lookahead == 'l') ADVANCE(596); + END_STATE(); + case 1000: + if (lookahead == 'e') ADVANCE(1895); + END_STATE(); + case 1001: + if (lookahead == 'e') ADVANCE(721); + END_STATE(); + case 1002: + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'g') ADVANCE(990); + if (lookahead == 's') ADVANCE(1039); + END_STATE(); + case 1003: + if (lookahead == 'e') ADVANCE(1149); + if (lookahead == 'o') ADVANCE(1790); + END_STATE(); + case 1004: + if (lookahead == 'e') ADVANCE(731); + END_STATE(); + case 1005: + if (lookahead == 'e') ADVANCE(1298); + END_STATE(); + case 1006: + if (lookahead == 'e') ADVANCE(1761); + END_STATE(); + case 1007: + if (lookahead == 'e') ADVANCE(1857); + END_STATE(); + case 1008: + if (lookahead == 'e') ADVANCE(1493); + END_STATE(); + case 1009: + if (lookahead == 'e') ADVANCE(2016); + END_STATE(); + case 1010: + if (lookahead == 'e') ADVANCE(732); + END_STATE(); + case 1011: + if (lookahead == 'e') ADVANCE(1740); + END_STATE(); + case 1012: + if (lookahead == 'e') ADVANCE(1859); + END_STATE(); + case 1013: + if (lookahead == 'e') ADVANCE(1748); + END_STATE(); + case 1014: + if (lookahead == 'e') ADVANCE(1379); + END_STATE(); + case 1015: + if (lookahead == 'e') ADVANCE(1497); + END_STATE(); + case 1016: + if (lookahead == 'e') ADVANCE(1754); + END_STATE(); + case 1017: + if (lookahead == 'e') ADVANCE(1749); + END_STATE(); + case 1018: + if (lookahead == 'e') ADVANCE(1747); + END_STATE(); + case 1019: + if (lookahead == 'e') ADVANCE(2022); + END_STATE(); + case 1020: + if (lookahead == 'e') ADVANCE(1476); + END_STATE(); + case 1021: + if (lookahead == 'e') ADVANCE(589); + END_STATE(); + case 1022: + if (lookahead == 'e') ADVANCE(1868); + END_STATE(); + case 1023: + if (lookahead == 'e') ADVANCE(635); + END_STATE(); + case 1024: + if (lookahead == 'e') ADVANCE(2195); + END_STATE(); + case 1025: + if (lookahead == 'e') ADVANCE(745); + END_STATE(); + case 1026: + if (lookahead == 'e') ADVANCE(1771); + END_STATE(); + case 1027: + if (lookahead == 'e') ADVANCE(452); + END_STATE(); + case 1028: + if (lookahead == 'e') ADVANCE(1896); + END_STATE(); + case 1029: + if (lookahead == 'e') ADVANCE(1897); + END_STATE(); + case 1030: + if (lookahead == 'e') ADVANCE(749); + END_STATE(); + case 1031: + if (lookahead == 'e') ADVANCE(1772); + END_STATE(); + case 1032: + if (lookahead == 'e') ADVANCE(1775); + END_STATE(); + case 1033: + if (lookahead == 'e') ADVANCE(1776); + END_STATE(); + case 1034: + if (lookahead == 'e') ADVANCE(1515); + END_STATE(); + case 1035: + if (lookahead == 'e') ADVANCE(1340); + END_STATE(); + case 1036: + if (lookahead == 'e') ADVANCE(1517); + END_STATE(); + case 1037: + if (lookahead == 'e') ADVANCE(1519); + END_STATE(); + case 1038: + if (lookahead == 'e') ADVANCE(1783); + END_STATE(); + case 1039: + if (lookahead == 'e') ADVANCE(2061); + END_STATE(); + case 1040: + if (lookahead == 'e') ADVANCE(468); + END_STATE(); + case 1041: + if (lookahead == 'e') ADVANCE(470); + END_STATE(); + case 1042: + if (lookahead == 'e') ADVANCE(474); + END_STATE(); + case 1043: + if (lookahead == 'e') ADVANCE(1352); + if (lookahead == 'h') ADVANCE(609); + if (lookahead == 'o') ADVANCE(1334); + END_STATE(); + case 1044: + if (lookahead == 'e') ADVANCE(1354); + END_STATE(); + case 1045: + if (lookahead == 'f') ADVANCE(4772); + END_STATE(); + case 1046: + if (lookahead == 'f') ADVANCE(4807); + END_STATE(); + case 1047: + if (lookahead == 'f') ADVANCE(5062); + END_STATE(); + case 1048: + if (lookahead == 'f') ADVANCE(4743); + END_STATE(); + case 1049: + if (lookahead == 'f') ADVANCE(4949); + END_STATE(); + case 1050: + if (lookahead == 'f') ADVANCE(4305); + END_STATE(); + case 1051: + if (lookahead == 'f') ADVANCE(4305); + if (lookahead == 'n') ADVANCE(4278); + END_STATE(); + case 1052: + if (lookahead == 'f') ADVANCE(4305); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2213); + END_STATE(); + case 1053: + if (lookahead == 'f') ADVANCE(4180); + END_STATE(); + case 1054: + if (lookahead == 'f') ADVANCE(4227); + END_STATE(); + case 1055: + if (lookahead == 'f') ADVANCE(1045); + END_STATE(); + case 1056: + if (lookahead == 'f') ADVANCE(1535); + END_STATE(); + case 1057: + if (lookahead == 'f') ADVANCE(1925); + END_STATE(); + case 1058: + if (lookahead == 'f') ADVANCE(622); + END_STATE(); + case 1059: + if (lookahead == 'f') ADVANCE(1537); + END_STATE(); + case 1060: + if (lookahead == 'f') ADVANCE(1954); + END_STATE(); + case 1061: + if (lookahead == 'f') ADVANCE(1183); + if (lookahead == 'i') ADVANCE(1690); + if (lookahead == 's') ADVANCE(1550); + END_STATE(); + case 1062: + if (lookahead == 'f') ADVANCE(585); + if (lookahead == 't') ADVANCE(1769); + END_STATE(); + case 1063: + if (lookahead == 'f') ADVANCE(1216); + END_STATE(); + case 1064: + if (lookahead == 'f') ADVANCE(1218); + END_STATE(); + case 1065: + if (lookahead == 'f') ADVANCE(1625); + if (lookahead == 'h') ADVANCE(2098); + if (lookahead == 'l') ADVANCE(1193); + if (lookahead == 'n') ADVANCE(1540); + if (lookahead == 't') ADVANCE(1534); + END_STATE(); + case 1066: + if (lookahead == 'g') ADVANCE(5101); + END_STATE(); + case 1067: + if (lookahead == 'g') ADVANCE(4802); + END_STATE(); + case 1068: + if (lookahead == 'g') ADVANCE(4858); + END_STATE(); + case 1069: + if (lookahead == 'g') ADVANCE(4865); + END_STATE(); + case 1070: + if (lookahead == 'g') ADVANCE(4895); + END_STATE(); + case 1071: + if (lookahead == 'g') ADVANCE(4845); + END_STATE(); + case 1072: + if (lookahead == 'g') ADVANCE(5074); + END_STATE(); + case 1073: + if (lookahead == 'g') ADVANCE(4978); + END_STATE(); + case 1074: + if (lookahead == 'g') ADVANCE(1114); + END_STATE(); + case 1075: + if (lookahead == 'g') ADVANCE(1070); + if (lookahead == 'l') ADVANCE(1283); + if (lookahead == 'p') ADVANCE(1651); + if (lookahead == 'r') ADVANCE(1076); + if (lookahead == 's') ADVANCE(4906); + END_STATE(); + case 1076: + if (lookahead == 'g') ADVANCE(430); + END_STATE(); + case 1077: + if (lookahead == 'g') ADVANCE(447); + END_STATE(); + case 1078: + if (lookahead == 'g') ADVANCE(956); + END_STATE(); + case 1079: + if (lookahead == 'g') ADVANCE(1720); + if (lookahead == 'l') ADVANCE(1135); + if (lookahead == 's') ADVANCE(1985); + END_STATE(); + case 1080: + if (lookahead == 'g') ADVANCE(1643); + END_STATE(); + case 1081: + if (lookahead == 'g') ADVANCE(1984); + END_STATE(); + case 1082: + if (lookahead == 'g') ADVANCE(1758); + END_STATE(); + case 1083: + if (lookahead == 'g') ADVANCE(1648); + END_STATE(); + case 1084: + if (lookahead == 'g') ADVANCE(1987); + END_STATE(); + case 1085: + if (lookahead == 'g') ADVANCE(1162); + END_STATE(); + case 1086: + if (lookahead == 'g') ADVANCE(971); + END_STATE(); + case 1087: + if (lookahead == 'g') ADVANCE(991); + if (lookahead == 'l') ADVANCE(1821); + if (lookahead == 'r') ADVANCE(1363); + END_STATE(); + case 1088: + if (lookahead == 'g') ADVANCE(2001); + END_STATE(); + case 1089: + if (lookahead == 'h') ADVANCE(4770); + END_STATE(); + case 1090: + if (lookahead == 'h') ADVANCE(4847); + END_STATE(); + case 1091: + if (lookahead == 'h') ADVANCE(4828); + END_STATE(); + case 1092: + if (lookahead == 'h') ADVANCE(5065); + END_STATE(); + case 1093: + if (lookahead == 'h') ADVANCE(4744); + END_STATE(); + case 1094: + if (lookahead == 'h') ADVANCE(4928); + END_STATE(); + case 1095: + if (lookahead == 'h') ADVANCE(5059); + END_STATE(); + case 1096: + if (lookahead == 'h') ADVANCE(4836); + END_STATE(); + case 1097: + if (lookahead == 'h') ADVANCE(4742); + END_STATE(); + case 1098: + if (lookahead == 'h') ADVANCE(5035); + END_STATE(); + case 1099: + if (lookahead == 'h') ADVANCE(5072); + END_STATE(); + case 1100: + if (lookahead == 'h') ADVANCE(4939); + END_STATE(); + case 1101: + if (lookahead == 'h') ADVANCE(4748); + END_STATE(); + case 1102: + if (lookahead == 'h') ADVANCE(4932); + END_STATE(); + case 1103: + if (lookahead == 'h') ADVANCE(4395); + END_STATE(); + case 1104: + if (lookahead == 'h') ADVANCE(4393); + END_STATE(); + case 1105: + if (lookahead == 'h') ADVANCE(4316); + END_STATE(); + case 1106: + if (lookahead == 'h') ADVANCE(4339); + END_STATE(); + case 1107: + if (lookahead == 'h') ADVANCE(4219); + END_STATE(); + case 1108: + if (lookahead == 'h') ADVANCE(4225); + END_STATE(); + case 1109: + if (lookahead == 'h') ADVANCE(1256); + END_STATE(); + case 1110: + if (lookahead == 'h') ADVANCE(1277); + END_STATE(); + case 1111: + if (lookahead == 'h') ADVANCE(549); + END_STATE(); + case 1112: + if (lookahead == 'h') ADVANCE(476); + END_STATE(); + case 1113: + if (lookahead == 'h') ADVANCE(442); + END_STATE(); + case 1114: + if (lookahead == 'h') ADVANCE(1934); + END_STATE(); + case 1115: + if (lookahead == 'h') ADVANCE(1014); + END_STATE(); + case 1116: + if (lookahead == 'h') ADVANCE(1825); + END_STATE(); + case 1117: + if (lookahead == 'h') ADVANCE(865); + END_STATE(); + case 1118: + if (lookahead == 'h') ADVANCE(1016); + END_STATE(); + case 1119: + if (lookahead == 'h') ADVANCE(446); + END_STATE(); + case 1120: + if (lookahead == 'h') ADVANCE(572); + END_STATE(); + case 1121: + if (lookahead == 'h') ADVANCE(976); + if (lookahead == 'i') ADVANCE(1986); + END_STATE(); + case 1122: + if (lookahead == 'h') ADVANCE(967); + END_STATE(); + case 1123: + if (lookahead == 'h') ADVANCE(620); + END_STATE(); + case 1124: + if (lookahead == 'h') ADVANCE(1188); + END_STATE(); + case 1125: + if (lookahead == 'h') ADVANCE(1196); + END_STATE(); + case 1126: + if (lookahead == 'h') ADVANCE(1201); + END_STATE(); + case 1127: + if (lookahead == 'i') ADVANCE(1055); + END_STATE(); + case 1128: + if (lookahead == 'i') ADVANCE(1508); + if (lookahead == 'o') ADVANCE(1568); + END_STATE(); + case 1129: + if (lookahead == 'i') ADVANCE(4794); + END_STATE(); + case 1130: + if (lookahead == 'i') ADVANCE(2189); + END_STATE(); + case 1131: + if (lookahead == 'i') ADVANCE(1074); + END_STATE(); + case 1132: + if (lookahead == 'i') ADVANCE(2132); + if (lookahead == 'r') ADVANCE(1626); + END_STATE(); + case 1133: + if (lookahead == 'i') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(1136); + END_STATE(); + case 1134: + if (lookahead == 'i') ADVANCE(1833); + END_STATE(); + case 1135: + if (lookahead == 'i') ADVANCE(1456); + END_STATE(); + case 1136: + if (lookahead == 'i') ADVANCE(1360); + END_STATE(); + case 1137: + if (lookahead == 'i') ADVANCE(1458); + if (lookahead == 'p') ADVANCE(1733); + END_STATE(); + case 1138: + if (lookahead == 'i') ADVANCE(1414); + if (lookahead == 'q') ADVANCE(1735); + if (lookahead == 't') ADVANCE(819); + if (lookahead == 'u') ADVANCE(1359); + END_STATE(); + case 1139: + if (lookahead == 'i') ADVANCE(751); + END_STATE(); + case 1140: + if (lookahead == 'i') ADVANCE(1416); + END_STATE(); + case 1141: + if (lookahead == 'i') ADVANCE(1729); + END_STATE(); + case 1142: + if (lookahead == 'i') ADVANCE(1635); + END_STATE(); + case 1143: + if (lookahead == 'i') ADVANCE(1417); + END_STATE(); + case 1144: + if (lookahead == 'i') ADVANCE(1293); + if (lookahead == 'l') ADVANCE(1613); + END_STATE(); + case 1145: + if (lookahead == 'i') ADVANCE(1287); + END_STATE(); + case 1146: + if (lookahead == 'i') ADVANCE(779); + END_STATE(); + case 1147: + if (lookahead == 'i') ADVANCE(1420); + END_STATE(); + case 1148: + if (lookahead == 'i') ADVANCE(1693); + END_STATE(); + case 1149: + if (lookahead == 'i') ADVANCE(1264); + END_STATE(); + case 1150: + if (lookahead == 'i') ADVANCE(798); + END_STATE(); + case 1151: + if (lookahead == 'i') ADVANCE(666); + END_STATE(); + case 1152: + if (lookahead == 'i') ADVANCE(1330); + END_STATE(); + case 1153: + if (lookahead == 'i') ADVANCE(1512); + if (lookahead == 'o') ADVANCE(1576); + END_STATE(); + case 1154: + if (lookahead == 'i') ADVANCE(1289); + END_STATE(); + case 1155: + if (lookahead == 'i') ADVANCE(1924); + END_STATE(); + case 1156: + if (lookahead == 'i') ADVANCE(2006); + END_STATE(); + case 1157: + if (lookahead == 'i') ADVANCE(1267); + END_STATE(); + case 1158: + if (lookahead == 'i') ADVANCE(1429); + END_STATE(); + case 1159: + if (lookahead == 'i') ADVANCE(1268); + END_STATE(); + case 1160: + if (lookahead == 'i') ADVANCE(2060); + END_STATE(); + case 1161: + if (lookahead == 'i') ADVANCE(1432); + END_STATE(); + case 1162: + if (lookahead == 'i') ADVANCE(1496); + END_STATE(); + case 1163: + if (lookahead == 'i') ADVANCE(1929); + END_STATE(); + case 1164: + if (lookahead == 'i') ADVANCE(1470); + if (lookahead == 'o') ADVANCE(1513); + END_STATE(); + case 1165: + if (lookahead == 'i') ADVANCE(1447); + END_STATE(); + case 1166: + if (lookahead == 'i') ADVANCE(1509); + END_STATE(); + case 1167: + if (lookahead == 'i') ADVANCE(1450); + END_STATE(); + case 1168: + if (lookahead == 'i') ADVANCE(1983); + END_STATE(); + case 1169: + if (lookahead == 'i') ADVANCE(980); + END_STATE(); + case 1170: + if (lookahead == 'i') ADVANCE(1967); + END_STATE(); + case 1171: + if (lookahead == 'i') ADVANCE(2005); + END_STATE(); + case 1172: + if (lookahead == 'i') ADVANCE(2190); + END_STATE(); + case 1173: + if (lookahead == 'i') ADVANCE(1464); + END_STATE(); + case 1174: + if (lookahead == 'i') ADVANCE(723); + END_STATE(); + case 1175: + if (lookahead == 'i') ADVANCE(2130); + END_STATE(); + case 1176: + if (lookahead == 'i') ADVANCE(1502); + END_STATE(); + case 1177: + if (lookahead == 'i') ADVANCE(1487); + END_STATE(); + case 1178: + if (lookahead == 'i') ADVANCE(2191); + END_STATE(); + case 1179: + if (lookahead == 'i') ADVANCE(1504); + END_STATE(); + case 1180: + if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 's') ADVANCE(962); + END_STATE(); + case 1181: + if (lookahead == 'i') ADVANCE(2131); + END_STATE(); + case 1182: + if (lookahead == 'i') ADVANCE(1385); + END_STATE(); + case 1183: + if (lookahead == 'i') ADVANCE(1296); + END_STATE(); + case 1184: + if (lookahead == 'i') ADVANCE(597); + END_STATE(); + case 1185: + if (lookahead == 'i') ADVANCE(2192); + END_STATE(); + case 1186: + if (lookahead == 'i') ADVANCE(1466); + END_STATE(); + case 1187: + if (lookahead == 'i') ADVANCE(1843); + END_STATE(); + case 1188: + if (lookahead == 'i') ADVANCE(1297); + END_STATE(); + case 1189: + if (lookahead == 'i') ADVANCE(1396); + END_STATE(); + case 1190: + if (lookahead == 'i') ADVANCE(2193); + END_STATE(); + case 1191: + if (lookahead == 'i') ADVANCE(1467); + END_STATE(); + case 1192: + if (lookahead == 'i') ADVANCE(584); + END_STATE(); + case 1193: + if (lookahead == 'i') ADVANCE(1844); + END_STATE(); + case 1194: + if (lookahead == 'i') ADVANCE(2017); + END_STATE(); + case 1195: + if (lookahead == 'i') ADVANCE(727); + END_STATE(); + case 1196: + if (lookahead == 'i') ADVANCE(1299); + END_STATE(); + case 1197: + if (lookahead == 'i') ADVANCE(1989); + END_STATE(); + case 1198: + if (lookahead == 'i') ADVANCE(1575); + END_STATE(); + case 1199: + if (lookahead == 'i') ADVANCE(592); + END_STATE(); + case 1200: + if (lookahead == 'i') ADVANCE(1388); + END_STATE(); + case 1201: + if (lookahead == 'i') ADVANCE(1302); + END_STATE(); + case 1202: + if (lookahead == 'i') ADVANCE(1492); + END_STATE(); + case 1203: + if (lookahead == 'i') ADVANCE(1579); + END_STATE(); + case 1204: + if (lookahead == 'i') ADVANCE(1849); + END_STATE(); + case 1205: + if (lookahead == 'i') ADVANCE(1389); + END_STATE(); + case 1206: + if (lookahead == 'i') ADVANCE(1992); + END_STATE(); + case 1207: + if (lookahead == 'i') ADVANCE(1852); + END_STATE(); + case 1208: + if (lookahead == 'i') ADVANCE(2031); + END_STATE(); + case 1209: + if (lookahead == 'i') ADVANCE(1582); + END_STATE(); + case 1210: + if (lookahead == 'i') ADVANCE(1854); + if (lookahead == 'p') ADVANCE(632); + END_STATE(); + case 1211: + if (lookahead == 'i') ADVANCE(1583); + END_STATE(); + case 1212: + if (lookahead == 'i') ADVANCE(1858); + END_STATE(); + case 1213: + if (lookahead == 'i') ADVANCE(1995); + END_STATE(); + case 1214: + if (lookahead == 'i') ADVANCE(1860); + END_STATE(); + case 1215: + if (lookahead == 'i') ADVANCE(735); + END_STATE(); + case 1216: + if (lookahead == 'i') ADVANCE(1313); + END_STATE(); + case 1217: + if (lookahead == 'i') ADVANCE(1999); + END_STATE(); + case 1218: + if (lookahead == 'i') ADVANCE(1316); + END_STATE(); + case 1219: + if (lookahead == 'i') ADVANCE(2003); + END_STATE(); + case 1220: + if (lookahead == 'i') ADVANCE(1318); + END_STATE(); + case 1221: + if (lookahead == 'i') ADVANCE(2004); + END_STATE(); + case 1222: + if (lookahead == 'i') ADVANCE(1870); + END_STATE(); + case 1223: + if (lookahead == 'i') ADVANCE(2007); + END_STATE(); + case 1224: + if (lookahead == 'i') ADVANCE(2009); + END_STATE(); + case 1225: + if (lookahead == 'i') ADVANCE(1880); + END_STATE(); + case 1226: + if (lookahead == 'i') ADVANCE(1681); + if (lookahead == 'n') ADVANCE(1022); + if (lookahead == 'p') ADVANCE(1227); + END_STATE(); + case 1227: + if (lookahead == 'i') ADVANCE(2133); + END_STATE(); + case 1228: + if (lookahead == 'i') ADVANCE(1015); + END_STATE(); + case 1229: + if (lookahead == 'i') ADVANCE(641); + END_STATE(); + case 1230: + if (lookahead == 'i') ADVANCE(1682); + END_STATE(); + case 1231: + if (lookahead == 'i') ADVANCE(649); + END_STATE(); + case 1232: + if (lookahead == 'i') ADVANCE(1683); + END_STATE(); + case 1233: + if (lookahead == 'i') ADVANCE(1684); + END_STATE(); + case 1234: + if (lookahead == 'i') ADVANCE(752); + END_STATE(); + case 1235: + if (lookahead == 'i') ADVANCE(1405); + END_STATE(); + case 1236: + if (lookahead == 'i') ADVANCE(1338); + END_STATE(); + case 1237: + if (lookahead == 'i') ADVANCE(671); + END_STATE(); + case 1238: + if (lookahead == 'i') ADVANCE(750); + END_STATE(); + case 1239: + if (lookahead == 'j') ADVANCE(1623); + if (lookahead == 'l') ADVANCE(1037); + if (lookahead == 's') ADVANCE(1343); + END_STATE(); + case 1240: + if (lookahead == 'k') ADVANCE(4728); + END_STATE(); + case 1241: + if (lookahead == 'k') ADVANCE(5096); + END_STATE(); + case 1242: + if (lookahead == 'k') ADVANCE(4796); + END_STATE(); + case 1243: + if (lookahead == 'k') ADVANCE(4943); + END_STATE(); + case 1244: + if (lookahead == 'k') ADVANCE(4645); + END_STATE(); + case 1245: + if (lookahead == 'k') ADVANCE(1793); + END_STATE(); + case 1246: + if (lookahead == 'k') ADVANCE(1040); + END_STATE(); + case 1247: + if (lookahead == 'k') ADVANCE(842); + END_STATE(); + case 1248: + if (lookahead == 'k') ADVANCE(855); + END_STATE(); + case 1249: + if (lookahead == 'k') ADVANCE(918); + if (lookahead == 't') ADVANCE(719); + END_STATE(); + case 1250: + if (lookahead == 'k') ADVANCE(1042); + END_STATE(); + case 1251: + if (lookahead == 'l') ADVANCE(5105); + END_STATE(); + case 1252: + if (lookahead == 'l') ADVANCE(5093); + END_STATE(); + case 1253: + if (lookahead == 'l') ADVANCE(5103); + END_STATE(); + case 1254: + if (lookahead == 'l') ADVANCE(5107); + END_STATE(); + case 1255: + if (lookahead == 'l') ADVANCE(4733); + if (lookahead == 'r') ADVANCE(4734); + END_STATE(); + case 1256: + if (lookahead == 'l') ADVANCE(4735); + if (lookahead == 'r') ADVANCE(4736); + END_STATE(); + case 1257: + if (lookahead == 'l') ADVANCE(4791); + END_STATE(); + case 1258: + if (lookahead == 'l') ADVANCE(4806); + END_STATE(); + case 1259: + if (lookahead == 'l') ADVANCE(4809); + END_STATE(); + case 1260: + if (lookahead == 'l') ADVANCE(4812); + END_STATE(); + case 1261: + if (lookahead == 'l') ADVANCE(4804); + END_STATE(); + case 1262: + if (lookahead == 'l') ADVANCE(4811); + END_STATE(); + case 1263: + if (lookahead == 'l') ADVANCE(4835); + END_STATE(); + case 1264: + if (lookahead == 'l') ADVANCE(4859); + END_STATE(); + case 1265: + if (lookahead == 'l') ADVANCE(5013); + END_STATE(); + case 1266: + if (lookahead == 'l') ADVANCE(4911); + if (lookahead == 'n') ADVANCE(747); + if (lookahead == 'u') ADVANCE(1495); + END_STATE(); + case 1267: + if (lookahead == 'l') ADVANCE(5033); + END_STATE(); + case 1268: + if (lookahead == 'l') ADVANCE(5086); + END_STATE(); + case 1269: + if (lookahead == 'l') ADVANCE(5015); + END_STATE(); + case 1270: + if (lookahead == 'l') ADVANCE(4921); + END_STATE(); + case 1271: + if (lookahead == 'l') ADVANCE(4955); + END_STATE(); + case 1272: + if (lookahead == 'l') ADVANCE(4930); + END_STATE(); + case 1273: + if (lookahead == 'l') ADVANCE(4918); + END_STATE(); + case 1274: + if (lookahead == 'l') ADVANCE(4941); + END_STATE(); + case 1275: + if (lookahead == 'l') ADVANCE(4954); + END_STATE(); + case 1276: + if (lookahead == 'l') ADVANCE(4976); + END_STATE(); + case 1277: + if (lookahead == 'l') ADVANCE(4437); + if (lookahead == 'r') ADVANCE(4439); + END_STATE(); + case 1278: + if (lookahead == 'l') ADVANCE(4531); + END_STATE(); + case 1279: + if (lookahead == 'l') ADVANCE(1286); + if (lookahead == 'r') ADVANCE(1864); + END_STATE(); + case 1280: + if (lookahead == 'l') ADVANCE(460); + END_STATE(); + case 1281: + if (lookahead == 'l') ADVANCE(464); + END_STATE(); + case 1282: + if (lookahead == 'l') ADVANCE(2072); + END_STATE(); + case 1283: + if (lookahead == 'l') ADVANCE(429); + END_STATE(); + case 1284: + if (lookahead == 'l') ADVANCE(1229); + END_STATE(); + case 1285: + if (lookahead == 'l') ADVANCE(1838); + if (lookahead == 'm') ADVANCE(1259); + if (lookahead == 'z') ADVANCE(4810); + END_STATE(); + case 1286: + if (lookahead == 'l') ADVANCE(445); + if (lookahead == 't') ADVANCE(970); + END_STATE(); + case 1287: + if (lookahead == 'l') ADVANCE(791); + END_STATE(); + case 1288: + if (lookahead == 'l') ADVANCE(1194); + END_STATE(); + case 1289: + if (lookahead == 'l') ADVANCE(776); + END_STATE(); + case 1290: + if (lookahead == 'l') ADVANCE(1541); + END_STATE(); + case 1291: + if (lookahead == 'l') ADVANCE(618); + END_STATE(); + case 1292: + if (lookahead == 'l') ADVANCE(1608); + END_STATE(); + case 1293: + if (lookahead == 'l') ADVANCE(958); + END_STATE(); + case 1294: + if (lookahead == 'l') ADVANCE(1280); + END_STATE(); + case 1295: + if (lookahead == 'l') ADVANCE(1139); + END_STATE(); + case 1296: + if (lookahead == 'l') ADVANCE(960); + END_STATE(); + case 1297: + if (lookahead == 'l') ADVANCE(841); + END_STATE(); + case 1298: + if (lookahead == 'l') ADVANCE(1300); + END_STATE(); + case 1299: + if (lookahead == 'l') ADVANCE(845); + END_STATE(); + case 1300: + if (lookahead == 'l') ADVANCE(1808); + END_STATE(); + case 1301: + if (lookahead == 'l') ADVANCE(1271); + END_STATE(); + case 1302: + if (lookahead == 'l') ADVANCE(847); + END_STATE(); + case 1303: + if (lookahead == 'l') ADVANCE(1272); + END_STATE(); + case 1304: + if (lookahead == 'l') ADVANCE(1273); + END_STATE(); + case 1305: + if (lookahead == 'l') ADVANCE(995); + END_STATE(); + case 1306: + if (lookahead == 'l') ADVANCE(1275); + END_STATE(); + case 1307: + if (lookahead == 'l') ADVANCE(1276); + END_STATE(); + case 1308: + if (lookahead == 'l') ADVANCE(1278); + END_STATE(); + case 1309: + if (lookahead == 'l') ADVANCE(969); + END_STATE(); + case 1310: + if (lookahead == 'l') ADVANCE(1824); + END_STATE(); + case 1311: + if (lookahead == 'l') ADVANCE(978); + END_STATE(); + case 1312: + if (lookahead == 'l') ADVANCE(873); + END_STATE(); + case 1313: + if (lookahead == 'l') ADVANCE(874); + END_STATE(); + case 1314: + if (lookahead == 'l') ADVANCE(880); + END_STATE(); + case 1315: + if (lookahead == 'l') ADVANCE(1970); + END_STATE(); + case 1316: + if (lookahead == 'l') ADVANCE(886); + END_STATE(); + case 1317: + if (lookahead == 'l') ADVANCE(984); + END_STATE(); + case 1318: + if (lookahead == 'l') ADVANCE(898); + END_STATE(); + case 1319: + if (lookahead == 'l') ADVANCE(919); + END_STATE(); + case 1320: + if (lookahead == 'l') ADVANCE(1310); + END_STATE(); + case 1321: + if (lookahead == 'l') ADVANCE(2078); + END_STATE(); + case 1322: + if (lookahead == 'l') ADVANCE(1009); + END_STATE(); + case 1323: + if (lookahead == 'l') ADVANCE(1160); + END_STATE(); + case 1324: + if (lookahead == 'l') ADVANCE(1331); + END_STATE(); + case 1325: + if (lookahead == 'l') ADVANCE(2081); + if (lookahead == 'r') ADVANCE(5005); + END_STATE(); + case 1326: + if (lookahead == 'l') ADVANCE(1185); + END_STATE(); + case 1327: + if (lookahead == 'l') ADVANCE(1163); + END_STATE(); + case 1328: + if (lookahead == 'l') ADVANCE(590); + END_STATE(); + case 1329: + if (lookahead == 'l') ADVANCE(1305); + END_STATE(); + case 1330: + if (lookahead == 'l') ADVANCE(579); + END_STATE(); + case 1331: + if (lookahead == 'l') ADVANCE(1191); + END_STATE(); + case 1332: + if (lookahead == 'l') ADVANCE(1878); + END_STATE(); + case 1333: + if (lookahead == 'l') ADVANCE(1884); + END_STATE(); + case 1334: + if (lookahead == 'l') ADVANCE(2095); + END_STATE(); + case 1335: + if (lookahead == 'l') ADVANCE(1184); + END_STATE(); + case 1336: + if (lookahead == 'l') ADVANCE(1620); + END_STATE(); + case 1337: + if (lookahead == 'l') ADVANCE(636); + END_STATE(); + case 1338: + if (lookahead == 'l') ADVANCE(1028); + END_STATE(); + case 1339: + if (lookahead == 'l') ADVANCE(1004); + if (lookahead == 't') ADVANCE(4983); + END_STATE(); + case 1340: + if (lookahead == 'l') ADVANCE(1019); + END_STATE(); + case 1341: + if (lookahead == 'l') ADVANCE(670); + END_STATE(); + case 1342: + if (lookahead == 'l') ADVANCE(2099); + END_STATE(); + case 1343: + if (lookahead == 'l') ADVANCE(1215); + END_STATE(); + case 1344: + if (lookahead == 'l') ADVANCE(647); + END_STATE(); + case 1345: + if (lookahead == 'l') ADVANCE(2101); + END_STATE(); + case 1346: + if (lookahead == 'l') ADVANCE(1616); + if (lookahead == 'r') ADVANCE(450); + END_STATE(); + case 1347: + if (lookahead == 'l') ADVANCE(1207); + END_STATE(); + case 1348: + if (lookahead == 'l') ADVANCE(1618); + END_STATE(); + case 1349: + if (lookahead == 'l') ADVANCE(1231); + END_STATE(); + case 1350: + if (lookahead == 'l') ADVANCE(1234); + END_STATE(); + case 1351: + if (lookahead == 'l') ADVANCE(463); + END_STATE(); + case 1352: + if (lookahead == 'l') ADVANCE(1351); + END_STATE(); + case 1353: + if (lookahead == 'l') ADVANCE(467); + END_STATE(); + case 1354: + if (lookahead == 'l') ADVANCE(1353); + END_STATE(); + case 1355: + if (lookahead == 'l') ADVANCE(471); + END_STATE(); + case 1356: + if (lookahead == 'l') ADVANCE(1041); + END_STATE(); + case 1357: + if (lookahead == 'm') ADVANCE(1251); + if (lookahead == 'z') ADVANCE(5106); + END_STATE(); + case 1358: + if (lookahead == 'm') ADVANCE(5082); + END_STATE(); + case 1359: + if (lookahead == 'm') ADVANCE(4876); + END_STATE(); + case 1360: + if (lookahead == 'm') ADVANCE(5076); + END_STATE(); + case 1361: + if (lookahead == 'm') ADVANCE(4893); + END_STATE(); + case 1362: + if (lookahead == 'm') ADVANCE(4997); + END_STATE(); + case 1363: + if (lookahead == 'm') ADVANCE(4992); + END_STATE(); + case 1364: + if (lookahead == 'm') ADVANCE(563); + if (lookahead == 's') ADVANCE(1619); + if (lookahead == 't') ADVANCE(1770); + if (lookahead == 'u') ADVANCE(1526); + if (lookahead == 'w') ADVANCE(1118); + END_STATE(); + case 1365: + if (lookahead == 'm') ADVANCE(768); + if (lookahead == 's') ADVANCE(1111); + END_STATE(); + case 1366: + if (lookahead == 'm') ADVANCE(1252); + END_STATE(); + case 1367: + if (lookahead == 'm') ADVANCE(1253); + END_STATE(); + case 1368: + if (lookahead == 'm') ADVANCE(1254); + END_STATE(); + case 1369: + if (lookahead == 'm') ADVANCE(1257); + END_STATE(); + case 1370: + if (lookahead == 'm') ADVANCE(1659); + if (lookahead == 'n') ADVANCE(1994); + END_STATE(); + case 1371: + if (lookahead == 'm') ADVANCE(1634); + END_STATE(); + case 1372: + if (lookahead == 'm') ADVANCE(1660); + if (lookahead == 'n') ADVANCE(1975); + if (lookahead == 's') ADVANCE(428); + END_STATE(); + case 1373: + if (lookahead == 'm') ADVANCE(1667); + if (lookahead == 'v') ADVANCE(854); + END_STATE(); + case 1374: + if (lookahead == 'm') ADVANCE(1261); + END_STATE(); + case 1375: + if (lookahead == 'm') ADVANCE(1262); + END_STATE(); + case 1376: + if (lookahead == 'm') ADVANCE(1169); + END_STATE(); + case 1377: + if (lookahead == 'm') ADVANCE(1265); + END_STATE(); + case 1378: + if (lookahead == 'm') ADVANCE(1555); + if (lookahead == 'p') ADVANCE(1337); + if (lookahead == 'v') ADVANCE(1032); + END_STATE(); + case 1379: + if (lookahead == 'm') ADVANCE(545); + END_STATE(); + case 1380: + if (lookahead == 'm') ADVANCE(1428); + END_STATE(); + case 1381: + if (lookahead == 'm') ADVANCE(1438); + END_STATE(); + case 1382: + if (lookahead == 'm') ADVANCE(1449); + END_STATE(); + case 1383: + if (lookahead == 'm') ADVANCE(928); + END_STATE(); + case 1384: + if (lookahead == 'm') ADVANCE(864); + END_STATE(); + case 1385: + if (lookahead == 'm') ADVANCE(875); + END_STATE(); + case 1386: + if (lookahead == 'm') ADVANCE(878); + END_STATE(); + case 1387: + if (lookahead == 'm') ADVANCE(879); + END_STATE(); + case 1388: + if (lookahead == 'm') ADVANCE(899); + END_STATE(); + case 1389: + if (lookahead == 'm') ADVANCE(913); + END_STATE(); + case 1390: + if (lookahead == 'm') ADVANCE(1376); + END_STATE(); + case 1391: + if (lookahead == 'm') ADVANCE(603); + END_STATE(); + case 1392: + if (lookahead == 'm') ADVANCE(2120); + END_STATE(); + case 1393: + if (lookahead == 'm') ADVANCE(578); + END_STATE(); + case 1394: + if (lookahead == 'm') ADVANCE(577); + END_STATE(); + case 1395: + if (lookahead == 'm') ADVANCE(1407); + END_STATE(); + case 1396: + if (lookahead == 'm') ADVANCE(587); + END_STATE(); + case 1397: + if (lookahead == 'm') ADVANCE(1152); + END_STATE(); + case 1398: + if (lookahead == 'm') ADVANCE(963); + if (lookahead == 'p') ADVANCE(1156); + END_STATE(); + case 1399: + if (lookahead == 'm') ADVANCE(1489); + END_STATE(); + case 1400: + if (lookahead == 'm') ADVANCE(1490); + END_STATE(); + case 1401: + if (lookahead == 'm') ADVANCE(593); + END_STATE(); + case 1402: + if (lookahead == 'm') ADVANCE(1179); + END_STATE(); + case 1403: + if (lookahead == 'm') ADVANCE(1664); + if (lookahead == 'n') ADVANCE(1845); + END_STATE(); + case 1404: + if (lookahead == 'm') ADVANCE(1662); + END_STATE(); + case 1405: + if (lookahead == 'm') ADVANCE(1024); + END_STATE(); + case 1406: + if (lookahead == 'm') ADVANCE(1666); + END_STATE(); + case 1407: + if (lookahead == 'm') ADVANCE(639); + END_STATE(); + case 1408: + if (lookahead == 'm') ADVANCE(648); + END_STATE(); + case 1409: + if (lookahead == 'm') ADVANCE(1408); + END_STATE(); + case 1410: + if (lookahead == 'n') ADVANCE(4864); + if (lookahead == 'o') ADVANCE(1069); + END_STATE(); + case 1411: + if (lookahead == 'n') ADVANCE(5094); + END_STATE(); + case 1412: + if (lookahead == 'n') ADVANCE(5098); + END_STATE(); + case 1413: + if (lookahead == 'n') ADVANCE(4868); + END_STATE(); + case 1414: + if (lookahead == 'n') ADVANCE(4872); + END_STATE(); + case 1415: + if (lookahead == 'n') ADVANCE(4877); + END_STATE(); + case 1416: + if (lookahead == 'n') ADVANCE(5063); + END_STATE(); + case 1417: + if (lookahead == 'n') ADVANCE(5113); + END_STATE(); + case 1418: + if (lookahead == 'n') ADVANCE(4795); + END_STATE(); + case 1419: + if (lookahead == 'n') ADVANCE(4798); + END_STATE(); + case 1420: + if (lookahead == 'n') ADVANCE(4886); + END_STATE(); + case 1421: + if (lookahead == 'n') ADVANCE(1226); + if (lookahead == 'p') ADVANCE(1677); + END_STATE(); + case 1422: + if (lookahead == 'n') ADVANCE(5021); + END_STATE(); + case 1423: + if (lookahead == 'n') ADVANCE(5046); + END_STATE(); + case 1424: + if (lookahead == 'n') ADVANCE(5119); + END_STATE(); + case 1425: + if (lookahead == 'n') ADVANCE(4959); + END_STATE(); + case 1426: + if (lookahead == 'n') ADVANCE(4965); + END_STATE(); + case 1427: + if (lookahead == 'n') ADVANCE(5010); + END_STATE(); + case 1428: + if (lookahead == 'n') ADVANCE(4769); + END_STATE(); + case 1429: + if (lookahead == 'n') ADVANCE(4854); + END_STATE(); + case 1430: + if (lookahead == 'n') ADVANCE(4856); + END_STATE(); + case 1431: + if (lookahead == 'n') ADVANCE(4867); + END_STATE(); + case 1432: + if (lookahead == 'n') ADVANCE(4957); + END_STATE(); + case 1433: + if (lookahead == 'n') ADVANCE(4963); + END_STATE(); + case 1434: + if (lookahead == 'n') ADVANCE(4968); + END_STATE(); + case 1435: + if (lookahead == 'n') ADVANCE(5006); + END_STATE(); + case 1436: + if (lookahead == 'n') ADVANCE(4832); + END_STATE(); + case 1437: + if (lookahead == 'n') ADVANCE(4953); + END_STATE(); + case 1438: + if (lookahead == 'n') ADVANCE(5037); + END_STATE(); + case 1439: + if (lookahead == 'n') ADVANCE(4838); + END_STATE(); + case 1440: + if (lookahead == 'n') ADVANCE(4964); + END_STATE(); + case 1441: + if (lookahead == 'n') ADVANCE(4788); + END_STATE(); + case 1442: + if (lookahead == 'n') ADVANCE(4901); + END_STATE(); + case 1443: + if (lookahead == 'n') ADVANCE(4934); + END_STATE(); + case 1444: + if (lookahead == 'n') ADVANCE(4786); + END_STATE(); + case 1445: + if (lookahead == 'n') ADVANCE(4823); + END_STATE(); + case 1446: + if (lookahead == 'n') ADVANCE(4929); + END_STATE(); + case 1447: + if (lookahead == 'n') ADVANCE(4993); + END_STATE(); + case 1448: + if (lookahead == 'n') ADVANCE(4850); + END_STATE(); + case 1449: + if (lookahead == 'n') ADVANCE(5007); + END_STATE(); + case 1450: + if (lookahead == 'n') ADVANCE(4391); + END_STATE(); + case 1451: + if (lookahead == 'n') ADVANCE(4645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + END_STATE(); + case 1452: + if (lookahead == 'n') ADVANCE(4278); + END_STATE(); + case 1453: + if (lookahead == 'n') ADVANCE(4188); + END_STATE(); + case 1454: + if (lookahead == 'n') ADVANCE(4226); + END_STATE(); + case 1455: + if (lookahead == 'n') ADVANCE(594); + END_STATE(); + case 1456: + if (lookahead == 'n') ADVANCE(1240); + END_STATE(); + case 1457: + if (lookahead == 'n') ADVANCE(805); + END_STATE(); + case 1458: + if (lookahead == 'n') ADVANCE(1056); + END_STATE(); + case 1459: + if (lookahead == 'n') ADVANCE(769); + END_STATE(); + case 1460: + if (lookahead == 'n') ADVANCE(2127); + END_STATE(); + case 1461: + if (lookahead == 'n') ADVANCE(1081); + END_STATE(); + case 1462: + if (lookahead == 'n') ADVANCE(1085); + if (lookahead == 'x') ADVANCE(2040); + END_STATE(); + case 1463: + if (lookahead == 'n') ADVANCE(820); + END_STATE(); + case 1464: + if (lookahead == 'n') ADVANCE(1071); + END_STATE(); + case 1465: + if (lookahead == 'n') ADVANCE(772); END_STATE(); - case 2: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 2555, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - 'I', 1546, - 'N', 1539, - '[', 2752, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 4, - ' ', 4, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1560); + case 1466: + if (lookahead == 'n') ADVANCE(1072); END_STATE(); - case 3: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 1030, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '|', 2264, - '}', 2415, - '\t', 3, - ' ', 3, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1467: + if (lookahead == 'n') ADVANCE(1073); END_STATE(); - case 4: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 1030, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 4, - ' ', 4, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1560); + case 1468: + if (lookahead == 'n') ADVANCE(775); END_STATE(); - case 5: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 1030, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '|', 2264, - '}', 2415, - '\t', 5, - ' ', 5, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1469: + if (lookahead == 'n') ADVANCE(1545); END_STATE(); - case 6: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1272, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '*', 2474, - '+', 2522, - ',', 2304, - '-', 2346, - '.', 1029, - '/', 2513, - '0', 2664, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1406, - 'b', 1384, - 'c', 1306, - 'd', 1333, - 'e', 865, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1302, - 'n', 1444, - 'o', 866, - 'r', 1334, - 's', 1432, - 't', 1451, - 'u', 1486, - 'w', 1379, - 'x', 1438, - '|', 2264, - '}', 2415, - '\t', 5, - ' ', 5, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1470: + if (lookahead == 'n') ADVANCE(2114); END_STATE(); - case 7: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 454, - '#', 4069, - '$', 2305, - '(', 2302, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'f', 488, - 'i', 524, - 'm', 570, - 'n', 575, - 'o', 412, - 's', 607, - 't', 590, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 8, - ' ', 8, - 0x0b, 450, - '\f', 450, - ); + case 1471: + if (lookahead == 'n') ADVANCE(1238); END_STATE(); - case 8: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 454, - '#', 4069, - '$', 2305, - '(', 2302, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'f', 488, - 'i', 524, - 'm', 570, - 'n', 575, - 'o', 412, - 's', 607, - 't', 590, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 8, - ' ', 8, - 0x0b, 450, - '\f', 450, - ); + case 1472: + if (lookahead == 'n') ADVANCE(1918); END_STATE(); - case 9: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, - '\t', 9, - ' ', 9, - 0x0b, 450, - '\f', 450, - ); + case 1473: + if (lookahead == 'n') ADVANCE(778); END_STATE(); - case 10: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 454, - '#', 4069, - '*', 2474, - '+', 2523, - '-', 2356, - '.', 2559, - '/', 2513, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, - '\t', 11, - ' ', 11, - 0x0b, 450, - '\f', 450, - ); + case 1474: + if (lookahead == 'n') ADVANCE(2042); END_STATE(); - case 11: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 454, - '#', 4069, - '*', 2474, - '+', 2523, - '-', 2356, - '/', 2513, - ':', 2810, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, - '\t', 11, - ' ', 11, - 0x0b, 450, - '\f', 450, - ); + case 1475: + if (lookahead == 'n') ADVANCE(780); END_STATE(); - case 12: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '"', 2782, - '#', 4071, - '$', 2305, - '\'', 411, - '(', 2302, - ')', 2303, - '*', 2473, - '+', 2521, - ',', 2304, - '-', 2333, - '.', 3522, - '/', 2515, - '0', 1971, - ':', 2810, - ';', 2263, - '<', 2494, - '=', 839, - '>', 2322, - '?', 2476, - '[', 2300, - ']', 2301, - '^', 2819, - '_', 2418, - '`', 485, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 12, - ' ', 12, - 'I', 2024, - 'i', 2024, - 'N', 2018, - 'n', 2018, - 0x0b, 450, - '\f', 450, - '!', 3525, - '&', 3525, - '@', 3525, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if (lookahead != 0) ADVANCE(2032); + case 1476: + if (lookahead == 'n') ADVANCE(781); END_STATE(); - case 13: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2348, - '.', 443, - '0', 2660, - ':', 2810, - ';', 2263, - '>', 2322, - '?', 2476, - 'I', 667, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'a', 546, - 'c', 571, - 'd', 509, - 'e', 424, - 'f', 488, - 'i', 525, - 'm', 486, - 'n', 574, - 'o', 426, - 't', 588, - 'u', 601, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 13, - ' ', 13, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1477: + if (lookahead == 'n') ADVANCE(608); END_STATE(); - case 14: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2348, - '.', 2550, - '0', 2660, - ':', 2810, - ';', 2263, - '=', 2876, - '>', 2322, - '?', 2476, - '@', 2325, - 'I', 667, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'a', 546, - 'c', 571, - 'd', 509, - 'e', 424, - 'f', 488, - 'i', 525, - 'm', 486, - 'n', 574, - 'o', 426, - 't', 588, - 'u', 601, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 13, - ' ', 13, - 0x0b, 450, - '\f', 450, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1478: + if (lookahead == 'n') ADVANCE(783); END_STATE(); - case 15: - ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '#', 4069, - ':', 2810, - ';', 2263, - 'e', 423, - 'o', 426, - '|', 2264, - '}', 2415, - '\t', 2261, - ' ', 2261, - 0x0b, 450, - '\f', 450, - ); + case 1479: + if (lookahead == 'n') ADVANCE(1230); END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(2260); - if (lookahead == ':') ADVANCE(2810); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(450); + case 1480: + if (lookahead == 'n') ADVANCE(785); END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(2259); + case 1481: + if (lookahead == 'n') ADVANCE(786); END_STATE(); - case 18: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1482: + if (lookahead == 'n') ADVANCE(786); + if (lookahead == 's') ADVANCE(4371); END_STATE(); - case 19: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1483: + if (lookahead == 'n') ADVANCE(1802); END_STATE(); - case 20: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1484: + if (lookahead == 'n') ADVANCE(787); END_STATE(); - case 21: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3100, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1485: + if (lookahead == 'n') ADVANCE(1804); END_STATE(); - case 22: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'a', 3154, - 'b', 3142, - 'e', 3155, - 'i', 3153, - 'm', 3159, - 'n', 3161, - 'o', 3168, - 's', 3191, - 'x', 3163, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1486: + if (lookahead == 'n') ADVANCE(1624); END_STATE(); - case 23: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3284, - '#', 4075, - '(', 2506, - '*', 2475, - '+', 2524, - '-', 2357, - '/', 2514, - '<', 2496, - '=', 3286, - '>', 2324, - 'a', 3373, - 'b', 3356, - 'e', 3378, - 'i', 3374, - 'm', 3386, - 'n', 3389, - 'o', 3399, - 's', 3429, - 'x', 3388, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1487: + if (lookahead == 'n') ADVANCE(1807); END_STATE(); - case 24: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 2559, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'B', 2731, - 'E', 468, - 'G', 470, - 'K', 470, - 'M', 470, - 'P', 470, - 'T', 470, - '[', 2752, - '_', 478, - 'a', 555, - 'b', 2733, - 'd', 487, - 'e', 413, - 'g', 469, - 'h', 586, - 'i', 524, - 'k', 469, - 'm', 471, - 'n', 569, - 'o', 412, - 'p', 469, - 's', 515, - 't', 469, - 'u', 598, - 'w', 542, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 598, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + case 1488: + if (lookahead == 'n') ADVANCE(1811); END_STATE(); - case 25: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(25); + case 1489: + if (lookahead == 'n') ADVANCE(1813); END_STATE(); - case 26: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 422, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 425, - 's', 607, - 'x', 565, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(26); + case 1490: + if (lookahead == 'n') ADVANCE(1815); END_STATE(); - case 27: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2334, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'a', 555, - 'b', 536, - 'e', 419, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(27); + case 1491: + if (lookahead == 'n') ADVANCE(1933); END_STATE(); - case 28: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(28); + case 1492: + if (lookahead == 'n') ADVANCE(1820); END_STATE(); - case 29: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 422, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 425, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(29); + case 1493: + if (lookahead == 'n') ADVANCE(1937); END_STATE(); - case 30: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(30); + case 1494: + if (lookahead == 'n') ADVANCE(1938); + if (lookahead == 'x') ADVANCE(443); END_STATE(); - case 31: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 422, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 425, - 's', 607, - 'x', 565, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(31); + case 1495: + if (lookahead == 'n') ADVANCE(1951); END_STATE(); - case 32: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 559, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 582, - 's', 607, - 'x', 565, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(32); + case 1496: + if (lookahead == 'n') ADVANCE(954); END_STATE(); - case 33: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 2569, - ':', 2297, - ';', 2263, - '<', 1792, - '=', 839, - '>', 2322, - '?', 2476, - '@', 2325, - '[', 2300, - ']', 2301, - '`', 485, - '{', 2414, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(2032); + case 1497: + if (lookahead == 'n') ADVANCE(1956); END_STATE(); - case 34: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 445, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - '?', 2476, - '[', 2300, - ']', 2301, - '`', 485, - '{', 2414, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(2032); + case 1498: + if (lookahead == 'n') ADVANCE(2021); END_STATE(); - case 35: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1030, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1499: + if (lookahead == 'n') ADVANCE(901); END_STATE(); - case 36: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 439, - '.', 2962, - '0', 2658, - 'N', 3024, - '[', 2300, - '_', 2419, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1500: + if (lookahead == 'n') ADVANCE(912); END_STATE(); - case 37: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 873, - '0', 2665, - 'I', 1003, - 'N', 1000, - '[', 2752, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1501: + if (lookahead == 'n') ADVANCE(802); + if (lookahead == 'x') ADVANCE(1642); END_STATE(); - case 38: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - '=', 2876, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1136, - 'b', 1178, - 'c', 1043, - 'd', 1069, - 'e', 1144, - 'f', 1046, - 'h', 1120, - 'i', 1040, - 'l', 1082, - 'm', 1048, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + case 1502: + if (lookahead == 'n') ADVANCE(1059); END_STATE(); - case 39: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1136, - 'b', 1178, - 'c', 1043, - 'd', 1069, - 'e', 1144, - 'f', 1046, - 'h', 1120, - 'i', 1040, - 'l', 1082, - 'm', 1048, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + case 1503: + if (lookahead == 'n') ADVANCE(1172); END_STATE(); - case 40: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - '=', 2876, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1146, - 'b', 1194, - 'c', 1045, - 'd', 1084, - 'e', 1145, - 'f', 1047, - 'h', 1124, - 'i', 1041, - 'l', 1092, - 'm', 1058, - 'n', 1162, - 'o', 1238, - 'r', 1106, - 's', 1168, - 't', 1179, - 'u', 1209, - 'w', 1116, - '{', 2414, - '\t', 2262, - ' ', 2262, - '!', 1560, - '&', 1560, - '*', 1560, - ',', 1560, - '?', 1560, - '@', 1560, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + case 1504: + if (lookahead == 'n') ADVANCE(1077); END_STATE(); - case 41: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - 'I', 1546, - 'N', 1539, - '[', 2300, - '^', 2819, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1316, - 'h', 1395, - 'i', 1285, - 'l', 1368, - 'm', 1314, - 'n', 1441, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1460, - 'u', 1492, - 'w', 1383, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1505: + if (lookahead == 'n') ADVANCE(810); END_STATE(); - case 42: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(42); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1506: + if (lookahead == 'n') ADVANCE(1588); END_STATE(); - case 43: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 2348, - '.', 2962, - '0', 2658, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3004, - 'o', 2958, - 't', 3007, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1507: + if (lookahead == 'n') ADVANCE(813); END_STATE(); - case 44: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3518, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(44); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1508: + if (lookahead == 'n') ADVANCE(575); + if (lookahead == 't') ADVANCE(1791); END_STATE(); - case 45: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(45); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1509: + if (lookahead == 'n') ADVANCE(591); END_STATE(); - case 46: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - 'I', 1548, - 'N', 1540, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + case 1510: + if (lookahead == 'n') ADVANCE(728); END_STATE(); - case 47: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 1288, - 'I', 1548, - 'N', 1540, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1511: + if (lookahead == 'n') ADVANCE(733); END_STATE(); - case 48: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '+', 3610, - ',', 2304, - '-', 2339, - '.', 3606, - ':', 2297, - '=', 839, - ']', 2301, - '_', 1973, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1512: + if (lookahead == 'n') ADVANCE(580); END_STATE(); - case 49: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '+', 3610, - ',', 2304, - '-', 2339, - '.', 2566, - ':', 2297, - '=', 839, - ']', 2301, - '_', 1973, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1513: + if (lookahead == 'n') ADVANCE(1998); END_STATE(); - case 50: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 2569, - ':', 2297, - '=', 839, - 'E', 1961, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 2301, - 'd', 1975, - 'e', 1960, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - '|', 2264, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1514: + if (lookahead == 'n') ADVANCE(1871); END_STATE(); - case 51: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 2569, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1515: + if (lookahead == 'n') ADVANCE(1084); END_STATE(); - case 52: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - 'E', 1961, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 2301, - '_', 1973, - 'd', 1975, - 'e', 1960, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - '|', 2264, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1516: + if (lookahead == 'n') ADVANCE(2044); END_STATE(); - case 53: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - 'E', 1961, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 2301, - 'd', 1975, - 'e', 1960, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - '|', 2264, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1517: + if (lookahead == 'n') ADVANCE(623); END_STATE(); - case 54: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - ']', 2301, - 'd', 1975, - 'e', 1968, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - '|', 2264, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1518: + if (lookahead == 'n') ADVANCE(2107); END_STATE(); - case 55: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - '[', 2752, - ']', 2301, - '{', 2414, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2032); + case 1519: + if (lookahead == 'n') ADVANCE(1088); END_STATE(); - case 56: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - ']', 2301, - '_', 1973, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1520: + if (lookahead == 'n') ADVANCE(2059); END_STATE(); - case 57: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3611, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1521: + if (lookahead == 'n') ADVANCE(626); + if (lookahead == 'p') ADVANCE(1344); + if (lookahead == 'v') ADVANCE(1033); END_STATE(); - case 58: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3607, - ':', 2297, - '=', 839, - ']', 2301, - '_', 1973, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1522: + if (lookahead == 'n') ADVANCE(2110); END_STATE(); - case 59: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3607, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1523: + if (lookahead == 'n') ADVANCE(753); END_STATE(); - case 60: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 3607, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1524: + if (lookahead == 'n') ADVANCE(748); END_STATE(); - case 61: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 2565, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1962); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1525: + if (lookahead == 'n') ADVANCE(1232); END_STATE(); - case 62: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2302, - ')', 2303, - '-', 2334, - '.', 2545, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - '?', 2476, - '[', 2300, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1526: + if (lookahead == 'n') ADVANCE(1233); END_STATE(); - case 63: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2302, - ')', 2303, - '-', 2334, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - '?', 2476, - '[', 2300, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1527: + if (lookahead == 'n') ADVANCE(827); END_STATE(); - case 64: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2302, - '+', 442, - '-', 2348, - '.', 475, - '0', 1971, - ':', 2297, - '=', 839, - 'N', 2018, - '_', 1972, - 'f', 1977, - 'n', 1999, - 't', 2008, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2024); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1528: + if (lookahead == 'n') ADVANCE(829); END_STATE(); - case 65: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '+', 447, - ',', 2304, - '-', 2337, - '.', 446, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1529: + if (lookahead == 'n') ADVANCE(678); END_STATE(); - case 66: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 445, - ':', 2297, - '=', 839, - '?', 2328, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1530: + if (lookahead == 'o') ADVANCE(1709); END_STATE(); - case 67: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 445, - ':', 2297, - '=', 839, - '?', 2476, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1531: + if (lookahead == 'o') ADVANCE(2134); END_STATE(); - case 68: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 445, - ':', 2297, - '=', 839, - ']', 2301, - '{', 2414, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1532: + if (lookahead == 'o') ADVANCE(4776); END_STATE(); - case 69: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 445, - ':', 2297, - '=', 839, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1533: + if (lookahead == 'o') ADVANCE(1255); END_STATE(); - case 70: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - ',', 2304, - '-', 2334, - '.', 2567, - ':', 2297, - '=', 839, - '?', 2476, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1534: + if (lookahead == 'o') ADVANCE(436); END_STATE(); - case 71: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '-', 2334, - '.', 2545, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - '@', 2325, - '[', 2300, - ']', 2301, - 'c', 1981, - 'e', 2007, - 'f', 2016, - 'i', 1995, - 'o', 1998, - 'v', 1976, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1535: + if (lookahead == 'o') ADVANCE(4762); END_STATE(); - case 72: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '-', 2334, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - '[', 2300, - ']', 2301, - 'c', 1981, - 'e', 2007, - 'f', 2016, - 'i', 1995, - 'o', 1998, - 'v', 1976, - '{', 2414, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1536: + if (lookahead == 'o') ADVANCE(4888); END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(2559); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1537: + if (lookahead == 'o') ADVANCE(5012); END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1538: + if (lookahead == 'o') ADVANCE(4300); END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1539: + if (lookahead == 'o') ADVANCE(509); END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1540: + if (lookahead == 'o') ADVANCE(2135); END_STATE(); - case 77: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '.', 2559, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1541: + if (lookahead == 'o') ADVANCE(684); END_STATE(); - case 78: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1542: + if (lookahead == 'o') ADVANCE(2139); END_STATE(); - case 79: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1543: + if (lookahead == 'o') ADVANCE(2102); END_STATE(); - case 80: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '.', 3079, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1544: + if (lookahead == 'o') ADVANCE(1063); END_STATE(); - case 81: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2262); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + case 1545: + if (lookahead == 'o') ADVANCE(2136); END_STATE(); - case 82: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2262); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 1546: + if (lookahead == 'o') ADVANCE(1411); END_STATE(); - case 83: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); + case 1547: + if (lookahead == 'o') ADVANCE(1395); END_STATE(); - case 84: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1548: + if (lookahead == 'o') ADVANCE(514); END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(2259); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1549: + if (lookahead == 'o') ADVANCE(796); END_STATE(); - case 86: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4074, - '$', 2310, - '(', 2506, - ')', 2303, - ',', 2304, - '-', 2345, - '.', 3723, - ':', 2298, - '=', 841, - ']', 2301, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3775); + case 1550: + if (lookahead == 'o') ADVANCE(2075); + if (lookahead == 'p') ADVANCE(576); END_STATE(); - case 87: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - '<', 2495, - '=', 3086, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1551: + if (lookahead == 'o') ADVANCE(1047); END_STATE(); - case 88: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3086, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1552: + if (lookahead == 'o') ADVANCE(2137); END_STATE(); - case 89: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3086, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1553: + if (lookahead == 'o') ADVANCE(1412); END_STATE(); - case 90: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3086, - '>', 2323, - 'B', 2731, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3100, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1554: + if (lookahead == 'o') ADVANCE(1048); END_STATE(); - case 91: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 2559, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1555: + if (lookahead == 'o') ADVANCE(2129); END_STATE(); - case 92: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1556: + if (lookahead == 'o') ADVANCE(1282); END_STATE(); - case 93: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3097, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1557: + if (lookahead == 'o') ADVANCE(1914); END_STATE(); - case 94: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '(', 2506, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 3079, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3100, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3168, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1558: + if (lookahead == 'o') ADVANCE(1054); END_STATE(); - case 95: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 3086, - '>', 2323, - 'a', 3154, - 'b', 3142, - 'e', 3155, - 'i', 3153, - 'm', 3159, - 'n', 3161, - 'o', 3168, - 's', 3191, - 'x', 3163, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1559: + if (lookahead == 'o') ADVANCE(1691); END_STATE(); - case 96: - ADVANCE_MAP( - '!', 3085, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2334, - '/', 2512, - '<', 2495, - '=', 3087, - '>', 2323, - 'a', 3154, - 'b', 3142, - 'e', 3155, - 'i', 3153, - 'm', 3159, - 'n', 3161, - 'o', 3168, - 's', 3191, - 'x', 3163, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1560: + if (lookahead == 'o') ADVANCE(2076); END_STATE(); - case 97: - ADVANCE_MAP( - '!', 3284, - '#', 4075, - '(', 2506, - '*', 2475, - '+', 2524, - '-', 2357, - '/', 2514, - '<', 2496, - '=', 3285, - '>', 2324, - 'a', 3373, - 'b', 3356, - 'e', 3378, - 'i', 3374, - 'm', 3386, - 'n', 3389, - 'o', 3399, - 's', 3429, - 'x', 3388, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1561: + if (lookahead == 'o') ADVANCE(1418); END_STATE(); - case 98: - ADVANCE_MAP( - '!', 3284, - '#', 4075, - '(', 2506, - '*', 2475, - '+', 2524, - '-', 2342, - '/', 2514, - '<', 2496, - '=', 3286, - '>', 2324, - 'a', 3373, - 'b', 3356, - 'e', 3378, - 'i', 3374, - 'm', 3386, - 'n', 3389, - 'o', 3399, - 's', 3429, - 'x', 3388, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1562: + if (lookahead == 'o') ADVANCE(2108); END_STATE(); - case 99: - ADVANCE_MAP( - '!', 454, - '#', 4069, - '$', 2305, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 2545, - '/', 2512, - ':', 2810, - ';', 2813, - '<', 2495, - '=', 456, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 559, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 582, - 's', 607, - 'x', 565, - '{', 2414, - '\t', 100, - ' ', 100, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + case 1563: + if (lookahead == 'o') ADVANCE(1760); END_STATE(); - case 100: - ADVANCE_MAP( - '!', 454, - '#', 4069, - '$', 2305, - '*', 2473, - '+', 2521, - '-', 2334, - '/', 2512, - ':', 2810, - ';', 2813, - '<', 2495, - '=', 456, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 559, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 582, - 's', 607, - 'x', 565, - '{', 2414, - '\t', 100, - ' ', 100, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + case 1564: + if (lookahead == 'o') ADVANCE(1636); END_STATE(); - case 101: - ADVANCE_MAP( - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - '<', 2495, - '=', 455, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 559, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 582, - 's', 607, - 'x', 565, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(101); + case 1565: + if (lookahead == 'o') ADVANCE(1419); END_STATE(); - case 102: - ADVANCE_MAP( - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2334, - '/', 2512, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 559, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 582, - 's', 607, - 'x', 565, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(102); + case 1566: + if (lookahead == 'o') ADVANCE(2083); END_STATE(); - case 103: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1567: + if (lookahead == 'o') ADVANCE(1637); END_STATE(); - case 104: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3610, - ',', 2304, - '-', 3609, - '.', 3602, - '0', 2590, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(225); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1568: + if (lookahead == 'o') ADVANCE(1263); END_STATE(); - case 105: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3610, - ',', 2304, - '-', 3609, - '.', 2549, - '0', 2590, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(225); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1569: + if (lookahead == 'o') ADVANCE(1727); END_STATE(); - case 106: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3610, - ',', 2805, - '-', 3609, - '.', 3602, - '0', 2590, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1570: + if (lookahead == 'o') ADVANCE(1796); END_STATE(); - case 107: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3610, - ',', 2805, - '-', 3609, - '.', 2549, - '0', 2590, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1571: + if (lookahead == 'o') ADVANCE(1694); END_STATE(); - case 108: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 873, - '0', 2593, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1572: + if (lookahead == 'o') ADVANCE(1427); END_STATE(); - case 109: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 873, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1573: + if (lookahead == 'o') ADVANCE(788); END_STATE(); - case 110: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 873, - '0', 2665, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1574: + if (lookahead == 'o') ADVANCE(1731); END_STATE(); - case 111: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 2568, - '0', 2665, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1575: + if (lookahead == 'o') ADVANCE(1485); END_STATE(); - case 112: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 2568, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1576: + if (lookahead == 'o') ADVANCE(1269); END_STATE(); - case 113: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2593, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 892, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1577: + if (lookahead == 'o') ADVANCE(1700); + END_STATE(); + case 1578: + if (lookahead == 'o') ADVANCE(1701); + END_STATE(); + case 1579: + if (lookahead == 'o') ADVANCE(1439); + END_STATE(); + case 1580: + if (lookahead == 'o') ADVANCE(1703); + END_STATE(); + case 1581: + if (lookahead == 'o') ADVANCE(1705); + END_STATE(); + case 1582: + if (lookahead == 'o') ADVANCE(1444); + END_STATE(); + case 1583: + if (lookahead == 'o') ADVANCE(1445); + END_STATE(); + case 1584: + if (lookahead == 'o') ADVANCE(1514); + END_STATE(); + case 1585: + if (lookahead == 'o') ADVANCE(1953); + END_STATE(); + case 1586: + if (lookahead == 'o') ADVANCE(2032); + if (lookahead == 'u') ADVANCE(1301); + END_STATE(); + case 1587: + if (lookahead == 'o') ADVANCE(1963); + END_STATE(); + case 1588: + if (lookahead == 'o') ADVANCE(1966); + END_STATE(); + case 1589: + if (lookahead == 'o') ADVANCE(2053); + END_STATE(); + case 1590: + if (lookahead == 'o') ADVANCE(2053); + if (lookahead == 's') ADVANCE(4645); + END_STATE(); + case 1591: + if (lookahead == 'o') ADVANCE(1971); + if (lookahead == 'u') ADVANCE(1308); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2218); + END_STATE(); + case 1592: + if (lookahead == 'o') ADVANCE(1973); + END_STATE(); + case 1593: + if (lookahead == 'o') ADVANCE(1140); + END_STATE(); + case 1594: + if (lookahead == 'o') ADVANCE(1404); + END_STATE(); + case 1595: + if (lookahead == 'o') ADVANCE(1658); + END_STATE(); + case 1596: + if (lookahead == 'o') ADVANCE(797); + END_STATE(); + case 1597: + if (lookahead == 'o') ADVANCE(2079); + END_STATE(); + case 1598: + if (lookahead == 'o') ADVANCE(2077); + END_STATE(); + case 1599: + if (lookahead == 'o') ADVANCE(1329); + END_STATE(); + case 1600: + if (lookahead == 'o') ADVANCE(2084); + END_STATE(); + case 1601: + if (lookahead == 'o') ADVANCE(1499); + END_STATE(); + case 1602: + if (lookahead == 'o') ADVANCE(1143); + END_STATE(); + case 1603: + if (lookahead == 'o') ADVANCE(1842); + END_STATE(); + case 1604: + if (lookahead == 'o') ADVANCE(1500); + END_STATE(); + case 1605: + if (lookahead == 'o') ADVANCE(1147); + END_STATE(); + case 1606: + if (lookahead == 'o') ADVANCE(811); + END_STATE(); + case 1607: + if (lookahead == 'o') ADVANCE(1739); + END_STATE(); + case 1608: + if (lookahead == 'o') ADVANCE(1571); + END_STATE(); + case 1609: + if (lookahead == 'o') ADVANCE(1374); + if (lookahead == 's') ADVANCE(2126); + END_STATE(); + case 1610: + if (lookahead == 'o') ADVANCE(1745); + END_STATE(); + case 1611: + if (lookahead == 'o') ADVANCE(812); + END_STATE(); + case 1612: + if (lookahead == 'o') ADVANCE(1746); + END_STATE(); + case 1613: + if (lookahead == 'o') ADVANCE(588); + END_STATE(); + case 1614: + if (lookahead == 'o') ADVANCE(814); + END_STATE(); + case 1615: + if (lookahead == 'o') ADVANCE(1161); + END_STATE(); + case 1616: + if (lookahead == 'o') ADVANCE(816); + END_STATE(); + case 1617: + if (lookahead == 'o') ADVANCE(1751); + END_STATE(); + case 1618: + if (lookahead == 'o') ADVANCE(817); + END_STATE(); + case 1619: + if (lookahead == 'o') ADVANCE(1752); + END_STATE(); + case 1620: + if (lookahead == 'o') ADVANCE(598); + END_STATE(); + case 1621: + if (lookahead == 'o') ADVANCE(1478); + END_STATE(); + case 1622: + if (lookahead == 'o') ADVANCE(1480); + END_STATE(); + case 1623: + if (lookahead == 'o') ADVANCE(1165); + END_STATE(); + case 1624: + if (lookahead == 'o') ADVANCE(1902); + END_STATE(); + case 1625: + if (lookahead == 'o') ADVANCE(1777); + END_STATE(); + case 1626: + if (lookahead == 'o') ADVANCE(1064); + END_STATE(); + case 1627: + if (lookahead == 'o') ADVANCE(823); + END_STATE(); + case 1628: + if (lookahead == 'o') ADVANCE(1342); + END_STATE(); + case 1629: + if (lookahead == 'o') ADVANCE(1345); + END_STATE(); + case 1630: + if (lookahead == 'o') ADVANCE(1409); + END_STATE(); + case 1631: + if (lookahead == 'p') ADVANCE(5024); + END_STATE(); + case 1632: + if (lookahead == 'p') ADVANCE(4862); + END_STATE(); + case 1633: + if (lookahead == 'p') ADVANCE(5078); + END_STATE(); + case 1634: + if (lookahead == 'p') ADVANCE(5084); + END_STATE(); + case 1635: + if (lookahead == 'p') ADVANCE(4729); + END_STATE(); + case 1636: + if (lookahead == 'p') ADVANCE(4894); + END_STATE(); + case 1637: + if (lookahead == 'p') ADVANCE(4922); + END_STATE(); + case 1638: + if (lookahead == 'p') ADVANCE(739); + END_STATE(); + case 1639: + if (lookahead == 'p') ADVANCE(2066); + END_STATE(); + case 1640: + if (lookahead == 'p') ADVANCE(1346); + END_STATE(); + case 1641: + if (lookahead == 'p') ADVANCE(824); + END_STATE(); + case 1642: + if (lookahead == 'p') ADVANCE(627); + END_STATE(); + case 1643: + if (lookahead == 'p') ADVANCE(560); + END_STATE(); + case 1644: + if (lookahead == 'p') ADVANCE(1988); + END_STATE(); + case 1645: + if (lookahead == 'p') ADVANCE(1026); + END_STATE(); + case 1646: + if (lookahead == 'p') ADVANCE(439); + END_STATE(); + case 1647: + if (lookahead == 'p') ADVANCE(1291); + if (lookahead == 'v') ADVANCE(1031); + END_STATE(); + case 1648: + if (lookahead == 'p') ADVANCE(562); + END_STATE(); + case 1649: + if (lookahead == 'p') ADVANCE(837); + END_STATE(); + case 1650: + if (lookahead == 'p') ADVANCE(968); + END_STATE(); + case 1651: + if (lookahead == 'p') ADVANCE(1020); + END_STATE(); + case 1652: + if (lookahead == 'p') ADVANCE(1823); + END_STATE(); + case 1653: + if (lookahead == 'p') ADVANCE(866); + END_STATE(); + case 1654: + if (lookahead == 'p') ADVANCE(921); + END_STATE(); + case 1655: + if (lookahead == 'p') ADVANCE(1323); + END_STATE(); + case 1656: + if (lookahead == 'p') ADVANCE(604); + END_STATE(); + case 1657: + if (lookahead == 'p') ADVANCE(961); + END_STATE(); + case 1658: + if (lookahead == 'p') ADVANCE(2034); + END_STATE(); + case 1659: + if (lookahead == 'p') ADVANCE(1759); + END_STATE(); + case 1660: + if (lookahead == 'p') ADVANCE(1348); + END_STATE(); + case 1661: + if (lookahead == 'p') ADVANCE(975); + if (lookahead == 't') ADVANCE(1122); END_STATE(); - case 114: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2593, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1662: + if (lookahead == 'p') ADVANCE(1762); END_STATE(); - case 115: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2665, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1663: + if (lookahead == 'p') ADVANCE(1610); END_STATE(); - case 116: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2665, - 'B', 2731, - 'E', 885, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 882, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1664: + if (lookahead == 'p') ADVANCE(1612); END_STATE(); - case 117: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1665: + if (lookahead == 'p') ADVANCE(1295); END_STATE(); - case 118: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2665, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1666: + if (lookahead == 'p') ADVANCE(1617); END_STATE(); - case 119: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 2557, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1667: + if (lookahead == 'p') ADVANCE(1314); END_STATE(); - case 120: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 873, - '0', 2593, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1668: + if (lookahead == 'p') ADVANCE(1327); END_STATE(); - case 121: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 873, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1669: + if (lookahead == 'p') ADVANCE(634); END_STATE(); - case 122: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 873, - '0', 2665, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1670: + if (lookahead == 'p') ADVANCE(644); END_STATE(); - case 123: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 2568, - '0', 2665, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '[', 2300, - ']', 2301, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1671: + if (lookahead == 'p') ADVANCE(637); END_STATE(); - case 124: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 2568, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1672: + if (lookahead == 'p') ADVANCE(645); END_STATE(); - case 125: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2593, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 892, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1673: + if (lookahead == 'p') ADVANCE(661); END_STATE(); - case 126: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2593, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1674: + if (lookahead == 'p') ADVANCE(662); END_STATE(); - case 127: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2665, - 'B', 2731, - 'E', 880, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 879, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1675: + if (lookahead == 'p') ADVANCE(675); END_STATE(); - case 128: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2665, - 'B', 2731, - 'E', 885, - 'G', 885, - 'I', 1003, - 'K', 885, - 'M', 885, - 'N', 1000, - 'P', 885, - 'T', 885, - '_', 887, - '`', 485, - 'a', 946, - 'b', 2735, - 'c', 900, - 'd', 906, - 'e', 882, - 'f', 901, - 'g', 884, - 'h', 938, - 'i', 886, - 'k', 884, - 'l', 924, - 'm', 881, - 'n', 977, - 'o', 997, - 'p', 884, - 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, - '}', 2415, - 0xb5, 978, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1676: + if (lookahead == 'p') ADVANCE(1350); END_STATE(); - case 129: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1677: + if (lookahead == 'p') ADVANCE(1038); END_STATE(); - case 130: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2665, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1678: + if (lookahead == 'q') ADVANCE(2097); + if (lookahead == 's') ADVANCE(1130); END_STATE(); - case 131: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 2557, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1679: + if (lookahead == 'q') ADVANCE(2106); END_STATE(); - case 132: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2590, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - '\t', 2806, - ' ', 2806, - 'B', 2731, - 'b', 2731, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1680: + if (lookahead == 'q') ADVANCE(1288); + if (lookahead == 't') ADVANCE(1765); END_STATE(); - case 133: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2590, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1681: + if (lookahead == 'q') ADVANCE(2082); END_STATE(); - case 134: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - '\t', 2806, - ' ', 2806, - 'B', 2731, - 'b', 2731, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1682: + if (lookahead == 'q') ADVANCE(2087); END_STATE(); - case 135: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3629, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3594, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - '\t', 2806, - ' ', 2806, - 'B', 2731, - 'b', 2731, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1683: + if (lookahead == 'q') ADVANCE(2088); END_STATE(); - case 136: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1684: + if (lookahead == 'q') ADVANCE(2089); END_STATE(); - case 137: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3604, - '0', 2663, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1685: + if (lookahead == 'q') ADVANCE(2113); END_STATE(); - case 138: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3603, - '0', 2590, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1686: + if (lookahead == 'q') ADVANCE(2109); END_STATE(); - case 139: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3603, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1687: + if (lookahead == 'q') ADVANCE(2115); END_STATE(); - case 140: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3603, - '0', 2663, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1688: + if (lookahead == 'r') ADVANCE(1679); END_STATE(); - case 141: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 2564, - '0', 2663, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - '\t', 2806, - ' ', 2806, - 'B', 2731, - 'b', 2731, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1689: + if (lookahead == 'r') ADVANCE(4732); END_STATE(); - case 142: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 2564, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1690: + if (lookahead == 'r') ADVANCE(5117); END_STATE(); - case 143: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 2554, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1691: + if (lookahead == 'r') ADVANCE(4737); END_STATE(); - case 144: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2529, - ',', 1560, - '-', 2354, - '.', 2558, - '0', 2593, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(224); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1692: + if (lookahead == 'r') ADVANCE(5031); END_STATE(); - case 145: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2529, - ',', 1560, - '-', 2354, - '.', 874, - '0', 2593, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(224); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1693: + if (lookahead == 'r') ADVANCE(4784); END_STATE(); - case 146: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2529, - ',', 2805, - '-', 2354, - '.', 2558, - '0', 2593, - 'I', 1003, - 'N', 1000, - '[', 2752, - ']', 2301, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1694: + if (lookahead == 'r') ADVANCE(4863); END_STATE(); - case 147: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2529, - ',', 2805, - '-', 2354, - '.', 874, - '0', 2593, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1695: + if (lookahead == 'r') ADVANCE(4931); END_STATE(); - case 148: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3520, - ',', 2304, - '-', 3519, - '.', 3514, - '0', 2591, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(225); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1696: + if (lookahead == 'r') ADVANCE(4948); END_STATE(); - case 149: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3520, - ',', 2304, - '-', 3519, - '.', 2553, - '0', 2591, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(225); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1697: + if (lookahead == 'r') ADVANCE(4937); END_STATE(); - case 150: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3520, - ',', 2805, - '-', 3519, - '.', 3514, - '0', 2591, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1698: + if (lookahead == 'r') ADVANCE(4945); END_STATE(); - case 151: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 3520, - ',', 2805, - '-', 3519, - '.', 2553, - '0', 2591, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1699: + if (lookahead == 'r') ADVANCE(4915); END_STATE(); - case 152: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2304, - '-', 2347, - '.', 1030, - '0', 2664, - ':', 2810, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 152, - ' ', 152, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1700: + if (lookahead == 'r') ADVANCE(4750); END_STATE(); - case 153: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2304, - '-', 2347, - '.', 1030, - '0', 2664, - ':', 2810, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 153, - ' ', 153, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1701: + if (lookahead == 'r') ADVANCE(4751); END_STATE(); - case 154: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2304, - '-', 2347, - '.', 2556, - '0', 2664, - ':', 2810, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 152, - ' ', 152, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1702: + if (lookahead == 'r') ADVANCE(4389); END_STATE(); - case 155: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2304, - '-', 2347, - '.', 2556, - '0', 2664, - ':', 2810, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 153, - ' ', 153, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1703: + if (lookahead == 'r') ADVANCE(4387); END_STATE(); - case 156: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2555, - '0', 2664, - '<', 1792, - 'I', 1546, - 'N', 1539, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1704: + if (lookahead == 'r') ADVANCE(4445); END_STATE(); - case 157: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2555, - '0', 2664, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1705: + if (lookahead == 'r') ADVANCE(4443); END_STATE(); - case 158: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2555, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1706: + if (lookahead == 'r') ADVANCE(4645); END_STATE(); - case 159: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 1030, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1707: + if (lookahead == 'r') ADVANCE(418); END_STATE(); - case 160: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 1030, - '0', 2592, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1299, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1708: + if (lookahead == 'r') ADVANCE(2091); END_STATE(); - case 161: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2556, - '0', 2664, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1709: + if (lookahead == 'r') ADVANCE(1393); END_STATE(); - case 162: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2556, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1710: + if (lookahead == 'r') ADVANCE(2168); END_STATE(); - case 163: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 2556, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1711: + if (lookahead == 'r') ADVANCE(2169); END_STATE(); - case 164: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 1029, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1712: + if (lookahead == 'r') ADVANCE(425); END_STATE(); - case 165: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 1029, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1713: + if (lookahead == 'r') ADVANCE(2170); END_STATE(); - case 166: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - ',', 2805, - '-', 2347, - '.', 1029, - '0', 2592, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1299, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1714: + if (lookahead == 'r') ADVANCE(2171); END_STATE(); - case 167: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2555, - '0', 2664, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(170); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1715: + if (lookahead == 'r') ADVANCE(512); END_STATE(); - case 168: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2555, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1716: + if (lookahead == 'r') ADVANCE(1911); END_STATE(); - case 169: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2555, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1717: + if (lookahead == 'r') ADVANCE(2174); END_STATE(); - case 170: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1030, - '0', 2664, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(170); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1718: + if (lookahead == 'r') ADVANCE(567); END_STATE(); - case 171: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1030, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1719: + if (lookahead == 'r') ADVANCE(517); END_STATE(); - case 172: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1030, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1720: + if (lookahead == 'r') ADVANCE(605); END_STATE(); - case 173: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1030, - '0', 2592, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1299, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1721: + if (lookahead == 'r') ADVANCE(2142); END_STATE(); - case 174: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2556, - '0', 2664, - '?', 2476, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(170); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1722: + if (lookahead == 'r') ADVANCE(1258); END_STATE(); - case 175: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2556, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1723: + if (lookahead == 'r') ADVANCE(2177); END_STATE(); - case 176: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 2556, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1724: + if (lookahead == 'r') ADVANCE(1142); END_STATE(); - case 177: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1029, - '0', 2664, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1725: + if (lookahead == 'r') ADVANCE(2178); END_STATE(); - case 178: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1029, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1726: + if (lookahead == 'r') ADVANCE(1237); END_STATE(); - case 179: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2525, - '-', 2347, - '.', 1029, - '0', 2592, - 'E', 1297, - 'I', 1546, - 'N', 1539, - '_', 1299, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1296, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1727: + if (lookahead == 'r') ADVANCE(777); END_STATE(); - case 180: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2966, - ',', 2805, - '-', 440, - '.', 2962, - '0', 2658, - 'N', 3024, - '[', 2300, - '_', 2419, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - '{', 2414, - '}', 2415, - '\t', 2806, - ' ', 2806, - 'I', 3027, - 'i', 3027, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1728: + if (lookahead == 'r') ADVANCE(1023); END_STATE(); - case 181: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - ';', 2813, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 181, - ' ', 181, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1729: + if (lookahead == 'r') ADVANCE(1477); END_STATE(); - case 182: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - '?', 2476, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1730: + if (lookahead == 'r') ADVANCE(1794); END_STATE(); - case 183: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1731: + if (lookahead == 'r') ADVANCE(782); END_STATE(); - case 184: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2752, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1732: + if (lookahead == 'r') ADVANCE(822); END_STATE(); - case 185: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1733: + if (lookahead == 'r') ADVANCE(1544); END_STATE(); - case 186: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3513, - '0', 2591, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1734: + if (lookahead == 'r') ADVANCE(1798); END_STATE(); - case 187: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3515, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1735: + if (lookahead == 'r') ADVANCE(1923); END_STATE(); - case 188: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3515, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1736: + if (lookahead == 'r') ADVANCE(1483); END_STATE(); - case 189: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 3515, - '0', 2591, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1737: + if (lookahead == 'r') ADVANCE(2062); + if (lookahead == 't') ADVANCE(1792); END_STATE(); - case 190: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2562, - '0', 2659, - '?', 2476, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1738: + if (lookahead == 'r') ADVANCE(1805); END_STATE(); - case 191: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2562, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1739: + if (lookahead == 'r') ADVANCE(1814); END_STATE(); - case 192: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2562, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1740: + if (lookahead == 'r') ADVANCE(1441); END_STATE(); - case 193: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2547, - '0', 2659, - ';', 2813, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 181, - ' ', 181, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1741: + if (lookahead == 'r') ADVANCE(1715); END_STATE(); - case 194: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2547, - '0', 2659, - '?', 2476, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(182); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1742: + if (lookahead == 'r') ADVANCE(1719); END_STATE(); - case 195: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2304, - '-', 3516, - '.', 2547, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1743: + if (lookahead == 'r') ADVANCE(1898); END_STATE(); - case 196: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3513, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1744: + if (lookahead == 'r') ADVANCE(1990); END_STATE(); - case 197: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2752, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1745: + if (lookahead == 'r') ADVANCE(1944); END_STATE(); - case 198: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3513, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1746: + if (lookahead == 'r') ADVANCE(1945); END_STATE(); - case 199: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3513, - '0', 2591, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1747: + if (lookahead == 'r') ADVANCE(1946); END_STATE(); - case 200: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3515, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1748: + if (lookahead == 'r') ADVANCE(1453); END_STATE(); - case 201: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3515, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1749: + if (lookahead == 'r') ADVANCE(1454); END_STATE(); - case 202: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 3515, - '0', 2591, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3537, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1750: + if (lookahead == 'r') ADVANCE(953); END_STATE(); - case 203: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2562, - '0', 2659, - '?', 2476, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1751: + if (lookahead == 'r') ADVANCE(1961); END_STATE(); - case 204: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2562, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1752: + if (lookahead == 'r') ADVANCE(1964); END_STATE(); - case 205: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2562, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1753: + if (lookahead == 'r') ADVANCE(1965); END_STATE(); - case 206: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2547, - '0', 2659, - ';', 2813, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2807, - ' ', 2807, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1754: + if (lookahead == 'r') ADVANCE(903); END_STATE(); - case 207: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2547, - '0', 2659, - '?', 2476, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1755: + if (lookahead == 'r') ADVANCE(957); END_STATE(); - case 208: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2547, - '0', 2659, - 'E', 3543, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3509, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1756: + if (lookahead == 'r') ADVANCE(1596); END_STATE(); - case 209: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3517, - ',', 2805, - '-', 3516, - '.', 2547, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1757: + if (lookahead == 'r') ADVANCE(1151); END_STATE(); - case 210: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 873, - '0', 2665, - 'I', 1003, - 'N', 1000, - '[', 2752, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + case 1758: + if (lookahead == 'r') ADVANCE(1598); END_STATE(); - case 211: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2590, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1759: + if (lookahead == 'r') ADVANCE(997); END_STATE(); - case 212: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2590, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1760: + if (lookahead == 'r') ADVANCE(808); END_STATE(); - case 213: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1761: + if (lookahead == 'r') ADVANCE(1488); END_STATE(); - case 214: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3629, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3594, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1762: + if (lookahead == 'r') ADVANCE(1007); END_STATE(); - case 215: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1763: + if (lookahead == 'r') ADVANCE(1847); END_STATE(); - case 216: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3604, - '0', 2663, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1764: + if (lookahead == 'r') ADVANCE(725); END_STATE(); - case 217: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3603, - '0', 2590, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3631, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1765: + if (lookahead == 'r') ADVANCE(1173); END_STATE(); - case 218: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3603, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1766: + if (lookahead == 'r') ADVANCE(668); END_STATE(); - case 219: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 3603, - '0', 2663, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1767: + if (lookahead == 'r') ADVANCE(1851); END_STATE(); - case 220: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 2564, - '0', 2663, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'N', 3674, - 'P', 3629, - 'T', 3629, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'd', 3645, - 'e', 3597, - 'f', 3644, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3665, - 'o', 3596, - 'p', 3628, - 's', 3650, - 't', 3627, - 'u', 3666, - 'w', 3653, - '{', 2414, - 0xb5, 3666, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1768: + if (lookahead == 'r') ADVANCE(1168); END_STATE(); - case 221: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 2564, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1769: + if (lookahead == 'r') ADVANCE(2085); END_STATE(); - case 222: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2304, - '-', 3612, - '.', 2554, - '0', 2663, - 'E', 3640, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3598, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3681); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1770: + if (lookahead == 'r') ADVANCE(2086); + END_STATE(); + case 1771: + if (lookahead == 'r') ADVANCE(595); + END_STATE(); + case 1772: + if (lookahead == 'r') ADVANCE(1863); + END_STATE(); + case 1773: + if (lookahead == 'r') ADVANCE(1186); END_STATE(); - case 223: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3613, - ',', 2805, - '-', 3612, - '.', 3603, - '0', 2663, - 'N', 3674, - '[', 2300, - ']', 2301, - '_', 3636, - '`', 485, - 'e', 3595, - 'f', 3644, - 'n', 3670, - 'o', 3596, - 't', 3661, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3681, - 'i', 3681, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1774: + if (lookahead == 'r') ADVANCE(2090); END_STATE(); - case 224: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 2528, - '-', 2353, - '.', 1031, - '0', 2664, - 'I', 1546, - 'N', 1539, - '_', 1291, - '`', 485, - 'a', 1407, - 'b', 1459, - 'c', 1306, - 'd', 1333, - 'e', 1416, - 'f', 1300, - 'h', 1386, - 'i', 1284, - 'l', 1348, - 'm', 1303, - 'n', 1518, - 'o', 1532, - 'r', 1334, - 's', 1433, - 't', 1451, - 'u', 1486, - 'w', 1379, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(224); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1775: + if (lookahead == 'r') ADVANCE(1867); END_STATE(); - case 225: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2302, - '+', 3520, - ',', 2304, - '-', 3519, - '.', 3514, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(225); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1776: + if (lookahead == 'r') ADVANCE(1872); END_STATE(); - case 226: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - '+', 442, - '-', 2349, - '.', 443, - '0', 2895, - '=', 2876, - 'N', 2921, - '[', 2300, - '_', 2896, - '`', 485, - 'f', 2903, - 'n', 2910, - 't', 2911, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2902); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 1777: + if (lookahead == 'r') ADVANCE(1401); END_STATE(); - case 227: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2813, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1146, - 'b', 1178, - 'c', 1044, - 'd', 1083, - 'e', 1145, - 'f', 1047, - 'h', 1124, - 'i', 1040, - 'l', 1092, - 'm', 1049, - 'n', 1162, - 'o', 1238, - 'r', 1107, - 's', 1168, - 't', 1173, - 'u', 1209, - 'w', 1119, - '{', 2414, - '\t', 227, - ' ', 227, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + case 1778: + if (lookahead == 'r') ADVANCE(1025); + if (lookahead == 't') ADVANCE(558); END_STATE(); - case 228: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1146, - 'b', 1194, - 'c', 1045, - 'd', 1084, - 'e', 1145, - 'f', 1047, - 'h', 1124, - 'i', 1041, - 'l', 1092, - 'm', 1058, - 'n', 1162, - 'o', 1238, - 'r', 1106, - 's', 1168, - 't', 1179, - 'u', 1209, - 'w', 1116, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(228); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + case 1779: + if (lookahead == 'r') ADVANCE(1899); END_STATE(); - case 229: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 429, - '.', 1288, - ':', 2810, - '=', 2876, - 'I', 1548, - 'N', 1540, - '[', 2752, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '\t', 230, - ' ', 230, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1780: + if (lookahead == 'r') ADVANCE(1686); END_STATE(); - case 230: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 429, - '.', 1288, - ':', 2810, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '\t', 230, - ' ', 230, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1781: + if (lookahead == 'r') ADVANCE(672); END_STATE(); - case 231: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2335, - '.', 443, - '0', 2660, - '=', 839, - '@', 2325, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'f', 488, - 'n', 574, - 't', 590, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(232); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(667); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1782: + if (lookahead == 'r') ADVANCE(759); END_STATE(); - case 232: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2335, - '.', 443, - '0', 2660, - '=', 839, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'f', 488, - 'n', 574, - 't', 590, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(232); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(667); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1783: + if (lookahead == 'r') ADVANCE(760); END_STATE(); - case 233: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2348, - '.', 443, - '0', 2660, - 'N', 654, - '[', 2752, - '_', 474, - '`', 485, - 'f', 488, - 'n', 574, - 't', 590, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(667); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1784: + if (lookahead == 'r') ADVANCE(2063); END_STATE(); - case 234: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2348, - '.', 443, - '0', 2660, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'f', 488, - 'n', 574, - 't', 590, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(667); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + case 1785: + if (lookahead == 'r') ADVANCE(2064); END_STATE(); - case 235: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 442, - '-', 2348, - '.', 443, - '0', 2055, - '=', 2876, - 'N', 2183, - '[', 2300, - '_', 2056, - '`', 485, - 'f', 2063, - 'n', 2132, - 't', 2137, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2062); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + case 1786: + if (lookahead == 's') ADVANCE(2122); END_STATE(); - case 236: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 440, - '.', 2962, - '0', 2658, - ':', 2810, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - '{', 2414, - '\t', 236, - ' ', 236, - 'I', 3027, - 'i', 3027, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1787: + if (lookahead == 's') ADVANCE(4793); END_STATE(); - case 237: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 440, - '.', 2962, - ':', 2810, - 'N', 3024, - '_', 2979, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - '\t', 237, - ' ', 237, - 'I', 3027, - 'i', 3027, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1788: + if (lookahead == 's') ADVANCE(4799); END_STATE(); - case 238: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 2966, - '-', 440, - '.', 2962, - 'N', 3024, - '_', 2979, - '`', 485, - 'e', 2957, - 'f', 2992, - 'n', 3020, - 'o', 2958, - 't', 3007, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + case 1789: + if (lookahead == 's') ADVANCE(4851); END_STATE(); - case 239: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3517, - '-', 3516, - '.', 3518, - '0', 2659, - 'N', 3565, - '[', 2300, - ']', 2301, - '_', 3532, - '`', 485, - 'e', 3507, - 'f', 3545, - 'n', 3562, - 'o', 3508, - 't', 3555, - '{', 2414, - '\t', 2809, - ' ', 2809, - 'I', 3571, - 'i', 3571, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + case 1790: + if (lookahead == 's') ADVANCE(4860); END_STATE(); - case 240: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3799, - '-', 3798, - '.', 3797, - '0', 2661, - 'N', 3830, - '[', 2300, - '_', 3805, - '`', 485, - 'e', 3792, - 'f', 3810, - 'n', 3827, - 'o', 3793, - 't', 3820, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3836); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2684); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3850); + case 1791: + if (lookahead == 's') ADVANCE(4834); END_STATE(); - case 241: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3081, - '-', 2355, - '.', 3078, - '0', 2588, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3106, - '`', 485, - 'd', 3121, - 'e', 3098, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3165, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + case 1792: + if (lookahead == 's') ADVANCE(5073); END_STATE(); - case 242: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3081, - '-', 2355, - '.', 3078, - '0', 2662, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3098, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3165, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + case 1793: + if (lookahead == 's') ADVANCE(5080); END_STATE(); - case 243: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3081, - '-', 2355, - '.', 3078, - '0', 2662, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3102, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3165, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + case 1794: + if (lookahead == 's') ADVANCE(5085); END_STATE(); - case 244: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3081, - '-', 2355, - '.', 3077, - '0', 2662, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'f', 3120, - 'n', 3166, - 't', 3173, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + case 1795: + if (lookahead == 's') ADVANCE(5116); END_STATE(); - case 245: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 3081, - '-', 2355, - '.', 2563, - '0', 2662, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3098, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3165, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + case 1796: + if (lookahead == 's') ADVANCE(4852); END_STATE(); - case 246: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - ',', 2805, - '-', 441, - '.', 1288, - 'I', 1548, - 'N', 1540, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '\t', 2806, - ' ', 2806, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1797: + if (lookahead == 's') ADVANCE(4884); END_STATE(); - case 247: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 2571, - '?', 2476, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + case 1798: + if (lookahead == 's') ADVANCE(5036); END_STATE(); - case 248: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 2571, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + case 1799: + if (lookahead == 's') ADVANCE(5040); END_STATE(); - case 249: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - '=', 2876, - 'I', 2196, - 'N', 2184, - '_', 2056, - '`', 485, - 'a', 2112, - 'b', 2144, - 'c', 2067, - 'd', 2077, - 'e', 2117, - 'f', 2069, - 'h', 2103, - 'i', 2051, - 'l', 2083, - 'm', 2064, - 'n', 2171, - 'o', 2176, - 'r', 2078, - 's', 2131, - 't', 2139, - 'u', 2154, - 'w', 2100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1560); + case 1800: + if (lookahead == 's') ADVANCE(4816); END_STATE(); - case 250: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - '?', 2476, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + case 1801: + if (lookahead == 's') ADVANCE(4818); END_STATE(); - case 251: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + case 1802: + if (lookahead == 's') ADVANCE(4819); END_STATE(); - case 252: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 1032, - 'B', 2731, - 'E', 1278, - 'G', 1283, - 'I', 1548, - 'K', 1283, - 'M', 1283, - 'N', 1540, - 'P', 1283, - 'T', 1283, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 2736, - 'c', 1315, - 'd', 1311, - 'e', 1277, - 'f', 1301, - 'g', 1282, - 'h', 1394, - 'i', 1286, - 'k', 1282, - 'l', 1368, - 'm', 1279, - 'n', 1482, - 'o', 1533, - 'p', 1282, - 'r', 1369, - 's', 1350, - 't', 1281, - 'u', 1484, - 'w', 1382, - 0xb5, 1483, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1803: + if (lookahead == 's') ADVANCE(4820); END_STATE(); - case 253: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 1032, - 'B', 2731, - 'E', 1278, - 'G', 1283, - 'I', 1548, - 'K', 1283, - 'M', 1283, - 'N', 1540, - 'P', 1283, - 'T', 1283, - '_', 1299, - '`', 485, - 'a', 1420, - 'b', 2736, - 'c', 1315, - 'd', 1311, - 'e', 1277, - 'f', 1301, - 'g', 1282, - 'h', 1394, - 'i', 1286, - 'k', 1282, - 'l', 1368, - 'm', 1279, - 'n', 1482, - 'o', 1533, - 'p', 1282, - 'r', 1369, - 's', 1350, - 't', 1281, - 'u', 1484, - 'w', 1382, - 0xb5, 1483, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1804: + if (lookahead == 's') ADVANCE(4827); END_STATE(); - case 254: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 1032, - 'B', 2731, - 'E', 1283, - 'G', 1283, - 'I', 1548, - 'K', 1283, - 'M', 1283, - 'N', 1540, - 'P', 1283, - 'T', 1283, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 2736, - 'c', 1315, - 'd', 1311, - 'e', 1280, - 'f', 1301, - 'g', 1282, - 'h', 1394, - 'i', 1286, - 'k', 1282, - 'l', 1368, - 'm', 1279, - 'n', 1482, - 'o', 1533, - 'p', 1282, - 'r', 1369, - 's', 1350, - 't', 1281, - 'u', 1484, - 'w', 1382, - 0xb5, 1483, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1805: + if (lookahead == 's') ADVANCE(5016); END_STATE(); - case 255: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 2560, - 'B', 2731, - 'E', 1278, - 'G', 1283, - 'I', 1548, - 'K', 1283, - 'M', 1283, - 'N', 1540, - 'P', 1283, - 'T', 1283, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 2736, - 'c', 1315, - 'd', 1311, - 'e', 1277, - 'f', 1301, - 'g', 1282, - 'h', 1394, - 'i', 1286, - 'k', 1282, - 'l', 1368, - 'm', 1279, - 'n', 1482, - 'o', 1533, - 'p', 1282, - 'r', 1369, - 's', 1350, - 't', 1281, - 'u', 1484, - 'w', 1382, - 0xb5, 1483, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + case 1806: + if (lookahead == 's') ADVANCE(5052); END_STATE(); - case 256: - if (lookahead == '"') ADVANCE(2782); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '`') ADVANCE(485); - if (lookahead == '\t' || - lookahead == ' ') SKIP(256); + case 1807: + if (lookahead == 's') ADVANCE(5053); END_STATE(); - case 257: - if (lookahead == '"') ADVANCE(2782); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\'') ADVANCE(2814); - if (lookahead == '`') ADVANCE(2815); - if (lookahead == '\t' || - lookahead == ' ') SKIP(256); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2816); + case 1808: + if (lookahead == 's') ADVANCE(5109); END_STATE(); - case 258: - ADVANCE_MAP( - '"', 2782, - '#', 4072, - '$', 2309, - '\'', 411, - '(', 2506, - '+', 2526, - ',', 1560, - '-', 2351, - '.', 3954, - '0', 3957, - 'I', 4055, - 'N', 4052, - '_', 3959, - '`', 485, - 'a', 4003, - 'b', 4025, - 'c', 3963, - 'd', 3974, - 'e', 4009, - 'f', 3964, - 'h', 3996, - 'i', 3956, - 'l', 3984, - 'm', 3965, - 'n', 4044, - 'o', 4050, - 'r', 3975, - 's', 4015, - 't', 4021, - 'u', 4033, - 'w', 3995, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4062); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4061); + case 1809: + if (lookahead == 's') ADVANCE(4817); END_STATE(); - case 259: - ADVANCE_MAP( - '"', 2782, - '#', 4072, - '$', 2309, - '\'', 411, - '(', 2506, - '+', 2526, - ',', 2805, - '-', 2351, - '.', 3954, - '0', 3957, - 'I', 4055, - 'N', 4052, - '_', 3959, - '`', 485, - 'a', 4003, - 'b', 4025, - 'c', 3963, - 'd', 3974, - 'e', 4009, - 'f', 3964, - 'h', 3996, - 'i', 3956, - 'l', 3984, - 'm', 3965, - 'n', 4044, - 'o', 4050, - 'r', 3975, - 's', 4015, - 't', 4021, - 'u', 4033, - 'w', 3995, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4062); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4061); + case 1810: + if (lookahead == 's') ADVANCE(5025); END_STATE(); - case 260: - ADVANCE_MAP( - '"', 2782, - '#', 4075, - '$', 2307, - '\'', 411, - '(', 2302, - '+', 3276, - '-', 2352, - '.', 3277, - '0', 3298, - 'N', 3464, - '[', 2300, - '_', 3300, - '`', 485, - 'f', 3310, - 'n', 3393, - 't', 3397, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3474); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3505); + case 1811: + if (lookahead == 's') ADVANCE(5028); END_STATE(); - case 261: - ADVANCE_MAP( - '"', 2782, - '#', 4075, - '\'', 411, - '+', 3278, - '-', 3268, - '.', 3305, - 'I', 3476, - 'N', 3465, - '_', 3309, - '`', 485, - 'a', 3368, - 'b', 3405, - 'c', 3311, - 'd', 3330, - 'e', 3365, - 'f', 3312, - 'h', 3351, - 'i', 3296, - 'l', 3334, - 'm', 3313, - 'n', 3443, - 'o', 3451, - 'r', 3331, - 's', 3383, - 't', 3404, - 'u', 3422, - 'w', 3350, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(251); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3485); + case 1812: + if (lookahead == 's') ADVANCE(5029); END_STATE(); - case 262: - ADVANCE_MAP( - '"', 2782, - '#', 4074, - '$', 2310, - '\'', 411, - '(', 2506, - '+', 3720, - ',', 2805, - '-', 3719, - '.', 3721, - '0', 3734, - 'N', 3763, - '[', 2300, - ']', 2301, - '_', 3736, - '`', 485, - 'e', 3713, - 'f', 3742, - 'n', 3759, - 'o', 3714, - 't', 3752, - '{', 2414, - '\t', 2806, - ' ', 2806, - 'I', 3768, - 'i', 3768, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3739); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + case 1813: + if (lookahead == 's') ADVANCE(4768); END_STATE(); - case 263: - ADVANCE_MAP( - '"', 2782, - '#', 4074, - '$', 2310, - '\'', 411, - '(', 2302, - '+', 3720, - ',', 2304, - '-', 3719, - '.', 3721, - '0', 3734, - 'N', 3763, - '[', 2300, - ']', 2301, - '_', 3736, - '`', 485, - 'e', 3713, - 'f', 3742, - 'n', 3759, - 'o', 3714, - 't', 3752, - '{', 2414, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3739); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + case 1814: + if (lookahead == 's') ADVANCE(4821); END_STATE(); - case 264: - if (lookahead == '"') ADVANCE(2782); - if (lookahead == '#') ADVANCE(2785); - if (lookahead == '\\') ADVANCE(636); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2784); - if (lookahead != 0) ADVANCE(2785); + case 1815: + if (lookahead == 's') ADVANCE(4913); END_STATE(); - case 265: - if (lookahead == '"') ADVANCE(2783); - if (lookahead == '#') ADVANCE(4078); - if (lookahead == '$') ADVANCE(2308); - if (lookahead == '\'') ADVANCE(2948); - if (lookahead == '(') ADVANCE(2302); - if (lookahead == '`') ADVANCE(2949); - if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + case 1816: + if (lookahead == 's') ADVANCE(4925); END_STATE(); - case 266: - if (lookahead == '"') ADVANCE(2801); - if (lookahead == '#') ADVANCE(2792); - if (lookahead == '(') ADVANCE(2302); - if (lookahead == '\\') ADVANCE(630); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2791); - if (lookahead != 0) ADVANCE(2792); + case 1817: + if (lookahead == 's') ADVANCE(5026); END_STATE(); - case 267: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 3108, - '=', 3088, - '_', 3106, - 'i', 3138, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(300); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1818: + if (lookahead == 's') ADVANCE(5054); END_STATE(); - case 268: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(301); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1819: + if (lookahead == 's') ADVANCE(4880); END_STATE(); - case 269: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(303); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1820: + if (lookahead == 's') ADVANCE(4916); END_STATE(); - case 270: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 3633, - ']', 2301, - '_', 3631, - '\t', 2809, - ' ', 2809, - '+', 3610, - '-', 3610, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1821: + if (lookahead == 's') ADVANCE(4991); END_STATE(); - case 271: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 2572, - '=', 3088, - '_', 3106, - 'i', 3138, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(300); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1822: + if (lookahead == 's') ADVANCE(5030); END_STATE(); - case 272: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(2572); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(301); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1823: + if (lookahead == 's') ADVANCE(4896); END_STATE(); - case 273: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(2572); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(303); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1824: + if (lookahead == 's') ADVANCE(4924); END_STATE(); - case 274: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 3862, - '_', 3861, - '}', 2415, - '\t', 2809, - ' ', 2809, - '+', 3853, - '-', 3853, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3879); + case 1825: + if (lookahead == 's') ADVANCE(4994); END_STATE(); - case 275: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 2574, - ']', 2301, - '_', 3861, - '}', 2415, - '\t', 2809, - ' ', 2809, - '+', 3853, - '-', 3853, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); + case 1826: + if (lookahead == 's') ADVANCE(5027); END_STATE(); - case 276: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '(', 2506, - '.', 2573, - ']', 2301, - '_', 3631, - '\t', 2809, - ' ', 2809, - '+', 3610, - '-', 3610, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1827: + if (lookahead == 's') ADVANCE(5004); END_STATE(); - case 277: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 2559, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1828: + if (lookahead == 's') ADVANCE(4923); END_STATE(); - case 278: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 2559, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1829: + if (lookahead == 's') ADVANCE(4645); END_STATE(); - case 279: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1830: + if (lookahead == 's') ADVANCE(2388); END_STATE(); - case 280: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1831: + if (lookahead == 's') ADVANCE(4371); END_STATE(); - case 281: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1832: + if (lookahead == 's') ADVANCE(438); END_STATE(); - case 282: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1968, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1833: + if (lookahead == 's') ADVANCE(1245); END_STATE(); - case 283: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1973, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1834: + if (lookahead == 's') ADVANCE(1910); END_STATE(); - case 284: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1835: + if (lookahead == 's') ADVANCE(2124); END_STATE(); - case 285: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - ':', 2810, - ';', 2813, - '=', 2876, - '{', 2414, - '\t', 286, - ' ', 286, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1836: + if (lookahead == 's') ADVANCE(2125); END_STATE(); - case 286: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '-', 2334, - ':', 2810, - ';', 2813, - '{', 2414, - '\t', 286, - ' ', 286, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1837: + if (lookahead == 's') ADVANCE(1546); END_STATE(); - case 287: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + case 1838: + if (lookahead == 's') ADVANCE(2153); END_STATE(); - case 288: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2182); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); + case 1839: + if (lookahead == 's') ADVANCE(1915); END_STATE(); - case 289: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + case 1840: + if (lookahead == 's') ADVANCE(951); END_STATE(); - case 290: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1841: + if (lookahead == 's') ADVANCE(1997); END_STATE(); - case 291: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1842: + if (lookahead == 's') ADVANCE(1919); END_STATE(); - case 292: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1843: + if (lookahead == 's') ADVANCE(1920); END_STATE(); - case 293: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1844: + if (lookahead == 's') ADVANCE(1976); END_STATE(); - case 294: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2344); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 1845: + if (lookahead == 's') ADVANCE(1018); END_STATE(); - case 295: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '-') ADVANCE(2344); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == '!' || - lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); + case 1846: + if (lookahead == 's') ADVANCE(1922); END_STATE(); - case 296: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '.', 2559, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1847: + if (lookahead == 's') ADVANCE(840); END_STATE(); - case 297: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '.', 3079, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1968, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1848: + if (lookahead == 's') ADVANCE(1901); END_STATE(); - case 298: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1973, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1849: + if (lookahead == 's') ADVANCE(1926); END_STATE(); - case 299: - ADVANCE_MAP( - '#', 4069, - '$', 2305, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1850: + if (lookahead == 's') ADVANCE(1806); END_STATE(); - case 300: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '.') ADVANCE(482); - if (lookahead == '=') ADVANCE(458); - if (lookahead == 'i') ADVANCE(523); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(300); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1851: + if (lookahead == 's') ADVANCE(844); END_STATE(); - case 301: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '.') ADVANCE(482); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(301); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1852: + if (lookahead == 's') ADVANCE(1927); END_STATE(); - case 302: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '.') ADVANCE(482); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '\t' || - lookahead == ' ') SKIP(302); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1853: + if (lookahead == 's') ADVANCE(846); END_STATE(); - case 303: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '.') ADVANCE(482); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(303); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1854: + if (lookahead == 's') ADVANCE(2008); END_STATE(); - case 304: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '.') ADVANCE(482); - if (lookahead == '\t' || - lookahead == ' ') SKIP(304); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1855: + if (lookahead == 's') ADVANCE(850); END_STATE(); - case 305: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == '!' || - lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); + case 1856: + if (lookahead == 's') ADVANCE(966); END_STATE(); - case 306: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1857: + if (lookahead == 's') ADVANCE(1818); END_STATE(); - case 307: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1858: + if (lookahead == 's') ADVANCE(1935); END_STATE(); - case 308: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2559, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'P', 3629, - 'T', 3629, - ']', 2301, - 'd', 3645, - 'e', 3625, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3666, - 'p', 3628, - 's', 3650, - 't', 3628, - 'u', 3666, - 'w', 3653, - '}', 2415, - 0xb5, 3666, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1859: + if (lookahead == 's') ADVANCE(1819); END_STATE(); - case 309: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2559, - 'E', 3855, - 'G', 3857, - 'K', 3857, - 'M', 3857, - 'P', 3857, - 'T', 3857, - 'd', 3867, - 'e', 3854, - 'g', 3856, - 'h', 3873, - 'k', 3856, - 'm', 3858, - 'n', 3874, - 'p', 3856, - 's', 3870, - 't', 3856, - 'u', 3874, - 'w', 3871, - '}', 2415, - 0xb5, 3874, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1860: + if (lookahead == 's') ADVANCE(1941); END_STATE(); - case 310: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2559, - ']', 2301, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3640, - 'e', 3640, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1861: + if (lookahead == 's') ADVANCE(1529); END_STATE(); - case 311: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2559, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3865, - 'e', 3865, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1862: + if (lookahead == 's') ADVANCE(1943); END_STATE(); - case 312: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2545, - ']', 2301, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3640, - 'e', 3640, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1863: + if (lookahead == 's') ADVANCE(861); END_STATE(); - case 313: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(2545); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1864: + if (lookahead == 's') ADVANCE(1952); END_STATE(); - case 314: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 2545, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3865, - 'e', 3865, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1865: + if (lookahead == 's') ADVANCE(977); END_STATE(); - case 315: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3852, - 'E', 3855, - 'G', 3857, - 'K', 3857, - 'M', 3857, - 'P', 3857, - 'T', 3857, - '_', 3861, - 'd', 3867, - 'e', 3854, - 'g', 3856, - 'h', 3873, - 'k', 3856, - 'm', 3858, - 'n', 3874, - 'p', 3856, - 's', 3870, - 't', 3856, - 'u', 3874, - 'w', 3871, - '}', 2415, - 0xb5, 3874, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1866: + if (lookahead == 's') ADVANCE(869); END_STATE(); - case 316: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3852, - 'E', 3855, - 'G', 3857, - 'K', 3857, - 'M', 3857, - 'P', 3857, - 'T', 3857, - 'd', 3867, - 'e', 3854, - 'g', 3856, - 'h', 3873, - 'k', 3856, - 'm', 3858, - 'n', 3874, - 'p', 3856, - 's', 3870, - 't', 3856, - 'u', 3874, - 'w', 3871, - '}', 2415, - 0xb5, 3874, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1867: + if (lookahead == 's') ADVANCE(871); END_STATE(); - case 317: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3852, - 'E', 3857, - 'G', 3857, - 'K', 3857, - 'M', 3857, - 'P', 3857, - 'T', 3857, - 'd', 3867, - 'e', 3856, - 'g', 3856, - 'h', 3873, - 'k', 3856, - 'm', 3858, - 'n', 3874, - 'p', 3856, - 's', 3870, - 't', 3856, - 'u', 3874, - 'w', 3871, - '}', 2415, - 0xb5, 3874, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1868: + if (lookahead == 's') ADVANCE(1960); END_STATE(); - case 318: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3852, - '_', 3861, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3865, - 'e', 3865, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1869: + if (lookahead == 's') ADVANCE(2046); END_STATE(); - case 319: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3852, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3865, - 'e', 3865, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1870: + if (lookahead == 's') ADVANCE(1968); END_STATE(); - case 320: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3852); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1871: + if (lookahead == 's') ADVANCE(1972); END_STATE(); - case 321: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3605, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'P', 3629, - 'T', 3629, - ']', 2301, - '_', 3631, - 'd', 3645, - 'e', 3625, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3666, - 'p', 3628, - 's', 3650, - 't', 3628, - 'u', 3666, - 'w', 3653, - '}', 2415, - 0xb5, 3666, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1872: + if (lookahead == 's') ADVANCE(888); END_STATE(); - case 322: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3605, - 'E', 3626, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'P', 3629, - 'T', 3629, - ']', 2301, - 'd', 3645, - 'e', 3625, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3666, - 'p', 3628, - 's', 3650, - 't', 3628, - 'u', 3666, - 'w', 3653, - '}', 2415, - 0xb5, 3666, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1873: + if (lookahead == 's') ADVANCE(889); END_STATE(); - case 323: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3605, - 'E', 3629, - 'G', 3629, - 'K', 3629, - 'M', 3629, - 'P', 3629, - 'T', 3629, - ']', 2301, - 'd', 3645, - 'e', 3628, - 'g', 3628, - 'h', 3660, - 'k', 3628, - 'm', 3630, - 'n', 3666, - 'p', 3628, - 's', 3650, - 't', 3628, - 'u', 3666, - 'w', 3653, - '}', 2415, - 0xb5, 3666, - '\t', 2809, - ' ', 2809, - 'B', 2731, - 'b', 2731, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1874: + if (lookahead == 's') ADVANCE(891); END_STATE(); - case 324: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3605, - ']', 2301, - '_', 3631, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3640, - 'e', 3640, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1875: + if (lookahead == 's') ADVANCE(892); END_STATE(); - case 325: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '.', 3605, - ']', 2301, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3640, - 'e', 3640, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1876: + if (lookahead == 's') ADVANCE(893); END_STATE(); - case 326: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3605); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1877: + if (lookahead == 's') ADVANCE(900); END_STATE(); - case 327: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - ']', 2301, - '_', 3631, - '\t', 2809, - ' ', 2809, - 'E', 3640, - 'e', 3640, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1878: + if (lookahead == 's') ADVANCE(902); END_STATE(); - case 328: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3640); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1879: + if (lookahead == 's') ADVANCE(905); END_STATE(); - case 329: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + case 1880: + if (lookahead == 's') ADVANCE(906); END_STATE(); - case 330: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1881: + if (lookahead == 's') ADVANCE(908); END_STATE(); - case 331: - ADVANCE_MAP( - '#', 4069, - '(', 2506, - '_', 3861, - '}', 2415, - '\t', 2809, - ' ', 2809, - 'E', 3865, - 'e', 3865, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1882: + if (lookahead == 's') ADVANCE(914); END_STATE(); - case 332: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1883: + if (lookahead == 's') ADVANCE(917); END_STATE(); - case 333: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1884: + if (lookahead == 's') ADVANCE(916); END_STATE(); - case 334: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3865); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1885: + if (lookahead == 's') ADVANCE(920); END_STATE(); - case 335: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1886: + if (lookahead == 's') ADVANCE(715); + if (lookahead == 'x') ADVANCE(2037); END_STATE(); - case 336: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == ',') ADVANCE(2304); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '\t' || - lookahead == ' ') SKIP(336); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2753); + case 1887: + if (lookahead == 's') ADVANCE(2052); END_STATE(); - case 337: - ADVANCE_MAP( - '#', 4069, - ',', 2805, - '.', 2545, - ';', 2813, - '?', 2476, - ']', 2301, - '\t', 2807, - ' ', 2807, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); + case 1888: + if (lookahead == 's') ADVANCE(993); END_STATE(); - case 338: - ADVANCE_MAP( - '#', 4069, - '-', 2334, - '.', 2559, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1889: + if (lookahead == 's') ADVANCE(737); END_STATE(); - case 339: - ADVANCE_MAP( - '#', 4069, - '-', 2334, - '.', 3079, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1968, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1890: + if (lookahead == 's') ADVANCE(2014); END_STATE(); - case 340: - ADVANCE_MAP( - '#', 4069, - '-', 2334, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1973, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1891: + if (lookahead == 's') ADVANCE(1561); END_STATE(); - case 341: - ADVANCE_MAP( - '#', 4069, - '-', 2334, - '.', 3079, - 'E', 1959, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1975, - 'e', 1958, - 'g', 1968, - 'h', 2006, - 'k', 1968, - 'm', 1970, - 'n', 2010, - 'p', 1968, - 's', 1985, - 't', 1968, - 'u', 2010, - 'w', 1989, - 0xb5, 2010, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1892: + if (lookahead == 's') ADVANCE(1178); END_STATE(); - case 342: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3246); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); + case 1893: + if (lookahead == 's') ADVANCE(1036); END_STATE(); - case 343: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '-') ADVANCE(2334); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1894: + if (lookahead == 's') ADVANCE(1572); END_STATE(); - case 344: - ADVANCE_MAP( - '#', 4069, - '-', 463, - ':', 2810, - '<', 1792, - '=', 839, - '>', 2322, - '@', 2325, - 'h', 1988, - 'u', 2012, - '{', 2414, - '\t', 345, - ' ', 345, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1895: + if (lookahead == 's') ADVANCE(982); END_STATE(); - case 345: - ADVANCE_MAP( - '#', 4069, - '-', 463, - ':', 2810, - '=', 839, - '>', 2322, - 'h', 1988, - 'u', 2012, - '{', 2414, - '\t', 345, - ' ', 345, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1896: + if (lookahead == 's') ADVANCE(1190); END_STATE(); - case 346: - ADVANCE_MAP( - '#', 4069, - '.', 2559, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3138, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1897: + if (lookahead == 's') ADVANCE(987); END_STATE(); - case 347: - ADVANCE_MAP( - '#', 4069, - '.', 2559, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1898: + if (lookahead == 's') ADVANCE(1577); END_STATE(); - case 348: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2559); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1899: + if (lookahead == 's') ADVANCE(1578); END_STATE(); - case 349: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2559); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1900: + if (lookahead == 's') ADVANCE(1083); + END_STATE(); + case 1901: + if (lookahead == 's') ADVANCE(1211); + END_STATE(); + case 1902: + if (lookahead == 's') ADVANCE(1030); + END_STATE(); + case 1903: + if (lookahead == 's') ADVANCE(461); END_STATE(); - case 350: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2559); - if (lookahead == '?') ADVANCE(2476); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); + case 1904: + if (lookahead == 's') ADVANCE(466); END_STATE(); - case 351: - ADVANCE_MAP( - '#', 4069, - '.', 2559, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1905: + if (lookahead == 's') ADVANCE(469); END_STATE(); - case 352: - ADVANCE_MAP( - '#', 4069, - '.', 2559, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1906: + if (lookahead == 's') ADVANCE(472); END_STATE(); - case 353: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3138, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1907: + if (lookahead == 's') ADVANCE(473); END_STATE(); - case 354: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1908: + if (lookahead == 't') ADVANCE(707); END_STATE(); - case 355: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3138, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1909: + if (lookahead == 't') ADVANCE(1366); END_STATE(); - case 356: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1910: + if (lookahead == 't') ADVANCE(5108); END_STATE(); - case 357: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'i', 3138, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1911: + if (lookahead == 't') ADVANCE(4775); END_STATE(); - case 358: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - '=', 3088, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1912: + if (lookahead == 't') ADVANCE(5083); END_STATE(); - case 359: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1913: + if (lookahead == 't') ADVANCE(5102); END_STATE(); - case 360: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1914: + if (lookahead == 't') ADVANCE(4731); END_STATE(); - case 361: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1915: + if (lookahead == 't') ADVANCE(4813); END_STATE(); - case 362: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1916: + if (lookahead == 't') ADVANCE(4825); END_STATE(); - case 363: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1917: + if (lookahead == 't') ADVANCE(4830); END_STATE(); - case 364: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3079); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1918: + if (lookahead == 't') ADVANCE(4842); END_STATE(); - case 365: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1919: + if (lookahead == 't') ADVANCE(5081); END_STATE(); - case 366: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1920: + if (lookahead == 't') ADVANCE(5100); END_STATE(); - case 367: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1921: + if (lookahead == 't') ADVANCE(4773); END_STATE(); - case 368: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1922: + if (lookahead == 't') ADVANCE(4829); END_STATE(); - case 369: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1923: + if (lookahead == 't') ADVANCE(4874); END_STATE(); - case 370: - ADVANCE_MAP( - '#', 4069, - '.', 3079, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '{', 2414, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1924: + if (lookahead == 't') ADVANCE(5009); END_STATE(); - case 371: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2545); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1925: + if (lookahead == 't') ADVANCE(5022); END_STATE(); - case 372: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2545); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1926: + if (lookahead == 't') ADVANCE(4801); END_STATE(); - case 373: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2545); - if (lookahead == '?') ADVANCE(2476); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); + case 1927: + if (lookahead == 't') ADVANCE(4831); END_STATE(); - case 374: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '\t' || - lookahead == ' ') SKIP(376); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1928: + if (lookahead == 't') ADVANCE(4840); END_STATE(); - case 375: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(2572); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '\t' || - lookahead == ' ') SKIP(376); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1929: + if (lookahead == 't') ADVANCE(4889); END_STATE(); - case 376: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(482); - if (lookahead == '\t' || - lookahead == ' ') SKIP(376); - if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + case 1930: + if (lookahead == 't') ADVANCE(4935); END_STATE(); - case 377: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == ':') ADVANCE(2810); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(377); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + case 1931: + if (lookahead == 't') ADVANCE(4960); END_STATE(); - case 378: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(458); - if (lookahead == 'i') ADVANCE(523); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); + case 1932: + if (lookahead == 't') ADVANCE(4967); END_STATE(); - case 379: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(458); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); + case 1933: + if (lookahead == 't') ADVANCE(5019); END_STATE(); - case 380: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == 'i') ADVANCE(2909); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 1934: + if (lookahead == 't') ADVANCE(5023); END_STATE(); - case 381: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == 'i') ADVANCE(2123); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + case 1935: + if (lookahead == 't') ADVANCE(5038); END_STATE(); - case 382: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(2876); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 1936: + if (lookahead == 't') ADVANCE(5047); END_STATE(); - case 383: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1937: + if (lookahead == 't') ADVANCE(5055); END_STATE(); - case 384: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '_') ADVANCE(3106); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1938: + if (lookahead == 't') ADVANCE(5061); END_STATE(); - case 385: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1939: + if (lookahead == 't') ADVANCE(5099); END_STATE(); - case 386: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == 'i') ADVANCE(3138); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1940: + if (lookahead == 't') ADVANCE(4755); END_STATE(); - case 387: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1941: + if (lookahead == 't') ADVANCE(4892); END_STATE(); - case 388: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '=') ADVANCE(3088); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1942: + if (lookahead == 't') ADVANCE(4910); END_STATE(); - case 389: - ADVANCE_MAP( - '#', 4069, - '[', 2300, - ']', 2301, - 'c', 1981, - 'e', 2007, - 'f', 2016, - 'i', 1995, - 'o', 1998, - 'v', 1976, - '\t', 2809, - ' ', 2809, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2032); + case 1943: + if (lookahead == 't') ADVANCE(4958); END_STATE(); - case 390: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == 'i') ADVANCE(556); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); + case 1944: + if (lookahead == 't') ADVANCE(5043); END_STATE(); - case 391: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == 'i') ADVANCE(3153); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 1945: + if (lookahead == 't') ADVANCE(5044); END_STATE(); - case 392: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == 'i') ADVANCE(1997); - if (lookahead == '\t' || - lookahead == ' ') SKIP(392); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + case 1946: + if (lookahead == 't') ADVANCE(5045); END_STATE(); - case 393: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); + case 1947: + if (lookahead == 't') ADVANCE(4754); END_STATE(); - case 394: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); + case 1948: + if (lookahead == 't') ADVANCE(4800); END_STATE(); - case 395: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2358); + case 1949: + if (lookahead == 't') ADVANCE(4870); END_STATE(); - case 396: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2818); + case 1950: + if (lookahead == 't') ADVANCE(4881); END_STATE(); - case 397: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + case 1951: + if (lookahead == 't') ADVANCE(4917); END_STATE(); - case 398: - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + case 1952: + if (lookahead == 't') ADVANCE(4933); END_STATE(); - case 399: - if (lookahead == '#') ADVANCE(4072); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '}') ADVANCE(2415); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + case 1953: + if (lookahead == 't') ADVANCE(4970); END_STATE(); - case 400: - if (lookahead == '#') ADVANCE(4072); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + case 1954: + if (lookahead == 't') ADVANCE(4986); END_STATE(); - case 401: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '$') ADVANCE(2311); - if (lookahead == '-') ADVANCE(2342); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); + case 1955: + if (lookahead == 't') ADVANCE(5018); END_STATE(); - case 402: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '$') ADVANCE(2311); - if (lookahead == '\t' || - lookahead == ' ') SKIP(307); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); + case 1956: + if (lookahead == 't') ADVANCE(4727); END_STATE(); - case 403: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '{') ADVANCE(2414); - if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1957: + if (lookahead == 't') ADVANCE(4741); END_STATE(); - case 404: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '-') ADVANCE(2342); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); + case 1958: + if (lookahead == 't') ADVANCE(4914); END_STATE(); - case 405: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '=') ADVANCE(3291); - if (lookahead == 'i') ADVANCE(3344); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1959: + if (lookahead == 't') ADVANCE(4982); END_STATE(); - case 406: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '=') ADVANCE(3291); - if (lookahead == '|') ADVANCE(2264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1960: + if (lookahead == 't') ADVANCE(5001); END_STATE(); - case 407: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == 'i') ADVANCE(3374); - if (lookahead == '\t' || - lookahead == ' ') SKIP(390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 1961: + if (lookahead == 't') ADVANCE(4822); END_STATE(); - case 408: - if (lookahead == '#') ADVANCE(4074); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); + case 1962: + if (lookahead == 't') ADVANCE(4912); END_STATE(); - case 409: - if (lookahead == '#') ADVANCE(4074); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + case 1963: + if (lookahead == 't') ADVANCE(5002); END_STATE(); - case 410: - if (lookahead == '#') ADVANCE(2794); - if (lookahead == '\'') ADVANCE(2797); - if (lookahead == '(') ADVANCE(2302); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2793); - if (lookahead != 0) ADVANCE(2794); + case 1964: + if (lookahead == 't') ADVANCE(4902); END_STATE(); - case 411: - if (lookahead == '\'') ADVANCE(2786); - if (lookahead != 0) ADVANCE(411); + case 1965: + if (lookahead == 't') ADVANCE(4920); END_STATE(); - case 412: - if (lookahead == '+') ADVANCE(516); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'r') ADVANCE(2482); - if (lookahead == 'u') ADVANCE(614); + case 1966: + if (lookahead == 't') ADVANCE(4927); END_STATE(); - case 413: - ADVANCE_MAP( - '+', 479, - '-', 481, - '>', 2829, - 'I', 655, - '_', 481, - 'i', 655, - 'n', 504, - 'r', 587, - 'B', 2731, - 'b', 2731, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 1967: + if (lookahead == 't') ADVANCE(4749); END_STATE(); - case 414: - if (lookahead == '+') ADVANCE(479); - if (lookahead == '-') ADVANCE(481); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == '_') ADVANCE(481); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 1968: + if (lookahead == 't') ADVANCE(4849); END_STATE(); - case 415: - if (lookahead == '+') ADVANCE(517); - if (lookahead == '>') ADVANCE(2825); + case 1969: + if (lookahead == 't') ADVANCE(4990); END_STATE(); - case 416: - ADVANCE_MAP( - '+', 564, - '>', 2829, - 'I', 655, - 'i', 655, - 'l', 604, - 'n', 504, - 'r', 587, - 'B', 2731, - 'b', 2731, - ); + case 1970: + if (lookahead == 't') ADVANCE(4848); END_STATE(); - case 417: - if (lookahead == '+') ADVANCE(564); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'l') ADVANCE(604); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(587); + case 1971: + if (lookahead == 't') ADVANCE(2229); END_STATE(); - case 418: - if (lookahead == '+') ADVANCE(564); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'l') ADVANCE(604); - if (lookahead == 'r') ADVANCE(587); + case 1972: + if (lookahead == 't') ADVANCE(2407); END_STATE(); - case 419: - if (lookahead == '+') ADVANCE(564); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(587); + case 1973: + if (lookahead == 't') ADVANCE(456); END_STATE(); - case 420: - if (lookahead == '+') ADVANCE(564); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'r') ADVANCE(587); + case 1974: + if (lookahead == 't') ADVANCE(426); END_STATE(); - case 421: - if (lookahead == '+') ADVANCE(562); - if (lookahead == '>') ADVANCE(2821); + case 1975: + if (lookahead == 't') ADVANCE(944); END_STATE(); - case 422: - if (lookahead == '+') ADVANCE(572); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(589); + case 1976: + if (lookahead == 't') ADVANCE(457); END_STATE(); - case 423: - if (lookahead == '+') ADVANCE(572); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'r') ADVANCE(589); + case 1977: + if (lookahead == 't') ADVANCE(511); END_STATE(); - case 424: - if (lookahead == '+') ADVANCE(572); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'r') ADVANCE(589); - if (lookahead == 'x') ADVANCE(626); + case 1978: + if (lookahead == 't') ADVANCE(427); END_STATE(); - case 425: - if (lookahead == '+') ADVANCE(518); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'r') ADVANCE(2482); - if (lookahead == 'u') ADVANCE(619); + case 1979: + if (lookahead == 't') ADVANCE(1089); END_STATE(); - case 426: - if (lookahead == '+') ADVANCE(518); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'u') ADVANCE(619); + case 1980: + if (lookahead == 't') ADVANCE(1090); END_STATE(); - case 427: - if (lookahead == '+') ADVANCE(576); - if (lookahead == '>') ADVANCE(647); + case 1981: + if (lookahead == 't') ADVANCE(711); END_STATE(); - case 428: - if (lookahead == '+') ADVANCE(522); - if (lookahead == '>') ADVANCE(649); + case 1982: + if (lookahead == 't') ADVANCE(516); END_STATE(); - case 429: - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + case 1983: + if (lookahead == 't') ADVANCE(2175); END_STATE(); - case 430: - if (lookahead == '-') ADVANCE(495); + case 1984: + if (lookahead == 't') ADVANCE(1092); END_STATE(); - case 431: - if (lookahead == '-') ADVANCE(637); + case 1985: + if (lookahead == 't') ADVANCE(1724); END_STATE(); - case 432: - if (lookahead == '-') ADVANCE(537); + case 1986: + if (lookahead == 't') ADVANCE(1112); END_STATE(); - case 433: - if (lookahead == '-') ADVANCE(537); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); + case 1987: + if (lookahead == 't') ADVANCE(1093); END_STATE(); - case 434: - if (lookahead == '-') ADVANCE(567); + case 1988: + if (lookahead == 't') ADVANCE(1198); END_STATE(); - case 435: - if (lookahead == '-') ADVANCE(616); + case 1989: + if (lookahead == 't') ADVANCE(1095); END_STATE(); - case 436: - if (lookahead == '-') ADVANCE(686); + case 1990: + if (lookahead == 't') ADVANCE(437); END_STATE(); - case 437: - if (lookahead == '-') ADVANCE(638); + case 1991: + if (lookahead == 't') ADVANCE(1096); END_STATE(); - case 438: - if (lookahead == '-') ADVANCE(581); + case 1992: + if (lookahead == 't') ADVANCE(1097); END_STATE(); - case 439: - if (lookahead == '.') ADVANCE(472); - if (lookahead == '>') ADVANCE(2299); - if (lookahead == '_') ADVANCE(442); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + case 1993: + if (lookahead == 't') ADVANCE(1098); END_STATE(); - case 440: - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + case 1994: + if (lookahead == 't') ADVANCE(640); END_STATE(); - case 441: - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + case 1995: + if (lookahead == 't') ADVANCE(1099); END_STATE(); - case 442: - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + case 1996: + if (lookahead == 't') ADVANCE(835); END_STATE(); - case 443: - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + case 1997: + if (lookahead == 't') ADVANCE(614); END_STATE(); - case 444: - if (lookahead == '.') ADVANCE(2326); + case 1998: + if (lookahead == 't') ADVANCE(1100); END_STATE(); - case 445: - if (lookahead == '.') ADVANCE(444); + case 1999: + if (lookahead == 't') ADVANCE(1101); END_STATE(); - case 446: - if (lookahead == '.') ADVANCE(444); - if (lookahead == '_') ADVANCE(482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + case 2000: + if (lookahead == 't') ADVANCE(1175); END_STATE(); - case 447: - if (lookahead == '.') ADVANCE(473); - if (lookahead == '_') ADVANCE(447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + case 2001: + if (lookahead == 't') ADVANCE(1116); END_STATE(); - case 448: - if (lookahead == '2') ADVANCE(674); - if (lookahead == '0' || - lookahead == '1') ADVANCE(680); + case 2002: + if (lookahead == 't') ADVANCE(441); END_STATE(); - case 449: - if (lookahead == ':') ADVANCE(2810); - if (lookahead == ';') ADVANCE(2813); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(449); + case 2003: + if (lookahead == 't') ADVANCE(1102); END_STATE(); - case 450: - if (lookahead == ':') ADVANCE(2810); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(450); + case 2004: + if (lookahead == 't') ADVANCE(1103); END_STATE(); - case 451: - if (lookahead == ':') ADVANCE(681); + case 2005: + if (lookahead == 't') ADVANCE(435); END_STATE(); - case 452: - if (lookahead == ':') ADVANCE(682); + case 2006: + if (lookahead == 't') ADVANCE(625); END_STATE(); - case 453: - if (lookahead == ';') ADVANCE(2813); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(453); + case 2007: + if (lookahead == 't') ADVANCE(1104); END_STATE(); - case 454: - if (lookahead == '=') ADVANCE(2492); - if (lookahead == '~') ADVANCE(2503); + case 2008: + if (lookahead == 't') ADVANCE(1797); END_STATE(); - case 455: - if (lookahead == '=') ADVANCE(2490); - if (lookahead == '>') ADVANCE(2416); - if (lookahead == '~') ADVANCE(2501); + case 2009: + if (lookahead == 't') ADVANCE(1119); END_STATE(); - case 456: - if (lookahead == '=') ADVANCE(2490); - if (lookahead == '~') ADVANCE(2501); + case 2010: + if (lookahead == 't') ADVANCE(1564); END_STATE(); - case 457: - if (lookahead == '=') ADVANCE(1790); - if (lookahead == '~') ADVANCE(1778); + case 2011: + if (lookahead == 't') ADVANCE(1107); END_STATE(); - case 458: - if (lookahead == '>') ADVANCE(2416); + case 2012: + if (lookahead == 't') ADVANCE(1108); END_STATE(); - case 459: - if (lookahead == '>') ADVANCE(2849); + case 2013: + if (lookahead == 't') ADVANCE(1536); END_STATE(); - case 460: - if (lookahead == '>') ADVANCE(2845); + case 2014: + if (lookahead == 't') ADVANCE(1699); END_STATE(); - case 461: - if (lookahead == '>') ADVANCE(2837); + case 2015: + if (lookahead == 't') ADVANCE(851); END_STATE(); - case 462: - if (lookahead == '>') ADVANCE(2841); + case 2016: + if (lookahead == 't') ADVANCE(852); END_STATE(); - case 463: - if (lookahead == '>') ADVANCE(2299); + case 2017: + if (lookahead == 't') ADVANCE(853); END_STATE(); - case 464: - if (lookahead == '>') ADVANCE(646); + case 2018: + if (lookahead == 't') ADVANCE(959); END_STATE(); - case 465: - if (lookahead == '>') ADVANCE(648); + case 2019: + if (lookahead == 't') ADVANCE(1826); END_STATE(); - case 466: - if (lookahead == '>') ADVANCE(650); + case 2020: + if (lookahead == 't') ADVANCE(857); END_STATE(); - case 467: - if (lookahead == '>') ADVANCE(651); + case 2021: + if (lookahead == 't') ADVANCE(1827); END_STATE(); - case 468: - if (lookahead == 'I') ADVANCE(655); - if (lookahead == '_') ADVANCE(481); - if (lookahead == 'i') ADVANCE(497); - if (lookahead == '+' || - lookahead == '-') ADVANCE(481); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 2022: + if (lookahead == 't') ADVANCE(858); END_STATE(); - case 469: - if (lookahead == 'I') ADVANCE(655); - if (lookahead == 'i') ADVANCE(655); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + case 2023: + if (lookahead == 't') ADVANCE(859); END_STATE(); - case 470: - if (lookahead == 'I') ADVANCE(655); - if (lookahead == 'i') ADVANCE(497); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + case 2024: + if (lookahead == 't') ADVANCE(2041); END_STATE(); - case 471: - if (lookahead == 'I') ADVANCE(655); - if (lookahead == 'i') ADVANCE(553); - if (lookahead == 'o') ADVANCE(505); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + case 2025: + if (lookahead == 't') ADVANCE(883); END_STATE(); - case 472: - if (lookahead == '_') ADVANCE(472); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + case 2026: + if (lookahead == 't') ADVANCE(911); END_STATE(); - case 473: - if (lookahead == '_') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + case 2027: + if (lookahead == 't') ADVANCE(964); END_STATE(); - case 474: - if (lookahead == '_') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + case 2028: + if (lookahead == 't') ADVANCE(986); END_STATE(); - case 475: - if (lookahead == '_') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + case 2029: + if (lookahead == 't') ADVANCE(1182); END_STATE(); - case 476: - if (lookahead == '_') ADVANCE(477); - if (lookahead == '+' || - lookahead == '-') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + case 2030: + if (lookahead == 't') ADVANCE(714); END_STATE(); - case 477: - if (lookahead == '_') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + case 2031: + if (lookahead == 't') ADVANCE(1113); END_STATE(); - case 478: - if (lookahead == '_') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + case 2032: + if (lookahead == 't') ADVANCE(462); END_STATE(); - case 479: - if (lookahead == '_') ADVANCE(481); - if (lookahead == 'o') ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 2033: + if (lookahead == 't') ADVANCE(1356); END_STATE(); - case 480: - if (lookahead == '_') ADVANCE(481); - if (lookahead == '+' || - lookahead == '-') ADVANCE(481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 2034: + if (lookahead == 't') ADVANCE(449); END_STATE(); - case 481: - if (lookahead == '_') ADVANCE(481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + case 2035: + if (lookahead == 't') ADVANCE(1235); END_STATE(); - case 482: - if (lookahead == '_') ADVANCE(482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + case 2036: + if (lookahead == 't') ADVANCE(719); END_STATE(); - case 483: - if (lookahead == '_') ADVANCE(484); - if (lookahead == '+' || - lookahead == '-') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + case 2037: + if (lookahead == 't') ADVANCE(996); END_STATE(); - case 484: - if (lookahead == '_') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + case 2038: + if (lookahead == 't') ADVANCE(973); END_STATE(); - case 485: - if (lookahead == '`') ADVANCE(2788); - if (lookahead != 0) ADVANCE(485); + case 2039: + if (lookahead == 't') ADVANCE(720); END_STATE(); - case 486: - if (lookahead == 'a') ADVANCE(543); - if (lookahead == 'o') ADVANCE(506); + case 2040: + if (lookahead == 't') ADVANCE(1006); END_STATE(); - case 487: - if (lookahead == 'a') ADVANCE(640); + case 2041: + if (lookahead == 't') ADVANCE(983); END_STATE(); - case 488: - if (lookahead == 'a') ADVANCE(551); + case 2042: + if (lookahead == 't') ADVANCE(1157); END_STATE(); - case 489: - if (lookahead == 'a') ADVANCE(593); + case 2043: + if (lookahead == 't') ADVANCE(1011); END_STATE(); - case 490: - if (lookahead == 'a') ADVANCE(599); + case 2044: + if (lookahead == 't') ADVANCE(1159); END_STATE(); - case 491: - if (lookahead == 'a') ADVANCE(625); + case 2045: + if (lookahead == 't') ADVANCE(1607); END_STATE(); - case 492: - if (lookahead == 'a') ADVANCE(622); + case 2046: + if (lookahead == 't') ADVANCE(600); END_STATE(); - case 493: - if (lookahead == 'a') ADVANCE(628); + case 2047: + if (lookahead == 't') ADVANCE(1013); END_STATE(); - case 494: - if (lookahead == 'a') ADVANCE(624); + case 2048: + if (lookahead == 't') ADVANCE(1017); END_STATE(); - case 495: - if (lookahead == 'a') ADVANCE(561); - if (lookahead == 'o') ADVANCE(584); - if (lookahead == 's') ADVANCE(530); - if (lookahead == 'x') ADVANCE(573); + case 2049: + if (lookahead == 't') ADVANCE(613); END_STATE(); - case 496: - if (lookahead == 'a') ADVANCE(609); + case 2050: + if (lookahead == 't') ADVANCE(2183); END_STATE(); - case 497: - if (lookahead == 'b') ADVANCE(2731); + case 2051: + if (lookahead == 't') ADVANCE(1203); END_STATE(); - case 498: - if (lookahead == 'c') ADVANCE(2738); + case 2052: + if (lookahead == 't') ADVANCE(1773); END_STATE(); - case 499: - if (lookahead == 'c') ADVANCE(531); + case 2053: + if (lookahead == 't') ADVANCE(455); END_STATE(); - case 500: - if (lookahead == 'c') ADVANCE(532); + case 2054: + if (lookahead == 't') ADVANCE(1181); END_STATE(); - case 501: - if (lookahead == 'c') ADVANCE(521); + case 2055: + if (lookahead == 't') ADVANCE(1200); END_STATE(); - case 502: - if (lookahead == 'd') ADVANCE(2478); + case 2056: + if (lookahead == 't') ADVANCE(1209); END_STATE(); - case 503: - if (lookahead == 'd') ADVANCE(2534); + case 2057: + if (lookahead == 't') ADVANCE(2043); END_STATE(); - case 504: - if (lookahead == 'd') ADVANCE(602); + case 2058: + if (lookahead == 't') ADVANCE(2048); END_STATE(); - case 505: - if (lookahead == 'd') ADVANCE(2516); + case 2059: + if (lookahead == 't') ADVANCE(1220); END_STATE(); - case 506: - if (lookahead == 'd') ADVANCE(633); + case 2060: + if (lookahead == 't') ADVANCE(459); END_STATE(); - case 507: - if (lookahead == 'e') ADVANCE(2632); + case 2061: + if (lookahead == 't') ADVANCE(475); END_STATE(); - case 508: - if (lookahead == 'e') ADVANCE(2640); + case 2062: + if (lookahead == 't') ADVANCE(1904); END_STATE(); - case 509: - if (lookahead == 'e') ADVANCE(526); - if (lookahead == 'o') ADVANCE(2393); + case 2063: + if (lookahead == 't') ADVANCE(1905); END_STATE(); - case 510: - if (lookahead == 'e') ADVANCE(2291); + case 2064: + if (lookahead == 't') ADVANCE(1907); END_STATE(); - case 511: - if (lookahead == 'e') ADVANCE(2384); + case 2065: + if (lookahead == 't') ADVANCE(679); END_STATE(); - case 512: - if (lookahead == 'e') ADVANCE(2286); + case 2066: + if (lookahead == 'u') ADVANCE(5079); END_STATE(); - case 513: - if (lookahead == 'e') ADVANCE(2404); + case 2067: + if (lookahead == 'u') ADVANCE(4753); END_STATE(); - case 514: - if (lookahead == 'e') ADVANCE(2321); + case 2068: + if (lookahead == 'u') ADVANCE(673); END_STATE(); - case 515: - if (lookahead == 'e') ADVANCE(498); - if (lookahead == 't') ADVANCE(489); + case 2069: + if (lookahead == 'u') ADVANCE(4951); END_STATE(); - case 516: - if (lookahead == 'e') ADVANCE(460); + case 2070: + if (lookahead == 'u') ADVANCE(2196); + if (lookahead == 'x') ADVANCE(2248); + if (lookahead != 0) ADVANCE(4709); END_STATE(); - case 517: - if (lookahead == 'e') ADVANCE(595); + case 2071: + if (lookahead == 'u') ADVANCE(1145); END_STATE(); - case 518: - if (lookahead == 'e') ADVANCE(465); + case 2072: + if (lookahead == 'u') ADVANCE(1380); END_STATE(); - case 519: - if (lookahead == 'e') ADVANCE(592); + case 2073: + if (lookahead == 'u') ADVANCE(726); END_STATE(); - case 520: - if (lookahead == 'e') ADVANCE(594); + case 2074: + if (lookahead == 'u') ADVANCE(1146); END_STATE(); - case 521: - if (lookahead == 'e') ADVANCE(549); + case 2075: + if (lookahead == 'u') ADVANCE(1764); END_STATE(); - case 522: - if (lookahead == 'e') ADVANCE(597); + case 2076: + if (lookahead == 'u') ADVANCE(1646); END_STATE(); - case 523: - if (lookahead == 'f') ADVANCE(2398); + case 2077: + if (lookahead == 'u') ADVANCE(1652); END_STATE(); - case 524: - if (lookahead == 'f') ADVANCE(2398); - if (lookahead == 'n') ADVANCE(2371); + case 2078: + if (lookahead == 'u') ADVANCE(843); END_STATE(); - case 525: - if (lookahead == 'f') ADVANCE(2398); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(659); + case 2079: + if (lookahead == 'u') ADVANCE(1697); END_STATE(); - case 526: - if (lookahead == 'f') ADVANCE(2273); + case 2080: + if (lookahead == 'u') ADVANCE(1315); END_STATE(); - case 527: - if (lookahead == 'f') ADVANCE(2320); + case 2081: + if (lookahead == 'u') ADVANCE(1027); END_STATE(); - case 528: - if (lookahead == 'h') ADVANCE(2488); + case 2082: + if (lookahead == 'u') ADVANCE(881); END_STATE(); - case 529: - if (lookahead == 'h') ADVANCE(2486); + case 2083: + if (lookahead == 'u') ADVANCE(1977); END_STATE(); - case 530: - if (lookahead == 'h') ADVANCE(544); + case 2084: + if (lookahead == 'u') ADVANCE(1982); END_STATE(); - case 531: - if (lookahead == 'h') ADVANCE(2409); + case 2085: + if (lookahead == 'u') ADVANCE(895); END_STATE(); - case 532: - if (lookahead == 'h') ADVANCE(2432); + case 2086: + if (lookahead == 'u') ADVANCE(896); END_STATE(); - case 533: - if (lookahead == 'h') ADVANCE(2312); + case 2087: + if (lookahead == 'u') ADVANCE(897); END_STATE(); - case 534: - if (lookahead == 'h') ADVANCE(2318); + case 2088: + if (lookahead == 'u') ADVANCE(904); END_STATE(); - case 535: - if (lookahead == 'h') ADVANCE(434); + case 2089: + if (lookahead == 'u') ADVANCE(909); END_STATE(); - case 536: - if (lookahead == 'i') ADVANCE(608); + case 2090: + if (lookahead == 'u') ADVANCE(915); END_STATE(); - case 537: - if (lookahead == 'i') ADVANCE(552); + case 2091: + if (lookahead == 'u') ADVANCE(915); + if (lookahead == 'y') ADVANCE(4334); END_STATE(); - case 538: - if (lookahead == 'i') ADVANCE(490); + case 2092: + if (lookahead == 'u') ADVANCE(2197); + if (lookahead == 'x') ADVANCE(2249); + if (lookahead != 0) ADVANCE(4697); END_STATE(); - case 539: - if (lookahead == 'i') ADVANCE(615); + case 2093: + if (lookahead == 'u') ADVANCE(1474); + if (lookahead == 'w') ADVANCE(1125); END_STATE(); - case 540: - if (lookahead == 'i') ADVANCE(617); + case 2094: + if (lookahead == 'u') ADVANCE(1553); END_STATE(); - case 541: - if (lookahead == 'i') ADVANCE(620); + case 2095: + if (lookahead == 'u') ADVANCE(1381); END_STATE(); - case 542: - if (lookahead == 'k') ADVANCE(2738); + case 2096: + if (lookahead == 'u') ADVANCE(1479); END_STATE(); - case 543: - if (lookahead == 'k') ADVANCE(511); - if (lookahead == 't') ADVANCE(499); + case 2097: + if (lookahead == 'u') ADVANCE(955); END_STATE(); - case 544: - if (lookahead == 'l') ADVANCE(2530); - if (lookahead == 'r') ADVANCE(2532); + case 2098: + if (lookahead == 'u') ADVANCE(1394); END_STATE(); - case 545: - if (lookahead == 'l') ADVANCE(2624); + case 2099: + if (lookahead == 'u') ADVANCE(1399); END_STATE(); - case 546: - if (lookahead == 'l') ADVANCE(538); + case 2100: + if (lookahead == 'u') ADVANCE(1565); END_STATE(); - case 547: - if (lookahead == 'l') ADVANCE(545); + case 2101: + if (lookahead == 'u') ADVANCE(1382); END_STATE(); - case 548: - if (lookahead == 'l') ADVANCE(438); + case 2102: + if (lookahead == 'u') ADVANCE(1465); END_STATE(); - case 549: - if (lookahead == 'l') ADVANCE(548); + case 2103: + if (lookahead == 'u') ADVANCE(1154); END_STATE(); - case 550: - if (lookahead == 'l') ADVANCE(512); + case 2104: + if (lookahead == 'u') ADVANCE(1320); END_STATE(); - case 551: - if (lookahead == 'l') ADVANCE(603); + case 2105: + if (lookahead == 'u') ADVANCE(1743); END_STATE(); - case 552: - if (lookahead == 'n') ADVANCE(2484); + case 2106: + if (lookahead == 'u') ADVANCE(985); END_STATE(); - case 553: - if (lookahead == 'n') ADVANCE(2738); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + case 2107: + if (lookahead == 'u') ADVANCE(1304); END_STATE(); - case 554: - if (lookahead == 'n') ADVANCE(502); + case 2108: + if (lookahead == 'u') ADVANCE(1498); END_STATE(); - case 555: - if (lookahead == 'n') ADVANCE(502); - if (lookahead == 's') ADVANCE(2464); + case 2109: + if (lookahead == 'u') ADVANCE(988); END_STATE(); - case 556: - if (lookahead == 'n') ADVANCE(2371); + case 2110: + if (lookahead == 'u') ADVANCE(1306); END_STATE(); - case 557: - if (lookahead == 'n') ADVANCE(2281); + case 2111: + if (lookahead == 'u') ADVANCE(1309); END_STATE(); - case 558: - if (lookahead == 'n') ADVANCE(2319); + case 2112: + if (lookahead == 'u') ADVANCE(1311); END_STATE(); - case 559: - if (lookahead == 'n') ADVANCE(504); + case 2113: + if (lookahead == 'u') ADVANCE(972); END_STATE(); - case 560: - if (lookahead == 'n') ADVANCE(605); + case 2114: + if (lookahead == 'u') ADVANCE(2026); END_STATE(); - case 561: - if (lookahead == 'n') ADVANCE(503); + case 2115: + if (lookahead == 'u') ADVANCE(974); END_STATE(); - case 562: - if (lookahead == 'o') ADVANCE(634); + case 2116: + if (lookahead == 'u') ADVANCE(1319); END_STATE(); - case 563: - if (lookahead == 'o') ADVANCE(2393); + case 2117: + if (lookahead == 'u') ADVANCE(1665); END_STATE(); - case 564: - if (lookahead == 'o') ADVANCE(459); + case 2118: + if (lookahead == 'u') ADVANCE(1516); + if (lookahead == 'w') ADVANCE(1126); END_STATE(); - case 565: - if (lookahead == 'o') ADVANCE(583); + case 2119: + if (lookahead == 'u') ADVANCE(1779); END_STATE(); - case 566: - if (lookahead == 'o') ADVANCE(527); + case 2120: + if (lookahead == 'u') ADVANCE(1341); END_STATE(); - case 567: - if (lookahead == 'o') ADVANCE(578); + case 2121: + if (lookahead == 'u') ADVANCE(1676); END_STATE(); - case 568: - if (lookahead == 'o') ADVANCE(613); + case 2122: + if (lookahead == 'v') ADVANCE(5091); END_STATE(); - case 569: - if (lookahead == 'o') ADVANCE(613); - if (lookahead == 's') ADVANCE(2738); + case 2123: + if (lookahead == 'v') ADVANCE(5104); END_STATE(); - case 570: - if (lookahead == 'o') ADVANCE(505); + case 2124: + if (lookahead == 'v') ADVANCE(4790); END_STATE(); - case 571: - if (lookahead == 'o') ADVANCE(560); + case 2125: + if (lookahead == 'v') ADVANCE(4803); END_STATE(); - case 572: - if (lookahead == 'o') ADVANCE(464); + case 2126: + if (lookahead == 'v') ADVANCE(4805); END_STATE(); - case 573: - if (lookahead == 'o') ADVANCE(585); + case 2127: + if (lookahead == 'v') ADVANCE(4752); END_STATE(); - case 574: - if (lookahead == 'o') ADVANCE(610); - if (lookahead == 'u') ADVANCE(547); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(664); + case 2128: + if (lookahead == 'v') ADVANCE(4875); END_STATE(); - case 575: - if (lookahead == 'o') ADVANCE(612); + case 2129: + if (lookahead == 'v') ADVANCE(863); END_STATE(); - case 576: - if (lookahead == 'o') ADVANCE(635); + case 2130: + if (lookahead == 'v') ADVANCE(994); END_STATE(); - case 577: - if (lookahead == 'p') ADVANCE(514); + case 2131: + if (lookahead == 'v') ADVANCE(910); END_STATE(); - case 578: - if (lookahead == 'p') ADVANCE(621); + case 2132: + if (lookahead == 'v') ADVANCE(1585); END_STATE(); - case 579: - if (lookahead == 'p') ADVANCE(492); + case 2133: + if (lookahead == 'v') ADVANCE(1587); END_STATE(); - case 580: - if (lookahead == 'p') ADVANCE(493); + case 2134: + if (lookahead == 'w') ADVANCE(4774); END_STATE(); - case 581: - if (lookahead == 'p') ADVANCE(494); + case 2135: + if (lookahead == 'w') ADVANCE(4758); END_STATE(); - case 582: - if (lookahead == 'r') ADVANCE(2482); + case 2136: + if (lookahead == 'w') ADVANCE(4777); END_STATE(); - case 583: - if (lookahead == 'r') ADVANCE(2480); + case 2137: + if (lookahead == 'w') ADVANCE(5039); END_STATE(); - case 584: - if (lookahead == 'r') ADVANCE(2538); + case 2138: + if (lookahead == 'w') ADVANCE(1124); END_STATE(); - case 585: - if (lookahead == 'r') ADVANCE(2536); + case 2139: + if (lookahead == 'w') ADVANCE(1422); END_STATE(); - case 586: - if (lookahead == 'r') ADVANCE(2738); + case 2140: + if (lookahead == 'w') ADVANCE(1197); END_STATE(); - case 587: - if (lookahead == 'r') ADVANCE(421); + case 2141: + if (lookahead == 'w') ADVANCE(1523); END_STATE(); - case 588: - if (lookahead == 'r') ADVANCE(632); + case 2142: + if (lookahead == 'w') ADVANCE(1225); END_STATE(); - case 589: - if (lookahead == 'r') ADVANCE(427); + case 2143: + if (lookahead == 'w') ADVANCE(965); END_STATE(); - case 590: - if (lookahead == 'r') ADVANCE(631); + case 2144: + if (lookahead == 'w') ADVANCE(1206); END_STATE(); - case 591: - if (lookahead == 'r') ADVANCE(462); + case 2145: + if (lookahead == 'w') ADVANCE(1208); END_STATE(); - case 592: - if (lookahead == 'r') ADVANCE(557); + case 2146: + if (lookahead == 'w') ADVANCE(1213); END_STATE(); - case 593: - if (lookahead == 'r') ADVANCE(629); + case 2147: + if (lookahead == 'w') ADVANCE(1217); END_STATE(); - case 594: - if (lookahead == 'r') ADVANCE(558); + case 2148: + if (lookahead == 'w') ADVANCE(1219); END_STATE(); - case 595: - if (lookahead == 'r') ADVANCE(591); + case 2149: + if (lookahead == 'w') ADVANCE(1221); END_STATE(); - case 596: - if (lookahead == 'r') ADVANCE(467); + case 2150: + if (lookahead == 'w') ADVANCE(1223); END_STATE(); - case 597: - if (lookahead == 'r') ADVANCE(596); + case 2151: + if (lookahead == 'w') ADVANCE(1224); END_STATE(); - case 598: - if (lookahead == 's') ADVANCE(2738); + case 2152: + if (lookahead == 'x') ADVANCE(4866); END_STATE(); - case 599: - if (lookahead == 's') ADVANCE(834); + case 2153: + if (lookahead == 'x') ADVANCE(4808); END_STATE(); - case 600: - if (lookahead == 's') ADVANCE(2464); + case 2154: + if (lookahead == 'x') ADVANCE(4767); END_STATE(); - case 601: - if (lookahead == 's') ADVANCE(510); + case 2155: + if (lookahead == 'x') ADVANCE(4782); END_STATE(); - case 602: - if (lookahead == 's') ADVANCE(431); + case 2156: + if (lookahead == 'x') ADVANCE(4962); END_STATE(); - case 603: - if (lookahead == 's') ADVANCE(508); + case 2157: + if (lookahead == 'x') ADVANCE(4900); END_STATE(); - case 604: - if (lookahead == 's') ADVANCE(513); + case 2158: + if (lookahead == 'x') ADVANCE(4765); END_STATE(); - case 605: - if (lookahead == 's') ADVANCE(611); + case 2159: + if (lookahead == 'x') ADVANCE(4780); END_STATE(); - case 606: - if (lookahead == 's') ADVANCE(437); + case 2160: + if (lookahead == 'x') ADVANCE(4984); END_STATE(); - case 607: - if (lookahead == 't') ADVANCE(489); + case 2161: + if (lookahead == 'x') ADVANCE(1210); END_STATE(); - case 608: - if (lookahead == 't') ADVANCE(430); + case 2162: + if (lookahead == 'x') ADVANCE(1913); END_STATE(); - case 609: - if (lookahead == 't') ADVANCE(499); + case 2163: + if (lookahead == 'x') ADVANCE(1632); END_STATE(); - case 610: - if (lookahead == 't') ADVANCE(675); + case 2164: + if (lookahead == 'x') ADVANCE(1663); END_STATE(); - case 611: - if (lookahead == 't') ADVANCE(853); + case 2165: + if (lookahead == 'x') ADVANCE(1640); END_STATE(); - case 612: - if (lookahead == 't') ADVANCE(433); + case 2166: + if (lookahead == 'x') ADVANCE(444); END_STATE(); - case 613: - if (lookahead == 't') ADVANCE(432); + case 2167: + if (lookahead == 'x') ADVANCE(1671); END_STATE(); - case 614: - if (lookahead == 't') ADVANCE(415); + case 2168: + if (lookahead == 'y') ADVANCE(5088); END_STATE(); - case 615: - if (lookahead == 't') ADVANCE(528); + case 2169: + if (lookahead == 'y') ADVANCE(4833); END_STATE(); - case 616: - if (lookahead == 't') ADVANCE(641); + case 2170: + if (lookahead == 'y') ADVANCE(4973); END_STATE(); - case 617: - if (lookahead == 't') ADVANCE(529); + case 2171: + if (lookahead == 'y') ADVANCE(5014); END_STATE(); - case 618: - if (lookahead == 't') ADVANCE(461); + case 2172: + if (lookahead == 'y') ADVANCE(4936); END_STATE(); - case 619: - if (lookahead == 't') ADVANCE(428); + case 2173: + if (lookahead == 'y') ADVANCE(4988); END_STATE(); - case 620: - if (lookahead == 't') ADVANCE(535); + case 2174: + if (lookahead == 'y') ADVANCE(4998); END_STATE(); - case 621: - if (lookahead == 't') ADVANCE(435); + case 2175: + if (lookahead == 'y') ADVANCE(5070); END_STATE(); - case 622: - if (lookahead == 't') ADVANCE(533); + case 2176: + if (lookahead == 'y') ADVANCE(4946); END_STATE(); - case 623: - if (lookahead == 't') ADVANCE(466); + case 2177: + if (lookahead == 'y') ADVANCE(5110); END_STATE(); - case 624: - if (lookahead == 't') ADVANCE(534); + case 2178: + if (lookahead == 'y') ADVANCE(5115); END_STATE(); - case 625: - if (lookahead == 't') ADVANCE(500); + case 2179: + if (lookahead == 'y') ADVANCE(4950); END_STATE(); - case 626: - if (lookahead == 't') ADVANCE(519); + case 2180: + if (lookahead == 'y') ADVANCE(4944); END_STATE(); - case 627: - if (lookahead == 't') ADVANCE(520); + case 2181: + if (lookahead == 'y') ADVANCE(4645); END_STATE(); - case 628: - if (lookahead == 't') ADVANCE(627); + case 2182: + if (lookahead == 'y') ADVANCE(1649); END_STATE(); - case 629: - if (lookahead == 't') ADVANCE(606); + case 2183: + if (lookahead == 'y') ADVANCE(1654); END_STATE(); - case 630: - if (lookahead == 'u') ADVANCE(642); - if (lookahead == 'x') ADVANCE(694); - if (lookahead != 0) ADVANCE(2802); + case 2184: + if (lookahead == 'z') ADVANCE(486); END_STATE(); - case 631: - if (lookahead == 'u') ADVANCE(507); + case 2185: + if (lookahead == 'z') ADVANCE(5092); END_STATE(); - case 632: - if (lookahead == 'u') ADVANCE(507); - if (lookahead == 'y') ADVANCE(2427); + case 2186: + if (lookahead == 'z') ADVANCE(4792); END_STATE(); - case 633: - if (lookahead == 'u') ADVANCE(550); + case 2187: + if (lookahead == 'z') ADVANCE(487); END_STATE(); - case 634: - if (lookahead == 'u') ADVANCE(618); + case 2188: + if (lookahead == 'z') ADVANCE(2179); END_STATE(); - case 635: - if (lookahead == 'u') ADVANCE(623); + case 2189: + if (lookahead == 'z') ADVANCE(839); END_STATE(); - case 636: - if (lookahead == 'u') ADVANCE(643); - if (lookahead == 'x') ADVANCE(695); - if (lookahead != 0) ADVANCE(2790); + case 2190: + if (lookahead == 'z') ADVANCE(872); END_STATE(); - case 637: - if (lookahead == 'w') ADVANCE(539); + case 2191: + if (lookahead == 'z') ADVANCE(876); END_STATE(); - case 638: - if (lookahead == 'w') ADVANCE(540); + case 2192: + if (lookahead == 'z') ADVANCE(890); END_STATE(); - case 639: - if (lookahead == 'w') ADVANCE(541); + case 2193: + if (lookahead == 'z') ADVANCE(894); END_STATE(); - case 640: - if (lookahead == 'y') ADVANCE(2738); + case 2194: + if (lookahead == 'z') ADVANCE(1601); END_STATE(); - case 641: - if (lookahead == 'y') ADVANCE(577); + case 2195: + if (lookahead == 'z') ADVANCE(1604); END_STATE(); - case 642: - if (lookahead == '{') ADVANCE(691); + case 2196: + if (lookahead == '{') ADVANCE(2245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(689); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2243); END_STATE(); - case 643: - if (lookahead == '{') ADVANCE(693); + case 2197: + if (lookahead == '{') ADVANCE(2247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2250); END_STATE(); - case 644: - if (lookahead == '|') ADVANCE(2267); + case 2198: + if (lookahead == '|') ADVANCE(4174); END_STATE(); - case 645: - if (lookahead == '|') ADVANCE(2268); + case 2199: + if (lookahead == '|') ADVANCE(4175); END_STATE(); - case 646: - if (lookahead == '|') ADVANCE(2272); + case 2200: + if (lookahead == '|') ADVANCE(4179); END_STATE(); - case 647: - if (lookahead == '|') ADVANCE(2265); + case 2201: + if (lookahead == '|') ADVANCE(4172); END_STATE(); - case 648: - if (lookahead == '|') ADVANCE(2271); + case 2202: + if (lookahead == '|') ADVANCE(4178); END_STATE(); - case 649: - if (lookahead == '|') ADVANCE(2266); + case 2203: + if (lookahead == '|') ADVANCE(4173); END_STATE(); - case 650: - if (lookahead == '|') ADVANCE(2269); + case 2204: + if (lookahead == '|') ADVANCE(4176); END_STATE(); - case 651: - if (lookahead == '|') ADVANCE(2270); + case 2205: + if (lookahead == '|') ADVANCE(4177); END_STATE(); - case 652: - if (lookahead == '}') ADVANCE(2802); + case 2206: + if (lookahead == '}') ADVANCE(4709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2206); END_STATE(); - case 653: - if (lookahead == '}') ADVANCE(2790); + case 2207: + if (lookahead == '}') ADVANCE(4697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(653); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2207); END_STATE(); - case 654: + case 2208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(664); + lookahead == 'a') ADVANCE(2218); END_STATE(); - case 655: + case 2209: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); END_STATE(); - case 656: + case 2210: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2716); + lookahead == 'f') ADVANCE(4623); END_STATE(); - case 657: + case 2211: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2717); + lookahead == 'f') ADVANCE(4624); END_STATE(); - case 658: + case 2212: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(660); + lookahead == 'f') ADVANCE(2214); END_STATE(); - case 659: + case 2213: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2713); + lookahead == 'f') ADVANCE(4620); END_STATE(); - case 660: + case 2214: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 'i') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 661: + case 2215: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(670); + lookahead == 'i') ADVANCE(2224); END_STATE(); - case 662: + case 2216: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(671); + lookahead == 'i') ADVANCE(2225); END_STATE(); - case 663: + case 2217: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(656); + lookahead == 'n') ADVANCE(2210); END_STATE(); - case 664: + case 2218: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); + lookahead == 'n') ADVANCE(4629); END_STATE(); - case 665: + case 2219: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(661); + lookahead == 'n') ADVANCE(2215); END_STATE(); - case 666: + case 2220: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(657); + lookahead == 'n') ADVANCE(2211); END_STATE(); - case 667: + case 2221: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(659); + lookahead == 'n') ADVANCE(2213); END_STATE(); - case 668: + case 2222: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(658); + lookahead == 'n') ADVANCE(2212); END_STATE(); - case 669: + case 2223: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(662); + lookahead == 'n') ADVANCE(2216); END_STATE(); - case 670: + case 2224: if (lookahead == 'T' || - lookahead == 't') ADVANCE(673); + lookahead == 't') ADVANCE(2227); END_STATE(); - case 671: + case 2225: if (lookahead == 'T' || - lookahead == 't') ADVANCE(672); + lookahead == 't') ADVANCE(2226); END_STATE(); - case 672: + case 2226: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); + lookahead == 'y') ADVANCE(4611); END_STATE(); - case 673: + case 2227: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2714); + lookahead == 'y') ADVANCE(4621); END_STATE(); - case 674: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2760); + case 2228: + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4667); END_STATE(); - case 675: + case 2229: if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - END_STATE(); - case 676: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(452); + lookahead == ' ') ADVANCE(4412); END_STATE(); - case 677: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); + case 2230: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(502); END_STATE(); - case 678: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + case 2231: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4662); END_STATE(); - case 679: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2772); + case 2232: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4661); END_STATE(); - case 680: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2760); + case 2233: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); END_STATE(); - case 681: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + case 2234: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); END_STATE(); - case 682: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + case 2235: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2230); END_STATE(); - case 683: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2771); + case 2236: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2231); END_STATE(); - case 684: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(436); + case 2237: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4678); END_STATE(); - case 685: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(684); + case 2238: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2240); END_STATE(); - case 686: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(683); + case 2239: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); END_STATE(); - case 687: + case 2240: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(451); END_STATE(); - case 688: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(687); + case 2241: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(501); END_STATE(); - case 689: + case 2242: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2241); + END_STATE(); + case 2243: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(694); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2248); END_STATE(); - case 690: + case 2244: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2802); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4709); END_STATE(); - case 691: + case 2245: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2206); END_STATE(); - case 692: + case 2246: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2790); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4697); END_STATE(); - case 693: + case 2247: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(653); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2207); END_STATE(); - case 694: + case 2248: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(690); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2244); END_STATE(); - case 695: + case 2249: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(692); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2246); END_STATE(); - case 696: + case 2250: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(695); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2249); END_STATE(); - case 697: - if (eof) ADVANCE(825); + case 2251: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '[', 2752, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3054, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3052, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5354, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5352, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(714); + lookahead == ' ') SKIP(2268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(5546); END_STATE(); - case 698: - if (eof) ADVANCE(825); + case 2252: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3058, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3066, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5358, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5366, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 699: - if (eof) ADVANCE(825); + case 2253: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3054, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3052, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '[', 4659, + '_', 5406, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5354, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5352, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == ' ') SKIP(2268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3246); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(5546); END_STATE(); - case 700: - if (eof) ADVANCE(825); + case 2254: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3058, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3066, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5358, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5366, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 701: - if (eof) ADVANCE(825); + case 2255: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3054, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3052, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5354, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5352, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(714); + lookahead == ' ') SKIP(2268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(5546); END_STATE(); - case 702: - if (eof) ADVANCE(825); + case 2256: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3058, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3066, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5358, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5366, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 703: - if (eof) ADVANCE(825); + case 2257: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3048, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3052, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5348, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5352, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(714); + lookahead == ' ') SKIP(2268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(5546); END_STATE(); - case 704: - if (eof) ADVANCE(825); + case 2258: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 3079, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'B', 2731, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'b', 2734, - 'd', 3121, - 'e', 3062, - 'g', 3102, - 'h', 3172, - 'i', 3153, - 'k', 3102, - 'm', 3104, - 'n', 3160, - 'o', 3066, - 'p', 3102, - 's', 3132, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 5379, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'B', 4638, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'b', 4640, + 'd', 5421, + 'e', 5362, + 'g', 5402, + 'h', 5472, + 'i', 5453, + 'k', 5402, + 'm', 5404, + 'n', 5460, + 'o', 5366, + 'p', 5402, + 's', 5432, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 705: - if (eof) ADVANCE(825); + case 2259: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'a', 3154, - 'b', 3142, - 'e', 3050, - 'i', 3153, - 'm', 3159, - 'n', 3161, - 'o', 3052, - 's', 3191, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'a', 5454, + 'b', 5442, + 'e', 5350, + 'i', 5453, + 'm', 5459, + 'n', 5461, + 'o', 5352, + 's', 5491, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 706: - if (eof) ADVANCE(825); + case 2260: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3085, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 3087, - '>', 2323, - 'a', 3154, - 'b', 3142, - 'e', 3064, - 'i', 3153, - 'm', 3159, - 'n', 3161, - 'o', 3066, - 's', 3191, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 5385, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 5387, + '>', 4230, + 'a', 5454, + 'b', 5442, + 'e', 5364, + 'i', 5453, + 'm', 5459, + 'n', 5461, + 'o', 5366, + 's', 5491, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 707: - if (eof) ADVANCE(825); + case 2261: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3284, - '#', 4075, - '(', 2506, - ')', 2303, - '*', 2475, - '+', 2524, - '-', 2357, - '/', 2514, - ';', 2263, - '<', 2496, - '=', 3286, - '>', 2324, - 'a', 3373, - 'b', 3356, - 'e', 3256, - 'i', 3374, - 'm', 3386, - 'n', 3389, - 'o', 3258, - 's', 3429, - 'x', 3388, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 5584, + '#', 6375, + '(', 4413, + ')', 4210, + '*', 4382, + '+', 4431, + '-', 4264, + '/', 4421, + ';', 4170, + '<', 4403, + '=', 5586, + '>', 4231, + 'a', 5673, + 'b', 5656, + 'e', 5556, + 'i', 5674, + 'm', 5686, + 'n', 5689, + 'o', 5558, + 's', 5729, + 'x', 5688, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == ' ') SKIP(2269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 708: - if (eof) ADVANCE(825); + case 2262: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 3284, - '#', 4075, - '(', 2506, - ')', 2303, - '*', 2475, - '+', 2524, - '-', 2357, - '/', 2514, - ';', 2263, - '<', 2496, - '=', 3286, - '>', 2324, - 'a', 3373, - 'b', 3356, - 'e', 3262, - 'i', 3374, - 'm', 3386, - 'n', 3389, - 'o', 3264, - 's', 3429, - 'x', 3388, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 5584, + '#', 6375, + '(', 4413, + ')', 4210, + '*', 4382, + '+', 4431, + '-', 4264, + '/', 4421, + ';', 4170, + '<', 4403, + '=', 5586, + '>', 4231, + 'a', 5673, + 'b', 5656, + 'e', 5562, + 'i', 5674, + 'm', 5686, + 'n', 5689, + 'o', 5564, + 's', 5729, + 'x', 5688, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == ' ') SKIP(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 709: - if (eof) ADVANCE(825); + case 2263: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2559, - '/', 2512, - ':', 2297, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'B', 2731, - 'E', 470, - 'G', 470, - 'K', 470, - 'M', 470, - 'P', 470, - 'T', 470, - '[', 2300, - 'a', 554, - 'b', 2733, - 'c', 491, - 'd', 487, - 'e', 416, - 'g', 469, - 'h', 586, - 'i', 524, - 'k', 469, - 'm', 471, - 'n', 569, - 'o', 412, - 'p', 469, - 's', 515, - 't', 469, - 'u', 598, - 'w', 542, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 598, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4466, + '/', 4419, + ':', 4204, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'B', 4638, + 'E', 521, + 'G', 521, + 'K', 521, + 'M', 521, + 'P', 521, + 'T', 521, + '[', 4207, + 'a', 1481, + 'b', 4641, + 'c', 621, + 'd', 571, + 'e', 413, + 'g', 519, + 'h', 1706, + 'i', 1051, + 'k', 519, + 'm', 520, + 'n', 1590, + 'o', 422, + 'p', 519, + 's', 949, + 't', 519, + 'u', 1829, + 'w', 1244, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 1829, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(712); + lookahead == ' ') SKIP(2266); END_STATE(); - case 710: - if (eof) ADVANCE(825); + case 2264: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '(', 2506, - ')', 2303, - '*', 2474, - '+', 2523, - '-', 2356, - '.', 2559, - '/', 2513, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'E', 480, - '_', 478, - 'a', 554, - 'b', 536, - 'e', 414, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '(', 4413, + ')', 4210, + '*', 4381, + '+', 4430, + '-', 4263, + '.', 4466, + '/', 4420, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'E', 530, + '_', 528, + 'a', 1481, + 'b', 1171, + 'e', 412, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == ' ') SKIP(2273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 711: - if (eof) ADVANCE(825); + case 2265: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '.', 2545, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'E', 480, - '[', 2752, - '_', 478, - 'a', 554, - 'b', 536, - 'e', 414, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '.', 4452, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'E', 530, + '[', 4659, + '_', 528, + 'a', 1481, + 'b', 1171, + 'e', 412, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == ' ') SKIP(2267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 712: - if (eof) ADVANCE(825); + case 2266: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ':', 2297, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - '[', 2300, - 'a', 554, - 'b', 536, - 'c', 491, - 'e', 417, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ':', 4204, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + '[', 4207, + 'a', 1481, + 'b', 1171, + 'c', 621, + 'e', 414, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(712); + lookahead == ' ') SKIP(2266); END_STATE(); - case 713: - if (eof) ADVANCE(825); + case 2267: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); + lookahead == ' ') SKIP(2267); END_STATE(); - case 714: - if (eof) ADVANCE(825); + case 2268: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(714); + lookahead == ' ') SKIP(2268); END_STATE(); - case 715: - if (eof) ADVANCE(825); + case 2269: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(715); + lookahead == ' ') SKIP(2269); END_STATE(); - case 716: - if (eof) ADVANCE(825); + case 2270: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 422, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 425, - 's', 607, - 'x', 565, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 419, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 423, + 's', 2065, + 'x', 1580, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(716); + lookahead == ' ') SKIP(2270); END_STATE(); - case 717: - if (eof) ADVANCE(825); + case 2271: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2334, - '.', 2545, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'E', 480, - 'a', 555, - 'b', 536, - 'e', 414, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4241, + '.', 4452, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'E', 530, + 'a', 1482, + 'b', 1171, + 'e', 412, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(718); + lookahead == ' ') SKIP(2272); END_STATE(); - case 718: - if (eof) ADVANCE(825); + case 2272: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2473, - '+', 2521, - '-', 2334, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 455, - '>', 2323, - '?', 2476, - 'a', 555, - 'b', 536, - 'e', 419, - 'i', 524, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4380, + '+', 4428, + '-', 4241, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 505, + '>', 4230, + '?', 4383, + 'a', 1482, + 'b', 1171, + 'e', 416, + 'i', 1051, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(718); + lookahead == ' ') SKIP(2272); END_STATE(); - case 719: - if (eof) ADVANCE(825); + case 2273: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - ')', 2303, - '*', 2474, - '+', 2523, - '-', 2356, - '/', 2513, - ';', 2263, - '<', 2495, - '=', 840, - '>', 2323, - '?', 2476, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + ')', 4210, + '*', 4381, + '+', 4430, + '-', 4263, + '/', 4420, + ';', 4170, + '<', 4402, + '=', 2394, + '>', 4230, + '?', 4383, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(719); + lookahead == ' ') SKIP(2273); END_STATE(); - case 720: - if (eof) ADVANCE(825); + case 2274: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 419, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 412, - 's', 607, - 'x', 565, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 416, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 422, + 's', 2065, + 'x', 1580, + '|', 4171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); + lookahead == ' ') SKIP(2274); END_STATE(); - case 721: - if (eof) ADVANCE(825); + case 2275: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 454, - '#', 4069, - '*', 2473, - '+', 2521, - '-', 2333, - '/', 2512, - ';', 2263, - '<', 2495, - '=', 456, - '>', 2323, - 'a', 554, - 'b', 536, - 'e', 422, - 'i', 556, - 'm', 570, - 'n', 568, - 'o', 425, - 's', 607, - 'x', 565, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 504, + '#', 6369, + '*', 4380, + '+', 4428, + '-', 4240, + '/', 4419, + ';', 4170, + '<', 4402, + '=', 506, + '>', 4230, + 'a', 1481, + 'b', 1171, + 'e', 419, + 'i', 1452, + 'm', 1573, + 'n', 1589, + 'o', 423, + 's', 2065, + 'x', 1580, + '|', 4171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); + lookahead == ' ') SKIP(2275); END_STATE(); - case 722: - if (eof) ADVANCE(825); + case 2276: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4071, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1136, - 'b', 1178, - 'c', 1043, - 'd', 1069, - 'e', 1144, - 'f', 1046, - 'h', 1120, - 'i', 1040, - 'l', 1082, - 'm', 1048, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6371, + '$', 4213, + '\'', 410, + '(', 4209, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2836, + 'b', 2810, + 'c', 2696, + 'd', 2712, + 'e', 2683, + 'f', 2686, + 'h', 2701, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2688, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(722); + lookahead == ' ') SKIP(2276); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3002); END_STATE(); - case 723: - if (eof) ADVANCE(825); + case 2277: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 724: - if (eof) ADVANCE(825); + case 2278: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3080, - '-', 2338, - '.', 3076, - '0', 2588, - ';', 2263, - 'N', 3213, - '[', 2300, - '_', 3106, - '`', 485, - 'e', 3051, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5380, + '-', 4245, + '.', 5376, + '0', 4495, + ';', 4170, + 'N', 5513, + '[', 4207, + '_', 5406, + '`', 535, + 'e', 5351, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(768); + lookahead == ' ') SKIP(2322); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 725: - if (eof) ADVANCE(825); + case 2279: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3080, - '-', 2338, - '.', 2548, - '0', 2588, - ';', 2263, - 'N', 3213, - '[', 2300, - '_', 3106, - '`', 485, - 'e', 3051, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5380, + '-', 4245, + '.', 4455, + '0', 4495, + ';', 4170, + 'N', 5513, + '[', 4207, + '_', 5406, + '`', 535, + 'e', 5351, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(768); + lookahead == ' ') SKIP(2322); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 726: - if (eof) ADVANCE(825); + case 2280: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2588, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3106, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4495, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5406, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 727: - if (eof) ADVANCE(825); + case 2281: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2588, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3106, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4495, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5406, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 728: - if (eof) ADVANCE(825); + case 2282: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 729: - if (eof) ADVANCE(825); + case 2283: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3049, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5349, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 730: - if (eof) ADVANCE(825); + case 2284: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 731: - if (eof) ADVANCE(825); + case 2285: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3051, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5351, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 732: - if (eof) ADVANCE(825); + case 2286: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3077, - '0', 2588, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3106, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5377, + '0', 4495, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5406, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 733: - if (eof) ADVANCE(825); + case 2287: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3077, - '0', 2662, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5377, + '0', 4569, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 734: - if (eof) ADVANCE(825); + case 2288: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3077, - '0', 2662, - ';', 2263, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3051, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5377, + '0', 4569, + ';', 4170, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5351, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 735: - if (eof) ADVANCE(825); + case 2289: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 2563, - '0', 2662, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 4471, + '0', 4569, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 736: - if (eof) ADVANCE(825); + case 2290: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 2563, - '0', 2662, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 4471, + '0', 4569, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 737: - if (eof) ADVANCE(825); + case 2291: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 2552, - '0', 2662, - ';', 2263, - 'E', 3115, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3056, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 4461, + '0', 4569, + ';', 4170, + 'E', 5416, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5356, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 738: - if (eof) ADVANCE(825); + case 2292: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 2967, - '-', 2336, - '.', 2963, - '0', 2589, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2988, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5267, + '-', 4243, + '.', 5263, + '0', 4496, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5288, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(768); + lookahead == ' ') SKIP(2322); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4511); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 739: - if (eof) ADVANCE(825); + case 2293: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 2967, - '-', 2336, - '.', 2551, - '0', 2589, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2988, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5267, + '-', 4243, + '.', 4458, + '0', 4496, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5288, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(768); + lookahead == ' ') SKIP(2322); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4511); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 740: - if (eof) ADVANCE(825); + case 2294: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2631, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - '=', 458, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1136, - 'b', 1178, - 'c', 1043, - 'd', 1069, - 'e', 1144, - 'f', 1046, - 'h', 1120, - 'i', 1040, - 'l', 1082, - 'm', 1048, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4538, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + '=', 508, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2836, + 'b', 2810, + 'c', 2696, + 'd', 2712, + 'e', 2683, + 'f', 2686, + 'h', 2701, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2688, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(741); + lookahead == ' ') SKIP(2295); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(3002); END_STATE(); - case 741: - if (eof) ADVANCE(825); + case 2295: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - '=', 458, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1136, - 'b', 1178, - 'c', 1043, - 'd', 1069, - 'e', 1144, - 'f', 1046, - 'h', 1120, - 'i', 1040, - 'l', 1082, - 'm', 1048, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + '=', 508, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2836, + 'b', 2810, + 'c', 2696, + 'd', 2712, + 'e', 2683, + 'f', 2686, + 'h', 2701, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2688, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(741); + lookahead == ' ') SKIP(2295); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(3002); END_STATE(); - case 742: - if (eof) ADVANCE(825); + case 2296: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 1025, - '-', 2347, - '.', 1026, - '0', 2657, - ';', 2263, - 'I', 1244, - 'N', 1241, - '[', 2300, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1146, - 'b', 1178, - 'c', 1044, - 'd', 1083, - 'e', 868, - 'f', 1047, - 'h', 1124, - 'i', 1040, - 'l', 1092, - 'm', 1049, - 'n', 1162, - 'o', 869, - 'r', 1107, - 's', 1168, - 't', 1173, - 'u', 1209, - 'w', 1119, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 2665, + '-', 4254, + '.', 2666, + '0', 4564, + ';', 4170, + 'I', 2999, + 'N', 2997, + '[', 4207, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2851, + 'b', 2810, + 'c', 2697, + 'd', 2713, + 'e', 2505, + 'f', 2687, + 'h', 2702, + 'i', 2679, + 'j', 2935, + 'k', 2744, + 'l', 2774, + 'm', 2689, + 'n', 2886, + 'o', 2510, + 'p', 2706, + 'q', 2984, + 'r', 2692, + 's', 2731, + 't', 2693, + 'u', 2897, + 'v', 2814, + 'w', 2809, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(742); + lookahead == ' ') SKIP(2296); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(3002); END_STATE(); - case 743: - if (eof) ADVANCE(825); + case 2297: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 442, - '-', 2348, - '.', 443, - '0', 2660, - ';', 2263, - '=', 458, - 'I', 667, - 'N', 654, - '[', 2300, - '_', 474, - '`', 485, - 'a', 554, - 'c', 491, - 'd', 563, - 'e', 418, - 'f', 488, - 'i', 525, - 'm', 496, - 'n', 574, - 'o', 412, - 't', 588, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 480, + '-', 4255, + '.', 481, + '0', 4567, + ';', 4170, + '=', 508, + 'I', 2221, + 'N', 2208, + '[', 4207, + '_', 524, + '`', 535, + 'a', 1481, + 'c', 621, + 'd', 1538, + 'e', 415, + 'f', 669, + 'i', 1052, + 'm', 624, + 'n', 1591, + 'o', 422, + 't', 1708, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + lookahead == ' ') SKIP(2297); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4590); END_STATE(); - case 744: - if (eof) ADVANCE(825); + case 2298: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2525, - '-', 2347, - '.', 1027, - '0', 2657, - ':', 2297, - ';', 2263, - '=', 839, - '>', 2322, - 'I', 1244, - 'N', 1241, - '[', 2300, - ']', 2301, - '^', 2819, - '_', 1042, - '`', 485, - 'a', 1135, - 'b', 1178, - 'c', 1057, - 'd', 1069, - 'e', 1148, - 'f', 1046, - 'h', 1120, - 'i', 1039, - 'l', 1082, - 'm', 1056, - 'n', 1162, - 'o', 1237, - 'r', 1070, - 's', 1158, - 't', 1173, - 'u', 1200, - 'w', 1113, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 4432, + '-', 4254, + '.', 2667, + '0', 4564, + ':', 4204, + ';', 4170, + '=', 2393, + '>', 4229, + 'I', 2999, + 'N', 2997, + '[', 4207, + ']', 4208, + '^', 4726, + '_', 2682, + '`', 535, + 'a', 2835, + 'b', 2810, + 'c', 2718, + 'd', 2712, + 'e', 2685, + 'f', 2686, + 'h', 2701, + 'i', 2680, + 'j', 2935, + 'k', 2744, + 'l', 2764, + 'm', 2710, + 'n', 2886, + 'o', 2989, + 'p', 2706, + 'q', 2984, + 'r', 2690, + 's', 2730, + 't', 2693, + 'u', 2896, + 'v', 2814, + 'w', 2800, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(744); + lookahead == ' ') SKIP(2298); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + lookahead == '@') ADVANCE(3451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4587); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(1247); + (lookahead < '0' || '@' < lookahead)) ADVANCE(3002); END_STATE(); - case 745: - if (eof) ADVANCE(825); + case 2299: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2965, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - 'I', 3027, - 'i', 3027, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5265, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + 'I', 5327, + 'i', 5327, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 746: - if (eof) ADVANCE(825); + case 2300: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2054, - ';', 2263, - '=', 2876, - 'N', 2183, - '[', 2300, - '_', 2056, - '`', 485, - 'e', 2033, - 'f', 2063, - 'n', 2169, - 'o', 2034, - 't', 2137, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 3961, + ';', 4170, + '=', 5176, + 'N', 4090, + '[', 4207, + '_', 3963, + '`', 535, + 'e', 3940, + 'f', 3970, + 'n', 4076, + 'o', 3941, + 't', 4044, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + lookahead == 'i') ADVANCE(4102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 747: - if (eof) ADVANCE(825); + case 2301: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - '=', 2876, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + '=', 5176, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 748: - if (eof) ADVANCE(825); + case 2302: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - '?', 2476, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + '?', 4383, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(748); + lookahead == ' ') SKIP(2302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 749: - if (eof) ADVANCE(825); + case 2303: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 750: - if (eof) ADVANCE(825); + case 2304: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2752, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4659, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 751: - if (eof) ADVANCE(825); + case 2305: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 752: - if (eof) ADVANCE(825); + case 2306: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2962, - '0', 2589, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2988, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5262, + '0', 4496, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5288, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4511); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 753: - if (eof) ADVANCE(825); + case 2307: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2964, - '0', 2658, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5264, + '0', 4565, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 754: - if (eof) ADVANCE(825); + case 2308: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2964, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5264, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 755: - if (eof) ADVANCE(825); + case 2309: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2964, - '0', 2589, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2988, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 5264, + '0', 4496, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5288, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4511); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 756: - if (eof) ADVANCE(825); + case 2310: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2561, - '0', 2658, - ';', 2263, - '?', 2476, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4468, + '0', 4565, + ';', 4170, + '?', 4383, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(748); + lookahead == ' ') SKIP(2302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 757: - if (eof) ADVANCE(825); + case 2311: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2561, - '0', 2658, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4468, + '0', 4565, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 758: - if (eof) ADVANCE(825); + case 2312: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2561, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4468, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 759: - if (eof) ADVANCE(825); + case 2313: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2546, - '0', 2658, - ';', 2263, - '?', 2476, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4453, + '0', 4565, + ';', 4170, + '?', 4383, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(748); + lookahead == ' ') SKIP(2302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 760: - if (eof) ADVANCE(825); + case 2314: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2546, - '0', 2658, - ';', 2263, - 'E', 2990, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2954, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4453, + '0', 4565, + ';', 4170, + 'E', 5290, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5254, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 761: - if (eof) ADVANCE(825); + case 2315: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2335, - '.', 2546, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4242, + '.', 4453, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 762: - if (eof) ADVANCE(825); + case 2316: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2966, - '-', 2343, - '.', 2962, - '0', 2894, - ';', 2263, - '=', 2876, - 'N', 2921, - '[', 2300, - '_', 2896, - '`', 485, - 'e', 2877, - 'f', 2903, - 'n', 2920, - 'o', 2878, - 't', 2911, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5266, + '-', 4250, + '.', 5262, + '0', 5194, + ';', 4170, + '=', 5176, + 'N', 5221, + '[', 4207, + '_', 5196, + '`', 535, + 'e', 5177, + 'f', 5203, + 'n', 5220, + 'o', 5178, + 't', 5211, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2899); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'i') ADVANCE(5226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5199); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 763: - if (eof) ADVANCE(825); + case 2317: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2588, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3106, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4495, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5406, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4510); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 764: - if (eof) ADVANCE(825); + case 2318: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 765: - if (eof) ADVANCE(825); + case 2319: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3078, - '0', 2662, - ';', 2263, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3049, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5378, + '0', 4569, + ';', 4170, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5349, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 766: - if (eof) ADVANCE(825); + case 2320: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 3077, - '0', 2662, - ';', 2263, - 'N', 3213, - '[', 2300, - '_', 3119, - '`', 485, - 'e', 3051, - 'f', 3120, - 'n', 3198, - 'o', 3053, - 't', 3173, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 5377, + '0', 4569, + ';', 4170, + 'N', 5513, + '[', 4207, + '_', 5411, + '`', 535, + 'e', 5351, + 'f', 5420, + 'n', 5498, + 'o', 5353, + 't', 5473, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 767: - if (eof) ADVANCE(825); + case 2321: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3081, - '-', 2340, - '.', 2563, - '0', 2662, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'N', 3213, - 'P', 3103, - 'T', 3103, - '[', 2300, - '_', 3119, - '`', 485, - 'd', 3121, - 'e', 3055, - 'f', 3120, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3181, - 'o', 3053, - 'p', 3102, - 's', 3133, - 't', 3101, - 'u', 3182, - 'w', 3146, - '{', 2414, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5381, + '-', 4247, + '.', 4471, + '0', 4569, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'N', 5513, + 'P', 5403, + 'T', 5403, + '[', 4207, + '_', 5411, + '`', 535, + 'd', 5421, + 'e', 5355, + 'f', 5420, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5481, + 'o', 5353, + 'p', 5402, + 's', 5433, + 't', 5401, + 'u', 5482, + 'w', 5446, + '{', 4321, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); + lookahead == 'b') ADVANCE(4638); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + lookahead == 'i') ADVANCE(5522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3246); + lookahead != ']') ADVANCE(5546); END_STATE(); - case 768: - if (eof) ADVANCE(825); + case 2322: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 2967, - '-', 2336, - '.', 2963, - '0', 2658, - ';', 2263, - 'N', 3024, - '[', 2300, - '_', 2979, - '`', 485, - 'e', 2952, - 'f', 2992, - 'n', 3020, - 'o', 2953, - 't', 3007, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '$', 4213, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5267, + '-', 4243, + '.', 5263, + '0', 4565, + ';', 4170, + 'N', 5324, + '[', 4207, + '_', 5279, + '`', 535, + 'e', 5252, + 'f', 5292, + 'n', 5320, + 'o', 5253, + 't', 5307, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(768); + lookahead == ' ') SKIP(2322); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + lookahead == 'i') ADVANCE(5327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3047); + lookahead != ']') ADVANCE(5347); END_STATE(); - case 769: - if (eof) ADVANCE(825); + case 2323: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - ')', 2303, - '*', 2472, - '+', 1025, - '-', 441, - '.', 2571, - ';', 2263, - '?', 2476, - 'I', 1548, - 'N', 1540, - '[', 2300, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + ')', 4210, + '*', 4379, + '+', 2665, + '-', 479, + '.', 4478, + ';', 4170, + '?', 4383, + 'I', 3439, + 'N', 3431, + '[', 4207, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + lookahead == ' ') SKIP(2325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); END_STATE(); - case 770: - if (eof) ADVANCE(825); + case 2324: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - ')', 2303, - '*', 2472, - '+', 1025, - '-', 441, - '.', 2571, - ';', 2263, - 'I', 1548, - 'N', 1540, - '[', 2300, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + ')', 4210, + '*', 4379, + '+', 2665, + '-', 479, + '.', 4478, + ';', 4170, + 'I', 3439, + 'N', 3431, + '[', 4207, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + lookahead == ' ') SKIP(2326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); END_STATE(); - case 771: - if (eof) ADVANCE(825); + case 2325: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - ')', 2303, - '*', 2472, - '+', 1025, - '-', 441, - '.', 1288, - ';', 2263, - '?', 2476, - 'I', 1548, - 'N', 1540, - '[', 2300, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + ')', 4210, + '*', 4379, + '+', 2665, + '-', 479, + '.', 3041, + ';', 4170, + '?', 4383, + 'I', 3439, + 'N', 3431, + '[', 4207, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + lookahead == ' ') SKIP(2325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); END_STATE(); - case 772: - if (eof) ADVANCE(825); + case 2326: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '\'', 411, - ')', 2303, - '*', 2472, - '+', 1025, - '-', 441, - '.', 1288, - ';', 2263, - 'I', 1548, - 'N', 1540, - '[', 2300, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6369, + '\'', 410, + ')', 4210, + '*', 4379, + '+', 2665, + '-', 479, + '.', 3041, + ';', 4170, + 'I', 3439, + 'N', 3431, + '[', 4207, + '_', 3044, + '`', 535, + 'a', 3221, + 'b', 3315, + 'c', 3062, + 'd', 3130, + 'e', 3222, + 'f', 3082, + 'h', 3208, + 'i', 3039, + 'l', 3137, + 'm', 3077, + 'n', 3414, + 'o', 3419, + 'r', 3116, + 's', 3273, + 't', 3334, + 'u', 3351, + 'w', 3180, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + lookahead == ' ') SKIP(2326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3451); END_STATE(); - case 773: - if (eof) ADVANCE(825); + case 2327: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4075, - '$', 2307, - '\'', 411, - '(', 2506, - ')', 2303, - '+', 3276, - '-', 2341, - '.', 3277, - '0', 3298, - ';', 2263, - 'N', 3464, - '[', 2300, - '_', 3300, - '`', 485, - 'e', 3257, - 'f', 3310, - 'n', 3440, - 'o', 3259, - 't', 3397, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6375, + '$', 4214, + '\'', 410, + '(', 4413, + ')', 4210, + '+', 5576, + '-', 4248, + '.', 5577, + '0', 5598, + ';', 4170, + 'N', 5764, + '[', 4207, + '_', 5600, + '`', 535, + 'e', 5557, + 'f', 5610, + 'n', 5740, + 'o', 5559, + 't', 5697, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3474); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); + lookahead == 'i') ADVANCE(5774); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3505); + lookahead != ']') ADVANCE(5805); END_STATE(); - case 774: - if (eof) ADVANCE(825); + case 2328: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4075, - '$', 2307, - '\'', 411, - '(', 2302, - ')', 2303, - '+', 3276, - '-', 2341, - '.', 3277, - '0', 3298, - ';', 2263, - 'N', 3464, - '[', 2300, - '_', 3300, - '`', 485, - 'e', 3257, - 'f', 3310, - 'n', 3440, - 'o', 3259, - 't', 3397, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '"', 4689, + '#', 6375, + '$', 4214, + '\'', 410, + '(', 4209, + ')', 4210, + '+', 5576, + '-', 4248, + '.', 5577, + '0', 5598, + ';', 4170, + 'N', 5764, + '[', 4207, + '_', 5600, + '`', 535, + 'e', 5557, + 'f', 5610, + 'n', 5740, + 'o', 5559, + 't', 5697, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(751); + lookahead == ' ') SKIP(2305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3474); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); + lookahead == 'i') ADVANCE(5774); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3505); + lookahead != ']') ADVANCE(5805); END_STATE(); - case 775: - if (eof) ADVANCE(825); + case 2329: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '+', 447, - '-', 2337, - '.', 2575, - ';', 2263, - '=', 458, - '_', 478, - 'a', 554, - 'e', 420, - 'i', 523, - 'o', 412, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '+', 485, + '-', 4244, + '.', 4482, + ';', 4170, + '=', 508, + '_', 528, + 'a', 1481, + 'e', 417, + 'i', 1050, + 'o', 422, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == ' ') SKIP(2334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 776: - if (eof) ADVANCE(825); + case 2330: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '.', 3108, - ';', 2263, - '_', 3106, - 'a', 3154, - 'e', 3065, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '.', 5408, + ';', 4170, + '_', 5406, + 'a', 5454, + 'e', 5365, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(784); + lookahead == ' ') SKIP(2338); if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 777: - if (eof) ADVANCE(825); + case 2331: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '.', 3108, - ';', 2263, - '_', 3106, - 'e', 3065, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - '+', 3080, - '-', 3080, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '.', 5408, + ';', 4170, + '_', 5406, + 'e', 5365, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + '+', 5380, + '-', 5380, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 778: - if (eof) ADVANCE(825); + case 2332: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '.', 2572, - ';', 2263, - '[', 2752, - '_', 3106, - 'e', 3065, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - '+', 3080, - '-', 3080, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '.', 4479, + ';', 4170, + '[', 4659, + '_', 5406, + 'e', 5365, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + '+', 5380, + '-', 5380, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31183,7696 +38938,10254 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5546); END_STATE(); - case 779: - if (eof) ADVANCE(825); + case 2333: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - '(', 2506, - ')', 2303, - '.', 2572, - ';', 2263, - '_', 3106, - 'a', 3154, - 'e', 3065, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + '(', 4413, + ')', 4210, + '.', 4479, + ';', 4170, + '_', 5406, + 'a', 5454, + 'e', 5365, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(784); + lookahead == ' ') SKIP(2338); if (lookahead == '+' || - lookahead == '-') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == '-') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 780: - if (eof) ADVANCE(825); + case 2334: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '+', 447, - '-', 2337, - '.', 482, - ';', 2263, - '=', 458, - 'a', 554, - 'e', 420, - 'i', 523, - 'o', 412, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '+', 485, + '-', 4244, + '.', 532, + ';', 4170, + '=', 508, + 'a', 1481, + 'e', 417, + 'i', 1050, + 'o', 422, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(780); + lookahead == ' ') SKIP(2334); END_STATE(); - case 781: - if (eof) ADVANCE(825); + case 2335: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '-', 2334, - '.', 2559, - ':', 2297, - ';', 2263, - '=', 839, - '[', 2752, - 'a', 555, - 'e', 420, - 'i', 556, - 'o', 412, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '-', 4241, + '.', 4466, + ':', 4204, + ';', 4170, + '=', 2393, + '[', 4659, + 'a', 1482, + 'e', 417, + 'i', 1452, + 'o', 422, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(783); + lookahead == ' ') SKIP(2337); END_STATE(); - case 782: - if (eof) ADVANCE(825); + case 2336: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '-', 2334, - '.', 2559, - ';', 2263, - '=', 2876, - '?', 2476, - 'e', 2037, - 'o', 2038, - '{', 2414, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '-', 4241, + '.', 4466, + ';', 4170, + '=', 5176, + '?', 4383, + 'e', 3944, + 'o', 3945, + '{', 4321, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); END_STATE(); - case 783: - if (eof) ADVANCE(825); + case 2337: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '-', 2334, - ':', 2297, - ';', 2263, - '=', 839, - 'a', 555, - 'e', 420, - 'i', 556, - 'o', 412, - 'x', 565, - '{', 2414, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '-', 4241, + ':', 4204, + ';', 4170, + '=', 2393, + 'a', 1482, + 'e', 417, + 'i', 1452, + 'o', 422, + 'x', 1580, + '{', 4321, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(783); + lookahead == ' ') SKIP(2337); END_STATE(); - case 784: - if (eof) ADVANCE(825); + case 2338: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '$', 2305, - ')', 2303, - '.', 482, - ';', 2263, - 'a', 554, - 'e', 423, - 'o', 425, - 'x', 565, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '$', 4212, + ')', 4210, + '.', 532, + ';', 4170, + 'a', 1481, + 'e', 420, + 'o', 423, + 'x', 1580, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(784); + lookahead == ' ') SKIP(2338); if (lookahead == '+' || - lookahead == '-') ADVANCE(447); + lookahead == '-') ADVANCE(485); END_STATE(); - case 785: - if (eof) ADVANCE(825); + case 2339: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2559, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3066, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4466, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5366, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); + lookahead == ' ') SKIP(2375); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 786: - if (eof) ADVANCE(825); + case 2340: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2559, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3067, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - '}', 2415, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4466, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5367, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + '}', 4322, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 787: - if (eof) ADVANCE(825); + case 2341: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2559, - ';', 2263, - 'E', 3115, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4466, + ';', 4170, + 'E', 5416, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 788: - if (eof) ADVANCE(825); + case 2342: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2559, - ';', 2263, - 'E', 3115, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4466, + ';', 4170, + 'E', 5416, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 789: - if (eof) ADVANCE(825); + case 2343: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3154, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3066, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5454, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5366, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); + lookahead == ' ') SKIP(2375); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 790: - if (eof) ADVANCE(825); + case 2344: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3067, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - '}', 2415, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5367, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + '}', 4322, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 791: - if (eof) ADVANCE(825); + case 2345: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3066, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5366, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); + lookahead == ' ') SKIP(2375); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 792: - if (eof) ADVANCE(825); + case 2346: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3059, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3067, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - '}', 2415, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5359, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5367, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + '}', 4322, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 793: - if (eof) ADVANCE(825); + case 2347: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3154, - 'd', 3121, - 'e', 3063, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3066, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - 'x', 3163, - '|', 2264, - '}', 2415, - 0xb5, 3182, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5454, + 'd', 5421, + 'e', 5363, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5366, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + 'x', 5463, + '|', 4171, + '}', 4322, + 0xb5, 5482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); + lookahead == ' ') SKIP(2375); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 794: - if (eof) ADVANCE(825); + case 2348: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'd', 3121, - 'e', 3063, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'o', 3067, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '|', 2264, - '}', 2415, - 0xb5, 3182, - '\t', 2262, - ' ', 2262, - 'B', 2731, - 'b', 2731, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'd', 5421, + 'e', 5363, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'o', 5367, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '|', 4171, + '}', 4322, + 0xb5, 5482, + '\t', 4169, + ' ', 4169, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 795: - if (eof) ADVANCE(825); + case 2349: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5416, + '_', 5406, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2350: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5416, + '_', 5406, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2351: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3115, - '_', 3106, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5416, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 796: - if (eof) ADVANCE(825); + case 2352: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3115, - '_', 3106, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'E', 5416, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 797: - if (eof) ADVANCE(825); + case 2353: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3115, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'a', 5454, + 'e', 5365, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 798: - if (eof) ADVANCE(825); + case 2354: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'E', 3115, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 5379, + ';', 4170, + 'e', 5365, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 799: - if (eof) ADVANCE(825); + case 2355: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'a', 3154, - 'e', 3065, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4452, + ';', 4170, + 'E', 5416, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 800: - if (eof) ADVANCE(825); + case 2356: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 3079, - ';', 2263, - 'e', 3065, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + '.', 4452, + ';', 4170, + 'E', 5416, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 801: - if (eof) ADVANCE(825); + case 2357: + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2545, - ';', 2263, - 'E', 3115, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'E', 5416, + '_', 5406, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') SKIP(2375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 802: - if (eof) ADVANCE(825); + case 2358: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'E', 5416, + '_', 5406, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2359: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'E', 5416, + 'a', 5454, + 'e', 5360, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2360: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'E', 5416, + 'e', 5360, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2361: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'a', 5454, + 'e', 5365, + 'o', 5366, + 'x', 5463, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2362: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + '(', 4413, + ')', 4210, + ';', 4170, + 'e', 5365, + 'o', 5367, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2363: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + '.', 4466, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5483, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '}', 4322, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2364: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + '_', 5406, + 'a', 5483, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '}', 4322, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2365: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + '.', 5379, + ';', 4170, + 'E', 5399, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5483, + 'd', 5421, + 'e', 5398, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '}', 4322, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2366: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + '.', 5379, + ';', 4170, + 'E', 5403, + 'G', 5403, + 'K', 5403, + 'M', 5403, + 'P', 5403, + 'T', 5403, + 'a', 5483, + 'd', 5421, + 'e', 5402, + 'g', 5402, + 'h', 5472, + 'k', 5402, + 'm', 5405, + 'n', 5482, + 'p', 5402, + 's', 5433, + 't', 5402, + 'u', 5482, + 'w', 5446, + '}', 4322, + 0xb5, 5482, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2367: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + ';', 4170, + '=', 5176, + 'a', 4058, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(4130); + END_STATE(); + case 2368: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + ';', 4170, + '=', 5176, + 'a', 1831, + 'i', 1452, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2370); + END_STATE(); + case 2369: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + ';', 4170, + 'a', 5483, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 2370: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + ';', 4170, + 'a', 1831, + 'i', 1452, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2370); + END_STATE(); + case 2371: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4241, + ';', 4170, + 'a', 1831, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + END_STATE(); + case 2372: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '-', 4251, + ';', 4170, + '=', 5176, + 'a', 5214, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 2373: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + '.', 4452, + ';', 4170, + '?', 4383, + 'e', 420, + 'o', 424, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + END_STATE(); + case 2374: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + ';', 4170, + '=', 5176, + 'e', 5181, + 'o', 5182, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 2375: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6369, + ')', 4210, + ';', 4170, + 'a', 1481, + 'e', 420, + 'o', 423, + 'x', 1580, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2375); + END_STATE(); + case 2376: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6375, + '(', 4413, + ')', 4210, + ';', 4170, + 'a', 5673, + 'e', 5563, + 'o', 5564, + 'x', 5688, + '|', 4171, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 2377: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6375, + '(', 4413, + ')', 4210, + ';', 4170, + 'e', 5563, + 'o', 5565, + '|', 4171, + '}', 4322, + '\t', 4169, + ' ', 4169, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 2378: + if (eof) ADVANCE(2379); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '#', 6375, + ')', 4210, + '-', 4249, + ';', 4170, + 'a', 5718, + '}', 4322, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 2379: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 2380: + ACCEPT_TOKEN(anon_sym_POUND_BANG); + END_STATE(); + case 2381: + ACCEPT_TOKEN(aux_sym_shebang_token1); + END_STATE(); + case 2382: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(2381); + if (lookahead == '\r') ADVANCE(2383); + if (lookahead == '#') ADVANCE(6370); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2382); + if (lookahead != 0) ADVANCE(2383); + END_STATE(); + case 2383: + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(2381); + if (lookahead == '\r') ADVANCE(2383); + if (lookahead != 0) ADVANCE(2383); + END_STATE(); + case 2384: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == '-') ADVANCE(3624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3627); + END_STATE(); + case 2385: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == '-') ADVANCE(6237); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6240); + END_STATE(); + case 2386: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(3628); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3635); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3634); + END_STATE(); + case 2387: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(3628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); + END_STATE(); + case 2388: + ACCEPT_TOKEN(anon_sym_alias); + END_STATE(); + case 2389: + ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == ',') ADVANCE(3485); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6229); + END_STATE(); + case 2390: + ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == ',') ADVANCE(3485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3483); + END_STATE(); + case 2391: + ACCEPT_TOKEN(anon_sym_alias); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3485); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3484); + END_STATE(); + case 2392: + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 2393: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 2394: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(4397); + if (lookahead == '~') ADVANCE(4408); + END_STATE(); + case 2395: + ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); + END_STATE(); + case 2396: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == '-') ADVANCE(3497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); + END_STATE(); + case 2397: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == '-') ADVANCE(6207); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); + END_STATE(); + case 2398: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(3501); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3508); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3507); + END_STATE(); + case 2399: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(3501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); + END_STATE(); + case 2400: + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if (lookahead == ',') ADVANCE(3508); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); + END_STATE(); + case 2401: + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if (lookahead == ',') ADVANCE(3508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); + END_STATE(); + case 2402: + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); + END_STATE(); + case 2403: + ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == ',') ADVANCE(3511); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6211); + END_STATE(); + case 2404: + ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == ',') ADVANCE(3511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3509); + END_STATE(); + case 2405: + ACCEPT_TOKEN(anon_sym_mut); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3511); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3510); + END_STATE(); + case 2406: + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3511); + END_STATE(); + case 2407: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 2408: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == ',') ADVANCE(3514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6232); + END_STATE(); + case 2409: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == ',') ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3512); + END_STATE(); + case 2410: + ACCEPT_TOKEN(anon_sym_const); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3513); + END_STATE(); + case 2411: + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3514); + END_STATE(); + case 2412: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 2413: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 2414: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 2415: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 2416: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + END_STATE(); + case 2417: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(536); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2418: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2419: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(680); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2420: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2421: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(701); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2422: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2423: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(681); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2424: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2425: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(706); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2426: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2427: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(687); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2428: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2429: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1079); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2430: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2431: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(602); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2432: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2433: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1065); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2434: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2435: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(713); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2436: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2437: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(694); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2438: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2439: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1365); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2440: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2441: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(548); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2442: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2443: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(793); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2444: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2445: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1656); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2446: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2447: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(537); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2448: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2449: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(695); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2450: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2451: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(801); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2452: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2453: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2093); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2454: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2455: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(710); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2456: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2457: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1678); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2458: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2459: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1061); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2460: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2461: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(539); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2462: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2463: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1137); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2464: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2465: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(790); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2466: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2467: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(676); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2468: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2469: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(702); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2470: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2471: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(950); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2472: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2473: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(698); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2474: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2475: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(610); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2476: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2477: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(542); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2478: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2479: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(688); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2480: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2481: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1180); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2482: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2483: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(566); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2484: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2485: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1002); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2486: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2487: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(815); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2488: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2489: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2138); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2490: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2491: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(744); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2492: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2493: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1391); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3561); + END_STATE(); + case 2494: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1391); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3562); + END_STATE(); + case 2495: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1148); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2496: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(1148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2497: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(762); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2498: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2499: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(699); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2500: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2501: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2118); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2502: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(2118); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2503: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(4555); + if (lookahead == '(') ADVANCE(4447); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '{') ADVANCE(4711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2504: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(4555); + if (lookahead == '(') ADVANCE(4447); + if (lookahead == '{') ADVANCE(4711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2505: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + '+', 2877, + '=', 4724, + '>', 2198, + 'a', 2722, + 'l', 2939, + 'n', 2732, + 'r', 2909, + 'x', 2904, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2506: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2884); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2201); + if (lookahead == 'o') ADVANCE(2923); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2507: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(3270); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'l') ADVANCE(3360); + if (lookahead == 'n') ADVANCE(3105); + if (lookahead == 'r') ADVANCE(3308); + if (lookahead == 'x') ADVANCE(3305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2508: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(3278); + if (lookahead == '>') ADVANCE(5121); + if (lookahead == 'o') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2509: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(3131); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'r') ADVANCE(4389); + if (lookahead == 'u') ADVANCE(3374); + if (lookahead == 'v') ADVANCE(3162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2510: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2785); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'u') ADVANCE(2955); + if (lookahead == 'v') ADVANCE(2787); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2511: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(3151); + if (lookahead == '>') ADVANCE(5125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 2512: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2778); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2203); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); + END_STATE(); + case 2513: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(2515); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2514: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(2515); + if (lookahead == '_') ADVANCE(2534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4518); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2515: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2516: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(4449); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2517: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(2528); + if (lookahead == '_') ADVANCE(2517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2518: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2519: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 3451, + 'I', 2641, + '_', 2539, + 'i', 2641, + 'l', 2622, + 'r', 2611, + 'x', 2604, + '+', 2539, + '-', 2539, + 'B', 4638, + 'b', 4638, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2520: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 3451, + 'I', 2641, + '_', 2539, + 'i', 2547, + '+', 2539, + '-', 2539, + 'B', 4638, + 'b', 4638, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2521: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 3451, + 'I', 2641, + 'a', 2585, + 'i', 2597, + 'o', 2552, + 's', 4645, + 'u', 2627, + 'B', 4638, + 'b', 4638, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2522: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - '.', 2545, - ';', 2263, - 'E', 3115, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, + ',', 3451, + 'I', 2641, + 'i', 2641, + 'l', 2622, + 'r', 2611, + 'x', 2604, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2523: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'I') ADVANCE(2641); + if (lookahead == 'i') ADVANCE(2641); + if (lookahead == 'r') ADVANCE(2633); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2524: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'I') ADVANCE(2641); + if (lookahead == 'i') ADVANCE(2641); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2525: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'I') ADVANCE(2641); + if (lookahead == 'i') ADVANCE(2547); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2526: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'N') ADVANCE(2642); + if (lookahead == 'f') ADVANCE(4307); + if (lookahead == 'n') ADVANCE(4279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2527: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2528: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2529: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2530: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2531); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2531: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2532: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2533: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2534: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4518); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2535: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2536); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2536: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2537: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2539); + if (lookahead == 'l') ADVANCE(2622); + if (lookahead == 'r') ADVANCE(2611); + if (lookahead == 'x') ADVANCE(2604); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2538: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2539); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2539: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '_') ADVANCE(2539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2540: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2625); + if (lookahead == 'o') ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2541: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2593); + if (lookahead == 'o') ADVANCE(2606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2542: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2585); + if (lookahead == 'o') ADVANCE(2552); + if (lookahead == 'u') ADVANCE(2627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2543: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2544: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2545: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2546: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'a') ADVANCE(2639); + if (lookahead == 'e') ADVANCE(2572); + if (lookahead == 'o') ADVANCE(4302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2547: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2548: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2549: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'c') ADVANCE(2574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2550: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'c') ADVANCE(2575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2551: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'c') ADVANCE(2562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2552: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'd') ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2553: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'd') ADVANCE(2558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2554: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2572); + if (lookahead == 'o') ADVANCE(4302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); + END_STATE(); + case 2555: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 803: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'E', 3115, - '_', 3106, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2556: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 804: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'E', 3115, - '_', 3106, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2557: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 805: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'E', 3115, - 'a', 3154, - 'e', 3060, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2558: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 806: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'E', 3115, - 'e', 3060, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2559: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 807: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'a', 3154, - 'e', 3065, - 'o', 3066, - 'x', 3163, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2560: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 808: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - '(', 2506, - ')', 2303, - ';', 2263, - 'e', 3065, - 'o', 3067, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2561: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 809: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - '.', 2559, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3183, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '}', 2415, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2562: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4348); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 810: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - '_', 3106, - 'a', 3183, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '}', 2415, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2563: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 811: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - '.', 3079, - ';', 2263, - 'E', 3099, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3183, - 'd', 3121, - 'e', 3098, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '}', 2415, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2564: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2626); + if (lookahead == 'o') ADVANCE(2600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 812: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - '.', 3079, - ';', 2263, - 'E', 3103, - 'G', 3103, - 'K', 3103, - 'M', 3103, - 'P', 3103, - 'T', 3103, - 'a', 3183, - 'd', 3121, - 'e', 3102, - 'g', 3102, - 'h', 3172, - 'k', 3102, - 'm', 3105, - 'n', 3182, - 'p', 3102, - 's', 3133, - 't', 3102, - 'u', 3182, - 'w', 3146, - '}', 2415, - 0xb5, 3182, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2565: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 813: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - ';', 2263, - '=', 2876, - 'a', 2151, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + case 2566: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 814: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - ';', 2263, - '=', 2876, - 'a', 600, - 'i', 556, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(816); + case 2567: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2548); + if (lookahead == 'o') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 815: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - ';', 2263, - 'a', 3183, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + case 2568: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 816: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - ';', 2263, - 'a', 600, - 'i', 556, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(816); + case 2569: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 817: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2334, - ';', 2263, - 'a', 600, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); + case 2570: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 818: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '-', 2344, - ';', 2263, - '=', 2876, - 'a', 2914, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 2571: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'e') ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 819: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - '.', 2545, - ';', 2263, - '?', 2476, - 'e', 423, - 'o', 426, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); + case 2572: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'f') ADVANCE(4182); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 820: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - ';', 2263, - '=', 2876, - 'e', 2881, - 'o', 2882, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + case 2573: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'g') ADVANCE(2582); + if (lookahead == 't') ADVANCE(2634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 821: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4069, - ')', 2303, - ';', 2263, - 'a', 554, - 'e', 423, - 'o', 425, - 'x', 565, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(821); + case 2574: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'h') ADVANCE(4341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 822: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4075, - '(', 2506, - ')', 2303, - ';', 2263, - 'a', 3373, - 'e', 3263, - 'o', 3264, - 'x', 3388, - '|', 2264, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 2575: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'h') ADVANCE(4318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 823: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4075, - '(', 2506, - ')', 2303, - ';', 2263, - 'e', 3263, - 'o', 3265, - '|', 2264, - '}', 2415, - '\t', 2262, - ' ', 2262, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 2576: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'h') ADVANCE(2583); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 824: - if (eof) ADVANCE(825); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '#', 4075, - ')', 2303, - '-', 2342, - ';', 2263, - 'a', 3418, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + case 2577: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'h') ADVANCE(2583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 825: - ACCEPT_TOKEN(ts_builtin_sym_end); + case 2578: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2553); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 826: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + case 2579: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym_shebang_token1); + case 2580: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(827); - if (lookahead == '\r') ADVANCE(829); - if (lookahead == '#') ADVANCE(4070); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(828); - if (lookahead != 0) ADVANCE(829); + case 2581: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(827); - if (lookahead == '\r') ADVANCE(829); - if (lookahead != 0) ADVANCE(829); + case 2582: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 830: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == '-') ADVANCE(1717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); + case 2583: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'i') ADVANCE(2590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 831: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == '-') ADVANCE(3937); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); + case 2584: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'k') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 832: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1721); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1728); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1727); + case 2585: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'k') ADVANCE(2559); + if (lookahead == 't') ADVANCE(2550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 833: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + case 2586: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2580); + if (lookahead == 's') ADVANCE(4373); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 834: - ACCEPT_TOKEN(anon_sym_alias); + case 2587: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 835: - ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1594); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3929); + case 2588: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 836: - ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + case 2589: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 837: - ACCEPT_TOKEN(anon_sym_alias); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1593); + case 2590: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 838: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); + case 2591: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 839: - ACCEPT_TOKEN(anon_sym_EQ); + case 2592: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2622); + if (lookahead == 'r') ADVANCE(2611); + if (lookahead == 'x') ADVANCE(2604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 840: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(2490); - if (lookahead == '~') ADVANCE(2501); + case 2593: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 841: - ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + case 2594: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(2621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 842: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == '-') ADVANCE(1606); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + case 2595: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 843: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == '-') ADVANCE(3907); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + case 2596: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(4345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 844: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1610); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1616); + case 2597: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(4645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 845: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + case 2598: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'n') ADVANCE(2635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 846: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1617); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + case 2599: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'o') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 847: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + case 2600: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'o') ADVANCE(2603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 848: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + case 2601: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'o') ADVANCE(2607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 849: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1620); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3911); + case 2602: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'o') ADVANCE(2614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 850: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + case 2603: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'p') ADVANCE(4288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 851: - ACCEPT_TOKEN(anon_sym_mut); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1619); + case 2604: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'p') ADVANCE(2602); + if (lookahead == 't') ADVANCE(2570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 852: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); + case 2605: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 853: - ACCEPT_TOKEN(anon_sym_const); + case 2606: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(4275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 854: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1623); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); + case 2607: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(4222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 855: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + case 2608: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(4356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 856: - ACCEPT_TOKEN(anon_sym_const); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1622); + case 2609: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 857: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); + case 2610: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 858: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + case 2611: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2601); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 859: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + case 2612: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 860: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + case 2613: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 861: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + case 2614: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 862: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + case 2615: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'r') ADVANCE(2589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 863: + case 2616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(2648); - if (lookahead == '(') ADVANCE(2540); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '{') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2390); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 864: + case 2617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(2648); - if (lookahead == '(') ADVANCE(2540); - if (lookahead == '{') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'u') ADVANCE(2588); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 865: + case 2618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1434); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'l') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(1328); - if (lookahead == 'r') ADVANCE(1452); - if (lookahead == 'x') ADVANCE(1449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 866: + case 2619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'r') ADVANCE(2482); - if (lookahead == 'u') ADVANCE(1501); - if (lookahead == 'v') ADVANCE(1352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(4646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 867: + case 2620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1436); - if (lookahead == '>') ADVANCE(2821); - if (lookahead == 'o') ADVANCE(1455); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 868: + case 2621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1160); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'l') ADVANCE(1201); - if (lookahead == 'r') ADVANCE(1177); - if (lookahead == 'x') ADVANCE(1172); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2628); + if (lookahead == 't') ADVANCE(2581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 869: + case 2622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1103); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'u') ADVANCE(1218); - if (lookahead == 'v') ADVANCE(1104); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 870: + case 2623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1163); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(647); - if (lookahead == 'o') ADVANCE(1191); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 871: + case 2624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1359); - if (lookahead == '>') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 's') ADVANCE(2568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 872: + case 2625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1099); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(649); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 873: + case 2626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(875); - if (lookahead == '_') ADVANCE(889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 874: + case 2627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(875); - if (lookahead == '_') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 875: + case 2628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 876: + case 2629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(2542); - if (lookahead == '_') ADVANCE(889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2384); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 877: + case 2630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(888); - if (lookahead == '_') ADVANCE(877); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 't') ADVANCE(2571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 878: + case 2631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '.') ADVANCE(893); - if (lookahead == '_') ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2588); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 879: + case 2632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1560, - 'I', 1001, - '_', 899, - 'i', 1001, - 'l', 982, - 'r', 971, - 'x', 964, - '+', 899, - '-', 899, - 'B', 2731, - 'b', 2731, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 880: + case 2633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1560, - 'I', 1001, - '_', 899, - 'i', 907, - '+', 899, - '-', 899, - 'B', 2731, - 'b', 2731, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2566); + if (lookahead == 'y') ADVANCE(4336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 881: + case 2634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1560, - 'I', 1001, - 'a', 945, - 'i', 957, - 'o', 912, - 's', 2738, - 'u', 987, - 'B', 2731, - 'b', 2731, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 882: + case 2635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1560, - 'I', 1001, - 'i', 1001, - 'l', 982, - 'r', 971, - 'x', 964, - 'B', 2731, - 'b', 2731, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 883: + case 2636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'I') ADVANCE(1001); - if (lookahead == 'i') ADVANCE(1001); - if (lookahead == 'r') ADVANCE(993); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'u') ADVANCE(2591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 884: + case 2637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'I') ADVANCE(1001); - if (lookahead == 'i') ADVANCE(1001); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'v') ADVANCE(2569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 885: + case 2638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'I') ADVANCE(1001); - if (lookahead == 'i') ADVANCE(907); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'y') ADVANCE(4368); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 886: + case 2639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'N') ADVANCE(1002); - if (lookahead == 'f') ADVANCE(2400); - if (lookahead == 'n') ADVANCE(2372); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 887: + case 2640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 888: + case 2641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 889: + case 2642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 890: + case 2643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(891); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 891: + case 2644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 892: + case 2645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 893: + case 2646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 894: + case 2647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 895: + case 2648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(896); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2648); END_STATE(); - case 896: + case 2649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3643); END_STATE(); - case 897: + case 2650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(899); - if (lookahead == 'l') ADVANCE(982); - if (lookahead == 'r') ADVANCE(971); - if (lookahead == 'x') ADVANCE(964); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3637); END_STATE(); - case 898: + case 2651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(899); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ',') ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3640); END_STATE(); - case 899: + case 2652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '_') ADVANCE(899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 900: + case 2653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'o') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3422); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 901: + case 2654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(953); - if (lookahead == 'o') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 902: + case 2655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(945); - if (lookahead == 'o') ADVANCE(912); - if (lookahead == 'u') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3448); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 903: + case 2656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3502); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3508); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3507); END_STATE(); - case 904: + case 2657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 905: + case 2658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3520); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3526); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3525); END_STATE(); - case 906: + case 2659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'a') ADVANCE(999); - if (lookahead == 'e') ADVANCE(932); - if (lookahead == 'o') ADVANCE(2395); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 907: + case 2660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3629); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3635); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3634); END_STATE(); - case 908: + case 2661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 909: + case 2662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'c') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3532); + if (lookahead == '=') ADVANCE(4724); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3538); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3537); END_STATE(); - case 910: + case 2663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'c') ADVANCE(935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 911: + case 2664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'c') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '-') ADVANCE(3423); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 912: + case 2665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'd') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(3040); + if (lookahead == '_') ADVANCE(2665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 913: + case 2666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'd') ADVANCE(918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 914: + case 2667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(932); - if (lookahead == 'o') ADVANCE(2395); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(4327); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 915: + case 2668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(2504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 916: + case 2669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(4448); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 917: + case 2670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2406); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(2668); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 918: + case 2671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2452); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(2668); + if (lookahead == '_') ADVANCE(3046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 919: + case 2672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 920: + case 2673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2390); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '.') ADVANCE(3045); + if (lookahead == '_') ADVANCE(2673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 921: + case 2674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == ':') ADVANCE(2235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 922: + case 2675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2441); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2200); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 923: + case 2676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(2364); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2202); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 924: + case 2677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(986); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2204); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 925: + case 2678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '>') ADVANCE(2205); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 926: + case 2679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'N') ADVANCE(2998); + if (lookahead == 'f') ADVANCE(4308); + if (lookahead == 'n') ADVANCE(2894); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 927: + case 2680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(908); - if (lookahead == 'o') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'N') ADVANCE(2998); + if (lookahead == 'f') ADVANCE(4308); + if (lookahead == 'n') ADVANCE(4281); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 928: + case 2681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'N') ADVANCE(2998); + if (lookahead == 'f') ADVANCE(3005); + if (lookahead == 'n') ADVANCE(2894); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 929: + case 2682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == '_') ADVANCE(2682); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 930: + case 2683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2722); + if (lookahead == 'l') ADVANCE(2939); + if (lookahead == 'n') ADVANCE(2732); + if (lookahead == 'r') ADVANCE(2914); + if (lookahead == 'x') ADVANCE(2893); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 931: + case 2684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2722); + if (lookahead == 'l') ADVANCE(2939); + if (lookahead == 'n') ADVANCE(2732); + if (lookahead == 'r') ADVANCE(2932); + if (lookahead == 'x') ADVANCE(2904); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 932: + case 2685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'f') ADVANCE(2275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2722); + if (lookahead == 'l') ADVANCE(2942); + if (lookahead == 'n') ADVANCE(2732); + if (lookahead == 'r') ADVANCE(2914); + if (lookahead == 'x') ADVANCE(2893); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 933: + case 2686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'g') ADVANCE(942); - if (lookahead == 't') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2852); + if (lookahead == 'o') ADVANCE(2906); + if (lookahead == 'r') ADVANCE(2879); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 934: + case 2687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'h') ADVANCE(2434); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2852); + if (lookahead == 'o') ADVANCE(2911); + if (lookahead == 'r') ADVANCE(2879); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 935: + case 2688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'h') ADVANCE(2411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2829); + if (lookahead == 'e') ADVANCE(2956); + if (lookahead == 'o') ADVANCE(2733); + if (lookahead == 'u') ADVANCE(2950); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 936: + case 2689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'h') ADVANCE(943); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2829); + if (lookahead == 'e') ADVANCE(2956); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'u') ADVANCE(2960); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 937: + case 2690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'h') ADVANCE(943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2865); + if (lookahead == 'e') ADVANCE(2793); + if (lookahead == 'o') ADVANCE(2841); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 938: + case 2691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(913); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2865); + if (lookahead == 'e') ADVANCE(2799); + if (lookahead == 'o') ADVANCE(2841); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 939: + case 2692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2865); + if (lookahead == 'e') ADVANCE(2798); + if (lookahead == 'o') ADVANCE(2841); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 940: + case 2693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2833); + if (lookahead == 'e') ADVANCE(2925); + if (lookahead == 'o') ADVANCE(2419); + if (lookahead == 'r') ADVANCE(2978); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 941: + case 2694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2833); + if (lookahead == 'e') ADVANCE(2925); + if (lookahead == 'o') ADVANCE(2419); + if (lookahead == 'r') ADVANCE(2979); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 942: + case 2695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2828); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 943: + case 2696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'i') ADVANCE(950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2965); + if (lookahead == 'o') ADVANCE(2855); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 944: + case 2697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'k') ADVANCE(2360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2965); + if (lookahead == 'o') ADVANCE(2856); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 945: + case 2698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'k') ADVANCE(919); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2965); + if (lookahead == 'o') ADVANCE(2857); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 946: + case 2699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(940); - if (lookahead == 's') ADVANCE(2466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2993); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 947: + case 2700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2832); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 948: + case 2701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2946); + if (lookahead == 'e') ADVANCE(2850); + if (lookahead == 'i') ADVANCE(2736); + if (lookahead == 't') ADVANCE(2968); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 949: + case 2702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2946); + if (lookahead == 'e') ADVANCE(2850); + if (lookahead == 'i') ADVANCE(2738); + if (lookahead == 't') ADVANCE(2968); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 950: + case 2703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2994); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 951: + case 2704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2934); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 952: + case 2705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(982); - if (lookahead == 'r') ADVANCE(971); - if (lookahead == 'x') ADVANCE(964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2940); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 953: + case 2706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'l') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2970); + if (lookahead == 'l') ADVANCE(2975); + if (lookahead == 'o') ADVANCE(2837); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 954: + case 2707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'n') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2931); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 955: + case 2708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'n') ADVANCE(2283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2961); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 956: + case 2709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'n') ADVANCE(2438); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2483); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 957: + case 2710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'n') ADVANCE(2738); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2956); + if (lookahead == 'o') ADVANCE(2733); + if (lookahead == 'u') ADVANCE(2950); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 958: + case 2711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'n') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2867); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 959: + case 2712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'o') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2959); + if (lookahead == 'e') ADVANCE(2719); + if (lookahead == 'o') ADVANCE(4303); + if (lookahead == 'r') ADVANCE(2876); + if (lookahead == 't') ADVANCE(2417); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 960: + case 2713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2959); + if (lookahead == 'e') ADVANCE(2720); + if (lookahead == 'o') ADVANCE(4303); + if (lookahead == 'r') ADVANCE(2876); + if (lookahead == 't') ADVANCE(2417); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 961: + case 2714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'o') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2959); + if (lookahead == 'e') ADVANCE(2720); + if (lookahead == 'o') ADVANCE(3004); + if (lookahead == 'r') ADVANCE(2876); + if (lookahead == 't') ADVANCE(2417); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 962: + case 2715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'o') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2735); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 963: + case 2716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'p') ADVANCE(2381); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2973); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 964: + case 2717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'p') ADVANCE(962); - if (lookahead == 't') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2830); + if (lookahead == 'e') ADVANCE(2956); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'u') ADVANCE(2960); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 965: + case 2718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'a') ADVANCE(2967); + if (lookahead == 'o') ADVANCE(2855); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 966: + case 2719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(2368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'b') ADVANCE(2976); + if (lookahead == 'c') ADVANCE(2882); + if (lookahead == 'f') ADVANCE(4183); + if (lookahead == 't') ADVANCE(2760); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 967: + case 2720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(2314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'b') ADVANCE(2976); + if (lookahead == 'c') ADVANCE(2882); + if (lookahead == 'f') ADVANCE(3006); + if (lookahead == 't') ADVANCE(2760); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 968: + case 2721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(2449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'b') ADVANCE(2823); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 969: + case 2722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2804); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 970: + case 2723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2803); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 971: + case 2724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2801); + if (lookahead == 'h') ADVANCE(2447); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 972: + case 2725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2802); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 973: + case 2726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2753); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 974: + case 2727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2763); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 975: + case 2728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'r') ADVANCE(949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2808); + if (lookahead == 'h') ADVANCE(2447); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 976: + case 2729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2964); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 977: + case 2730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'u') ADVANCE(948); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + ADVANCE_MAP( + '=', 4724, + 'c', 2881, + 'e', 2905, + 'k', 2825, + 'o', 2977, + 'p', 2838, + 't', 2885, + 'y', 2937, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 978: + case 2731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + ADVANCE_MAP( + '=', 4724, + 'c', 2881, + 'e', 2905, + 'k', 2825, + 'o', 2985, + 'p', 2838, + 't', 2885, + 'y', 2937, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 979: + case 2732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(2739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'c') ADVANCE(2892); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 980: + case 2733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2986); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 981: + case 2734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(988); - if (lookahead == 't') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2716); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 982: + case 2735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2708); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 983: + case 2736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2747); + if (lookahead == 's') ADVANCE(2971); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 984: + case 2737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 's') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2815); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 985: + case 2738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2758); + if (lookahead == 's') ADVANCE(2971); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 986: + case 2739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2844); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 987: + case 2740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2781); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 988: + case 2741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2891); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 989: + case 2742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2988); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 990: + case 2743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 't') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'd') ADVANCE(2788); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 991: + case 2744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(948); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2992); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 992: + case 2745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4201); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 993: + case 2746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(926); - if (lookahead == 'y') ADVANCE(2429); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2991); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 994: + case 2747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4361); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 995: + case 2748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4540); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 996: + case 2749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'u') ADVANCE(951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4548); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 997: + case 2750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'v') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4384); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 998: + case 2751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'y') ADVANCE(2461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4298); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 999: + case 2752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4196); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1000: + case 2753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4350); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1001: + case 2754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4272); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1002: + case 2755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4314); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1003: + case 2756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(4294); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1004: + case 2757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2695); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1005: + case 2758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2658); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1006: + case 2759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3010); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1007: + case 2760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2729); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1008: + case 2761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3012); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1009: + case 2762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2927); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1010: + case 2763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2662); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1011: + case 2764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2949); + if (lookahead == 'o') ADVANCE(2880); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1012: + case 2765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2910); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1013: + case 2766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3009); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1014: + case 2767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1390); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2918); + if (lookahead == 'i') ADVANCE(2845); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1015: + case 2768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2918); + if (lookahead == 'i') ADVANCE(2848); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1016: + case 2769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1611); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2433); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1616); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1017: + case 2770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2913); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1018: + case 2771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1629); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2700); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1634); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1019: + case 2772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3018); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1020: + case 2773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1722); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3020); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1728); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1727); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1021: + case 2774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2954); + if (lookahead == 'o') ADVANCE(2883); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1022: + case 2775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1641); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2908); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1646); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1023: + case 2776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2916); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1024: + case 2777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2919); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1025: + case 2778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1287); - if (lookahead == '_') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2922); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1026: + case 2779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(3023); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1027: + case 2780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2420); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2467); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1028: + case 2781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2473); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1029: + case 2782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2541); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2491); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1030: + case 2783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1028); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2495); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1031: + case 2784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1028); - if (lookahead == '_') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2485); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1032: + case 2785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2676); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1033: + case 2786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1292); - if (lookahead == '_') ADVANCE(1033); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2943); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1034: + case 2787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2929); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1035: + case 2788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(646); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2499); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1036: + case 2789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(648); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'e') ADVANCE(2501); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1037: + case 2790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(650); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'f') ADVANCE(2822); + if (lookahead == 's') ADVANCE(2952); + if (lookahead == 't') ADVANCE(2813); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1038: + case 2791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '>') ADVANCE(651); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'f') ADVANCE(2822); + if (lookahead == 's') ADVANCE(2962); + if (lookahead == 't') ADVANCE(2813); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1039: + case 2792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'N') ADVANCE(1242); - if (lookahead == 'f') ADVANCE(2401); - if (lookahead == 'n') ADVANCE(2374); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'f') ADVANCE(2822); + if (lookahead == 's') ADVANCE(2962); + if (lookahead == 't') ADVANCE(2826); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1040: + case 2793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'N') ADVANCE(1242); - if (lookahead == 'f') ADVANCE(2401); - if (lookahead == 'n') ADVANCE(1243); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2816); + if (lookahead == 't') ADVANCE(2980); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1041: + case 2794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'N') ADVANCE(1242); - if (lookahead == 'f') ADVANCE(1250); - if (lookahead == 'n') ADVANCE(1243); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2821); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1042: + case 2795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == '_') ADVANCE(1042); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2463); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1043: + case 2796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(1149); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1044: + case 2797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(1155); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2945); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1045: + case 2798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(1157); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2827); + if (lookahead == 't') ADVANCE(2980); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1046: + case 2799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1147); - if (lookahead == 'o') ADVANCE(1174); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'g') ADVANCE(2827); + if (lookahead == 't') ADVANCE(2987); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1047: + case 2800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1147); - if (lookahead == 'o') ADVANCE(1188); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2767); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1048: + case 2801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1130); - if (lookahead == 'o') ADVANCE(1065); - if (lookahead == 'u') ADVANCE(1213); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(4319); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1049: + case 2802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1130); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1220); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(4342); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1050: + case 2803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1129); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(3015); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1051: + case 2804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1239); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2489); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1052: + case 2805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1199); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2824); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1053: + case 2806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1133); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2439); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1054: + case 2807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1240); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2449); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1055: + case 2808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1207); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(3017); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1056: + case 2809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1132); - if (lookahead == 'o') ADVANCE(1065); - if (lookahead == 'u') ADVANCE(1213); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'h') ADVANCE(2768); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1057: + case 2810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1222); - if (lookahead == 'o') ADVANCE(1149); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2966); + if (lookahead == 'r') ADVANCE(2757); + if (lookahead == 'y') ADVANCE(2958); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1058: + case 2811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'a') ADVANCE(1131); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1220); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2966); + if (lookahead == 'r') ADVANCE(2771); + if (lookahead == 'y') ADVANCE(2958); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1059: + case 2812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1117); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2704); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1060: + case 2813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1114); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2873); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1061: + case 2814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1115); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2746); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1062: + case 2815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1078); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2866); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1063: + case 2816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1089); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2947); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1064: + case 2817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'c') ADVANCE(1118); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2429); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1065: + case 2818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'd') ADVANCE(1233); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2875); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1066: + case 2819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'd') ADVANCE(1072); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2963); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1067: + case 2820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'd') ADVANCE(1086); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2705); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1068: + case 2821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'd') ADVANCE(1236); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2872); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1069: + case 2822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1108); - if (lookahead == 'o') ADVANCE(2396); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2796); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1070: + case 2823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1110); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2868); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1071: + case 2824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2294); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2848); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1072: + case 2825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2454); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2902); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1073: + case 2826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2633); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2874); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1074: + case 2827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2641); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'i') ADVANCE(2948); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1075: + case 2828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2477); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(4268); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1076: + case 2829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2391); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(2761); + if (lookahead == 't') ADVANCE(2724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1077: + case 2830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(2761); + if (lookahead == 't') ADVANCE(2728); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1078: + case 2831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2443); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(2756); + if (lookahead == 't') ADVANCE(2724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1079: + case 2832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2365); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(3014); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1080: + case 2833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2407); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'k') ADVANCE(2789); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1081: + case 2834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(2387); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(4532); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1082: + case 2835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1212); - if (lookahead == 'o') ADVANCE(1159); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 's') ADVANCE(4374); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1083: + case 2836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1109); - if (lookahead == 'o') ADVANCE(2396); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 's') ADVANCE(3003); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1084: + case 2837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1109); - if (lookahead == 'o') ADVANCE(1249); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2707); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1085: + case 2838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1050); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1086: + case 2839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1018); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2427); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1087: + case 2840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1256); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2834); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1088: + case 2841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1258); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2847); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1089: + case 2842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1022); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2699); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1090: + case 2843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1185); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2703); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1091: + case 2844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1053); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2818); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1092: + case 2845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1217); - if (lookahead == 'o') ADVANCE(1161); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2751); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1093: + case 2846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1182); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2752); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1094: + case 2847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1255); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2451); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1095: + case 2848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1176); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2772); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1096: + case 2849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1265); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2773); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1097: + case 2850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1184); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2900); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1098: + case 2851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1267); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2820); + if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 's') ADVANCE(3003); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1099: + case 2852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1193); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2941); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1100: + case 2853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1270); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2888); + if (lookahead == 'o') ADVANCE(2917); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1101: + case 2854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1189); - if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'l') ADVANCE(2888); + if (lookahead == 'o') ADVANCE(2920); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1102: + case 2855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1189); - if (lookahead == 'i') ADVANCE(1142); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2859); + if (lookahead == 'n') ADVANCE(2790); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1103: + case 2856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1036); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2859); + if (lookahead == 'n') ADVANCE(2791); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1104: + case 2857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1187); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2859); + if (lookahead == 'n') ADVANCE(2792); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1105: + case 2858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1192); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(3548); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3552); END_STATE(); - case 1106: + case 2859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1112); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2711); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1107: + case 2860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'e') ADVANCE(1111); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2437); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1108: + case 2861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'f') ADVANCE(2276); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2457); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1109: + case 2862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'f') ADVANCE(1251); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'm') ADVANCE(2479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1110: + case 2863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'g') ADVANCE(1123); - if (lookahead == 't') ADVANCE(1229); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(4191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1111: + case 2864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'g') ADVANCE(1128); - if (lookahead == 't') ADVANCE(1229); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(4346); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1112: + case 2865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'g') ADVANCE(1128); - if (lookahead == 't') ADVANCE(1235); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2741); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1113: + case 2866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(1101); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2797); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1114: + case 2867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(2412); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2739); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1115: + case 2868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(2435); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2737); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1116: + case 2869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(1126); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(3019); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1117: + case 2870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(1261); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2445); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1118: + case 2871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(1264); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(3021); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1119: + case 2872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'h') ADVANCE(1102); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2475); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1120: + case 2873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1066); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2981); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1121: + case 2874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1052); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2983); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1122: + case 2875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1152); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'n') ADVANCE(2784); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1123: + case 2876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1203); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2899); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1124: + case 2877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1067); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2675); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1125: + case 2878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1055); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2870); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1126: + case 2879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1142); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2860); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1127: + case 2880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1156); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2895); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1128: + case 2881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'i') ADVANCE(1210); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2903); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1129: + case 2882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'k') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2740); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1130: + case 2883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'k') ADVANCE(1088); - if (lookahead == 't') ADVANCE(1060); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2898); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1131: + case 2884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'k') ADVANCE(1088); - if (lookahead == 't') ADVANCE(1064); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2982); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1132: + case 2885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'k') ADVANCE(1081); - if (lookahead == 't') ADVANCE(1060); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2921); + if (lookahead == 'r') ADVANCE(2423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1133: + case 2886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'k') ADVANCE(1260); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2951); + if (lookahead == 'u') ADVANCE(2840); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3000); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1134: + case 2887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(2625); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2907); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1135: + case 2888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1121); - if (lookahead == 's') ADVANCE(2467); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2933); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1136: + case 2889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1121); - if (lookahead == 's') ADVANCE(1248); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2924); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1137: + case 2890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1134); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2923); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1138: + case 2891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1051); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2862); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1139: + case 2892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1054); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'o') ADVANCE(2743); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1140: + case 2893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1076); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2853); + if (lookahead == 't') ADVANCE(2770); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1141: + case 2894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1077); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(3607); + if (lookahead == 't') ADVANCE(3603); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3609); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3619); END_STATE(); - case 1142: + case 2895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1096); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(4289); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1143: + case 2896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1098); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2734); + if (lookahead == 'r') ADVANCE(2839); + if (lookahead == 's') ADVANCE(2745); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1144: + case 2897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1201); - if (lookahead == 'r') ADVANCE(1181); - if (lookahead == 'x') ADVANCE(1171); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2734); + if (lookahead == 'r') ADVANCE(2839); + if (lookahead == 's') ADVANCE(2766); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1145: + case 2898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1201); - if (lookahead == 'r') ADVANCE(1197); - if (lookahead == 'x') ADVANCE(1172); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(3011); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1146: + case 2899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1125); - if (lookahead == 's') ADVANCE(1248); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1147: + case 2900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1204); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2441); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1148: + case 2901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'l') ADVANCE(1208); - if (lookahead == 'r') ADVANCE(1181); - if (lookahead == 'x') ADVANCE(1171); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2443); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1149: + case 2902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1202); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2453); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1150: + case 2903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(2284); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2780); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1151: + case 2904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(2439); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'p') ADVANCE(2854); + if (lookahead == 't') ADVANCE(2776); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1152: + case 2905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1231); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'q') ADVANCE(2421); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1153: + case 2906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1266); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(4276); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1154: + case 2907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1268); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(4220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1155: + case 2908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1205); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(4357); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1156: + case 2909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1232); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2506); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1157: + case 2910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'n') ADVANCE(1206); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2995); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1158: + case 2911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1226); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2858); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1159: + case 2912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1169); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2726); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1160: + case 2913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1035); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2863); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1161: + case 2914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1170); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2887); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1162: + case 2915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1214); - if (lookahead == 'u') ADVANCE(1137); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1245); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2864); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1163: + case 2916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1230); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2869); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1164: + case 2917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1175); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2953); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1165: + case 2918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1186); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2750); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1166: + case 2919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1191); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(3024); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1167: + case 2920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1190); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2957); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1168: + case 2921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'o') ADVANCE(1234); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2455); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1169: + case 2922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'p') ADVANCE(2382); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2930); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1170: + case 2923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'p') ADVANCE(1257); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2493); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1171: + case 2924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'p') ADVANCE(1165); - if (lookahead == 't') ADVANCE(1093); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2996); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1172: + case 2925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'p') ADVANCE(1167); - if (lookahead == 't') ADVANCE(1097); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2861); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1173: + case 2926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1227); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2727); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1174: + case 2927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2369); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2842); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1175: + case 2928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2315); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2871); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1176: + case 2929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(2450); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2843); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1177: + case 2930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(870); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2678); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1178: + case 2931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1085); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2944); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1179: + case 2932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1228); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2890); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1180: + case 2933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1062); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'r') ADVANCE(2783); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1181: + case 2934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1164); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1182: + case 2935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1150); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2878); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1183: + case 2936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1151); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1184: + case 2937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1153); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1185: + case 2938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1138); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2431); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1186: + case 2939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1216); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2759); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1187: + case 2940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1139); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(3013); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1188: + case 2941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1252); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2749); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1189: + case 2942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1075); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2755); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1190: + case 2943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1219); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2461); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1191: + case 2944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1263); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2477); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1192: + case 2945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1271); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2487); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1193: + case 2946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1198); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2806); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1194: + case 2947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1091); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2972); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1195: + case 2948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1063); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 's') ADVANCE(2974); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1196: + case 2949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1154); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1197: + case 2950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1166); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2405); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1198: + case 2951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'r') ADVANCE(1038); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(3001); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1199: + case 2952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(837); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2410); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1200: + case 2953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1071); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1201: + case 2954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1087); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2656); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1202: + case 2955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1215); - if (lookahead == 't') ADVANCE(1122); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2512); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1203: + case 2956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1224); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2715); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1204: + case 2957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1074); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2660); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1205: + case 2958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1221); - if (lookahead == 't') ADVANCE(1122); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2786); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1206: + case 2959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1221); - if (lookahead == 't') ADVANCE(1127); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2769); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1207: + case 2960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1259); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(3007); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1208: + case 2961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1080); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2709); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1209: + case 2962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1094); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(3016); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1210: + case 2963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 's') ADVANCE(1225); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2469); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1211: + case 2964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1059); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2497); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1212: + case 2965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(844); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2723); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1213: + case 2966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(851); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2938); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1214: + case 2967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1246); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2725); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1215: + case 2968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(856); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2901); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1216: + case 2969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(832); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2677); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1217: + case 2970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1016); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2807); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1218: + case 2971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(872); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2889); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1219: + case 2972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1020); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2775); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1220: + case 2973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1253); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2782); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1221: + case 2974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1262); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 't') ADVANCE(2777); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1222: + case 2975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1061); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2794); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1223: + case 2976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1037); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2795); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1224: + case 2977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1095); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2912); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1225: + case 2978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 't') ADVANCE(1105); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2748); + if (lookahead == 'y') ADVANCE(4337); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1226: + case 2979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1180); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2748); + if (lookahead == 'y') ADVANCE(3008); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1227: + case 2980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1073); - if (lookahead == 'y') ADVANCE(2430); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2915); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1228: + case 2981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1073); - if (lookahead == 'y') ADVANCE(1254); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2754); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1229: + case 2982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1183); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2969); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1230: + case 2983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1223); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2779); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1231: + case 2984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1079); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2765); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1232: + case 2985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1100); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2926); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1233: + case 2986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1141); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2846); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1234: + case 2987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1195); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2928); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1235: + case 2988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1196); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'u') ADVANCE(2849); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1236: + case 2989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'u') ADVANCE(1143); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'v') ADVANCE(2762); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1237: + case 2990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'v') ADVANCE(1090); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'v') ADVANCE(2787); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1238: + case 2991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'v') ADVANCE(1104); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'w') ADVANCE(2459); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1239: + case 2992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'y') ADVANCE(2462); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'y') ADVANCE(2721); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1240: + case 2993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'y') ADVANCE(1269); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'y') ADVANCE(4369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1241: + case 2994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1245); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'y') ADVANCE(3022); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1242: + case 2995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2706); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'y') ADVANCE(2465); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1243: + case 2996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1702); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'y') ADVANCE(2481); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1244: + case 2997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1242); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3000); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1245: + case 2998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2724); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4613); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1246: + case 2999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2998); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1247: + case 3000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4631); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1248: + case 3001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1695); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1694); + lookahead == '@') ADVANCE(3451); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1249: + case 3002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1668); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1667); + lookahead == '@') ADVANCE(3451); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3002); END_STATE(); - case 1250: + case 3003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1671); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1670); + lookahead == '@') ADVANCE(3592); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3591); END_STATE(); - case 1251: + case 3004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1590); + lookahead == '@') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3564); END_STATE(); - case 1252: + case 3005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1655); + lookahead == '@') ADVANCE(3568); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3567); END_STATE(); - case 1253: + case 3006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1619); + lookahead == '@') ADVANCE(3482); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3481); END_STATE(); - case 1254: + case 3007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1676); + lookahead == '@') ADVANCE(3511); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3510); END_STATE(); - case 1255: + case 3008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1596); + lookahead == '@') ADVANCE(3574); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3573); END_STATE(); - case 1256: + case 3009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1674); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1673); + lookahead == '@') ADVANCE(3488); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3487); END_STATE(); - case 1257: + case 3010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1658); + lookahead == '@') ADVANCE(3571); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3570); END_STATE(); - case 1258: + case 3011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1715); + lookahead == '@') ADVANCE(3556); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3555); END_STATE(); - case 1259: + case 3012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1593); + lookahead == '@') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3622); END_STATE(); - case 1260: + case 3013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1685); + lookahead == '@') ADVANCE(3485); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3484); END_STATE(); - case 1261: + case 3014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1679); + lookahead == '@') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3582); END_STATE(); - case 1262: + case 3015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1622); + lookahead == '@') ADVANCE(3577); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3576); END_STATE(); - case 1263: + case 3016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1665); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1664); + lookahead == '@') ADVANCE(3514); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3513); END_STATE(); - case 1264: + case 3017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1682); + lookahead == '@') ADVANCE(3580); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3579); END_STATE(); - case 1265: + case 3018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1662); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1661); + lookahead == '@') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3558); END_STATE(); - case 1266: + case 3019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1601); + lookahead == '@') ADVANCE(3493); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3492); END_STATE(); - case 1267: + case 3020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1604); + lookahead == '@') ADVANCE(3496); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3495); END_STATE(); - case 1268: + case 3021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1692); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1691); + lookahead == '@') ADVANCE(3589); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3588); END_STATE(); - case 1269: + case 3022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1649); + lookahead == '@') ADVANCE(3541); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3540); END_STATE(); - case 1270: + case 3023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1689); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1688); + lookahead == '@') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3585); END_STATE(); - case 1271: + case 3024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2817); + if (lookahead == '=') ADVANCE(4724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1652); + lookahead == '@') ADVANCE(3544); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3543); END_STATE(); - case 1272: + case 3025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2492); - if (lookahead == '~') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '=') ADVANCE(4399); + if (lookahead == '~') ADVANCE(4410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1273: + case 3026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '>') ADVANCE(5149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1274: + case 3027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '>') ADVANCE(5145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1275: + case 3028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '>') ADVANCE(5137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1276: + case 3029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '>') ADVANCE(5141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1277: + case 3030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 1541, - '_', 1298, - 'i', 1541, - 'l', 1494, - 'r', 1480, - 'x', 1450, - '+', 1298, - '-', 1298, - 'B', 2731, - 'b', 2731, + 'I', 3432, + '_', 3052, + 'i', 3432, + 'l', 3366, + 'r', 3345, + 'x', 3306, + '+', 3052, + '-', 3052, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1278: + case 3031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1541); - if (lookahead == '_') ADVANCE(1298); - if (lookahead == 'i') ADVANCE(1317); + if (lookahead == 'I') ADVANCE(3432); + if (lookahead == '_') ADVANCE(3052); + if (lookahead == 'i') ADVANCE(3084); if (lookahead == '+' || - lookahead == '-') ADVANCE(1298); + lookahead == '-') ADVANCE(3052); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1279: + case 3032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 1541, - 'a', 1402, - 'i', 1425, - 'o', 1332, - 's', 2738, - 'u', 1512, - 'B', 2731, - 'b', 2731, + 'I', 3432, + 'a', 3217, + 'i', 3255, + 'o', 3102, + 's', 4645, + 'u', 3381, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1280: + case 3033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1541); - if (lookahead == 'i') ADVANCE(1541); - if (lookahead == 'l') ADVANCE(1494); - if (lookahead == 'r') ADVANCE(1480); - if (lookahead == 'x') ADVANCE(1450); + if (lookahead == 'I') ADVANCE(3432); + if (lookahead == 'i') ADVANCE(3432); + if (lookahead == 'l') ADVANCE(3366); + if (lookahead == 'r') ADVANCE(3345); + if (lookahead == 'x') ADVANCE(3306); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1281: + case 3034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1541); - if (lookahead == 'i') ADVANCE(1541); - if (lookahead == 'r') ADVANCE(1522); + if (lookahead == 'I') ADVANCE(3432); + if (lookahead == 'i') ADVANCE(3432); + if (lookahead == 'r') ADVANCE(3417); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1282: + case 3035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1541); - if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'I') ADVANCE(3432); + if (lookahead == 'i') ADVANCE(3432); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1283: + case 3036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1541); - if (lookahead == 'i') ADVANCE(1317); + if (lookahead == 'I') ADVANCE(3432); + if (lookahead == 'i') ADVANCE(3084); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1284: + case 3037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1542); - if (lookahead == 'f') ADVANCE(2402); - if (lookahead == 'n') ADVANCE(2375); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(3433); + if (lookahead == 'f') ADVANCE(4309); + if (lookahead == 'n') ADVANCE(3296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1285: + case 3038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1542); - if (lookahead == 'f') ADVANCE(2402); - if (lookahead == 'n') ADVANCE(1543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(3433); + if (lookahead == 'f') ADVANCE(4309); + if (lookahead == 'n') ADVANCE(4282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1286: + case 3039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1544); - if (lookahead == 'f') ADVANCE(1563); - if (lookahead == 'n') ADVANCE(1543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'N') ADVANCE(3435); + if (lookahead == 'f') ADVANCE(3454); + if (lookahead == 'n') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1287: + case 3040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1287); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1288: + case 3041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1289: + case 3042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1290); + if (lookahead == '_') ADVANCE(3043); if (lookahead == '+' || - lookahead == '-') ADVANCE(1290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '-') ADVANCE(3043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1290: + case 3043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1291: + case 3044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1292: + case 3045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1292); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1293: + case 3046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1294: + case 3047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1295); + if (lookahead == '_') ADVANCE(3048); if (lookahead == '+' || - lookahead == '-') ADVANCE(1295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '-') ADVANCE(3048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1295: + case 3048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1295); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1296: + case 3049: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '_') ADVANCE(3049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1298); - if (lookahead == 'l') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1478); - if (lookahead == 'x') ADVANCE(1449); + if (lookahead == '_') ADVANCE(3052); + if (lookahead == 'l') ADVANCE(3360); + if (lookahead == 'r') ADVANCE(3343); + if (lookahead == 'x') ADVANCE(3305); if (lookahead == '+' || - lookahead == '-') ADVANCE(1298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '-') ADVANCE(3052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1297: + case 3051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1298); + if (lookahead == '_') ADVANCE(3052); if (lookahead == '+' || - lookahead == '-') ADVANCE(1298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '-') ADVANCE(3052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1298: + case 3052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1298); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == '_') ADVANCE(3052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1299: + case 3053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3088); + if (lookahead == 'l') ADVANCE(3366); + if (lookahead == 'n') ADVANCE(3098); + if (lookahead == 'r') ADVANCE(3322); + if (lookahead == 'x') ADVANCE(3295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1300: + case 3054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1417); - if (lookahead == 'o') ADVANCE(1453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3239); + if (lookahead == 'o') ADVANCE(3318); + if (lookahead == 'r') ADVANCE(3274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1301: + case 3055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1417); - if (lookahead == 'o') ADVANCE(1469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3216); + if (lookahead == 'e') ADVANCE(3378); + if (lookahead == 'o') ADVANCE(3102); + if (lookahead == 'u') ADVANCE(3381); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1302: + case 3056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1400); - if (lookahead == 'o') ADVANCE(1326); - if (lookahead == 'u') ADVANCE(1500); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3256); + if (lookahead == 'e') ADVANCE(3168); + if (lookahead == 'o') ADVANCE(3227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1303: + case 3057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1400); - if (lookahead == 'o') ADVANCE(1329); - if (lookahead == 'u') ADVANCE(1500); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3215); + if (lookahead == 'e') ADVANCE(3337); + if (lookahead == 'o') ADVANCE(2420); + if (lookahead == 'r') ADVANCE(3405); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1304: + case 3058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3214); + if (lookahead == 'o') ADVANCE(3100); + if (lookahead == 'u') ADVANCE(3373); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1305: + case 3059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3214); + if (lookahead == 'o') ADVANCE(3110); + if (lookahead == 'u') ADVANCE(3373); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1306: + case 3060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1498); - if (lookahead == 'o') ADVANCE(1421); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1307: + case 3061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1456); - if (lookahead == 's') ADVANCE(1376); - if (lookahead == 'x') ADVANCE(1440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3393); + if (lookahead == 'o') ADVANCE(3245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1308: + case 3062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3393); + if (lookahead == 'o') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1309: + case 3063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3427); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1310: + case 3064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1481); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1311: + case 3065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1537); - if (lookahead == 'e') ADVANCE(1371); - if (lookahead == 'o') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3365); + if (lookahead == 'e') ADVANCE(3236); + if (lookahead == 'i') ADVANCE(3106); + if (lookahead == 't') ADVANCE(3396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1312: + case 3066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1491); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1313: + case 3067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3426); + if (lookahead == 'e') ADVANCE(3166); + if (lookahead == 'o') ADVANCE(3453); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1314: + case 3068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1402); - if (lookahead == 'o') ADVANCE(1332); - if (lookahead == 'u') ADVANCE(1512); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1315: + case 3069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1514); - if (lookahead == 'o') ADVANCE(1430); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1316: + case 3070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1419); - if (lookahead == 'o') ADVANCE(1469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3397); + if (lookahead == 'l') ADVANCE(3402); + if (lookahead == 'o') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1317: + case 3071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1318: + case 3072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1319: + case 3073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1374); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1320: + case 3074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1375); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(2484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1321: + case 3075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1380); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1322: + case 3076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3386); + if (lookahead == 'e') ADVANCE(3085); + if (lookahead == 'o') ADVANCE(3453); + if (lookahead == 'r') ADVANCE(3269); + if (lookahead == 't') ADVANCE(2418); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1323: + case 3077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1355); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3217); + if (lookahead == 'o') ADVANCE(3102); + if (lookahead == 'u') ADVANCE(3381); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1324: + case 3078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1381); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1325: + case 3079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2478); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1326: + case 3080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3260); + if (lookahead == 'o') ADVANCE(3312); + if (lookahead == 's') ADVANCE(3176); + if (lookahead == 'x') ADVANCE(3286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1327: + case 3081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3244); + if (lookahead == 'o') ADVANCE(3309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1328: + case 3082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1485); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3244); + if (lookahead == 'o') ADVANCE(3331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1329: + case 3083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'a') ADVANCE(3395); + if (lookahead == 'o') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1330: + case 3084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1331: + case 3085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'b') ADVANCE(3403); + if (lookahead == 'c') ADVANCE(3276); + if (lookahead == 'f') ADVANCE(3456); + if (lookahead == 't') ADVANCE(3133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1332: + case 3086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'b') ADVANCE(3206); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1333: + case 3087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1370); - if (lookahead == 'o') ADVANCE(2397); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1334: + case 3088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1372); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3181); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1335: + case 3089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3182); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1336: + case 3090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2408); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1337: + case 3091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2455); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1338: + case 3092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1339: + case 3093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2392); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1340: + case 3094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3184); + if (lookahead == 'h') ADVANCE(2448); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1341: + case 3095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1342: + case 3096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2366); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3392); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1343: + case 3097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3275); + if (lookahead == 'e') ADVANCE(3307); + if (lookahead == 'k') ADVANCE(3209); + if (lookahead == 'o') ADVANCE(3404); + if (lookahead == 'p') ADVANCE(3225); + if (lookahead == 't') ADVANCE(3279); + if (lookahead == 'y') ADVANCE(3353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1344: + case 3098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'c') ADVANCE(3294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1345: + case 3099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1371); - if (lookahead == 'o') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(4385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1346: + case 3100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(4424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1347: + case 3101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(4441); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1348: + case 3102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1499); - if (lookahead == 'o') ADVANCE(1435); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3418); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1349: + case 3103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1350: + case 3104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1318); - if (lookahead == 'o') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1351: + case 3105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1352: + case 3106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1464); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3132); + if (lookahead == 's') ADVANCE(3384); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1353: + case 3107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1354: + case 3108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1355: + case 3109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1356: + case 3110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3412); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1357: + case 3111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1358: + case 3112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1359: + case 3113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1471); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1360: + case 3114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'd') ADVANCE(3163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1361: + case 3115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1458); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(3424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1362: + case 3116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'e') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1363: + case 3117: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3118: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3119: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3120: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3165); + if (lookahead == 'o') ADVANCE(4304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3121: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3122: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3123: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3124: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3125: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3126: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3127: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3128: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(4273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3129: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3130: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3166); + if (lookahead == 'o') ADVANCE(3453); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3131: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3132: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3133: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3134: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3135: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3136: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3137: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3377); + if (lookahead == 'o') ADVANCE(3272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3138: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3087); + if (lookahead == 'o') ADVANCE(3404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3139: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3460); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3140: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3141: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3142: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3143: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3144: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3145: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3146: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3473); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3147: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3372); + if (lookahead == 'o') ADVANCE(3277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3148: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3149: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3150: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3478); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3151: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3152: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3465); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3153: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3154: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3471); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3155: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3156: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3157: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3158: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3159: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2486); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3160: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3161: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3162: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(3341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3163: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3164: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'e') ADVANCE(2502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3165: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'f') ADVANCE(4184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3166: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'f') ADVANCE(3456); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3167: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'f') ADVANCE(3204); + if (lookahead == 's') ADVANCE(3390); + if (lookahead == 't') ADVANCE(3189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3168: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(3193); + if (lookahead == 't') ADVANCE(3411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3169: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(3203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3170: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(2464); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3171: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(2472); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3172: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(3364); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3173: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'g') ADVANCE(3211); + if (lookahead == 't') ADVANCE(3406); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3174: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(4343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3175: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(4320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3176: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3177: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(4395); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3178: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(4393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3179: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3195); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3180: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3181: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(2490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3182: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3183: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(2440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3184: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3472); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3185: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(2450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3186: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'h') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3187: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3394); + if (lookahead == 'r') ADVANCE(3129); + if (lookahead == 'y') ADVANCE(3383); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3188: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3189: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3190: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3191: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3192: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3193: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3367); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3194: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(2430); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3195: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3196: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3197: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3198: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3391); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3199: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3382); + if (lookahead == 'r') ADVANCE(3144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3200: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3201: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3202: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3203: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3204: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3205: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3206: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3207: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3107); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3208: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3209: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3210: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3211: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'i') ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3212: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(4269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3213: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3214: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3124); + if (lookahead == 't') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3215: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3216: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3143); + if (lookahead == 't') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3217: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'k') ADVANCE(3143); + if (lookahead == 't') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3218: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(4535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3219: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(4437); + if (lookahead == 'r') ADVANCE(4439); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3220: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3188); + if (lookahead == 'n') ADVANCE(3352); + if (lookahead == 's') ADVANCE(3452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3221: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3188); + if (lookahead == 's') ADVANCE(3452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3222: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3366); + if (lookahead == 'r') ADVANCE(3345); + if (lookahead == 'x') ADVANCE(3306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3223: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3224: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(2428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3225: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3226: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3227: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3228: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3229: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3230: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3231: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3232: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3233: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(2452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3234: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3235: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3464); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3236: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3237: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3202); + if (lookahead == 'n') ADVANCE(3099); + if (lookahead == 's') ADVANCE(4377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3238: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3202); + if (lookahead == 's') ADVANCE(4377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3239: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3357); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3240: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3282); + if (lookahead == 'o') ADVANCE(3325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3241: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3360); + if (lookahead == 'r') ADVANCE(3343); + if (lookahead == 'x') ADVANCE(3305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3242: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3243: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3244: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'l') ADVANCE(3368); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3245: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(3247); + if (lookahead == 'n') ADVANCE(3167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3246: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); + END_STATE(); + case 3247: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3248: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(2438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3249: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(2458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3250: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'm') ADVANCE(2480); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3251: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(3361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3252: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(4192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3253: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'n') ADVANCE(4391); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); + END_STATE(); + case 3254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(4347); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1364: + case 3255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1473); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(4645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1365: + case 3256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1366: + case 3257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1367: + case 3258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1468); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1368: + case 3259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1508); - if (lookahead == 'o') ADVANCE(1437); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1369: + case 3260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1373); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1370: + case 3261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1371: + case 3262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1372: + case 3263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1388); - if (lookahead == 't') ADVANCE(1523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1373: + case 3264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1398); - if (lookahead == 't') ADVANCE(1529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1374: + case 3265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2436); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3415); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1375: + case 3266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2413); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1376: + case 3267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1403); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3407); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1377: + case 3268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2488); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'n') ADVANCE(3159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1378: + case 3269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2486); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1379: + case 3270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1389); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1380: + case 3271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1381: + case 3272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1382: + case 3273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1396); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1383: + case 3274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1384: + case 3275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1505); - if (lookahead == 'r') ADVANCE(1349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1385: + case 3276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1386: + case 3277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1387: + case 3278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1426); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3408); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1388: + case 3279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3327); + if (lookahead == 'r') ADVANCE(2424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1389: + case 3280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1412); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1390: + case 3281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1423); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3371); + if (lookahead == 'u') ADVANCE(3226); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1391: + case 3282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1509); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3344); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1392: + case 3283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1393: + case 3284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1394: + case 3285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1331); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3385); + if (lookahead == 'u') ADVANCE(3229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1395: + case 3286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1396: + case 3287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1414); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1397: + case 3288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1431); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1398: + case 3289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1399: + case 3290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1400: + case 3291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1338); - if (lookahead == 't') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1401: + case 3292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3410); + if (lookahead == 't') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1402: + case 3293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1360); - if (lookahead == 't') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1403: + case 3294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2530); - if (lookahead == 'r') ADVANCE(2532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'o') ADVANCE(3114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1404: + case 3295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3240); + if (lookahead == 't') ADVANCE(3141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1405: + case 3296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3608); + if (lookahead == 't') ADVANCE(3604); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1406: + case 3297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1385); - if (lookahead == 'n') ADVANCE(1325); - if (lookahead == 's') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(4290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1407: + case 3298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1385); - if (lookahead == 's') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3103); + if (lookahead == 'r') ADVANCE(3224); + if (lookahead == 's') ADVANCE(3139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1408: + case 3299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1405); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1409: + case 3300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(2436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1410: + case 3301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1404); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(2442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1411: + case 3302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(2444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1412: + case 3303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(2454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1413: + case 3304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1414: + case 3305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3289); + if (lookahead == 't') ADVANCE(3149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1415: + case 3306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1365); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'p') ADVANCE(3280); + if (lookahead == 't') ADVANCE(3141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1416: + case 3307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1478); - if (lookahead == 'x') ADVANCE(1449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'q') ADVANCE(2422); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1417: + case 3308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1490); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1418: + case 3309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1494); - if (lookahead == 'r') ADVANCE(1480); - if (lookahead == 'x') ADVANCE(1450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1419: + case 3310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1420: + case 3311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1393); - if (lookahead == 's') ADVANCE(1561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1421: + case 3312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1488); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4445); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1422: + case 3313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4443); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1423: + case 3314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2484); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(4358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1424: + case 3315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1425: + case 3316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2738); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1426: + case 3317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3416); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1427: + case 3318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1428: + case 3319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1429: + case 3320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1430: + case 3321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1493); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1431: + case 3322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1432: + case 3323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1520); - if (lookahead == 't') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1433: + case 3324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1434: + case 3325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3380); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1435: + case 3326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3376); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1436: + case 3327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2456); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1437: + case 3328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1448); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3479); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1438: + case 3329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1454); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1439: + case 3330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1455); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2494); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1440: + case 3331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1457); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3457); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1441: + case 3332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1504); - if (lookahead == 'u') ADVANCE(1410); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1442: + case 3333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1472); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3401); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1443: + case 3334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1479); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3417); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1444: + case 3335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1506); - if (lookahead == 'u') ADVANCE(1408); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1445: + case 3336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1446: + case 3337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1447: + case 3338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2383); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1448: + case 3339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1449: + case 3340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1445); - if (lookahead == 't') ADVANCE(1356); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1450: + case 3341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1443); - if (lookahead == 't') ADVANCE(1363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1451: + case 3342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1452: + case 3343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1453: + case 3344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1454: + case 3345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2480); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'r') ADVANCE(3291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1455: + case 3346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2392); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1456: + case 3347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'u') ADVANCE(3229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1457: + case 3348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1458: + case 3349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(4647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1459: + case 3350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1460: + case 3351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1461: + case 3352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1462: + case 3353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1422); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2426); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1463: + case 3354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1464: + case 3355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1409); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1465: + case 3356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1466: + case 3357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1467: + case 3358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1428); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3390); + if (lookahead == 't') ADVANCE(3189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1468: + case 3359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1469: + case 3360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1470: + case 3361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3375); + if (lookahead == 't') ADVANCE(3210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1471: + case 3362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1472: + case 3363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2478); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1473: + case 3364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1474: + case 3365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1353); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1475: + case 3366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1476: + case 3367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3398); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1477: + case 3368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1429); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1478: + case 3369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1439); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(2664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1479: + case 3370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1511); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 's') ADVANCE(3400); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1480: + case 3371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1442); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1481: + case 3372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1482: + case 3373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'u') ADVANCE(1408); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2406); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1483: + case 3374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1484: + case 3375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1485: + case 3376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1486: + case 3377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1487: + case 3378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1488: + case 3379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1502); - if (lookahead == 't') ADVANCE(1387); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1489: + case 3380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1490: + case 3381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1491: + case 3382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1492: + case 3383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1357); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1493: + case 3384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1513); - if (lookahead == 't') ADVANCE(1397); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1494: + case 3385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1495: + case 3386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1496: + case 3387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3177); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1497: + case 3388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1516); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1498: + case 3389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1499: + case 3390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1500: + case 3391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1501: + case 3392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(2498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1502: + case 3393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1503: + case 3394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1504: + case 3395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1505: + case 3396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1506: + case 3397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1507: + case 3398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1508: + case 3399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1509: + case 3400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1377); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1510: + case 3401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1378); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 't') ADVANCE(3369); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1511: + case 3402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1512: + case 3403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1513: + case 3404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1514: + case 3405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3118); + if (lookahead == 'y') ADVANCE(3459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1515: + case 3406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1361); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1516: + case 3407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1364); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1517: + case 3408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1496); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3379); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1518: + case 3409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1408); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1519: + case 3410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1408); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1520: + case 3411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3340); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1521: + case 3412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1347); - if (lookahead == 'y') ADVANCE(2431); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1522: + case 3413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1347); - if (lookahead == 'y') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1523: + case 3414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1465); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1524: + case 3415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1507); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1525: + case 3416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3152); + if (lookahead == 'y') ADVANCE(4338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1526: + case 3417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1343); - if (lookahead == 'y') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3152); + if (lookahead == 'y') ADVANCE(3459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1527: + case 3418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1413); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'u') ADVANCE(3243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1528: + case 3419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1476); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(3134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1529: + case 3420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1477); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'v') ADVANCE(3162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1530: + case 3421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1366); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(2460); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1531: + case 3422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1415); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(3200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1532: + case 3423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'w') ADVANCE(3201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1533: + case 3424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1367); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(3086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1534: + case 3425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1391); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(4370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1535: + case 3426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1392); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1536: + case 3427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(3477); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1537: + case 3428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1538: + case 3429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1539: + case 3430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'a') ADVANCE(3438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1540: + case 3431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'a') ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1541: + case 3432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1542: + case 3433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'f') ADVANCE(4614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1543: + case 3434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'f') ADVANCE(3611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1544: + case 3435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'f') ADVANCE(3436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1545: + case 3436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'i') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1546: + case 3437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'n') ADVANCE(3433); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1547: + case 3438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'n') ADVANCE(4632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1548: + case 3439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'n') ADVANCE(3435); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1549: + case 3440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1564); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == 'n') ADVANCE(3455); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1550: + case 3441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '_') ADVANCE(4609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1551: + case 3442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1552: + case 3443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + lookahead == '_') ADVANCE(4610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1553: + case 3444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1554: + case 3445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1555: + case 3446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1556: + case 3447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1557: + case 3448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1558: + case 3449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1559: + case 3450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1560: + case 3451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3451); END_STATE(); - case 1561: + case 3452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3592); END_STATE(); - case 1562: + case 3453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3565); END_STATE(); - case 1563: + case 3454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3568); END_STATE(); - case 1564: + case 3455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3673); END_STATE(); - case 1565: + case 3456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3482); END_STATE(); - case 1566: + case 3457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); END_STATE(); - case 1567: + case 3458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3511); END_STATE(); - case 1568: + case 3459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3574); END_STATE(); - case 1569: + case 3460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3488); END_STATE(); - case 1570: + case 3461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3571); END_STATE(); - case 1571: + case 3462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3556); END_STATE(); - case 1572: + case 3463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3623); END_STATE(); - case 1573: + case 3464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3645); END_STATE(); - case 1574: + case 3465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3639); END_STATE(); - case 1575: + case 3466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 1576: + case 3467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3583); END_STATE(); - case 1577: + case 3468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3577); END_STATE(); - case 1578: + case 3469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3514); END_STATE(); - case 1579: + case 3470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3562); END_STATE(); - case 1580: + case 3471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3642); END_STATE(); - case 1581: + case 3472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3580); END_STATE(); - case 1582: + case 3473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3559); END_STATE(); - case 1583: + case 3474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3493); END_STATE(); - case 1584: + case 3475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3496); END_STATE(); - case 1585: + case 3476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3589); END_STATE(); - case 1586: + case 3477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3541); END_STATE(); - case 1587: + case 3478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3586); END_STATE(); - case 1588: + case 3479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3544); END_STATE(); - case 1589: + case 3480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if (lookahead == ',') ADVANCE(3482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3480); END_STATE(); - case 1590: + case 3481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1591); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1590); + lookahead == '@') ADVANCE(3482); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3481); END_STATE(); - case 1591: + case 3482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3482); END_STATE(); - case 1592: + case 3483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + if (lookahead == ',') ADVANCE(3485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3483); END_STATE(); - case 1593: + case 3484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1593); + lookahead == '@') ADVANCE(3485); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3484); END_STATE(); - case 1594: + case 3485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 1595: + case 3486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if (lookahead == ',') ADVANCE(3488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3486); END_STATE(); - case 1596: + case 3487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1597); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1596); + lookahead == '@') ADVANCE(3488); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3487); END_STATE(); - case 1597: + case 3488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3488); END_STATE(); - case 1598: + case 3489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); + if (lookahead == ',') ADVANCE(3490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3489); END_STATE(); - case 1599: + case 3490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3490); END_STATE(); - case 1600: + case 3491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if (lookahead == ',') ADVANCE(3493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3491); END_STATE(); - case 1601: + case 3492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1602); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1601); + lookahead == '@') ADVANCE(3493); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3492); END_STATE(); - case 1602: + case 3493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3493); END_STATE(); - case 1603: + case 3494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if (lookahead == ',') ADVANCE(3496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3494); END_STATE(); - case 1604: + case 3495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1604); + lookahead == '@') ADVANCE(3496); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3495); END_STATE(); - case 1605: + case 3496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3496); END_STATE(); - case 1606: + case 3497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'e') ADVANCE(1607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'e') ADVANCE(3498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); END_STATE(); - case 1607: + case 3498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'n') ADVANCE(1608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'n') ADVANCE(3499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); END_STATE(); - case 1608: + case 3499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'v') ADVANCE(847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'v') ADVANCE(2401); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); END_STATE(); - case 1609: + case 3500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); + if (lookahead == ',') ADVANCE(3508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3500); END_STATE(); - case 1610: + case 3501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'e') ADVANCE(3503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1611: + case 3502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'e') ADVANCE(3504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1612: + case 3503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'n') ADVANCE(3506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1613: + case 3504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'n') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1614: + case 3505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'v') ADVANCE(3508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1615: + case 3506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'v') ADVANCE(2402); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1616: + case 3507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1616); + lookahead == '@') ADVANCE(3508); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3507); END_STATE(); - case 1617: + case 3508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 1618: + case 3509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + if (lookahead == ',') ADVANCE(3511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3509); END_STATE(); - case 1619: + case 3510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1619); + lookahead == '@') ADVANCE(3511); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3510); END_STATE(); - case 1620: + case 3511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3511); END_STATE(); - case 1621: + case 3512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + if (lookahead == ',') ADVANCE(3514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3512); END_STATE(); - case 1622: + case 3513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1622); + lookahead == '@') ADVANCE(3514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3513); END_STATE(); - case 1623: + case 3514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3514); END_STATE(); - case 1624: + case 3515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'e') ADVANCE(1625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'e') ADVANCE(3516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 1625: + case 3516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'n') ADVANCE(1626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'n') ADVANCE(3517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 1626: + case 3517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'v') ADVANCE(2458); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'v') ADVANCE(4365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 1627: + case 3518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 1628: + case 3519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'e') ADVANCE(3521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1629: + case 3520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'e') ADVANCE(3522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1630: + case 3521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'n') ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1631: + case 3522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'n') ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1632: + case 3523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'v') ADVANCE(3526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1633: + case 3524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2459); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'v') ADVANCE(4366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1634: + case 3525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1635); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1634); + lookahead == '@') ADVANCE(3526); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 1635: + case 3526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 1636: + case 3527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'e') ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'e') ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 1637: + case 3528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'n') ADVANCE(1638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'n') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 1638: + case 3529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'v') ADVANCE(2446); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'v') ADVANCE(4353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 1639: + case 3530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 1640: + case 3531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'e') ADVANCE(3533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1641: + case 3532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'e') ADVANCE(3534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1642: + case 3533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'n') ADVANCE(3536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1643: + case 3534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'n') ADVANCE(3535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1644: + case 3535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'v') ADVANCE(3538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1645: + case 3536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'v') ADVANCE(4354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1646: + case 3537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1646); + lookahead == '@') ADVANCE(3538); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3537); END_STATE(); - case 1647: + case 3538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 1648: + case 3539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if (lookahead == ',') ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3539); END_STATE(); - case 1649: + case 3540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1649); + lookahead == '@') ADVANCE(3541); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3540); END_STATE(); - case 1650: + case 3541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3541); END_STATE(); - case 1651: + case 3542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if (lookahead == ',') ADVANCE(3544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3542); END_STATE(); - case 1652: + case 3543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1653); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1652); + lookahead == '@') ADVANCE(3544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3543); END_STATE(); - case 1653: + case 3544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3544); END_STATE(); - case 1654: + case 3545: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ' ') ADVANCE(818); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3552); + END_STATE(); + case 3546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if (lookahead == ' ') ADVANCE(818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); END_STATE(); - case 1655: + case 3547: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3547); + END_STATE(); + case 3548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 'a') ADVANCE(3550); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1655); + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3552); END_STATE(); - case 1656: + case 3549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); + if (lookahead == 'a') ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); END_STATE(); - case 1657: + case 3550: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 't') ADVANCE(3545); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3552); + END_STATE(); + case 3551: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 't') ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); + END_STATE(); + case 3552: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3552); + END_STATE(); + case 3553: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); + END_STATE(); + case 3554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if (lookahead == ',') ADVANCE(3556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3554); END_STATE(); - case 1658: + case 3555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1658); + lookahead == '@') ADVANCE(3556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3555); END_STATE(); - case 1659: + case 3556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3556); END_STATE(); - case 1660: + case 3557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if (lookahead == ',') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3557); END_STATE(); - case 1661: + case 3558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1661); + lookahead == '@') ADVANCE(3559); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3558); END_STATE(); - case 1662: + case 3559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3559); END_STATE(); - case 1663: + case 3560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(1665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if (lookahead == ',') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3560); END_STATE(); - case 1664: + case 3561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1665); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1664); + lookahead == '@') ADVANCE(3562); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3561); END_STATE(); - case 1665: + case 3562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3562); END_STATE(); - case 1666: + case 3563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(1668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if (lookahead == ',') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3563); END_STATE(); - case 1667: + case 3564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1668); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1667); + lookahead == '@') ADVANCE(3565); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3564); END_STATE(); - case 1668: + case 3565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3565); END_STATE(); - case 1669: + case 3566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if (lookahead == ',') ADVANCE(3568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3566); END_STATE(); - case 1670: + case 3567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1671); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1670); + lookahead == '@') ADVANCE(3568); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3567); END_STATE(); - case 1671: + case 3568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3568); END_STATE(); - case 1672: + case 3569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if (lookahead == ',') ADVANCE(3571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3569); END_STATE(); - case 1673: + case 3570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1674); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1673); + lookahead == '@') ADVANCE(3571); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3570); END_STATE(); - case 1674: + case 3571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3571); END_STATE(); - case 1675: + case 3572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if (lookahead == ',') ADVANCE(3574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3572); END_STATE(); - case 1676: + case 3573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1677); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1676); + lookahead == '@') ADVANCE(3574); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3573); END_STATE(); - case 1677: + case 3574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3574); END_STATE(); - case 1678: + case 3575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if (lookahead == ',') ADVANCE(3577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3575); END_STATE(); - case 1679: + case 3576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1679); + lookahead == '@') ADVANCE(3577); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3576); END_STATE(); - case 1680: + case 3577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3577); END_STATE(); - case 1681: + case 3578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if (lookahead == ',') ADVANCE(3580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3578); END_STATE(); - case 1682: + case 3579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1682); + lookahead == '@') ADVANCE(3580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3579); END_STATE(); - case 1683: + case 3580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3580); END_STATE(); - case 1684: + case 3581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if (lookahead == ',') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3581); END_STATE(); - case 1685: + case 3582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1686); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1685); + lookahead == '@') ADVANCE(3583); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3582); END_STATE(); - case 1686: + case 3583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3583); END_STATE(); - case 1687: + case 3584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(1689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if (lookahead == ',') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3584); END_STATE(); - case 1688: + case 3585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1689); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1688); + lookahead == '@') ADVANCE(3586); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3585); END_STATE(); - case 1689: + case 3586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3586); END_STATE(); - case 1690: + case 3587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(1692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if (lookahead == ',') ADVANCE(3589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3587); END_STATE(); - case 1691: + case 3588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1692); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1691); + lookahead == '@') ADVANCE(3589); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3588); END_STATE(); - case 1692: + case 3589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3589); END_STATE(); - case 1693: + case 3590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(1695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); + if (lookahead == ',') ADVANCE(3592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3590); END_STATE(); - case 1694: + case 3591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1695); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1694); + lookahead == '@') ADVANCE(3592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3591); END_STATE(); - case 1695: + case 3592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3592); END_STATE(); - case 1696: + case 3593: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ' ') ADVANCE(682); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); + END_STATE(); + case 3594: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ' ') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); + END_STATE(); + case 3595: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ' ') ADVANCE(1347); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); + END_STATE(); + case 3596: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == ' ') ADVANCE(1347); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); + END_STATE(); + case 3597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 'i') ADVANCE(3599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1697: + case 3598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 'i') ADVANCE(3600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1698: + case 3599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 'n') ADVANCE(3598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1699: + case 3600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 't') ADVANCE(3601); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1700: + case 3601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 'y') ADVANCE(3602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1701: + case 3602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + if (lookahead == ',') ADVANCE(3620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 1702: + case 3603: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'o') ADVANCE(3593); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); + END_STATE(); + case 3604: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'o') ADVANCE(3594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); + END_STATE(); + case 3605: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 't') ADVANCE(3595); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); + END_STATE(); + case 3606: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 't') ADVANCE(3596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); + END_STATE(); + case 3607: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'u') ADVANCE(3605); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); + END_STATE(); + case 3608: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'u') ADVANCE(3606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); + END_STATE(); + case 3609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1706); + lookahead == 'i') ADVANCE(3613); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1703: + case 3610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1708); + lookahead == 'i') ADVANCE(3615); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1704: + case 3611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'i') ADVANCE(3614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1705: + case 3612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'i') ADVANCE(3616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1706: + case 3613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1703); + lookahead == 'n') ADVANCE(3610); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1707: + case 3614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'n') ADVANCE(3612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1708: + case 3615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1711); + lookahead == 't') ADVANCE(3618); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1709: + case 3616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 't') ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1710: + case 3617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'y') ADVANCE(3620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1711: + case 3618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1712); + lookahead == 'y') ADVANCE(3619); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1712: + case 3619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 1713: + case 3620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 1714: + case 3621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if (lookahead == ',') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3621); END_STATE(); - case 1715: + case 3622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1716); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1715); + lookahead == '@') ADVANCE(3623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3622); END_STATE(); - case 1716: + case 3623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3623); END_STATE(); - case 1717: + case 3624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'e') ADVANCE(1718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3627); END_STATE(); - case 1718: + case 3625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'n') ADVANCE(1719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3627); END_STATE(); - case 1719: + case 3626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'v') ADVANCE(2279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'v') ADVANCE(4186); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3627); END_STATE(); - case 1720: + case 3627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); + if (lookahead == ',') ADVANCE(3635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3627); END_STATE(); - case 1721: + case 3628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(1723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'e') ADVANCE(3630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1722: + case 3629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(1724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'e') ADVANCE(3631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1723: + case 3630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(1725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'n') ADVANCE(3632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1724: + case 3631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'n') ADVANCE(3633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1725: + case 3632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(2280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'v') ADVANCE(4187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1726: + case 3633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'v') ADVANCE(3636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1727: + case 3634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1728); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1727); + lookahead == '@') ADVANCE(3635); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3634); END_STATE(); - case 1728: + case 3635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 1729: + case 3636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3490); END_STATE(); - case 1730: + case 3637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(1732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if (lookahead == ',') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3637); END_STATE(); - case 1731: + case 3638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1732); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1731); + lookahead == '@') ADVANCE(3639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3638); END_STATE(); - case 1732: + case 3639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3639); END_STATE(); - case 1733: + case 3640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if (lookahead == ',') ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3640); END_STATE(); - case 1734: + case 3641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1735); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); + lookahead == '@') ADVANCE(3642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3641); END_STATE(); - case 1735: + case 3642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3642); END_STATE(); - case 1736: + case 3643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(1738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if (lookahead == ',') ADVANCE(3645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3643); END_STATE(); - case 1737: + case 3644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1738); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1737); + lookahead == '@') ADVANCE(3645); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3644); END_STATE(); - case 1738: + case 3645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3645); END_STATE(); - case 1739: + case 3646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + lookahead == 'i') ADVANCE(3648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 1740: + case 3647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + lookahead == 'n') ADVANCE(3646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 1741: + case 3648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + lookahead == 't') ADVANCE(3649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 1742: + case 3649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + lookahead == 'y') ADVANCE(3650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 1743: + case 3650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + if (lookahead == ',') ADVANCE(3660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 1744: + case 3651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1748); + lookahead == 'i') ADVANCE(3655); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 1745: + case 3652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'i') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1746: + case 3653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1744); + lookahead == 'n') ADVANCE(3651); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 1747: + case 3654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'n') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1748: + case 3655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1751); + lookahead == 't') ADVANCE(3658); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 1749: + case 3656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 't') ADVANCE(3657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1750: + case 3657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'y') ADVANCE(3660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1751: + case 3658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1752); + lookahead == 'y') ADVANCE(3659); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 1752: + case 3659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 1753: + case 3660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 1754: + case 3661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + lookahead == 'i') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 1755: + case 3662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + lookahead == 'n') ADVANCE(3661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 1756: + case 3663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + lookahead == 't') ADVANCE(3664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 1757: + case 3664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + lookahead == 'y') ADVANCE(3665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 1758: + case 3665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + if (lookahead == ',') ADVANCE(3670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 1759: + case 3666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 'i') ADVANCE(3668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 1760: + case 3667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 'n') ADVANCE(3666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 1761: + case 3668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 't') ADVANCE(3669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 1762: + case 3669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 'y') ADVANCE(3670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 1763: + case 3670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 1764: + case 3671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if (lookahead == ',') ADVANCE(3673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3671); END_STATE(); - case 1765: + case 3672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1766); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1765); + lookahead == '@') ADVANCE(3673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3672); END_STATE(); - case 1766: + case 3673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3673); END_STATE(); - case 1767: + case 3674: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 1768: + case 3675: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 1769: + case 3676: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1767); + if (lookahead == '*') ADVANCE(3674); END_STATE(); - case 1770: + case 3677: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1773); + if (lookahead == '/') ADVANCE(3680); END_STATE(); - case 1771: + case 3678: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1772: + case 3679: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 1773: + case 3680: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1774: + case 3681: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1768); + if (lookahead == '+') ADVANCE(3675); END_STATE(); - case 1775: + case 3682: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1776: + case 3683: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 1777: + case 3684: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 1778: + case 3685: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 1779: + case 3686: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 1780: + case 3687: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 1781: + case 3688: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 1782: + case 3689: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 1783: + case 3690: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 1784: + case 3691: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 1785: + case 3692: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 1786: + case 3693: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 1787: + case 3694: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 1788: + case 3695: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 1789: + case 3696: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 1790: + case 3697: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 1791: + case 3698: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 1792: + case 3699: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1793: + case 3700: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1794); + if (lookahead == '=') ADVANCE(3701); END_STATE(); - case 1794: + case 3701: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1795: + case 3702: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 1796: + case 3703: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1797); + if (lookahead == '=') ADVANCE(3704); END_STATE(); - case 1797: + case 3704: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1798: + case 3705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ':', 2810, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, - '\t', 9, - ' ', 9, - 0x0b, 450, - '\f', 450, + '\n', 4167, + '\r', 15, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ':', 4717, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, + '\t', 8, + ' ', 8, + 0x0b, 500, + '\f', 500, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3854); END_STATE(); - case 1799: + case 3706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ':', 2810, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, - '\t', 9, - ' ', 9, - 0x0b, 450, - '\f', 450, + '\n', 4167, + '\r', 15, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ':', 4717, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, + '\t', 8, + ' ', 8, + 0x0b, 500, + '\f', 500, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3854); END_STATE(); - case 1800: + case 3707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ':', 2810, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, - '\t', 9, - ' ', 9, - 0x0b, 450, - '\f', 450, + '\n', 4167, + '\r', 15, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ':', 4717, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, + '\t', 8, + ' ', 8, + 0x0b, 500, + '\f', 500, ); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && @@ -38880,56 +49193,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3854); END_STATE(); - case 1801: + case 3708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2260, - '\r', 16, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ':', 2810, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, - '\t', 9, - ' ', 9, - 0x0b, 450, - '\f', 450, + '\n', 4167, + '\r', 15, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ':', 4717, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3753, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, + '\t', 8, + ' ', 8, + 0x0b, 500, + '\f', 500, ); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && @@ -38937,7185 +49250,7189 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3854); END_STATE(); - case 1802: + case 3709: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); + END_STATE(); + case 3710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1803: + case 3711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1804: + case 3712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1805: + case 3713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1806: + case 3714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1807: + case 3715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3753, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1808: + case 3716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3755, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1809: + case 3717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3754, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3750, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1810: + case 3718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1847, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1843, - 's', 1932, - 'x', 1909, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + ')', 4210, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3756, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3758, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1811: + case 3719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - ')', 2303, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1849, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1851, - 's', 1932, - 'x', 1909, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1812: + case 3720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1813: + case 3721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1814: + case 3722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1815: + case 3723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1816: + case 3724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1817: + case 3725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1818: + case 3726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1819: + case 3727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3753, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1820: + case 3728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3755, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + '}', 4322, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1821: + case 3729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1822: + case 3730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1823: + case 3731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1824: + case 3732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1825: + case 3733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - '}', 2415, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3753, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1826: + case 3734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3755, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1827: + case 3735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3754, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3750, + 's', 3839, + 'x', 3816, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1828: + case 3736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1847, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1843, - 's', 1932, - 'x', 1909, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3756, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3758, + 's', 3839, + 'x', 3816, + '|', 4171, + '}', 4322, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1829: + case 3737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1849, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1851, - 's', 1932, - 'x', 1909, - '|', 2264, - '}', 2415, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3754, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3750, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1830: + case 3738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1847, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1843, - 's', 1932, - 'x', 1909, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3756, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3758, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); - END_STATE(); - case 1831: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1849, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1851, - 's', 1932, - 'x', 1909, - '|', 2264, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1832: + case 3739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2545, - '/', 1770, - ':', 2810, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, - '\t', 377, - ' ', 377, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4452, + '/', 3677, + ':', 4717, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, + '\t', 376, + ' ', 376, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1833: + case 3740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2545, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4452, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1834: + case 3741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ':', 2810, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, - '\t', 377, - ' ', 377, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ':', 4717, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, + '\t', 376, + ' ', 376, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1835: + case 3742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ':', 2810, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, - '\t', 377, - ' ', 377, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ':', 4717, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, + '\t', 376, + ' ', 376, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1836: + case 3743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ':', 2810, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1870, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, - '\t', 377, - ' ', 377, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ':', 4717, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3777, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, + '\t', 376, + ' ', 376, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1837: + case 3744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1838: + case 3745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3775, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1839: + case 3746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1870, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1917, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - 0xb5, 1928, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3777, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3824, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1840: + case 3747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1905, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1917, - 's', 1932, - 'x', 1909, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3812, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3824, + 's', 3839, + 'x', 3816, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1841: + case 3748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(4069); + if (lookahead == '#') ADVANCE(6369); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1842: + case 3749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 1875, - '-', 1877, - '>', 2829, - 'I', 1946, - '_', 1877, - 'i', 1946, - 'n', 1886, - 'r', 1918, - 'B', 2731, - 'b', 2731, + '+', 3781, + '-', 3783, + '>', 5129, + 'I', 3853, + '_', 3783, + 'i', 3853, + 'n', 3793, + 'r', 3825, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1843: + case 3750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1888); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'r') ADVANCE(1785); - if (lookahead == 'u') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3795); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'r') ADVANCE(3692); + if (lookahead == 'u') ADVANCE(3841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1844: + case 3751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1908); - if (lookahead == '>') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3815); + if (lookahead == '>') ADVANCE(5121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1845: + case 3752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1889); - if (lookahead == '>') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3796); + if (lookahead == '>') ADVANCE(5125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1846: + case 3753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 1907, - '>', 2829, - 'I', 1946, - 'i', 1946, - 'n', 1886, - 'r', 1918, - 'B', 2731, - 'b', 2731, + '+', 3814, + '>', 5129, + 'I', 3853, + 'i', 3853, + 'n', 3793, + 'r', 3825, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1847: + case 3754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1907); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'n') ADVANCE(1886); - if (lookahead == 'r') ADVANCE(1918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3814); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'n') ADVANCE(3793); + if (lookahead == 'r') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1848: + case 3755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 1911, - '>', 644, - 'I', 1946, - 'i', 1946, - 'n', 1886, - 'r', 1923, - 'B', 2731, - 'b', 2731, + '+', 3818, + '>', 2198, + 'I', 3853, + 'i', 3853, + 'n', 3793, + 'r', 3830, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1849: + case 3756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1911); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'n') ADVANCE(1886); - if (lookahead == 'r') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3818); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'n') ADVANCE(3793); + if (lookahead == 'r') ADVANCE(3830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1850: + case 3757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 1876, - '-', 1877, - '>', 644, - 'I', 1946, - '_', 1877, - 'i', 1946, - 'n', 1886, - 'r', 1923, - 'B', 2731, - 'b', 2731, + '+', 3782, + '-', 3783, + '>', 2198, + 'I', 3853, + '_', 3783, + 'i', 3853, + 'n', 3793, + 'r', 3830, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1851: + case 3758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1890); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'r') ADVANCE(1785); - if (lookahead == 'u') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3797); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'r') ADVANCE(3692); + if (lookahead == 'u') ADVANCE(3845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1852: + case 3759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1915); - if (lookahead == '>') ADVANCE(647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3822); + if (lookahead == '>') ADVANCE(2201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1853: + case 3760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1891); - if (lookahead == '>') ADVANCE(649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '+') ADVANCE(3798); + if (lookahead == '>') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1854: + case 3761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '-') ADVANCE(3787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1855: + case 3762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '-') ADVANCE(3803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1856: + case 3763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '-') ADVANCE(3850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1857: + case 3764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '-') ADVANCE(3851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1858: + case 3765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '.') ADVANCE(4451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1859: + case 3766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(1791); - if (lookahead == '~') ADVANCE(1779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '=') ADVANCE(3698); + if (lookahead == '~') ADVANCE(3686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1860: + case 3767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(5149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1861: + case 3768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(5145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1862: + case 3769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(5137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1863: + case 3770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(5141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1864: + case 3771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(2200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1865: + case 3772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(2202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1866: + case 3773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(2204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1867: + case 3774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '>') ADVANCE(2205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1868: + case 3775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - 'I', 1946, - '_', 1877, - 'i', 1946, - 'n', 1886, - '+', 1877, - '-', 1877, - 'B', 2731, - 'b', 2731, + 'I', 3853, + '_', 3783, + 'i', 3853, + 'n', 3793, + '+', 3783, + '-', 3783, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1869: + case 3776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1877); - if (lookahead == 'i') ADVANCE(1881); + if (lookahead == 'I') ADVANCE(3853); + if (lookahead == '_') ADVANCE(3783); + if (lookahead == 'i') ADVANCE(3788); if (lookahead == '+' || - lookahead == '-') ADVANCE(1877); + lookahead == '-') ADVANCE(3783); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1870: + case 3777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'i') ADVANCE(1946); - if (lookahead == 'n') ADVANCE(1886); + if (lookahead == 'I') ADVANCE(3853); + if (lookahead == 'i') ADVANCE(3853); + if (lookahead == 'n') ADVANCE(3793); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1871: + case 3778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'i') ADVANCE(1946); + if (lookahead == 'I') ADVANCE(3853); + if (lookahead == 'i') ADVANCE(3853); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1872: + case 3779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'i') ADVANCE(1881); + if (lookahead == 'I') ADVANCE(3853); + if (lookahead == 'i') ADVANCE(3788); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1873: + case 3780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1946); - if (lookahead == 'i') ADVANCE(1901); - if (lookahead == 'o') ADVANCE(1884); - if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'I') ADVANCE(3853); + if (lookahead == 'i') ADVANCE(3808); + if (lookahead == 'o') ADVANCE(3791); + if (lookahead == 's') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1874: + case 3781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '_') ADVANCE(3783); + if (lookahead == 'o') ADVANCE(3767); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1875: + case 3782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1877); - if (lookahead == 'o') ADVANCE(1860); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '_') ADVANCE(3783); + if (lookahead == 'o') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1876: + case 3783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1877); - if (lookahead == 'o') ADVANCE(1864); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '_') ADVANCE(3783); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1877: + case 3784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1877); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == '_') ADVANCE(3784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1878: + case 3785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'a') ADVANCE(3852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1879: + case 3786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'a') ADVANCE(3829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1880: + case 3787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1906); - if (lookahead == 'o') ADVANCE(1920); - if (lookahead == 's') ADVANCE(1892); - if (lookahead == 'x') ADVANCE(1912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'a') ADVANCE(3813); + if (lookahead == 'o') ADVANCE(3827); + if (lookahead == 's') ADVANCE(3799); + if (lookahead == 'x') ADVANCE(3819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1881: + case 3788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1882: + case 3789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1883: + case 3790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'd') ADVANCE(3690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1884: + case 3791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'd') ADVANCE(3679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1885: + case 3792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'd') ADVANCE(3687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1886: + case 3793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'd') ADVANCE(3836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1887: + case 3794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1882); - if (lookahead == 't') ADVANCE(1879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'e') ADVANCE(3789); + if (lookahead == 't') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1888: + case 3795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'e') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1889: + case 3796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'e') ADVANCE(3832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1890: + case 3797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'e') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1891: + case 3798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'e') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1892: + case 3799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'h') ADVANCE(3807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1893: + case 3800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'h') ADVANCE(3696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1894: + case 3801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'h') ADVANCE(3695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1895: + case 3802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'i') ADVANCE(3838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1896: + case 3803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'i') ADVANCE(3811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1897: + case 3804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'i') ADVANCE(3842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1898: + case 3805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'i') ADVANCE(3844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1899: + case 3806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1900: + case 3807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(1776); - if (lookahead == 'r') ADVANCE(1777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'l') ADVANCE(3683); + if (lookahead == 'r') ADVANCE(3684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1901: + case 3808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'n') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1902: + case 3809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'n') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1903: + case 3810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'n') ADVANCE(3693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1904: + case 3811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'n') ADVANCE(3694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1905: + case 3812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'n') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1906: + case 3813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'n') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1907: + case 3814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1908: + case 3815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1909: + case 3816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1910: + case 3817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1911: + case 3818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1912: + case 3819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1913: + case 3820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1933); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3840); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1914: + case 3821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1915: + case 3822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'o') ADVANCE(3849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1916: + case 3823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1917: + case 3824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1918: + case 3825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1919: + case 3826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1920: + case 3827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1921: + case 3828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1922: + case 3829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1923: + case 3830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1924: + case 3831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1925: + case 3832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1926: + case 3833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1927: + case 3834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'r') ADVANCE(3833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1928: + case 3835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1929: + case 3836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 's') ADVANCE(3763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1930: + case 3837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 's') ADVANCE(3764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1931: + case 3838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1932: + case 3839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1933: + case 3840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1934: + case 3841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1935: + case 3842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1936: + case 3843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1937: + case 3844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1938: + case 3845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1939: + case 3846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1940: + case 3847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 't') ADVANCE(3837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1941: + case 3848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'u') ADVANCE(3843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1942: + case 3849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'u') ADVANCE(3846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1943: + case 3850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'w') ADVANCE(3804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1944: + case 3851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'w') ADVANCE(3805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1945: + case 3852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1946: + case 3853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1947: + case 3854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1948: + case 3855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1949: + case 3856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1874, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 4466, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1950: + case 3857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1951: + case 3858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + '_', 3784, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1952: + case 3859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3749, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1953: + case 3860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 1858, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3776, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3757, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1954: + case 3861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1843, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3753, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3750, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1955: + case 3862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '.', 2559, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'B', 2731, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1902, - 'b', 2732, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1916, - 'i', 1903, - 'k', 1871, - 'm', 1873, - 'n', 1913, - 'o', 1851, - 'p', 1871, - 's', 1887, - 't', 1871, - 'u', 1928, - 'w', 1899, - 'x', 1909, - '|', 2264, - 0xb5, 1928, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '.', 3765, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'B', 4638, + 'E', 3779, + 'G', 3779, + 'K', 3779, + 'M', 3779, + 'P', 3779, + 'T', 3779, + 'a', 3809, + 'b', 4639, + 'd', 3785, + 'e', 3755, + 'g', 3778, + 'h', 3823, + 'i', 3810, + 'k', 3778, + 'm', 3780, + 'n', 3820, + 'o', 3758, + 'p', 3778, + 's', 3794, + 't', 3778, + 'u', 3835, + 'w', 3806, + 'x', 3816, + '|', 4171, + 0xb5, 3835, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1956: + case 3863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1847, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1843, - 's', 1932, - 'x', 1909, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3754, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3750, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1957: + case 3864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(825); + if (eof) ADVANCE(2379); ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '!', 1859, - '#', 4069, - '*', 1769, - '+', 1774, - '-', 1775, - '/', 1770, - ';', 2263, - '<', 1793, - '=', 457, - '>', 1796, - 'a', 1902, - 'b', 1895, - 'e', 1849, - 'i', 1903, - 'm', 1910, - 'n', 1914, - 'o', 1851, - 's', 1932, - 'x', 1909, - '|', 2264, + '\n', 4166, + '\r', 16, + '!', 3766, + '#', 6369, + '*', 3676, + '+', 3681, + '-', 3682, + '/', 3677, + ';', 4170, + '<', 3700, + '=', 507, + '>', 3703, + 'a', 3809, + 'b', 3802, + 'e', 3756, + 'i', 3810, + 'm', 3817, + 'n', 3821, + 'o', 3758, + 's', 3839, + 'x', 3816, + '|', 4171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + lookahead == ' ') SKIP(2275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3854); END_STATE(); - case 1958: + case 3865: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3116); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(2019); + if (lookahead == '+') ADVANCE(3881); + if (lookahead == '-') ADVANCE(5940); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == '_') ADVANCE(3881); + if (lookahead == 'i') ADVANCE(3926); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1959: + case 3866: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3116); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1978); + if (lookahead == '+') ADVANCE(3881); + if (lookahead == '-') ADVANCE(5940); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == '_') ADVANCE(3881); + if (lookahead == 'i') ADVANCE(3885); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1960: + case 3867: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3641); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(2019); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '+') ADVANCE(3881); + if (lookahead == '-') ADVANCE(5940); + if (lookahead == '_') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1961: + case 3868: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3641); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1978); + if (lookahead == '+') ADVANCE(3881); + if (lookahead == '-') ADVANCE(5417); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == '_') ADVANCE(3881); + if (lookahead == 'i') ADVANCE(3926); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1962: + case 3869: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3641); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '+') ADVANCE(3881); + if (lookahead == '-') ADVANCE(5417); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == '_') ADVANCE(3881); + if (lookahead == 'i') ADVANCE(3885); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1963: + case 3870: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(579); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '-') ADVANCE(1558); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1964: + case 3871: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(501); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '-') ADVANCE(1675); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1965: + case 3872: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(566); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '-') ADVANCE(765); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1966: + case 3873: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(580); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '-') ADVANCE(1673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1967: + case 3874: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '-') ADVANCE(2151); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1968: + case 3875: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == 'i') ADVANCE(2019); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == 'i') ADVANCE(3926); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1969: + case 3876: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == 'i') ADVANCE(3885); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1970: + case 3877: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2019); - if (lookahead == 'i') ADVANCE(1996); - if (lookahead == 's') ADVANCE(2741); + if (lookahead == 'I') ADVANCE(3926); + if (lookahead == 'i') ADVANCE(3903); + if (lookahead == 's') ADVANCE(4648); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1971: + case 3878: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1972); - if (lookahead == 'b') ADVANCE(2028); - if (lookahead == 'o') ADVANCE(2030); - if (lookahead == 'x') ADVANCE(2031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(3879); + if (lookahead == 'b') ADVANCE(3935); + if (lookahead == 'o') ADVANCE(3937); + if (lookahead == 'x') ADVANCE(3938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1972: + case 3879: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1973: + case 3880: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1974: + case 3881: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1975: + case 3882: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2017); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'a') ADVANCE(3924); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1976: + case 3883: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2009); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'a') ADVANCE(3916); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1977: + case 3884: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1990); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'a') ADVANCE(3897); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1978: + case 3885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1979: + case 3886: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2741); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'c') ADVANCE(4648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1980: + case 3887: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1987); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'd') ADVANCE(3894); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1981: + case 3888: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(3898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1982: + case 3889: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1965); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(3870); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1983: + case 3890: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2636); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(4543); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1984: + case 3891: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2644); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(4551); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1985: + case 3892: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1979); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(3886); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1986: + case 3893: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2295); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(4202); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1987: + case 3894: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2456); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'e') ADVANCE(4363); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1988: + case 3895: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1980); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'i') ADVANCE(3887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1989: + case 3896: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2741); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'k') ADVANCE(4648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1990: + case 3897: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2011); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'l') ADVANCE(3918); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1991: + case 3898: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'l') ADVANCE(3899); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1992: + case 3899: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1963); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'l') ADVANCE(3873); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1993: + case 3900: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1964); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'l') ADVANCE(3872); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1994: + case 3901: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'l') ADVANCE(3900); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1995: + case 3902: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'm') ADVANCE(3909); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1996: + case 3903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2741); + if (lookahead == 'n') ADVANCE(4648); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1997: + case 3904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'n') ADVANCE(4285); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1998: + case 3905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1982); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'n') ADVANCE(3889); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 1999: + case 3906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2013); + if (lookahead == 'o') ADVANCE(3920); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'a') ADVANCE(3930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2000: + case 3907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'o') ADVANCE(3911); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2001: + case 3908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2005); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'o') ADVANCE(3912); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2002: + case 3909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2001); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'p') ADVANCE(3908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2003: + case 3910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2000); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(3907); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2004: + case 3911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(4223); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2005: + case 3912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2014); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(3921); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2006: + case 3913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2741); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(4648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2007: + case 3914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2003); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(3910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2008: + case 3915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2015); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(3922); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2009: + case 3916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1967); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'r') ADVANCE(3874); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2010: + case 3917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2741); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 's') ADVANCE(4648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2011: + case 3918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 's') ADVANCE(3891); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2012: + case 3919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 's') ADVANCE(3893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2013: + case 3920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 't') ADVANCE(3936); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2014: + case 3921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1966); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 't') ADVANCE(3871); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2015: + case 3922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'u') ADVANCE(3890); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2016: + case 3923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'u') ADVANCE(3901); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2017: + case 3924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(2741); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == 'y') ADVANCE(4648); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2018: + case 3925: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'a') ADVANCE(3930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2019: + case 3926: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2737); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'b') ADVANCE(4644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2020: + case 3927: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'f') ADVANCE(3929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2021: + case 3928: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'i') ADVANCE(3933); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2022: + case 3929: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'i') ADVANCE(3932); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2023: + case 3930: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'n') ADVANCE(3939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2024: + case 3931: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'n') ADVANCE(3927); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2025: + case 3932: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'n') ADVANCE(3928); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2026: + case 3933: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 't') ADVANCE(3934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2027: + case 3934: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == 'y') ADVANCE(3939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2028: + case 3935: ACCEPT_TOKEN(sym_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '_') ADVANCE(3935); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2029: + case 3936: ACCEPT_TOKEN(sym_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2030: + case 3937: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '_') ADVANCE(3937); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2031: + case 3938: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3938); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2032: + case 3939: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2033: + case 3940: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3002); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'r') ADVANCE(2138); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(5302); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'r') ADVANCE(4045); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2034: + case 3941: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(2162); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(5295); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'u') ADVANCE(4069); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2035: + case 3942: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3003); - if (lookahead == '>') ADVANCE(2821); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(5303); + if (lookahead == '>') ADVANCE(5121); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2036: + case 3943: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2996); - if (lookahead == '>') ADVANCE(2825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(5296); + if (lookahead == '>') ADVANCE(5125); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2037: + case 3944: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(572); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'r') ADVANCE(2141); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'r') ADVANCE(4048); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2038: + case 3945: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(518); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'u') ADVANCE(2164); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(935); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'u') ADVANCE(4071); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2039: + case 3946: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(576); - if (lookahead == '>') ADVANCE(647); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(1600); + if (lookahead == '>') ADVANCE(2201); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2040: + case 3947: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(522); - if (lookahead == '>') ADVANCE(649); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '+') ADVANCE(998); + if (lookahead == '>') ADVANCE(2203); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2041: + case 3948: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2213); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '-') ADVANCE(4120); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2042: + case 3949: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2079); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == '-') ADVANCE(3986); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 2043: + case 3950: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2081); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == '-') ADVANCE(3988); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2044: + case 3951: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2084); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == '-') ADVANCE(3991); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 2045: + case 3952: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2086); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == '-') ADVANCE(3993); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2046: + case 3953: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2215); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '-') ADVANCE(4122); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2047: + case 3954: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2219); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '-') ADVANCE(4126); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2048: + case 3955: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2221); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '-') ADVANCE(4128); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2049: + case 3956: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(681); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == ':') ADVANCE(2235); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2050: + case 3957: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(3046); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == ':') ADVANCE(5346); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2051: + case 3958: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2186); - if (lookahead == 'f') ADVANCE(2226); - if (lookahead == 'n') ADVANCE(2187); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'N') ADVANCE(4093); + if (lookahead == 'f') ADVANCE(4133); + if (lookahead == 'n') ADVANCE(4094); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2052: + case 3959: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2216); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'T') ADVANCE(4123); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2053: + case 3960: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2217); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'T') ADVANCE(4124); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2054: + case 3961: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (lookahead == 'b') ADVANCE(2728); - if (lookahead == 'o') ADVANCE(2744); - if (lookahead == 'x') ADVANCE(2749); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (lookahead == 'b') ADVANCE(4634); + if (lookahead == 'o') ADVANCE(4650); + if (lookahead == 'x') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2055: + case 3962: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (lookahead == 'b') ADVANCE(2728); - if (lookahead == 'o') ADVANCE(2744); - if (lookahead == 'x') ADVANCE(2749); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (lookahead == 'b') ADVANCE(4634); + if (lookahead == 'o') ADVANCE(4650); + if (lookahead == 'x') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3968); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2056: + case 3963: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2057: + case 3964: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2041); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3948); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2058: + case 3965: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2059: + case 3966: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2060: + case 3967: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2048); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2061: + case 3968: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2062: + case 3969: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == '_') ADVANCE(3963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3968); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2063: + case 3970: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2110); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4017); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2064: + case 3971: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2109); - if (lookahead == 'o') ADVANCE(2073); - if (lookahead == 'u') ADVANCE(2165); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4016); + if (lookahead == 'o') ADVANCE(3980); + if (lookahead == 'u') ADVANCE(4072); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2065: + case 3972: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2108); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4015); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2066: + case 3973: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2181); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4088); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2067: + case 3974: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2159); - if (lookahead == 'o') ADVANCE(2121); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4066); + if (lookahead == 'o') ADVANCE(4028); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2068: + case 3975: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2155); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4062); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2069: + case 3976: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2118); - if (lookahead == 'o') ADVANCE(2147); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'a') ADVANCE(4025); + if (lookahead == 'o') ADVANCE(4054); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2070: + case 3977: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2101); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'c') ADVANCE(4008); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2071: + case 3978: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2085); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'c') ADVANCE(3992); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2072: + case 3979: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2102); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'c') ADVANCE(4009); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2073: + case 3980: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2175); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'd') ADVANCE(4082); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2074: + case 3981: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2080); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'd') ADVANCE(3987); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2075: + case 3982: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2634); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4541); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2076: + case 3983: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2642); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4549); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2077: + case 3984: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2098); - if (lookahead == 'o') ADVANCE(2225); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4005); + if (lookahead == 'o') ADVANCE(4132); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2078: + case 3985: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2099); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4006); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2079: + case 3986: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2122); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'e') ADVANCE(4029); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 2080: + case 3987: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2043); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(3950); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2081: + case 3988: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2124); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'e') ADVANCE(4031); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2082: + case 3989: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2065); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(3972); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2083: + case 3990: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2160); - if (lookahead == 'o') ADVANCE(2130); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4067); + if (lookahead == 'o') ADVANCE(4037); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2084: + case 3991: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2125); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'e') ADVANCE(4032); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 2085: + case 3992: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2045); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(3952); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2086: + case 3993: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2126); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'e') ADVANCE(4033); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2087: + case 3994: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2146); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4053); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2088: + case 3995: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2143); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4050); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2089: + case 3996: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2233); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4140); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2090: + case 3997: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2235); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4142); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2091: + case 3998: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2238); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4145); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2092: + case 3999: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2240); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4147); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2093: + case 4000: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2246); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4153); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2094: + case 4001: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2249); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4156); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2095: + case 4002: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2251); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4158); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2096: + case 4003: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2256); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4163); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2097: + case 4004: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2149); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'e') ADVANCE(4056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2098: + case 4005: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2228); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'f') ADVANCE(4135); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2099: + case 4006: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2106); - if (lookahead == 't') ADVANCE(2172); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'g') ADVANCE(4013); + if (lookahead == 't') ADVANCE(4079); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2100: + case 4007: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2107); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'h') ADVANCE(4014); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2101: + case 4008: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2243); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'h') ADVANCE(4150); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2102: + case 4009: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2248); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'h') ADVANCE(4155); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2103: + case 4010: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2074); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'i') ADVANCE(3981); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2104: + case 4011: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2068); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'i') ADVANCE(3975); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2105: + case 4012: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2129); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'i') ADVANCE(4036); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2106: + case 4013: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2153); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'i') ADVANCE(4060); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2107: + case 4014: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2119); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'i') ADVANCE(4026); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2108: + case 4015: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2242); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'k') ADVANCE(4149); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2109: + case 4016: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2091); - if (lookahead == 't') ADVANCE(2072); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'k') ADVANCE(3998); + if (lookahead == 't') ADVANCE(3979); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2110: + case 4017: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2152); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4059); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2111: + case 4018: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2626); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4533); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2112: + case 4019: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2104); - if (lookahead == 's') ADVANCE(2224); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4011); + if (lookahead == 's') ADVANCE(4131); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2113: + case 4020: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2111); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4018); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2114: + case 4021: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2066); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(3973); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2115: + case 4022: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2116); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4023); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2116: + case 4023: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2239); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4146); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2117: + case 4024: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2157); - if (lookahead == 'r') ADVANCE(2142); - if (lookahead == 'x') ADVANCE(2136); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4064); + if (lookahead == 'r') ADVANCE(4049); + if (lookahead == 'x') ADVANCE(4043); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2118: + case 4025: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2158); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4065); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2119: + case 4026: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2094); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4001); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2120: + case 4027: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2095); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'l') ADVANCE(4002); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2121: + case 4028: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2156); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'n') ADVANCE(4063); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2122: + case 4029: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2177); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'n') ADVANCE(4084); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 2123: + case 4030: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2376); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'n') ADVANCE(4283); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2124: + case 4031: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2178); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'n') ADVANCE(4085); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2125: + case 4032: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2180); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'n') ADVANCE(4087); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 2126: + case 4033: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2179); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'n') ADVANCE(4086); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2127: + case 4034: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2250); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'n') ADVANCE(4157); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2128: + case 4035: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2252); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'n') ADVANCE(4159); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2129: + case 4036: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2174); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'n') ADVANCE(4081); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2130: + case 4037: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2135); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'o') ADVANCE(4042); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2131: + case 4038: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2170); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'o') ADVANCE(4077); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2132: + case 4039: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2161); - if (lookahead == 'u') ADVANCE(2113); + if (lookahead == 'o') ADVANCE(4068); + if (lookahead == 'u') ADVANCE(4020); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2194); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'a') ADVANCE(4101); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2133: + case 4040: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2145); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'o') ADVANCE(4052); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2134: + case 4041: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2148); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'o') ADVANCE(4055); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2135: + case 4042: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2237); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'p') ADVANCE(4144); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2136: + case 4043: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2133); - if (lookahead == 't') ADVANCE(2088); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'p') ADVANCE(4040); + if (lookahead == 't') ADVANCE(3995); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2137: + case 4044: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2168); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4075); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2138: + case 4045: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2035); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(3942); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2139: + case 4046: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2173); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4080); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2140: + case 4047: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2071); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(3978); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2141: + case 4048: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2039); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(3946); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2142: + case 4049: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2134); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4041); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2143: + case 4050: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2127); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4034); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2144: + case 4051: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2082); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(3989); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2145: + case 4052: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2163); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4070); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2146: + case 4053: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2114); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4021); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2147: + case 4054: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2229); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4136); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2148: + case 4055: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2245); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4152); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2149: + case 4056: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2257); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4164); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2150: + case 4057: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2128); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'r') ADVANCE(4035); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2151: + case 4058: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2468); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(4375); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2152: + case 4059: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2076); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(3983); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2153: + case 4060: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2167); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(4074); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2154: + case 4061: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2089); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(3996); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2155: + case 4062: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2241); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(4148); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2156: + case 4063: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2166); - if (lookahead == 't') ADVANCE(2105); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(4073); + if (lookahead == 't') ADVANCE(4012); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2157: + case 4064: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2090); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(3997); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2158: + case 4065: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2093); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 's') ADVANCE(4000); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2159: + case 4066: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2070); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(3977); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2160: + case 4067: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2042); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(3949); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2161: + case 4068: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2208); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(4115); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2162: + case 4069: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2036); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(3943); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2163: + case 4070: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2044); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(3951); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2164: + case 4071: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2040); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(3947); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2165: + case 4072: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2231); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(4138); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2166: + case 4073: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2244); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(4151); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2167: + case 4074: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2097); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 't') ADVANCE(4004); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2168: + case 4075: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2075); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(3982); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2169: + case 4076: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2113); + if (lookahead == 'u') ADVANCE(4020); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2194); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'a') ADVANCE(4101); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2170: + case 4077: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2140); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(4047); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2171: + case 4078: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2115); + if (lookahead == 'u') ADVANCE(4022); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2199); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'a') ADVANCE(4106); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2172: + case 4079: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2150); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(4057); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2173: + case 4080: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2092); - if (lookahead == 'y') ADVANCE(2232); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(3999); + if (lookahead == 'y') ADVANCE(4139); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2174: + case 4081: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2096); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(4003); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2175: + case 4082: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2120); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'u') ADVANCE(4027); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2176: + case 4083: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2087); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'v') ADVANCE(3994); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2177: + case 4084: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2236); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (lookahead == 'v') ADVANCE(4143); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 2178: + case 4085: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2247); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == 'v') ADVANCE(4154); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2179: + case 4086: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2255); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == 'v') ADVANCE(4162); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2180: + case 4087: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2258); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == 'v') ADVANCE(4165); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 2181: + case 4088: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2254); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (lookahead == 'y') ADVANCE(4161); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2182: + case 4089: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == '-' || - lookahead == '?') ADVANCE(2223); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2182); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '?') ADVANCE(4130); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4089); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2183: + case 4090: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2194); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'a') ADVANCE(4101); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2184: + case 4091: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2199); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'a') ADVANCE(4106); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2185: + case 4092: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2193); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'f') ADVANCE(4100); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2186: + case 4093: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2189); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'f') ADVANCE(4096); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2187: + case 4094: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2191); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'f') ADVANCE(4098); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2188: + case 4095: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2201); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'i') ADVANCE(4108); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2189: + case 4096: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2198); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'i') ADVANCE(4105); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2190: + case 4097: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2202); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'i') ADVANCE(4109); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2191: + case 4098: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2200); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'i') ADVANCE(4107); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2192: + case 4099: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2203); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'i') ADVANCE(4110); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2193: + case 4100: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2197); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'i') ADVANCE(4104); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2194: + case 4101: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2223); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'n') ADVANCE(4130); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2195: + case 4102: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2185); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'n') ADVANCE(4092); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2196: + case 4103: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2186); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'n') ADVANCE(4093); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2197: + case 4104: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2188); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'n') ADVANCE(4095); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2198: + case 4105: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2190); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'n') ADVANCE(4097); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2199: + case 4106: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2227); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'n') ADVANCE(4134); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2200: + case 4107: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2192); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'n') ADVANCE(4099); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2201: + case 4108: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 't') ADVANCE(4111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2202: + case 4109: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2206); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 't') ADVANCE(4113); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2203: + case 4110: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2205); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 't') ADVANCE(4112); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2204: + case 4111: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == 'y') ADVANCE(4130); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2205: + case 4112: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2230); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'y') ADVANCE(4137); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2206: + case 4113: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2234); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'y') ADVANCE(4141); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2207: + case 4114: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2207); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == '_') ADVANCE(4114); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2208: + case 4115: ACCEPT_TOKEN(sym_long_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == ' ') ADVANCE(4412); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2209: + case 4116: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2209); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == '_') ADVANCE(4116); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2210: + case 4117: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2046); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2211: + case 4118: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2052); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2212: + case 4119: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2213: + case 4120: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2210); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4117); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2214: + case 4121: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2049); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2215: + case 4122: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2211); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4118); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2216: + case 4123: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2212); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4119); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2217: + case 4124: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2214); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4121); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2218: + case 4125: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2053); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2219: + case 4126: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2218); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4125); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2220: + case 4127: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2047); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2221: + case 4128: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2220); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4127); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2222: + case 4129: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2222); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4129); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2223: + case 4130: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2224: + case 4131: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3592); END_STATE(); - case 2225: + case 4132: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3565); END_STATE(); - case 2226: + case 4133: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3568); END_STATE(); - case 2227: + case 4134: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3673); END_STATE(); - case 2228: + case 4135: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3482); END_STATE(); - case 2229: + case 4136: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); END_STATE(); - case 2230: + case 4137: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2231: + case 4138: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3511); END_STATE(); - case 2232: + case 4139: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3574); END_STATE(); - case 2233: + case 4140: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3488); END_STATE(); - case 2234: + case 4141: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2235: + case 4142: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3571); END_STATE(); - case 2236: + case 4143: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3508); END_STATE(); - case 2237: + case 4144: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3556); END_STATE(); - case 2238: + case 4145: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3623); END_STATE(); - case 2239: + case 4146: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3645); END_STATE(); - case 2240: + case 4147: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3639); END_STATE(); - case 2241: + case 4148: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 2242: + case 4149: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3583); END_STATE(); - case 2243: + case 4150: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3577); END_STATE(); - case 2244: + case 4151: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3514); END_STATE(); - case 2245: + case 4152: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3562); END_STATE(); - case 2246: + case 4153: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3642); END_STATE(); - case 2247: + case 4154: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2248: + case 4155: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3580); END_STATE(); - case 2249: + case 4156: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3559); END_STATE(); - case 2250: + case 4157: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3493); END_STATE(); - case 2251: + case 4158: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3496); END_STATE(); - case 2252: + case 4159: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3589); END_STATE(); - case 2253: + case 4160: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4160); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3635); END_STATE(); - case 2254: + case 4161: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3541); END_STATE(); - case 2255: + case 4162: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2256: + case 4163: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3586); END_STATE(); - case 2257: + case 4164: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3544); END_STATE(); - case 2258: + case 4165: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3490); END_STATE(); - case 2259: + case 4166: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 2260: + case 4167: ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(2810); + if (lookahead == ':') ADVANCE(4717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(450); + lookahead == ' ') ADVANCE(500); END_STATE(); - case 2261: + case 4168: ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(2260); - if (lookahead == '\r') ADVANCE(16); - if (lookahead == ':') ADVANCE(2810); + if (lookahead == '\n') ADVANCE(4167); + if (lookahead == '\r') ADVANCE(15); + if (lookahead == ':') ADVANCE(4717); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2261); + lookahead == ' ') ADVANCE(4168); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(450); + lookahead == '\f') ADVANCE(500); END_STATE(); - case 2262: + case 4169: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2262); + lookahead == ' ') ADVANCE(4169); END_STATE(); - case 2263: + case 4170: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2264: + case 4171: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2265: + case 4172: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 2266: + case 4173: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 2267: + case 4174: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 2268: + case 4175: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 2269: + case 4176: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 2270: + case 4177: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 2271: + case 4178: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 2272: + case 4179: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 2273: + case 4180: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 2274: + case 4181: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1591); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3905); + if (lookahead == ',') ADVANCE(3482); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6205); END_STATE(); - case 2275: + case 4182: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if (lookahead == ',') ADVANCE(3482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3480); END_STATE(); - case 2276: + case 4183: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1591); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1590); + lookahead == '@') ADVANCE(3482); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3481); END_STATE(); - case 2277: + case 4184: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3482); END_STATE(); - case 2278: + case 4185: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1599); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(3490); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6251); END_STATE(); - case 2279: + case 4186: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); + if (lookahead == ',') ADVANCE(3490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3489); END_STATE(); - case 2280: + case 4187: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3490); END_STATE(); - case 2281: + case 4188: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 2282: + case 4189: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1602); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); + if (lookahead == ',') ADVANCE(3493); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6241); END_STATE(); - case 2283: + case 4190: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if (lookahead == ',') ADVANCE(3493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3491); END_STATE(); - case 2284: + case 4191: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1602); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1601); + lookahead == '@') ADVANCE(3493); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3492); END_STATE(); - case 2285: + case 4192: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3493); END_STATE(); - case 2286: + case 4193: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 2287: + case 4194: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1605); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3942); + if (lookahead == ',') ADVANCE(3496); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6242); END_STATE(); - case 2288: + case 4195: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if (lookahead == ',') ADVANCE(3496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3494); END_STATE(); - case 2289: + case 4196: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1604); + lookahead == '@') ADVANCE(3496); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3495); END_STATE(); - case 2290: + case 4197: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3496); END_STATE(); - case 2291: + case 4198: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 2292: + case 4199: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1597); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3913); + if (lookahead == ',') ADVANCE(3488); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6213); END_STATE(); - case 2293: + case 4200: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if (lookahead == ',') ADVANCE(3488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3486); END_STATE(); - case 2294: + case 4201: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1597); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1596); + lookahead == '@') ADVANCE(3488); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3487); END_STATE(); - case 2295: + case 4202: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2296: + case 4203: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3488); END_STATE(); - case 2297: + case 4204: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2298: + case 4205: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2299: + case 4206: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 2300: + case 4207: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2301: + case 4208: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2302: + case 4209: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2303: + case 4210: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2304: + case 4211: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2305: + case 4212: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2306: + case 4213: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2799); - if (lookahead == '\'') ADVANCE(2795); + if (lookahead == '"') ADVANCE(4706); + if (lookahead == '\'') ADVANCE(4702); END_STATE(); - case 2307: + case 4214: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2799); - if (lookahead == '\'') ADVANCE(2795); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '"') ADVANCE(4706); + if (lookahead == '\'') ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2308: + case 4215: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2800); - if (lookahead == '\'') ADVANCE(2796); + if (lookahead == '"') ADVANCE(4707); + if (lookahead == '\'') ADVANCE(4703); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2309: + case 4216: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 2310: + case 4217: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2311: + case 4218: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2312: + case 4219: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 2313: + case 4220: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); + if (lookahead == ' ') ADVANCE(1391); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3562); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3561); END_STATE(); - case 2314: + case 4221: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if (lookahead == ',') ADVANCE(3562); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6233); END_STATE(); - case 2315: + case 4222: ACCEPT_TOKEN(anon_sym_error); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1665); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1664); + if (lookahead == ',') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3560); END_STATE(); - case 2316: + case 4223: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2317: + case 4224: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3562); END_STATE(); - case 2318: + case 4225: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 2319: + case 4226: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 2320: + case 4227: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 2321: + case 4228: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 2322: + case 4229: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 2323: + case 4230: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(2499); + if (lookahead == '=') ADVANCE(4406); END_STATE(); - case 2324: + case 4231: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(2500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '=') ADVANCE(4407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2325: + case 4232: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2326: + case 4233: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 2327: + case 4234: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2328: + case 4235: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2329: + case 4236: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 2330: + case 4237: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2331: + case 4238: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2332: + case 4239: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2333: + case 4240: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 2334: + case 4241: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); + if (lookahead == '-') ADVANCE(4236); END_STATE(); - case 2335: + case 4242: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2336: + case 4243: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(473); - if (lookahead == '_') ADVANCE(447); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(523); + if (lookahead == '_') ADVANCE(485); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + lookahead == 'i') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2337: + case 4244: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(473); - if (lookahead == '_') ADVANCE(447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(523); + if (lookahead == '_') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2338: + case 4245: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(3107); - if (lookahead == '_') ADVANCE(3080); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(5407); + if (lookahead == '_') ADVANCE(5380); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + lookahead == 'i') ADVANCE(5524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2339: + case 4246: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(3632); - if (lookahead == '_') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(5932); + if (lookahead == '_') ADVANCE(5910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2340: + case 4247: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(3111); - if (lookahead == '_') ADVANCE(3081); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(5412); + if (lookahead == '_') ADVANCE(5381); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(5524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2341: + case 4248: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2332); - if (lookahead == '.') ADVANCE(3300); - if (lookahead == '_') ADVANCE(3276); + if (lookahead == '-') ADVANCE(4239); + if (lookahead == '.') ADVANCE(5600); + if (lookahead == '_') ADVANCE(5576); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'i') ADVANCE(5774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2342: + case 4249: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2332); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(4239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2343: + case 4250: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2330); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(2889); + if (lookahead == '-') ADVANCE(4237); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(5189); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'i') ADVANCE(5226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2344: + case 4251: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2330); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '-') ADVANCE(4237); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2345: + case 4252: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2331); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '-') ADVANCE(4238); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2346: + case 4253: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '=') ADVANCE(859); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '=') ADVANCE(2413); + if (lookahead == '_') ADVANCE(480); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(2217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2347: + case 4254: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(2217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2348: + case 4255: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(480); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2349: + case 4256: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(2889); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(5189); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'i') ADVANCE(5226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2350: + case 4257: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3859); - if (lookahead == '_') ADVANCE(3851); + if (lookahead == '.') ADVANCE(6159); + if (lookahead == '_') ADVANCE(6151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(6178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2351: + case 4258: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3960); - if (lookahead == '_') ADVANCE(3953); + if (lookahead == '.') ADVANCE(6260); + if (lookahead == '_') ADVANCE(6253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + lookahead == 'i') ADVANCE(6356); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6260); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 2352: + case 4259: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3300); - if (lookahead == '_') ADVANCE(3276); + if (lookahead == '.') ADVANCE(5600); + if (lookahead == '_') ADVANCE(5576); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'i') ADVANCE(5774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2353: + case 4260: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(473); - if (lookahead == '_') ADVANCE(447); + if (lookahead == '.') ADVANCE(523); + if (lookahead == '_') ADVANCE(485); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + lookahead == 'i') ADVANCE(2217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2354: + case 4261: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3860); - if (lookahead == '_') ADVANCE(3853); + if (lookahead == '.') ADVANCE(6160); + if (lookahead == '_') ADVANCE(6153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + lookahead == 'i') ADVANCE(6178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2355: + case 4262: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3111); - if (lookahead == '_') ADVANCE(3081); + if (lookahead == '.') ADVANCE(5412); + if (lookahead == '_') ADVANCE(5381); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + lookahead == 'i') ADVANCE(5524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2356: + case 4263: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(859); + if (lookahead == '=') ADVANCE(2413); END_STATE(); - case 2357: + case 4264: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2358: + case 4265: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 2359: + case 4266: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1686); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(3583); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6230); END_STATE(); - case 2360: + case 4267: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if (lookahead == ',') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3581); END_STATE(); - case 2361: + case 4268: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1686); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1685); + lookahead == '@') ADVANCE(3583); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3582); END_STATE(); - case 2362: + case 4269: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3583); END_STATE(); - case 2363: + case 4270: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1689); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3949); + if (lookahead == ',') ADVANCE(3586); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6249); END_STATE(); - case 2364: + case 4271: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if (lookahead == ',') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3584); END_STATE(); - case 2365: + case 4272: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1689); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1688); + lookahead == '@') ADVANCE(3586); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3585); END_STATE(); - case 2366: + case 4273: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3586); END_STATE(); - case 2367: + case 4274: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1656); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == ',') ADVANCE(3553); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6206); END_STATE(); - case 2368: + case 4275: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if (lookahead == ',') ADVANCE(3553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3547); END_STATE(); - case 2369: + case 4276: ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'm') ADVANCE(3548); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1656); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1655); + lookahead == '@') ADVANCE(3553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3552); END_STATE(); - case 2370: + case 4277: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3553); END_STATE(); - case 2371: + case 4278: ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 2372: + case 4279: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); + lookahead == 'f') ADVANCE(3597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3602); END_STATE(); - case 2373: + case 4280: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 'f') ADVANCE(6192); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 2374: + case 4281: ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == 'p') ADVANCE(3607); + if (lookahead == 't') ADVANCE(3603); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1702); + lookahead == 'f') ADVANCE(3609); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); + lookahead == '@') ADVANCE(3620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3619); END_STATE(); - case 2375: + case 4282: ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); + lookahead == 'f') ADVANCE(3611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3620); END_STATE(); - case 2376: + case 4283: ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2377: + case 4284: ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2378: + case 4285: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2379: + case 4286: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2380: + case 4287: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1659); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); + if (lookahead == ',') ADVANCE(3556); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6225); END_STATE(); - case 2381: + case 4288: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if (lookahead == ',') ADVANCE(3556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3554); END_STATE(); - case 2382: + case 4289: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1658); + lookahead == '@') ADVANCE(3556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3555); END_STATE(); - case 2383: + case 4290: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3556); END_STATE(); - case 2384: + case 4291: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 2385: + case 4292: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1716); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3926); + if (lookahead == ',') ADVANCE(3623); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6226); END_STATE(); - case 2386: + case 4293: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if (lookahead == ',') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3621); END_STATE(); - case 2387: + case 4294: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1716); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1715); + lookahead == '@') ADVANCE(3623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3622); END_STATE(); - case 2388: + case 4295: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3623); END_STATE(); - case 2389: + case 4296: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1662); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3936); + if (lookahead == ',') ADVANCE(3559); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6236); END_STATE(); - case 2390: + case 4297: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if (lookahead == ',') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3557); END_STATE(); - case 2391: + case 4298: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1661); + lookahead == '@') ADVANCE(3559); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3558); END_STATE(); - case 2392: + case 4299: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3559); END_STATE(); - case 2393: + case 4300: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 2394: + case 4301: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1668); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3890); + if (lookahead == ',') ADVANCE(3565); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6190); END_STATE(); - case 2395: + case 4302: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if (lookahead == ',') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3563); END_STATE(); - case 2396: + case 4303: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1668); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1667); + lookahead == '@') ADVANCE(3565); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3564); END_STATE(); - case 2397: + case 4304: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3565); END_STATE(); - case 2398: + case 4305: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 2399: + case 4306: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1671); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3891); + if (lookahead == ',') ADVANCE(3568); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6191); END_STATE(); - case 2400: + case 4307: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if (lookahead == ',') ADVANCE(3568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3566); END_STATE(); - case 2401: + case 4308: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1671); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1670); + lookahead == '@') ADVANCE(3568); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3567); END_STATE(); - case 2402: + case 4309: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3568); END_STATE(); - case 2403: + case 4310: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2404: + case 4311: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 2405: + case 4312: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1674); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3920); + if (lookahead == ',') ADVANCE(3571); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6220); END_STATE(); - case 2406: + case 4313: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if (lookahead == ',') ADVANCE(3571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3569); END_STATE(); - case 2407: + case 4314: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1674); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1673); + lookahead == '@') ADVANCE(3571); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3570); END_STATE(); - case 2408: + case 4315: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3571); END_STATE(); - case 2409: + case 4316: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 2410: + case 4317: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1683); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3935); + if (lookahead == ',') ADVANCE(3580); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6235); END_STATE(); - case 2411: + case 4318: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if (lookahead == ',') ADVANCE(3580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3578); END_STATE(); - case 2412: + case 4319: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1683); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1682); + lookahead == '@') ADVANCE(3580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3579); END_STATE(); - case 2413: + case 4320: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3580); END_STATE(); - case 2414: + case 4321: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 2415: + case 4322: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 2416: + case 4323: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 2417: + case 4324: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2418: + case 4325: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2419: + case 4326: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '_') ADVANCE(5279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2420: + case 4327: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(864); - if (lookahead == '<') ADVANCE(2579); - if (lookahead == '=') ADVANCE(2576); + if (lookahead == '.') ADVANCE(2504); + if (lookahead == '<') ADVANCE(4486); + if (lookahead == '=') ADVANCE(4483); END_STATE(); - case 2421: + case 4328: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2951); - if (lookahead == '<') ADVANCE(2579); - if (lookahead == '=') ADVANCE(2576); + if (lookahead == '.') ADVANCE(5251); + if (lookahead == '<') ADVANCE(4486); + if (lookahead == '=') ADVANCE(4483); END_STATE(); - case 2422: + case 4329: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3506); - if (lookahead == '<') ADVANCE(2579); - if (lookahead == '=') ADVANCE(2576); + if (lookahead == '.') ADVANCE(5806); + if (lookahead == '<') ADVANCE(4486); + if (lookahead == '=') ADVANCE(4483); END_STATE(); - case 2423: + case 4330: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2579); - if (lookahead == '=') ADVANCE(2576); + if (lookahead == '<') ADVANCE(4486); + if (lookahead == '=') ADVANCE(4483); END_STATE(); - case 2424: + case 4331: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2581); - if (lookahead == '=') ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '<') ADVANCE(4488); + if (lookahead == '=') ADVANCE(4485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2425: + case 4332: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2580); - if (lookahead == '=') ADVANCE(2577); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '<') ADVANCE(4487); + if (lookahead == '=') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2426: + case 4333: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 2427: + case 4334: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 2428: + case 4335: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1677); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3912); + if (lookahead == ',') ADVANCE(3574); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6212); END_STATE(); - case 2429: + case 4336: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if (lookahead == ',') ADVANCE(3574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3572); END_STATE(); - case 2430: + case 4337: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1677); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1676); + lookahead == '@') ADVANCE(3574); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3573); END_STATE(); - case 2431: + case 4338: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3574); END_STATE(); - case 2432: + case 4339: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 2433: + case 4340: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1680); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); + if (lookahead == ',') ADVANCE(3577); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6231); END_STATE(); - case 2434: + case 4341: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if (lookahead == ',') ADVANCE(3577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3575); END_STATE(); - case 2435: + case 4342: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1679); + lookahead == '@') ADVANCE(3577); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3576); END_STATE(); - case 2436: + case 4343: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3577); END_STATE(); - case 2437: + case 4344: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3943); + if (lookahead == ',') ADVANCE(3589); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6243); END_STATE(); - case 2438: + case 4345: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if (lookahead == ',') ADVANCE(3589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3587); END_STATE(); - case 2439: + case 4346: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1692); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1691); + lookahead == '@') ADVANCE(3589); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3588); END_STATE(); - case 2440: + case 4347: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3589); END_STATE(); - case 2441: + case 4348: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == '-') ADVANCE(1636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == '-') ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 2442: + case 4349: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == '-') ADVANCE(3944); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == '-') ADVANCE(6244); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 2443: + case 4350: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1640); + if (lookahead == '-') ADVANCE(3531); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1646); + lookahead == '@') ADVANCE(3538); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3537); END_STATE(); - case 2444: + case 4351: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if (lookahead == '-') ADVANCE(3531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2445: + case 4352: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1647); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3538); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 2446: + case 4353: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); + if (lookahead == ',') ADVANCE(3538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3530); END_STATE(); - case 2447: + case 4354: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3538); END_STATE(); - case 2448: + case 4355: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1653); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3950); + if (lookahead == ',') ADVANCE(3544); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6250); END_STATE(); - case 2449: + case 4356: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if (lookahead == ',') ADVANCE(3544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3542); END_STATE(); - case 2450: + case 4357: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1653); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1652); + lookahead == '@') ADVANCE(3544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3543); END_STATE(); - case 2451: + case 4358: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3544); END_STATE(); - case 2452: + case 4359: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == '-') ADVANCE(1624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == '-') ADVANCE(3515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 2453: + case 4360: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == '-') ADVANCE(3921); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == '-') ADVANCE(6221); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 2454: + case 4361: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1628); + if (lookahead == '-') ADVANCE(3519); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1635); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1634); + lookahead == '@') ADVANCE(3526); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 2455: + case 4362: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if (lookahead == '-') ADVANCE(3519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2456: + case 4363: ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2457: + case 4364: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1635); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3526); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 2458: + case 4365: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); + if (lookahead == ',') ADVANCE(3526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); - case 2459: + case 4366: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3526); END_STATE(); - case 2460: + case 4367: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1650); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); + if (lookahead == ',') ADVANCE(3541); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6248); END_STATE(); - case 2461: + case 4368: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if (lookahead == ',') ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3539); END_STATE(); - case 2462: + case 4369: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1649); + lookahead == '@') ADVANCE(3541); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3540); END_STATE(); - case 2463: + case 4370: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3541); END_STATE(); - case 2464: + case 4371: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 2465: + case 4372: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1695); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3889); + if (lookahead == ',') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6189); END_STATE(); - case 2466: + case 4373: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); + if (lookahead == ',') ADVANCE(3592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3590); END_STATE(); - case 2467: + case 4374: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1695); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1694); + lookahead == '@') ADVANCE(3592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3591); END_STATE(); - case 2468: + case 4375: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2469: + case 4376: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2470: + case 4377: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3592); END_STATE(); - case 2471: + case 4378: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2472: + case 4379: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 2473: + case 4380: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(2507); + if (lookahead == '*') ADVANCE(4414); END_STATE(); - case 2474: + case 4381: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(2507); - if (lookahead == '=') ADVANCE(860); + if (lookahead == '*') ADVANCE(4414); + if (lookahead == '=') ADVANCE(2414); END_STATE(); - case 2475: + case 4382: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(2508); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '*') ADVANCE(4415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2476: + case 4383: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 2477: + case 4384: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 2478: + case 4385: ACCEPT_TOKEN(anon_sym_and2); END_STATE(); - case 2479: + case 4386: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2480: + case 4387: ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); - case 2481: + case 4388: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2482: + case 4389: ACCEPT_TOKEN(anon_sym_or2); END_STATE(); - case 2483: + case 4390: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2484: + case 4391: ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); - case 2485: + case 4392: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2486: + case 4393: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); - case 2487: + case 4394: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2488: + case 4395: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); - case 2489: + case 4396: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2490: + case 4397: ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); - case 2491: + case 4398: ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2492: + case 4399: ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); - case 2493: + case 4400: ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2494: + case 4401: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 2495: + case 4402: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2497); + if (lookahead == '=') ADVANCE(4404); END_STATE(); - case 2496: + case 4403: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2498); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '=') ADVANCE(4405); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2497: + case 4404: ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); - case 2498: + case 4405: ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2499: + case 4406: ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); - case 2500: + case 4407: ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2501: + case 4408: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); - case 2502: + case 4409: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2503: + case 4410: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); - case 2504: + case 4411: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2505: + case 4412: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 2506: + case 4413: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 2507: + case 4414: ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); - case 2508: + case 4415: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2509: + case 4416: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 2510: + case 4417: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(862); + if (lookahead == '=') ADVANCE(2416); END_STATE(); - case 2511: + case 4418: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2512: + case 4419: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(2519); + if (lookahead == '/') ADVANCE(4426); END_STATE(); - case 2513: + case 4420: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(2519); - if (lookahead == '=') ADVANCE(861); + if (lookahead == '/') ADVANCE(4426); + if (lookahead == '=') ADVANCE(2415); END_STATE(); - case 2514: + case 4421: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(2520); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '/') ADVANCE(4427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2515: + case 4422: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2516: + case 4423: ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); - case 2517: + case 4424: ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(1413); + if (lookahead == 'u') ADVANCE(3234); END_STATE(); - case 2518: + case 4425: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2519: + case 4426: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); - case 2520: + case 4427: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2521: + case 4428: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2509); + if (lookahead == '+') ADVANCE(4416); END_STATE(); - case 2522: + case 4429: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2510); - if (lookahead == '.') ADVANCE(1287); - if (lookahead == '=') ADVANCE(858); - if (lookahead == '_') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if (lookahead == '+') ADVANCE(4417); + if (lookahead == '.') ADVANCE(3040); + if (lookahead == '=') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2523: + case 4430: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2510); - if (lookahead == '=') ADVANCE(858); + if (lookahead == '+') ADVANCE(4417); + if (lookahead == '=') ADVANCE(2412); END_STATE(); - case 2524: + case 4431: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2511); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(4418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2525: + case 4432: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1287); - if (lookahead == '_') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if (lookahead == '.') ADVANCE(3040); + if (lookahead == '_') ADVANCE(2665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2526: + case 4433: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(3959); - if (lookahead == '_') ADVANCE(3952); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '.') ADVANCE(6259); + if (lookahead == '_') ADVANCE(6252); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 2527: + case 4434: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(888); - if (lookahead == '_') ADVANCE(877); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if (lookahead == '.') ADVANCE(2528); + if (lookahead == '_') ADVANCE(2517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2528: + case 4435: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1292); - if (lookahead == '_') ADVANCE(1033); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if (lookahead == '.') ADVANCE(3045); + if (lookahead == '_') ADVANCE(2673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2529: + case 4436: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(893); - if (lookahead == '_') ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2530: + case 4437: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); - case 2531: + case 4438: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2532: + case 4439: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); - case 2533: + case 4440: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2534: + case 4441: ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); - case 2535: + case 4442: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2536: + case 4443: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); - case 2537: + case 4444: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2538: + case 4445: ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); - case 2539: + case 4446: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2540: + case 4447: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 2541: + case 4448: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(864); - if (lookahead == '<') ADVANCE(2583); - if (lookahead == '=') ADVANCE(2582); + if (lookahead == '.') ADVANCE(2504); + if (lookahead == '<') ADVANCE(4490); + if (lookahead == '=') ADVANCE(4489); END_STATE(); - case 2542: + case 4449: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(863); - if (lookahead == '<') ADVANCE(2583); - if (lookahead == '=') ADVANCE(2582); + if (lookahead == '.') ADVANCE(2503); + if (lookahead == '<') ADVANCE(4490); + if (lookahead == '=') ADVANCE(4489); END_STATE(); - case 2543: + case 4450: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2326); - if (lookahead == '<') ADVANCE(2583); - if (lookahead == '=') ADVANCE(2582); + if (lookahead == '.') ADVANCE(4233); + if (lookahead == '<') ADVANCE(4490); + if (lookahead == '=') ADVANCE(4489); END_STATE(); - case 2544: + case 4451: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(2583); - if (lookahead == '=') ADVANCE(2582); + if (lookahead == '<') ADVANCE(4490); + if (lookahead == '=') ADVANCE(4489); END_STATE(); - case 2545: + case 4452: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 2546: + case 4453: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); END_STATE(); - case 2547: + case 4454: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); END_STATE(); - case 2548: + case 4455: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4521); END_STATE(); - case 2549: + case 4456: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); END_STATE(); - case 2550: + case 4457: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4603); END_STATE(); - case 2551: + case 4458: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(2985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4522); END_STATE(); - case 2552: + case 4459: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4524); END_STATE(); - case 2553: + case 4460: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); END_STATE(); - case 2554: + case 4461: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); END_STATE(); - case 2555: + case 4462: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2541); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if (lookahead == '.') ADVANCE(4448); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); END_STATE(); - case 2556: + case 4463: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1028); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if (lookahead == '.') ADVANCE(2668); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); END_STATE(); - case 2557: + case 4464: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(875); - if (lookahead == '_') ADVANCE(889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + if (lookahead == '.') ADVANCE(2515); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); END_STATE(); - case 2558: + case 4465: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(875); - if (lookahead == '_') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); + if (lookahead == '.') ADVANCE(2515); + if (lookahead == '_') ADVANCE(2534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4518); END_STATE(); - case 2559: + case 4466: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); + if (lookahead == '.') ADVANCE(4451); END_STATE(); - case 2560: + case 4467: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); END_STATE(); - case 2561: + case 4468: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); END_STATE(); - case 2562: + case 4469: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); END_STATE(); - case 2563: + case 4470: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); END_STATE(); - case 2564: + case 4471: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); END_STATE(); - case 2565: + case 4472: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3608); + if (lookahead == '.') ADVANCE(5908); END_STATE(); - case 2566: + case 4473: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3608); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if (lookahead == '.') ADVANCE(5908); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); END_STATE(); - case 2567: + case 4474: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(444); + if (lookahead == '.') ADVANCE(482); END_STATE(); - case 2568: + case 4475: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2542); - if (lookahead == '_') ADVANCE(889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + if (lookahead == '.') ADVANCE(4449); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); END_STATE(); - case 2569: + case 4476: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2543); + if (lookahead == '.') ADVANCE(4450); END_STATE(); - case 2570: + case 4477: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); + if (lookahead == '_') ADVANCE(5915); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4596); END_STATE(); - case 2571: + case 4478: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if (lookahead == '_') ADVANCE(3041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); END_STATE(); - case 2572: + case 4479: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); + if (lookahead == '_') ADVANCE(5408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4521); END_STATE(); - case 2573: + case 4480: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); END_STATE(); - case 2574: + case 4481: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3862); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); + if (lookahead == '_') ADVANCE(6162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4526); END_STATE(); - case 2575: + case 4482: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + if (lookahead == '_') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4525); END_STATE(); - case 2576: + case 4483: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 2577: + case 4484: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2578: + case 4485: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2579: + case 4486: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 2580: + case 4487: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2581: + case 4488: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2582: + case 4489: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 2583: + case 4490: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 2584: + case 4491: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3041); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(5341); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2585: + case 4492: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3583); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(5883); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2586: + case 4493: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3236); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(5536); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2587: + case 4494: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3693); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(5993); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2588: + case 4495: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4503); END_STATE(); - case 2589: + case 4496: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4505); END_STATE(); - case 2590: + case 4497: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4507); END_STATE(); - case 2591: + case 4498: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4509); END_STATE(); - case 2592: + case 4499: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(1550); - if (lookahead == 'o') ADVANCE(1552); - if (lookahead == 'x') ADVANCE(1559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(3441); + if (lookahead == 'o') ADVANCE(3443); + if (lookahead == 'x') ADVANCE(3450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2593: + case 4500: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (lookahead == 'b') ADVANCE(1005); - if (lookahead == 'o') ADVANCE(1006); - if (lookahead == 'x') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == 'b') ADVANCE(2645); + if (lookahead == 'o') ADVANCE(2646); + if (lookahead == 'x') ADVANCE(2647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2594: + case 4501: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); END_STATE(); - case 2595: + case 4502: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4493); END_STATE(); - case 2596: + case 4503: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4502); END_STATE(); - case 2597: + case 4504: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2584); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4491); END_STATE(); - case 2598: + case 4505: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4504); END_STATE(); - case 2599: + case 4506: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4494); END_STATE(); - case 2600: + case 4507: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4506); END_STATE(); - case 2601: + case 4508: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4492); END_STATE(); - case 2602: + case 4509: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); END_STATE(); - case 2603: + case 4510: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4503); END_STATE(); - case 2604: + case 4511: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4505); END_STATE(); - case 2605: + case 4512: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4507); END_STATE(); - case 2606: + case 4513: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4509); END_STATE(); - case 2607: + case 4514: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2607); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2608: + case 4515: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2608); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if (lookahead == '_') ADVANCE(4515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); END_STATE(); - case 2609: + case 4516: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(2609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if (lookahead == '_') ADVANCE(4516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2610: + case 4517: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(2610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if (lookahead == '_') ADVANCE(4517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); END_STATE(); - case 2611: + case 4518: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2611); + if (lookahead == '_') ADVANCE(4518); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); + lookahead == 'e') ADVANCE(2535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4518); END_STATE(); - case 2612: + case 4519: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); END_STATE(); - case 2613: + case 4520: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2613); + if (lookahead == '_') ADVANCE(4520); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1294); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); + lookahead == 'e') ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4520); END_STATE(); - case 2614: + case 4521: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2614); + if (lookahead == '_') ADVANCE(4521); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); + lookahead == 'e') ADVANCE(5409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4521); END_STATE(); - case 2615: + case 4522: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2615); + if (lookahead == '_') ADVANCE(4522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); + lookahead == 'e') ADVANCE(5286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4522); END_STATE(); - case 2616: + case 4523: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2616); + if (lookahead == '_') ADVANCE(4523); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3634); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + lookahead == 'e') ADVANCE(5934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); END_STATE(); - case 2617: + case 4524: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2617); + if (lookahead == '_') ADVANCE(4524); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + lookahead == 'e') ADVANCE(5839); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4524); END_STATE(); - case 2618: + case 4525: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2618); + if (lookahead == '_') ADVANCE(4525); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(483); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + lookahead == 'e') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4525); END_STATE(); - case 2619: + case 4526: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2619); + if (lookahead == '_') ADVANCE(4526); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3863); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); + lookahead == 'e') ADVANCE(6163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4526); END_STATE(); - case 2620: + case 4527: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2620); + if (lookahead == '_') ADVANCE(4527); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2620); + lookahead == 'e') ADVANCE(6010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4527); END_STATE(); - case 2621: + case 4528: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2621); + if (lookahead == '_') ADVANCE(4528); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3885); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); + lookahead == 'e') ADVANCE(5553); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4528); END_STATE(); - case 2622: + case 4529: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(2622); + if (lookahead == '_') ADVANCE(4529); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); + lookahead == 'e') ADVANCE(6185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4529); END_STATE(); - case 2623: + case 4530: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(2623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if (lookahead == '_') ADVANCE(4530); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); END_STATE(); - case 2624: + case 4531: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 2625: + case 4532: ACCEPT_TOKEN(anon_sym_null); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1738); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1737); + lookahead == '@') ADVANCE(3645); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3644); END_STATE(); - case 2626: + case 4533: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2627: + case 4534: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2628: + case 4535: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3645); END_STATE(); - case 2629: + case 4536: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2630: + case 4537: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2631: + case 4538: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 2632: + case 4539: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 2633: + case 4540: ACCEPT_TOKEN(anon_sym_true); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1732); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1731); + lookahead == '@') ADVANCE(3639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3638); END_STATE(); - case 2634: + case 4541: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2635: + case 4542: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2636: + case 4543: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2637: + case 4544: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3639); END_STATE(); - case 2638: + case 4545: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2639: + case 4546: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2640: + case 4547: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 2641: + case 4548: ACCEPT_TOKEN(anon_sym_false); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1735); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); + lookahead == '@') ADVANCE(3642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3641); END_STATE(); - case 2642: + case 4549: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2643: + case 4550: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2644: + case 4551: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2645: + case 4552: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3642); END_STATE(); - case 2646: + case 4553: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2647: + case 4554: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2648: + case 4555: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 2649: + case 4556: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 2650: + case 4557: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1556); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(3447); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2651: + case 4558: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3041); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(5341); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2652: + case 4559: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3583); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(5883); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2653: + case 4560: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3846); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(6146); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2654: + case 4561: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3236); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(5536); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2655: + case 4562: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3693); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(5993); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2656: + case 4563: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(685); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '-') ADVANCE(2238); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2657: + case 4564: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4574); END_STATE(); - case 2658: + case 4565: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4576); END_STATE(); - case 2659: + case 4566: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4578); END_STATE(); - case 2660: + case 4567: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4580); END_STATE(); - case 2661: + case 4568: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4582); END_STATE(); - case 2662: + case 4569: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4584); END_STATE(); - case 2663: + case 4570: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(2726); - if (lookahead == 'o') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(4633); + if (lookahead == 'o') ADVANCE(4649); + if (lookahead == 'x') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4586); END_STATE(); - case 2664: + case 4571: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(1550); - if (lookahead == 'o') ADVANCE(1552); - if (lookahead == 'x') ADVANCE(1559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(3441); + if (lookahead == 'o') ADVANCE(3443); + if (lookahead == 'x') ADVANCE(3450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2665: + case 4572: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (lookahead == 'b') ADVANCE(1005); - if (lookahead == 'o') ADVANCE(1006); - if (lookahead == 'x') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '_') ADVANCE(4594); + if (lookahead == 'b') ADVANCE(2645); + if (lookahead == 'o') ADVANCE(2646); + if (lookahead == 'x') ADVANCE(2647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2666: + case 4573: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2650); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4557); END_STATE(); - case 2667: + case 4574: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4573); END_STATE(); - case 2668: + case 4575: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2651); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4558); END_STATE(); - case 2669: + case 4576: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4575); END_STATE(); - case 2670: + case 4577: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2652); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4559); END_STATE(); - case 2671: + case 4578: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4577); END_STATE(); - case 2672: + case 4579: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2656); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4563); END_STATE(); - case 2673: + case 4580: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4579); END_STATE(); - case 2674: + case 4581: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4560); END_STATE(); - case 2675: + case 4582: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4581); END_STATE(); - case 2676: + case 4583: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2654); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4561); END_STATE(); - case 2677: + case 4584: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4583); END_STATE(); - case 2678: + case 4585: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4562); END_STATE(); - case 2679: + case 4586: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4585); END_STATE(); - case 2680: + case 4587: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4574); END_STATE(); - case 2681: + case 4588: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4576); END_STATE(); - case 2682: + case 4589: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4578); END_STATE(); - case 2683: + case 4590: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4580); END_STATE(); - case 2684: + case 4591: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4582); END_STATE(); - case 2685: + case 4592: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4584); END_STATE(); - case 2686: + case 4593: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4586); END_STATE(); - case 2687: + case 4594: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); END_STATE(); - case 2688: + case 4595: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(2688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if (lookahead == '_') ADVANCE(4595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); END_STATE(); - case 2689: + case 4596: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2689); + if (lookahead == '_') ADVANCE(4596); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); + lookahead == 'e') ADVANCE(5916); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4596); END_STATE(); - case 2690: + case 4597: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if (lookahead == '_') ADVANCE(4597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); END_STATE(); - case 2691: + case 4598: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2691); + if (lookahead == '_') ADVANCE(4598); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2691); + lookahead == 'e') ADVANCE(5823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4598); END_STATE(); - case 2692: + case 4599: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2692); + if (lookahead == '_') ADVANCE(4599); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + lookahead == 'e') ADVANCE(3042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); END_STATE(); - case 2693: + case 4600: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2693); + if (lookahead == '_') ADVANCE(4600); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + lookahead == 'e') ADVANCE(2530); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); END_STATE(); - case 2694: + case 4601: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2694); + if (lookahead == '_') ADVANCE(4601); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2982); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + lookahead == 'e') ADVANCE(5282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); END_STATE(); - case 2695: + case 4602: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2695); + if (lookahead == '_') ADVANCE(4602); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3535); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + lookahead == 'e') ADVANCE(5835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); END_STATE(); - case 2696: + case 4603: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2696); + if (lookahead == '_') ADVANCE(4603); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + lookahead == 'e') ADVANCE(526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4603); END_STATE(); - case 2697: + case 4604: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2697); + if (lookahead == '_') ADVANCE(4604); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3808); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); + lookahead == 'e') ADVANCE(6108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4604); END_STATE(); - case 2698: + case 4605: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2698); + if (lookahead == '_') ADVANCE(4605); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + lookahead == 'e') ADVANCE(5418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); END_STATE(); - case 2699: + case 4606: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(2699); + if (lookahead == '_') ADVANCE(4606); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3642); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + lookahead == 'e') ADVANCE(5941); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); END_STATE(); - case 2700: + case 4607: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(2700); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if (lookahead == '_') ADVANCE(4607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); END_STATE(); - case 2701: + case 4608: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4608); END_STATE(); - case 2702: + case 4609: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2702); + lookahead == '_') ADVANCE(4609); END_STATE(); - case 2703: + case 4610: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2703); + lookahead == '_') ADVANCE(4610); END_STATE(); - case 2704: + case 4611: ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 2705: + case 4612: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + lookahead == 'i') ADVANCE(3647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3650); END_STATE(); - case 2706: + case 4613: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1746); + lookahead == 'i') ADVANCE(3653); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1753); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + lookahead == '@') ADVANCE(3660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3659); END_STATE(); - case 2707: + case 4614: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + lookahead == 'i') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3660); END_STATE(); - case 2708: + case 4615: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3029); + lookahead == 'i') ADVANCE(5329); END_STATE(); - case 2709: + case 4616: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3572); + lookahead == 'i') ADVANCE(5872); END_STATE(); - case 2710: + case 4617: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3837); + lookahead == 'i') ADVANCE(6137); END_STATE(); - case 2711: + case 4618: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3223); + lookahead == 'i') ADVANCE(5523); END_STATE(); - case 2712: + case 4619: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3682); + lookahead == 'i') ADVANCE(5982); END_STATE(); - case 2713: + case 4620: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(669); + lookahead == 'i') ADVANCE(2223); END_STATE(); - case 2714: + case 4621: ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); - case 2715: + case 4622: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + lookahead == 'i') ADVANCE(3662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3665); END_STATE(); - case 2716: + case 4623: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + lookahead == 'i') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 2717: + case 4624: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(665); + lookahead == 'i') ADVANCE(2219); END_STATE(); - case 2718: + case 4625: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3574); + lookahead == 'i') ADVANCE(5874); END_STATE(); - case 2719: + case 4626: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3839); + lookahead == 'i') ADVANCE(6139); END_STATE(); - case 2720: + case 4627: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3226); + lookahead == 'i') ADVANCE(5526); END_STATE(); - case 2721: + case 4628: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3684); + lookahead == 'i') ADVANCE(5984); END_STATE(); - case 2722: + case 4629: ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); - case 2723: + case 4630: ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if (lookahead == ',') ADVANCE(3673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3671); END_STATE(); - case 2724: + case 4631: ACCEPT_TOKEN(aux_sym__val_number_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1766); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1765); + lookahead == '@') ADVANCE(3673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3672); END_STATE(); - case 2725: + case 4632: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3673); END_STATE(); - case 2726: + case 4633: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2702); + lookahead == '_') ADVANCE(4609); END_STATE(); - case 2727: + case 4634: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '_') ADVANCE(4114); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2728: + case 4635: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2207); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == '_') ADVANCE(5784); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2729: + case 4636: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2931); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == '_') ADVANCE(5231); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2730: + case 4637: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '_') ADVANCE(6072); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2731: + case 4638: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 2732: + case 4639: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(3838); END_STATE(); - case 2733: + case 4640: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(608); + if (lookahead == 'i') ADVANCE(5489); END_STATE(); - case 2734: + case 4641: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3189); + if (lookahead == 'i') ADVANCE(2005); END_STATE(); - case 2735: + case 4642: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(925); + if (lookahead == 'r') ADVANCE(3129); END_STATE(); - case 2736: + case 4643: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1353); + if (lookahead == 'r') ADVANCE(2565); END_STATE(); - case 2737: + case 4644: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2738: + case 4645: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 2739: + case 4646: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2293); + if (lookahead == 'e') ADVANCE(4200); END_STATE(); - case 2740: + case 4647: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1569); + if (lookahead == 'e') ADVANCE(3460); END_STATE(); - case 2741: + case 4648: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2742: + case 4649: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2703); + lookahead == '_') ADVANCE(4610); END_STATE(); - case 2743: + case 4650: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '_') ADVANCE(4116); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2744: + case 4651: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2209); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + lookahead == '_') ADVANCE(5790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2745: + case 4652: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2933); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == '_') ADVANCE(5233); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2746: + case 4653: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '_') ADVANCE(6076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2747: + case 4654: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4608); END_STATE(); - case 2748: + case 4655: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4129); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(4130); END_STATE(); - case 2749: + case 4656: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2222); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2750: + case 4657: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2946); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5246); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2751: + case 4658: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3790); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2752: + case 4659: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 2753: + case 4660: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2753); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4660); END_STATE(); - case 2754: + case 4661: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 2755: + case 4662: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(679); + if (lookahead == '.') ADVANCE(2233); if (lookahead == '+' || - lookahead == '-') ADVANCE(448); + lookahead == '-') ADVANCE(490); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); + lookahead == 'z') ADVANCE(4661); END_STATE(); - case 2756: + case 4663: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3039); + if (lookahead == '.') ADVANCE(5339); if (lookahead == '+' || - lookahead == '-') ADVANCE(2968); + lookahead == '-') ADVANCE(5268); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); + lookahead == 'z') ADVANCE(4661); END_STATE(); - case 2757: + case 4664: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3586); + if (lookahead == '.') ADVANCE(5886); if (lookahead == '+' || - lookahead == '-') ADVANCE(3521); + lookahead == '-') ADVANCE(5821); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); + lookahead == 'z') ADVANCE(4661); END_STATE(); - case 2758: + case 4665: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3239); + if (lookahead == '.') ADVANCE(5539); if (lookahead == '+' || - lookahead == '-') ADVANCE(3082); + lookahead == '-') ADVANCE(5382); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); + lookahead == 'z') ADVANCE(4661); END_STATE(); - case 2759: + case 4666: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3697); + if (lookahead == '.') ADVANCE(5997); if (lookahead == '+' || - lookahead == '-') ADVANCE(3614); + lookahead == '-') ADVANCE(5914); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); + lookahead == 'z') ADVANCE(4661); END_STATE(); - case 2760: + case 4667: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2777); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(678); + if (lookahead == ':') ADVANCE(4684); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2232); END_STATE(); - case 2761: + case 4668: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2778); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3034); + if (lookahead == ':') ADVANCE(4685); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5334); END_STATE(); - case 2762: + case 4669: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2779); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3580); + if (lookahead == ':') ADVANCE(4686); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5880); END_STATE(); - case 2763: + case 4670: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2780); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3233); + if (lookahead == ':') ADVANCE(4687); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5533); END_STATE(); - case 2764: + case 4671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2781); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3690); + if (lookahead == ':') ADVANCE(4688); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5990); END_STATE(); - case 2765: + case 4672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1558); + if (lookahead == 'T') ADVANCE(3449); END_STATE(); - case 2766: + case 4673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3043); + if (lookahead == 'T') ADVANCE(5343); END_STATE(); - case 2767: + case 4674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3589); + if (lookahead == 'T') ADVANCE(5889); END_STATE(); - case 2768: + case 4675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3848); + if (lookahead == 'T') ADVANCE(6148); END_STATE(); - case 2769: + case 4676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3241); + if (lookahead == 'T') ADVANCE(5541); END_STATE(); - case 2770: + case 4677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3695); + if (lookahead == 'T') ADVANCE(5995); END_STATE(); - case 2771: + case 4678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(688); + if (lookahead == 'T') ADVANCE(2242); END_STATE(); - case 2772: + case 4679: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(448); + lookahead == '-') ADVANCE(490); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2772); + lookahead == 'z') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); END_STATE(); - case 2773: + case 4680: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2968); + lookahead == '-') ADVANCE(5268); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); + lookahead == 'z') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); END_STATE(); - case 2774: + case 4681: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3521); + lookahead == '-') ADVANCE(5821); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2774); + lookahead == 'z') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4681); END_STATE(); - case 2775: + case 4682: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3082); + lookahead == '-') ADVANCE(5382); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2775); + lookahead == 'z') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4682); END_STATE(); - case 2776: + case 4683: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3614); + lookahead == '-') ADVANCE(5914); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2776); + lookahead == 'z') ADVANCE(4661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4683); END_STATE(); - case 2777: + case 4684: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(678); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2232); END_STATE(); - case 2778: + case 4685: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3034); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5334); END_STATE(); - case 2779: + case 4686: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3580); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5880); END_STATE(); - case 2780: + case 4687: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3233); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5533); END_STATE(); - case 2781: + case 4688: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3690); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5990); END_STATE(); - case 2782: + case 4689: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 2783: + case 4690: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -46123,28 +56440,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2784: + case 4691: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(2785); + if (lookahead == '#') ADVANCE(4692); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2784); + lookahead == ' ') ADVANCE(4691); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(2785); + lookahead != '\\') ADVANCE(4692); END_STATE(); - case 2785: + case 4692: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2785); + lookahead != '\\') ADVANCE(4692); END_STATE(); - case 2786: + case 4693: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 2787: + case 4694: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -46152,12 +56469,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2788: + case 4695: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 2789: + case 4696: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -46165,48 +56482,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2790: + case 4697: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 2791: + case 4698: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(2792); + if (lookahead == '#') ADVANCE(4699); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2791); + lookahead == ' ') ADVANCE(4698); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(2792); + lookahead != '\\') ADVANCE(4699); END_STATE(); - case 2792: + case 4699: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(2792); + lookahead != '\\') ADVANCE(4699); END_STATE(); - case 2793: + case 4700: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(2794); + if (lookahead == '#') ADVANCE(4701); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2793); + lookahead == ' ') ADVANCE(4700); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2794); + lookahead != '(') ADVANCE(4701); END_STATE(); - case 2794: + case 4701: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2794); + lookahead != '(') ADVANCE(4701); END_STATE(); - case 2795: + case 4702: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 2796: + case 4703: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -46214,20 +56531,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2797: + case 4704: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2798: + case 4705: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(2786); - if (lookahead != 0) ADVANCE(411); + if (lookahead == '\'') ADVANCE(4693); + if (lookahead != 0) ADVANCE(410); END_STATE(); - case 2799: + case 4706: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 2800: + case 4707: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -46235,68 +56552,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2801: + case 4708: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 2802: + case 4709: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 2803: + case 4710: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 2804: + case 4711: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 2805: + case 4712: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 2806: + case 4713: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2805); + if (lookahead == ',') ADVANCE(4712); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2806); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + lookahead == ' ') ADVANCE(4713); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4712); END_STATE(); - case 2807: + case 4714: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2805); + if (lookahead == ',') ADVANCE(4712); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2807); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); + lookahead == ' ') ADVANCE(4714); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4715); END_STATE(); - case 2808: + case 4715: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(2813); + if (lookahead == ';') ADVANCE(4720); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(453); + lookahead == ' ') ADVANCE(503); END_STATE(); - case 2809: + case 4716: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2809); + lookahead == ' ') ADVANCE(4716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2805); + lookahead == ',') ADVANCE(4712); END_STATE(); - case 2810: + case 4717: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 2811: + case 4718: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4073); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); + if (lookahead == '#') ADVANCE(6373); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4719); END_STATE(); - case 2812: + case 4719: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4719); END_STATE(); - case 2813: + case 4720: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 2814: + case 4721: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(2786); + if (lookahead == '\'') ADVANCE(4693); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46308,12 +56625,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(411); - if (lookahead != 0) ADVANCE(2814); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(410); + if (lookahead != 0) ADVANCE(4721); END_STATE(); - case 2815: + case 4722: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(2788); + if (lookahead == '`') ADVANCE(4695); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46325,708 +56642,1914 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(485); - if (lookahead != 0) ADVANCE(2815); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(535); + if (lookahead != 0) ADVANCE(4722); END_STATE(); - case 2816: + case 4723: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2816); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4723); END_STATE(); - case 2817: + case 4724: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 2818: + case 4725: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2818); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4725); END_STATE(); - case 2819: + case 4726: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 2820: + case 4727: + ACCEPT_TOKEN(anon_sym_ansigradient); + END_STATE(); + case 4728: + ACCEPT_TOKEN(anon_sym_ansilink); + END_STATE(); + case 4729: + ACCEPT_TOKEN(anon_sym_ansistrip); + END_STATE(); + case 4730: + ACCEPT_TOKEN(anon_sym_bitsand); + END_STATE(); + case 4731: + ACCEPT_TOKEN(anon_sym_bitsnot); + END_STATE(); + case 4732: + ACCEPT_TOKEN(anon_sym_bitsor); + END_STATE(); + case 4733: + ACCEPT_TOKEN(anon_sym_bitsrol); + END_STATE(); + case 4734: + ACCEPT_TOKEN(anon_sym_bitsror); + END_STATE(); + case 4735: + ACCEPT_TOKEN(anon_sym_bitsshl); + END_STATE(); + case 4736: + ACCEPT_TOKEN(anon_sym_bitsshr); + END_STATE(); + case 4737: + ACCEPT_TOKEN(anon_sym_bitsxor); + END_STATE(); + case 4738: + ACCEPT_TOKEN(anon_sym_bytesadd); + END_STATE(); + case 4739: + ACCEPT_TOKEN(anon_sym_bytesat); + END_STATE(); + case 4740: + ACCEPT_TOKEN(anon_sym_bytesbuild); + END_STATE(); + case 4741: + ACCEPT_TOKEN(anon_sym_bytescollect); + END_STATE(); + case 4742: + ACCEPT_TOKEN(anon_sym_bytesends_DASHwith); + END_STATE(); + case 4743: + ACCEPT_TOKEN(anon_sym_bytesindex_DASHof); + END_STATE(); + case 4744: + ACCEPT_TOKEN(anon_sym_byteslength); + END_STATE(); + case 4745: + ACCEPT_TOKEN(anon_sym_bytesremove); + END_STATE(); + case 4746: + ACCEPT_TOKEN(anon_sym_bytesreplace); + END_STATE(); + case 4747: + ACCEPT_TOKEN(anon_sym_bytesreverse); + END_STATE(); + case 4748: + ACCEPT_TOKEN(anon_sym_bytesstarts_DASHwith); + END_STATE(); + case 4749: + ACCEPT_TOKEN(anon_sym_commandlineedit); + END_STATE(); + case 4750: + ACCEPT_TOKEN(anon_sym_commandlineget_DASHcursor); + END_STATE(); + case 4751: + ACCEPT_TOKEN(anon_sym_commandlineset_DASHcursor); + END_STATE(); + case 4752: + ACCEPT_TOKEN(anon_sym_configenv); + END_STATE(); + case 4753: + ACCEPT_TOKEN(anon_sym_confignu); + END_STATE(); + case 4754: + ACCEPT_TOKEN(anon_sym_configreset); + END_STATE(); + case 4755: + ACCEPT_TOKEN(anon_sym_dateformat); + END_STATE(); + case 4756: + ACCEPT_TOKEN(anon_sym_datehumanize); + END_STATE(); + case 4757: + ACCEPT_TOKEN(anon_sym_datelist_DASHtimezone); + END_STATE(); + case 4758: + ACCEPT_TOKEN(anon_sym_datenow); + END_STATE(); + case 4759: + ACCEPT_TOKEN(anon_sym_dateto_DASHrecord); + END_STATE(); + case 4760: + ACCEPT_TOKEN(anon_sym_dateto_DASHtable); + END_STATE(); + case 4761: + ACCEPT_TOKEN(anon_sym_dateto_DASHtimezone); + END_STATE(); + case 4762: + ACCEPT_TOKEN(anon_sym_debuginfo); + END_STATE(); + case 4763: + ACCEPT_TOKEN(anon_sym_debugprofile); + END_STATE(); + case 4764: + ACCEPT_TOKEN(anon_sym_decodebase32); + if (lookahead == 'h') ADVANCE(943); + END_STATE(); + case 4765: + ACCEPT_TOKEN(anon_sym_decodebase32hex); + END_STATE(); + case 4766: + ACCEPT_TOKEN(anon_sym_decodebase64); + END_STATE(); + case 4767: + ACCEPT_TOKEN(anon_sym_decodehex); + END_STATE(); + case 4768: + ACCEPT_TOKEN(anon_sym_detectcolumns); + END_STATE(); + case 4769: + ACCEPT_TOKEN(anon_sym_dropcolumn); + END_STATE(); + case 4770: + ACCEPT_TOKEN(anon_sym_dropnth); + END_STATE(); + case 4771: + ACCEPT_TOKEN(anon_sym_dtadd); + END_STATE(); + case 4772: + ACCEPT_TOKEN(anon_sym_dtdiff); + END_STATE(); + case 4773: + ACCEPT_TOKEN(anon_sym_dtformat); + END_STATE(); + case 4774: + ACCEPT_TOKEN(anon_sym_dtnow); + END_STATE(); + case 4775: + ACCEPT_TOKEN(anon_sym_dtpart); + END_STATE(); + case 4776: + ACCEPT_TOKEN(anon_sym_dtto); + END_STATE(); + case 4777: + ACCEPT_TOKEN(anon_sym_dtutcnow); + END_STATE(); + case 4778: + ACCEPT_TOKEN(anon_sym_eachwhile); + END_STATE(); + case 4779: + ACCEPT_TOKEN(anon_sym_encodebase32); + if (lookahead == 'h') ADVANCE(945); + END_STATE(); + case 4780: + ACCEPT_TOKEN(anon_sym_encodebase32hex); + END_STATE(); + case 4781: + ACCEPT_TOKEN(anon_sym_encodebase64); + END_STATE(); + case 4782: + ACCEPT_TOKEN(anon_sym_encodehex); + END_STATE(); + case 4783: + ACCEPT_TOKEN(anon_sym_errormake); + END_STATE(); + case 4784: + ACCEPT_TOKEN(anon_sym_exploreir); + END_STATE(); + case 4785: + ACCEPT_TOKEN(anon_sym_formatdate); + END_STATE(); + case 4786: + ACCEPT_TOKEN(anon_sym_formatduration); + END_STATE(); + case 4787: + ACCEPT_TOKEN(anon_sym_formatfilesize); + END_STATE(); + case 4788: + ACCEPT_TOKEN(anon_sym_formatpattern); + END_STATE(); + case 4789: + ACCEPT_TOKEN(anon_sym_frombz2); + END_STATE(); + case 4790: + ACCEPT_TOKEN(anon_sym_fromcsv); + END_STATE(); + case 4791: + ACCEPT_TOKEN(anon_sym_fromeml); + END_STATE(); + case 4792: + ACCEPT_TOKEN(anon_sym_fromgz); + END_STATE(); + case 4793: + ACCEPT_TOKEN(anon_sym_fromics); + END_STATE(); + case 4794: + ACCEPT_TOKEN(anon_sym_fromini); + END_STATE(); + case 4795: + ACCEPT_TOKEN(anon_sym_fromjson); + END_STATE(); + case 4796: + ACCEPT_TOKEN(anon_sym_frommsgpack); + if (lookahead == 'z') ADVANCE(4797); + END_STATE(); + case 4797: + ACCEPT_TOKEN(anon_sym_frommsgpackz); + END_STATE(); + case 4798: + ACCEPT_TOKEN(anon_sym_fromnuon); + END_STATE(); + case 4799: + ACCEPT_TOKEN(anon_sym_fromods); + END_STATE(); + case 4800: + ACCEPT_TOKEN(anon_sym_fromparquet); + END_STATE(); + case 4801: + ACCEPT_TOKEN(anon_sym_fromplist); + END_STATE(); + case 4802: + ACCEPT_TOKEN(anon_sym_frompng); + END_STATE(); + case 4803: + ACCEPT_TOKEN(anon_sym_fromssv); + END_STATE(); + case 4804: + ACCEPT_TOKEN(anon_sym_fromtoml); + END_STATE(); + case 4805: + ACCEPT_TOKEN(anon_sym_fromtsv); + END_STATE(); + case 4806: + ACCEPT_TOKEN(anon_sym_fromurl); + END_STATE(); + case 4807: + ACCEPT_TOKEN(anon_sym_fromvcf); + END_STATE(); + case 4808: + ACCEPT_TOKEN(anon_sym_fromxlsx); + END_STATE(); + case 4809: + ACCEPT_TOKEN(anon_sym_fromxml); + END_STATE(); + case 4810: + ACCEPT_TOKEN(anon_sym_fromxz); + END_STATE(); + case 4811: + ACCEPT_TOKEN(anon_sym_fromyaml); + END_STATE(); + case 4812: + ACCEPT_TOKEN(anon_sym_fromyml); + END_STATE(); + case 4813: + ACCEPT_TOKEN(anon_sym_fromzst); + END_STATE(); + case 4814: + ACCEPT_TOKEN(anon_sym_hashmd5); + END_STATE(); + case 4815: + ACCEPT_TOKEN(anon_sym_hashsha256); + END_STATE(); + case 4816: + ACCEPT_TOKEN(anon_sym_helpaliases); + END_STATE(); + case 4817: + ACCEPT_TOKEN(anon_sym_helpcommands); + END_STATE(); + case 4818: + ACCEPT_TOKEN(anon_sym_helpescapes); + END_STATE(); + case 4819: + ACCEPT_TOKEN(anon_sym_helpexterns); + END_STATE(); + case 4820: + ACCEPT_TOKEN(anon_sym_helpmodules); + END_STATE(); + case 4821: + ACCEPT_TOKEN(anon_sym_helpoperators); + END_STATE(); + case 4822: + ACCEPT_TOKEN(anon_sym_historyimport); + END_STATE(); + case 4823: + ACCEPT_TOKEN(anon_sym_historysession); + END_STATE(); + case 4824: + ACCEPT_TOKEN(anon_sym_httpdelete); + END_STATE(); + case 4825: + ACCEPT_TOKEN(anon_sym_httpget); + END_STATE(); + case 4826: + ACCEPT_TOKEN(anon_sym_httphead); + END_STATE(); + case 4827: + ACCEPT_TOKEN(anon_sym_httpoptions); + END_STATE(); + case 4828: + ACCEPT_TOKEN(anon_sym_httppatch); + END_STATE(); + case 4829: + ACCEPT_TOKEN(anon_sym_httppost); + END_STATE(); + case 4830: + ACCEPT_TOKEN(anon_sym_httpput); + END_STATE(); + case 4831: + ACCEPT_TOKEN(anon_sym_inputlist); + if (lookahead == 'e') ADVANCE(1436); + END_STATE(); + case 4832: + ACCEPT_TOKEN(anon_sym_inputlisten); + END_STATE(); + case 4833: + ACCEPT_TOKEN(anon_sym_intobinary); + END_STATE(); + case 4834: + ACCEPT_TOKEN(anon_sym_intobits); + END_STATE(); + case 4835: + ACCEPT_TOKEN(anon_sym_intobool); + END_STATE(); + case 4836: + ACCEPT_TOKEN(anon_sym_intocell_DASHpath); + END_STATE(); + case 4837: + ACCEPT_TOKEN(anon_sym_intodatetime); + END_STATE(); + case 4838: + ACCEPT_TOKEN(anon_sym_intoduration); + END_STATE(); + case 4839: + ACCEPT_TOKEN(anon_sym_intofilesize); + END_STATE(); + case 4840: + ACCEPT_TOKEN(anon_sym_intofloat); + END_STATE(); + case 4841: + ACCEPT_TOKEN(anon_sym_intoglob); + END_STATE(); + case 4842: + ACCEPT_TOKEN(anon_sym_intoint); + END_STATE(); + case 4843: + ACCEPT_TOKEN(anon_sym_intorecord); + END_STATE(); + case 4844: + ACCEPT_TOKEN(anon_sym_intosqlite); + END_STATE(); + case 4845: + ACCEPT_TOKEN(anon_sym_intostring); + END_STATE(); + case 4846: + ACCEPT_TOKEN(anon_sym_intovalue); + END_STATE(); + case 4847: + ACCEPT_TOKEN(anon_sym_jsonpath); + END_STATE(); + case 4848: + ACCEPT_TOKEN(anon_sym_keybindingsdefault); + END_STATE(); + case 4849: + ACCEPT_TOKEN(anon_sym_keybindingslist); + if (lookahead == 'e') ADVANCE(1448); + END_STATE(); + case 4850: + ACCEPT_TOKEN(anon_sym_keybindingslisten); + END_STATE(); + case 4851: + ACCEPT_TOKEN(anon_sym_mathabs); + END_STATE(); + case 4852: + ACCEPT_TOKEN(anon_sym_matharccos); + if (lookahead == 'h') ADVANCE(4853); + END_STATE(); + case 4853: + ACCEPT_TOKEN(anon_sym_matharccosh); + END_STATE(); + case 4854: + ACCEPT_TOKEN(anon_sym_matharcsin); + if (lookahead == 'h') ADVANCE(4855); + END_STATE(); + case 4855: + ACCEPT_TOKEN(anon_sym_matharcsinh); + END_STATE(); + case 4856: + ACCEPT_TOKEN(anon_sym_matharctan); + if (lookahead == 'h') ADVANCE(4857); + END_STATE(); + case 4857: + ACCEPT_TOKEN(anon_sym_matharctanh); + END_STATE(); + case 4858: + ACCEPT_TOKEN(anon_sym_mathavg); + END_STATE(); + case 4859: + ACCEPT_TOKEN(anon_sym_mathceil); + END_STATE(); + case 4860: + ACCEPT_TOKEN(anon_sym_mathcos); + if (lookahead == 'h') ADVANCE(4861); + END_STATE(); + case 4861: + ACCEPT_TOKEN(anon_sym_mathcosh); + END_STATE(); + case 4862: + ACCEPT_TOKEN(anon_sym_mathexp); + END_STATE(); + case 4863: + ACCEPT_TOKEN(anon_sym_mathfloor); + END_STATE(); + case 4864: + ACCEPT_TOKEN(anon_sym_mathln); + END_STATE(); + case 4865: + ACCEPT_TOKEN(anon_sym_mathlog); + END_STATE(); + case 4866: + ACCEPT_TOKEN(anon_sym_mathmax); + END_STATE(); + case 4867: + ACCEPT_TOKEN(anon_sym_mathmedian); + END_STATE(); + case 4868: + ACCEPT_TOKEN(anon_sym_mathmin); + END_STATE(); + case 4869: + ACCEPT_TOKEN(anon_sym_mathmode); + END_STATE(); + case 4870: + ACCEPT_TOKEN(anon_sym_mathproduct); + END_STATE(); + case 4871: + ACCEPT_TOKEN(anon_sym_mathround); + END_STATE(); + case 4872: + ACCEPT_TOKEN(anon_sym_mathsin); + if (lookahead == 'h') ADVANCE(4873); + END_STATE(); + case 4873: + ACCEPT_TOKEN(anon_sym_mathsinh); + END_STATE(); + case 4874: + ACCEPT_TOKEN(anon_sym_mathsqrt); + END_STATE(); + case 4875: + ACCEPT_TOKEN(anon_sym_mathstddev); + END_STATE(); + case 4876: + ACCEPT_TOKEN(anon_sym_mathsum); + END_STATE(); + case 4877: + ACCEPT_TOKEN(anon_sym_mathtan); + if (lookahead == 'h') ADVANCE(4878); + END_STATE(); + case 4878: + ACCEPT_TOKEN(anon_sym_mathtanh); + END_STATE(); + case 4879: + ACCEPT_TOKEN(anon_sym_mathvariance); + END_STATE(); + case 4880: + ACCEPT_TOKEN(anon_sym_metadataaccess); + END_STATE(); + case 4881: + ACCEPT_TOKEN(anon_sym_metadataset); + END_STATE(); + case 4882: + ACCEPT_TOKEN(anon_sym_pathbasename); + END_STATE(); + case 4883: + ACCEPT_TOKEN(anon_sym_pathdirname); + END_STATE(); + case 4884: + ACCEPT_TOKEN(anon_sym_pathexists); + END_STATE(); + case 4885: + ACCEPT_TOKEN(anon_sym_pathexpand); + END_STATE(); + case 4886: + ACCEPT_TOKEN(anon_sym_pathjoin); + END_STATE(); + case 4887: + ACCEPT_TOKEN(anon_sym_pathparse); + END_STATE(); + case 4888: + ACCEPT_TOKEN(anon_sym_pathrelative_DASHto); + END_STATE(); + case 4889: + ACCEPT_TOKEN(anon_sym_pathsplit); + END_STATE(); + case 4890: + ACCEPT_TOKEN(anon_sym_pathtype); + END_STATE(); + case 4891: + ACCEPT_TOKEN(anon_sym_pluginadd); + END_STATE(); + case 4892: + ACCEPT_TOKEN(anon_sym_pluginlist); + END_STATE(); + case 4893: + ACCEPT_TOKEN(anon_sym_pluginrm); + END_STATE(); + case 4894: + ACCEPT_TOKEN(anon_sym_pluginstop); + END_STATE(); + case 4895: + ACCEPT_TOKEN(anon_sym_polarsagg); + if (lookahead == '-') ADVANCE(1082); + END_STATE(); + case 4896: + ACCEPT_TOKEN(anon_sym_polarsagg_DASHgroups); + END_STATE(); + case 4897: + ACCEPT_TOKEN(anon_sym_polarsall_DASHfalse); + END_STATE(); + case 4898: + ACCEPT_TOKEN(anon_sym_polarsall_DASHtrue); + END_STATE(); + case 4899: + ACCEPT_TOKEN(anon_sym_polarsappend); + END_STATE(); + case 4900: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHmax); + END_STATE(); + case 4901: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHmin); + END_STATE(); + case 4902: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHsort); + END_STATE(); + case 4903: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHtrue); + END_STATE(); + case 4904: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHunique); + END_STATE(); + case 4905: + ACCEPT_TOKEN(anon_sym_polarsarg_DASHwhere); + END_STATE(); + case 4906: + ACCEPT_TOKEN(anon_sym_polarsas); + if (lookahead == '-') ADVANCE(826); + END_STATE(); + case 4907: + ACCEPT_TOKEN(anon_sym_polarsas_DASHdate); + if (lookahead == 't') ADVANCE(1205); + END_STATE(); + case 4908: + ACCEPT_TOKEN(anon_sym_polarsas_DASHdatetime); + END_STATE(); + case 4909: + ACCEPT_TOKEN(anon_sym_polarscache); + END_STATE(); + case 4910: + ACCEPT_TOKEN(anon_sym_polarscast); + END_STATE(); + case 4911: + ACCEPT_TOKEN(anon_sym_polarscol); + if (lookahead == 'l') ADVANCE(1010); + if (lookahead == 'u') ADVANCE(1400); + END_STATE(); + case 4912: + ACCEPT_TOKEN(anon_sym_polarscollect); + END_STATE(); + case 4913: + ACCEPT_TOKEN(anon_sym_polarscolumns); + END_STATE(); + case 4914: + ACCEPT_TOKEN(anon_sym_polarsconcat); + if (lookahead == '-') ADVANCE(1890); + END_STATE(); + case 4915: + ACCEPT_TOKEN(anon_sym_polarsconcat_DASHstr); + END_STATE(); + case 4916: + ACCEPT_TOKEN(anon_sym_polarscontains); + END_STATE(); + case 4917: + ACCEPT_TOKEN(anon_sym_polarscount); + if (lookahead == '-') ADVANCE(1518); + END_STATE(); + case 4918: + ACCEPT_TOKEN(anon_sym_polarscount_DASHnull); + END_STATE(); + case 4919: + ACCEPT_TOKEN(anon_sym_polarscumulative); + END_STATE(); + case 4920: + ACCEPT_TOKEN(anon_sym_polarsdatepart); + END_STATE(); + case 4921: + ACCEPT_TOKEN(anon_sym_polarsdecimal); + END_STATE(); + case 4922: + ACCEPT_TOKEN(anon_sym_polarsdrop); + if (lookahead == '-') ADVANCE(828); + END_STATE(); + case 4923: + ACCEPT_TOKEN(anon_sym_polarsdrop_DASHduplicates); + END_STATE(); + case 4924: + ACCEPT_TOKEN(anon_sym_polarsdrop_DASHnulls); + END_STATE(); + case 4925: + ACCEPT_TOKEN(anon_sym_polarsdummies); + END_STATE(); + case 4926: + ACCEPT_TOKEN(anon_sym_polarsexplode); + END_STATE(); + case 4927: + ACCEPT_TOKEN(anon_sym_polarsexpr_DASHnot); + END_STATE(); + case 4928: + ACCEPT_TOKEN(anon_sym_polarsfetch); + END_STATE(); + case 4929: + ACCEPT_TOKEN(anon_sym_polarsfill_DASHnan); + END_STATE(); + case 4930: + ACCEPT_TOKEN(anon_sym_polarsfill_DASHnull); + END_STATE(); + case 4931: + ACCEPT_TOKEN(anon_sym_polarsfilter); + if (lookahead == '-') ADVANCE(2148); + END_STATE(); + case 4932: + ACCEPT_TOKEN(anon_sym_polarsfilter_DASHwith); + END_STATE(); + case 4933: + ACCEPT_TOKEN(anon_sym_polarsfirst); + END_STATE(); + case 4934: + ACCEPT_TOKEN(anon_sym_polarsflatten); + END_STATE(); + case 4935: + ACCEPT_TOKEN(anon_sym_polarsget); + if (lookahead == '-') ADVANCE(807); + END_STATE(); + case 4936: + ACCEPT_TOKEN(anon_sym_polarsget_DASHday); + END_STATE(); + case 4937: + ACCEPT_TOKEN(anon_sym_polarsget_DASHhour); + END_STATE(); + case 4938: + ACCEPT_TOKEN(anon_sym_polarsget_DASHminute); + END_STATE(); + case 4939: + ACCEPT_TOKEN(anon_sym_polarsget_DASHmonth); + END_STATE(); + case 4940: + ACCEPT_TOKEN(anon_sym_polarsget_DASHnanosecond); + END_STATE(); + case 4941: + ACCEPT_TOKEN(anon_sym_polarsget_DASHordinal); + END_STATE(); + case 4942: + ACCEPT_TOKEN(anon_sym_polarsget_DASHsecond); + END_STATE(); + case 4943: + ACCEPT_TOKEN(anon_sym_polarsget_DASHweek); + if (lookahead == 'd') ADVANCE(570); + END_STATE(); + case 4944: + ACCEPT_TOKEN(anon_sym_polarsget_DASHweekday); + END_STATE(); + case 4945: + ACCEPT_TOKEN(anon_sym_polarsget_DASHyear); + END_STATE(); + case 4946: + ACCEPT_TOKEN(anon_sym_polarsgroup_DASHby); + END_STATE(); + case 4947: + ACCEPT_TOKEN(anon_sym_polarsimplode); + END_STATE(); + case 4948: + ACCEPT_TOKEN(anon_sym_polarsinteger); + END_STATE(); + case 4949: + ACCEPT_TOKEN(anon_sym_polarsinto_DASHdf); + END_STATE(); + case 4950: + ACCEPT_TOKEN(anon_sym_polarsinto_DASHlazy); + END_STATE(); + case 4951: + ACCEPT_TOKEN(anon_sym_polarsinto_DASHnu); + END_STATE(); + case 4952: + ACCEPT_TOKEN(anon_sym_polarsis_DASHduplicated); + END_STATE(); + case 4953: + ACCEPT_TOKEN(anon_sym_polarsis_DASHin); + END_STATE(); + case 4954: + ACCEPT_TOKEN(anon_sym_polarsis_DASHnot_DASHnull); + END_STATE(); + case 4955: + ACCEPT_TOKEN(anon_sym_polarsis_DASHnull); + END_STATE(); + case 4956: + ACCEPT_TOKEN(anon_sym_polarsis_DASHunique); + END_STATE(); + case 4957: + ACCEPT_TOKEN(anon_sym_polarsjoin); + END_STATE(); + case 4958: + ACCEPT_TOKEN(anon_sym_polarslast); + END_STATE(); + case 4959: + ACCEPT_TOKEN(anon_sym_polarslen); + END_STATE(); + case 4960: + ACCEPT_TOKEN(anon_sym_polarslit); + END_STATE(); + case 4961: + ACCEPT_TOKEN(anon_sym_polarslowercase); + END_STATE(); + case 4962: + ACCEPT_TOKEN(anon_sym_polarsmax); + END_STATE(); + case 4963: + ACCEPT_TOKEN(anon_sym_polarsmean); + END_STATE(); + case 4964: + ACCEPT_TOKEN(anon_sym_polarsmedian); + END_STATE(); + case 4965: + ACCEPT_TOKEN(anon_sym_polarsmin); + END_STATE(); + case 4966: + ACCEPT_TOKEN(anon_sym_polarsn_DASHunique); + END_STATE(); + case 4967: + ACCEPT_TOKEN(anon_sym_polarsnot); + END_STATE(); + case 4968: + ACCEPT_TOKEN(anon_sym_polarsopen); + END_STATE(); + case 4969: + ACCEPT_TOKEN(anon_sym_polarsotherwise); + END_STATE(); + case 4970: + ACCEPT_TOKEN(anon_sym_polarspivot); + END_STATE(); + case 4971: + ACCEPT_TOKEN(anon_sym_polarsprofile); + END_STATE(); + case 4972: + ACCEPT_TOKEN(anon_sym_polarsquantile); + END_STATE(); + case 4973: + ACCEPT_TOKEN(anon_sym_polarsquery); + END_STATE(); + case 4974: + ACCEPT_TOKEN(anon_sym_polarsrename); + END_STATE(); + case 4975: + ACCEPT_TOKEN(anon_sym_polarsreplace); + if (lookahead == '-') ADVANCE(643); + END_STATE(); + case 4976: + ACCEPT_TOKEN(anon_sym_polarsreplace_DASHall); + END_STATE(); + case 4977: + ACCEPT_TOKEN(anon_sym_polarsreverse); + END_STATE(); + case 4978: + ACCEPT_TOKEN(anon_sym_polarsrolling); + END_STATE(); + case 4979: + ACCEPT_TOKEN(anon_sym_polarssample); + END_STATE(); + case 4980: + ACCEPT_TOKEN(anon_sym_polarssave); + END_STATE(); + case 4981: + ACCEPT_TOKEN(anon_sym_polarsschema); + END_STATE(); + case 4982: + ACCEPT_TOKEN(anon_sym_polarsselect); + END_STATE(); + case 4983: + ACCEPT_TOKEN(anon_sym_polarsset); + if (lookahead == '-') ADVANCE(2145); + END_STATE(); + case 4984: + ACCEPT_TOKEN(anon_sym_polarsset_DASHwith_DASHidx); + END_STATE(); + case 4985: + ACCEPT_TOKEN(anon_sym_polarsshape); + END_STATE(); + case 4986: + ACCEPT_TOKEN(anon_sym_polarsshift); + END_STATE(); + case 4987: + ACCEPT_TOKEN(anon_sym_polarsslice); + END_STATE(); + case 4988: + ACCEPT_TOKEN(anon_sym_polarssort_DASHby); + END_STATE(); + case 4989: + ACCEPT_TOKEN(anon_sym_polarsstd); + END_STATE(); + case 4990: + ACCEPT_TOKEN(anon_sym_polarsstore_DASHget); + END_STATE(); + case 4991: + ACCEPT_TOKEN(anon_sym_polarsstore_DASHls); + END_STATE(); + case 4992: + ACCEPT_TOKEN(anon_sym_polarsstore_DASHrm); + END_STATE(); + case 4993: + ACCEPT_TOKEN(anon_sym_polarsstr_DASHjoin); + END_STATE(); + case 4994: + ACCEPT_TOKEN(anon_sym_polarsstr_DASHlengths); + END_STATE(); + case 4995: + ACCEPT_TOKEN(anon_sym_polarsstr_DASHslice); + END_STATE(); + case 4996: + ACCEPT_TOKEN(anon_sym_polarsstrftime); + END_STATE(); + case 4997: + ACCEPT_TOKEN(anon_sym_polarssum); + if (lookahead == 'm') ADVANCE(583); + END_STATE(); + case 4998: + ACCEPT_TOKEN(anon_sym_polarssummary); + END_STATE(); + case 4999: + ACCEPT_TOKEN(anon_sym_polarstake); + END_STATE(); + case 5000: + ACCEPT_TOKEN(anon_sym_polarsunique); + END_STATE(); + case 5001: + ACCEPT_TOKEN(anon_sym_polarsunnest); + END_STATE(); + case 5002: + ACCEPT_TOKEN(anon_sym_polarsunpivot); + END_STATE(); + case 5003: + ACCEPT_TOKEN(anon_sym_polarsuppercase); + END_STATE(); + case 5004: + ACCEPT_TOKEN(anon_sym_polarsvalue_DASHcounts); + END_STATE(); + case 5005: + ACCEPT_TOKEN(anon_sym_polarsvar); + END_STATE(); + case 5006: + ACCEPT_TOKEN(anon_sym_polarswhen); + END_STATE(); + case 5007: + ACCEPT_TOKEN(anon_sym_polarswith_DASHcolumn); + END_STATE(); + case 5008: + ACCEPT_TOKEN(anon_sym_querydb); + END_STATE(); + case 5009: + ACCEPT_TOKEN(anon_sym_querygit); + END_STATE(); + case 5010: + ACCEPT_TOKEN(anon_sym_queryjson); + END_STATE(); + case 5011: + ACCEPT_TOKEN(anon_sym_queryweb); + if (lookahead == 'p') ADVANCE(607); + END_STATE(); + case 5012: + ACCEPT_TOKEN(anon_sym_querywebpage_DASHinfo); + END_STATE(); + case 5013: + ACCEPT_TOKEN(anon_sym_queryxml); + END_STATE(); + case 5014: + ACCEPT_TOKEN(anon_sym_randombinary); + END_STATE(); + case 5015: + ACCEPT_TOKEN(anon_sym_randombool); + END_STATE(); + case 5016: + ACCEPT_TOKEN(anon_sym_randomchars); + END_STATE(); + case 5017: + ACCEPT_TOKEN(anon_sym_randomdice); + END_STATE(); + case 5018: + ACCEPT_TOKEN(anon_sym_randomfloat); + END_STATE(); + case 5019: + ACCEPT_TOKEN(anon_sym_randomint); + END_STATE(); + case 5020: + ACCEPT_TOKEN(anon_sym_randomuuid); + END_STATE(); + case 5021: + ACCEPT_TOKEN(anon_sym_rolldown); + END_STATE(); + case 5022: + ACCEPT_TOKEN(anon_sym_rollleft); + END_STATE(); + case 5023: + ACCEPT_TOKEN(anon_sym_rollright); + END_STATE(); + case 5024: + ACCEPT_TOKEN(anon_sym_rollup); + END_STATE(); + case 5025: + ACCEPT_TOKEN(anon_sym_scopealiases); + END_STATE(); + case 5026: + ACCEPT_TOKEN(anon_sym_scopecommands); + END_STATE(); + case 5027: + ACCEPT_TOKEN(anon_sym_scopeengine_DASHstats); + END_STATE(); + case 5028: + ACCEPT_TOKEN(anon_sym_scopeexterns); + END_STATE(); + case 5029: + ACCEPT_TOKEN(anon_sym_scopemodules); + END_STATE(); + case 5030: + ACCEPT_TOKEN(anon_sym_scopevariables); + END_STATE(); + case 5031: + ACCEPT_TOKEN(anon_sym_seqchar); + END_STATE(); + case 5032: + ACCEPT_TOKEN(anon_sym_seqdate); + END_STATE(); + case 5033: + ACCEPT_TOKEN(anon_sym_skipuntil); + END_STATE(); + case 5034: + ACCEPT_TOKEN(anon_sym_skipwhile); + END_STATE(); + case 5035: + ACCEPT_TOKEN(anon_sym_splitcell_DASHpath); + END_STATE(); + case 5036: + ACCEPT_TOKEN(anon_sym_splitchars); + END_STATE(); + case 5037: + ACCEPT_TOKEN(anon_sym_splitcolumn); + END_STATE(); + case 5038: + ACCEPT_TOKEN(anon_sym_splitlist); + END_STATE(); + case 5039: + ACCEPT_TOKEN(anon_sym_splitrow); + END_STATE(); + case 5040: + ACCEPT_TOKEN(anon_sym_splitwords); + END_STATE(); + case 5041: + ACCEPT_TOKEN(anon_sym_storcreate); + END_STATE(); + case 5042: + ACCEPT_TOKEN(anon_sym_stordelete); + END_STATE(); + case 5043: + ACCEPT_TOKEN(anon_sym_storexport); + END_STATE(); + case 5044: + ACCEPT_TOKEN(anon_sym_storimport); + END_STATE(); + case 5045: + ACCEPT_TOKEN(anon_sym_storinsert); + END_STATE(); + case 5046: + ACCEPT_TOKEN(anon_sym_storopen); + END_STATE(); + case 5047: + ACCEPT_TOKEN(anon_sym_storreset); + END_STATE(); + case 5048: + ACCEPT_TOKEN(anon_sym_storupdate); + END_STATE(); + case 5049: + ACCEPT_TOKEN(anon_sym_strbexpand); + END_STATE(); + case 5050: + ACCEPT_TOKEN(anon_sym_strcamel_DASHcase); + END_STATE(); + case 5051: + ACCEPT_TOKEN(anon_sym_strcapitalize); + END_STATE(); + case 5052: + ACCEPT_TOKEN(anon_sym_strcompress); + END_STATE(); + case 5053: + ACCEPT_TOKEN(anon_sym_strcontains); + END_STATE(); + case 5054: + ACCEPT_TOKEN(anon_sym_strdecompress); + END_STATE(); + case 5055: + ACCEPT_TOKEN(anon_sym_strdedent); + END_STATE(); + case 5056: + ACCEPT_TOKEN(anon_sym_strdeunicode); + END_STATE(); + case 5057: + ACCEPT_TOKEN(anon_sym_strdistance); + END_STATE(); + case 5058: + ACCEPT_TOKEN(anon_sym_strdowncase); + END_STATE(); + case 5059: + ACCEPT_TOKEN(anon_sym_strends_DASHwith); + END_STATE(); + case 5060: + ACCEPT_TOKEN(anon_sym_strexpand); + END_STATE(); + case 5061: + ACCEPT_TOKEN(anon_sym_strindent); + END_STATE(); + case 5062: + ACCEPT_TOKEN(anon_sym_strindex_DASHof); + END_STATE(); + case 5063: + ACCEPT_TOKEN(anon_sym_strjoin); + END_STATE(); + case 5064: + ACCEPT_TOKEN(anon_sym_strkebab_DASHcase); + END_STATE(); + case 5065: + ACCEPT_TOKEN(anon_sym_strlength); + END_STATE(); + case 5066: + ACCEPT_TOKEN(anon_sym_strpascal_DASHcase); + END_STATE(); + case 5067: + ACCEPT_TOKEN(anon_sym_strreplace); + END_STATE(); + case 5068: + ACCEPT_TOKEN(anon_sym_strreverse); + END_STATE(); + case 5069: + ACCEPT_TOKEN(anon_sym_strscreaming_DASHsnake_DASHcase); + END_STATE(); + case 5070: + ACCEPT_TOKEN(anon_sym_strsimilarity); + END_STATE(); + case 5071: + ACCEPT_TOKEN(anon_sym_strsnake_DASHcase); + END_STATE(); + case 5072: + ACCEPT_TOKEN(anon_sym_strstarts_DASHwith); + END_STATE(); + case 5073: + ACCEPT_TOKEN(anon_sym_strstats); + END_STATE(); + case 5074: + ACCEPT_TOKEN(anon_sym_strsubstring); + END_STATE(); + case 5075: + ACCEPT_TOKEN(anon_sym_strtitle_DASHcase); + END_STATE(); + case 5076: + ACCEPT_TOKEN(anon_sym_strtrim); + END_STATE(); + case 5077: + ACCEPT_TOKEN(anon_sym_strupcase); + END_STATE(); + case 5078: + ACCEPT_TOKEN(anon_sym_strwrap); + END_STATE(); + case 5079: + ACCEPT_TOKEN(anon_sym_syscpu); + END_STATE(); + case 5080: + ACCEPT_TOKEN(anon_sym_sysdisks); + END_STATE(); + case 5081: + ACCEPT_TOKEN(anon_sym_syshost); + END_STATE(); + case 5082: + ACCEPT_TOKEN(anon_sym_sysmem); + END_STATE(); + case 5083: + ACCEPT_TOKEN(anon_sym_sysnet); + END_STATE(); + case 5084: + ACCEPT_TOKEN(anon_sym_systemp); + END_STATE(); + case 5085: + ACCEPT_TOKEN(anon_sym_sysusers); + END_STATE(); + case 5086: + ACCEPT_TOKEN(anon_sym_takeuntil); + END_STATE(); + case 5087: + ACCEPT_TOKEN(anon_sym_takewhile); + END_STATE(); + case 5088: + ACCEPT_TOKEN(anon_sym_termquery); + END_STATE(); + case 5089: + ACCEPT_TOKEN(anon_sym_termsize); + END_STATE(); + case 5090: + ACCEPT_TOKEN(anon_sym_tobz2); + END_STATE(); + case 5091: + ACCEPT_TOKEN(anon_sym_tocsv); + END_STATE(); + case 5092: + ACCEPT_TOKEN(anon_sym_togz); + END_STATE(); + case 5093: + ACCEPT_TOKEN(anon_sym_tohtml); + END_STATE(); + case 5094: + ACCEPT_TOKEN(anon_sym_tojson); + END_STATE(); + case 5095: + ACCEPT_TOKEN(anon_sym_tomd); + END_STATE(); + case 5096: + ACCEPT_TOKEN(anon_sym_tomsgpack); + if (lookahead == 'z') ADVANCE(5097); + END_STATE(); + case 5097: + ACCEPT_TOKEN(anon_sym_tomsgpackz); + END_STATE(); + case 5098: + ACCEPT_TOKEN(anon_sym_tonuon); + END_STATE(); + case 5099: + ACCEPT_TOKEN(anon_sym_toparquet); + END_STATE(); + case 5100: + ACCEPT_TOKEN(anon_sym_toplist); + END_STATE(); + case 5101: + ACCEPT_TOKEN(anon_sym_topng); + END_STATE(); + case 5102: + ACCEPT_TOKEN(anon_sym_totext); + END_STATE(); + case 5103: + ACCEPT_TOKEN(anon_sym_totoml); + END_STATE(); + case 5104: + ACCEPT_TOKEN(anon_sym_totsv); + END_STATE(); + case 5105: + ACCEPT_TOKEN(anon_sym_toxml); + END_STATE(); + case 5106: + ACCEPT_TOKEN(anon_sym_toxz); + END_STATE(); + case 5107: + ACCEPT_TOKEN(anon_sym_toyaml); + END_STATE(); + case 5108: + ACCEPT_TOKEN(anon_sym_tozst); + END_STATE(); + case 5109: + ACCEPT_TOKEN(anon_sym_updatecells); + END_STATE(); + case 5110: + ACCEPT_TOKEN(anon_sym_urlbuild_DASHquery); + END_STATE(); + case 5111: + ACCEPT_TOKEN(anon_sym_urldecode); + END_STATE(); + case 5112: + ACCEPT_TOKEN(anon_sym_urlencode); + END_STATE(); + case 5113: + ACCEPT_TOKEN(anon_sym_urljoin); + END_STATE(); + case 5114: + ACCEPT_TOKEN(anon_sym_urlparse); + END_STATE(); + case 5115: + ACCEPT_TOKEN(anon_sym_urlsplit_DASHquery); + END_STATE(); + case 5116: + ACCEPT_TOKEN(anon_sym_viewfiles); + END_STATE(); + case 5117: + ACCEPT_TOKEN(anon_sym_viewir); + END_STATE(); + case 5118: + ACCEPT_TOKEN(anon_sym_viewsource); + END_STATE(); + case 5119: + ACCEPT_TOKEN(anon_sym_viewspan); + END_STATE(); + case 5120: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2852); + if (lookahead == '>') ADVANCE(5152); END_STATE(); - case 2821: + case 5121: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2852); - if (lookahead == '|') ADVANCE(2265); + if (lookahead == '>') ADVANCE(5152); + if (lookahead == '|') ADVANCE(4172); END_STATE(); - case 2822: + case 5122: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2854); - if (lookahead == '|') ADVANCE(2265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5154); + if (lookahead == '|') ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2823: + case 5123: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2853); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2824: + case 5124: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2855); + if (lookahead == '>') ADVANCE(5155); END_STATE(); - case 2825: + case 5125: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2855); - if (lookahead == '|') ADVANCE(2266); + if (lookahead == '>') ADVANCE(5155); + if (lookahead == '|') ADVANCE(4173); END_STATE(); - case 2826: + case 5126: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2857); - if (lookahead == '|') ADVANCE(2266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5157); + if (lookahead == '|') ADVANCE(4173); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2827: + case 5127: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2856); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2828: + case 5128: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2858); + if (lookahead == '>') ADVANCE(5158); END_STATE(); - case 2829: + case 5129: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2858); - if (lookahead == '|') ADVANCE(2267); + if (lookahead == '>') ADVANCE(5158); + if (lookahead == '|') ADVANCE(4174); END_STATE(); - case 2830: + case 5130: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2860); - if (lookahead == '|') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5160); + if (lookahead == '|') ADVANCE(4174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2831: + case 5131: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2859); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2832: + case 5132: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2861); + if (lookahead == '>') ADVANCE(5161); END_STATE(); - case 2833: + case 5133: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2861); - if (lookahead == '|') ADVANCE(2268); + if (lookahead == '>') ADVANCE(5161); + if (lookahead == '|') ADVANCE(4175); END_STATE(); - case 2834: + case 5134: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2863); - if (lookahead == '|') ADVANCE(2268); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5163); + if (lookahead == '|') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2835: + case 5135: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2862); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5162); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2836: + case 5136: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2864); + if (lookahead == '>') ADVANCE(5164); END_STATE(); - case 2837: + case 5137: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2864); - if (lookahead == '|') ADVANCE(2269); + if (lookahead == '>') ADVANCE(5164); + if (lookahead == '|') ADVANCE(4176); END_STATE(); - case 2838: + case 5138: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2866); - if (lookahead == '|') ADVANCE(2269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5166); + if (lookahead == '|') ADVANCE(4176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2839: + case 5139: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2865); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5165); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2840: + case 5140: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2867); + if (lookahead == '>') ADVANCE(5167); END_STATE(); - case 2841: + case 5141: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2867); - if (lookahead == '|') ADVANCE(2270); + if (lookahead == '>') ADVANCE(5167); + if (lookahead == '|') ADVANCE(4177); END_STATE(); - case 2842: + case 5142: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2869); - if (lookahead == '|') ADVANCE(2270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5169); + if (lookahead == '|') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2843: + case 5143: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2868); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5168); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2844: + case 5144: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2870); + if (lookahead == '>') ADVANCE(5170); END_STATE(); - case 2845: + case 5145: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2870); - if (lookahead == '|') ADVANCE(2271); + if (lookahead == '>') ADVANCE(5170); + if (lookahead == '|') ADVANCE(4178); END_STATE(); - case 2846: + case 5146: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2872); - if (lookahead == '|') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5172); + if (lookahead == '|') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2847: + case 5147: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2871); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2848: + case 5148: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2873); + if (lookahead == '>') ADVANCE(5173); END_STATE(); - case 2849: + case 5149: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2873); - if (lookahead == '|') ADVANCE(2272); + if (lookahead == '>') ADVANCE(5173); + if (lookahead == '|') ADVANCE(4179); END_STATE(); - case 2850: + case 5150: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2875); - if (lookahead == '|') ADVANCE(2272); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5175); + if (lookahead == '|') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2851: + case 5151: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2874); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5174); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2852: + case 5152: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 2853: + case 5153: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2854: + case 5154: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2855: + case 5155: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 2856: + case 5156: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2857: + case 5157: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2858: + case 5158: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 2859: + case 5159: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2860: + case 5160: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2861: + case 5161: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 2862: + case 5162: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2863: + case 5163: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2864: + case 5164: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 2865: + case 5165: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2866: + case 5166: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2867: + case 5167: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 2868: + case 5168: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2869: + case 5169: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2870: + case 5170: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 2871: + case 5171: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2872: + case 5172: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2873: + case 5173: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 2874: + case 5174: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 2875: + case 5175: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 2876: + case 5176: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 2877: + case 5177: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3002); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'r') ADVANCE(2912); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(5302); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'r') ADVANCE(5212); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2878: + case 5178: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(2917); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(5295); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'u') ADVANCE(5217); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2879: + case 5179: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3003); - if (lookahead == '>') ADVANCE(2821); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(5303); + if (lookahead == '>') ADVANCE(5121); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2880: + case 5180: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2996); - if (lookahead == '>') ADVANCE(2825); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(5296); + if (lookahead == '>') ADVANCE(5125); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2881: + case 5181: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(572); - if (lookahead == '>') ADVANCE(644); - if (lookahead == 'r') ADVANCE(2913); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(1548); + if (lookahead == '>') ADVANCE(2198); + if (lookahead == 'r') ADVANCE(5213); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2882: + case 5182: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(518); - if (lookahead == '>') ADVANCE(645); - if (lookahead == 'u') ADVANCE(2918); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(935); + if (lookahead == '>') ADVANCE(2199); + if (lookahead == 'u') ADVANCE(5218); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2883: + case 5183: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(576); - if (lookahead == '>') ADVANCE(647); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(1600); + if (lookahead == '>') ADVANCE(2201); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2884: + case 5184: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(522); - if (lookahead == '>') ADVANCE(649); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '+') ADVANCE(998); + if (lookahead == '>') ADVANCE(2203); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2885: + case 5185: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2937); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '-') ADVANCE(5237); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2886: + case 5186: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2939); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '-') ADVANCE(5239); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2887: + case 5187: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2943); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '-') ADVANCE(5243); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2888: + case 5188: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2945); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '-') ADVANCE(5245); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2889: + case 5189: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(472); - if (lookahead == '_') ADVANCE(2889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '.') ADVANCE(522); + if (lookahead == '_') ADVANCE(5189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2890: + case 5190: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == ':') ADVANCE(2235); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2891: + case 5191: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(3046); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == ':') ADVANCE(5346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2892: + case 5192: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(2940); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'T') ADVANCE(5240); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2893: + case 5193: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(2941); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'T') ADVANCE(5241); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2894: + case 5194: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (lookahead == 'b') ADVANCE(2729); - if (lookahead == 'o') ADVANCE(2745); - if (lookahead == 'x') ADVANCE(2750); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); - END_STATE(); - case 2895: + if (lookahead == '_') ADVANCE(5196); + if (lookahead == 'b') ADVANCE(4636); + if (lookahead == 'o') ADVANCE(4652); + if (lookahead == 'x') ADVANCE(4657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5198); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 5195: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (lookahead == 'b') ADVANCE(2729); - if (lookahead == 'o') ADVANCE(2745); - if (lookahead == 'x') ADVANCE(2750); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2901); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); - END_STATE(); - case 2896: + if (lookahead == '_') ADVANCE(5196); + if (lookahead == 'b') ADVANCE(4636); + if (lookahead == 'o') ADVANCE(4652); + if (lookahead == 'x') ADVANCE(4657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); + END_STATE(); + case 5196: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2897: + case 5197: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2885); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5185); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2898: + case 5198: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5197); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2899: + case 5199: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5198); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2900: + case 5200: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2888); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5188); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2901: + case 5201: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2900); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5200); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2902: + case 5202: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2901); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == '_') ADVANCE(5196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2903: + case 5203: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2906); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'a') ADVANCE(5206); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2904: + case 5204: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2635); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'e') ADVANCE(4542); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2905: + case 5205: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2643); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'e') ADVANCE(4550); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2906: + case 5206: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2915); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'l') ADVANCE(5215); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2907: + case 5207: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2627); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'l') ADVANCE(4534); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2908: + case 5208: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2907); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'l') ADVANCE(5207); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2909: + case 5209: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(2377); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'n') ADVANCE(4284); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2910: + case 5210: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2916); - if (lookahead == 'u') ADVANCE(2908); + if (lookahead == 'o') ADVANCE(5216); + if (lookahead == 'u') ADVANCE(5208); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2925); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'a') ADVANCE(5225); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2911: + case 5211: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2919); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'r') ADVANCE(5219); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2912: + case 5212: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2879); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'r') ADVANCE(5179); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2913: + case 5213: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2883); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'r') ADVANCE(5183); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2914: + case 5214: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(2469); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 's') ADVANCE(4376); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2915: + case 5215: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(2905); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 's') ADVANCE(5205); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2916: + case 5216: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2932); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 't') ADVANCE(5232); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2917: + case 5217: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2880); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 't') ADVANCE(5180); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2918: + case 5218: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2884); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 't') ADVANCE(5184); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2919: + case 5219: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2904); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (lookahead == 'u') ADVANCE(5204); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2920: + case 5220: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2908); + if (lookahead == 'u') ADVANCE(5208); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2925); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'a') ADVANCE(5225); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2921: + case 5221: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2925); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'a') ADVANCE(5225); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2922: + case 5222: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2924); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'f') ADVANCE(5224); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2923: + case 5223: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2928); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'i') ADVANCE(5228); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2924: + case 5224: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2927); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'i') ADVANCE(5227); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2925: + case 5225: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2947); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'n') ADVANCE(5247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2926: + case 5226: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2922); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'n') ADVANCE(5222); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2927: + case 5227: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2923); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'n') ADVANCE(5223); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2928: + case 5228: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2929); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 't') ADVANCE(5229); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2929: + case 5229: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2947); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == 'y') ADVANCE(5247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2930: + case 5230: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(2947); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + lookahead == '@') ADVANCE(5247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5230); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3939); END_STATE(); - case 2931: + case 5231: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2931); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == '_') ADVANCE(5231); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2932: + case 5232: ACCEPT_TOKEN(sym_short_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == ' ') ADVANCE(4412); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2933: + case 5233: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2933); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + lookahead == '_') ADVANCE(5233); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2934: + case 5234: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2886); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5186); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2935: + case 5235: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2892); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5192); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2936: + case 5236: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2891); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5191); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2937: + case 5237: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2934); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5234); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2938: + case 5238: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2890); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5190); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2939: + case 5239: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2935); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5235); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2940: + case 5240: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2936); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5236); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2941: + case 5241: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5238); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2942: + case 5242: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2893); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5193); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2943: + case 5243: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2942); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5242); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2944: + case 5244: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2887); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5187); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2945: + case 5245: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5244); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2946: + case 5246: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2946); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5246); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2947: + case 5247: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(5247); END_STATE(); - case 2948: + case 5248: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(2787); + if (lookahead == '\'') ADVANCE(4694); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(411); - if (lookahead != 0) ADVANCE(2948); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(410); + if (lookahead != 0) ADVANCE(5248); END_STATE(); - case 2949: + case 5249: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(2789); + if (lookahead == '`') ADVANCE(4696); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(485); - if (lookahead != 0) ADVANCE(2949); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(535); + if (lookahead != 0) ADVANCE(5249); END_STATE(); - case 2950: + case 5250: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -47034,6870 +58557,6870 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 2951: + case 5251: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(2648); - if (lookahead == '(') ADVANCE(2540); - if (lookahead == '[') ADVANCE(2803); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '$') ADVANCE(4555); + if (lookahead == '(') ADVANCE(4447); + if (lookahead == '[') ADVANCE(4710); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2952: + case 5252: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3002); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'r') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5302); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'r') ADVANCE(5308); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2953: + case 5253: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(3016); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5295); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'u') ADVANCE(5316); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2954: + case 5254: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2989); - if (lookahead == '-') ADVANCE(2991); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == '_') ADVANCE(2991); - if (lookahead == 'r') ADVANCE(3008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); - END_STATE(); - case 2955: + if (lookahead == '+') ADVANCE(5289); + if (lookahead == '-') ADVANCE(5291); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == '_') ADVANCE(5291); + if (lookahead == 'r') ADVANCE(5308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); + END_STATE(); + case 5255: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3003); - if (lookahead == '>') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5303); + if (lookahead == '>') ADVANCE(5121); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2956: + case 5256: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2996); - if (lookahead == '>') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5296); + if (lookahead == '>') ADVANCE(5125); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2957: + case 5257: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3005); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(3009); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5305); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == 'r') ADVANCE(5309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2958: + case 5258: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2997); - if (lookahead == '>') ADVANCE(2832); - if (lookahead == 'u') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5297); + if (lookahead == '>') ADVANCE(5132); + if (lookahead == 'u') ADVANCE(5318); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2959: + case 5259: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3006); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5306); + if (lookahead == '>') ADVANCE(5120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2960: + case 5260: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2998); - if (lookahead == '>') ADVANCE(2824); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '+') ADVANCE(5298); + if (lookahead == '>') ADVANCE(5124); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2961: + case 5261: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '-') ADVANCE(5342); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2962: + case 5262: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2963: + case 5263: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(2985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2964: + case 5264: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2965: + case 5265: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2421); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(4328); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2966: + case 5266: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2980); - if (lookahead == '_') ADVANCE(2966); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(5280); + if (lookahead == '_') ADVANCE(5266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2967: + case 5267: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2984); - if (lookahead == '_') ADVANCE(2967); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '.') ADVANCE(5284); + if (lookahead == '_') ADVANCE(5267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2968: + case 5268: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3032); + if (lookahead == '2') ADVANCE(5332); if (lookahead == '0' || - lookahead == '1') ADVANCE(3040); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == '1') ADVANCE(5340); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2969: + case 5269: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3044); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == ':') ADVANCE(5344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2970: + case 5270: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == ':') ADVANCE(5346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2971: + case 5271: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5149); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2972: + case 5272: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5145); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2973: + case 5273: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5137); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2974: + case 5274: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5141); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2975: + case 5275: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5148); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2976: + case 5276: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5144); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2977: + case 5277: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5136); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2978: + case 5278: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '>') ADVANCE(5140); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2979: + case 5279: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2980: + case 5280: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2981: + case 5281: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2982: + case 5282: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2983); + if (lookahead == '_') ADVANCE(5283); if (lookahead == '+' || - lookahead == '-') ADVANCE(2983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == '-') ADVANCE(5283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2983: + case 5283: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2983); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2984: + case 5284: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2985: + case 5285: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2986: + case 5286: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2987); + if (lookahead == '_') ADVANCE(5287); if (lookahead == '+' || - lookahead == '-') ADVANCE(2987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == '-') ADVANCE(5287); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2987: + case 5287: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5287); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2988: + case 5288: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2989: + case 5289: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2991); - if (lookahead == 'o') ADVANCE(2971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5291); + if (lookahead == 'o') ADVANCE(5271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2990: + case 5290: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2991); + if (lookahead == '_') ADVANCE(5291); if (lookahead == '+' || - lookahead == '-') ADVANCE(2991); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == '-') ADVANCE(5291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2991: + case 5291: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2991); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == '_') ADVANCE(5291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2992: + case 5292: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'a') ADVANCE(5299); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2993: + case 5293: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2994: + case 5294: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(4547); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2995: + case 5295: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2972); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(5272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2996: + case 5296: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(5310); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2997: + case 5297: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(5276); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2998: + case 5298: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'e') ADVANCE(5313); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 2999: + case 5299: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'l') ADVANCE(5314); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3000: + case 5300: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'l') ADVANCE(4531); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3001: + case 5301: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'l') ADVANCE(5300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3002: + case 5302: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2971); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'o') ADVANCE(5271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3003: + case 5303: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'o') ADVANCE(5322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3004: + case 5304: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3015); - if (lookahead == 'u') ADVANCE(3001); + if (lookahead == 'o') ADVANCE(5315); + if (lookahead == 'u') ADVANCE(5301); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'a') ADVANCE(5328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3005: + case 5305: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'o') ADVANCE(5275); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3006: + case 5306: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3023); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'o') ADVANCE(5323); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3007: + case 5307: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5321); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3008: + case 5308: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5255); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3009: + case 5309: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3010: + case 5310: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5311); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3011: + case 5311: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3012: + case 5312: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5278); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3013: + case 5313: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3012); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'r') ADVANCE(5312); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3014: + case 5314: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2994); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 's') ADVANCE(5294); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3015: + case 5315: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 't') ADVANCE(5333); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3016: + case 5316: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 't') ADVANCE(5256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3017: + case 5317: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 't') ADVANCE(5273); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3018: + case 5318: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 't') ADVANCE(5260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3019: + case 5319: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 't') ADVANCE(5277); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3020: + case 5320: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3001); + if (lookahead == 'u') ADVANCE(5301); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'a') ADVANCE(5328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3021: + case 5321: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'u') ADVANCE(5293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3022: + case 5322: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'u') ADVANCE(5317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3023: + case 5323: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == 'u') ADVANCE(5319); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3024: + case 5324: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'a') ADVANCE(5328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3025: + case 5325: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2708); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'f') ADVANCE(4615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3026: + case 5326: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'i') ADVANCE(5330); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3027: + case 5327: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3025); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'n') ADVANCE(5325); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3028: + case 5328: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3029: + case 5329: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3026); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'n') ADVANCE(5326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3030: + case 5330: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 't') ADVANCE(5331); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3031: + case 5331: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == 'y') ADVANCE(4611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3032: + case 5332: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3033: + case 5333: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3034: + case 5334: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3035: + case 5335: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3036: + case 5336: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3037: + case 5337: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2766); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3038: + case 5338: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3039: + case 5339: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3040: + case 5340: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3041: + case 5341: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5335); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3042: + case 5342: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5337); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3043: + case 5343: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3036); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5336); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3044: + case 5344: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5338); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3045: + case 5345: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3046: + case 5346: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3047: + case 5347: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5347); END_STATE(); - case 3048: + case 5348: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3157, - '>', 2829, - 'I', 3214, - 'i', 3214, - 'n', 3129, - 'r', 3174, - 'B', 2731, - 'b', 2731, + '+', 5457, + '>', 5129, + 'I', 5514, + 'i', 5514, + 'n', 5429, + 'r', 5474, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3049: + case 5349: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3157); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3214); - if (lookahead == 'r') ADVANCE(3174); + if (lookahead == '+') ADVANCE(5457); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5514); + if (lookahead == 'r') ADVANCE(5474); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3050: + case 5350: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3157); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'n') ADVANCE(3129); - if (lookahead == 'r') ADVANCE(3174); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5457); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'n') ADVANCE(5429); + if (lookahead == 'r') ADVANCE(5474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3051: + case 5351: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3157); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'r') ADVANCE(3174); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5457); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == 'r') ADVANCE(5474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3052: + case 5352: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3134); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'r') ADVANCE(2482); - if (lookahead == 'u') ADVANCE(3188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5434); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'r') ADVANCE(4389); + if (lookahead == 'u') ADVANCE(5488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3053: + case 5353: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3134); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(3188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5434); + if (lookahead == '>') ADVANCE(5133); + if (lookahead == 'u') ADVANCE(5488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3054: + case 5354: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3113, - '-', 3116, - '>', 2829, - 'I', 3214, - '_', 3116, - 'i', 3214, - 'n', 3129, - 'r', 3174, - 'B', 2731, - 'b', 2731, + '+', 5414, + '-', 5417, + '>', 5129, + 'I', 5514, + '_', 5417, + 'i', 5514, + 'n', 5429, + 'r', 5474, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3055: + case 5355: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3113, - '-', 3116, - '>', 2829, - 'I', 3214, - '_', 3116, - 'i', 3214, - 'r', 3174, - 'B', 2731, - 'b', 2731, + '+', 5414, + '-', 5417, + '>', 5129, + 'I', 5514, + '_', 5417, + 'i', 5514, + 'r', 5474, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3056: + case 5356: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3113); - if (lookahead == '-') ADVANCE(3116); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'r') ADVANCE(3174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); - END_STATE(); - case 3057: + if (lookahead == '+') ADVANCE(5414); + if (lookahead == '-') ADVANCE(5417); + if (lookahead == '>') ADVANCE(5129); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'r') ADVANCE(5474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 5357: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3158); - if (lookahead == '>') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5458); + if (lookahead == '>') ADVANCE(5121); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3058: + case 5358: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3114, - '-', 3116, - '>', 3205, - 'I', 3214, - '_', 3116, - 'i', 3214, - 'n', 3129, - 'r', 3175, - 'B', 2731, - 'b', 2731, + '+', 5415, + '-', 5417, + '>', 5505, + 'I', 5514, + '_', 5417, + 'i', 5514, + 'n', 5429, + 'r', 5475, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3059: + case 5359: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3114, - '-', 3116, - '>', 3205, - 'I', 3214, - '_', 3116, - 'i', 3214, - 'r', 3175, - 'B', 2731, - 'b', 2731, + '+', 5415, + '-', 5417, + '>', 5505, + 'I', 5514, + '_', 5417, + 'i', 5514, + 'r', 5475, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3060: + case 5360: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3114); - if (lookahead == '-') ADVANCE(3116); - if (lookahead == '>') ADVANCE(3205); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'r') ADVANCE(3175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); - END_STATE(); - case 3061: + if (lookahead == '+') ADVANCE(5415); + if (lookahead == '-') ADVANCE(5417); + if (lookahead == '>') ADVANCE(5505); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'r') ADVANCE(5475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); + END_STATE(); + case 5361: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3135); - if (lookahead == '>') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5435); + if (lookahead == '>') ADVANCE(5125); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3062: + case 5362: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3162, - '>', 3205, - 'I', 3214, - 'i', 3214, - 'n', 3129, - 'r', 3175, - 'B', 2731, - 'b', 2731, + '+', 5462, + '>', 5505, + 'I', 5514, + 'i', 5514, + 'n', 5429, + 'r', 5475, + 'B', 4638, + 'b', 4638, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3063: + case 5363: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3162); - if (lookahead == '>') ADVANCE(3205); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3214); - if (lookahead == 'r') ADVANCE(3175); + if (lookahead == '+') ADVANCE(5462); + if (lookahead == '>') ADVANCE(5505); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5514); + if (lookahead == 'r') ADVANCE(5475); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3064: + case 5364: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3162); - if (lookahead == '>') ADVANCE(3205); - if (lookahead == 'n') ADVANCE(3129); - if (lookahead == 'r') ADVANCE(3175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5462); + if (lookahead == '>') ADVANCE(5505); + if (lookahead == 'n') ADVANCE(5429); + if (lookahead == 'r') ADVANCE(5475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3065: + case 5365: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3162); - if (lookahead == '>') ADVANCE(3205); - if (lookahead == 'r') ADVANCE(3175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5462); + if (lookahead == '>') ADVANCE(5505); + if (lookahead == 'r') ADVANCE(5475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3066: + case 5366: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3136); - if (lookahead == '>') ADVANCE(3206); - if (lookahead == 'r') ADVANCE(2482); - if (lookahead == 'u') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5436); + if (lookahead == '>') ADVANCE(5506); + if (lookahead == 'r') ADVANCE(4389); + if (lookahead == 'u') ADVANCE(5495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3067: + case 5367: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3136); - if (lookahead == '>') ADVANCE(3206); - if (lookahead == 'u') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5436); + if (lookahead == '>') ADVANCE(5506); + if (lookahead == 'u') ADVANCE(5495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3068: + case 5368: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3167); - if (lookahead == '>') ADVANCE(3208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5467); + if (lookahead == '>') ADVANCE(5508); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3069: + case 5369: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3137); - if (lookahead == '>') ADVANCE(3210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '+') ADVANCE(5437); + if (lookahead == '>') ADVANCE(5510); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3070: + case 5370: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2329); - if (lookahead == '.') ADVANCE(3111); - if (lookahead == '_') ADVANCE(3081); + if (lookahead == '-') ADVANCE(4236); + if (lookahead == '.') ADVANCE(5412); + if (lookahead == '_') ADVANCE(5381); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'i') ADVANCE(5525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3071: + case 5371: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '-') ADVANCE(5423); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3072: + case 5372: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3143); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '-') ADVANCE(5443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3073: + case 5373: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '-') ADVANCE(5502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3074: + case 5374: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3237); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '-') ADVANCE(5537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3075: + case 5375: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '-') ADVANCE(5503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3076: + case 5376: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3077: + case 5377: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3078: + case 5378: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3079: + case 5379: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(4451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3080: + case 5380: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3107); - if (lookahead == '_') ADVANCE(3080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(5407); + if (lookahead == '_') ADVANCE(5380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3081: + case 5381: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3111); - if (lookahead == '_') ADVANCE(3081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '.') ADVANCE(5412); + if (lookahead == '_') ADVANCE(5381); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3082: + case 5382: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(3231); + if (lookahead == '2') ADVANCE(5531); if (lookahead == '0' || - lookahead == '1') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == '1') ADVANCE(5540); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3083: + case 5383: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == ':') ADVANCE(5542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3084: + case 5384: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3245); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == ':') ADVANCE(5545); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3085: + case 5385: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2492); - if (lookahead == '~') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '=') ADVANCE(4399); + if (lookahead == '~') ADVANCE(4410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3086: + case 5386: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2490); - if (lookahead == '>') ADVANCE(2416); - if (lookahead == '~') ADVANCE(2501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '=') ADVANCE(4397); + if (lookahead == '>') ADVANCE(4323); + if (lookahead == '~') ADVANCE(4408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3087: + case 5387: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2490); - if (lookahead == '~') ADVANCE(2501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '=') ADVANCE(4397); + if (lookahead == '~') ADVANCE(4408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3088: + case 5388: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(4323); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3089: + case 5389: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5149); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3090: + case 5390: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5145); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3091: + case 5391: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5137); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3092: + case 5392: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5141); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3093: + case 5393: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3094: + case 5394: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5509); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3095: + case 5395: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5511); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3096: + case 5396: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '>') ADVANCE(5512); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3097: + case 5397: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - 'I', 3214, - '_', 3116, - 'i', 3214, - 'n', 3129, - '+', 3116, - '-', 3116, - 'B', 2731, - 'b', 2731, + 'I', 5514, + '_', 5417, + 'i', 5514, + 'n', 5429, + '+', 5417, + '-', 5417, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3098: + case 5398: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'i') ADVANCE(5514); if (lookahead == '+' || - lookahead == '-') ADVANCE(3116); + lookahead == '-') ADVANCE(5417); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3099: + case 5399: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'i') ADVANCE(3124); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'i') ADVANCE(5424); if (lookahead == '+' || - lookahead == '-') ADVANCE(3116); + lookahead == '-') ADVANCE(5417); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3100: + case 5400: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3214); - if (lookahead == 'n') ADVANCE(3129); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5514); + if (lookahead == 'n') ADVANCE(5429); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3101: + case 5401: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3214); - if (lookahead == 'r') ADVANCE(3199); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5514); + if (lookahead == 'r') ADVANCE(5499); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3102: + case 5402: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5514); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3103: + case 5403: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3124); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5424); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3104: + case 5404: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3152); - if (lookahead == 'o') ADVANCE(3128); - if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5452); + if (lookahead == 'o') ADVANCE(5428); + if (lookahead == 's') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3105: + case 5405: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3214); - if (lookahead == 'i') ADVANCE(3152); - if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'I') ADVANCE(5514); + if (lookahead == 'i') ADVANCE(5452); + if (lookahead == 's') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3106: + case 5406: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3107: + case 5407: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3108: + case 5408: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3109: + case 5409: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3110); + if (lookahead == '_') ADVANCE(5410); if (lookahead == '+' || - lookahead == '-') ADVANCE(3110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == '-') ADVANCE(5410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3110: + case 5410: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3111: + case 5411: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3112: + case 5412: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3113: + case 5413: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'o') ADVANCE(3089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5413); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3114: + case 5414: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == 'o') ADVANCE(3093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'o') ADVANCE(5389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3115: + case 5415: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3116); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == 'o') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3116: + case 5416: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5417); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3117: + case 5417: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3118); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3118: + case 5418: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5419); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3119: + case 5419: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '_') ADVANCE(5419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3120: + case 5420: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3149); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'a') ADVANCE(5449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3121: + case 5421: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'a') ADVANCE(5504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3122: + case 5422: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3178); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'a') ADVANCE(5478); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3123: + case 5423: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3156); - if (lookahead == 'o') ADVANCE(3170); - if (lookahead == 's') ADVANCE(3141); - if (lookahead == 'x') ADVANCE(3164); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'a') ADVANCE(5456); + if (lookahead == 'o') ADVANCE(5470); + if (lookahead == 's') ADVANCE(5441); + if (lookahead == 'x') ADVANCE(5464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3124: + case 5424: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3125: + case 5425: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3126: + case 5426: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2478); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'd') ADVANCE(4385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3127: + case 5427: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'd') ADVANCE(4441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3128: + case 5428: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'd') ADVANCE(4423); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3129: + case 5429: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'd') ADVANCE(5485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3130: + case 5430: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3131: + case 5431: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(4547); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3132: + case 5432: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3125); - if (lookahead == 't') ADVANCE(3122); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5425); + if (lookahead == 't') ADVANCE(5422); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3133: + case 5433: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3125); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3134: + case 5434: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3090); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3135: + case 5435: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5476); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3136: + case 5436: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5394); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3137: + case 5437: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3179); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'e') ADVANCE(5479); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3138: + case 5438: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(2398); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'f') ADVANCE(4305); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3139: + case 5439: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(2488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'h') ADVANCE(4395); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3140: + case 5440: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(2486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'h') ADVANCE(4393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3141: + case 5441: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'h') ADVANCE(5447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3142: + case 5442: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3189); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'i') ADVANCE(5489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3143: + case 5443: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3151); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'i') ADVANCE(5451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3144: + case 5444: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'i') ADVANCE(5490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3145: + case 5445: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'i') ADVANCE(5494); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3146: + case 5446: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3147: + case 5447: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2530); - if (lookahead == 'r') ADVANCE(2532); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'l') ADVANCE(4437); + if (lookahead == 'r') ADVANCE(4439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3148: + case 5448: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'l') ADVANCE(4531); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3149: + case 5449: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'l') ADVANCE(5484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3150: + case 5450: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'l') ADVANCE(5448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3151: + case 5451: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'n') ADVANCE(4391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3152: + case 5452: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'n') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3153: + case 5453: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2371); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'n') ADVANCE(4278); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3154: + case 5454: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3126); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'n') ADVANCE(5426); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3155: + case 5455: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'n') ADVANCE(5429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3156: + case 5456: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'n') ADVANCE(5427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3157: + case 5457: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5389); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3158: + case 5458: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3159: + case 5459: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3128); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5428); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3160: + case 5460: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3193); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5493); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3161: + case 5461: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3193); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3162: + case 5462: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3163: + case 5463: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3169); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3164: + case 5464: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3165: + case 5465: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3187); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'o') ADVANCE(5487); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'u') ADVANCE(5450); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'a') ADVANCE(5521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3166: + case 5466: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3187); - if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'o') ADVANCE(5487); + if (lookahead == 'u') ADVANCE(5450); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'a') ADVANCE(5521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3167: + case 5467: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'o') ADVANCE(5501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3168: + case 5468: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2482); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(4389); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3169: + case 5469: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(4387); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3170: + case 5470: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(4445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3171: + case 5471: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(4443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3172: + case 5472: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3173: + case 5473: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3174: + case 5474: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3175: + case 5475: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3176: + case 5476: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5477); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3177: + case 5477: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3092); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3178: + case 5478: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3179: + case 5479: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3180); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3180: + case 5480: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'r') ADVANCE(5396); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3181: + case 5481: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'u') ADVANCE(5450); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'a') ADVANCE(5521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3182: + case 5482: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3183: + case 5483: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 's') ADVANCE(4371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3184: + case 5484: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3131); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 's') ADVANCE(5431); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3185: + case 5485: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3073); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 's') ADVANCE(5373); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3186: + case 5486: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3075); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 's') ADVANCE(5375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3187: + case 5487: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3188: + case 5488: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3061); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5361); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3189: + case 5489: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3071); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3190: + case 5490: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3139); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3191: + case 5491: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3122); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5422); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3192: + case 5492: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3193: + case 5493: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5372); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3194: + case 5494: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3140); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3195: + case 5495: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5369); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3196: + case 5496: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3095); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5395); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3197: + case 5497: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3186); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 't') ADVANCE(5486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3198: + case 5498: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'u') ADVANCE(5450); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'a') ADVANCE(5521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3199: + case 5499: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'u') ADVANCE(5430); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3200: + case 5500: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3192); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'u') ADVANCE(5492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3201: + case 5501: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'u') ADVANCE(5496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3202: + case 5502: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(3144); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'w') ADVANCE(5444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3203: + case 5503: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(3145); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'w') ADVANCE(5445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3204: + case 5504: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3205: + case 5505: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3206: + case 5506: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2268); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3207: + case 5507: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2272); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3208: + case 5508: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3209: + case 5509: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3210: + case 5510: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4173); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3211: + case 5511: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3212: + case 5512: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (lookahead == '|') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3213: + case 5513: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'a') ADVANCE(5521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3214: + case 5514: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3215: + case 5515: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'f') ADVANCE(5518); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3216: + case 5516: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2720); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'f') ADVANCE(4627); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3217: + case 5517: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'f') ADVANCE(4618); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3218: + case 5518: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1760); + lookahead == 'i') ADVANCE(3667); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3246); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5546); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3670); END_STATE(); - case 3219: + case 5519: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3227); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'i') ADVANCE(5527); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3220: + case 5520: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3228); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'i') ADVANCE(5528); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3221: + case 5521: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3222: + case 5522: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3217); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(5517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3223: + case 5523: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(5519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3224: + case 5524: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(5516); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3225: + case 5525: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3215); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(5515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3226: + case 5526: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3220); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'n') ADVANCE(5520); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3227: + case 5527: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3229); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 't') ADVANCE(5529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3228: + case 5528: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 't') ADVANCE(5530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3229: + case 5529: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'y') ADVANCE(4611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3230: + case 5530: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == 'y') ADVANCE(4621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3231: + case 5531: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3232: + case 5532: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3233: + case 5533: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3234: + case 5534: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3074); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5374); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3235: + case 5535: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5384); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3236: + case 5536: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3234); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5534); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3237: + case 5537: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3243); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5543); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3238: + case 5538: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2758); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4665); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3239: + case 5539: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3240: + case 5540: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3241: + case 5541: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3235); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3242: + case 5542: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3238); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5538); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3243: + case 5543: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4676); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3244: + case 5544: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5383); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3245: + case 5545: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3244); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5544); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3246: + case 5546: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5546); END_STATE(); - case 3247: + case 5547: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3250); - if (lookahead == '_') ADVANCE(3251); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(5550); + if (lookahead == '_') ADVANCE(5551); if (lookahead == '\t' || - lookahead == ' ') SKIP(304); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(3249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + lookahead == '-') ADVANCE(5549); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3248: + case 5548: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '.') ADVANCE(3250); - if (lookahead == '_') ADVANCE(3251); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '.') ADVANCE(5550); + if (lookahead == '_') ADVANCE(5551); if (lookahead == '\t' || - lookahead == ' ') SKIP(376); + lookahead == ' ') SKIP(375); if (lookahead == '+' || - lookahead == '-') ADVANCE(3249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + lookahead == '-') ADVANCE(5549); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3249: + case 5549: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(3252); - if (lookahead == '_') ADVANCE(3249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if (lookahead == '.') ADVANCE(5552); + if (lookahead == '_') ADVANCE(5549); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3250: + case 5550: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if (lookahead == '_') ADVANCE(5550); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4528); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3251: + case 5551: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if (lookahead == '_') ADVANCE(5551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3252: + case 5552: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if (lookahead == '_') ADVANCE(5552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3253: + case 5553: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3254); + if (lookahead == '_') ADVANCE(5554); if (lookahead == '+' || - lookahead == '-') ADVANCE(3254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + lookahead == '-') ADVANCE(5554); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3254: + case 5554: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if (lookahead == '_') ADVANCE(5554); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3255: + case 5555: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5555); END_STATE(); - case 3256: + case 5556: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3382); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'n') ADVANCE(3324); - if (lookahead == 'r') ADVANCE(3398); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5682); + if (lookahead == '>') ADVANCE(5130); + if (lookahead == 'n') ADVANCE(5624); + if (lookahead == 'r') ADVANCE(5698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3257: + case 5557: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3382); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'r') ADVANCE(3398); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5682); + if (lookahead == '>') ADVANCE(5130); + if (lookahead == 'r') ADVANCE(5698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3258: + case 5558: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3333); - if (lookahead == '>') ADVANCE(2834); - if (lookahead == 'r') ADVANCE(2483); - if (lookahead == 'u') ADVANCE(3430); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5633); + if (lookahead == '>') ADVANCE(5134); + if (lookahead == 'r') ADVANCE(4390); + if (lookahead == 'u') ADVANCE(5730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3259: + case 5559: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3333); - if (lookahead == '>') ADVANCE(2834); - if (lookahead == 'u') ADVANCE(3430); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5633); + if (lookahead == '>') ADVANCE(5134); + if (lookahead == 'u') ADVANCE(5730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3260: + case 5560: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3385); - if (lookahead == '>') ADVANCE(2822); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5685); + if (lookahead == '>') ADVANCE(5122); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3261: + case 5561: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3336); - if (lookahead == '>') ADVANCE(2826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5636); + if (lookahead == '>') ADVANCE(5126); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3262: + case 5562: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3390); - if (lookahead == '>') ADVANCE(3455); - if (lookahead == 'n') ADVANCE(3324); - if (lookahead == 'r') ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5690); + if (lookahead == '>') ADVANCE(5755); + if (lookahead == 'n') ADVANCE(5624); + if (lookahead == 'r') ADVANCE(5708); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3263: + case 5563: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3390); - if (lookahead == '>') ADVANCE(3455); - if (lookahead == 'r') ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5690); + if (lookahead == '>') ADVANCE(5755); + if (lookahead == 'r') ADVANCE(5708); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3264: + case 5564: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3340); - if (lookahead == '>') ADVANCE(3456); - if (lookahead == 'r') ADVANCE(2483); - if (lookahead == 'u') ADVANCE(3436); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5640); + if (lookahead == '>') ADVANCE(5756); + if (lookahead == 'r') ADVANCE(4390); + if (lookahead == 'u') ADVANCE(5736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3265: + case 5565: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3340); - if (lookahead == '>') ADVANCE(3456); - if (lookahead == 'u') ADVANCE(3436); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5640); + if (lookahead == '>') ADVANCE(5756); + if (lookahead == 'u') ADVANCE(5736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3266: + case 5566: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3394); - if (lookahead == '>') ADVANCE(3458); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5694); + if (lookahead == '>') ADVANCE(5758); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3267: + case 5567: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3342); - if (lookahead == '>') ADVANCE(3460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '+') ADVANCE(5642); + if (lookahead == '>') ADVANCE(5760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3268: + case 5568: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2332); - if (lookahead == '.') ADVANCE(3300); - if (lookahead == '_') ADVANCE(3276); + if (lookahead == '-') ADVANCE(4239); + if (lookahead == '.') ADVANCE(5600); + if (lookahead == '_') ADVANCE(5576); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'i') ADVANCE(5777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3269: + case 5569: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3498); - if (lookahead == '_') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5798); + if (lookahead == '_') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3270: + case 5570: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3318); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5618); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3271: + case 5571: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3452); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5752); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3272: + case 5572: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3354); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5654); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3273: + case 5573: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3338); + if (lookahead == '-') ADVANCE(5638); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3274: + case 5574: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3499); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3275: + case 5575: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '-') ADVANCE(5753); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3276: + case 5576: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3300); - if (lookahead == '_') ADVANCE(3276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '.') ADVANCE(5600); + if (lookahead == '_') ADVANCE(5576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3277: + case 5577: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(2424); - if (lookahead == '_') ADVANCE(3307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '.') ADVANCE(4331); + if (lookahead == '_') ADVANCE(5607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5604); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3278: + case 5578: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3309); - if (lookahead == '_') ADVANCE(3278); + if (lookahead == '.') ADVANCE(5609); + if (lookahead == '_') ADVANCE(5578); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3279: + case 5579: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3496); + if (lookahead == '.') ADVANCE(5796); if (lookahead == '+' || - lookahead == '-') ADVANCE(3280); + lookahead == '-') ADVANCE(5580); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'z') ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3280: + case 5580: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(3486); + if (lookahead == '2') ADVANCE(5786); if (lookahead == '0' || - lookahead == '1') ADVANCE(3497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '1') ADVANCE(5797); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3281: + case 5581: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3488); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == ':') ADVANCE(5788); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3282: + case 5582: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == ':') ADVANCE(5801); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3283: + case 5583: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == ':') ADVANCE(5803); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3284: + case 5584: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2493); - if (lookahead == '~') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '=') ADVANCE(4400); + if (lookahead == '~') ADVANCE(4411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3285: + case 5585: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2491); - if (lookahead == '>') ADVANCE(2417); - if (lookahead == '~') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '=') ADVANCE(4398); + if (lookahead == '>') ADVANCE(4324); + if (lookahead == '~') ADVANCE(4409); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3286: + case 5586: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2491); - if (lookahead == '~') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '=') ADVANCE(4398); + if (lookahead == '~') ADVANCE(4409); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3287: + case 5587: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3288: + case 5588: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2846); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5146); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3289: + case 5589: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2838); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5138); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3290: + case 5590: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5142); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3291: + case 5591: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2417); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(4324); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3292: + case 5592: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3293: + case 5593: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3459); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3294: + case 5594: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3295: + case 5595: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '>') ADVANCE(5762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3296: + case 5596: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(3467); - if (lookahead == 'f') ADVANCE(3485); - if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'N') ADVANCE(5767); + if (lookahead == 'f') ADVANCE(5785); + if (lookahead == 'n') ADVANCE(5767); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3297: + case 5597: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(3500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'T') ADVANCE(5800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3298: + case 5598: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); - if (lookahead == 'b') ADVANCE(2727); - if (lookahead == 'o') ADVANCE(2743); - if (lookahead == 'x') ADVANCE(2748); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); - END_STATE(); - case 3299: + if (lookahead == '_') ADVANCE(5600); + if (lookahead == 'b') ADVANCE(4635); + if (lookahead == 'o') ADVANCE(4651); + if (lookahead == 'x') ADVANCE(4656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5602); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); + END_STATE(); + case 5599: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); + if (lookahead == '_') ADVANCE(5600); if (lookahead == '+' || - lookahead == '-') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '-') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3300: + case 5600: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '_') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3301: + case 5601: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '_') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5569); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3302: + case 5602: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3301); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '_') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3303: + case 5603: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '_') ADVANCE(5600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5602); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3304: + case 5604: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3304); + if (lookahead == '_') ADVANCE(5604); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'e') ADVANCE(5599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5604); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3305: + case 5605: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3305); + if (lookahead == '_') ADVANCE(5605); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3306); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3306: + case 5606: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3306); + if (lookahead == '_') ADVANCE(5606); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3308); + lookahead == 'e') ADVANCE(5608); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3306); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3307: + case 5607: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '_') ADVANCE(5607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5604); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3308: + case 5608: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3309); + if (lookahead == '_') ADVANCE(5609); if (lookahead == '+' || - lookahead == '-') ADVANCE(3309); + lookahead == '-') ADVANCE(5609); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3309: + case 5609: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3309); + if (lookahead == '_') ADVANCE(5609); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3310: + case 5610: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3362); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'a') ADVANCE(5662); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3311: + case 5611: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3426); - if (lookahead == 'o') ADVANCE(3377); + if (lookahead == 'a') ADVANCE(5726); + if (lookahead == 'o') ADVANCE(5677); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3312: + case 5612: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3366); - if (lookahead == 'o') ADVANCE(3403); + if (lookahead == 'a') ADVANCE(5666); + if (lookahead == 'o') ADVANCE(5703); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3313: + case 5613: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3361); - if (lookahead == 'o') ADVANCE(3325); - if (lookahead == 'u') ADVANCE(3425); + if (lookahead == 'a') ADVANCE(5661); + if (lookahead == 'o') ADVANCE(5625); + if (lookahead == 'u') ADVANCE(5725); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3314: + case 5614: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3360); + if (lookahead == 'a') ADVANCE(5660); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3315: + case 5615: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3454); + if (lookahead == 'a') ADVANCE(5754); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3316: + case 5616: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3417); + if (lookahead == 'a') ADVANCE(5717); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3317: + case 5617: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3414); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'a') ADVANCE(5714); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3318: + case 5618: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3381); - if (lookahead == 'o') ADVANCE(3401); - if (lookahead == 's') ADVANCE(3346); - if (lookahead == 'x') ADVANCE(3392); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'a') ADVANCE(5681); + if (lookahead == 'o') ADVANCE(5701); + if (lookahead == 's') ADVANCE(5646); + if (lookahead == 'x') ADVANCE(5692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3319: + case 5619: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(3349); + if (lookahead == 'c') ADVANCE(5649); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3320: + case 5620: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(3332); + if (lookahead == 'c') ADVANCE(5632); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3321: + case 5621: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2479); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'd') ADVANCE(4386); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3322: + case 5622: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'd') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3323: + case 5623: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2535); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'd') ADVANCE(4442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3324: + case 5624: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'd') ADVANCE(5721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3325: + case 5625: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3446); + if (lookahead == 'd') ADVANCE(5746); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3326: + case 5626: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3332); + if (lookahead == 'd') ADVANCE(5632); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3327: + case 5627: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(4546); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3328: + case 5628: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(4554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3329: + case 5629: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3485); + if (lookahead == 'e') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3330: + case 5630: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3343); - if (lookahead == 'o') ADVANCE(3485); + if (lookahead == 'e') ADVANCE(5643); + if (lookahead == 'o') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3331: + case 5631: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3345); + if (lookahead == 'e') ADVANCE(5645); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3332: + case 5632: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3273); + if (lookahead == 'e') ADVANCE(5573); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3333: + case 5633: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3288); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(5588); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3334: + case 5634: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3427); - if (lookahead == 'o') ADVANCE(3384); + if (lookahead == 'e') ADVANCE(5727); + if (lookahead == 'o') ADVANCE(5684); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3335: + case 5635: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3314); + if (lookahead == 'e') ADVANCE(5614); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3336: + case 5636: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3411); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(5711); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3337: + case 5637: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3403); + if (lookahead == 'e') ADVANCE(5703); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3338: + case 5638: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3379); + if (lookahead == 'e') ADVANCE(5679); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3339: + case 5639: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3413); + if (lookahead == 'e') ADVANCE(5713); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3340: + case 5640: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(5593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3341: + case 5641: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3410); + if (lookahead == 'e') ADVANCE(5710); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3342: + case 5642: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3415); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'e') ADVANCE(5715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3343: + case 5643: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3485); + if (lookahead == 'f') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3344: + case 5644: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(2403); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'f') ADVANCE(4310); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3345: + case 5645: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(3355); - if (lookahead == 't') ADVANCE(3448); + if (lookahead == 'g') ADVANCE(5655); + if (lookahead == 't') ADVANCE(5748); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3346: + case 5646: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3364); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'h') ADVANCE(5664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3347: + case 5647: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(2489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'h') ADVANCE(4396); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3348: + case 5648: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(2487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'h') ADVANCE(4394); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3349: + case 5649: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3485); + if (lookahead == 'h') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3350: + case 5650: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3357); + if (lookahead == 'h') ADVANCE(5657); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3351: + case 5651: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3326); + if (lookahead == 'i') ADVANCE(5626); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3352: + case 5652: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3316); + if (lookahead == 'i') ADVANCE(5616); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3353: + case 5653: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3380); + if (lookahead == 'i') ADVANCE(5680); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3354: + case 5654: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3375); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'i') ADVANCE(5675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3355: + case 5655: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3423); + if (lookahead == 'i') ADVANCE(5723); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3356: + case 5656: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3431); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'i') ADVANCE(5731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3357: + case 5657: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3372); + if (lookahead == 'i') ADVANCE(5672); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3358: + case 5658: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'i') ADVANCE(5732); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3359: + case 5659: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3435); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'i') ADVANCE(5735); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3360: + case 5660: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(3485); + if (lookahead == 'k') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3361: + case 5661: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(3329); - if (lookahead == 't') ADVANCE(3319); + if (lookahead == 'k') ADVANCE(5629); + if (lookahead == 't') ADVANCE(5619); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3362: + case 5662: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3419); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'l') ADVANCE(5719); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3363: + case 5663: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2630); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'l') ADVANCE(4537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3364: + case 5664: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2531); - if (lookahead == 'r') ADVANCE(2533); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'l') ADVANCE(4438); + if (lookahead == 'r') ADVANCE(4440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3365: + case 5665: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3422); - if (lookahead == 'r') ADVANCE(3409); - if (lookahead == 'x') ADVANCE(3396); + if (lookahead == 'l') ADVANCE(5722); + if (lookahead == 'r') ADVANCE(5709); + if (lookahead == 'x') ADVANCE(5696); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3366: + case 5666: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3422); + if (lookahead == 'l') ADVANCE(5722); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3367: + case 5667: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3485); + if (lookahead == 'l') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3368: + case 5668: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3352); - if (lookahead == 's') ADVANCE(3485); + if (lookahead == 'l') ADVANCE(5652); + if (lookahead == 's') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3369: + case 5669: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3363); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'l') ADVANCE(5663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3370: + case 5670: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3367); + if (lookahead == 'l') ADVANCE(5667); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3371: + case 5671: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3315); + if (lookahead == 'l') ADVANCE(5615); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3372: + case 5672: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3329); + if (lookahead == 'l') ADVANCE(5629); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3373: + case 5673: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'n') ADVANCE(5621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3374: + case 5674: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2379); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'n') ADVANCE(4286); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3375: + case 5675: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'n') ADVANCE(4392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3376: + case 5676: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3485); + if (lookahead == 'n') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3377: + case 5677: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3420); + if (lookahead == 'n') ADVANCE(5720); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3378: + case 5678: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3324); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'n') ADVANCE(5624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3379: + case 5679: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3450); + if (lookahead == 'n') ADVANCE(5750); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3380: + case 5680: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3445); + if (lookahead == 'n') ADVANCE(5745); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3381: + case 5681: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3323); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'n') ADVANCE(5623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3382: + case 5682: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3287); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3383: + case 5683: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3447); + if (lookahead == 'o') ADVANCE(5747); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3384: + case 5684: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3395); + if (lookahead == 'o') ADVANCE(5695); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3385: + case 5685: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5742); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3386: + case 5686: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3322); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3387: + case 5687: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3403); + if (lookahead == 'o') ADVANCE(5703); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3388: + case 5688: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3400); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3389: + case 5689: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5734); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3390: + case 5690: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3292); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5592); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3391: + case 5691: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3406); + if (lookahead == 'o') ADVANCE(5706); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3392: + case 5692: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3393: + case 5693: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3428); - if (lookahead == 'u') ADVANCE(3369); + if (lookahead == 'o') ADVANCE(5728); + if (lookahead == 'u') ADVANCE(5669); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'a') ADVANCE(5773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3394: + case 5694: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'o') ADVANCE(5749); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3395: + case 5695: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(3485); + if (lookahead == 'p') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3396: + case 5696: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(3391); - if (lookahead == 't') ADVANCE(3341); + if (lookahead == 'p') ADVANCE(5691); + if (lookahead == 't') ADVANCE(5641); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3397: + case 5697: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5741); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3398: + case 5698: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3399: + case 5699: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(4390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3400: + case 5700: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2481); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(4388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3401: + case 5701: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2539); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(4446); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3402: + case 5702: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2537); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(4444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3403: + case 5703: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3485); + if (lookahead == 'r') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3404: + case 5704: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'r') ADVANCE(5744); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3405: + case 5705: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3335); + if (lookahead == 'r') ADVANCE(5635); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3406: + case 5706: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3427); + if (lookahead == 'r') ADVANCE(5727); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3407: + case 5707: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3320); + if (lookahead == 'r') ADVANCE(5620); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3408: + case 5708: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5566); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3409: + case 5709: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3387); + if (lookahead == 'r') ADVANCE(5687); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3410: + case 5710: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3376); + if (lookahead == 'r') ADVANCE(5676); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3411: + case 5711: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3412: + case 5712: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3290); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5590); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3413: + case 5713: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3371); + if (lookahead == 'r') ADVANCE(5671); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3414: + case 5714: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3439); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5739); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3415: + case 5715: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3416: + case 5716: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3295); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'r') ADVANCE(5595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3417: + case 5717: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3485); + if (lookahead == 's') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3418: + case 5718: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(2471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 's') ADVANCE(4378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3419: + case 5719: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3328); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 's') ADVANCE(5628); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3420: + case 5720: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3425); - if (lookahead == 't') ADVANCE(3353); + if (lookahead == 's') ADVANCE(5725); + if (lookahead == 't') ADVANCE(5653); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3421: + case 5721: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 's') ADVANCE(5571); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3422: + case 5722: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3329); + if (lookahead == 's') ADVANCE(5629); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3423: + case 5723: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3438); + if (lookahead == 's') ADVANCE(5738); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3424: + case 5724: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3275); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 's') ADVANCE(5575); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3425: + case 5725: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3485); + if (lookahead == 't') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3426: + case 5726: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3319); + if (lookahead == 't') ADVANCE(5619); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3427: + case 5727: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3273); + if (lookahead == 't') ADVANCE(5573); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3428: + case 5728: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5787); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3429: + case 5729: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3317); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3430: + case 5730: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3431: + case 5731: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5570); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3432: + case 5732: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3433: + case 5733: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3289); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5589); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3434: + case 5734: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3272); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5572); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3435: + case 5735: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3348); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5648); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3436: + case 5736: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5567); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3437: + case 5737: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3294); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3438: + case 5738: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3337); + if (lookahead == 't') ADVANCE(5637); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3439: + case 5739: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3424); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 't') ADVANCE(5724); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3440: + case 5740: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3369); + if (lookahead == 'u') ADVANCE(5669); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'a') ADVANCE(5773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3441: + case 5741: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3327); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'u') ADVANCE(5627); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3442: + case 5742: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3433); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'u') ADVANCE(5733); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3443: + case 5743: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3370); + if (lookahead == 'u') ADVANCE(5670); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3475); + lookahead == 'a') ADVANCE(5775); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3444: + case 5744: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3329); - if (lookahead == 'y') ADVANCE(3485); + if (lookahead == 'u') ADVANCE(5629); + if (lookahead == 'y') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3445: + case 5745: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3329); + if (lookahead == 'u') ADVANCE(5629); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3446: + case 5746: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3372); + if (lookahead == 'u') ADVANCE(5672); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3447: + case 5747: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3407); + if (lookahead == 'u') ADVANCE(5707); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3448: + case 5748: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3410); + if (lookahead == 'u') ADVANCE(5710); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3449: + case 5749: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3437); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'u') ADVANCE(5737); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3450: + case 5750: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(3485); + if (lookahead == 'v') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3451: + case 5751: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(3339); + if (lookahead == 'v') ADVANCE(5639); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3452: + case 5752: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'w') ADVANCE(5658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3453: + case 5753: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(3359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == 'w') ADVANCE(5659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3454: + case 5754: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(3485); + if (lookahead == 'y') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3455: + case 5755: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3456: + case 5756: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2268); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3457: + case 5757: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2272); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3458: + case 5758: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3459: + case 5759: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3460: + case 5760: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4173); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3461: + case 5761: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3462: + case 5762: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (lookahead == '|') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3463: + case 5763: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(3280); + lookahead == '-') ADVANCE(5580); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'z') ADVANCE(5805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3464: + case 5764: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'a') ADVANCE(5773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3465: + case 5765: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3475); + lookahead == 'a') ADVANCE(5775); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3466: + case 5766: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'f') ADVANCE(5771); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3467: + case 5767: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3472); + lookahead == 'f') ADVANCE(5772); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3468: + case 5768: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'f') ADVANCE(5772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3469: + case 5769: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'i') ADVANCE(5780); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3470: + case 5770: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3481); + lookahead == 'i') ADVANCE(5781); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3471: + case 5771: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3478); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'i') ADVANCE(5778); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3472: + case 5772: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3479); + lookahead == 'i') ADVANCE(5779); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3473: + case 5773: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'n') ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3474: + case 5774: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'n') ADVANCE(5766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3475: + case 5775: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3485); + lookahead == 'n') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3476: + case 5776: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3467); + lookahead == 'n') ADVANCE(5767); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3477: + case 5777: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3468); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'n') ADVANCE(5768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3478: + case 5778: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'n') ADVANCE(5769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3479: + case 5779: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3470); + lookahead == 'n') ADVANCE(5770); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3480: + case 5780: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3482); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 't') ADVANCE(5782); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3481: + case 5781: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3483); + lookahead == 't') ADVANCE(5783); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3482: + case 5782: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == 'y') ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3483: + case 5783: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3485); + lookahead == 'y') ADVANCE(5785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3484: + case 5784: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '_') ADVANCE(5784); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3485: + case 5785: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5785); END_STATE(); - case 3486: + case 5786: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3281); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3487: + case 5787: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == ' ') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3488: + case 5788: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3489: + case 5789: ACCEPT_TOKEN(aux_sym_unquoted_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3489); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5789); END_STATE(); - case 3490: + case 5790: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + lookahead == '_') ADVANCE(5790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3491: + case 5791: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3492: + case 5792: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5574); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3493: + case 5793: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3297); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3494: + case 5794: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3495: + case 5795: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3279); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3496: + case 5796: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3497: + case 5797: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3281); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3498: + case 5798: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3499: + case 5799: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3500: + case 5800: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5794); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3501: + case 5801: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3502: + case 5802: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3282); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3503: + case 5803: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5802); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3504: + case 5804: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3505: + case 5805: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 3506: + case 5806: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(2648); - if (lookahead == '(') ADVANCE(2540); - if (lookahead == '[') ADVANCE(2803); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '$') ADVANCE(4555); + if (lookahead == '(') ADVANCE(4447); + if (lookahead == '[') ADVANCE(4710); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3507: + case 5807: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3553); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(3556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '+') ADVANCE(5853); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == 'r') ADVANCE(5856); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3508: + case 5808: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3548); - if (lookahead == '>') ADVANCE(2832); - if (lookahead == 'u') ADVANCE(3560); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '+') ADVANCE(5848); + if (lookahead == '>') ADVANCE(5132); + if (lookahead == 'u') ADVANCE(5860); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3509: + case 5809: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3542); - if (lookahead == '-') ADVANCE(3544); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == '_') ADVANCE(3544); - if (lookahead == 'r') ADVANCE(3556); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); - END_STATE(); - case 3510: + if (lookahead == '+') ADVANCE(5842); + if (lookahead == '-') ADVANCE(5844); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == '_') ADVANCE(5844); + if (lookahead == 'r') ADVANCE(5856); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); + END_STATE(); + case 5810: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3554); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '+') ADVANCE(5854); + if (lookahead == '>') ADVANCE(5120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3511: + case 5811: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3549); - if (lookahead == '>') ADVANCE(2824); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '+') ADVANCE(5849); + if (lookahead == '>') ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3512: + case 5812: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3588); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '-') ADVANCE(5888); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3513: + case 5813: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3514: + case 5814: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3515: + case 5815: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3516: + case 5816: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3533); - if (lookahead == '_') ADVANCE(3517); + if (lookahead == '.') ADVANCE(5833); + if (lookahead == '_') ADVANCE(5817); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'i') ADVANCE(5873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3517: + case 5817: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3533); - if (lookahead == '_') ADVANCE(3517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(5833); + if (lookahead == '_') ADVANCE(5817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3518: + case 5818: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2422); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(4329); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3519: + case 5819: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3538); - if (lookahead == '_') ADVANCE(3520); + if (lookahead == '.') ADVANCE(5837); + if (lookahead == '_') ADVANCE(5820); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'i') ADVANCE(5873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3520: + case 5820: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3538); - if (lookahead == '_') ADVANCE(3520); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '.') ADVANCE(5837); + if (lookahead == '_') ADVANCE(5820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3521: + case 5821: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(3579); + if (lookahead == '2') ADVANCE(5879); if (lookahead == '0' || - lookahead == '1') ADVANCE(3587); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == '1') ADVANCE(5887); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3522: + case 5822: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3593); - if (lookahead == '_') ADVANCE(3522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2691); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); + if (lookahead == ':') ADVANCE(5893); + if (lookahead == '_') ADVANCE(5822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4598); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5825); END_STATE(); - case 3523: + case 5823: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3593); - if (lookahead == '_') ADVANCE(3524); + if (lookahead == ':') ADVANCE(5893); + if (lookahead == '_') ADVANCE(5824); if (lookahead == '+' || - lookahead == '-') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); + lookahead == '-') ADVANCE(5824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5825); END_STATE(); - case 3524: + case 5824: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3593); - if (lookahead == '_') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); + if (lookahead == ':') ADVANCE(5893); + if (lookahead == '_') ADVANCE(5824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5825); END_STATE(); - case 3525: + case 5825: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3593); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); + if (lookahead == ':') ADVANCE(5893); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5825); END_STATE(); - case 3526: + case 5826: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3590); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == ':') ADVANCE(5890); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3527: + case 5827: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == ':') ADVANCE(5892); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3528: + case 5828: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2848); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '>') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3529: + case 5829: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '>') ADVANCE(5144); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3530: + case 5830: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2836); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '>') ADVANCE(5136); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3531: + case 5831: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '>') ADVANCE(5140); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3532: + case 5832: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3532); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5832); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3533: + case 5833: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5833); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3534: + case 5834: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5834); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3535: + case 5835: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3536); + if (lookahead == '_') ADVANCE(5836); if (lookahead == '+' || - lookahead == '-') ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == '-') ADVANCE(5836); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3536: + case 5836: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5836); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3537: + case 5837: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3537); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3538: + case 5838: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4524); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3539: + case 5839: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5840); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3540: + case 5840: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3541); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3541: + case 5841: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5841); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3542: + case 5842: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3544); - if (lookahead == 'o') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5844); + if (lookahead == 'o') ADVANCE(5828); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3543: + case 5843: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3544); + if (lookahead == '_') ADVANCE(5844); if (lookahead == '+' || - lookahead == '-') ADVANCE(3544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == '-') ADVANCE(5844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3544: + case 5844: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == '_') ADVANCE(5844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3545: + case 5845: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3551); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'a') ADVANCE(5851); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3546: + case 5846: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3547: + case 5847: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'e') ADVANCE(4547); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3548: + case 5848: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'e') ADVANCE(5829); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3549: + case 5849: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'e') ADVANCE(5857); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3550: + case 5850: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'l') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3551: + case 5851: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3559); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'l') ADVANCE(5859); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3552: + case 5852: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3550); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'l') ADVANCE(5850); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3553: + case 5853: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3528); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'o') ADVANCE(5828); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3554: + case 5854: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3564); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'o') ADVANCE(5864); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3555: + case 5855: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3563); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'r') ADVANCE(5863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3556: + case 5856: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3510); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'r') ADVANCE(5810); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3557: + case 5857: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3558); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'r') ADVANCE(5858); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3558: + case 5858: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3531); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'r') ADVANCE(5831); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3559: + case 5859: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3547); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 's') ADVANCE(5847); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3560: + case 5860: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3511); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 't') ADVANCE(5811); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3561: + case 5861: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3530); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 't') ADVANCE(5830); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3562: + case 5862: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3552); + if (lookahead == 'u') ADVANCE(5852); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3570); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'a') ADVANCE(5870); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3563: + case 5863: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3546); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'u') ADVANCE(5846); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3564: + case 5864: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3561); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (lookahead == 'u') ADVANCE(5861); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3565: + case 5865: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3570); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'a') ADVANCE(5870); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3566: + case 5866: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'f') ADVANCE(4616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3567: + case 5867: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2718); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'f') ADVANCE(4625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3568: + case 5868: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3575); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'i') ADVANCE(5875); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3569: + case 5869: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3576); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'i') ADVANCE(5876); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3570: + case 5870: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3571: + case 5871: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3566); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'n') ADVANCE(5866); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3572: + case 5872: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3568); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'n') ADVANCE(5868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3573: + case 5873: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3567); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'n') ADVANCE(5867); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3574: + case 5874: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3569); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'n') ADVANCE(5869); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3575: + case 5875: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3577); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 't') ADVANCE(5877); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3576: + case 5876: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 't') ADVANCE(5878); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3577: + case 5877: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'y') ADVANCE(4611); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3578: + case 5878: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + lookahead == 'y') ADVANCE(4621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3579: + case 5879: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3580: + case 5880: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3581: + case 5881: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5812); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3582: + case 5882: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3527); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5827); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3583: + case 5883: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3581); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5881); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3584: + case 5884: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2767); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3585: + case 5885: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4664); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3586: + case 5886: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2774); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4681); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3587: + case 5887: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3588: + case 5888: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3584); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5884); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3589: + case 5889: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3582); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5882); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3590: + case 5890: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3585); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5885); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3591: + case 5891: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5826); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3592: + case 5892: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5891); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3593: + case 5893: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5893); END_STATE(); - case 3594: + case 5894: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3658); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == 'i') ADVANCE(3675); - if (lookahead == 'r') ADVANCE(3662); + if (lookahead == '+') ADVANCE(5958); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == 'i') ADVANCE(5975); + if (lookahead == 'r') ADVANCE(5962); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3595: + case 5895: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3658); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(3662); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '+') ADVANCE(5958); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == 'r') ADVANCE(5962); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3596: + case 5896: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3651); - if (lookahead == '>') ADVANCE(2832); - if (lookahead == 'u') ADVANCE(3668); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '+') ADVANCE(5951); + if (lookahead == '>') ADVANCE(5132); + if (lookahead == 'u') ADVANCE(5968); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3597: + case 5897: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); ADVANCE_MAP( - '+', 3639, - '-', 3641, - '>', 2828, - 'I', 3675, - '_', 3641, - 'i', 3675, - 'r', 3662, - 'B', 2731, - 'b', 2731, + '+', 5938, + '-', 5940, + '>', 5128, + 'I', 5975, + '_', 5940, + 'i', 5975, + 'r', 5962, + 'B', 4638, + 'b', 4638, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3598: + case 5898: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3639); - if (lookahead == '-') ADVANCE(3641); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == '_') ADVANCE(3641); - if (lookahead == 'r') ADVANCE(3662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); - END_STATE(); - case 3599: + if (lookahead == '+') ADVANCE(5938); + if (lookahead == '-') ADVANCE(5940); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == '_') ADVANCE(5940); + if (lookahead == 'r') ADVANCE(5962); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); + END_STATE(); + case 5899: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3659); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '+') ADVANCE(5959); + if (lookahead == '>') ADVANCE(5120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3600: + case 5900: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3652); - if (lookahead == '>') ADVANCE(2824); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '+') ADVANCE(5952); + if (lookahead == '>') ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3601: + case 5901: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(3694); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '-') ADVANCE(5994); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3602: + case 5902: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3603: + case 5903: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(5937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3604: + case 5904: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4451); + if (lookahead == '_') ADVANCE(5937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3605: + case 5905: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2544); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3606: + case 5906: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3608); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(5908); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3607: + case 5907: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(5908); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3608: + case 5908: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2326); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4233); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3609: + case 5909: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3632); - if (lookahead == '_') ADVANCE(3610); + if (lookahead == '.') ADVANCE(5932); + if (lookahead == '_') ADVANCE(5910); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3683); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'i') ADVANCE(5983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3610: + case 5910: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3632); - if (lookahead == '_') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(5932); + if (lookahead == '_') ADVANCE(5910); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3611: + case 5911: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2543); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(4450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3612: + case 5912: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3637); - if (lookahead == '_') ADVANCE(3613); + if (lookahead == '.') ADVANCE(5936); + if (lookahead == '_') ADVANCE(5913); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3683); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'i') ADVANCE(5983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3613: + case 5913: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3637); - if (lookahead == '_') ADVANCE(3613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '.') ADVANCE(5936); + if (lookahead == '_') ADVANCE(5913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3614: + case 5914: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(3689); + if (lookahead == '2') ADVANCE(5989); if (lookahead == '0' || - lookahead == '1') ADVANCE(3698); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == '1') ADVANCE(5998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3615: + case 5915: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3703); - if (lookahead == '_') ADVANCE(3615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + if (lookahead == ':') ADVANCE(6003); + if (lookahead == '_') ADVANCE(5915); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4596); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5918); END_STATE(); - case 3616: + case 5916: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3703); - if (lookahead == '_') ADVANCE(3617); + if (lookahead == ':') ADVANCE(6003); + if (lookahead == '_') ADVANCE(5917); if (lookahead == '+' || - lookahead == '-') ADVANCE(3617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + lookahead == '-') ADVANCE(5917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5918); END_STATE(); - case 3617: + case 5917: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3703); - if (lookahead == '_') ADVANCE(3617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + if (lookahead == ':') ADVANCE(6003); + if (lookahead == '_') ADVANCE(5917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5918); END_STATE(); - case 3618: + case 5918: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3703); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + if (lookahead == ':') ADVANCE(6003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5918); END_STATE(); - case 3619: + case 5919: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == ':') ADVANCE(5999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3620: + case 5920: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3702); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == ':') ADVANCE(6002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3621: + case 5921: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2848); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '>') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3622: + case 5922: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '>') ADVANCE(5144); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3623: + case 5923: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2836); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '>') ADVANCE(5136); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3624: + case 5924: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '>') ADVANCE(5140); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3625: + case 5925: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == '_') ADVANCE(3641); - if (lookahead == 'i') ADVANCE(3675); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == '_') ADVANCE(5940); + if (lookahead == 'i') ADVANCE(5975); if (lookahead == '+' || - lookahead == '-') ADVANCE(3641); + lookahead == '-') ADVANCE(5940); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3626: + case 5926: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == '_') ADVANCE(3641); - if (lookahead == 'i') ADVANCE(3646); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == '_') ADVANCE(5940); + if (lookahead == 'i') ADVANCE(5946); if (lookahead == '+' || - lookahead == '-') ADVANCE(3641); + lookahead == '-') ADVANCE(5940); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3627: + case 5927: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == 'i') ADVANCE(3675); - if (lookahead == 'r') ADVANCE(3671); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == 'i') ADVANCE(5975); + if (lookahead == 'r') ADVANCE(5971); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3628: + case 5928: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == 'i') ADVANCE(3675); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == 'i') ADVANCE(5975); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3629: + case 5929: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == 'i') ADVANCE(3646); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == 'i') ADVANCE(5946); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3630: + case 5930: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3675); - if (lookahead == 'i') ADVANCE(3657); - if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'I') ADVANCE(5975); + if (lookahead == 'i') ADVANCE(5957); + if (lookahead == 's') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3631: + case 5931: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3632: + case 5932: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3632); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3633: + case 5933: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4523); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3634: + case 5934: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3635); + if (lookahead == '_') ADVANCE(5935); if (lookahead == '+' || - lookahead == '-') ADVANCE(3635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); - END_STATE(); - case 3635: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == '-') ADVANCE(5935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3636: + case 5935: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3637: + case 5936: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3638: + case 5937: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3639: + case 5938: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3641); - if (lookahead == 'o') ADVANCE(3621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5940); + if (lookahead == 'o') ADVANCE(5921); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3640: + case 5939: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3641); + if (lookahead == '_') ADVANCE(5940); if (lookahead == '+' || - lookahead == '-') ADVANCE(3641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == '-') ADVANCE(5940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3641: + case 5940: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3642: + case 5941: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3643); + if (lookahead == '_') ADVANCE(5942); if (lookahead == '+' || - lookahead == '-') ADVANCE(3643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == '-') ADVANCE(5942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3643: + case 5942: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3644: + case 5943: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == '_') ADVANCE(5943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3645: + case 5944: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3673); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'a') ADVANCE(5955); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3646: + case 5945: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'a') ADVANCE(5973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3647: + case 5946: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3648: + case 5947: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3649: + case 5948: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3650: + case 5949: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3647); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'e') ADVANCE(4547); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3651: + case 5950: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3622); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'e') ADVANCE(5947); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3652: + case 5951: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3663); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'e') ADVANCE(5922); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3653: + case 5952: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'e') ADVANCE(5963); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3654: + case 5953: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3655: + case 5954: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3667); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'l') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3656: + case 5955: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3654); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'l') ADVANCE(5967); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3657: + case 5956: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'l') ADVANCE(5954); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); + END_STATE(); + case 5957: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'n') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3658: + case 5958: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(3621); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'o') ADVANCE(5921); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3659: + case 5959: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(3672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'o') ADVANCE(5972); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3660: + case 5960: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3661: + case 5961: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3671); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'r') ADVANCE(5971); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3662: + case 5962: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3599); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'r') ADVANCE(5899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3663: + case 5963: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3664); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'r') ADVANCE(5964); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3664: + case 5964: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'r') ADVANCE(5924); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3665: + case 5965: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(2738); - if (lookahead == 'u') ADVANCE(3656); + if (lookahead == 's') ADVANCE(4645); + if (lookahead == 'u') ADVANCE(5956); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'a') ADVANCE(5980); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3666: + case 5966: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3667: + case 5967: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3649); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 's') ADVANCE(5949); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3668: + case 5968: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(3600); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 't') ADVANCE(5900); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3669: + case 5969: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(3623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 't') ADVANCE(5923); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3670: + case 5970: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3656); + if (lookahead == 'u') ADVANCE(5956); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'a') ADVANCE(5980); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3671: + case 5971: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3648); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'u') ADVANCE(5948); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3672: + case 5972: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3669); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'u') ADVANCE(5969); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3673: + case 5973: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3674: + case 5974: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'a') ADVANCE(5980); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3675: + case 5975: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3676: + case 5976: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'f') ADVANCE(4628); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3677: + case 5977: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2712); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'f') ADVANCE(4619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3678: + case 5978: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3685); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'i') ADVANCE(5985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3679: + case 5979: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3686); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'i') ADVANCE(5986); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3680: + case 5980: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3681: + case 5981: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3677); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'n') ADVANCE(5977); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3682: + case 5982: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3678); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'n') ADVANCE(5978); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3683: + case 5983: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3676); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'n') ADVANCE(5976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3684: + case 5984: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'n') ADVANCE(5979); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3685: + case 5985: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 't') ADVANCE(5987); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3686: + case 5986: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 't') ADVANCE(5988); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3687: + case 5987: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'y') ADVANCE(4611); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3688: + case 5988: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + lookahead == 'y') ADVANCE(4621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3689: + case 5989: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3690: + case 5990: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3691: + case 5991: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3601); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5901); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3692: + case 5992: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3693: + case 5993: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3691); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5991); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3694: + case 5994: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3695: + case 5995: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3696: + case 5996: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2759); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3697: + case 5997: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3698: + case 5998: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3699: + case 5999: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3696); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3700: + case 6000: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2770); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4677); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3701: + case 6001: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5919); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3702: + case 6002: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3701); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6001); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3703: + case 6003: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6003); END_STATE(); - case 3704: + case 6004: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2426); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3707); - if (lookahead == ']') ADVANCE(2301); - if (lookahead == '_') ADVANCE(3708); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4333); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(6007); + if (lookahead == ']') ADVANCE(4208); + if (lookahead == '_') ADVANCE(6008); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(301); if (lookahead == '+' || - lookahead == '-') ADVANCE(3706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + lookahead == '-') ADVANCE(6006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3705: + case 6005: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3707); - if (lookahead == '_') ADVANCE(3708); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(6007); + if (lookahead == '_') ADVANCE(6008); if (lookahead == '\t' || - lookahead == ' ') SKIP(304); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(3706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + lookahead == '-') ADVANCE(6006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3706: + case 6006: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3709); - if (lookahead == '_') ADVANCE(3706); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if (lookahead == '.') ADVANCE(6009); + if (lookahead == '_') ADVANCE(6006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3707: + case 6007: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if (lookahead == '_') ADVANCE(6007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4527); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3708: + case 6008: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3708); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if (lookahead == '_') ADVANCE(6008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3709: + case 6009: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if (lookahead == '_') ADVANCE(6009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3710: + case 6010: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3711); + if (lookahead == '_') ADVANCE(6011); if (lookahead == '+' || - lookahead == '-') ADVANCE(3711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + lookahead == '-') ADVANCE(6011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3711: + case 6011: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if (lookahead == '_') ADVANCE(6011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3712: + case 6012: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6012); END_STATE(); - case 3713: + case 6013: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3750); - if (lookahead == '>') ADVANCE(2831); - if (lookahead == 'r') ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '+') ADVANCE(6050); + if (lookahead == '>') ADVANCE(5131); + if (lookahead == 'r') ADVANCE(6053); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3714: + case 6014: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3745); - if (lookahead == '>') ADVANCE(2835); - if (lookahead == 'u') ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '+') ADVANCE(6045); + if (lookahead == '>') ADVANCE(5135); + if (lookahead == 'u') ADVANCE(6057); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3715: + case 6015: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3751); - if (lookahead == '>') ADVANCE(2823); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '+') ADVANCE(6051); + if (lookahead == '>') ADVANCE(5123); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3716: + case 6016: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3746); - if (lookahead == '>') ADVANCE(2827); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '+') ADVANCE(6046); + if (lookahead == '>') ADVANCE(5127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3717: + case 6017: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(3784); - if (lookahead == '_') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '-') ADVANCE(6084); + if (lookahead == '_') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3718: + case 6018: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(3785); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '-') ADVANCE(6085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3719: + case 6019: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3736); - if (lookahead == '_') ADVANCE(3720); + if (lookahead == '.') ADVANCE(6036); + if (lookahead == '_') ADVANCE(6020); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'i') ADVANCE(6068); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3720: + case 6020: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3736); - if (lookahead == '_') ADVANCE(3720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '.') ADVANCE(6036); + if (lookahead == '_') ADVANCE(6020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3721: + case 6021: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2425); - if (lookahead == '_') ADVANCE(3741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '.') ADVANCE(4332); + if (lookahead == '_') ADVANCE(6041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3722: + case 6022: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2327); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '.') ADVANCE(4234); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3723: + case 6023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '.') ADVANCE(6022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3724: + case 6024: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3782); + if (lookahead == '.') ADVANCE(6082); if (lookahead == '+' || - lookahead == '-') ADVANCE(3725); + lookahead == '-') ADVANCE(6025); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'z') ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3725: + case 6025: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(3773); + if (lookahead == '2') ADVANCE(6073); if (lookahead == '0' || - lookahead == '1') ADVANCE(3783); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '1') ADVANCE(6083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3726: + case 6026: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3774); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3777); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == ':') ADVANCE(6074); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(6077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3727: + case 6027: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == ':') ADVANCE(6087); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3728: + case 6028: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == ':') ADVANCE(6089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3729: + case 6029: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2851); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3730: + case 6030: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2847); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5147); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3731: + case 6031: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5139); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3732: + case 6032: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2843); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '>') ADVANCE(5143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3733: + case 6033: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(3786); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'T') ADVANCE(6086); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3734: + case 6034: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); - if (lookahead == 'b') ADVANCE(2730); - if (lookahead == 'o') ADVANCE(2746); - if (lookahead == 'x') ADVANCE(2751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); - END_STATE(); - case 3735: + if (lookahead == '_') ADVANCE(6036); + if (lookahead == 'b') ADVANCE(4637); + if (lookahead == 'o') ADVANCE(4653); + if (lookahead == 'x') ADVANCE(4658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); + END_STATE(); + case 6035: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); + if (lookahead == '_') ADVANCE(6036); if (lookahead == '+' || - lookahead == '-') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '-') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3736: + case 6036: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '_') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3737: + case 6037: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3717); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '_') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6017); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3738: + case 6038: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3737); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '_') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6037); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3739: + case 6039: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '_') ADVANCE(6036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3740: + case 6040: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3740); + if (lookahead == '_') ADVANCE(6040); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'e') ADVANCE(6035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3741: + case 6041: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == '_') ADVANCE(6041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3742: + case 6042: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(3747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'a') ADVANCE(6047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3743: + case 6043: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'e') ADVANCE(4545); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3744: + case 6044: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2646); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'e') ADVANCE(4553); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3745: + case 6045: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3730); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'e') ADVANCE(6030); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3746: + case 6046: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3754); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'e') ADVANCE(6054); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3747: + case 6047: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3756); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'l') ADVANCE(6056); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3748: + case 6048: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'l') ADVANCE(4536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3749: + case 6049: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3748); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'l') ADVANCE(6048); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3750: + case 6050: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(3729); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'o') ADVANCE(6029); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3751: + case 6051: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(3761); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'o') ADVANCE(6061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3752: + case 6052: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3760); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'r') ADVANCE(6060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3753: + case 6053: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3715); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'r') ADVANCE(6015); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3754: + case 6054: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'r') ADVANCE(6055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3755: + case 6055: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3732); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'r') ADVANCE(6032); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3756: + case 6056: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(3744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 's') ADVANCE(6044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3757: + case 6057: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(3716); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 't') ADVANCE(6016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3758: + case 6058: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(3731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 't') ADVANCE(6031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3759: + case 6059: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3749); + if (lookahead == 'u') ADVANCE(6049); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3767); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'a') ADVANCE(6067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3760: + case 6060: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'u') ADVANCE(6043); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3761: + case 6061: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3758); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (lookahead == 'u') ADVANCE(6058); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3762: + case 6062: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(3725); + lookahead == '-') ADVANCE(6025); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'z') ADVANCE(6091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3763: + case 6063: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3767); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'a') ADVANCE(6067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3764: + case 6064: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3766); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'f') ADVANCE(6066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3765: + case 6065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3770); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'i') ADVANCE(6070); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3766: + case 6066: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3769); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'i') ADVANCE(6069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3767: + case 6067: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'n') ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3768: + case 6068: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'n') ADVANCE(6064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3769: + case 6069: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3765); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'n') ADVANCE(6065); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3770: + case 6070: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3771); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 't') ADVANCE(6071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3771: + case 6071: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == 'y') ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3772: + case 6072: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '_') ADVANCE(6072); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3773: + case 6073: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3726); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(6026); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3774: + case 6074: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3777); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(6077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3775: + case 6075: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '-' || lookahead == '.' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3775); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6075); END_STATE(); - case 3776: + case 6076: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3776); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + lookahead == '_') ADVANCE(6076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3777: + case 6077: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3791); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3778: + case 6078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6018); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3779: + case 6079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3733); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6033); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3780: + case 6080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3728); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6028); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3781: + case 6081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6024); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3782: + case 6082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3783: + case 6083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3726); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6026); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3784: + case 6084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3778); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3785: + case 6085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6079); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3786: + case 6086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3787: + case 6087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3781); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6081); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3788: + case 6088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3727); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6027); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3789: + case 6089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3790: + case 6090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3790); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3791: + case 6091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 3792: + case 6092: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3818); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(3821); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '+') ADVANCE(6118); + if (lookahead == '>') ADVANCE(5128); + if (lookahead == 'r') ADVANCE(6121); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3793: + case 6093: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3813); - if (lookahead == '>') ADVANCE(2832); - if (lookahead == 'u') ADVANCE(3825); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '+') ADVANCE(6113); + if (lookahead == '>') ADVANCE(5132); + if (lookahead == 'u') ADVANCE(6125); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3794: + case 6094: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3819); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '+') ADVANCE(6119); + if (lookahead == '>') ADVANCE(5120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3795: + case 6095: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3814); - if (lookahead == '>') ADVANCE(2824); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '+') ADVANCE(6114); + if (lookahead == '>') ADVANCE(5124); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3796: + case 6096: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(3847); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '-') ADVANCE(6147); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3797: + case 6097: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3807); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '.') ADVANCE(4330); + if (lookahead == '_') ADVANCE(6107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4604); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3798: + case 6098: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3806); - if (lookahead == '_') ADVANCE(3799); + if (lookahead == '.') ADVANCE(6106); + if (lookahead == '_') ADVANCE(6099); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'i') ADVANCE(6138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3799: + case 6099: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3806); - if (lookahead == '_') ADVANCE(3799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '.') ADVANCE(6106); + if (lookahead == '_') ADVANCE(6099); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3800: + case 6100: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(681); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3850); + if (lookahead == ':') ADVANCE(2235); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3801: + case 6101: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2848); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '>') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3802: + case 6102: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '>') ADVANCE(5144); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3803: + case 6103: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2836); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '>') ADVANCE(5136); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3804: + case 6104: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '>') ADVANCE(5140); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3805: + case 6105: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '_') ADVANCE(6105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3806: + case 6106: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3806); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '_') ADVANCE(6106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3807: + case 6107: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3807); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '_') ADVANCE(6107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4604); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3808: + case 6108: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3809); + if (lookahead == '_') ADVANCE(6109); if (lookahead == '+' || - lookahead == '-') ADVANCE(3809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == '-') ADVANCE(6109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3809: + case 6109: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3809); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == '_') ADVANCE(6109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3810: + case 6110: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(3816); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'a') ADVANCE(6116); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3811: + case 6111: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2632); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'e') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3812: + case 6112: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2640); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'e') ADVANCE(4547); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3813: + case 6113: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3802); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'e') ADVANCE(6102); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3814: + case 6114: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3822); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'e') ADVANCE(6122); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3815: + case 6115: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'l') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3816: + case 6116: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3824); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'l') ADVANCE(6124); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3817: + case 6117: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3815); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'l') ADVANCE(6115); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3818: + case 6118: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(3801); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'o') ADVANCE(6101); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3819: + case 6119: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(3829); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'o') ADVANCE(6129); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3820: + case 6120: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3828); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'r') ADVANCE(6128); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3821: + case 6121: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3794); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'r') ADVANCE(6094); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3822: + case 6122: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3823); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'r') ADVANCE(6123); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3823: + case 6123: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3804); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'r') ADVANCE(6104); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3824: + case 6124: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(3812); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 's') ADVANCE(6112); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3825: + case 6125: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(3795); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 't') ADVANCE(6095); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3826: + case 6126: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(3803); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 't') ADVANCE(6103); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3827: + case 6127: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3817); + if (lookahead == 'u') ADVANCE(6117); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3835); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'a') ADVANCE(6135); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3828: + case 6128: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3811); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'u') ADVANCE(6111); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3829: + case 6129: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3826); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (lookahead == 'u') ADVANCE(6126); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3830: + case 6130: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3835); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'a') ADVANCE(6135); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3831: + case 6131: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2719); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'f') ADVANCE(4626); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3832: + case 6132: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2710); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'f') ADVANCE(4617); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3833: + case 6133: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3840); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'i') ADVANCE(6140); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3834: + case 6134: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3841); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'i') ADVANCE(6141); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3835: + case 6135: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2722); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'n') ADVANCE(4629); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3836: + case 6136: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3832); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'n') ADVANCE(6132); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3837: + case 6137: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3833); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'n') ADVANCE(6133); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3838: + case 6138: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3831); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'n') ADVANCE(6131); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3839: + case 6139: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3834); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'n') ADVANCE(6134); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3840: + case 6140: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3842); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 't') ADVANCE(6142); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3841: + case 6141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3843); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 't') ADVANCE(6143); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3842: + case 6142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'y') ADVANCE(4611); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3843: + case 6143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + lookahead == 'y') ADVANCE(4621); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3844: + case 6144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3796); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6096); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3845: + case 6145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3800); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6100); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3846: + case 6146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3844); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6144); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3847: + case 6147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3849); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6149); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3848: + case 6148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3845); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6145); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3849: + case 6149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2768); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4675); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3850: + case 6150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6150); END_STATE(); - case 3851: + case 6151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3859); - if (lookahead == '_') ADVANCE(3851); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '.') ADVANCE(6159); + if (lookahead == '_') ADVANCE(6151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3852: + case 6152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2544); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '.') ADVANCE(4451); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3853: + case 6153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3860); - if (lookahead == '_') ADVANCE(3853); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '.') ADVANCE(6160); + if (lookahead == '_') ADVANCE(6153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3854: + case 6154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3876); - if (lookahead == '_') ADVANCE(3866); - if (lookahead == 'i') ADVANCE(3876); + if (lookahead == 'I') ADVANCE(6176); + if (lookahead == '_') ADVANCE(6166); + if (lookahead == 'i') ADVANCE(6176); if (lookahead == '+' || - lookahead == '-') ADVANCE(3866); + lookahead == '-') ADVANCE(6166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3855: + case 6155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3876); - if (lookahead == '_') ADVANCE(3866); - if (lookahead == 'i') ADVANCE(3868); + if (lookahead == 'I') ADVANCE(6176); + if (lookahead == '_') ADVANCE(6166); + if (lookahead == 'i') ADVANCE(6168); if (lookahead == '+' || - lookahead == '-') ADVANCE(3866); + lookahead == '-') ADVANCE(6166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3856: + case 6156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3876); - if (lookahead == 'i') ADVANCE(3876); + if (lookahead == 'I') ADVANCE(6176); + if (lookahead == 'i') ADVANCE(6176); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3857: + case 6157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3876); - if (lookahead == 'i') ADVANCE(3868); + if (lookahead == 'I') ADVANCE(6176); + if (lookahead == 'i') ADVANCE(6168); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3858: + case 6158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3876); - if (lookahead == 'i') ADVANCE(3872); - if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'I') ADVANCE(6176); + if (lookahead == 'i') ADVANCE(6172); + if (lookahead == 's') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3859: + case 6159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3859); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4607); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3860: + case 6160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3860); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3861: + case 6161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3861); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3862: + case 6162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3862); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4526); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3863: + case 6163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3864); + if (lookahead == '_') ADVANCE(6164); if (lookahead == '+' || - lookahead == '-') ADVANCE(3864); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == '-') ADVANCE(6164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3864: + case 6164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3864); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3865: + case 6165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3866); + if (lookahead == '_') ADVANCE(6166); if (lookahead == '+' || - lookahead == '-') ADVANCE(3866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == '-') ADVANCE(6166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3866: + case 6166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == '_') ADVANCE(6166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4515); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3867: + case 6167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(3875); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'a') ADVANCE(6175); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3868: + case 6168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3869: + case 6169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'c') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3870: + case 6170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(3869); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'e') ADVANCE(6169); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3871: + case 6171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'k') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3872: + case 6172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'n') ADVANCE(4645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3873: + case 6173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'r') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3874: + case 6174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 's') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3875: + case 6175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(2738); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if (lookahead == 'y') ADVANCE(4645); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3876: + case 6176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2731); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'b') ADVANCE(4638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3877: + case 6177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2715); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'f') ADVANCE(4622); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3878: + case 6178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3877); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + lookahead == 'n') ADVANCE(6177); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3879: + case 6179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6179); END_STATE(); - case 3880: + case 6180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4069); - if (lookahead == '$') ADVANCE(2305); - if (lookahead == '(') ADVANCE(2506); - if (lookahead == '.') ADVANCE(3882); - if (lookahead == '_') ADVANCE(3883); + if (lookahead == '#') ADVANCE(6369); + if (lookahead == '$') ADVANCE(4212); + if (lookahead == '(') ADVANCE(4413); + if (lookahead == '.') ADVANCE(6182); + if (lookahead == '_') ADVANCE(6183); if (lookahead == '\t' || - lookahead == ' ') SKIP(304); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(3881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3887); + lookahead == '-') ADVANCE(6181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(6187); END_STATE(); - case 3881: + case 6181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(3884); - if (lookahead == '_') ADVANCE(3881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if (lookahead == '.') ADVANCE(6184); + if (lookahead == '_') ADVANCE(6181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3882: + case 6182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if (lookahead == '_') ADVANCE(6182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3883: + case 6183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if (lookahead == '_') ADVANCE(6183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4501); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3884: + case 6184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if (lookahead == '_') ADVANCE(6184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3885: + case 6185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3886); + if (lookahead == '_') ADVANCE(6186); if (lookahead == '+' || - lookahead == '-') ADVANCE(3886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + lookahead == '-') ADVANCE(6186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3886: + case 6186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if (lookahead == '_') ADVANCE(6186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3887: + case 6187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6187); END_STATE(); - case 3888: + case 6188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(2649); - if (lookahead == '(') ADVANCE(2540); - if (lookahead == '{') ADVANCE(2804); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4061); + if (lookahead == '$') ADVANCE(4556); + if (lookahead == '(') ADVANCE(4447); + if (lookahead == '{') ADVANCE(4711); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(6361); END_STATE(); - case 3889: + case 6189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1695); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3889); + if (lookahead == ',') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6189); END_STATE(); - case 3890: + case 6190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1668); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3890); + if (lookahead == ',') ADVANCE(3565); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6190); END_STATE(); - case 3891: + case 6191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1671); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3891); + if (lookahead == ',') ADVANCE(3568); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6191); END_STATE(); - case 3892: + case 6192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 'i') ADVANCE(6194); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3893: + case 6193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3895); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 'i') ADVANCE(6195); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3894: + case 6194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3893); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 'n') ADVANCE(6193); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3895: + case 6195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3896); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 't') ADVANCE(6196); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3896: + case 6196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); + if (lookahead == ',') ADVANCE(3620); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + lookahead == 'y') ADVANCE(6197); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3897: + case 6197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1713); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); + if (lookahead == ',') ADVANCE(3620); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6197); END_STATE(); - case 3898: + case 6198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3900); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + lookahead == 'i') ADVANCE(6200); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3899: + case 6199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3901); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + lookahead == 'i') ADVANCE(6201); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3900: + case 6200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3899); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + lookahead == 'n') ADVANCE(6199); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3901: + case 6201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3902); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + lookahead == 't') ADVANCE(6202); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3902: + case 6202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); + if (lookahead == ',') ADVANCE(3660); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3903); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + lookahead == 'y') ADVANCE(6203); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3903: + case 6203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1753); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); + if (lookahead == ',') ADVANCE(3660); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6203); END_STATE(); - case 3904: + case 6204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1766); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3904); + if (lookahead == ',') ADVANCE(3673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6204); END_STATE(); - case 3905: + case 6205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1591); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3905); + if (lookahead == ',') ADVANCE(3482); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6205); END_STATE(); - case 3906: + case 6206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1656); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == ',') ADVANCE(3553); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6206); END_STATE(); - case 3907: + case 6207: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'e') ADVANCE(3908); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'e') ADVANCE(6208); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); END_STATE(); - case 3908: + case 6208: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'n') ADVANCE(3909); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'n') ADVANCE(6209); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); END_STATE(); - case 3909: + case 6209: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1617); - if (lookahead == 'v') ADVANCE(846); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + if (lookahead == ',') ADVANCE(3508); + if (lookahead == 'v') ADVANCE(2400); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); END_STATE(); - case 3910: + case 6210: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1617); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); + if (lookahead == ',') ADVANCE(3508); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6210); END_STATE(); - case 3911: + case 6211: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1620); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3911); + if (lookahead == ',') ADVANCE(3511); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6211); END_STATE(); - case 3912: + case 6212: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1677); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3912); + if (lookahead == ',') ADVANCE(3574); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6212); END_STATE(); - case 3913: + case 6213: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1597); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3913); + if (lookahead == ',') ADVANCE(3488); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6213); END_STATE(); - case 3914: + case 6214: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3916); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); + lookahead == 'i') ADVANCE(6216); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3915: + case 6215: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3917); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); + lookahead == 'i') ADVANCE(6217); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3916: + case 6216: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3915); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); + lookahead == 'n') ADVANCE(6215); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3917: + case 6217: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3918); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); + lookahead == 't') ADVANCE(6218); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3918: + case 6218: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); + if (lookahead == ',') ADVANCE(3670); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3919); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); + lookahead == 'y') ADVANCE(6219); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3919: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1763); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); - END_STATE(); - case 3920: + case 6219: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1674); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3920); + if (lookahead == ',') ADVANCE(3670); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6219); END_STATE(); - case 3921: + case 6220: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'e') ADVANCE(3922); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3571); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6220); END_STATE(); - case 3922: + case 6221: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'n') ADVANCE(3923); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'e') ADVANCE(6222); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 3923: + case 6222: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1635); - if (lookahead == 'v') ADVANCE(2457); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'n') ADVANCE(6223); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 3924: + case 6223: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1635); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(3526); + if (lookahead == 'v') ADVANCE(4364); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 3925: + case 6224: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1659); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); + if (lookahead == ',') ADVANCE(3526); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6224); END_STATE(); - case 3926: + case 6225: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1716); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3926); + if (lookahead == ',') ADVANCE(3556); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6225); END_STATE(); - case 3927: + case 6226: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1738); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3927); + if (lookahead == ',') ADVANCE(3623); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6226); END_STATE(); - case 3928: + case 6227: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1732); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3928); + if (lookahead == ',') ADVANCE(3645); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6227); END_STATE(); - case 3929: + case 6228: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1594); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3929); + if (lookahead == ',') ADVANCE(3639); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6228); END_STATE(); - case 3930: + case 6229: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1686); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(3485); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6229); END_STATE(); - case 3931: + case 6230: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1680); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); + if (lookahead == ',') ADVANCE(3583); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6230); END_STATE(); - case 3932: + case 6231: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1623); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); + if (lookahead == ',') ADVANCE(3577); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6231); END_STATE(); - case 3933: + case 6232: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); + if (lookahead == ',') ADVANCE(3514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6232); END_STATE(); - case 3934: + case 6233: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1735); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3934); + if (lookahead == ',') ADVANCE(3562); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6233); END_STATE(); - case 3935: + case 6234: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1683); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3935); + if (lookahead == ',') ADVANCE(3642); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6234); END_STATE(); - case 3936: + case 6235: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1662); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3936); + if (lookahead == ',') ADVANCE(3580); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6235); END_STATE(); - case 3937: + case 6236: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'e') ADVANCE(3938); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); + if (lookahead == ',') ADVANCE(3559); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6236); END_STATE(); - case 3938: + case 6237: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'n') ADVANCE(3939); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(6238); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6240); END_STATE(); - case 3939: + case 6238: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1728); - if (lookahead == 'v') ADVANCE(2278); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(6239); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6240); END_STATE(); - case 3940: + case 6239: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1728); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); + if (lookahead == ',') ADVANCE(3635); + if (lookahead == 'v') ADVANCE(4185); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6240); END_STATE(); - case 3941: + case 6240: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1602); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); + if (lookahead == ',') ADVANCE(3635); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6240); END_STATE(); - case 3942: + case 6241: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1605); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3942); + if (lookahead == ',') ADVANCE(3493); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6241); END_STATE(); - case 3943: + case 6242: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3943); + if (lookahead == ',') ADVANCE(3496); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6242); END_STATE(); - case 3944: + case 6243: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'e') ADVANCE(3945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3589); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6243); END_STATE(); - case 3945: + case 6244: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'n') ADVANCE(3946); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'e') ADVANCE(6245); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 3946: + case 6245: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1647); - if (lookahead == 'v') ADVANCE(2445); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'n') ADVANCE(6246); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 3947: + case 6246: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1647); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); + if (lookahead == ',') ADVANCE(3538); + if (lookahead == 'v') ADVANCE(4352); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 3948: + case 6247: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1650); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); + if (lookahead == ',') ADVANCE(3538); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6247); END_STATE(); - case 3949: + case 6248: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1689); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3949); + if (lookahead == ',') ADVANCE(3541); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6248); END_STATE(); - case 3950: + case 6249: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1653); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3950); + if (lookahead == ',') ADVANCE(3586); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6249); END_STATE(); - case 3951: + case 6250: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1599); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(3544); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6250); END_STATE(); - case 3952: + case 6251: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3959); - if (lookahead == '_') ADVANCE(3952); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == ',') ADVANCE(3490); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6251); END_STATE(); - case 3953: + case 6252: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3960); - if (lookahead == '_') ADVANCE(3953); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + if (lookahead == '.') ADVANCE(6259); + if (lookahead == '_') ADVANCE(6252); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3954: + case 6253: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3955); - if (lookahead == '_') ADVANCE(3962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '.') ADVANCE(6260); + if (lookahead == '_') ADVANCE(6253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6260); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 3955: + case 6254: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3888); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '.') ADVANCE(6255); + if (lookahead == '_') ADVANCE(6262); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6261); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3956: + case 6255: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4053); - if (lookahead == 'f') ADVANCE(2399); - if (lookahead == 'n') ADVANCE(2373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '.') ADVANCE(6188); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3957: + case 6256: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3959); - if (lookahead == 'b') ADVANCE(4058); - if (lookahead == 'o') ADVANCE(4059); - if (lookahead == 'x') ADVANCE(4060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'N') ADVANCE(6353); + if (lookahead == 'f') ADVANCE(4306); + if (lookahead == 'n') ADVANCE(4280); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3958: + case 6257: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '_') ADVANCE(6259); + if (lookahead == 'b') ADVANCE(6358); + if (lookahead == 'o') ADVANCE(6359); + if (lookahead == 'x') ADVANCE(6360); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); + END_STATE(); + case 6258: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3959); + if (lookahead == '_') ADVANCE(6259); if (lookahead == '+' || - lookahead == '-') ADVANCE(3959); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == '-') ADVANCE(6259); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3959: + case 6259: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3959); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '_') ADVANCE(6259); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3960: + case 6260: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + if (lookahead == '_') ADVANCE(6260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6260); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 3961: + case 6261: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3961); + if (lookahead == '_') ADVANCE(6261); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3958); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'e') ADVANCE(6258); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6261); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3962: + case 6262: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == '_') ADVANCE(6262); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(6261); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3963: + case 6263: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4038); - if (lookahead == 'o') ADVANCE(4011); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6338); + if (lookahead == 'o') ADVANCE(6311); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3964: + case 6264: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4022); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6310); + if (lookahead == 'o') ADVANCE(6322); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3965: + case 6265: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4002); - if (lookahead == 'o') ADVANCE(3972); - if (lookahead == 'u') ADVANCE(4040); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6302); + if (lookahead == 'o') ADVANCE(6272); + if (lookahead == 'u') ADVANCE(6340); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3966: + case 6266: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4001); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6301); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3967: + case 6267: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6351); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3968: + case 6268: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4032); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'a') ADVANCE(6332); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3969: + case 6269: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(3993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'c') ADVANCE(6293); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3970: + case 6270: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(3994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'c') ADVANCE(6294); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3971: + case 6271: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(3982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'c') ADVANCE(6282); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3972: + case 6272: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4049); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'd') ADVANCE(6349); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3973: + case 6273: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(3978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'd') ADVANCE(6278); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3974: + case 6274: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3991); - if (lookahead == 'o') ADVANCE(2394); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6291); + if (lookahead == 'o') ADVANCE(4301); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3975: + case 6275: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3992); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6292); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3976: + case 6276: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2292); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4199); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3977: + case 6277: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2405); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4312); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3978: + case 6278: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2453); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4360); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3979: + case 6279: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2385); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4292); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3980: + case 6280: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2389); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4296); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3981: + case 6281: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2287); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4194); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3982: + case 6282: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2442); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4349); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3983: + case 6283: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(4270); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3984: + case 6284: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4039); - if (lookahead == 'o') ADVANCE(4016); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6339); + if (lookahead == 'o') ADVANCE(6316); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3985: + case 6285: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6266); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3986: + case 6286: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4031); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6331); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3987: + case 6287: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4028); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6328); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3988: + case 6288: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6324); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3989: + case 6289: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3928); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6228); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3990: + case 6290: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3934); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'e') ADVANCE(6234); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3991: + case 6291: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2274); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'f') ADVANCE(4181); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3992: + case 6292: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(3999); - if (lookahead == 't') ADVANCE(4047); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'g') ADVANCE(6299); + if (lookahead == 't') ADVANCE(6347); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3993: + case 6293: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(2433); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'h') ADVANCE(4340); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3994: + case 6294: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(2410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'h') ADVANCE(4317); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3995: + case 6295: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'h') ADVANCE(6300); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3996: + case 6296: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(3973); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'i') ADVANCE(6273); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3997: + case 6297: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(3968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'i') ADVANCE(6268); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3998: + case 6298: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4014); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'i') ADVANCE(6314); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 3999: + case 6299: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'i') ADVANCE(6336); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4000: + case 6300: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'i') ADVANCE(6306); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4001: + case 6301: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(2359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'k') ADVANCE(4266); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4002: + case 6302: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3979); - if (lookahead == 't') ADVANCE(3970); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'k') ADVANCE(6279); + if (lookahead == 't') ADVANCE(6270); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4003: + case 6303: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3997); - if (lookahead == 's') ADVANCE(2465); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6297); + if (lookahead == 's') ADVANCE(4372); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4004: + case 6304: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4008); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6308); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4005: + case 6305: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3967); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6267); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4006: + case 6306: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3980); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6280); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4007: + case 6307: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6281); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4008: + case 6308: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3927); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6227); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4009: + case 6309: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4035); - if (lookahead == 'r') ADVANCE(4027); - if (lookahead == 'x') ADVANCE(4020); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6335); + if (lookahead == 'r') ADVANCE(6327); + if (lookahead == 'x') ADVANCE(6320); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4010: + case 6310: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4037); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'l') ADVANCE(6337); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4011: + case 6311: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4034); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'n') ADVANCE(6334); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4012: + case 6312: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2282); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'n') ADVANCE(4189); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4013: + case 6313: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2437); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'n') ADVANCE(4344); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4014: + case 6314: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'n') ADVANCE(6348); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4015: + case 6315: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'o') ADVANCE(6345); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4016: + case 6316: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4019); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'o') ADVANCE(6319); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4017: + case 6317: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4023); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'o') ADVANCE(6323); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4018: + case 6318: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'o') ADVANCE(6330); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4019: + case 6319: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(2380); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'p') ADVANCE(4287); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4020: + case 6320: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4018); - if (lookahead == 't') ADVANCE(3987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'p') ADVANCE(6318); + if (lookahead == 't') ADVANCE(6287); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4021: + case 6321: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4046); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6346); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4022: + case 6322: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2367); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(4274); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4023: + case 6323: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2313); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(4221); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4024: + case 6324: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2448); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(4355); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4025: + case 6325: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3985); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6285); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4026: + case 6326: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6271); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4027: + case 6327: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4017); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6317); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4028: + case 6328: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6312); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4029: + case 6329: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4013); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6313); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4030: + case 6330: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6342); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4031: + case 6331: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4005); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'r') ADVANCE(6305); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4032: + case 6332: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(835); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(2389); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4033: + case 6333: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(3976); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(6276); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4034: + case 6334: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4041); - if (lookahead == 't') ADVANCE(3998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(6341); + if (lookahead == 't') ADVANCE(6298); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4035: + case 6335: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(3977); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(6277); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4036: + case 6336: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(6343); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4037: + case 6337: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(3990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 's') ADVANCE(6290); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4038: + case 6338: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(3969); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(6269); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4039: + case 6339: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(843); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(2397); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4040: + case 6340: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(849); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(2403); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4041: + case 6341: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(854); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(2408); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4042: + case 6342: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(831); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(2385); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4043: + case 6343: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(3988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 't') ADVANCE(6288); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4044: + case 6344: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4004); + if (lookahead == 'u') ADVANCE(6304); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'a') ADVANCE(6357); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4045: + case 6345: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4026); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'u') ADVANCE(6326); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4046: + case 6346: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(3989); - if (lookahead == 'y') ADVANCE(2428); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'u') ADVANCE(6289); + if (lookahead == 'y') ADVANCE(4335); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4047: + case 6347: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4029); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'u') ADVANCE(6329); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4048: + case 6348: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(3983); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'u') ADVANCE(6283); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4049: + case 6349: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4007); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'u') ADVANCE(6307); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4050: + case 6350: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(3986); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'v') ADVANCE(6286); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4051: + case 6351: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(2460); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (lookahead == 'y') ADVANCE(4367); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4052: + case 6352: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'a') ADVANCE(6357); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4053: + case 6353: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'f') ADVANCE(6198); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4054: + case 6354: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3914); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + lookahead == 'f') ADVANCE(6214); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 4055: + case 6355: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4053); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'n') ADVANCE(6353); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4056: + case 6356: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4054); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + lookahead == 'n') ADVANCE(6354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 4057: + case 6357: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == 'n') ADVANCE(6204); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4058: + case 6358: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4058); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == '_') ADVANCE(6358); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4059: + case 6359: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4059); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + lookahead == '_') ADVANCE(6359); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4060: + case 6360: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4060); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6360); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4061: + case 6361: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(6362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6361); END_STATE(); - case 4062: + case 6362: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 4063: + case 6363: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4079); + if (lookahead == '#') ADVANCE(6379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4064); + lookahead != '|') ADVANCE(6364); END_STATE(); - case 4064: + case 6364: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -53905,20 +65428,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4064); + lookahead != '|') ADVANCE(6364); END_STATE(); - case 4065: + case 6365: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4077); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); + if (lookahead == '#') ADVANCE(6377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(6366); END_STATE(); - case 4066: + case 6366: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(6366); END_STATE(); - case 4067: + case 6367: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4076); + if (lookahead == '#') ADVANCE(6376); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -53927,9 +65450,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); + (lookahead < '{' || '}' < lookahead)) ADVANCE(6368); END_STATE(); - case 4068: + case 6368: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -53939,38 +65462,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); + (lookahead < '{' || '}' < lookahead)) ADVANCE(6368); END_STATE(); - case 4069: + case 6369: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 4070: + case 6370: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(827); - if (lookahead == '\r') ADVANCE(829); - if (lookahead != 0) ADVANCE(829); + if (lookahead == '\n') ADVANCE(2381); + if (lookahead == '\r') ADVANCE(2383); + if (lookahead != 0) ADVANCE(2383); END_STATE(); - case 4071: + case 6371: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(826); + if (lookahead == '!') ADVANCE(2380); END_STATE(); - case 4072: + case 6372: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(6362); END_STATE(); - case 4073: + case 6373: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4719); END_STATE(); - case 4074: + case 6374: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(6091); END_STATE(); - case 4075: + case 6375: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5805); END_STATE(); - case 4076: + case 6376: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -53980,13 +65503,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); + (lookahead < '{' || '}' < lookahead)) ADVANCE(6368); END_STATE(); - case 4077: + case 6377: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(6366); END_STATE(); - case 4078: + case 6378: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -53994,9 +65517,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5250); END_STATE(); - case 4079: + case 6379: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54004,26 +65527,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4064); + lookahead != '|') ADVANCE(6364); END_STATE(); - case 4080: + case 6380: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4082); + lookahead != '\n') ADVANCE(6382); END_STATE(); - case 4081: + case 6381: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4080); + if (lookahead == '#') ADVANCE(6380); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4081); + lookahead == ' ') ADVANCE(6381); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(4082); + lookahead != '\n') ADVANCE(6382); END_STATE(); - case 4082: + case 6382: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4082); + lookahead != '\n') ADVANCE(6382); END_STATE(); default: return false; @@ -54552,8180 +66075,8181 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 722, .external_lex_state = 2}, - [2] = {.lex_state = 744, .external_lex_state = 2}, - [3] = {.lex_state = 744, .external_lex_state = 2}, - [4] = {.lex_state = 744, .external_lex_state = 2}, - [5] = {.lex_state = 744, .external_lex_state = 2}, - [6] = {.lex_state = 744, .external_lex_state = 2}, - [7] = {.lex_state = 744, .external_lex_state = 2}, - [8] = {.lex_state = 744, .external_lex_state = 2}, - [9] = {.lex_state = 744, .external_lex_state = 2}, - [10] = {.lex_state = 744, .external_lex_state = 2}, - [11] = {.lex_state = 744, .external_lex_state = 2}, - [12] = {.lex_state = 744, .external_lex_state = 2}, - [13] = {.lex_state = 744, .external_lex_state = 2}, - [14] = {.lex_state = 744, .external_lex_state = 2}, - [15] = {.lex_state = 744, .external_lex_state = 2}, - [16] = {.lex_state = 744, .external_lex_state = 2}, - [17] = {.lex_state = 744, .external_lex_state = 2}, - [18] = {.lex_state = 744, .external_lex_state = 2}, - [19] = {.lex_state = 744, .external_lex_state = 2}, - [20] = {.lex_state = 744, .external_lex_state = 2}, - [21] = {.lex_state = 744, .external_lex_state = 2}, - [22] = {.lex_state = 744, .external_lex_state = 2}, - [23] = {.lex_state = 744, .external_lex_state = 2}, - [24] = {.lex_state = 744, .external_lex_state = 2}, - [25] = {.lex_state = 744, .external_lex_state = 2}, - [26] = {.lex_state = 744, .external_lex_state = 2}, - [27] = {.lex_state = 744, .external_lex_state = 2}, - [28] = {.lex_state = 744, .external_lex_state = 2}, - [29] = {.lex_state = 744, .external_lex_state = 2}, - [30] = {.lex_state = 744, .external_lex_state = 2}, - [31] = {.lex_state = 744, .external_lex_state = 2}, - [32] = {.lex_state = 744, .external_lex_state = 2}, - [33] = {.lex_state = 744, .external_lex_state = 2}, - [34] = {.lex_state = 744, .external_lex_state = 2}, - [35] = {.lex_state = 744, .external_lex_state = 2}, - [36] = {.lex_state = 744, .external_lex_state = 2}, - [37] = {.lex_state = 740, .external_lex_state = 2}, - [38] = {.lex_state = 740, .external_lex_state = 2}, - [39] = {.lex_state = 740, .external_lex_state = 2}, - [40] = {.lex_state = 740, .external_lex_state = 2}, - [41] = {.lex_state = 740, .external_lex_state = 2}, - [42] = {.lex_state = 740, .external_lex_state = 2}, - [43] = {.lex_state = 740, .external_lex_state = 2}, - [44] = {.lex_state = 740, .external_lex_state = 2}, - [45] = {.lex_state = 740, .external_lex_state = 2}, - [46] = {.lex_state = 740, .external_lex_state = 2}, - [47] = {.lex_state = 740, .external_lex_state = 2}, - [48] = {.lex_state = 740, .external_lex_state = 2}, - [49] = {.lex_state = 740, .external_lex_state = 2}, - [50] = {.lex_state = 740, .external_lex_state = 2}, - [51] = {.lex_state = 740, .external_lex_state = 2}, - [52] = {.lex_state = 740, .external_lex_state = 2}, - [53] = {.lex_state = 740, .external_lex_state = 2}, - [54] = {.lex_state = 740, .external_lex_state = 2}, - [55] = {.lex_state = 740, .external_lex_state = 2}, - [56] = {.lex_state = 740, .external_lex_state = 2}, - [57] = {.lex_state = 740, .external_lex_state = 2}, - [58] = {.lex_state = 740, .external_lex_state = 2}, - [59] = {.lex_state = 740, .external_lex_state = 2}, - [60] = {.lex_state = 740, .external_lex_state = 2}, - [61] = {.lex_state = 740, .external_lex_state = 2}, - [62] = {.lex_state = 740, .external_lex_state = 2}, - [63] = {.lex_state = 740, .external_lex_state = 2}, - [64] = {.lex_state = 740, .external_lex_state = 2}, - [65] = {.lex_state = 740, .external_lex_state = 2}, - [66] = {.lex_state = 740, .external_lex_state = 2}, - [67] = {.lex_state = 38, .external_lex_state = 2}, - [68] = {.lex_state = 38, .external_lex_state = 2}, - [69] = {.lex_state = 38, .external_lex_state = 2}, - [70] = {.lex_state = 38, .external_lex_state = 2}, - [71] = {.lex_state = 38, .external_lex_state = 2}, - [72] = {.lex_state = 38, .external_lex_state = 2}, - [73] = {.lex_state = 38, .external_lex_state = 2}, - [74] = {.lex_state = 38, .external_lex_state = 2}, - [75] = {.lex_state = 38, .external_lex_state = 2}, - [76] = {.lex_state = 38, .external_lex_state = 2}, - [77] = {.lex_state = 38, .external_lex_state = 2}, - [78] = {.lex_state = 38, .external_lex_state = 2}, - [79] = {.lex_state = 38, .external_lex_state = 2}, - [80] = {.lex_state = 740, .external_lex_state = 2}, - [81] = {.lex_state = 740, .external_lex_state = 2}, - [82] = {.lex_state = 38, .external_lex_state = 2}, - [83] = {.lex_state = 38, .external_lex_state = 2}, - [84] = {.lex_state = 38, .external_lex_state = 2}, - [85] = {.lex_state = 38, .external_lex_state = 2}, - [86] = {.lex_state = 38, .external_lex_state = 2}, - [87] = {.lex_state = 38, .external_lex_state = 2}, - [88] = {.lex_state = 38, .external_lex_state = 2}, - [89] = {.lex_state = 38, .external_lex_state = 2}, - [90] = {.lex_state = 38, .external_lex_state = 2}, - [91] = {.lex_state = 38, .external_lex_state = 2}, - [92] = {.lex_state = 38, .external_lex_state = 2}, - [93] = {.lex_state = 740, .external_lex_state = 2}, - [94] = {.lex_state = 38, .external_lex_state = 2}, - [95] = {.lex_state = 38, .external_lex_state = 2}, - [96] = {.lex_state = 38, .external_lex_state = 2}, - [97] = {.lex_state = 38, .external_lex_state = 2}, - [98] = {.lex_state = 38, .external_lex_state = 2}, - [99] = {.lex_state = 38, .external_lex_state = 2}, - [100] = {.lex_state = 38, .external_lex_state = 2}, - [101] = {.lex_state = 38, .external_lex_state = 2}, - [102] = {.lex_state = 38, .external_lex_state = 2}, - [103] = {.lex_state = 38, .external_lex_state = 2}, - [104] = {.lex_state = 38, .external_lex_state = 2}, - [105] = {.lex_state = 740, .external_lex_state = 2}, - [106] = {.lex_state = 740, .external_lex_state = 2}, - [107] = {.lex_state = 740, .external_lex_state = 2}, - [108] = {.lex_state = 740, .external_lex_state = 2}, - [109] = {.lex_state = 740, .external_lex_state = 2}, - [110] = {.lex_state = 740, .external_lex_state = 2}, - [111] = {.lex_state = 740, .external_lex_state = 2}, - [112] = {.lex_state = 740, .external_lex_state = 2}, - [113] = {.lex_state = 740, .external_lex_state = 2}, - [114] = {.lex_state = 740, .external_lex_state = 2}, - [115] = {.lex_state = 740, .external_lex_state = 2}, - [116] = {.lex_state = 740, .external_lex_state = 2}, - [117] = {.lex_state = 740, .external_lex_state = 2}, - [118] = {.lex_state = 740, .external_lex_state = 2}, - [119] = {.lex_state = 740, .external_lex_state = 2}, - [120] = {.lex_state = 740, .external_lex_state = 2}, - [121] = {.lex_state = 740, .external_lex_state = 2}, - [122] = {.lex_state = 740, .external_lex_state = 2}, - [123] = {.lex_state = 740, .external_lex_state = 2}, - [124] = {.lex_state = 740, .external_lex_state = 2}, - [125] = {.lex_state = 740, .external_lex_state = 2}, - [126] = {.lex_state = 740, .external_lex_state = 2}, - [127] = {.lex_state = 38, .external_lex_state = 2}, - [128] = {.lex_state = 740, .external_lex_state = 2}, - [129] = {.lex_state = 740, .external_lex_state = 2}, - [130] = {.lex_state = 740, .external_lex_state = 2}, - [131] = {.lex_state = 740, .external_lex_state = 2}, - [132] = {.lex_state = 740, .external_lex_state = 2}, - [133] = {.lex_state = 38, .external_lex_state = 2}, - [134] = {.lex_state = 740, .external_lex_state = 2}, - [135] = {.lex_state = 740, .external_lex_state = 2}, - [136] = {.lex_state = 740, .external_lex_state = 2}, - [137] = {.lex_state = 740, .external_lex_state = 2}, - [138] = {.lex_state = 740, .external_lex_state = 2}, - [139] = {.lex_state = 740, .external_lex_state = 2}, - [140] = {.lex_state = 740, .external_lex_state = 2}, - [141] = {.lex_state = 740, .external_lex_state = 2}, - [142] = {.lex_state = 740, .external_lex_state = 2}, - [143] = {.lex_state = 740, .external_lex_state = 2}, - [144] = {.lex_state = 740, .external_lex_state = 2}, - [145] = {.lex_state = 740, .external_lex_state = 2}, - [146] = {.lex_state = 740, .external_lex_state = 2}, - [147] = {.lex_state = 740, .external_lex_state = 2}, - [148] = {.lex_state = 740, .external_lex_state = 2}, - [149] = {.lex_state = 740, .external_lex_state = 2}, - [150] = {.lex_state = 740, .external_lex_state = 2}, - [151] = {.lex_state = 740, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 2, .external_lex_state = 2}, - [155] = {.lex_state = 1, .external_lex_state = 2}, - [156] = {.lex_state = 1, .external_lex_state = 2}, - [157] = {.lex_state = 1, .external_lex_state = 2}, - [158] = {.lex_state = 1, .external_lex_state = 2}, - [159] = {.lex_state = 1, .external_lex_state = 2}, - [160] = {.lex_state = 1, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 2}, - [162] = {.lex_state = 2, .external_lex_state = 2}, - [163] = {.lex_state = 2, .external_lex_state = 2}, - [164] = {.lex_state = 6, .external_lex_state = 2}, - [165] = {.lex_state = 6, .external_lex_state = 2}, - [166] = {.lex_state = 227, .external_lex_state = 2}, - [167] = {.lex_state = 227, .external_lex_state = 2}, - [168] = {.lex_state = 227, .external_lex_state = 2}, - [169] = {.lex_state = 227, .external_lex_state = 2}, - [170] = {.lex_state = 227, .external_lex_state = 2}, - [171] = {.lex_state = 227, .external_lex_state = 2}, - [172] = {.lex_state = 227, .external_lex_state = 2}, - [173] = {.lex_state = 227, .external_lex_state = 2}, - [174] = {.lex_state = 227, .external_lex_state = 2}, - [175] = {.lex_state = 227, .external_lex_state = 2}, - [176] = {.lex_state = 227, .external_lex_state = 2}, - [177] = {.lex_state = 227, .external_lex_state = 2}, - [178] = {.lex_state = 227, .external_lex_state = 2}, - [179] = {.lex_state = 227, .external_lex_state = 2}, - [180] = {.lex_state = 227, .external_lex_state = 2}, - [181] = {.lex_state = 227, .external_lex_state = 2}, - [182] = {.lex_state = 227, .external_lex_state = 2}, - [183] = {.lex_state = 227, .external_lex_state = 2}, - [184] = {.lex_state = 227, .external_lex_state = 2}, - [185] = {.lex_state = 227, .external_lex_state = 2}, - [186] = {.lex_state = 227, .external_lex_state = 2}, - [187] = {.lex_state = 227, .external_lex_state = 2}, - [188] = {.lex_state = 227, .external_lex_state = 2}, - [189] = {.lex_state = 227, .external_lex_state = 2}, - [190] = {.lex_state = 227, .external_lex_state = 2}, - [191] = {.lex_state = 227, .external_lex_state = 2}, - [192] = {.lex_state = 227, .external_lex_state = 2}, - [193] = {.lex_state = 227, .external_lex_state = 2}, - [194] = {.lex_state = 227, .external_lex_state = 2}, - [195] = {.lex_state = 227, .external_lex_state = 2}, - [196] = {.lex_state = 227, .external_lex_state = 2}, - [197] = {.lex_state = 227, .external_lex_state = 2}, - [198] = {.lex_state = 227, .external_lex_state = 2}, - [199] = {.lex_state = 227, .external_lex_state = 2}, - [200] = {.lex_state = 227, .external_lex_state = 2}, - [201] = {.lex_state = 227, .external_lex_state = 2}, - [202] = {.lex_state = 227, .external_lex_state = 2}, - [203] = {.lex_state = 227, .external_lex_state = 2}, - [204] = {.lex_state = 744, .external_lex_state = 2}, - [205] = {.lex_state = 744, .external_lex_state = 2}, - [206] = {.lex_state = 744, .external_lex_state = 2}, - [207] = {.lex_state = 37, .external_lex_state = 2}, - [208] = {.lex_state = 37, .external_lex_state = 2}, - [209] = {.lex_state = 37, .external_lex_state = 2}, - [210] = {.lex_state = 37, .external_lex_state = 2}, - [211] = {.lex_state = 37, .external_lex_state = 2}, - [212] = {.lex_state = 37, .external_lex_state = 2}, - [213] = {.lex_state = 37, .external_lex_state = 2}, - [214] = {.lex_state = 37, .external_lex_state = 2}, - [215] = {.lex_state = 37, .external_lex_state = 2}, - [216] = {.lex_state = 37, .external_lex_state = 2}, - [217] = {.lex_state = 37, .external_lex_state = 2}, - [218] = {.lex_state = 37, .external_lex_state = 2}, - [219] = {.lex_state = 37, .external_lex_state = 2}, - [220] = {.lex_state = 37, .external_lex_state = 2}, - [221] = {.lex_state = 38, .external_lex_state = 2}, - [222] = {.lex_state = 38, .external_lex_state = 2}, - [223] = {.lex_state = 38, .external_lex_state = 2}, - [224] = {.lex_state = 38, .external_lex_state = 2}, - [225] = {.lex_state = 41, .external_lex_state = 2}, - [226] = {.lex_state = 38, .external_lex_state = 2}, - [227] = {.lex_state = 740, .external_lex_state = 2}, - [228] = {.lex_state = 740, .external_lex_state = 2}, - [229] = {.lex_state = 41, .external_lex_state = 2}, - [230] = {.lex_state = 41, .external_lex_state = 2}, - [231] = {.lex_state = 41, .external_lex_state = 2}, - [232] = {.lex_state = 41, .external_lex_state = 2}, - [233] = {.lex_state = 41, .external_lex_state = 2}, - [234] = {.lex_state = 41, .external_lex_state = 2}, - [235] = {.lex_state = 41, .external_lex_state = 2}, - [236] = {.lex_state = 41, .external_lex_state = 2}, - [237] = {.lex_state = 41, .external_lex_state = 2}, - [238] = {.lex_state = 41, .external_lex_state = 2}, - [239] = {.lex_state = 41, .external_lex_state = 2}, - [240] = {.lex_state = 41, .external_lex_state = 2}, - [241] = {.lex_state = 41, .external_lex_state = 2}, - [242] = {.lex_state = 41, .external_lex_state = 2}, - [243] = {.lex_state = 41, .external_lex_state = 2}, - [244] = {.lex_state = 41, .external_lex_state = 2}, - [245] = {.lex_state = 41, .external_lex_state = 2}, - [246] = {.lex_state = 41, .external_lex_state = 2}, - [247] = {.lex_state = 41, .external_lex_state = 2}, - [248] = {.lex_state = 41, .external_lex_state = 2}, - [249] = {.lex_state = 41, .external_lex_state = 2}, - [250] = {.lex_state = 41, .external_lex_state = 2}, - [251] = {.lex_state = 41, .external_lex_state = 2}, - [252] = {.lex_state = 740, .external_lex_state = 2}, - [253] = {.lex_state = 41, .external_lex_state = 2}, - [254] = {.lex_state = 41, .external_lex_state = 2}, - [255] = {.lex_state = 41, .external_lex_state = 2}, - [256] = {.lex_state = 41, .external_lex_state = 2}, - [257] = {.lex_state = 41, .external_lex_state = 2}, - [258] = {.lex_state = 41, .external_lex_state = 2}, - [259] = {.lex_state = 41, .external_lex_state = 2}, - [260] = {.lex_state = 41, .external_lex_state = 2}, - [261] = {.lex_state = 41, .external_lex_state = 2}, - [262] = {.lex_state = 41, .external_lex_state = 2}, - [263] = {.lex_state = 41, .external_lex_state = 2}, - [264] = {.lex_state = 41, .external_lex_state = 2}, - [265] = {.lex_state = 41, .external_lex_state = 2}, - [266] = {.lex_state = 41, .external_lex_state = 2}, - [267] = {.lex_state = 41, .external_lex_state = 2}, - [268] = {.lex_state = 41, .external_lex_state = 2}, - [269] = {.lex_state = 41, .external_lex_state = 2}, - [270] = {.lex_state = 41, .external_lex_state = 2}, - [271] = {.lex_state = 41, .external_lex_state = 2}, - [272] = {.lex_state = 41, .external_lex_state = 2}, - [273] = {.lex_state = 41, .external_lex_state = 2}, - [274] = {.lex_state = 41, .external_lex_state = 2}, - [275] = {.lex_state = 41, .external_lex_state = 2}, - [276] = {.lex_state = 722, .external_lex_state = 2}, - [277] = {.lex_state = 740, .external_lex_state = 2}, - [278] = {.lex_state = 740, .external_lex_state = 2}, - [279] = {.lex_state = 740, .external_lex_state = 2}, - [280] = {.lex_state = 740, .external_lex_state = 2}, - [281] = {.lex_state = 41, .external_lex_state = 2}, - [282] = {.lex_state = 740, .external_lex_state = 2}, - [283] = {.lex_state = 41, .external_lex_state = 2}, - [284] = {.lex_state = 41, .external_lex_state = 2}, - [285] = {.lex_state = 41, .external_lex_state = 2}, - [286] = {.lex_state = 41, .external_lex_state = 2}, - [287] = {.lex_state = 41, .external_lex_state = 2}, - [288] = {.lex_state = 41, .external_lex_state = 2}, - [289] = {.lex_state = 41, .external_lex_state = 2}, - [290] = {.lex_state = 41, .external_lex_state = 2}, - [291] = {.lex_state = 41, .external_lex_state = 2}, - [292] = {.lex_state = 41, .external_lex_state = 2}, - [293] = {.lex_state = 41, .external_lex_state = 2}, - [294] = {.lex_state = 41, .external_lex_state = 2}, - [295] = {.lex_state = 41, .external_lex_state = 2}, - [296] = {.lex_state = 41, .external_lex_state = 2}, - [297] = {.lex_state = 41, .external_lex_state = 2}, - [298] = {.lex_state = 41, .external_lex_state = 2}, - [299] = {.lex_state = 41, .external_lex_state = 2}, - [300] = {.lex_state = 41, .external_lex_state = 2}, - [301] = {.lex_state = 41, .external_lex_state = 2}, - [302] = {.lex_state = 41, .external_lex_state = 2}, - [303] = {.lex_state = 41, .external_lex_state = 2}, - [304] = {.lex_state = 41, .external_lex_state = 2}, - [305] = {.lex_state = 41, .external_lex_state = 2}, - [306] = {.lex_state = 41, .external_lex_state = 2}, - [307] = {.lex_state = 740, .external_lex_state = 2}, - [308] = {.lex_state = 740, .external_lex_state = 2}, - [309] = {.lex_state = 740, .external_lex_state = 2}, - [310] = {.lex_state = 740, .external_lex_state = 2}, - [311] = {.lex_state = 740, .external_lex_state = 2}, - [312] = {.lex_state = 38, .external_lex_state = 2}, - [313] = {.lex_state = 146, .external_lex_state = 2}, - [314] = {.lex_state = 740, .external_lex_state = 2}, - [315] = {.lex_state = 41, .external_lex_state = 2}, - [316] = {.lex_state = 228, .external_lex_state = 2}, - [317] = {.lex_state = 123, .external_lex_state = 2}, - [318] = {.lex_state = 740, .external_lex_state = 2}, - [319] = {.lex_state = 125, .external_lex_state = 2}, - [320] = {.lex_state = 146, .external_lex_state = 2}, - [321] = {.lex_state = 41, .external_lex_state = 2}, - [322] = {.lex_state = 228, .external_lex_state = 2}, - [323] = {.lex_state = 228, .external_lex_state = 2}, - [324] = {.lex_state = 41, .external_lex_state = 2}, - [325] = {.lex_state = 228, .external_lex_state = 2}, - [326] = {.lex_state = 144, .external_lex_state = 2}, - [327] = {.lex_state = 228, .external_lex_state = 2}, - [328] = {.lex_state = 740, .external_lex_state = 2}, - [329] = {.lex_state = 228, .external_lex_state = 2}, - [330] = {.lex_state = 228, .external_lex_state = 2}, - [331] = {.lex_state = 41, .external_lex_state = 2}, - [332] = {.lex_state = 740, .external_lex_state = 2}, - [333] = {.lex_state = 228, .external_lex_state = 2}, - [334] = {.lex_state = 41, .external_lex_state = 2}, - [335] = {.lex_state = 147, .external_lex_state = 2}, - [336] = {.lex_state = 147, .external_lex_state = 2}, - [337] = {.lex_state = 740, .external_lex_state = 2}, - [338] = {.lex_state = 740, .external_lex_state = 2}, - [339] = {.lex_state = 147, .external_lex_state = 2}, - [340] = {.lex_state = 147, .external_lex_state = 2}, - [341] = {.lex_state = 147, .external_lex_state = 2}, - [342] = {.lex_state = 127, .external_lex_state = 2}, - [343] = {.lex_state = 147, .external_lex_state = 2}, - [344] = {.lex_state = 113, .external_lex_state = 2}, - [345] = {.lex_state = 145, .external_lex_state = 2}, - [346] = {.lex_state = 127, .external_lex_state = 2}, - [347] = {.lex_state = 111, .external_lex_state = 2}, - [348] = {.lex_state = 128, .external_lex_state = 2}, - [349] = {.lex_state = 145, .external_lex_state = 2}, - [350] = {.lex_state = 144, .external_lex_state = 2}, - [351] = {.lex_state = 115, .external_lex_state = 2}, - [352] = {.lex_state = 156, .external_lex_state = 2}, - [353] = {.lex_state = 126, .external_lex_state = 2}, - [354] = {.lex_state = 156, .external_lex_state = 2}, - [355] = {.lex_state = 115, .external_lex_state = 2}, - [356] = {.lex_state = 128, .external_lex_state = 2}, + [1] = {.lex_state = 2276, .external_lex_state = 2}, + [2] = {.lex_state = 2298, .external_lex_state = 2}, + [3] = {.lex_state = 2298, .external_lex_state = 2}, + [4] = {.lex_state = 2298, .external_lex_state = 2}, + [5] = {.lex_state = 2298, .external_lex_state = 2}, + [6] = {.lex_state = 2298, .external_lex_state = 2}, + [7] = {.lex_state = 2298, .external_lex_state = 2}, + [8] = {.lex_state = 2298, .external_lex_state = 2}, + [9] = {.lex_state = 2298, .external_lex_state = 2}, + [10] = {.lex_state = 2298, .external_lex_state = 2}, + [11] = {.lex_state = 2298, .external_lex_state = 2}, + [12] = {.lex_state = 2298, .external_lex_state = 2}, + [13] = {.lex_state = 2298, .external_lex_state = 2}, + [14] = {.lex_state = 2298, .external_lex_state = 2}, + [15] = {.lex_state = 2298, .external_lex_state = 2}, + [16] = {.lex_state = 2298, .external_lex_state = 2}, + [17] = {.lex_state = 2298, .external_lex_state = 2}, + [18] = {.lex_state = 2298, .external_lex_state = 2}, + [19] = {.lex_state = 2298, .external_lex_state = 2}, + [20] = {.lex_state = 2298, .external_lex_state = 2}, + [21] = {.lex_state = 2298, .external_lex_state = 2}, + [22] = {.lex_state = 2298, .external_lex_state = 2}, + [23] = {.lex_state = 2298, .external_lex_state = 2}, + [24] = {.lex_state = 2298, .external_lex_state = 2}, + [25] = {.lex_state = 2298, .external_lex_state = 2}, + [26] = {.lex_state = 2298, .external_lex_state = 2}, + [27] = {.lex_state = 2298, .external_lex_state = 2}, + [28] = {.lex_state = 2298, .external_lex_state = 2}, + [29] = {.lex_state = 2298, .external_lex_state = 2}, + [30] = {.lex_state = 2298, .external_lex_state = 2}, + [31] = {.lex_state = 2298, .external_lex_state = 2}, + [32] = {.lex_state = 2298, .external_lex_state = 2}, + [33] = {.lex_state = 2298, .external_lex_state = 2}, + [34] = {.lex_state = 2298, .external_lex_state = 2}, + [35] = {.lex_state = 2298, .external_lex_state = 2}, + [36] = {.lex_state = 2298, .external_lex_state = 2}, + [37] = {.lex_state = 2294, .external_lex_state = 2}, + [38] = {.lex_state = 2294, .external_lex_state = 2}, + [39] = {.lex_state = 2294, .external_lex_state = 2}, + [40] = {.lex_state = 2294, .external_lex_state = 2}, + [41] = {.lex_state = 2294, .external_lex_state = 2}, + [42] = {.lex_state = 2294, .external_lex_state = 2}, + [43] = {.lex_state = 2294, .external_lex_state = 2}, + [44] = {.lex_state = 2294, .external_lex_state = 2}, + [45] = {.lex_state = 2294, .external_lex_state = 2}, + [46] = {.lex_state = 2294, .external_lex_state = 2}, + [47] = {.lex_state = 2294, .external_lex_state = 2}, + [48] = {.lex_state = 2294, .external_lex_state = 2}, + [49] = {.lex_state = 2294, .external_lex_state = 2}, + [50] = {.lex_state = 2294, .external_lex_state = 2}, + [51] = {.lex_state = 2294, .external_lex_state = 2}, + [52] = {.lex_state = 2294, .external_lex_state = 2}, + [53] = {.lex_state = 2294, .external_lex_state = 2}, + [54] = {.lex_state = 2294, .external_lex_state = 2}, + [55] = {.lex_state = 2294, .external_lex_state = 2}, + [56] = {.lex_state = 2294, .external_lex_state = 2}, + [57] = {.lex_state = 2294, .external_lex_state = 2}, + [58] = {.lex_state = 2294, .external_lex_state = 2}, + [59] = {.lex_state = 2294, .external_lex_state = 2}, + [60] = {.lex_state = 2294, .external_lex_state = 2}, + [61] = {.lex_state = 2294, .external_lex_state = 2}, + [62] = {.lex_state = 2294, .external_lex_state = 2}, + [63] = {.lex_state = 2294, .external_lex_state = 2}, + [64] = {.lex_state = 2294, .external_lex_state = 2}, + [65] = {.lex_state = 2294, .external_lex_state = 2}, + [66] = {.lex_state = 2294, .external_lex_state = 2}, + [67] = {.lex_state = 37, .external_lex_state = 2}, + [68] = {.lex_state = 2294, .external_lex_state = 2}, + [69] = {.lex_state = 37, .external_lex_state = 2}, + [70] = {.lex_state = 37, .external_lex_state = 2}, + [71] = {.lex_state = 37, .external_lex_state = 2}, + [72] = {.lex_state = 37, .external_lex_state = 2}, + [73] = {.lex_state = 37, .external_lex_state = 2}, + [74] = {.lex_state = 37, .external_lex_state = 2}, + [75] = {.lex_state = 37, .external_lex_state = 2}, + [76] = {.lex_state = 37, .external_lex_state = 2}, + [77] = {.lex_state = 37, .external_lex_state = 2}, + [78] = {.lex_state = 37, .external_lex_state = 2}, + [79] = {.lex_state = 37, .external_lex_state = 2}, + [80] = {.lex_state = 37, .external_lex_state = 2}, + [81] = {.lex_state = 37, .external_lex_state = 2}, + [82] = {.lex_state = 37, .external_lex_state = 2}, + [83] = {.lex_state = 37, .external_lex_state = 2}, + [84] = {.lex_state = 37, .external_lex_state = 2}, + [85] = {.lex_state = 37, .external_lex_state = 2}, + [86] = {.lex_state = 37, .external_lex_state = 2}, + [87] = {.lex_state = 37, .external_lex_state = 2}, + [88] = {.lex_state = 2294, .external_lex_state = 2}, + [89] = {.lex_state = 37, .external_lex_state = 2}, + [90] = {.lex_state = 37, .external_lex_state = 2}, + [91] = {.lex_state = 37, .external_lex_state = 2}, + [92] = {.lex_state = 37, .external_lex_state = 2}, + [93] = {.lex_state = 37, .external_lex_state = 2}, + [94] = {.lex_state = 37, .external_lex_state = 2}, + [95] = {.lex_state = 37, .external_lex_state = 2}, + [96] = {.lex_state = 37, .external_lex_state = 2}, + [97] = {.lex_state = 37, .external_lex_state = 2}, + [98] = {.lex_state = 37, .external_lex_state = 2}, + [99] = {.lex_state = 37, .external_lex_state = 2}, + [100] = {.lex_state = 37, .external_lex_state = 2}, + [101] = {.lex_state = 2294, .external_lex_state = 2}, + [102] = {.lex_state = 37, .external_lex_state = 2}, + [103] = {.lex_state = 37, .external_lex_state = 2}, + [104] = {.lex_state = 37, .external_lex_state = 2}, + [105] = {.lex_state = 2294, .external_lex_state = 2}, + [106] = {.lex_state = 2294, .external_lex_state = 2}, + [107] = {.lex_state = 37, .external_lex_state = 2}, + [108] = {.lex_state = 2294, .external_lex_state = 2}, + [109] = {.lex_state = 2294, .external_lex_state = 2}, + [110] = {.lex_state = 2294, .external_lex_state = 2}, + [111] = {.lex_state = 2294, .external_lex_state = 2}, + [112] = {.lex_state = 2294, .external_lex_state = 2}, + [113] = {.lex_state = 2294, .external_lex_state = 2}, + [114] = {.lex_state = 2294, .external_lex_state = 2}, + [115] = {.lex_state = 2294, .external_lex_state = 2}, + [116] = {.lex_state = 2294, .external_lex_state = 2}, + [117] = {.lex_state = 2294, .external_lex_state = 2}, + [118] = {.lex_state = 2294, .external_lex_state = 2}, + [119] = {.lex_state = 2294, .external_lex_state = 2}, + [120] = {.lex_state = 2294, .external_lex_state = 2}, + [121] = {.lex_state = 37, .external_lex_state = 2}, + [122] = {.lex_state = 2294, .external_lex_state = 2}, + [123] = {.lex_state = 2294, .external_lex_state = 2}, + [124] = {.lex_state = 2294, .external_lex_state = 2}, + [125] = {.lex_state = 2294, .external_lex_state = 2}, + [126] = {.lex_state = 2294, .external_lex_state = 2}, + [127] = {.lex_state = 2294, .external_lex_state = 2}, + [128] = {.lex_state = 2294, .external_lex_state = 2}, + [129] = {.lex_state = 2294, .external_lex_state = 2}, + [130] = {.lex_state = 2294, .external_lex_state = 2}, + [131] = {.lex_state = 2294, .external_lex_state = 2}, + [132] = {.lex_state = 2294, .external_lex_state = 2}, + [133] = {.lex_state = 2294, .external_lex_state = 2}, + [134] = {.lex_state = 2294, .external_lex_state = 2}, + [135] = {.lex_state = 2294, .external_lex_state = 2}, + [136] = {.lex_state = 2294, .external_lex_state = 2}, + [137] = {.lex_state = 2294, .external_lex_state = 2}, + [138] = {.lex_state = 2294, .external_lex_state = 2}, + [139] = {.lex_state = 2294, .external_lex_state = 2}, + [140] = {.lex_state = 2294, .external_lex_state = 2}, + [141] = {.lex_state = 2294, .external_lex_state = 2}, + [142] = {.lex_state = 2294, .external_lex_state = 2}, + [143] = {.lex_state = 2294, .external_lex_state = 2}, + [144] = {.lex_state = 2294, .external_lex_state = 2}, + [145] = {.lex_state = 2294, .external_lex_state = 2}, + [146] = {.lex_state = 2294, .external_lex_state = 2}, + [147] = {.lex_state = 2294, .external_lex_state = 2}, + [148] = {.lex_state = 2294, .external_lex_state = 2}, + [149] = {.lex_state = 2294, .external_lex_state = 2}, + [150] = {.lex_state = 2294, .external_lex_state = 2}, + [151] = {.lex_state = 2294, .external_lex_state = 2}, + [152] = {.lex_state = 226, .external_lex_state = 2}, + [153] = {.lex_state = 226, .external_lex_state = 2}, + [154] = {.lex_state = 226, .external_lex_state = 2}, + [155] = {.lex_state = 226, .external_lex_state = 2}, + [156] = {.lex_state = 226, .external_lex_state = 2}, + [157] = {.lex_state = 226, .external_lex_state = 2}, + [158] = {.lex_state = 226, .external_lex_state = 2}, + [159] = {.lex_state = 226, .external_lex_state = 2}, + [160] = {.lex_state = 226, .external_lex_state = 2}, + [161] = {.lex_state = 226, .external_lex_state = 2}, + [162] = {.lex_state = 226, .external_lex_state = 2}, + [163] = {.lex_state = 226, .external_lex_state = 2}, + [164] = {.lex_state = 226, .external_lex_state = 2}, + [165] = {.lex_state = 226, .external_lex_state = 2}, + [166] = {.lex_state = 226, .external_lex_state = 2}, + [167] = {.lex_state = 226, .external_lex_state = 2}, + [168] = {.lex_state = 226, .external_lex_state = 2}, + [169] = {.lex_state = 226, .external_lex_state = 2}, + [170] = {.lex_state = 226, .external_lex_state = 2}, + [171] = {.lex_state = 226, .external_lex_state = 2}, + [172] = {.lex_state = 226, .external_lex_state = 2}, + [173] = {.lex_state = 226, .external_lex_state = 2}, + [174] = {.lex_state = 226, .external_lex_state = 2}, + [175] = {.lex_state = 226, .external_lex_state = 2}, + [176] = {.lex_state = 226, .external_lex_state = 2}, + [177] = {.lex_state = 226, .external_lex_state = 2}, + [178] = {.lex_state = 226, .external_lex_state = 2}, + [179] = {.lex_state = 226, .external_lex_state = 2}, + [180] = {.lex_state = 226, .external_lex_state = 2}, + [181] = {.lex_state = 226, .external_lex_state = 2}, + [182] = {.lex_state = 226, .external_lex_state = 2}, + [183] = {.lex_state = 226, .external_lex_state = 2}, + [184] = {.lex_state = 226, .external_lex_state = 2}, + [185] = {.lex_state = 226, .external_lex_state = 2}, + [186] = {.lex_state = 226, .external_lex_state = 2}, + [187] = {.lex_state = 226, .external_lex_state = 2}, + [188] = {.lex_state = 226, .external_lex_state = 2}, + [189] = {.lex_state = 226, .external_lex_state = 2}, + [190] = {.lex_state = 2298, .external_lex_state = 2}, + [191] = {.lex_state = 2298, .external_lex_state = 2}, + [192] = {.lex_state = 2298, .external_lex_state = 2}, + [193] = {.lex_state = 37, .external_lex_state = 2}, + [194] = {.lex_state = 37, .external_lex_state = 2}, + [195] = {.lex_state = 37, .external_lex_state = 2}, + [196] = {.lex_state = 37, .external_lex_state = 2}, + [197] = {.lex_state = 2276, .external_lex_state = 2}, + [198] = {.lex_state = 2294, .external_lex_state = 2}, + [199] = {.lex_state = 2294, .external_lex_state = 2}, + [200] = {.lex_state = 2294, .external_lex_state = 2}, + [201] = {.lex_state = 40, .external_lex_state = 2}, + [202] = {.lex_state = 40, .external_lex_state = 2}, + [203] = {.lex_state = 40, .external_lex_state = 2}, + [204] = {.lex_state = 40, .external_lex_state = 2}, + [205] = {.lex_state = 40, .external_lex_state = 2}, + [206] = {.lex_state = 40, .external_lex_state = 2}, + [207] = {.lex_state = 40, .external_lex_state = 2}, + [208] = {.lex_state = 40, .external_lex_state = 2}, + [209] = {.lex_state = 40, .external_lex_state = 2}, + [210] = {.lex_state = 40, .external_lex_state = 2}, + [211] = {.lex_state = 40, .external_lex_state = 2}, + [212] = {.lex_state = 40, .external_lex_state = 2}, + [213] = {.lex_state = 40, .external_lex_state = 2}, + [214] = {.lex_state = 40, .external_lex_state = 2}, + [215] = {.lex_state = 40, .external_lex_state = 2}, + [216] = {.lex_state = 40, .external_lex_state = 2}, + [217] = {.lex_state = 40, .external_lex_state = 2}, + [218] = {.lex_state = 40, .external_lex_state = 2}, + [219] = {.lex_state = 40, .external_lex_state = 2}, + [220] = {.lex_state = 40, .external_lex_state = 2}, + [221] = {.lex_state = 40, .external_lex_state = 2}, + [222] = {.lex_state = 40, .external_lex_state = 2}, + [223] = {.lex_state = 40, .external_lex_state = 2}, + [224] = {.lex_state = 40, .external_lex_state = 2}, + [225] = {.lex_state = 2294, .external_lex_state = 2}, + [226] = {.lex_state = 2294, .external_lex_state = 2}, + [227] = {.lex_state = 40, .external_lex_state = 2}, + [228] = {.lex_state = 40, .external_lex_state = 2}, + [229] = {.lex_state = 40, .external_lex_state = 2}, + [230] = {.lex_state = 40, .external_lex_state = 2}, + [231] = {.lex_state = 40, .external_lex_state = 2}, + [232] = {.lex_state = 40, .external_lex_state = 2}, + [233] = {.lex_state = 40, .external_lex_state = 2}, + [234] = {.lex_state = 40, .external_lex_state = 2}, + [235] = {.lex_state = 40, .external_lex_state = 2}, + [236] = {.lex_state = 40, .external_lex_state = 2}, + [237] = {.lex_state = 40, .external_lex_state = 2}, + [238] = {.lex_state = 2294, .external_lex_state = 2}, + [239] = {.lex_state = 40, .external_lex_state = 2}, + [240] = {.lex_state = 40, .external_lex_state = 2}, + [241] = {.lex_state = 40, .external_lex_state = 2}, + [242] = {.lex_state = 40, .external_lex_state = 2}, + [243] = {.lex_state = 40, .external_lex_state = 2}, + [244] = {.lex_state = 40, .external_lex_state = 2}, + [245] = {.lex_state = 40, .external_lex_state = 2}, + [246] = {.lex_state = 40, .external_lex_state = 2}, + [247] = {.lex_state = 40, .external_lex_state = 2}, + [248] = {.lex_state = 40, .external_lex_state = 2}, + [249] = {.lex_state = 40, .external_lex_state = 2}, + [250] = {.lex_state = 40, .external_lex_state = 2}, + [251] = {.lex_state = 40, .external_lex_state = 2}, + [252] = {.lex_state = 40, .external_lex_state = 2}, + [253] = {.lex_state = 40, .external_lex_state = 2}, + [254] = {.lex_state = 40, .external_lex_state = 2}, + [255] = {.lex_state = 40, .external_lex_state = 2}, + [256] = {.lex_state = 40, .external_lex_state = 2}, + [257] = {.lex_state = 40, .external_lex_state = 2}, + [258] = {.lex_state = 40, .external_lex_state = 2}, + [259] = {.lex_state = 40, .external_lex_state = 2}, + [260] = {.lex_state = 40, .external_lex_state = 2}, + [261] = {.lex_state = 40, .external_lex_state = 2}, + [262] = {.lex_state = 40, .external_lex_state = 2}, + [263] = {.lex_state = 40, .external_lex_state = 2}, + [264] = {.lex_state = 40, .external_lex_state = 2}, + [265] = {.lex_state = 40, .external_lex_state = 2}, + [266] = {.lex_state = 40, .external_lex_state = 2}, + [267] = {.lex_state = 40, .external_lex_state = 2}, + [268] = {.lex_state = 40, .external_lex_state = 2}, + [269] = {.lex_state = 40, .external_lex_state = 2}, + [270] = {.lex_state = 40, .external_lex_state = 2}, + [271] = {.lex_state = 40, .external_lex_state = 2}, + [272] = {.lex_state = 40, .external_lex_state = 2}, + [273] = {.lex_state = 40, .external_lex_state = 2}, + [274] = {.lex_state = 40, .external_lex_state = 2}, + [275] = {.lex_state = 37, .external_lex_state = 2}, + [276] = {.lex_state = 2294, .external_lex_state = 2}, + [277] = {.lex_state = 2294, .external_lex_state = 2}, + [278] = {.lex_state = 40, .external_lex_state = 2}, + [279] = {.lex_state = 2294, .external_lex_state = 2}, + [280] = {.lex_state = 2294, .external_lex_state = 2}, + [281] = {.lex_state = 2294, .external_lex_state = 2}, + [282] = {.lex_state = 2294, .external_lex_state = 2}, + [283] = {.lex_state = 37, .external_lex_state = 2}, + [284] = {.lex_state = 2294, .external_lex_state = 2}, + [285] = {.lex_state = 2294, .external_lex_state = 2}, + [286] = {.lex_state = 40, .external_lex_state = 2}, + [287] = {.lex_state = 40, .external_lex_state = 2}, + [288] = {.lex_state = 40, .external_lex_state = 2}, + [289] = {.lex_state = 227, .external_lex_state = 2}, + [290] = {.lex_state = 227, .external_lex_state = 2}, + [291] = {.lex_state = 227, .external_lex_state = 2}, + [292] = {.lex_state = 2294, .external_lex_state = 2}, + [293] = {.lex_state = 227, .external_lex_state = 2}, + [294] = {.lex_state = 2294, .external_lex_state = 2}, + [295] = {.lex_state = 227, .external_lex_state = 2}, + [296] = {.lex_state = 2294, .external_lex_state = 2}, + [297] = {.lex_state = 2294, .external_lex_state = 2}, + [298] = {.lex_state = 227, .external_lex_state = 2}, + [299] = {.lex_state = 40, .external_lex_state = 2}, + [300] = {.lex_state = 227, .external_lex_state = 2}, + [301] = {.lex_state = 2294, .external_lex_state = 2}, + [302] = {.lex_state = 227, .external_lex_state = 2}, + [303] = {.lex_state = 40, .external_lex_state = 2}, + [304] = {.lex_state = 2296, .external_lex_state = 2}, + [305] = {.lex_state = 2296, .external_lex_state = 2}, + [306] = {.lex_state = 2296, .external_lex_state = 2}, + [307] = {.lex_state = 2296, .external_lex_state = 2}, + [308] = {.lex_state = 2296, .external_lex_state = 2}, + [309] = {.lex_state = 2296, .external_lex_state = 2}, + [310] = {.lex_state = 2296, .external_lex_state = 2}, + [311] = {.lex_state = 2296, .external_lex_state = 2}, + [312] = {.lex_state = 2296, .external_lex_state = 2}, + [313] = {.lex_state = 39, .external_lex_state = 2}, + [314] = {.lex_state = 39, .external_lex_state = 2}, + [315] = {.lex_state = 39, .external_lex_state = 2}, + [316] = {.lex_state = 39, .external_lex_state = 2}, + [317] = {.lex_state = 39, .external_lex_state = 2}, + [318] = {.lex_state = 40, .external_lex_state = 2}, + [319] = {.lex_state = 227, .external_lex_state = 2}, + [320] = {.lex_state = 227, .external_lex_state = 2}, + [321] = {.lex_state = 40, .external_lex_state = 2}, + [322] = {.lex_state = 39, .external_lex_state = 2}, + [323] = {.lex_state = 2, .external_lex_state = 2}, + [324] = {.lex_state = 2, .external_lex_state = 2}, + [325] = {.lex_state = 2, .external_lex_state = 2}, + [326] = {.lex_state = 1, .external_lex_state = 2}, + [327] = {.lex_state = 1, .external_lex_state = 2}, + [328] = {.lex_state = 1, .external_lex_state = 2}, + [329] = {.lex_state = 1, .external_lex_state = 2}, + [330] = {.lex_state = 1, .external_lex_state = 2}, + [331] = {.lex_state = 1, .external_lex_state = 2}, + [332] = {.lex_state = 2, .external_lex_state = 2}, + [333] = {.lex_state = 2, .external_lex_state = 2}, + [334] = {.lex_state = 2, .external_lex_state = 2}, + [335] = {.lex_state = 5, .external_lex_state = 2}, + [336] = {.lex_state = 5, .external_lex_state = 2}, + [337] = {.lex_state = 36, .external_lex_state = 2}, + [338] = {.lex_state = 36, .external_lex_state = 2}, + [339] = {.lex_state = 36, .external_lex_state = 2}, + [340] = {.lex_state = 36, .external_lex_state = 2}, + [341] = {.lex_state = 36, .external_lex_state = 2}, + [342] = {.lex_state = 36, .external_lex_state = 2}, + [343] = {.lex_state = 36, .external_lex_state = 2}, + [344] = {.lex_state = 36, .external_lex_state = 2}, + [345] = {.lex_state = 36, .external_lex_state = 2}, + [346] = {.lex_state = 36, .external_lex_state = 2}, + [347] = {.lex_state = 36, .external_lex_state = 2}, + [348] = {.lex_state = 36, .external_lex_state = 2}, + [349] = {.lex_state = 36, .external_lex_state = 2}, + [350] = {.lex_state = 36, .external_lex_state = 2}, + [351] = {.lex_state = 145, .external_lex_state = 2}, + [352] = {.lex_state = 146, .external_lex_state = 2}, + [353] = {.lex_state = 143, .external_lex_state = 2}, + [354] = {.lex_state = 122, .external_lex_state = 2}, + [355] = {.lex_state = 125, .external_lex_state = 2}, + [356] = {.lex_state = 146, .external_lex_state = 2}, [357] = {.lex_state = 145, .external_lex_state = 2}, [358] = {.lex_state = 128, .external_lex_state = 2}, - [359] = {.lex_state = 156, .external_lex_state = 2}, - [360] = {.lex_state = 128, .external_lex_state = 2}, - [361] = {.lex_state = 128, .external_lex_state = 2}, - [362] = {.lex_state = 145, .external_lex_state = 2}, - [363] = {.lex_state = 124, .external_lex_state = 2}, - [364] = {.lex_state = 145, .external_lex_state = 2}, - [365] = {.lex_state = 145, .external_lex_state = 2}, - [366] = {.lex_state = 116, .external_lex_state = 2}, - [367] = {.lex_state = 116, .external_lex_state = 2}, - [368] = {.lex_state = 116, .external_lex_state = 2}, - [369] = {.lex_state = 169, .external_lex_state = 2}, - [370] = {.lex_state = 129, .external_lex_state = 2}, - [371] = {.lex_state = 169, .external_lex_state = 2}, - [372] = {.lex_state = 116, .external_lex_state = 2}, - [373] = {.lex_state = 129, .external_lex_state = 2}, - [374] = {.lex_state = 116, .external_lex_state = 2}, - [375] = {.lex_state = 156, .external_lex_state = 2}, - [376] = {.lex_state = 114, .external_lex_state = 2}, - [377] = {.lex_state = 169, .external_lex_state = 2}, - [378] = {.lex_state = 112, .external_lex_state = 2}, - [379] = {.lex_state = 156, .external_lex_state = 2}, - [380] = {.lex_state = 130, .external_lex_state = 2}, - [381] = {.lex_state = 157, .external_lex_state = 2}, - [382] = {.lex_state = 130, .external_lex_state = 2}, - [383] = {.lex_state = 158, .external_lex_state = 2}, - [384] = {.lex_state = 117, .external_lex_state = 2}, - [385] = {.lex_state = 130, .external_lex_state = 2}, - [386] = {.lex_state = 157, .external_lex_state = 2}, - [387] = {.lex_state = 157, .external_lex_state = 2}, - [388] = {.lex_state = 169, .external_lex_state = 2}, - [389] = {.lex_state = 157, .external_lex_state = 2}, - [390] = {.lex_state = 169, .external_lex_state = 2}, - [391] = {.lex_state = 155, .external_lex_state = 2}, - [392] = {.lex_state = 166, .external_lex_state = 2}, - [393] = {.lex_state = 130, .external_lex_state = 2}, - [394] = {.lex_state = 157, .external_lex_state = 2}, - [395] = {.lex_state = 130, .external_lex_state = 2}, - [396] = {.lex_state = 117, .external_lex_state = 2}, - [397] = {.lex_state = 157, .external_lex_state = 2}, - [398] = {.lex_state = 130, .external_lex_state = 2}, - [399] = {.lex_state = 163, .external_lex_state = 2}, - [400] = {.lex_state = 163, .external_lex_state = 2}, - [401] = {.lex_state = 164, .external_lex_state = 2}, - [402] = {.lex_state = 163, .external_lex_state = 2}, - [403] = {.lex_state = 163, .external_lex_state = 2}, - [404] = {.lex_state = 163, .external_lex_state = 2}, - [405] = {.lex_state = 118, .external_lex_state = 2}, - [406] = {.lex_state = 156, .external_lex_state = 2}, - [407] = {.lex_state = 163, .external_lex_state = 2}, - [408] = {.lex_state = 118, .external_lex_state = 2}, - [409] = {.lex_state = 163, .external_lex_state = 2}, - [410] = {.lex_state = 163, .external_lex_state = 2}, - [411] = {.lex_state = 163, .external_lex_state = 2}, - [412] = {.lex_state = 163, .external_lex_state = 2}, - [413] = {.lex_state = 118, .external_lex_state = 2}, - [414] = {.lex_state = 163, .external_lex_state = 2}, - [415] = {.lex_state = 163, .external_lex_state = 2}, - [416] = {.lex_state = 168, .external_lex_state = 2}, - [417] = {.lex_state = 163, .external_lex_state = 2}, - [418] = {.lex_state = 163, .external_lex_state = 2}, + [359] = {.lex_state = 144, .external_lex_state = 2}, + [360] = {.lex_state = 113, .external_lex_state = 2}, + [361] = {.lex_state = 127, .external_lex_state = 2}, + [362] = {.lex_state = 127, .external_lex_state = 2}, + [363] = {.lex_state = 143, .external_lex_state = 2}, + [364] = {.lex_state = 110, .external_lex_state = 2}, + [365] = {.lex_state = 146, .external_lex_state = 2}, + [366] = {.lex_state = 146, .external_lex_state = 2}, + [367] = {.lex_state = 146, .external_lex_state = 2}, + [368] = {.lex_state = 146, .external_lex_state = 2}, + [369] = {.lex_state = 144, .external_lex_state = 2}, + [370] = {.lex_state = 115, .external_lex_state = 2}, + [371] = {.lex_state = 144, .external_lex_state = 2}, + [372] = {.lex_state = 128, .external_lex_state = 2}, + [373] = {.lex_state = 128, .external_lex_state = 2}, + [374] = {.lex_state = 115, .external_lex_state = 2}, + [375] = {.lex_state = 128, .external_lex_state = 2}, + [376] = {.lex_state = 144, .external_lex_state = 2}, + [377] = {.lex_state = 123, .external_lex_state = 2}, + [378] = {.lex_state = 144, .external_lex_state = 2}, + [379] = {.lex_state = 144, .external_lex_state = 2}, + [380] = {.lex_state = 155, .external_lex_state = 2}, + [381] = {.lex_state = 155, .external_lex_state = 2}, + [382] = {.lex_state = 126, .external_lex_state = 2}, + [383] = {.lex_state = 155, .external_lex_state = 2}, + [384] = {.lex_state = 128, .external_lex_state = 2}, + [385] = {.lex_state = 116, .external_lex_state = 2}, + [386] = {.lex_state = 155, .external_lex_state = 2}, + [387] = {.lex_state = 116, .external_lex_state = 2}, + [388] = {.lex_state = 116, .external_lex_state = 2}, + [389] = {.lex_state = 111, .external_lex_state = 2}, + [390] = {.lex_state = 114, .external_lex_state = 2}, + [391] = {.lex_state = 129, .external_lex_state = 2}, + [392] = {.lex_state = 116, .external_lex_state = 2}, + [393] = {.lex_state = 155, .external_lex_state = 2}, + [394] = {.lex_state = 168, .external_lex_state = 2}, + [395] = {.lex_state = 129, .external_lex_state = 2}, + [396] = {.lex_state = 116, .external_lex_state = 2}, + [397] = {.lex_state = 168, .external_lex_state = 2}, + [398] = {.lex_state = 168, .external_lex_state = 2}, + [399] = {.lex_state = 168, .external_lex_state = 2}, + [400] = {.lex_state = 117, .external_lex_state = 2}, + [401] = {.lex_state = 165, .external_lex_state = 2}, + [402] = {.lex_state = 156, .external_lex_state = 2}, + [403] = {.lex_state = 156, .external_lex_state = 2}, + [404] = {.lex_state = 157, .external_lex_state = 2}, + [405] = {.lex_state = 156, .external_lex_state = 2}, + [406] = {.lex_state = 130, .external_lex_state = 2}, + [407] = {.lex_state = 156, .external_lex_state = 2}, + [408] = {.lex_state = 130, .external_lex_state = 2}, + [409] = {.lex_state = 156, .external_lex_state = 2}, + [410] = {.lex_state = 156, .external_lex_state = 2}, + [411] = {.lex_state = 168, .external_lex_state = 2}, + [412] = {.lex_state = 130, .external_lex_state = 2}, + [413] = {.lex_state = 117, .external_lex_state = 2}, + [414] = {.lex_state = 130, .external_lex_state = 2}, + [415] = {.lex_state = 154, .external_lex_state = 2}, + [416] = {.lex_state = 130, .external_lex_state = 2}, + [417] = {.lex_state = 130, .external_lex_state = 2}, + [418] = {.lex_state = 162, .external_lex_state = 2}, [419] = {.lex_state = 163, .external_lex_state = 2}, - [420] = {.lex_state = 163, .external_lex_state = 2}, - [421] = {.lex_state = 131, .external_lex_state = 2}, - [422] = {.lex_state = 163, .external_lex_state = 2}, - [423] = {.lex_state = 163, .external_lex_state = 2}, + [420] = {.lex_state = 166, .external_lex_state = 2}, + [421] = {.lex_state = 155, .external_lex_state = 2}, + [422] = {.lex_state = 166, .external_lex_state = 2}, + [423] = {.lex_state = 118, .external_lex_state = 2}, [424] = {.lex_state = 167, .external_lex_state = 2}, - [425] = {.lex_state = 155, .external_lex_state = 2}, - [426] = {.lex_state = 167, .external_lex_state = 2}, + [425] = {.lex_state = 162, .external_lex_state = 2}, + [426] = {.lex_state = 155, .external_lex_state = 2}, [427] = {.lex_state = 155, .external_lex_state = 2}, - [428] = {.lex_state = 167, .external_lex_state = 2}, - [429] = {.lex_state = 167, .external_lex_state = 2}, - [430] = {.lex_state = 163, .external_lex_state = 2}, - [431] = {.lex_state = 163, .external_lex_state = 2}, - [432] = {.lex_state = 156, .external_lex_state = 2}, - [433] = {.lex_state = 163, .external_lex_state = 2}, - [434] = {.lex_state = 163, .external_lex_state = 2}, - [435] = {.lex_state = 167, .external_lex_state = 2}, - [436] = {.lex_state = 745, .external_lex_state = 2}, - [437] = {.lex_state = 167, .external_lex_state = 2}, - [438] = {.lex_state = 118, .external_lex_state = 2}, - [439] = {.lex_state = 118, .external_lex_state = 2}, - [440] = {.lex_state = 164, .external_lex_state = 2}, - [441] = {.lex_state = 163, .external_lex_state = 2}, - [442] = {.lex_state = 156, .external_lex_state = 2}, - [443] = {.lex_state = 179, .external_lex_state = 2}, - [444] = {.lex_state = 163, .external_lex_state = 2}, - [445] = {.lex_state = 163, .external_lex_state = 2}, - [446] = {.lex_state = 163, .external_lex_state = 2}, - [447] = {.lex_state = 118, .external_lex_state = 2}, - [448] = {.lex_state = 163, .external_lex_state = 2}, - [449] = {.lex_state = 163, .external_lex_state = 2}, - [450] = {.lex_state = 120, .external_lex_state = 2}, - [451] = {.lex_state = 165, .external_lex_state = 2}, - [452] = {.lex_state = 176, .external_lex_state = 2}, - [453] = {.lex_state = 121, .external_lex_state = 2}, - [454] = {.lex_state = 165, .external_lex_state = 2}, - [455] = {.lex_state = 121, .external_lex_state = 2}, - [456] = {.lex_state = 176, .external_lex_state = 2}, - [457] = {.lex_state = 165, .external_lex_state = 2}, - [458] = {.lex_state = 176, .external_lex_state = 2}, - [459] = {.lex_state = 176, .external_lex_state = 2}, - [460] = {.lex_state = 176, .external_lex_state = 2}, - [461] = {.lex_state = 165, .external_lex_state = 2}, - [462] = {.lex_state = 176, .external_lex_state = 2}, - [463] = {.lex_state = 176, .external_lex_state = 2}, - [464] = {.lex_state = 165, .external_lex_state = 2}, - [465] = {.lex_state = 176, .external_lex_state = 2}, - [466] = {.lex_state = 119, .external_lex_state = 2}, - [467] = {.lex_state = 176, .external_lex_state = 2}, - [468] = {.lex_state = 176, .external_lex_state = 2}, - [469] = {.lex_state = 176, .external_lex_state = 2}, - [470] = {.lex_state = 176, .external_lex_state = 2}, - [471] = {.lex_state = 176, .external_lex_state = 2}, - [472] = {.lex_state = 745, .external_lex_state = 2}, - [473] = {.lex_state = 176, .external_lex_state = 2}, - [474] = {.lex_state = 176, .external_lex_state = 2}, - [475] = {.lex_state = 176, .external_lex_state = 2}, - [476] = {.lex_state = 176, .external_lex_state = 2}, - [477] = {.lex_state = 176, .external_lex_state = 2}, - [478] = {.lex_state = 165, .external_lex_state = 2}, - [479] = {.lex_state = 165, .external_lex_state = 2}, - [480] = {.lex_state = 176, .external_lex_state = 2}, - [481] = {.lex_state = 176, .external_lex_state = 2}, - [482] = {.lex_state = 165, .external_lex_state = 2}, - [483] = {.lex_state = 165, .external_lex_state = 2}, - [484] = {.lex_state = 154, .external_lex_state = 2}, - [485] = {.lex_state = 745, .external_lex_state = 2}, - [486] = {.lex_state = 154, .external_lex_state = 2}, - [487] = {.lex_state = 165, .external_lex_state = 2}, - [488] = {.lex_state = 165, .external_lex_state = 2}, - [489] = {.lex_state = 154, .external_lex_state = 2}, - [490] = {.lex_state = 154, .external_lex_state = 2}, - [491] = {.lex_state = 154, .external_lex_state = 2}, - [492] = {.lex_state = 154, .external_lex_state = 2}, - [493] = {.lex_state = 176, .external_lex_state = 2}, - [494] = {.lex_state = 176, .external_lex_state = 2}, - [495] = {.lex_state = 163, .external_lex_state = 2}, - [496] = {.lex_state = 163, .external_lex_state = 2}, - [497] = {.lex_state = 169, .external_lex_state = 2}, - [498] = {.lex_state = 169, .external_lex_state = 2}, - [499] = {.lex_state = 169, .external_lex_state = 2}, - [500] = {.lex_state = 165, .external_lex_state = 2}, - [501] = {.lex_state = 165, .external_lex_state = 2}, - [502] = {.lex_state = 165, .external_lex_state = 2}, - [503] = {.lex_state = 176, .external_lex_state = 2}, - [504] = {.lex_state = 176, .external_lex_state = 2}, - [505] = {.lex_state = 108, .external_lex_state = 2}, - [506] = {.lex_state = 176, .external_lex_state = 2}, - [507] = {.lex_state = 177, .external_lex_state = 2}, - [508] = {.lex_state = 176, .external_lex_state = 2}, - [509] = {.lex_state = 165, .external_lex_state = 2}, - [510] = {.lex_state = 177, .external_lex_state = 2}, - [511] = {.lex_state = 176, .external_lex_state = 2}, - [512] = {.lex_state = 176, .external_lex_state = 2}, - [513] = {.lex_state = 165, .external_lex_state = 2}, - [514] = {.lex_state = 122, .external_lex_state = 2}, - [515] = {.lex_state = 178, .external_lex_state = 2}, - [516] = {.lex_state = 178, .external_lex_state = 2}, - [517] = {.lex_state = 178, .external_lex_state = 2}, - [518] = {.lex_state = 122, .external_lex_state = 2}, - [519] = {.lex_state = 178, .external_lex_state = 2}, - [520] = {.lex_state = 122, .external_lex_state = 2}, - [521] = {.lex_state = 122, .external_lex_state = 2}, - [522] = {.lex_state = 122, .external_lex_state = 2}, - [523] = {.lex_state = 122, .external_lex_state = 2}, - [524] = {.lex_state = 178, .external_lex_state = 2}, - [525] = {.lex_state = 178, .external_lex_state = 2}, - [526] = {.lex_state = 122, .external_lex_state = 2}, - [527] = {.lex_state = 160, .external_lex_state = 2}, - [528] = {.lex_state = 178, .external_lex_state = 2}, - [529] = {.lex_state = 155, .external_lex_state = 2}, - [530] = {.lex_state = 155, .external_lex_state = 2}, - [531] = {.lex_state = 155, .external_lex_state = 2}, - [532] = {.lex_state = 176, .external_lex_state = 2}, - [533] = {.lex_state = 176, .external_lex_state = 2}, - [534] = {.lex_state = 259, .external_lex_state = 2}, - [535] = {.lex_state = 122, .external_lex_state = 2}, - [536] = {.lex_state = 162, .external_lex_state = 2}, - [537] = {.lex_state = 259, .external_lex_state = 2}, - [538] = {.lex_state = 122, .external_lex_state = 2}, - [539] = {.lex_state = 259, .external_lex_state = 2}, - [540] = {.lex_state = 259, .external_lex_state = 2}, - [541] = {.lex_state = 122, .external_lex_state = 2}, - [542] = {.lex_state = 122, .external_lex_state = 2}, - [543] = {.lex_state = 122, .external_lex_state = 2}, - [544] = {.lex_state = 122, .external_lex_state = 2}, - [545] = {.lex_state = 161, .external_lex_state = 2}, - [546] = {.lex_state = 161, .external_lex_state = 2}, - [547] = {.lex_state = 259, .external_lex_state = 2}, - [548] = {.lex_state = 122, .external_lex_state = 2}, - [549] = {.lex_state = 161, .external_lex_state = 2}, - [550] = {.lex_state = 161, .external_lex_state = 2}, - [551] = {.lex_state = 161, .external_lex_state = 2}, - [552] = {.lex_state = 161, .external_lex_state = 2}, - [553] = {.lex_state = 109, .external_lex_state = 2}, - [554] = {.lex_state = 109, .external_lex_state = 2}, - [555] = {.lex_state = 178, .external_lex_state = 2}, - [556] = {.lex_state = 178, .external_lex_state = 2}, - [557] = {.lex_state = 178, .external_lex_state = 2}, - [558] = {.lex_state = 178, .external_lex_state = 2}, - [559] = {.lex_state = 178, .external_lex_state = 2}, - [560] = {.lex_state = 178, .external_lex_state = 2}, - [561] = {.lex_state = 178, .external_lex_state = 2}, - [562] = {.lex_state = 178, .external_lex_state = 2}, - [563] = {.lex_state = 178, .external_lex_state = 2}, - [564] = {.lex_state = 122, .external_lex_state = 2}, - [565] = {.lex_state = 210, .external_lex_state = 2}, - [566] = {.lex_state = 174, .external_lex_state = 2}, - [567] = {.lex_state = 163, .external_lex_state = 2}, - [568] = {.lex_state = 174, .external_lex_state = 2}, - [569] = {.lex_state = 159, .external_lex_state = 2}, - [570] = {.lex_state = 122, .external_lex_state = 2}, - [571] = {.lex_state = 210, .external_lex_state = 2}, - [572] = {.lex_state = 163, .external_lex_state = 2}, - [573] = {.lex_state = 163, .external_lex_state = 2}, - [574] = {.lex_state = 258, .external_lex_state = 2}, - [575] = {.lex_state = 210, .external_lex_state = 2}, - [576] = {.lex_state = 210, .external_lex_state = 2}, - [577] = {.lex_state = 258, .external_lex_state = 2}, - [578] = {.lex_state = 153, .external_lex_state = 2}, - [579] = {.lex_state = 210, .external_lex_state = 2}, - [580] = {.lex_state = 258, .external_lex_state = 2}, - [581] = {.lex_state = 159, .external_lex_state = 2}, - [582] = {.lex_state = 110, .external_lex_state = 2}, - [583] = {.lex_state = 174, .external_lex_state = 2}, - [584] = {.lex_state = 210, .external_lex_state = 2}, - [585] = {.lex_state = 110, .external_lex_state = 2}, - [586] = {.lex_state = 110, .external_lex_state = 2}, - [587] = {.lex_state = 110, .external_lex_state = 2}, - [588] = {.lex_state = 110, .external_lex_state = 2}, - [589] = {.lex_state = 110, .external_lex_state = 2}, - [590] = {.lex_state = 110, .external_lex_state = 2}, - [591] = {.lex_state = 174, .external_lex_state = 2}, - [592] = {.lex_state = 174, .external_lex_state = 2}, - [593] = {.lex_state = 153, .external_lex_state = 2}, - [594] = {.lex_state = 258, .external_lex_state = 2}, - [595] = {.lex_state = 174, .external_lex_state = 2}, - [596] = {.lex_state = 110, .external_lex_state = 2}, - [597] = {.lex_state = 122, .external_lex_state = 2}, - [598] = {.lex_state = 210, .external_lex_state = 2}, - [599] = {.lex_state = 173, .external_lex_state = 2}, - [600] = {.lex_state = 210, .external_lex_state = 2}, - [601] = {.lex_state = 175, .external_lex_state = 2}, - [602] = {.lex_state = 110, .external_lex_state = 2}, - [603] = {.lex_state = 258, .external_lex_state = 2}, - [604] = {.lex_state = 110, .external_lex_state = 2}, - [605] = {.lex_state = 110, .external_lex_state = 2}, - [606] = {.lex_state = 110, .external_lex_state = 2}, - [607] = {.lex_state = 110, .external_lex_state = 2}, - [608] = {.lex_state = 110, .external_lex_state = 2}, - [609] = {.lex_state = 110, .external_lex_state = 2}, - [610] = {.lex_state = 37, .external_lex_state = 2}, - [611] = {.lex_state = 210, .external_lex_state = 2}, - [612] = {.lex_state = 210, .external_lex_state = 2}, - [613] = {.lex_state = 210, .external_lex_state = 2}, - [614] = {.lex_state = 210, .external_lex_state = 2}, - [615] = {.lex_state = 210, .external_lex_state = 2}, - [616] = {.lex_state = 210, .external_lex_state = 2}, - [617] = {.lex_state = 210, .external_lex_state = 2}, - [618] = {.lex_state = 210, .external_lex_state = 2}, - [619] = {.lex_state = 210, .external_lex_state = 2}, - [620] = {.lex_state = 210, .external_lex_state = 2}, - [621] = {.lex_state = 210, .external_lex_state = 2}, - [622] = {.lex_state = 210, .external_lex_state = 2}, - [623] = {.lex_state = 176, .external_lex_state = 2}, - [624] = {.lex_state = 210, .external_lex_state = 2}, - [625] = {.lex_state = 210, .external_lex_state = 2}, - [626] = {.lex_state = 210, .external_lex_state = 2}, - [627] = {.lex_state = 210, .external_lex_state = 2}, - [628] = {.lex_state = 210, .external_lex_state = 2}, - [629] = {.lex_state = 37, .external_lex_state = 2}, - [630] = {.lex_state = 210, .external_lex_state = 2}, - [631] = {.lex_state = 210, .external_lex_state = 2}, - [632] = {.lex_state = 210, .external_lex_state = 2}, - [633] = {.lex_state = 210, .external_lex_state = 2}, - [634] = {.lex_state = 210, .external_lex_state = 2}, - [635] = {.lex_state = 210, .external_lex_state = 2}, - [636] = {.lex_state = 210, .external_lex_state = 2}, - [637] = {.lex_state = 210, .external_lex_state = 2}, - [638] = {.lex_state = 210, .external_lex_state = 2}, - [639] = {.lex_state = 210, .external_lex_state = 2}, - [640] = {.lex_state = 210, .external_lex_state = 2}, - [641] = {.lex_state = 210, .external_lex_state = 2}, - [642] = {.lex_state = 210, .external_lex_state = 2}, - [643] = {.lex_state = 210, .external_lex_state = 2}, - [644] = {.lex_state = 210, .external_lex_state = 2}, - [645] = {.lex_state = 210, .external_lex_state = 2}, - [646] = {.lex_state = 37, .external_lex_state = 2}, - [647] = {.lex_state = 210, .external_lex_state = 2}, - [648] = {.lex_state = 210, .external_lex_state = 2}, - [649] = {.lex_state = 210, .external_lex_state = 2}, - [650] = {.lex_state = 176, .external_lex_state = 2}, - [651] = {.lex_state = 176, .external_lex_state = 2}, - [652] = {.lex_state = 210, .external_lex_state = 2}, - [653] = {.lex_state = 210, .external_lex_state = 2}, - [654] = {.lex_state = 210, .external_lex_state = 2}, - [655] = {.lex_state = 210, .external_lex_state = 2}, - [656] = {.lex_state = 210, .external_lex_state = 2}, - [657] = {.lex_state = 210, .external_lex_state = 2}, - [658] = {.lex_state = 210, .external_lex_state = 2}, - [659] = {.lex_state = 210, .external_lex_state = 2}, - [660] = {.lex_state = 210, .external_lex_state = 2}, - [661] = {.lex_state = 210, .external_lex_state = 2}, - [662] = {.lex_state = 210, .external_lex_state = 2}, - [663] = {.lex_state = 210, .external_lex_state = 2}, - [664] = {.lex_state = 210, .external_lex_state = 2}, - [665] = {.lex_state = 210, .external_lex_state = 2}, - [666] = {.lex_state = 210, .external_lex_state = 2}, - [667] = {.lex_state = 171, .external_lex_state = 2}, - [668] = {.lex_state = 210, .external_lex_state = 2}, - [669] = {.lex_state = 210, .external_lex_state = 2}, - [670] = {.lex_state = 210, .external_lex_state = 2}, - [671] = {.lex_state = 210, .external_lex_state = 2}, - [672] = {.lex_state = 210, .external_lex_state = 2}, - [673] = {.lex_state = 210, .external_lex_state = 2}, - [674] = {.lex_state = 210, .external_lex_state = 2}, - [675] = {.lex_state = 210, .external_lex_state = 2}, - [676] = {.lex_state = 210, .external_lex_state = 2}, - [677] = {.lex_state = 110, .external_lex_state = 2}, - [678] = {.lex_state = 210, .external_lex_state = 2}, - [679] = {.lex_state = 171, .external_lex_state = 2}, - [680] = {.lex_state = 210, .external_lex_state = 2}, - [681] = {.lex_state = 210, .external_lex_state = 2}, - [682] = {.lex_state = 210, .external_lex_state = 2}, - [683] = {.lex_state = 210, .external_lex_state = 2}, - [684] = {.lex_state = 210, .external_lex_state = 2}, - [685] = {.lex_state = 110, .external_lex_state = 2}, - [686] = {.lex_state = 210, .external_lex_state = 2}, - [687] = {.lex_state = 210, .external_lex_state = 2}, - [688] = {.lex_state = 210, .external_lex_state = 2}, - [689] = {.lex_state = 210, .external_lex_state = 2}, - [690] = {.lex_state = 210, .external_lex_state = 2}, - [691] = {.lex_state = 210, .external_lex_state = 2}, - [692] = {.lex_state = 210, .external_lex_state = 2}, - [693] = {.lex_state = 210, .external_lex_state = 2}, - [694] = {.lex_state = 210, .external_lex_state = 2}, - [695] = {.lex_state = 37, .external_lex_state = 2}, - [696] = {.lex_state = 37, .external_lex_state = 2}, - [697] = {.lex_state = 37, .external_lex_state = 2}, - [698] = {.lex_state = 37, .external_lex_state = 2}, - [699] = {.lex_state = 37, .external_lex_state = 2}, - [700] = {.lex_state = 37, .external_lex_state = 2}, - [701] = {.lex_state = 37, .external_lex_state = 2}, - [702] = {.lex_state = 37, .external_lex_state = 2}, - [703] = {.lex_state = 37, .external_lex_state = 2}, - [704] = {.lex_state = 37, .external_lex_state = 2}, - [705] = {.lex_state = 37, .external_lex_state = 2}, - [706] = {.lex_state = 37, .external_lex_state = 2}, - [707] = {.lex_state = 37, .external_lex_state = 2}, - [708] = {.lex_state = 37, .external_lex_state = 2}, - [709] = {.lex_state = 37, .external_lex_state = 2}, - [710] = {.lex_state = 37, .external_lex_state = 2}, - [711] = {.lex_state = 37, .external_lex_state = 2}, - [712] = {.lex_state = 37, .external_lex_state = 2}, - [713] = {.lex_state = 37, .external_lex_state = 2}, - [714] = {.lex_state = 37, .external_lex_state = 2}, - [715] = {.lex_state = 37, .external_lex_state = 2}, - [716] = {.lex_state = 37, .external_lex_state = 2}, - [717] = {.lex_state = 37, .external_lex_state = 2}, - [718] = {.lex_state = 37, .external_lex_state = 2}, - [719] = {.lex_state = 37, .external_lex_state = 2}, - [720] = {.lex_state = 37, .external_lex_state = 2}, - [721] = {.lex_state = 37, .external_lex_state = 2}, - [722] = {.lex_state = 37, .external_lex_state = 2}, - [723] = {.lex_state = 37, .external_lex_state = 2}, - [724] = {.lex_state = 37, .external_lex_state = 2}, - [725] = {.lex_state = 37, .external_lex_state = 2}, - [726] = {.lex_state = 37, .external_lex_state = 2}, - [727] = {.lex_state = 37, .external_lex_state = 2}, - [728] = {.lex_state = 37, .external_lex_state = 2}, - [729] = {.lex_state = 37, .external_lex_state = 2}, - [730] = {.lex_state = 37, .external_lex_state = 2}, - [731] = {.lex_state = 37, .external_lex_state = 2}, - [732] = {.lex_state = 37, .external_lex_state = 2}, - [733] = {.lex_state = 37, .external_lex_state = 2}, - [734] = {.lex_state = 37, .external_lex_state = 2}, - [735] = {.lex_state = 37, .external_lex_state = 2}, - [736] = {.lex_state = 37, .external_lex_state = 2}, - [737] = {.lex_state = 37, .external_lex_state = 2}, - [738] = {.lex_state = 37, .external_lex_state = 2}, - [739] = {.lex_state = 37, .external_lex_state = 2}, - [740] = {.lex_state = 37, .external_lex_state = 2}, - [741] = {.lex_state = 37, .external_lex_state = 2}, - [742] = {.lex_state = 37, .external_lex_state = 2}, - [743] = {.lex_state = 37, .external_lex_state = 2}, - [744] = {.lex_state = 37, .external_lex_state = 2}, - [745] = {.lex_state = 37, .external_lex_state = 2}, - [746] = {.lex_state = 37, .external_lex_state = 2}, - [747] = {.lex_state = 37, .external_lex_state = 2}, - [748] = {.lex_state = 37, .external_lex_state = 2}, - [749] = {.lex_state = 37, .external_lex_state = 2}, - [750] = {.lex_state = 37, .external_lex_state = 2}, - [751] = {.lex_state = 37, .external_lex_state = 2}, - [752] = {.lex_state = 37, .external_lex_state = 2}, - [753] = {.lex_state = 37, .external_lex_state = 2}, - [754] = {.lex_state = 37, .external_lex_state = 2}, - [755] = {.lex_state = 37, .external_lex_state = 2}, - [756] = {.lex_state = 37, .external_lex_state = 2}, - [757] = {.lex_state = 37, .external_lex_state = 2}, - [758] = {.lex_state = 37, .external_lex_state = 2}, - [759] = {.lex_state = 37, .external_lex_state = 2}, - [760] = {.lex_state = 37, .external_lex_state = 2}, - [761] = {.lex_state = 37, .external_lex_state = 2}, - [762] = {.lex_state = 37, .external_lex_state = 2}, - [763] = {.lex_state = 37, .external_lex_state = 2}, - [764] = {.lex_state = 37, .external_lex_state = 2}, - [765] = {.lex_state = 37, .external_lex_state = 2}, - [766] = {.lex_state = 37, .external_lex_state = 2}, - [767] = {.lex_state = 37, .external_lex_state = 2}, - [768] = {.lex_state = 37, .external_lex_state = 2}, - [769] = {.lex_state = 37, .external_lex_state = 2}, - [770] = {.lex_state = 37, .external_lex_state = 2}, - [771] = {.lex_state = 742, .external_lex_state = 2}, - [772] = {.lex_state = 44, .external_lex_state = 2}, - [773] = {.lex_state = 44, .external_lex_state = 2}, - [774] = {.lex_state = 742, .external_lex_state = 2}, - [775] = {.lex_state = 742, .external_lex_state = 2}, - [776] = {.lex_state = 1798}, - [777] = {.lex_state = 742, .external_lex_state = 2}, - [778] = {.lex_state = 1801}, - [779] = {.lex_state = 742, .external_lex_state = 2}, - [780] = {.lex_state = 751, .external_lex_state = 2}, - [781] = {.lex_state = 751, .external_lex_state = 2}, - [782] = {.lex_state = 1824}, - [783] = {.lex_state = 1812}, - [784] = {.lex_state = 742, .external_lex_state = 2}, - [785] = {.lex_state = 751, .external_lex_state = 2}, - [786] = {.lex_state = 1808}, - [787] = {.lex_state = 1802}, - [788] = {.lex_state = 742, .external_lex_state = 2}, - [789] = {.lex_state = 1948}, - [790] = {.lex_state = 751, .external_lex_state = 2}, - [791] = {.lex_state = 751, .external_lex_state = 2}, - [792] = {.lex_state = 751, .external_lex_state = 2}, - [793] = {.lex_state = 742, .external_lex_state = 2}, - [794] = {.lex_state = 751, .external_lex_state = 2}, - [795] = {.lex_state = 1954}, - [796] = {.lex_state = 1799}, - [797] = {.lex_state = 742, .external_lex_state = 2}, - [798] = {.lex_state = 751, .external_lex_state = 2}, - [799] = {.lex_state = 751, .external_lex_state = 2}, - [800] = {.lex_state = 751, .external_lex_state = 2}, - [801] = {.lex_state = 1799}, - [802] = {.lex_state = 1800}, - [803] = {.lex_state = 1800}, - [804] = {.lex_state = 1800}, - [805] = {.lex_state = 1804}, - [806] = {.lex_state = 1954}, - [807] = {.lex_state = 1804}, - [808] = {.lex_state = 1948}, - [809] = {.lex_state = 751, .external_lex_state = 2}, - [810] = {.lex_state = 751, .external_lex_state = 2}, - [811] = {.lex_state = 1814}, - [812] = {.lex_state = 751, .external_lex_state = 2}, - [813] = {.lex_state = 751, .external_lex_state = 2}, - [814] = {.lex_state = 1800}, - [815] = {.lex_state = 1814}, - [816] = {.lex_state = 751, .external_lex_state = 2}, - [817] = {.lex_state = 1950}, - [818] = {.lex_state = 1800}, - [819] = {.lex_state = 1950}, - [820] = {.lex_state = 1806}, - [821] = {.lex_state = 1950}, - [822] = {.lex_state = 1952}, - [823] = {.lex_state = 1806}, - [824] = {.lex_state = 1806}, - [825] = {.lex_state = 1952}, - [826] = {.lex_state = 1806}, - [827] = {.lex_state = 1950}, - [828] = {.lex_state = 1816}, - [829] = {.lex_state = 1826}, - [830] = {.lex_state = 1952}, - [831] = {.lex_state = 1818}, - [832] = {.lex_state = 1952}, - [833] = {.lex_state = 1816}, - [834] = {.lex_state = 1816}, - [835] = {.lex_state = 1816}, - [836] = {.lex_state = 1952}, - [837] = {.lex_state = 1806}, - [838] = {.lex_state = 1816}, - [839] = {.lex_state = 1952}, - [840] = {.lex_state = 1952}, - [841] = {.lex_state = 1952}, - [842] = {.lex_state = 1952}, - [843] = {.lex_state = 1820}, - [844] = {.lex_state = 1820}, - [845] = {.lex_state = 1952}, - [846] = {.lex_state = 44, .external_lex_state = 2}, - [847] = {.lex_state = 1822}, - [848] = {.lex_state = 44, .external_lex_state = 2}, - [849] = {.lex_state = 44, .external_lex_state = 2}, - [850] = {.lex_state = 1822}, - [851] = {.lex_state = 44, .external_lex_state = 2}, - [852] = {.lex_state = 44, .external_lex_state = 2}, - [853] = {.lex_state = 44, .external_lex_state = 2}, - [854] = {.lex_state = 44, .external_lex_state = 2}, - [855] = {.lex_state = 44, .external_lex_state = 2}, - [856] = {.lex_state = 44, .external_lex_state = 2}, - [857] = {.lex_state = 1822}, - [858] = {.lex_state = 44, .external_lex_state = 2}, - [859] = {.lex_state = 44, .external_lex_state = 2}, - [860] = {.lex_state = 44, .external_lex_state = 2}, - [861] = {.lex_state = 44, .external_lex_state = 2}, - [862] = {.lex_state = 44, .external_lex_state = 2}, - [863] = {.lex_state = 44, .external_lex_state = 2}, - [864] = {.lex_state = 1822}, - [865] = {.lex_state = 44, .external_lex_state = 2}, - [866] = {.lex_state = 44, .external_lex_state = 2}, - [867] = {.lex_state = 44, .external_lex_state = 2}, - [868] = {.lex_state = 44, .external_lex_state = 2}, - [869] = {.lex_state = 44, .external_lex_state = 2}, - [870] = {.lex_state = 1822}, - [871] = {.lex_state = 44, .external_lex_state = 2}, - [872] = {.lex_state = 44, .external_lex_state = 2}, - [873] = {.lex_state = 44, .external_lex_state = 2}, - [874] = {.lex_state = 1956}, - [875] = {.lex_state = 1828}, - [876] = {.lex_state = 1956}, - [877] = {.lex_state = 1828}, - [878] = {.lex_state = 1810}, - [879] = {.lex_state = 1810}, - [880] = {.lex_state = 1828}, - [881] = {.lex_state = 1828}, - [882] = {.lex_state = 1956}, - [883] = {.lex_state = 44, .external_lex_state = 2}, - [884] = {.lex_state = 44, .external_lex_state = 2}, - [885] = {.lex_state = 44, .external_lex_state = 2}, - [886] = {.lex_state = 44, .external_lex_state = 2}, - [887] = {.lex_state = 44, .external_lex_state = 2}, - [888] = {.lex_state = 1956}, - [889] = {.lex_state = 44, .external_lex_state = 2}, - [890] = {.lex_state = 44, .external_lex_state = 2}, - [891] = {.lex_state = 44, .external_lex_state = 2}, - [892] = {.lex_state = 44, .external_lex_state = 2}, - [893] = {.lex_state = 44, .external_lex_state = 2}, - [894] = {.lex_state = 44, .external_lex_state = 2}, - [895] = {.lex_state = 44, .external_lex_state = 2}, - [896] = {.lex_state = 44, .external_lex_state = 2}, - [897] = {.lex_state = 44, .external_lex_state = 2}, - [898] = {.lex_state = 44, .external_lex_state = 2}, - [899] = {.lex_state = 44, .external_lex_state = 2}, - [900] = {.lex_state = 44, .external_lex_state = 2}, - [901] = {.lex_state = 44, .external_lex_state = 2}, - [902] = {.lex_state = 44, .external_lex_state = 2}, - [903] = {.lex_state = 44, .external_lex_state = 2}, - [904] = {.lex_state = 1830}, - [905] = {.lex_state = 1830}, - [906] = {.lex_state = 44, .external_lex_state = 2}, - [907] = {.lex_state = 44, .external_lex_state = 2}, - [908] = {.lex_state = 44, .external_lex_state = 2}, + [428] = {.lex_state = 118, .external_lex_state = 2}, + [429] = {.lex_state = 162, .external_lex_state = 2}, + [430] = {.lex_state = 162, .external_lex_state = 2}, + [431] = {.lex_state = 162, .external_lex_state = 2}, + [432] = {.lex_state = 118, .external_lex_state = 2}, + [433] = {.lex_state = 162, .external_lex_state = 2}, + [434] = {.lex_state = 162, .external_lex_state = 2}, + [435] = {.lex_state = 166, .external_lex_state = 2}, + [436] = {.lex_state = 162, .external_lex_state = 2}, + [437] = {.lex_state = 162, .external_lex_state = 2}, + [438] = {.lex_state = 162, .external_lex_state = 2}, + [439] = {.lex_state = 162, .external_lex_state = 2}, + [440] = {.lex_state = 162, .external_lex_state = 2}, + [441] = {.lex_state = 162, .external_lex_state = 2}, + [442] = {.lex_state = 118, .external_lex_state = 2}, + [443] = {.lex_state = 162, .external_lex_state = 2}, + [444] = {.lex_state = 162, .external_lex_state = 2}, + [445] = {.lex_state = 162, .external_lex_state = 2}, + [446] = {.lex_state = 162, .external_lex_state = 2}, + [447] = {.lex_state = 162, .external_lex_state = 2}, + [448] = {.lex_state = 162, .external_lex_state = 2}, + [449] = {.lex_state = 162, .external_lex_state = 2}, + [450] = {.lex_state = 162, .external_lex_state = 2}, + [451] = {.lex_state = 162, .external_lex_state = 2}, + [452] = {.lex_state = 124, .external_lex_state = 2}, + [453] = {.lex_state = 163, .external_lex_state = 2}, + [454] = {.lex_state = 162, .external_lex_state = 2}, + [455] = {.lex_state = 162, .external_lex_state = 2}, + [456] = {.lex_state = 166, .external_lex_state = 2}, + [457] = {.lex_state = 154, .external_lex_state = 2}, + [458] = {.lex_state = 154, .external_lex_state = 2}, + [459] = {.lex_state = 166, .external_lex_state = 2}, + [460] = {.lex_state = 178, .external_lex_state = 2}, + [461] = {.lex_state = 2299, .external_lex_state = 2}, + [462] = {.lex_state = 166, .external_lex_state = 2}, + [463] = {.lex_state = 119, .external_lex_state = 2}, + [464] = {.lex_state = 118, .external_lex_state = 2}, + [465] = {.lex_state = 118, .external_lex_state = 2}, + [466] = {.lex_state = 162, .external_lex_state = 2}, + [467] = {.lex_state = 162, .external_lex_state = 2}, + [468] = {.lex_state = 162, .external_lex_state = 2}, + [469] = {.lex_state = 162, .external_lex_state = 2}, + [470] = {.lex_state = 175, .external_lex_state = 2}, + [471] = {.lex_state = 175, .external_lex_state = 2}, + [472] = {.lex_state = 175, .external_lex_state = 2}, + [473] = {.lex_state = 175, .external_lex_state = 2}, + [474] = {.lex_state = 175, .external_lex_state = 2}, + [475] = {.lex_state = 175, .external_lex_state = 2}, + [476] = {.lex_state = 175, .external_lex_state = 2}, + [477] = {.lex_state = 175, .external_lex_state = 2}, + [478] = {.lex_state = 164, .external_lex_state = 2}, + [479] = {.lex_state = 164, .external_lex_state = 2}, + [480] = {.lex_state = 164, .external_lex_state = 2}, + [481] = {.lex_state = 164, .external_lex_state = 2}, + [482] = {.lex_state = 112, .external_lex_state = 2}, + [483] = {.lex_state = 168, .external_lex_state = 2}, + [484] = {.lex_state = 175, .external_lex_state = 2}, + [485] = {.lex_state = 164, .external_lex_state = 2}, + [486] = {.lex_state = 107, .external_lex_state = 2}, + [487] = {.lex_state = 120, .external_lex_state = 2}, + [488] = {.lex_state = 168, .external_lex_state = 2}, + [489] = {.lex_state = 164, .external_lex_state = 2}, + [490] = {.lex_state = 120, .external_lex_state = 2}, + [491] = {.lex_state = 175, .external_lex_state = 2}, + [492] = {.lex_state = 175, .external_lex_state = 2}, + [493] = {.lex_state = 175, .external_lex_state = 2}, + [494] = {.lex_state = 168, .external_lex_state = 2}, + [495] = {.lex_state = 164, .external_lex_state = 2}, + [496] = {.lex_state = 164, .external_lex_state = 2}, + [497] = {.lex_state = 164, .external_lex_state = 2}, + [498] = {.lex_state = 162, .external_lex_state = 2}, + [499] = {.lex_state = 176, .external_lex_state = 2}, + [500] = {.lex_state = 164, .external_lex_state = 2}, + [501] = {.lex_state = 176, .external_lex_state = 2}, + [502] = {.lex_state = 164, .external_lex_state = 2}, + [503] = {.lex_state = 164, .external_lex_state = 2}, + [504] = {.lex_state = 153, .external_lex_state = 2}, + [505] = {.lex_state = 153, .external_lex_state = 2}, + [506] = {.lex_state = 175, .external_lex_state = 2}, + [507] = {.lex_state = 164, .external_lex_state = 2}, + [508] = {.lex_state = 164, .external_lex_state = 2}, + [509] = {.lex_state = 153, .external_lex_state = 2}, + [510] = {.lex_state = 175, .external_lex_state = 2}, + [511] = {.lex_state = 153, .external_lex_state = 2}, + [512] = {.lex_state = 153, .external_lex_state = 2}, + [513] = {.lex_state = 153, .external_lex_state = 2}, + [514] = {.lex_state = 2299, .external_lex_state = 2}, + [515] = {.lex_state = 175, .external_lex_state = 2}, + [516] = {.lex_state = 175, .external_lex_state = 2}, + [517] = {.lex_state = 2299, .external_lex_state = 2}, + [518] = {.lex_state = 175, .external_lex_state = 2}, + [519] = {.lex_state = 175, .external_lex_state = 2}, + [520] = {.lex_state = 175, .external_lex_state = 2}, + [521] = {.lex_state = 175, .external_lex_state = 2}, + [522] = {.lex_state = 175, .external_lex_state = 2}, + [523] = {.lex_state = 175, .external_lex_state = 2}, + [524] = {.lex_state = 175, .external_lex_state = 2}, + [525] = {.lex_state = 175, .external_lex_state = 2}, + [526] = {.lex_state = 164, .external_lex_state = 2}, + [527] = {.lex_state = 175, .external_lex_state = 2}, + [528] = {.lex_state = 175, .external_lex_state = 2}, + [529] = {.lex_state = 164, .external_lex_state = 2}, + [530] = {.lex_state = 162, .external_lex_state = 2}, + [531] = {.lex_state = 175, .external_lex_state = 2}, + [532] = {.lex_state = 175, .external_lex_state = 2}, + [533] = {.lex_state = 160, .external_lex_state = 2}, + [534] = {.lex_state = 121, .external_lex_state = 2}, + [535] = {.lex_state = 177, .external_lex_state = 2}, + [536] = {.lex_state = 177, .external_lex_state = 2}, + [537] = {.lex_state = 177, .external_lex_state = 2}, + [538] = {.lex_state = 177, .external_lex_state = 2}, + [539] = {.lex_state = 160, .external_lex_state = 2}, + [540] = {.lex_state = 161, .external_lex_state = 2}, + [541] = {.lex_state = 177, .external_lex_state = 2}, + [542] = {.lex_state = 121, .external_lex_state = 2}, + [543] = {.lex_state = 121, .external_lex_state = 2}, + [544] = {.lex_state = 177, .external_lex_state = 2}, + [545] = {.lex_state = 177, .external_lex_state = 2}, + [546] = {.lex_state = 154, .external_lex_state = 2}, + [547] = {.lex_state = 121, .external_lex_state = 2}, + [548] = {.lex_state = 121, .external_lex_state = 2}, + [549] = {.lex_state = 177, .external_lex_state = 2}, + [550] = {.lex_state = 177, .external_lex_state = 2}, + [551] = {.lex_state = 154, .external_lex_state = 2}, + [552] = {.lex_state = 154, .external_lex_state = 2}, + [553] = {.lex_state = 175, .external_lex_state = 2}, + [554] = {.lex_state = 175, .external_lex_state = 2}, + [555] = {.lex_state = 258, .external_lex_state = 2}, + [556] = {.lex_state = 108, .external_lex_state = 2}, + [557] = {.lex_state = 177, .external_lex_state = 2}, + [558] = {.lex_state = 121, .external_lex_state = 2}, + [559] = {.lex_state = 160, .external_lex_state = 2}, + [560] = {.lex_state = 121, .external_lex_state = 2}, + [561] = {.lex_state = 258, .external_lex_state = 2}, + [562] = {.lex_state = 258, .external_lex_state = 2}, + [563] = {.lex_state = 258, .external_lex_state = 2}, + [564] = {.lex_state = 121, .external_lex_state = 2}, + [565] = {.lex_state = 108, .external_lex_state = 2}, + [566] = {.lex_state = 177, .external_lex_state = 2}, + [567] = {.lex_state = 121, .external_lex_state = 2}, + [568] = {.lex_state = 177, .external_lex_state = 2}, + [569] = {.lex_state = 177, .external_lex_state = 2}, + [570] = {.lex_state = 177, .external_lex_state = 2}, + [571] = {.lex_state = 177, .external_lex_state = 2}, + [572] = {.lex_state = 177, .external_lex_state = 2}, + [573] = {.lex_state = 160, .external_lex_state = 2}, + [574] = {.lex_state = 121, .external_lex_state = 2}, + [575] = {.lex_state = 159, .external_lex_state = 2}, + [576] = {.lex_state = 160, .external_lex_state = 2}, + [577] = {.lex_state = 121, .external_lex_state = 2}, + [578] = {.lex_state = 121, .external_lex_state = 2}, + [579] = {.lex_state = 121, .external_lex_state = 2}, + [580] = {.lex_state = 121, .external_lex_state = 2}, + [581] = {.lex_state = 121, .external_lex_state = 2}, + [582] = {.lex_state = 160, .external_lex_state = 2}, + [583] = {.lex_state = 258, .external_lex_state = 2}, + [584] = {.lex_state = 158, .external_lex_state = 2}, + [585] = {.lex_state = 209, .external_lex_state = 2}, + [586] = {.lex_state = 109, .external_lex_state = 2}, + [587] = {.lex_state = 173, .external_lex_state = 2}, + [588] = {.lex_state = 173, .external_lex_state = 2}, + [589] = {.lex_state = 152, .external_lex_state = 2}, + [590] = {.lex_state = 209, .external_lex_state = 2}, + [591] = {.lex_state = 209, .external_lex_state = 2}, + [592] = {.lex_state = 257, .external_lex_state = 2}, + [593] = {.lex_state = 257, .external_lex_state = 2}, + [594] = {.lex_state = 109, .external_lex_state = 2}, + [595] = {.lex_state = 209, .external_lex_state = 2}, + [596] = {.lex_state = 109, .external_lex_state = 2}, + [597] = {.lex_state = 109, .external_lex_state = 2}, + [598] = {.lex_state = 257, .external_lex_state = 2}, + [599] = {.lex_state = 109, .external_lex_state = 2}, + [600] = {.lex_state = 109, .external_lex_state = 2}, + [601] = {.lex_state = 162, .external_lex_state = 2}, + [602] = {.lex_state = 109, .external_lex_state = 2}, + [603] = {.lex_state = 109, .external_lex_state = 2}, + [604] = {.lex_state = 173, .external_lex_state = 2}, + [605] = {.lex_state = 109, .external_lex_state = 2}, + [606] = {.lex_state = 109, .external_lex_state = 2}, + [607] = {.lex_state = 109, .external_lex_state = 2}, + [608] = {.lex_state = 109, .external_lex_state = 2}, + [609] = {.lex_state = 209, .external_lex_state = 2}, + [610] = {.lex_state = 209, .external_lex_state = 2}, + [611] = {.lex_state = 209, .external_lex_state = 2}, + [612] = {.lex_state = 121, .external_lex_state = 2}, + [613] = {.lex_state = 109, .external_lex_state = 2}, + [614] = {.lex_state = 158, .external_lex_state = 2}, + [615] = {.lex_state = 152, .external_lex_state = 2}, + [616] = {.lex_state = 257, .external_lex_state = 2}, + [617] = {.lex_state = 173, .external_lex_state = 2}, + [618] = {.lex_state = 162, .external_lex_state = 2}, + [619] = {.lex_state = 109, .external_lex_state = 2}, + [620] = {.lex_state = 121, .external_lex_state = 2}, + [621] = {.lex_state = 209, .external_lex_state = 2}, + [622] = {.lex_state = 109, .external_lex_state = 2}, + [623] = {.lex_state = 173, .external_lex_state = 2}, + [624] = {.lex_state = 172, .external_lex_state = 2}, + [625] = {.lex_state = 162, .external_lex_state = 2}, + [626] = {.lex_state = 173, .external_lex_state = 2}, + [627] = {.lex_state = 174, .external_lex_state = 2}, + [628] = {.lex_state = 257, .external_lex_state = 2}, + [629] = {.lex_state = 209, .external_lex_state = 2}, + [630] = {.lex_state = 209, .external_lex_state = 2}, + [631] = {.lex_state = 209, .external_lex_state = 2}, + [632] = {.lex_state = 209, .external_lex_state = 2}, + [633] = {.lex_state = 209, .external_lex_state = 2}, + [634] = {.lex_state = 209, .external_lex_state = 2}, + [635] = {.lex_state = 209, .external_lex_state = 2}, + [636] = {.lex_state = 209, .external_lex_state = 2}, + [637] = {.lex_state = 209, .external_lex_state = 2}, + [638] = {.lex_state = 209, .external_lex_state = 2}, + [639] = {.lex_state = 209, .external_lex_state = 2}, + [640] = {.lex_state = 209, .external_lex_state = 2}, + [641] = {.lex_state = 209, .external_lex_state = 2}, + [642] = {.lex_state = 209, .external_lex_state = 2}, + [643] = {.lex_state = 209, .external_lex_state = 2}, + [644] = {.lex_state = 209, .external_lex_state = 2}, + [645] = {.lex_state = 209, .external_lex_state = 2}, + [646] = {.lex_state = 209, .external_lex_state = 2}, + [647] = {.lex_state = 209, .external_lex_state = 2}, + [648] = {.lex_state = 209, .external_lex_state = 2}, + [649] = {.lex_state = 209, .external_lex_state = 2}, + [650] = {.lex_state = 209, .external_lex_state = 2}, + [651] = {.lex_state = 209, .external_lex_state = 2}, + [652] = {.lex_state = 209, .external_lex_state = 2}, + [653] = {.lex_state = 209, .external_lex_state = 2}, + [654] = {.lex_state = 209, .external_lex_state = 2}, + [655] = {.lex_state = 209, .external_lex_state = 2}, + [656] = {.lex_state = 209, .external_lex_state = 2}, + [657] = {.lex_state = 36, .external_lex_state = 2}, + [658] = {.lex_state = 209, .external_lex_state = 2}, + [659] = {.lex_state = 209, .external_lex_state = 2}, + [660] = {.lex_state = 209, .external_lex_state = 2}, + [661] = {.lex_state = 209, .external_lex_state = 2}, + [662] = {.lex_state = 209, .external_lex_state = 2}, + [663] = {.lex_state = 209, .external_lex_state = 2}, + [664] = {.lex_state = 209, .external_lex_state = 2}, + [665] = {.lex_state = 209, .external_lex_state = 2}, + [666] = {.lex_state = 209, .external_lex_state = 2}, + [667] = {.lex_state = 209, .external_lex_state = 2}, + [668] = {.lex_state = 209, .external_lex_state = 2}, + [669] = {.lex_state = 209, .external_lex_state = 2}, + [670] = {.lex_state = 209, .external_lex_state = 2}, + [671] = {.lex_state = 209, .external_lex_state = 2}, + [672] = {.lex_state = 209, .external_lex_state = 2}, + [673] = {.lex_state = 209, .external_lex_state = 2}, + [674] = {.lex_state = 209, .external_lex_state = 2}, + [675] = {.lex_state = 209, .external_lex_state = 2}, + [676] = {.lex_state = 209, .external_lex_state = 2}, + [677] = {.lex_state = 209, .external_lex_state = 2}, + [678] = {.lex_state = 209, .external_lex_state = 2}, + [679] = {.lex_state = 170, .external_lex_state = 2}, + [680] = {.lex_state = 170, .external_lex_state = 2}, + [681] = {.lex_state = 209, .external_lex_state = 2}, + [682] = {.lex_state = 209, .external_lex_state = 2}, + [683] = {.lex_state = 209, .external_lex_state = 2}, + [684] = {.lex_state = 209, .external_lex_state = 2}, + [685] = {.lex_state = 209, .external_lex_state = 2}, + [686] = {.lex_state = 209, .external_lex_state = 2}, + [687] = {.lex_state = 209, .external_lex_state = 2}, + [688] = {.lex_state = 209, .external_lex_state = 2}, + [689] = {.lex_state = 209, .external_lex_state = 2}, + [690] = {.lex_state = 36, .external_lex_state = 2}, + [691] = {.lex_state = 209, .external_lex_state = 2}, + [692] = {.lex_state = 209, .external_lex_state = 2}, + [693] = {.lex_state = 175, .external_lex_state = 2}, + [694] = {.lex_state = 209, .external_lex_state = 2}, + [695] = {.lex_state = 209, .external_lex_state = 2}, + [696] = {.lex_state = 209, .external_lex_state = 2}, + [697] = {.lex_state = 209, .external_lex_state = 2}, + [698] = {.lex_state = 209, .external_lex_state = 2}, + [699] = {.lex_state = 209, .external_lex_state = 2}, + [700] = {.lex_state = 36, .external_lex_state = 2}, + [701] = {.lex_state = 109, .external_lex_state = 2}, + [702] = {.lex_state = 175, .external_lex_state = 2}, + [703] = {.lex_state = 209, .external_lex_state = 2}, + [704] = {.lex_state = 209, .external_lex_state = 2}, + [705] = {.lex_state = 175, .external_lex_state = 2}, + [706] = {.lex_state = 109, .external_lex_state = 2}, + [707] = {.lex_state = 209, .external_lex_state = 2}, + [708] = {.lex_state = 209, .external_lex_state = 2}, + [709] = {.lex_state = 209, .external_lex_state = 2}, + [710] = {.lex_state = 209, .external_lex_state = 2}, + [711] = {.lex_state = 209, .external_lex_state = 2}, + [712] = {.lex_state = 209, .external_lex_state = 2}, + [713] = {.lex_state = 209, .external_lex_state = 2}, + [714] = {.lex_state = 36, .external_lex_state = 2}, + [715] = {.lex_state = 36, .external_lex_state = 2}, + [716] = {.lex_state = 36, .external_lex_state = 2}, + [717] = {.lex_state = 36, .external_lex_state = 2}, + [718] = {.lex_state = 36, .external_lex_state = 2}, + [719] = {.lex_state = 36, .external_lex_state = 2}, + [720] = {.lex_state = 36, .external_lex_state = 2}, + [721] = {.lex_state = 36, .external_lex_state = 2}, + [722] = {.lex_state = 36, .external_lex_state = 2}, + [723] = {.lex_state = 36, .external_lex_state = 2}, + [724] = {.lex_state = 36, .external_lex_state = 2}, + [725] = {.lex_state = 36, .external_lex_state = 2}, + [726] = {.lex_state = 36, .external_lex_state = 2}, + [727] = {.lex_state = 36, .external_lex_state = 2}, + [728] = {.lex_state = 36, .external_lex_state = 2}, + [729] = {.lex_state = 36, .external_lex_state = 2}, + [730] = {.lex_state = 36, .external_lex_state = 2}, + [731] = {.lex_state = 36, .external_lex_state = 2}, + [732] = {.lex_state = 36, .external_lex_state = 2}, + [733] = {.lex_state = 36, .external_lex_state = 2}, + [734] = {.lex_state = 36, .external_lex_state = 2}, + [735] = {.lex_state = 36, .external_lex_state = 2}, + [736] = {.lex_state = 36, .external_lex_state = 2}, + [737] = {.lex_state = 36, .external_lex_state = 2}, + [738] = {.lex_state = 36, .external_lex_state = 2}, + [739] = {.lex_state = 36, .external_lex_state = 2}, + [740] = {.lex_state = 36, .external_lex_state = 2}, + [741] = {.lex_state = 36, .external_lex_state = 2}, + [742] = {.lex_state = 36, .external_lex_state = 2}, + [743] = {.lex_state = 36, .external_lex_state = 2}, + [744] = {.lex_state = 36, .external_lex_state = 2}, + [745] = {.lex_state = 36, .external_lex_state = 2}, + [746] = {.lex_state = 36, .external_lex_state = 2}, + [747] = {.lex_state = 36, .external_lex_state = 2}, + [748] = {.lex_state = 36, .external_lex_state = 2}, + [749] = {.lex_state = 36, .external_lex_state = 2}, + [750] = {.lex_state = 36, .external_lex_state = 2}, + [751] = {.lex_state = 36, .external_lex_state = 2}, + [752] = {.lex_state = 36, .external_lex_state = 2}, + [753] = {.lex_state = 36, .external_lex_state = 2}, + [754] = {.lex_state = 36, .external_lex_state = 2}, + [755] = {.lex_state = 36, .external_lex_state = 2}, + [756] = {.lex_state = 36, .external_lex_state = 2}, + [757] = {.lex_state = 36, .external_lex_state = 2}, + [758] = {.lex_state = 36, .external_lex_state = 2}, + [759] = {.lex_state = 36, .external_lex_state = 2}, + [760] = {.lex_state = 36, .external_lex_state = 2}, + [761] = {.lex_state = 36, .external_lex_state = 2}, + [762] = {.lex_state = 36, .external_lex_state = 2}, + [763] = {.lex_state = 36, .external_lex_state = 2}, + [764] = {.lex_state = 36, .external_lex_state = 2}, + [765] = {.lex_state = 36, .external_lex_state = 2}, + [766] = {.lex_state = 36, .external_lex_state = 2}, + [767] = {.lex_state = 36, .external_lex_state = 2}, + [768] = {.lex_state = 36, .external_lex_state = 2}, + [769] = {.lex_state = 36, .external_lex_state = 2}, + [770] = {.lex_state = 36, .external_lex_state = 2}, + [771] = {.lex_state = 36, .external_lex_state = 2}, + [772] = {.lex_state = 36, .external_lex_state = 2}, + [773] = {.lex_state = 36, .external_lex_state = 2}, + [774] = {.lex_state = 36, .external_lex_state = 2}, + [775] = {.lex_state = 36, .external_lex_state = 2}, + [776] = {.lex_state = 36, .external_lex_state = 2}, + [777] = {.lex_state = 36, .external_lex_state = 2}, + [778] = {.lex_state = 36, .external_lex_state = 2}, + [779] = {.lex_state = 36, .external_lex_state = 2}, + [780] = {.lex_state = 36, .external_lex_state = 2}, + [781] = {.lex_state = 36, .external_lex_state = 2}, + [782] = {.lex_state = 36, .external_lex_state = 2}, + [783] = {.lex_state = 36, .external_lex_state = 2}, + [784] = {.lex_state = 36, .external_lex_state = 2}, + [785] = {.lex_state = 36, .external_lex_state = 2}, + [786] = {.lex_state = 36, .external_lex_state = 2}, + [787] = {.lex_state = 36, .external_lex_state = 2}, + [788] = {.lex_state = 36, .external_lex_state = 2}, + [789] = {.lex_state = 36, .external_lex_state = 2}, + [790] = {.lex_state = 43, .external_lex_state = 2}, + [791] = {.lex_state = 43, .external_lex_state = 2}, + [792] = {.lex_state = 3705}, + [793] = {.lex_state = 3706}, + [794] = {.lex_state = 2305, .external_lex_state = 2}, + [795] = {.lex_state = 3707}, + [796] = {.lex_state = 3707}, + [797] = {.lex_state = 3711}, + [798] = {.lex_state = 2305, .external_lex_state = 2}, + [799] = {.lex_state = 2305, .external_lex_state = 2}, + [800] = {.lex_state = 2305, .external_lex_state = 2}, + [801] = {.lex_state = 3857}, + [802] = {.lex_state = 3723}, + [803] = {.lex_state = 3855}, + [804] = {.lex_state = 2305, .external_lex_state = 2}, + [805] = {.lex_state = 3719}, + [806] = {.lex_state = 2305, .external_lex_state = 2}, + [807] = {.lex_state = 2305, .external_lex_state = 2}, + [808] = {.lex_state = 2305, .external_lex_state = 2}, + [809] = {.lex_state = 2305, .external_lex_state = 2}, + [810] = {.lex_state = 3709}, + [811] = {.lex_state = 2305, .external_lex_state = 2}, + [812] = {.lex_state = 3859}, + [813] = {.lex_state = 2305, .external_lex_state = 2}, + [814] = {.lex_state = 2305, .external_lex_state = 2}, + [815] = {.lex_state = 3713}, + [816] = {.lex_state = 3859}, + [817] = {.lex_state = 3713}, + [818] = {.lex_state = 3708}, + [819] = {.lex_state = 3708}, + [820] = {.lex_state = 3708}, + [821] = {.lex_state = 3708}, + [822] = {.lex_state = 3725}, + [823] = {.lex_state = 3725}, + [824] = {.lex_state = 2305, .external_lex_state = 2}, + [825] = {.lex_state = 3855}, + [826] = {.lex_state = 3857}, + [827] = {.lex_state = 2305, .external_lex_state = 2}, + [828] = {.lex_state = 2305, .external_lex_state = 2}, + [829] = {.lex_state = 3708}, + [830] = {.lex_state = 3727}, + [831] = {.lex_state = 3715}, + [832] = {.lex_state = 3727}, + [833] = {.lex_state = 3715}, + [834] = {.lex_state = 3727}, + [835] = {.lex_state = 3727}, + [836] = {.lex_state = 3861}, + [837] = {.lex_state = 3721}, + [838] = {.lex_state = 3715}, + [839] = {.lex_state = 3729}, + [840] = {.lex_state = 3715}, + [841] = {.lex_state = 3859}, + [842] = {.lex_state = 3715}, + [843] = {.lex_state = 3861}, + [844] = {.lex_state = 3859}, + [845] = {.lex_state = 3861}, + [846] = {.lex_state = 3727}, + [847] = {.lex_state = 3861}, + [848] = {.lex_state = 3861}, + [849] = {.lex_state = 3731}, + [850] = {.lex_state = 3861}, + [851] = {.lex_state = 3731}, + [852] = {.lex_state = 3861}, + [853] = {.lex_state = 3861}, + [854] = {.lex_state = 3861}, + [855] = {.lex_state = 3861}, + [856] = {.lex_state = 43, .external_lex_state = 2}, + [857] = {.lex_state = 43, .external_lex_state = 2}, + [858] = {.lex_state = 3733}, + [859] = {.lex_state = 3733}, + [860] = {.lex_state = 3733}, + [861] = {.lex_state = 3733}, + [862] = {.lex_state = 43, .external_lex_state = 2}, + [863] = {.lex_state = 43, .external_lex_state = 2}, + [864] = {.lex_state = 43, .external_lex_state = 2}, + [865] = {.lex_state = 43, .external_lex_state = 2}, + [866] = {.lex_state = 43, .external_lex_state = 2}, + [867] = {.lex_state = 43, .external_lex_state = 2}, + [868] = {.lex_state = 43, .external_lex_state = 2}, + [869] = {.lex_state = 3733}, + [870] = {.lex_state = 43, .external_lex_state = 2}, + [871] = {.lex_state = 43, .external_lex_state = 2}, + [872] = {.lex_state = 43, .external_lex_state = 2}, + [873] = {.lex_state = 43, .external_lex_state = 2}, + [874] = {.lex_state = 43, .external_lex_state = 2}, + [875] = {.lex_state = 43, .external_lex_state = 2}, + [876] = {.lex_state = 43, .external_lex_state = 2}, + [877] = {.lex_state = 43, .external_lex_state = 2}, + [878] = {.lex_state = 43, .external_lex_state = 2}, + [879] = {.lex_state = 43, .external_lex_state = 2}, + [880] = {.lex_state = 43, .external_lex_state = 2}, + [881] = {.lex_state = 43, .external_lex_state = 2}, + [882] = {.lex_state = 43, .external_lex_state = 2}, + [883] = {.lex_state = 43, .external_lex_state = 2}, + [884] = {.lex_state = 3735}, + [885] = {.lex_state = 3863}, + [886] = {.lex_state = 3863}, + [887] = {.lex_state = 3735}, + [888] = {.lex_state = 3717}, + [889] = {.lex_state = 3735}, + [890] = {.lex_state = 3735}, + [891] = {.lex_state = 3717}, + [892] = {.lex_state = 43, .external_lex_state = 2}, + [893] = {.lex_state = 43, .external_lex_state = 2}, + [894] = {.lex_state = 3863}, + [895] = {.lex_state = 3863}, + [896] = {.lex_state = 43, .external_lex_state = 2}, + [897] = {.lex_state = 43, .external_lex_state = 2}, + [898] = {.lex_state = 43, .external_lex_state = 2}, + [899] = {.lex_state = 43, .external_lex_state = 2}, + [900] = {.lex_state = 43, .external_lex_state = 2}, + [901] = {.lex_state = 43, .external_lex_state = 2}, + [902] = {.lex_state = 43, .external_lex_state = 2}, + [903] = {.lex_state = 43, .external_lex_state = 2}, + [904] = {.lex_state = 43, .external_lex_state = 2}, + [905] = {.lex_state = 43, .external_lex_state = 2}, + [906] = {.lex_state = 43, .external_lex_state = 2}, + [907] = {.lex_state = 43, .external_lex_state = 2}, + [908] = {.lex_state = 43, .external_lex_state = 2}, [909] = {.lex_state = 43, .external_lex_state = 2}, [910] = {.lex_state = 43, .external_lex_state = 2}, [911] = {.lex_state = 43, .external_lex_state = 2}, [912] = {.lex_state = 43, .external_lex_state = 2}, [913] = {.lex_state = 43, .external_lex_state = 2}, - [914] = {.lex_state = 43, .external_lex_state = 2}, - [915] = {.lex_state = 43, .external_lex_state = 2}, + [914] = {.lex_state = 3737}, + [915] = {.lex_state = 3737}, [916] = {.lex_state = 43, .external_lex_state = 2}, [917] = {.lex_state = 43, .external_lex_state = 2}, [918] = {.lex_state = 43, .external_lex_state = 2}, - [919] = {.lex_state = 43, .external_lex_state = 2}, - [920] = {.lex_state = 43, .external_lex_state = 2}, - [921] = {.lex_state = 43, .external_lex_state = 2}, - [922] = {.lex_state = 43, .external_lex_state = 2}, - [923] = {.lex_state = 43, .external_lex_state = 2}, - [924] = {.lex_state = 43, .external_lex_state = 2}, - [925] = {.lex_state = 43, .external_lex_state = 2}, - [926] = {.lex_state = 43, .external_lex_state = 2}, - [927] = {.lex_state = 43, .external_lex_state = 2}, - [928] = {.lex_state = 43, .external_lex_state = 2}, - [929] = {.lex_state = 43, .external_lex_state = 2}, - [930] = {.lex_state = 43, .external_lex_state = 2}, - [931] = {.lex_state = 43, .external_lex_state = 2}, - [932] = {.lex_state = 43, .external_lex_state = 2}, - [933] = {.lex_state = 43, .external_lex_state = 2}, - [934] = {.lex_state = 43, .external_lex_state = 2}, - [935] = {.lex_state = 43, .external_lex_state = 2}, - [936] = {.lex_state = 43, .external_lex_state = 2}, - [937] = {.lex_state = 43, .external_lex_state = 2}, - [938] = {.lex_state = 43, .external_lex_state = 2}, - [939] = {.lex_state = 43, .external_lex_state = 2}, - [940] = {.lex_state = 43, .external_lex_state = 2}, - [941] = {.lex_state = 43, .external_lex_state = 2}, - [942] = {.lex_state = 43, .external_lex_state = 2}, - [943] = {.lex_state = 43, .external_lex_state = 2}, - [944] = {.lex_state = 43, .external_lex_state = 2}, - [945] = {.lex_state = 43, .external_lex_state = 2}, - [946] = {.lex_state = 43, .external_lex_state = 2}, - [947] = {.lex_state = 43, .external_lex_state = 2}, - [948] = {.lex_state = 43, .external_lex_state = 2}, - [949] = {.lex_state = 43, .external_lex_state = 2}, - [950] = {.lex_state = 43, .external_lex_state = 2}, - [951] = {.lex_state = 43, .external_lex_state = 2}, - [952] = {.lex_state = 43, .external_lex_state = 2}, - [953] = {.lex_state = 43, .external_lex_state = 2}, - [954] = {.lex_state = 43, .external_lex_state = 2}, - [955] = {.lex_state = 43, .external_lex_state = 2}, - [956] = {.lex_state = 43, .external_lex_state = 2}, - [957] = {.lex_state = 43, .external_lex_state = 2}, - [958] = {.lex_state = 43, .external_lex_state = 2}, - [959] = {.lex_state = 43, .external_lex_state = 2}, - [960] = {.lex_state = 43, .external_lex_state = 2}, - [961] = {.lex_state = 43, .external_lex_state = 2}, - [962] = {.lex_state = 43, .external_lex_state = 2}, - [963] = {.lex_state = 43, .external_lex_state = 2}, - [964] = {.lex_state = 43, .external_lex_state = 2}, - [965] = {.lex_state = 43, .external_lex_state = 2}, - [966] = {.lex_state = 43, .external_lex_state = 2}, - [967] = {.lex_state = 43, .external_lex_state = 2}, - [968] = {.lex_state = 43, .external_lex_state = 2}, - [969] = {.lex_state = 43, .external_lex_state = 2}, - [970] = {.lex_state = 43, .external_lex_state = 2}, - [971] = {.lex_state = 43, .external_lex_state = 2}, - [972] = {.lex_state = 43, .external_lex_state = 2}, - [973] = {.lex_state = 43, .external_lex_state = 2}, - [974] = {.lex_state = 43, .external_lex_state = 2}, - [975] = {.lex_state = 43, .external_lex_state = 2}, - [976] = {.lex_state = 43, .external_lex_state = 2}, - [977] = {.lex_state = 43, .external_lex_state = 2}, - [978] = {.lex_state = 43, .external_lex_state = 2}, - [979] = {.lex_state = 43, .external_lex_state = 2}, - [980] = {.lex_state = 43, .external_lex_state = 2}, - [981] = {.lex_state = 43, .external_lex_state = 2}, - [982] = {.lex_state = 43, .external_lex_state = 2}, - [983] = {.lex_state = 43, .external_lex_state = 2}, - [984] = {.lex_state = 43, .external_lex_state = 2}, - [985] = {.lex_state = 43, .external_lex_state = 2}, - [986] = {.lex_state = 43, .external_lex_state = 2}, - [987] = {.lex_state = 43, .external_lex_state = 2}, - [988] = {.lex_state = 43, .external_lex_state = 2}, - [989] = {.lex_state = 43, .external_lex_state = 2}, - [990] = {.lex_state = 43, .external_lex_state = 2}, - [991] = {.lex_state = 43, .external_lex_state = 2}, - [992] = {.lex_state = 43, .external_lex_state = 2}, - [993] = {.lex_state = 43, .external_lex_state = 2}, - [994] = {.lex_state = 43, .external_lex_state = 2}, - [995] = {.lex_state = 43, .external_lex_state = 2}, - [996] = {.lex_state = 43, .external_lex_state = 2}, - [997] = {.lex_state = 43, .external_lex_state = 2}, - [998] = {.lex_state = 43, .external_lex_state = 2}, - [999] = {.lex_state = 43, .external_lex_state = 2}, - [1000] = {.lex_state = 43, .external_lex_state = 2}, - [1001] = {.lex_state = 43, .external_lex_state = 2}, - [1002] = {.lex_state = 43, .external_lex_state = 2}, - [1003] = {.lex_state = 43, .external_lex_state = 2}, - [1004] = {.lex_state = 43, .external_lex_state = 2}, - [1005] = {.lex_state = 43, .external_lex_state = 2}, - [1006] = {.lex_state = 43, .external_lex_state = 2}, - [1007] = {.lex_state = 43, .external_lex_state = 2}, - [1008] = {.lex_state = 43, .external_lex_state = 2}, - [1009] = {.lex_state = 43, .external_lex_state = 2}, - [1010] = {.lex_state = 43, .external_lex_state = 2}, - [1011] = {.lex_state = 43, .external_lex_state = 2}, - [1012] = {.lex_state = 43, .external_lex_state = 2}, - [1013] = {.lex_state = 43, .external_lex_state = 2}, - [1014] = {.lex_state = 43, .external_lex_state = 2}, - [1015] = {.lex_state = 43, .external_lex_state = 2}, - [1016] = {.lex_state = 43, .external_lex_state = 2}, - [1017] = {.lex_state = 43, .external_lex_state = 2}, - [1018] = {.lex_state = 43, .external_lex_state = 2}, - [1019] = {.lex_state = 43, .external_lex_state = 2}, - [1020] = {.lex_state = 43, .external_lex_state = 2}, - [1021] = {.lex_state = 43, .external_lex_state = 2}, - [1022] = {.lex_state = 43, .external_lex_state = 2}, - [1023] = {.lex_state = 43, .external_lex_state = 2}, - [1024] = {.lex_state = 43, .external_lex_state = 2}, - [1025] = {.lex_state = 43, .external_lex_state = 2}, - [1026] = {.lex_state = 43, .external_lex_state = 2}, - [1027] = {.lex_state = 43, .external_lex_state = 2}, - [1028] = {.lex_state = 43, .external_lex_state = 2}, - [1029] = {.lex_state = 43, .external_lex_state = 2}, - [1030] = {.lex_state = 43, .external_lex_state = 2}, - [1031] = {.lex_state = 43, .external_lex_state = 2}, - [1032] = {.lex_state = 43, .external_lex_state = 2}, - [1033] = {.lex_state = 43, .external_lex_state = 2}, - [1034] = {.lex_state = 43, .external_lex_state = 2}, - [1035] = {.lex_state = 43, .external_lex_state = 2}, - [1036] = {.lex_state = 43, .external_lex_state = 2}, - [1037] = {.lex_state = 43, .external_lex_state = 2}, - [1038] = {.lex_state = 43, .external_lex_state = 2}, - [1039] = {.lex_state = 43, .external_lex_state = 2}, - [1040] = {.lex_state = 43, .external_lex_state = 2}, - [1041] = {.lex_state = 43, .external_lex_state = 2}, - [1042] = {.lex_state = 43, .external_lex_state = 2}, - [1043] = {.lex_state = 43, .external_lex_state = 2}, - [1044] = {.lex_state = 43, .external_lex_state = 2}, - [1045] = {.lex_state = 43, .external_lex_state = 2}, - [1046] = {.lex_state = 43, .external_lex_state = 2}, - [1047] = {.lex_state = 43, .external_lex_state = 2}, - [1048] = {.lex_state = 43, .external_lex_state = 2}, - [1049] = {.lex_state = 43, .external_lex_state = 2}, - [1050] = {.lex_state = 43, .external_lex_state = 2}, - [1051] = {.lex_state = 43, .external_lex_state = 2}, - [1052] = {.lex_state = 43, .external_lex_state = 2}, - [1053] = {.lex_state = 43, .external_lex_state = 2}, - [1054] = {.lex_state = 43, .external_lex_state = 2}, - [1055] = {.lex_state = 43, .external_lex_state = 2}, - [1056] = {.lex_state = 43, .external_lex_state = 2}, - [1057] = {.lex_state = 43, .external_lex_state = 2}, - [1058] = {.lex_state = 43, .external_lex_state = 2}, - [1059] = {.lex_state = 43, .external_lex_state = 2}, - [1060] = {.lex_state = 43, .external_lex_state = 2}, - [1061] = {.lex_state = 43, .external_lex_state = 2}, - [1062] = {.lex_state = 43, .external_lex_state = 2}, - [1063] = {.lex_state = 43, .external_lex_state = 2}, - [1064] = {.lex_state = 43, .external_lex_state = 2}, + [919] = {.lex_state = 42, .external_lex_state = 2}, + [920] = {.lex_state = 42, .external_lex_state = 2}, + [921] = {.lex_state = 42, .external_lex_state = 2}, + [922] = {.lex_state = 42, .external_lex_state = 2}, + [923] = {.lex_state = 42, .external_lex_state = 2}, + [924] = {.lex_state = 42, .external_lex_state = 2}, + [925] = {.lex_state = 42, .external_lex_state = 2}, + [926] = {.lex_state = 42, .external_lex_state = 2}, + [927] = {.lex_state = 42, .external_lex_state = 2}, + [928] = {.lex_state = 42, .external_lex_state = 2}, + [929] = {.lex_state = 42, .external_lex_state = 2}, + [930] = {.lex_state = 42, .external_lex_state = 2}, + [931] = {.lex_state = 42, .external_lex_state = 2}, + [932] = {.lex_state = 42, .external_lex_state = 2}, + [933] = {.lex_state = 42, .external_lex_state = 2}, + [934] = {.lex_state = 42, .external_lex_state = 2}, + [935] = {.lex_state = 42, .external_lex_state = 2}, + [936] = {.lex_state = 42, .external_lex_state = 2}, + [937] = {.lex_state = 42, .external_lex_state = 2}, + [938] = {.lex_state = 42, .external_lex_state = 2}, + [939] = {.lex_state = 42, .external_lex_state = 2}, + [940] = {.lex_state = 42, .external_lex_state = 2}, + [941] = {.lex_state = 42, .external_lex_state = 2}, + [942] = {.lex_state = 42, .external_lex_state = 2}, + [943] = {.lex_state = 42, .external_lex_state = 2}, + [944] = {.lex_state = 42, .external_lex_state = 2}, + [945] = {.lex_state = 42, .external_lex_state = 2}, + [946] = {.lex_state = 42, .external_lex_state = 2}, + [947] = {.lex_state = 42, .external_lex_state = 2}, + [948] = {.lex_state = 42, .external_lex_state = 2}, + [949] = {.lex_state = 42, .external_lex_state = 2}, + [950] = {.lex_state = 42, .external_lex_state = 2}, + [951] = {.lex_state = 42, .external_lex_state = 2}, + [952] = {.lex_state = 42, .external_lex_state = 2}, + [953] = {.lex_state = 42, .external_lex_state = 2}, + [954] = {.lex_state = 42, .external_lex_state = 2}, + [955] = {.lex_state = 42, .external_lex_state = 2}, + [956] = {.lex_state = 42, .external_lex_state = 2}, + [957] = {.lex_state = 42, .external_lex_state = 2}, + [958] = {.lex_state = 42, .external_lex_state = 2}, + [959] = {.lex_state = 42, .external_lex_state = 2}, + [960] = {.lex_state = 42, .external_lex_state = 2}, + [961] = {.lex_state = 42, .external_lex_state = 2}, + [962] = {.lex_state = 42, .external_lex_state = 2}, + [963] = {.lex_state = 42, .external_lex_state = 2}, + [964] = {.lex_state = 42, .external_lex_state = 2}, + [965] = {.lex_state = 42, .external_lex_state = 2}, + [966] = {.lex_state = 42, .external_lex_state = 2}, + [967] = {.lex_state = 42, .external_lex_state = 2}, + [968] = {.lex_state = 42, .external_lex_state = 2}, + [969] = {.lex_state = 42, .external_lex_state = 2}, + [970] = {.lex_state = 42, .external_lex_state = 2}, + [971] = {.lex_state = 42, .external_lex_state = 2}, + [972] = {.lex_state = 42, .external_lex_state = 2}, + [973] = {.lex_state = 42, .external_lex_state = 2}, + [974] = {.lex_state = 42, .external_lex_state = 2}, + [975] = {.lex_state = 42, .external_lex_state = 2}, + [976] = {.lex_state = 42, .external_lex_state = 2}, + [977] = {.lex_state = 42, .external_lex_state = 2}, + [978] = {.lex_state = 42, .external_lex_state = 2}, + [979] = {.lex_state = 42, .external_lex_state = 2}, + [980] = {.lex_state = 42, .external_lex_state = 2}, + [981] = {.lex_state = 42, .external_lex_state = 2}, + [982] = {.lex_state = 42, .external_lex_state = 2}, + [983] = {.lex_state = 42, .external_lex_state = 2}, + [984] = {.lex_state = 42, .external_lex_state = 2}, + [985] = {.lex_state = 42, .external_lex_state = 2}, + [986] = {.lex_state = 42, .external_lex_state = 2}, + [987] = {.lex_state = 42, .external_lex_state = 2}, + [988] = {.lex_state = 42, .external_lex_state = 2}, + [989] = {.lex_state = 42, .external_lex_state = 2}, + [990] = {.lex_state = 42, .external_lex_state = 2}, + [991] = {.lex_state = 42, .external_lex_state = 2}, + [992] = {.lex_state = 42, .external_lex_state = 2}, + [993] = {.lex_state = 42, .external_lex_state = 2}, + [994] = {.lex_state = 42, .external_lex_state = 2}, + [995] = {.lex_state = 42, .external_lex_state = 2}, + [996] = {.lex_state = 42, .external_lex_state = 2}, + [997] = {.lex_state = 42, .external_lex_state = 2}, + [998] = {.lex_state = 42, .external_lex_state = 2}, + [999] = {.lex_state = 42, .external_lex_state = 2}, + [1000] = {.lex_state = 42, .external_lex_state = 2}, + [1001] = {.lex_state = 42, .external_lex_state = 2}, + [1002] = {.lex_state = 42, .external_lex_state = 2}, + [1003] = {.lex_state = 42, .external_lex_state = 2}, + [1004] = {.lex_state = 42, .external_lex_state = 2}, + [1005] = {.lex_state = 42, .external_lex_state = 2}, + [1006] = {.lex_state = 42, .external_lex_state = 2}, + [1007] = {.lex_state = 42, .external_lex_state = 2}, + [1008] = {.lex_state = 42, .external_lex_state = 2}, + [1009] = {.lex_state = 42, .external_lex_state = 2}, + [1010] = {.lex_state = 42, .external_lex_state = 2}, + [1011] = {.lex_state = 42, .external_lex_state = 2}, + [1012] = {.lex_state = 42, .external_lex_state = 2}, + [1013] = {.lex_state = 42, .external_lex_state = 2}, + [1014] = {.lex_state = 42, .external_lex_state = 2}, + [1015] = {.lex_state = 42, .external_lex_state = 2}, + [1016] = {.lex_state = 42, .external_lex_state = 2}, + [1017] = {.lex_state = 42, .external_lex_state = 2}, + [1018] = {.lex_state = 42, .external_lex_state = 2}, + [1019] = {.lex_state = 42, .external_lex_state = 2}, + [1020] = {.lex_state = 42, .external_lex_state = 2}, + [1021] = {.lex_state = 42, .external_lex_state = 2}, + [1022] = {.lex_state = 42, .external_lex_state = 2}, + [1023] = {.lex_state = 42, .external_lex_state = 2}, + [1024] = {.lex_state = 42, .external_lex_state = 2}, + [1025] = {.lex_state = 42, .external_lex_state = 2}, + [1026] = {.lex_state = 42, .external_lex_state = 2}, + [1027] = {.lex_state = 42, .external_lex_state = 2}, + [1028] = {.lex_state = 42, .external_lex_state = 2}, + [1029] = {.lex_state = 42, .external_lex_state = 2}, + [1030] = {.lex_state = 42, .external_lex_state = 2}, + [1031] = {.lex_state = 42, .external_lex_state = 2}, + [1032] = {.lex_state = 42, .external_lex_state = 2}, + [1033] = {.lex_state = 42, .external_lex_state = 2}, + [1034] = {.lex_state = 42, .external_lex_state = 2}, + [1035] = {.lex_state = 42, .external_lex_state = 2}, + [1036] = {.lex_state = 42, .external_lex_state = 2}, + [1037] = {.lex_state = 42, .external_lex_state = 2}, + [1038] = {.lex_state = 42, .external_lex_state = 2}, + [1039] = {.lex_state = 42, .external_lex_state = 2}, + [1040] = {.lex_state = 42, .external_lex_state = 2}, + [1041] = {.lex_state = 42, .external_lex_state = 2}, + [1042] = {.lex_state = 42, .external_lex_state = 2}, + [1043] = {.lex_state = 42, .external_lex_state = 2}, + [1044] = {.lex_state = 42, .external_lex_state = 2}, + [1045] = {.lex_state = 42, .external_lex_state = 2}, + [1046] = {.lex_state = 42, .external_lex_state = 2}, + [1047] = {.lex_state = 42, .external_lex_state = 2}, + [1048] = {.lex_state = 42, .external_lex_state = 2}, + [1049] = {.lex_state = 42, .external_lex_state = 2}, + [1050] = {.lex_state = 42, .external_lex_state = 2}, + [1051] = {.lex_state = 42, .external_lex_state = 2}, + [1052] = {.lex_state = 42, .external_lex_state = 2}, + [1053] = {.lex_state = 42, .external_lex_state = 2}, + [1054] = {.lex_state = 42, .external_lex_state = 2}, + [1055] = {.lex_state = 42, .external_lex_state = 2}, + [1056] = {.lex_state = 42, .external_lex_state = 2}, + [1057] = {.lex_state = 42, .external_lex_state = 2}, + [1058] = {.lex_state = 42, .external_lex_state = 2}, + [1059] = {.lex_state = 42, .external_lex_state = 2}, + [1060] = {.lex_state = 42, .external_lex_state = 2}, + [1061] = {.lex_state = 42, .external_lex_state = 2}, + [1062] = {.lex_state = 42, .external_lex_state = 2}, + [1063] = {.lex_state = 42, .external_lex_state = 2}, + [1064] = {.lex_state = 42, .external_lex_state = 2}, [1065] = {.lex_state = 42, .external_lex_state = 2}, - [1066] = {.lex_state = 14, .external_lex_state = 2}, - [1067] = {.lex_state = 14, .external_lex_state = 2}, - [1068] = {.lex_state = 43, .external_lex_state = 2}, - [1069] = {.lex_state = 43, .external_lex_state = 2}, - [1070] = {.lex_state = 43, .external_lex_state = 2}, - [1071] = {.lex_state = 43, .external_lex_state = 2}, - [1072] = {.lex_state = 43, .external_lex_state = 2}, - [1073] = {.lex_state = 43, .external_lex_state = 2}, - [1074] = {.lex_state = 43, .external_lex_state = 2}, - [1075] = {.lex_state = 43, .external_lex_state = 2}, - [1076] = {.lex_state = 43, .external_lex_state = 2}, - [1077] = {.lex_state = 43, .external_lex_state = 2}, - [1078] = {.lex_state = 43, .external_lex_state = 2}, - [1079] = {.lex_state = 43, .external_lex_state = 2}, - [1080] = {.lex_state = 43, .external_lex_state = 2}, - [1081] = {.lex_state = 43, .external_lex_state = 2}, - [1082] = {.lex_state = 43, .external_lex_state = 2}, - [1083] = {.lex_state = 43, .external_lex_state = 2}, - [1084] = {.lex_state = 43, .external_lex_state = 2}, - [1085] = {.lex_state = 43, .external_lex_state = 2}, - [1086] = {.lex_state = 43, .external_lex_state = 2}, - [1087] = {.lex_state = 43, .external_lex_state = 2}, - [1088] = {.lex_state = 43, .external_lex_state = 2}, - [1089] = {.lex_state = 43, .external_lex_state = 2}, - [1090] = {.lex_state = 43, .external_lex_state = 2}, - [1091] = {.lex_state = 43, .external_lex_state = 2}, - [1092] = {.lex_state = 43, .external_lex_state = 2}, - [1093] = {.lex_state = 43, .external_lex_state = 2}, - [1094] = {.lex_state = 43, .external_lex_state = 2}, - [1095] = {.lex_state = 43, .external_lex_state = 2}, - [1096] = {.lex_state = 43, .external_lex_state = 2}, - [1097] = {.lex_state = 43, .external_lex_state = 2}, - [1098] = {.lex_state = 43, .external_lex_state = 2}, - [1099] = {.lex_state = 43, .external_lex_state = 2}, - [1100] = {.lex_state = 43, .external_lex_state = 2}, - [1101] = {.lex_state = 43, .external_lex_state = 2}, - [1102] = {.lex_state = 43, .external_lex_state = 2}, - [1103] = {.lex_state = 43, .external_lex_state = 2}, - [1104] = {.lex_state = 43, .external_lex_state = 2}, - [1105] = {.lex_state = 43, .external_lex_state = 2}, - [1106] = {.lex_state = 43, .external_lex_state = 2}, - [1107] = {.lex_state = 43, .external_lex_state = 2}, - [1108] = {.lex_state = 743, .external_lex_state = 2}, - [1109] = {.lex_state = 43, .external_lex_state = 2}, - [1110] = {.lex_state = 43, .external_lex_state = 2}, - [1111] = {.lex_state = 43, .external_lex_state = 2}, - [1112] = {.lex_state = 43, .external_lex_state = 2}, - [1113] = {.lex_state = 43, .external_lex_state = 2}, - [1114] = {.lex_state = 43, .external_lex_state = 2}, - [1115] = {.lex_state = 43, .external_lex_state = 2}, - [1116] = {.lex_state = 43, .external_lex_state = 2}, - [1117] = {.lex_state = 43, .external_lex_state = 2}, - [1118] = {.lex_state = 43, .external_lex_state = 2}, - [1119] = {.lex_state = 43, .external_lex_state = 2}, - [1120] = {.lex_state = 43, .external_lex_state = 2}, - [1121] = {.lex_state = 43, .external_lex_state = 2}, - [1122] = {.lex_state = 43, .external_lex_state = 2}, - [1123] = {.lex_state = 43, .external_lex_state = 2}, - [1124] = {.lex_state = 43, .external_lex_state = 2}, - [1125] = {.lex_state = 43, .external_lex_state = 2}, - [1126] = {.lex_state = 43, .external_lex_state = 2}, - [1127] = {.lex_state = 43, .external_lex_state = 2}, - [1128] = {.lex_state = 43, .external_lex_state = 2}, - [1129] = {.lex_state = 43, .external_lex_state = 2}, - [1130] = {.lex_state = 43, .external_lex_state = 2}, - [1131] = {.lex_state = 43, .external_lex_state = 2}, - [1132] = {.lex_state = 43, .external_lex_state = 2}, - [1133] = {.lex_state = 43, .external_lex_state = 2}, - [1134] = {.lex_state = 43, .external_lex_state = 2}, - [1135] = {.lex_state = 43, .external_lex_state = 2}, - [1136] = {.lex_state = 43, .external_lex_state = 2}, - [1137] = {.lex_state = 43, .external_lex_state = 2}, - [1138] = {.lex_state = 43, .external_lex_state = 2}, - [1139] = {.lex_state = 43, .external_lex_state = 2}, - [1140] = {.lex_state = 43, .external_lex_state = 2}, - [1141] = {.lex_state = 43, .external_lex_state = 2}, - [1142] = {.lex_state = 43, .external_lex_state = 2}, - [1143] = {.lex_state = 743, .external_lex_state = 2}, - [1144] = {.lex_state = 43, .external_lex_state = 2}, - [1145] = {.lex_state = 43, .external_lex_state = 2}, - [1146] = {.lex_state = 43, .external_lex_state = 2}, - [1147] = {.lex_state = 43, .external_lex_state = 2}, - [1148] = {.lex_state = 43, .external_lex_state = 2}, - [1149] = {.lex_state = 43, .external_lex_state = 2}, - [1150] = {.lex_state = 43, .external_lex_state = 2}, - [1151] = {.lex_state = 43, .external_lex_state = 2}, - [1152] = {.lex_state = 43, .external_lex_state = 2}, - [1153] = {.lex_state = 43, .external_lex_state = 2}, - [1154] = {.lex_state = 43, .external_lex_state = 2}, - [1155] = {.lex_state = 43, .external_lex_state = 2}, - [1156] = {.lex_state = 43, .external_lex_state = 2}, - [1157] = {.lex_state = 743, .external_lex_state = 2}, - [1158] = {.lex_state = 43, .external_lex_state = 2}, - [1159] = {.lex_state = 43, .external_lex_state = 2}, - [1160] = {.lex_state = 43, .external_lex_state = 2}, - [1161] = {.lex_state = 43, .external_lex_state = 2}, - [1162] = {.lex_state = 43, .external_lex_state = 2}, - [1163] = {.lex_state = 43, .external_lex_state = 2}, - [1164] = {.lex_state = 43, .external_lex_state = 2}, - [1165] = {.lex_state = 43, .external_lex_state = 2}, - [1166] = {.lex_state = 743, .external_lex_state = 2}, - [1167] = {.lex_state = 43, .external_lex_state = 2}, - [1168] = {.lex_state = 43, .external_lex_state = 2}, - [1169] = {.lex_state = 40, .external_lex_state = 2}, - [1170] = {.lex_state = 743, .external_lex_state = 2}, - [1171] = {.lex_state = 40, .external_lex_state = 2}, - [1172] = {.lex_state = 40, .external_lex_state = 2}, - [1173] = {.lex_state = 228, .external_lex_state = 2}, - [1174] = {.lex_state = 1825}, - [1175] = {.lex_state = 1813}, - [1176] = {.lex_state = 1809}, - [1177] = {.lex_state = 41, .external_lex_state = 2}, - [1178] = {.lex_state = 36, .external_lex_state = 2}, - [1179] = {.lex_state = 45, .external_lex_state = 2}, - [1180] = {.lex_state = 36, .external_lex_state = 2}, - [1181] = {.lex_state = 40, .external_lex_state = 2}, - [1182] = {.lex_state = 1949}, - [1183] = {.lex_state = 36, .external_lex_state = 2}, - [1184] = {.lex_state = 45, .external_lex_state = 2}, - [1185] = {.lex_state = 1803}, - [1186] = {.lex_state = 40, .external_lex_state = 2}, - [1187] = {.lex_state = 36, .external_lex_state = 2}, - [1188] = {.lex_state = 45, .external_lex_state = 2}, - [1189] = {.lex_state = 45, .external_lex_state = 2}, - [1190] = {.lex_state = 228, .external_lex_state = 2}, - [1191] = {.lex_state = 1955}, - [1192] = {.lex_state = 41, .external_lex_state = 2}, - [1193] = {.lex_state = 1949}, - [1194] = {.lex_state = 1951}, - [1195] = {.lex_state = 1951}, - [1196] = {.lex_state = 1805}, - [1197] = {.lex_state = 1955}, - [1198] = {.lex_state = 36, .external_lex_state = 2}, - [1199] = {.lex_state = 40, .external_lex_state = 2}, - [1200] = {.lex_state = 36, .external_lex_state = 2}, - [1201] = {.lex_state = 1815}, - [1202] = {.lex_state = 1815}, - [1203] = {.lex_state = 36, .external_lex_state = 2}, - [1204] = {.lex_state = 36, .external_lex_state = 2}, - [1205] = {.lex_state = 1805}, - [1206] = {.lex_state = 240, .external_lex_state = 2}, - [1207] = {.lex_state = 1819}, - [1208] = {.lex_state = 1953}, - [1209] = {.lex_state = 1953}, - [1210] = {.lex_state = 1807}, - [1211] = {.lex_state = 1807}, - [1212] = {.lex_state = 240, .external_lex_state = 2}, - [1213] = {.lex_state = 1953}, - [1214] = {.lex_state = 1807}, - [1215] = {.lex_state = 1817}, - [1216] = {.lex_state = 1953}, - [1217] = {.lex_state = 1951}, - [1218] = {.lex_state = 1817}, - [1219] = {.lex_state = 1807}, - [1220] = {.lex_state = 1817}, - [1221] = {.lex_state = 1953}, - [1222] = {.lex_state = 240, .external_lex_state = 2}, - [1223] = {.lex_state = 1807}, - [1224] = {.lex_state = 1817}, - [1225] = {.lex_state = 1951}, - [1226] = {.lex_state = 1817}, - [1227] = {.lex_state = 240, .external_lex_state = 2}, - [1228] = {.lex_state = 240, .external_lex_state = 2}, - [1229] = {.lex_state = 240, .external_lex_state = 2}, - [1230] = {.lex_state = 1827}, - [1231] = {.lex_state = 36, .external_lex_state = 2}, - [1232] = {.lex_state = 1821}, - [1233] = {.lex_state = 45, .external_lex_state = 2}, - [1234] = {.lex_state = 36, .external_lex_state = 2}, - [1235] = {.lex_state = 36, .external_lex_state = 2}, - [1236] = {.lex_state = 1953}, - [1237] = {.lex_state = 1953}, - [1238] = {.lex_state = 236, .external_lex_state = 2}, - [1239] = {.lex_state = 1953}, - [1240] = {.lex_state = 1821}, - [1241] = {.lex_state = 45, .external_lex_state = 2}, - [1242] = {.lex_state = 36, .external_lex_state = 2}, - [1243] = {.lex_state = 36, .external_lex_state = 2}, - [1244] = {.lex_state = 36, .external_lex_state = 2}, - [1245] = {.lex_state = 1953}, - [1246] = {.lex_state = 1953}, - [1247] = {.lex_state = 236, .external_lex_state = 2}, - [1248] = {.lex_state = 36, .external_lex_state = 2}, - [1249] = {.lex_state = 36, .external_lex_state = 2}, - [1250] = {.lex_state = 36, .external_lex_state = 2}, - [1251] = {.lex_state = 725, .external_lex_state = 2}, - [1252] = {.lex_state = 42, .external_lex_state = 2}, - [1253] = {.lex_state = 1823}, - [1254] = {.lex_state = 42, .external_lex_state = 2}, - [1255] = {.lex_state = 1823}, - [1256] = {.lex_state = 1823}, - [1257] = {.lex_state = 1823}, - [1258] = {.lex_state = 1823}, - [1259] = {.lex_state = 724, .external_lex_state = 2}, - [1260] = {.lex_state = 726, .external_lex_state = 2}, - [1261] = {.lex_state = 739, .external_lex_state = 2}, - [1262] = {.lex_state = 735, .external_lex_state = 2}, - [1263] = {.lex_state = 724, .external_lex_state = 2}, - [1264] = {.lex_state = 725, .external_lex_state = 2}, - [1265] = {.lex_state = 42, .external_lex_state = 2}, - [1266] = {.lex_state = 42, .external_lex_state = 2}, - [1267] = {.lex_state = 42, .external_lex_state = 2}, - [1268] = {.lex_state = 42, .external_lex_state = 2}, - [1269] = {.lex_state = 767, .external_lex_state = 2}, - [1270] = {.lex_state = 42, .external_lex_state = 2}, - [1271] = {.lex_state = 42, .external_lex_state = 2}, - [1272] = {.lex_state = 42, .external_lex_state = 2}, - [1273] = {.lex_state = 42, .external_lex_state = 2}, - [1274] = {.lex_state = 42, .external_lex_state = 2}, - [1275] = {.lex_state = 42, .external_lex_state = 2}, - [1276] = {.lex_state = 42, .external_lex_state = 2}, - [1277] = {.lex_state = 42, .external_lex_state = 2}, - [1278] = {.lex_state = 42, .external_lex_state = 2}, - [1279] = {.lex_state = 763, .external_lex_state = 2}, - [1280] = {.lex_state = 42, .external_lex_state = 2}, - [1281] = {.lex_state = 42, .external_lex_state = 2}, - [1282] = {.lex_state = 42, .external_lex_state = 2}, - [1283] = {.lex_state = 42, .external_lex_state = 2}, - [1284] = {.lex_state = 42, .external_lex_state = 2}, - [1285] = {.lex_state = 42, .external_lex_state = 2}, - [1286] = {.lex_state = 45, .external_lex_state = 2}, - [1287] = {.lex_state = 42, .external_lex_state = 2}, - [1288] = {.lex_state = 42, .external_lex_state = 2}, - [1289] = {.lex_state = 42, .external_lex_state = 2}, - [1290] = {.lex_state = 42, .external_lex_state = 2}, - [1291] = {.lex_state = 42, .external_lex_state = 2}, - [1292] = {.lex_state = 42, .external_lex_state = 2}, - [1293] = {.lex_state = 738, .external_lex_state = 2}, - [1294] = {.lex_state = 42, .external_lex_state = 2}, - [1295] = {.lex_state = 728, .external_lex_state = 2}, - [1296] = {.lex_state = 42, .external_lex_state = 2}, - [1297] = {.lex_state = 739, .external_lex_state = 2}, - [1298] = {.lex_state = 42, .external_lex_state = 2}, - [1299] = {.lex_state = 42, .external_lex_state = 2}, - [1300] = {.lex_state = 42, .external_lex_state = 2}, - [1301] = {.lex_state = 42, .external_lex_state = 2}, - [1302] = {.lex_state = 42, .external_lex_state = 2}, - [1303] = {.lex_state = 42, .external_lex_state = 2}, - [1304] = {.lex_state = 42, .external_lex_state = 2}, - [1305] = {.lex_state = 42, .external_lex_state = 2}, - [1306] = {.lex_state = 728, .external_lex_state = 2}, - [1307] = {.lex_state = 42, .external_lex_state = 2}, - [1308] = {.lex_state = 735, .external_lex_state = 2}, - [1309] = {.lex_state = 42, .external_lex_state = 2}, - [1310] = {.lex_state = 724, .external_lex_state = 2}, - [1311] = {.lex_state = 726, .external_lex_state = 2}, - [1312] = {.lex_state = 42, .external_lex_state = 2}, - [1313] = {.lex_state = 42, .external_lex_state = 2}, - [1314] = {.lex_state = 42, .external_lex_state = 2}, - [1315] = {.lex_state = 42, .external_lex_state = 2}, - [1316] = {.lex_state = 42, .external_lex_state = 2}, - [1317] = {.lex_state = 42, .external_lex_state = 2}, - [1318] = {.lex_state = 724, .external_lex_state = 2}, - [1319] = {.lex_state = 42, .external_lex_state = 2}, - [1320] = {.lex_state = 738, .external_lex_state = 2}, - [1321] = {.lex_state = 42, .external_lex_state = 2}, - [1322] = {.lex_state = 738, .external_lex_state = 2}, - [1323] = {.lex_state = 738, .external_lex_state = 2}, - [1324] = {.lex_state = 45, .external_lex_state = 2}, - [1325] = {.lex_state = 42, .external_lex_state = 2}, - [1326] = {.lex_state = 42, .external_lex_state = 2}, - [1327] = {.lex_state = 710}, - [1328] = {.lex_state = 42, .external_lex_state = 2}, - [1329] = {.lex_state = 42, .external_lex_state = 2}, - [1330] = {.lex_state = 42, .external_lex_state = 2}, - [1331] = {.lex_state = 42, .external_lex_state = 2}, - [1332] = {.lex_state = 42, .external_lex_state = 2}, - [1333] = {.lex_state = 729, .external_lex_state = 2}, - [1334] = {.lex_state = 42, .external_lex_state = 2}, - [1335] = {.lex_state = 42, .external_lex_state = 2}, - [1336] = {.lex_state = 42, .external_lex_state = 2}, - [1337] = {.lex_state = 42, .external_lex_state = 2}, - [1338] = {.lex_state = 42, .external_lex_state = 2}, - [1339] = {.lex_state = 10}, - [1340] = {.lex_state = 42, .external_lex_state = 2}, - [1341] = {.lex_state = 710}, - [1342] = {.lex_state = 1829}, - [1343] = {.lex_state = 767, .external_lex_state = 2}, - [1344] = {.lex_state = 729, .external_lex_state = 2}, - [1345] = {.lex_state = 763, .external_lex_state = 2}, - [1346] = {.lex_state = 738, .external_lex_state = 2}, - [1347] = {.lex_state = 738, .external_lex_state = 2}, - [1348] = {.lex_state = 10}, - [1349] = {.lex_state = 728, .external_lex_state = 2}, - [1350] = {.lex_state = 710}, - [1351] = {.lex_state = 728, .external_lex_state = 2}, - [1352] = {.lex_state = 1811}, - [1353] = {.lex_state = 758, .external_lex_state = 2}, - [1354] = {.lex_state = 1811}, - [1355] = {.lex_state = 10}, - [1356] = {.lex_state = 738, .external_lex_state = 2}, - [1357] = {.lex_state = 710}, - [1358] = {.lex_state = 764, .external_lex_state = 2}, - [1359] = {.lex_state = 729, .external_lex_state = 2}, - [1360] = {.lex_state = 1957}, - [1361] = {.lex_state = 727, .external_lex_state = 2}, - [1362] = {.lex_state = 1957}, - [1363] = {.lex_state = 736, .external_lex_state = 2}, - [1364] = {.lex_state = 729, .external_lex_state = 2}, - [1365] = {.lex_state = 710}, - [1366] = {.lex_state = 45, .external_lex_state = 2}, - [1367] = {.lex_state = 710}, - [1368] = {.lex_state = 758, .external_lex_state = 2}, - [1369] = {.lex_state = 710}, - [1370] = {.lex_state = 729, .external_lex_state = 2}, - [1371] = {.lex_state = 729, .external_lex_state = 2}, - [1372] = {.lex_state = 758, .external_lex_state = 2}, - [1373] = {.lex_state = 738, .external_lex_state = 2}, - [1374] = {.lex_state = 764, .external_lex_state = 2}, - [1375] = {.lex_state = 710}, - [1376] = {.lex_state = 1829}, - [1377] = {.lex_state = 758, .external_lex_state = 2}, - [1378] = {.lex_state = 765, .external_lex_state = 2}, - [1379] = {.lex_state = 764, .external_lex_state = 2}, - [1380] = {.lex_state = 727, .external_lex_state = 2}, - [1381] = {.lex_state = 10}, - [1382] = {.lex_state = 765, .external_lex_state = 2}, - [1383] = {.lex_state = 765, .external_lex_state = 2}, - [1384] = {.lex_state = 758, .external_lex_state = 2}, - [1385] = {.lex_state = 1957}, - [1386] = {.lex_state = 729, .external_lex_state = 2}, - [1387] = {.lex_state = 764, .external_lex_state = 2}, - [1388] = {.lex_state = 10}, - [1389] = {.lex_state = 765, .external_lex_state = 2}, - [1390] = {.lex_state = 730, .external_lex_state = 2}, - [1391] = {.lex_state = 1957}, - [1392] = {.lex_state = 736, .external_lex_state = 2}, - [1393] = {.lex_state = 710}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 42, .external_lex_state = 2}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 730, .external_lex_state = 2}, - [1398] = {.lex_state = 710}, - [1399] = {.lex_state = 729, .external_lex_state = 2}, - [1400] = {.lex_state = 710}, - [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 710}, - [1403] = {.lex_state = 758, .external_lex_state = 2}, - [1404] = {.lex_state = 765, .external_lex_state = 2}, - [1405] = {.lex_state = 10}, - [1406] = {.lex_state = 729, .external_lex_state = 2}, - [1407] = {.lex_state = 758, .external_lex_state = 2}, - [1408] = {.lex_state = 758, .external_lex_state = 2}, - [1409] = {.lex_state = 729, .external_lex_state = 2}, - [1410] = {.lex_state = 756, .external_lex_state = 2}, - [1411] = {.lex_state = 756, .external_lex_state = 2}, - [1412] = {.lex_state = 710}, - [1413] = {.lex_state = 710}, - [1414] = {.lex_state = 710}, - [1415] = {.lex_state = 710}, - [1416] = {.lex_state = 710}, - [1417] = {.lex_state = 710}, - [1418] = {.lex_state = 710}, - [1419] = {.lex_state = 710}, - [1420] = {.lex_state = 710}, - [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 697}, - [1423] = {.lex_state = 699}, - [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 731, .external_lex_state = 2}, - [1427] = {.lex_state = 731, .external_lex_state = 2}, - [1428] = {.lex_state = 757, .external_lex_state = 2}, - [1429] = {.lex_state = 765, .external_lex_state = 2}, - [1430] = {.lex_state = 730, .external_lex_state = 2}, - [1431] = {.lex_state = 758, .external_lex_state = 2}, - [1432] = {.lex_state = 758, .external_lex_state = 2}, - [1433] = {.lex_state = 731, .external_lex_state = 2}, - [1434] = {.lex_state = 731, .external_lex_state = 2}, - [1435] = {.lex_state = 731, .external_lex_state = 2}, - [1436] = {.lex_state = 731, .external_lex_state = 2}, - [1437] = {.lex_state = 756, .external_lex_state = 2}, - [1438] = {.lex_state = 756, .external_lex_state = 2}, - [1439] = {.lex_state = 1831}, - [1440] = {.lex_state = 765, .external_lex_state = 2}, - [1441] = {.lex_state = 1831}, - [1442] = {.lex_state = 765, .external_lex_state = 2}, - [1443] = {.lex_state = 765, .external_lex_state = 2}, - [1444] = {.lex_state = 765, .external_lex_state = 2}, - [1445] = {.lex_state = 756, .external_lex_state = 2}, - [1446] = {.lex_state = 755, .external_lex_state = 2}, - [1447] = {.lex_state = 756, .external_lex_state = 2}, - [1448] = {.lex_state = 730, .external_lex_state = 2}, - [1449] = {.lex_state = 710}, - [1450] = {.lex_state = 701}, - [1451] = {.lex_state = 761, .external_lex_state = 2}, - [1452] = {.lex_state = 761, .external_lex_state = 2}, - [1453] = {.lex_state = 761, .external_lex_state = 2}, - [1454] = {.lex_state = 761, .external_lex_state = 2}, - [1455] = {.lex_state = 701}, - [1456] = {.lex_state = 761, .external_lex_state = 2}, - [1457] = {.lex_state = 731, .external_lex_state = 2}, - [1458] = {.lex_state = 761, .external_lex_state = 2}, - [1459] = {.lex_state = 731, .external_lex_state = 2}, - [1460] = {.lex_state = 761, .external_lex_state = 2}, - [1461] = {.lex_state = 761, .external_lex_state = 2}, - [1462] = {.lex_state = 731, .external_lex_state = 2}, - [1463] = {.lex_state = 710}, - [1464] = {.lex_state = 731, .external_lex_state = 2}, - [1465] = {.lex_state = 761, .external_lex_state = 2}, - [1466] = {.lex_state = 757, .external_lex_state = 2}, - [1467] = {.lex_state = 761, .external_lex_state = 2}, - [1468] = {.lex_state = 756, .external_lex_state = 2}, - [1469] = {.lex_state = 756, .external_lex_state = 2}, - [1470] = {.lex_state = 761, .external_lex_state = 2}, - [1471] = {.lex_state = 761, .external_lex_state = 2}, - [1472] = {.lex_state = 761, .external_lex_state = 2}, - [1473] = {.lex_state = 761, .external_lex_state = 2}, - [1474] = {.lex_state = 761, .external_lex_state = 2}, - [1475] = {.lex_state = 761, .external_lex_state = 2}, - [1476] = {.lex_state = 732, .external_lex_state = 2}, - [1477] = {.lex_state = 756, .external_lex_state = 2}, - [1478] = {.lex_state = 737, .external_lex_state = 2}, - [1479] = {.lex_state = 756, .external_lex_state = 2}, - [1480] = {.lex_state = 756, .external_lex_state = 2}, - [1481] = {.lex_state = 758, .external_lex_state = 2}, - [1482] = {.lex_state = 756, .external_lex_state = 2}, - [1483] = {.lex_state = 761, .external_lex_state = 2}, - [1484] = {.lex_state = 710}, - [1485] = {.lex_state = 758, .external_lex_state = 2}, - [1486] = {.lex_state = 758, .external_lex_state = 2}, - [1487] = {.lex_state = 761, .external_lex_state = 2}, - [1488] = {.lex_state = 731, .external_lex_state = 2}, - [1489] = {.lex_state = 761, .external_lex_state = 2}, - [1490] = {.lex_state = 761, .external_lex_state = 2}, - [1491] = {.lex_state = 761, .external_lex_state = 2}, - [1492] = {.lex_state = 10}, - [1493] = {.lex_state = 731, .external_lex_state = 2}, - [1494] = {.lex_state = 710}, - [1495] = {.lex_state = 753, .external_lex_state = 2}, - [1496] = {.lex_state = 710}, - [1497] = {.lex_state = 753, .external_lex_state = 2}, - [1498] = {.lex_state = 761, .external_lex_state = 2}, - [1499] = {.lex_state = 755, .external_lex_state = 2}, - [1500] = {.lex_state = 761, .external_lex_state = 2}, - [1501] = {.lex_state = 10}, - [1502] = {.lex_state = 754, .external_lex_state = 2}, - [1503] = {.lex_state = 761, .external_lex_state = 2}, - [1504] = {.lex_state = 754, .external_lex_state = 2}, - [1505] = {.lex_state = 754, .external_lex_state = 2}, - [1506] = {.lex_state = 754, .external_lex_state = 2}, - [1507] = {.lex_state = 753, .external_lex_state = 2}, - [1508] = {.lex_state = 761, .external_lex_state = 2}, - [1509] = {.lex_state = 761, .external_lex_state = 2}, - [1510] = {.lex_state = 709}, - [1511] = {.lex_state = 761, .external_lex_state = 2}, - [1512] = {.lex_state = 697}, - [1513] = {.lex_state = 761, .external_lex_state = 2}, - [1514] = {.lex_state = 761, .external_lex_state = 2}, - [1515] = {.lex_state = 754, .external_lex_state = 2}, - [1516] = {.lex_state = 754, .external_lex_state = 2}, - [1517] = {.lex_state = 754, .external_lex_state = 2}, - [1518] = {.lex_state = 699}, - [1519] = {.lex_state = 758, .external_lex_state = 2}, - [1520] = {.lex_state = 761, .external_lex_state = 2}, - [1521] = {.lex_state = 753, .external_lex_state = 2}, - [1522] = {.lex_state = 761, .external_lex_state = 2}, - [1523] = {.lex_state = 761, .external_lex_state = 2}, - [1524] = {.lex_state = 758, .external_lex_state = 2}, - [1525] = {.lex_state = 758, .external_lex_state = 2}, - [1526] = {.lex_state = 761, .external_lex_state = 2}, - [1527] = {.lex_state = 697}, - [1528] = {.lex_state = 761, .external_lex_state = 2}, - [1529] = {.lex_state = 761, .external_lex_state = 2}, - [1530] = {.lex_state = 761, .external_lex_state = 2}, - [1531] = {.lex_state = 761, .external_lex_state = 2}, - [1532] = {.lex_state = 732, .external_lex_state = 2}, - [1533] = {.lex_state = 761, .external_lex_state = 2}, - [1534] = {.lex_state = 761, .external_lex_state = 2}, - [1535] = {.lex_state = 733, .external_lex_state = 2}, - [1536] = {.lex_state = 761, .external_lex_state = 2}, - [1537] = {.lex_state = 733, .external_lex_state = 2}, - [1538] = {.lex_state = 703}, - [1539] = {.lex_state = 737, .external_lex_state = 2}, - [1540] = {.lex_state = 761, .external_lex_state = 2}, - [1541] = {.lex_state = 709}, - [1542] = {.lex_state = 703}, - [1543] = {.lex_state = 754, .external_lex_state = 2}, - [1544] = {.lex_state = 7}, - [1545] = {.lex_state = 761, .external_lex_state = 2}, - [1546] = {.lex_state = 710}, - [1547] = {.lex_state = 754, .external_lex_state = 2}, - [1548] = {.lex_state = 761, .external_lex_state = 2}, - [1549] = {.lex_state = 710}, - [1550] = {.lex_state = 697}, - [1551] = {.lex_state = 703}, - [1552] = {.lex_state = 7}, - [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 754, .external_lex_state = 2}, - [1555] = {.lex_state = 761, .external_lex_state = 2}, - [1556] = {.lex_state = 754, .external_lex_state = 2}, - [1557] = {.lex_state = 703}, - [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 761, .external_lex_state = 2}, - [1560] = {.lex_state = 697}, - [1561] = {.lex_state = 754, .external_lex_state = 2}, - [1562] = {.lex_state = 703}, - [1563] = {.lex_state = 754, .external_lex_state = 2}, - [1564] = {.lex_state = 710}, - [1565] = {.lex_state = 754, .external_lex_state = 2}, - [1566] = {.lex_state = 761, .external_lex_state = 2}, - [1567] = {.lex_state = 754, .external_lex_state = 2}, - [1568] = {.lex_state = 761, .external_lex_state = 2}, - [1569] = {.lex_state = 761, .external_lex_state = 2}, - [1570] = {.lex_state = 710}, - [1571] = {.lex_state = 711}, - [1572] = {.lex_state = 709}, - [1573] = {.lex_state = 733, .external_lex_state = 2}, - [1574] = {.lex_state = 761, .external_lex_state = 2}, - [1575] = {.lex_state = 754, .external_lex_state = 2}, - [1576] = {.lex_state = 711}, - [1577] = {.lex_state = 754, .external_lex_state = 2}, - [1578] = {.lex_state = 711}, - [1579] = {.lex_state = 754, .external_lex_state = 2}, - [1580] = {.lex_state = 709}, - [1581] = {.lex_state = 734, .external_lex_state = 2}, - [1582] = {.lex_state = 711}, - [1583] = {.lex_state = 711}, - [1584] = {.lex_state = 754, .external_lex_state = 2}, - [1585] = {.lex_state = 754, .external_lex_state = 2}, - [1586] = {.lex_state = 697}, - [1587] = {.lex_state = 754, .external_lex_state = 2}, - [1588] = {.lex_state = 734, .external_lex_state = 2}, - [1589] = {.lex_state = 759, .external_lex_state = 2}, - [1590] = {.lex_state = 759, .external_lex_state = 2}, - [1591] = {.lex_state = 7}, - [1592] = {.lex_state = 734, .external_lex_state = 2}, - [1593] = {.lex_state = 761, .external_lex_state = 2}, - [1594] = {.lex_state = 734, .external_lex_state = 2}, - [1595] = {.lex_state = 760, .external_lex_state = 2}, - [1596] = {.lex_state = 734, .external_lex_state = 2}, - [1597] = {.lex_state = 723, .external_lex_state = 2}, - [1598] = {.lex_state = 701}, - [1599] = {.lex_state = 723, .external_lex_state = 2}, - [1600] = {.lex_state = 734, .external_lex_state = 2}, - [1601] = {.lex_state = 734, .external_lex_state = 2}, - [1602] = {.lex_state = 734, .external_lex_state = 2}, - [1603] = {.lex_state = 734, .external_lex_state = 2}, - [1604] = {.lex_state = 733, .external_lex_state = 2}, - [1605] = {.lex_state = 723, .external_lex_state = 2}, - [1606] = {.lex_state = 723, .external_lex_state = 2}, - [1607] = {.lex_state = 710}, - [1608] = {.lex_state = 711}, - [1609] = {.lex_state = 754, .external_lex_state = 2}, - [1610] = {.lex_state = 711}, - [1611] = {.lex_state = 711}, - [1612] = {.lex_state = 773, .external_lex_state = 2}, - [1613] = {.lex_state = 711}, - [1614] = {.lex_state = 711}, - [1615] = {.lex_state = 709}, - [1616] = {.lex_state = 711}, - [1617] = {.lex_state = 711}, - [1618] = {.lex_state = 711}, - [1619] = {.lex_state = 759, .external_lex_state = 2}, - [1620] = {.lex_state = 759, .external_lex_state = 2}, - [1621] = {.lex_state = 759, .external_lex_state = 2}, - [1622] = {.lex_state = 759, .external_lex_state = 2}, - [1623] = {.lex_state = 710}, - [1624] = {.lex_state = 711}, - [1625] = {.lex_state = 703}, - [1626] = {.lex_state = 711}, - [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 711}, - [1629] = {.lex_state = 711}, - [1630] = {.lex_state = 754, .external_lex_state = 2}, - [1631] = {.lex_state = 754, .external_lex_state = 2}, - [1632] = {.lex_state = 754, .external_lex_state = 2}, - [1633] = {.lex_state = 754, .external_lex_state = 2}, - [1634] = {.lex_state = 773, .external_lex_state = 2}, - [1635] = {.lex_state = 773, .external_lex_state = 2}, - [1636] = {.lex_state = 773, .external_lex_state = 2}, - [1637] = {.lex_state = 754, .external_lex_state = 2}, - [1638] = {.lex_state = 723, .external_lex_state = 2}, - [1639] = {.lex_state = 746, .external_lex_state = 2}, - [1640] = {.lex_state = 754, .external_lex_state = 2}, - [1641] = {.lex_state = 762, .external_lex_state = 2}, - [1642] = {.lex_state = 754, .external_lex_state = 2}, - [1643] = {.lex_state = 697}, - [1644] = {.lex_state = 773, .external_lex_state = 2}, - [1645] = {.lex_state = 701}, - [1646] = {.lex_state = 754, .external_lex_state = 2}, - [1647] = {.lex_state = 754, .external_lex_state = 2}, - [1648] = {.lex_state = 711}, - [1649] = {.lex_state = 752, .external_lex_state = 2}, - [1650] = {.lex_state = 754, .external_lex_state = 2}, - [1651] = {.lex_state = 711}, - [1652] = {.lex_state = 709}, - [1653] = {.lex_state = 723, .external_lex_state = 2}, - [1654] = {.lex_state = 723, .external_lex_state = 2}, - [1655] = {.lex_state = 747, .external_lex_state = 2}, - [1656] = {.lex_state = 773, .external_lex_state = 2}, - [1657] = {.lex_state = 773, .external_lex_state = 2}, - [1658] = {.lex_state = 711}, - [1659] = {.lex_state = 7}, - [1660] = {.lex_state = 703}, - [1661] = {.lex_state = 723, .external_lex_state = 2}, - [1662] = {.lex_state = 711}, - [1663] = {.lex_state = 734, .external_lex_state = 2}, - [1664] = {.lex_state = 7}, - [1665] = {.lex_state = 723, .external_lex_state = 2}, - [1666] = {.lex_state = 703}, - [1667] = {.lex_state = 759, .external_lex_state = 2}, - [1668] = {.lex_state = 760, .external_lex_state = 2}, - [1669] = {.lex_state = 759, .external_lex_state = 2}, - [1670] = {.lex_state = 759, .external_lex_state = 2}, - [1671] = {.lex_state = 711}, - [1672] = {.lex_state = 759, .external_lex_state = 2}, - [1673] = {.lex_state = 709}, - [1674] = {.lex_state = 709}, - [1675] = {.lex_state = 709}, - [1676] = {.lex_state = 709}, - [1677] = {.lex_state = 711}, - [1678] = {.lex_state = 761, .external_lex_state = 2}, - [1679] = {.lex_state = 723, .external_lex_state = 2}, - [1680] = {.lex_state = 723, .external_lex_state = 2}, - [1681] = {.lex_state = 761, .external_lex_state = 2}, - [1682] = {.lex_state = 761, .external_lex_state = 2}, - [1683] = {.lex_state = 697}, - [1684] = {.lex_state = 734, .external_lex_state = 2}, - [1685] = {.lex_state = 703}, - [1686] = {.lex_state = 752, .external_lex_state = 2}, - [1687] = {.lex_state = 723, .external_lex_state = 2}, - [1688] = {.lex_state = 734, .external_lex_state = 2}, - [1689] = {.lex_state = 703}, - [1690] = {.lex_state = 711}, - [1691] = {.lex_state = 734, .external_lex_state = 2}, - [1692] = {.lex_state = 773, .external_lex_state = 2}, - [1693] = {.lex_state = 766, .external_lex_state = 2}, - [1694] = {.lex_state = 759, .external_lex_state = 2}, - [1695] = {.lex_state = 734, .external_lex_state = 2}, - [1696] = {.lex_state = 746, .external_lex_state = 2}, - [1697] = {.lex_state = 762, .external_lex_state = 2}, - [1698] = {.lex_state = 772, .external_lex_state = 2}, - [1699] = {.lex_state = 711}, - [1700] = {.lex_state = 734, .external_lex_state = 2}, - [1701] = {.lex_state = 723, .external_lex_state = 2}, - [1702] = {.lex_state = 774, .external_lex_state = 2}, - [1703] = {.lex_state = 697}, - [1704] = {.lex_state = 734, .external_lex_state = 2}, - [1705] = {.lex_state = 709}, - [1706] = {.lex_state = 766, .external_lex_state = 2}, - [1707] = {.lex_state = 747, .external_lex_state = 2}, - [1708] = {.lex_state = 723, .external_lex_state = 2}, - [1709] = {.lex_state = 697}, - [1710] = {.lex_state = 772, .external_lex_state = 2}, - [1711] = {.lex_state = 773, .external_lex_state = 2}, - [1712] = {.lex_state = 734, .external_lex_state = 2}, - [1713] = {.lex_state = 774, .external_lex_state = 2}, - [1714] = {.lex_state = 750, .external_lex_state = 2}, - [1715] = {.lex_state = 773, .external_lex_state = 2}, - [1716] = {.lex_state = 774, .external_lex_state = 2}, - [1717] = {.lex_state = 774, .external_lex_state = 2}, - [1718] = {.lex_state = 711}, - [1719] = {.lex_state = 734, .external_lex_state = 2}, - [1720] = {.lex_state = 749, .external_lex_state = 2}, - [1721] = {.lex_state = 711}, - [1722] = {.lex_state = 709}, - [1723] = {.lex_state = 759, .external_lex_state = 2}, - [1724] = {.lex_state = 749, .external_lex_state = 2}, - [1725] = {.lex_state = 774, .external_lex_state = 2}, - [1726] = {.lex_state = 772, .external_lex_state = 2}, - [1727] = {.lex_state = 766, .external_lex_state = 2}, - [1728] = {.lex_state = 697}, - [1729] = {.lex_state = 711}, - [1730] = {.lex_state = 751, .external_lex_state = 2}, - [1731] = {.lex_state = 749, .external_lex_state = 2}, - [1732] = {.lex_state = 751, .external_lex_state = 2}, - [1733] = {.lex_state = 751, .external_lex_state = 2}, - [1734] = {.lex_state = 751, .external_lex_state = 2}, - [1735] = {.lex_state = 711}, - [1736] = {.lex_state = 751, .external_lex_state = 2}, - [1737] = {.lex_state = 751, .external_lex_state = 2}, - [1738] = {.lex_state = 772, .external_lex_state = 2}, - [1739] = {.lex_state = 761, .external_lex_state = 2}, - [1740] = {.lex_state = 751, .external_lex_state = 2}, - [1741] = {.lex_state = 751, .external_lex_state = 2}, - [1742] = {.lex_state = 774, .external_lex_state = 2}, - [1743] = {.lex_state = 229, .external_lex_state = 2}, - [1744] = {.lex_state = 751, .external_lex_state = 2}, - [1745] = {.lex_state = 751, .external_lex_state = 2}, - [1746] = {.lex_state = 751, .external_lex_state = 2}, - [1747] = {.lex_state = 774, .external_lex_state = 2}, - [1748] = {.lex_state = 774, .external_lex_state = 2}, - [1749] = {.lex_state = 751, .external_lex_state = 2}, - [1750] = {.lex_state = 751, .external_lex_state = 2}, - [1751] = {.lex_state = 751, .external_lex_state = 2}, - [1752] = {.lex_state = 231, .external_lex_state = 2}, - [1753] = {.lex_state = 751, .external_lex_state = 2}, - [1754] = {.lex_state = 751, .external_lex_state = 2}, - [1755] = {.lex_state = 751, .external_lex_state = 2}, - [1756] = {.lex_state = 774, .external_lex_state = 2}, - [1757] = {.lex_state = 711}, - [1758] = {.lex_state = 229, .external_lex_state = 2}, - [1759] = {.lex_state = 772, .external_lex_state = 2}, - [1760] = {.lex_state = 751, .external_lex_state = 2}, - [1761] = {.lex_state = 709}, - [1762] = {.lex_state = 751, .external_lex_state = 2}, - [1763] = {.lex_state = 751, .external_lex_state = 2}, - [1764] = {.lex_state = 751, .external_lex_state = 2}, - [1765] = {.lex_state = 751, .external_lex_state = 2}, - [1766] = {.lex_state = 751, .external_lex_state = 2}, - [1767] = {.lex_state = 747, .external_lex_state = 2}, - [1768] = {.lex_state = 761, .external_lex_state = 2}, - [1769] = {.lex_state = 747, .external_lex_state = 2}, - [1770] = {.lex_state = 751, .external_lex_state = 2}, - [1771] = {.lex_state = 711}, - [1772] = {.lex_state = 751, .external_lex_state = 2}, - [1773] = {.lex_state = 751, .external_lex_state = 2}, - [1774] = {.lex_state = 750, .external_lex_state = 2}, - [1775] = {.lex_state = 751, .external_lex_state = 2}, - [1776] = {.lex_state = 751, .external_lex_state = 2}, - [1777] = {.lex_state = 751, .external_lex_state = 2}, - [1778] = {.lex_state = 749, .external_lex_state = 2}, - [1779] = {.lex_state = 751, .external_lex_state = 2}, - [1780] = {.lex_state = 231, .external_lex_state = 2}, - [1781] = {.lex_state = 711}, - [1782] = {.lex_state = 231, .external_lex_state = 2}, - [1783] = {.lex_state = 231, .external_lex_state = 2}, - [1784] = {.lex_state = 231, .external_lex_state = 2}, - [1785] = {.lex_state = 751, .external_lex_state = 2}, - [1786] = {.lex_state = 723, .external_lex_state = 2}, - [1787] = {.lex_state = 751, .external_lex_state = 2}, - [1788] = {.lex_state = 7}, - [1789] = {.lex_state = 231, .external_lex_state = 2}, - [1790] = {.lex_state = 231, .external_lex_state = 2}, - [1791] = {.lex_state = 751, .external_lex_state = 2}, - [1792] = {.lex_state = 751, .external_lex_state = 2}, - [1793] = {.lex_state = 751, .external_lex_state = 2}, - [1794] = {.lex_state = 751, .external_lex_state = 2}, - [1795] = {.lex_state = 7}, - [1796] = {.lex_state = 751, .external_lex_state = 2}, - [1797] = {.lex_state = 751, .external_lex_state = 2}, - [1798] = {.lex_state = 751, .external_lex_state = 2}, - [1799] = {.lex_state = 751, .external_lex_state = 2}, - [1800] = {.lex_state = 751, .external_lex_state = 2}, - [1801] = {.lex_state = 751, .external_lex_state = 2}, - [1802] = {.lex_state = 751, .external_lex_state = 2}, - [1803] = {.lex_state = 751, .external_lex_state = 2}, - [1804] = {.lex_state = 751, .external_lex_state = 2}, - [1805] = {.lex_state = 751, .external_lex_state = 2}, - [1806] = {.lex_state = 711}, - [1807] = {.lex_state = 766, .external_lex_state = 2}, - [1808] = {.lex_state = 711}, - [1809] = {.lex_state = 751, .external_lex_state = 2}, - [1810] = {.lex_state = 711}, - [1811] = {.lex_state = 751, .external_lex_state = 2}, - [1812] = {.lex_state = 751, .external_lex_state = 2}, - [1813] = {.lex_state = 229, .external_lex_state = 2}, - [1814] = {.lex_state = 751, .external_lex_state = 2}, - [1815] = {.lex_state = 751, .external_lex_state = 2}, - [1816] = {.lex_state = 697}, - [1817] = {.lex_state = 751, .external_lex_state = 2}, - [1818] = {.lex_state = 751, .external_lex_state = 2}, - [1819] = {.lex_state = 751, .external_lex_state = 2}, - [1820] = {.lex_state = 751, .external_lex_state = 2}, - [1821] = {.lex_state = 751, .external_lex_state = 2}, - [1822] = {.lex_state = 751, .external_lex_state = 2}, - [1823] = {.lex_state = 761, .external_lex_state = 2}, - [1824] = {.lex_state = 723, .external_lex_state = 2}, - [1825] = {.lex_state = 751, .external_lex_state = 2}, - [1826] = {.lex_state = 751, .external_lex_state = 2}, - [1827] = {.lex_state = 751, .external_lex_state = 2}, - [1828] = {.lex_state = 751, .external_lex_state = 2}, - [1829] = {.lex_state = 751, .external_lex_state = 2}, - [1830] = {.lex_state = 751, .external_lex_state = 2}, - [1831] = {.lex_state = 231, .external_lex_state = 2}, - [1832] = {.lex_state = 751, .external_lex_state = 2}, - [1833] = {.lex_state = 751, .external_lex_state = 2}, - [1834] = {.lex_state = 751, .external_lex_state = 2}, - [1835] = {.lex_state = 751, .external_lex_state = 2}, - [1836] = {.lex_state = 751, .external_lex_state = 2}, - [1837] = {.lex_state = 751, .external_lex_state = 2}, - [1838] = {.lex_state = 751, .external_lex_state = 2}, - [1839] = {.lex_state = 751, .external_lex_state = 2}, - [1840] = {.lex_state = 751, .external_lex_state = 2}, - [1841] = {.lex_state = 751, .external_lex_state = 2}, - [1842] = {.lex_state = 231, .external_lex_state = 2}, - [1843] = {.lex_state = 751, .external_lex_state = 2}, - [1844] = {.lex_state = 231, .external_lex_state = 2}, - [1845] = {.lex_state = 751, .external_lex_state = 2}, - [1846] = {.lex_state = 774, .external_lex_state = 2}, - [1847] = {.lex_state = 231, .external_lex_state = 2}, - [1848] = {.lex_state = 751, .external_lex_state = 2}, - [1849] = {.lex_state = 772, .external_lex_state = 2}, - [1850] = {.lex_state = 231, .external_lex_state = 2}, - [1851] = {.lex_state = 751, .external_lex_state = 2}, - [1852] = {.lex_state = 751, .external_lex_state = 2}, - [1853] = {.lex_state = 751, .external_lex_state = 2}, - [1854] = {.lex_state = 751, .external_lex_state = 2}, - [1855] = {.lex_state = 751, .external_lex_state = 2}, - [1856] = {.lex_state = 709}, - [1857] = {.lex_state = 751, .external_lex_state = 2}, - [1858] = {.lex_state = 709}, - [1859] = {.lex_state = 709}, - [1860] = {.lex_state = 709}, - [1861] = {.lex_state = 709}, - [1862] = {.lex_state = 709}, - [1863] = {.lex_state = 751, .external_lex_state = 2}, - [1864] = {.lex_state = 709}, - [1865] = {.lex_state = 709}, - [1866] = {.lex_state = 709}, - [1867] = {.lex_state = 751, .external_lex_state = 2}, - [1868] = {.lex_state = 751, .external_lex_state = 2}, - [1869] = {.lex_state = 709}, - [1870] = {.lex_state = 709}, - [1871] = {.lex_state = 751, .external_lex_state = 2}, - [1872] = {.lex_state = 709}, - [1873] = {.lex_state = 43, .external_lex_state = 2}, - [1874] = {.lex_state = 709}, - [1875] = {.lex_state = 709}, - [1876] = {.lex_state = 751, .external_lex_state = 2}, - [1877] = {.lex_state = 751, .external_lex_state = 2}, - [1878] = {.lex_state = 751, .external_lex_state = 2}, - [1879] = {.lex_state = 751, .external_lex_state = 2}, - [1880] = {.lex_state = 751, .external_lex_state = 2}, - [1881] = {.lex_state = 709}, - [1882] = {.lex_state = 711}, - [1883] = {.lex_state = 751, .external_lex_state = 2}, - [1884] = {.lex_state = 709}, - [1885] = {.lex_state = 751, .external_lex_state = 2}, - [1886] = {.lex_state = 751, .external_lex_state = 2}, - [1887] = {.lex_state = 751, .external_lex_state = 2}, - [1888] = {.lex_state = 751, .external_lex_state = 2}, - [1889] = {.lex_state = 751, .external_lex_state = 2}, - [1890] = {.lex_state = 751, .external_lex_state = 2}, - [1891] = {.lex_state = 751, .external_lex_state = 2}, - [1892] = {.lex_state = 709}, - [1893] = {.lex_state = 751, .external_lex_state = 2}, - [1894] = {.lex_state = 751, .external_lex_state = 2}, - [1895] = {.lex_state = 751, .external_lex_state = 2}, - [1896] = {.lex_state = 751, .external_lex_state = 2}, - [1897] = {.lex_state = 751, .external_lex_state = 2}, - [1898] = {.lex_state = 751, .external_lex_state = 2}, - [1899] = {.lex_state = 751, .external_lex_state = 2}, - [1900] = {.lex_state = 709}, - [1901] = {.lex_state = 711}, - [1902] = {.lex_state = 751, .external_lex_state = 2}, - [1903] = {.lex_state = 751, .external_lex_state = 2}, - [1904] = {.lex_state = 751, .external_lex_state = 2}, - [1905] = {.lex_state = 751, .external_lex_state = 2}, - [1906] = {.lex_state = 751, .external_lex_state = 2}, - [1907] = {.lex_state = 751, .external_lex_state = 2}, - [1908] = {.lex_state = 751, .external_lex_state = 2}, - [1909] = {.lex_state = 751, .external_lex_state = 2}, - [1910] = {.lex_state = 751, .external_lex_state = 2}, - [1911] = {.lex_state = 711}, - [1912] = {.lex_state = 711}, - [1913] = {.lex_state = 751, .external_lex_state = 2}, - [1914] = {.lex_state = 751, .external_lex_state = 2}, - [1915] = {.lex_state = 751, .external_lex_state = 2}, - [1916] = {.lex_state = 751, .external_lex_state = 2}, - [1917] = {.lex_state = 751, .external_lex_state = 2}, - [1918] = {.lex_state = 751, .external_lex_state = 2}, - [1919] = {.lex_state = 751, .external_lex_state = 2}, - [1920] = {.lex_state = 751, .external_lex_state = 2}, - [1921] = {.lex_state = 751, .external_lex_state = 2}, - [1922] = {.lex_state = 751, .external_lex_state = 2}, - [1923] = {.lex_state = 751, .external_lex_state = 2}, - [1924] = {.lex_state = 751, .external_lex_state = 2}, - [1925] = {.lex_state = 751, .external_lex_state = 2}, - [1926] = {.lex_state = 709}, - [1927] = {.lex_state = 751, .external_lex_state = 2}, - [1928] = {.lex_state = 751, .external_lex_state = 2}, - [1929] = {.lex_state = 751, .external_lex_state = 2}, - [1930] = {.lex_state = 751, .external_lex_state = 2}, - [1931] = {.lex_state = 751, .external_lex_state = 2}, - [1932] = {.lex_state = 751, .external_lex_state = 2}, - [1933] = {.lex_state = 751, .external_lex_state = 2}, - [1934] = {.lex_state = 751, .external_lex_state = 2}, - [1935] = {.lex_state = 751, .external_lex_state = 2}, - [1936] = {.lex_state = 751, .external_lex_state = 2}, - [1937] = {.lex_state = 751, .external_lex_state = 2}, - [1938] = {.lex_state = 751, .external_lex_state = 2}, - [1939] = {.lex_state = 751, .external_lex_state = 2}, - [1940] = {.lex_state = 751, .external_lex_state = 2}, - [1941] = {.lex_state = 751, .external_lex_state = 2}, - [1942] = {.lex_state = 751, .external_lex_state = 2}, - [1943] = {.lex_state = 751, .external_lex_state = 2}, - [1944] = {.lex_state = 751, .external_lex_state = 2}, - [1945] = {.lex_state = 709}, - [1946] = {.lex_state = 751, .external_lex_state = 2}, - [1947] = {.lex_state = 7}, - [1948] = {.lex_state = 709}, - [1949] = {.lex_state = 751, .external_lex_state = 2}, - [1950] = {.lex_state = 751, .external_lex_state = 2}, - [1951] = {.lex_state = 751, .external_lex_state = 2}, - [1952] = {.lex_state = 709}, - [1953] = {.lex_state = 7}, - [1954] = {.lex_state = 7}, - [1955] = {.lex_state = 751, .external_lex_state = 2}, - [1956] = {.lex_state = 751, .external_lex_state = 2}, - [1957] = {.lex_state = 709}, - [1958] = {.lex_state = 751, .external_lex_state = 2}, - [1959] = {.lex_state = 751, .external_lex_state = 2}, - [1960] = {.lex_state = 751, .external_lex_state = 2}, - [1961] = {.lex_state = 43, .external_lex_state = 2}, - [1962] = {.lex_state = 709}, - [1963] = {.lex_state = 43, .external_lex_state = 2}, - [1964] = {.lex_state = 751, .external_lex_state = 2}, - [1965] = {.lex_state = 751, .external_lex_state = 2}, - [1966] = {.lex_state = 751, .external_lex_state = 2}, - [1967] = {.lex_state = 709}, - [1968] = {.lex_state = 751, .external_lex_state = 2}, - [1969] = {.lex_state = 709}, - [1970] = {.lex_state = 751, .external_lex_state = 2}, - [1971] = {.lex_state = 751, .external_lex_state = 2}, - [1972] = {.lex_state = 751, .external_lex_state = 2}, - [1973] = {.lex_state = 751, .external_lex_state = 2}, - [1974] = {.lex_state = 43, .external_lex_state = 2}, - [1975] = {.lex_state = 43, .external_lex_state = 2}, - [1976] = {.lex_state = 43, .external_lex_state = 2}, - [1977] = {.lex_state = 751, .external_lex_state = 2}, - [1978] = {.lex_state = 697}, - [1979] = {.lex_state = 711}, - [1980] = {.lex_state = 697}, - [1981] = {.lex_state = 711}, - [1982] = {.lex_state = 711}, - [1983] = {.lex_state = 709}, - [1984] = {.lex_state = 711}, - [1985] = {.lex_state = 711}, - [1986] = {.lex_state = 709}, - [1987] = {.lex_state = 697}, - [1988] = {.lex_state = 711}, - [1989] = {.lex_state = 711}, - [1990] = {.lex_state = 697}, - [1991] = {.lex_state = 709}, - [1992] = {.lex_state = 709}, - [1993] = {.lex_state = 697}, - [1994] = {.lex_state = 697}, - [1995] = {.lex_state = 697}, - [1996] = {.lex_state = 697}, - [1997] = {.lex_state = 697}, - [1998] = {.lex_state = 697}, - [1999] = {.lex_state = 697}, - [2000] = {.lex_state = 697}, - [2001] = {.lex_state = 709}, - [2002] = {.lex_state = 697}, - [2003] = {.lex_state = 709}, - [2004] = {.lex_state = 697}, - [2005] = {.lex_state = 697}, - [2006] = {.lex_state = 711}, - [2007] = {.lex_state = 697}, - [2008] = {.lex_state = 697}, - [2009] = {.lex_state = 697}, - [2010] = {.lex_state = 709}, - [2011] = {.lex_state = 709}, - [2012] = {.lex_state = 709}, - [2013] = {.lex_state = 697}, - [2014] = {.lex_state = 14, .external_lex_state = 2}, - [2015] = {.lex_state = 709}, - [2016] = {.lex_state = 709}, - [2017] = {.lex_state = 14, .external_lex_state = 2}, - [2018] = {.lex_state = 709}, - [2019] = {.lex_state = 697}, - [2020] = {.lex_state = 711}, - [2021] = {.lex_state = 711}, - [2022] = {.lex_state = 711}, - [2023] = {.lex_state = 709}, - [2024] = {.lex_state = 7}, - [2025] = {.lex_state = 711}, - [2026] = {.lex_state = 711}, - [2027] = {.lex_state = 711}, - [2028] = {.lex_state = 711}, - [2029] = {.lex_state = 711}, - [2030] = {.lex_state = 711}, - [2031] = {.lex_state = 697}, - [2032] = {.lex_state = 697}, - [2033] = {.lex_state = 697}, - [2034] = {.lex_state = 697}, - [2035] = {.lex_state = 697}, - [2036] = {.lex_state = 697}, - [2037] = {.lex_state = 697}, - [2038] = {.lex_state = 697}, - [2039] = {.lex_state = 697}, - [2040] = {.lex_state = 697}, - [2041] = {.lex_state = 697}, - [2042] = {.lex_state = 711}, - [2043] = {.lex_state = 711}, - [2044] = {.lex_state = 711}, - [2045] = {.lex_state = 711}, - [2046] = {.lex_state = 709}, - [2047] = {.lex_state = 711}, - [2048] = {.lex_state = 709}, - [2049] = {.lex_state = 709}, - [2050] = {.lex_state = 709}, - [2051] = {.lex_state = 697}, - [2052] = {.lex_state = 711}, - [2053] = {.lex_state = 709}, - [2054] = {.lex_state = 697}, - [2055] = {.lex_state = 697}, - [2056] = {.lex_state = 697}, - [2057] = {.lex_state = 709}, - [2058] = {.lex_state = 697}, - [2059] = {.lex_state = 697}, - [2060] = {.lex_state = 711}, - [2061] = {.lex_state = 711}, - [2062] = {.lex_state = 697}, - [2063] = {.lex_state = 697}, - [2064] = {.lex_state = 697}, - [2065] = {.lex_state = 14, .external_lex_state = 2}, - [2066] = {.lex_state = 14, .external_lex_state = 2}, - [2067] = {.lex_state = 697}, - [2068] = {.lex_state = 7}, - [2069] = {.lex_state = 697}, - [2070] = {.lex_state = 697}, - [2071] = {.lex_state = 697}, - [2072] = {.lex_state = 711}, - [2073] = {.lex_state = 697}, - [2074] = {.lex_state = 7}, - [2075] = {.lex_state = 697}, - [2076] = {.lex_state = 709}, - [2077] = {.lex_state = 697}, - [2078] = {.lex_state = 697}, - [2079] = {.lex_state = 711}, - [2080] = {.lex_state = 697}, - [2081] = {.lex_state = 697}, - [2082] = {.lex_state = 697}, - [2083] = {.lex_state = 709}, - [2084] = {.lex_state = 697}, - [2085] = {.lex_state = 697}, - [2086] = {.lex_state = 697}, - [2087] = {.lex_state = 697}, - [2088] = {.lex_state = 697}, - [2089] = {.lex_state = 7}, - [2090] = {.lex_state = 697}, - [2091] = {.lex_state = 43, .external_lex_state = 2}, - [2092] = {.lex_state = 709}, - [2093] = {.lex_state = 711}, - [2094] = {.lex_state = 709}, - [2095] = {.lex_state = 709}, - [2096] = {.lex_state = 697}, - [2097] = {.lex_state = 709}, - [2098] = {.lex_state = 709}, - [2099] = {.lex_state = 709}, - [2100] = {.lex_state = 711}, - [2101] = {.lex_state = 711}, - [2102] = {.lex_state = 709}, - [2103] = {.lex_state = 43, .external_lex_state = 2}, - [2104] = {.lex_state = 43, .external_lex_state = 2}, - [2105] = {.lex_state = 43, .external_lex_state = 2}, - [2106] = {.lex_state = 43, .external_lex_state = 2}, - [2107] = {.lex_state = 43, .external_lex_state = 2}, - [2108] = {.lex_state = 707}, - [2109] = {.lex_state = 707}, - [2110] = {.lex_state = 43, .external_lex_state = 2}, - [2111] = {.lex_state = 709}, - [2112] = {.lex_state = 711}, - [2113] = {.lex_state = 709}, - [2114] = {.lex_state = 709}, - [2115] = {.lex_state = 43, .external_lex_state = 2}, - [2116] = {.lex_state = 709}, - [2117] = {.lex_state = 709}, - [2118] = {.lex_state = 707}, - [2119] = {.lex_state = 707}, - [2120] = {.lex_state = 709}, - [2121] = {.lex_state = 709}, - [2122] = {.lex_state = 709}, - [2123] = {.lex_state = 43, .external_lex_state = 2}, - [2124] = {.lex_state = 709}, - [2125] = {.lex_state = 709}, - [2126] = {.lex_state = 697}, - [2127] = {.lex_state = 711}, - [2128] = {.lex_state = 709}, - [2129] = {.lex_state = 709}, - [2130] = {.lex_state = 709}, - [2131] = {.lex_state = 709}, - [2132] = {.lex_state = 709}, - [2133] = {.lex_state = 43, .external_lex_state = 2}, - [2134] = {.lex_state = 709}, - [2135] = {.lex_state = 709}, - [2136] = {.lex_state = 43, .external_lex_state = 2}, - [2137] = {.lex_state = 709}, - [2138] = {.lex_state = 709}, - [2139] = {.lex_state = 709}, - [2140] = {.lex_state = 697}, - [2141] = {.lex_state = 43, .external_lex_state = 2}, - [2142] = {.lex_state = 43, .external_lex_state = 2}, - [2143] = {.lex_state = 43, .external_lex_state = 2}, - [2144] = {.lex_state = 43, .external_lex_state = 2}, - [2145] = {.lex_state = 43, .external_lex_state = 2}, - [2146] = {.lex_state = 43, .external_lex_state = 2}, - [2147] = {.lex_state = 43, .external_lex_state = 2}, - [2148] = {.lex_state = 43, .external_lex_state = 2}, - [2149] = {.lex_state = 43, .external_lex_state = 2}, - [2150] = {.lex_state = 43, .external_lex_state = 2}, - [2151] = {.lex_state = 43, .external_lex_state = 2}, - [2152] = {.lex_state = 43, .external_lex_state = 2}, - [2153] = {.lex_state = 697}, - [2154] = {.lex_state = 43, .external_lex_state = 2}, - [2155] = {.lex_state = 707}, - [2156] = {.lex_state = 43, .external_lex_state = 2}, - [2157] = {.lex_state = 709}, - [2158] = {.lex_state = 709}, - [2159] = {.lex_state = 43, .external_lex_state = 2}, - [2160] = {.lex_state = 709}, - [2161] = {.lex_state = 709}, - [2162] = {.lex_state = 709}, - [2163] = {.lex_state = 709}, - [2164] = {.lex_state = 711}, - [2165] = {.lex_state = 43, .external_lex_state = 2}, - [2166] = {.lex_state = 43, .external_lex_state = 2}, - [2167] = {.lex_state = 43, .external_lex_state = 2}, - [2168] = {.lex_state = 43, .external_lex_state = 2}, - [2169] = {.lex_state = 43, .external_lex_state = 2}, - [2170] = {.lex_state = 697}, - [2171] = {.lex_state = 709}, - [2172] = {.lex_state = 709}, - [2173] = {.lex_state = 697}, - [2174] = {.lex_state = 709}, - [2175] = {.lex_state = 43, .external_lex_state = 2}, - [2176] = {.lex_state = 697}, - [2177] = {.lex_state = 697}, - [2178] = {.lex_state = 697}, - [2179] = {.lex_state = 711}, - [2180] = {.lex_state = 705}, - [2181] = {.lex_state = 697}, - [2182] = {.lex_state = 770, .external_lex_state = 2}, - [2183] = {.lex_state = 697}, - [2184] = {.lex_state = 697}, - [2185] = {.lex_state = 697}, - [2186] = {.lex_state = 697}, - [2187] = {.lex_state = 697}, - [2188] = {.lex_state = 697}, - [2189] = {.lex_state = 697}, - [2190] = {.lex_state = 697}, - [2191] = {.lex_state = 697}, - [2192] = {.lex_state = 697}, - [2193] = {.lex_state = 697}, - [2194] = {.lex_state = 697}, - [2195] = {.lex_state = 697}, - [2196] = {.lex_state = 697}, - [2197] = {.lex_state = 697}, - [2198] = {.lex_state = 697}, - [2199] = {.lex_state = 697}, - [2200] = {.lex_state = 697}, - [2201] = {.lex_state = 697}, - [2202] = {.lex_state = 697}, - [2203] = {.lex_state = 697}, - [2204] = {.lex_state = 697}, - [2205] = {.lex_state = 697}, - [2206] = {.lex_state = 697}, - [2207] = {.lex_state = 697}, - [2208] = {.lex_state = 697}, - [2209] = {.lex_state = 697}, - [2210] = {.lex_state = 697}, - [2211] = {.lex_state = 697}, - [2212] = {.lex_state = 707}, - [2213] = {.lex_state = 697}, - [2214] = {.lex_state = 697}, - [2215] = {.lex_state = 697}, - [2216] = {.lex_state = 697}, - [2217] = {.lex_state = 697}, - [2218] = {.lex_state = 697}, - [2219] = {.lex_state = 770, .external_lex_state = 2}, - [2220] = {.lex_state = 107, .external_lex_state = 2}, - [2221] = {.lex_state = 697}, - [2222] = {.lex_state = 697}, - [2223] = {.lex_state = 697}, - [2224] = {.lex_state = 697}, - [2225] = {.lex_state = 707}, - [2226] = {.lex_state = 697}, - [2227] = {.lex_state = 707}, - [2228] = {.lex_state = 697}, - [2229] = {.lex_state = 229, .external_lex_state = 2}, - [2230] = {.lex_state = 697}, - [2231] = {.lex_state = 697}, - [2232] = {.lex_state = 697}, - [2233] = {.lex_state = 697}, - [2234] = {.lex_state = 697}, - [2235] = {.lex_state = 697}, - [2236] = {.lex_state = 697}, - [2237] = {.lex_state = 697}, - [2238] = {.lex_state = 697}, - [2239] = {.lex_state = 697}, - [2240] = {.lex_state = 697}, - [2241] = {.lex_state = 697}, - [2242] = {.lex_state = 697}, - [2243] = {.lex_state = 697}, - [2244] = {.lex_state = 697}, - [2245] = {.lex_state = 697}, - [2246] = {.lex_state = 47, .external_lex_state = 2}, - [2247] = {.lex_state = 697}, - [2248] = {.lex_state = 697}, - [2249] = {.lex_state = 697}, - [2250] = {.lex_state = 697}, - [2251] = {.lex_state = 711}, - [2252] = {.lex_state = 697}, - [2253] = {.lex_state = 697}, - [2254] = {.lex_state = 697}, - [2255] = {.lex_state = 697}, - [2256] = {.lex_state = 697}, - [2257] = {.lex_state = 697}, - [2258] = {.lex_state = 697}, - [2259] = {.lex_state = 697}, - [2260] = {.lex_state = 697}, - [2261] = {.lex_state = 697}, - [2262] = {.lex_state = 697}, - [2263] = {.lex_state = 697}, - [2264] = {.lex_state = 770, .external_lex_state = 2}, - [2265] = {.lex_state = 697}, - [2266] = {.lex_state = 697}, - [2267] = {.lex_state = 229, .external_lex_state = 2}, - [2268] = {.lex_state = 697}, - [2269] = {.lex_state = 697}, - [2270] = {.lex_state = 697}, - [2271] = {.lex_state = 697}, - [2272] = {.lex_state = 697}, - [2273] = {.lex_state = 697}, - [2274] = {.lex_state = 697}, - [2275] = {.lex_state = 697}, - [2276] = {.lex_state = 697}, - [2277] = {.lex_state = 697}, - [2278] = {.lex_state = 697}, - [2279] = {.lex_state = 697}, - [2280] = {.lex_state = 697}, - [2281] = {.lex_state = 697}, - [2282] = {.lex_state = 697}, - [2283] = {.lex_state = 697}, - [2284] = {.lex_state = 697}, - [2285] = {.lex_state = 707}, - [2286] = {.lex_state = 697}, - [2287] = {.lex_state = 697}, - [2288] = {.lex_state = 707}, - [2289] = {.lex_state = 697}, - [2290] = {.lex_state = 697}, - [2291] = {.lex_state = 697}, - [2292] = {.lex_state = 697}, - [2293] = {.lex_state = 697}, - [2294] = {.lex_state = 697}, - [2295] = {.lex_state = 697}, - [2296] = {.lex_state = 697}, - [2297] = {.lex_state = 47, .external_lex_state = 2}, - [2298] = {.lex_state = 697}, - [2299] = {.lex_state = 697}, - [2300] = {.lex_state = 697}, - [2301] = {.lex_state = 697}, - [2302] = {.lex_state = 697}, - [2303] = {.lex_state = 697}, - [2304] = {.lex_state = 697}, - [2305] = {.lex_state = 697}, - [2306] = {.lex_state = 697}, - [2307] = {.lex_state = 697}, - [2308] = {.lex_state = 697}, - [2309] = {.lex_state = 697}, - [2310] = {.lex_state = 697}, - [2311] = {.lex_state = 697}, - [2312] = {.lex_state = 697}, - [2313] = {.lex_state = 697}, - [2314] = {.lex_state = 697}, - [2315] = {.lex_state = 697}, - [2316] = {.lex_state = 697}, - [2317] = {.lex_state = 697}, - [2318] = {.lex_state = 697}, - [2319] = {.lex_state = 697}, - [2320] = {.lex_state = 697}, - [2321] = {.lex_state = 711}, - [2322] = {.lex_state = 697}, - [2323] = {.lex_state = 697}, - [2324] = {.lex_state = 697}, - [2325] = {.lex_state = 697}, - [2326] = {.lex_state = 697}, - [2327] = {.lex_state = 697}, - [2328] = {.lex_state = 697}, - [2329] = {.lex_state = 697}, - [2330] = {.lex_state = 697}, - [2331] = {.lex_state = 697}, - [2332] = {.lex_state = 697}, - [2333] = {.lex_state = 697}, - [2334] = {.lex_state = 697}, - [2335] = {.lex_state = 697}, - [2336] = {.lex_state = 253, .external_lex_state = 2}, - [2337] = {.lex_state = 697}, - [2338] = {.lex_state = 770, .external_lex_state = 2}, - [2339] = {.lex_state = 697}, - [2340] = {.lex_state = 141, .external_lex_state = 2}, - [2341] = {.lex_state = 697}, - [2342] = {.lex_state = 697}, - [2343] = {.lex_state = 697}, - [2344] = {.lex_state = 697}, - [2345] = {.lex_state = 697}, - [2346] = {.lex_state = 132, .external_lex_state = 2}, - [2347] = {.lex_state = 697}, - [2348] = {.lex_state = 697}, - [2349] = {.lex_state = 697}, - [2350] = {.lex_state = 229, .external_lex_state = 2}, - [2351] = {.lex_state = 697}, - [2352] = {.lex_state = 697}, - [2353] = {.lex_state = 697}, - [2354] = {.lex_state = 697}, - [2355] = {.lex_state = 7}, - [2356] = {.lex_state = 697}, - [2357] = {.lex_state = 697}, - [2358] = {.lex_state = 697}, - [2359] = {.lex_state = 697}, - [2360] = {.lex_state = 106, .external_lex_state = 2}, - [2361] = {.lex_state = 47, .external_lex_state = 2}, - [2362] = {.lex_state = 697}, - [2363] = {.lex_state = 697}, - [2364] = {.lex_state = 697}, - [2365] = {.lex_state = 697}, - [2366] = {.lex_state = 697}, - [2367] = {.lex_state = 229, .external_lex_state = 2}, - [2368] = {.lex_state = 229, .external_lex_state = 2}, - [2369] = {.lex_state = 697}, - [2370] = {.lex_state = 697}, - [2371] = {.lex_state = 697}, - [2372] = {.lex_state = 697}, - [2373] = {.lex_state = 697}, - [2374] = {.lex_state = 47, .external_lex_state = 2}, - [2375] = {.lex_state = 697}, - [2376] = {.lex_state = 151, .external_lex_state = 2}, - [2377] = {.lex_state = 697}, - [2378] = {.lex_state = 697}, - [2379] = {.lex_state = 697}, - [2380] = {.lex_state = 697}, - [2381] = {.lex_state = 106, .external_lex_state = 2}, - [2382] = {.lex_state = 697}, - [2383] = {.lex_state = 697}, - [2384] = {.lex_state = 697}, - [2385] = {.lex_state = 7}, - [2386] = {.lex_state = 697}, - [2387] = {.lex_state = 697}, - [2388] = {.lex_state = 697}, - [2389] = {.lex_state = 697}, - [2390] = {.lex_state = 7}, - [2391] = {.lex_state = 697}, - [2392] = {.lex_state = 697}, - [2393] = {.lex_state = 697}, - [2394] = {.lex_state = 697}, - [2395] = {.lex_state = 255, .external_lex_state = 2}, - [2396] = {.lex_state = 697}, - [2397] = {.lex_state = 105, .external_lex_state = 2}, - [2398] = {.lex_state = 697}, - [2399] = {.lex_state = 697}, - [2400] = {.lex_state = 697}, - [2401] = {.lex_state = 697}, - [2402] = {.lex_state = 697}, - [2403] = {.lex_state = 697}, - [2404] = {.lex_state = 770, .external_lex_state = 2}, - [2405] = {.lex_state = 697}, - [2406] = {.lex_state = 697}, - [2407] = {.lex_state = 697}, - [2408] = {.lex_state = 697}, - [2409] = {.lex_state = 697}, - [2410] = {.lex_state = 229, .external_lex_state = 2}, - [2411] = {.lex_state = 697}, - [2412] = {.lex_state = 697}, - [2413] = {.lex_state = 697}, - [2414] = {.lex_state = 697}, - [2415] = {.lex_state = 697}, - [2416] = {.lex_state = 697}, - [2417] = {.lex_state = 697}, - [2418] = {.lex_state = 697}, - [2419] = {.lex_state = 770, .external_lex_state = 2}, - [2420] = {.lex_state = 770, .external_lex_state = 2}, - [2421] = {.lex_state = 697}, - [2422] = {.lex_state = 697}, - [2423] = {.lex_state = 770, .external_lex_state = 2}, - [2424] = {.lex_state = 697}, - [2425] = {.lex_state = 697}, - [2426] = {.lex_state = 697}, - [2427] = {.lex_state = 697}, - [2428] = {.lex_state = 697}, - [2429] = {.lex_state = 697}, - [2430] = {.lex_state = 697}, - [2431] = {.lex_state = 697}, - [2432] = {.lex_state = 229, .external_lex_state = 2}, - [2433] = {.lex_state = 697}, - [2434] = {.lex_state = 697}, - [2435] = {.lex_state = 229, .external_lex_state = 2}, - [2436] = {.lex_state = 229, .external_lex_state = 2}, - [2437] = {.lex_state = 697}, - [2438] = {.lex_state = 229, .external_lex_state = 2}, - [2439] = {.lex_state = 697}, - [2440] = {.lex_state = 697}, - [2441] = {.lex_state = 697}, - [2442] = {.lex_state = 697}, - [2443] = {.lex_state = 697}, - [2444] = {.lex_state = 697}, - [2445] = {.lex_state = 697}, - [2446] = {.lex_state = 697}, - [2447] = {.lex_state = 697}, - [2448] = {.lex_state = 697}, - [2449] = {.lex_state = 697}, - [2450] = {.lex_state = 697}, - [2451] = {.lex_state = 7}, - [2452] = {.lex_state = 697}, - [2453] = {.lex_state = 697}, - [2454] = {.lex_state = 697}, - [2455] = {.lex_state = 697}, - [2456] = {.lex_state = 697}, - [2457] = {.lex_state = 697}, - [2458] = {.lex_state = 697}, - [2459] = {.lex_state = 697}, - [2460] = {.lex_state = 697}, - [2461] = {.lex_state = 705}, - [2462] = {.lex_state = 697}, - [2463] = {.lex_state = 697}, - [2464] = {.lex_state = 697}, - [2465] = {.lex_state = 697}, - [2466] = {.lex_state = 697}, - [2467] = {.lex_state = 697}, - [2468] = {.lex_state = 697}, - [2469] = {.lex_state = 697}, - [2470] = {.lex_state = 149, .external_lex_state = 2}, - [2471] = {.lex_state = 697}, - [2472] = {.lex_state = 697}, - [2473] = {.lex_state = 697}, - [2474] = {.lex_state = 697}, - [2475] = {.lex_state = 697}, - [2476] = {.lex_state = 697}, - [2477] = {.lex_state = 697}, - [2478] = {.lex_state = 697}, - [2479] = {.lex_state = 150, .external_lex_state = 2}, - [2480] = {.lex_state = 697}, - [2481] = {.lex_state = 697}, - [2482] = {.lex_state = 697}, - [2483] = {.lex_state = 697}, - [2484] = {.lex_state = 150, .external_lex_state = 2}, - [2485] = {.lex_state = 150, .external_lex_state = 2}, - [2486] = {.lex_state = 150, .external_lex_state = 2}, - [2487] = {.lex_state = 697}, - [2488] = {.lex_state = 697}, - [2489] = {.lex_state = 697}, - [2490] = {.lex_state = 697}, - [2491] = {.lex_state = 697}, - [2492] = {.lex_state = 697}, - [2493] = {.lex_state = 697}, - [2494] = {.lex_state = 697}, - [2495] = {.lex_state = 697}, - [2496] = {.lex_state = 697}, - [2497] = {.lex_state = 697}, - [2498] = {.lex_state = 697}, - [2499] = {.lex_state = 697}, - [2500] = {.lex_state = 697}, - [2501] = {.lex_state = 697}, - [2502] = {.lex_state = 697}, - [2503] = {.lex_state = 697}, - [2504] = {.lex_state = 697}, - [2505] = {.lex_state = 697}, - [2506] = {.lex_state = 697}, - [2507] = {.lex_state = 697}, - [2508] = {.lex_state = 697}, - [2509] = {.lex_state = 697}, - [2510] = {.lex_state = 697}, - [2511] = {.lex_state = 697}, - [2512] = {.lex_state = 697}, - [2513] = {.lex_state = 252, .external_lex_state = 2}, - [2514] = {.lex_state = 252, .external_lex_state = 2}, - [2515] = {.lex_state = 769, .external_lex_state = 2}, - [2516] = {.lex_state = 769, .external_lex_state = 2}, - [2517] = {.lex_state = 697}, - [2518] = {.lex_state = 697}, - [2519] = {.lex_state = 697}, - [2520] = {.lex_state = 697}, - [2521] = {.lex_state = 135, .external_lex_state = 2}, - [2522] = {.lex_state = 697}, - [2523] = {.lex_state = 697}, - [2524] = {.lex_state = 769, .external_lex_state = 2}, - [2525] = {.lex_state = 769, .external_lex_state = 2}, - [2526] = {.lex_state = 769, .external_lex_state = 2}, - [2527] = {.lex_state = 769, .external_lex_state = 2}, - [2528] = {.lex_state = 697}, - [2529] = {.lex_state = 104, .external_lex_state = 2}, - [2530] = {.lex_state = 134, .external_lex_state = 2}, - [2531] = {.lex_state = 104, .external_lex_state = 2}, - [2532] = {.lex_state = 134, .external_lex_state = 2}, - [2533] = {.lex_state = 697}, - [2534] = {.lex_state = 697}, - [2535] = {.lex_state = 697}, - [2536] = {.lex_state = 697}, - [2537] = {.lex_state = 697}, - [2538] = {.lex_state = 697}, - [2539] = {.lex_state = 697}, - [2540] = {.lex_state = 697}, - [2541] = {.lex_state = 697}, - [2542] = {.lex_state = 697}, - [2543] = {.lex_state = 697}, - [2544] = {.lex_state = 697}, - [2545] = {.lex_state = 697}, - [2546] = {.lex_state = 697}, - [2547] = {.lex_state = 770, .external_lex_state = 2}, - [2548] = {.lex_state = 697}, - [2549] = {.lex_state = 697}, - [2550] = {.lex_state = 770, .external_lex_state = 2}, - [2551] = {.lex_state = 697}, - [2552] = {.lex_state = 697}, - [2553] = {.lex_state = 697}, - [2554] = {.lex_state = 148, .external_lex_state = 2}, - [2555] = {.lex_state = 254, .external_lex_state = 2}, - [2556] = {.lex_state = 205, .external_lex_state = 2}, - [2557] = {.lex_state = 205, .external_lex_state = 2}, - [2558] = {.lex_state = 229, .external_lex_state = 2}, - [2559] = {.lex_state = 148, .external_lex_state = 2}, - [2560] = {.lex_state = 148, .external_lex_state = 2}, - [2561] = {.lex_state = 205, .external_lex_state = 2}, - [2562] = {.lex_state = 220, .external_lex_state = 2}, - [2563] = {.lex_state = 211, .external_lex_state = 2}, - [2564] = {.lex_state = 133, .external_lex_state = 2}, - [2565] = {.lex_state = 135, .external_lex_state = 2}, - [2566] = {.lex_state = 148, .external_lex_state = 2}, - [2567] = {.lex_state = 229, .external_lex_state = 2}, - [2568] = {.lex_state = 135, .external_lex_state = 2}, - [2569] = {.lex_state = 135, .external_lex_state = 2}, - [2570] = {.lex_state = 135, .external_lex_state = 2}, - [2571] = {.lex_state = 142, .external_lex_state = 2}, - [2572] = {.lex_state = 254, .external_lex_state = 2}, - [2573] = {.lex_state = 769, .external_lex_state = 2}, - [2574] = {.lex_state = 769, .external_lex_state = 2}, - [2575] = {.lex_state = 770, .external_lex_state = 2}, - [2576] = {.lex_state = 229, .external_lex_state = 2}, - [2577] = {.lex_state = 254, .external_lex_state = 2}, - [2578] = {.lex_state = 769, .external_lex_state = 2}, - [2579] = {.lex_state = 229, .external_lex_state = 2}, - [2580] = {.lex_state = 229, .external_lex_state = 2}, - [2581] = {.lex_state = 229, .external_lex_state = 2}, - [2582] = {.lex_state = 254, .external_lex_state = 2}, - [2583] = {.lex_state = 229, .external_lex_state = 2}, - [2584] = {.lex_state = 770, .external_lex_state = 2}, - [2585] = {.lex_state = 770, .external_lex_state = 2}, - [2586] = {.lex_state = 769, .external_lex_state = 2}, - [2587] = {.lex_state = 769, .external_lex_state = 2}, - [2588] = {.lex_state = 769, .external_lex_state = 2}, - [2589] = {.lex_state = 229, .external_lex_state = 2}, - [2590] = {.lex_state = 229, .external_lex_state = 2}, - [2591] = {.lex_state = 229, .external_lex_state = 2}, - [2592] = {.lex_state = 229, .external_lex_state = 2}, - [2593] = {.lex_state = 229, .external_lex_state = 2}, - [2594] = {.lex_state = 229, .external_lex_state = 2}, - [2595] = {.lex_state = 254, .external_lex_state = 2}, - [2596] = {.lex_state = 229, .external_lex_state = 2}, - [2597] = {.lex_state = 772, .external_lex_state = 2}, - [2598] = {.lex_state = 772, .external_lex_state = 2}, - [2599] = {.lex_state = 229, .external_lex_state = 2}, - [2600] = {.lex_state = 229, .external_lex_state = 2}, - [2601] = {.lex_state = 229, .external_lex_state = 2}, - [2602] = {.lex_state = 229, .external_lex_state = 2}, - [2603] = {.lex_state = 772, .external_lex_state = 2}, - [2604] = {.lex_state = 229, .external_lex_state = 2}, - [2605] = {.lex_state = 772, .external_lex_state = 2}, - [2606] = {.lex_state = 229, .external_lex_state = 2}, - [2607] = {.lex_state = 229, .external_lex_state = 2}, - [2608] = {.lex_state = 213, .external_lex_state = 2}, - [2609] = {.lex_state = 229, .external_lex_state = 2}, - [2610] = {.lex_state = 229, .external_lex_state = 2}, - [2611] = {.lex_state = 229, .external_lex_state = 2}, - [2612] = {.lex_state = 772, .external_lex_state = 2}, - [2613] = {.lex_state = 229, .external_lex_state = 2}, - [2614] = {.lex_state = 772, .external_lex_state = 2}, - [2615] = {.lex_state = 213, .external_lex_state = 2}, - [2616] = {.lex_state = 136, .external_lex_state = 2}, - [2617] = {.lex_state = 229, .external_lex_state = 2}, - [2618] = {.lex_state = 229, .external_lex_state = 2}, - [2619] = {.lex_state = 229, .external_lex_state = 2}, - [2620] = {.lex_state = 772, .external_lex_state = 2}, - [2621] = {.lex_state = 772, .external_lex_state = 2}, - [2622] = {.lex_state = 229, .external_lex_state = 2}, - [2623] = {.lex_state = 229, .external_lex_state = 2}, - [2624] = {.lex_state = 772, .external_lex_state = 2}, - [2625] = {.lex_state = 772, .external_lex_state = 2}, - [2626] = {.lex_state = 229, .external_lex_state = 2}, - [2627] = {.lex_state = 770, .external_lex_state = 2}, - [2628] = {.lex_state = 772, .external_lex_state = 2}, - [2629] = {.lex_state = 229, .external_lex_state = 2}, - [2630] = {.lex_state = 229, .external_lex_state = 2}, - [2631] = {.lex_state = 229, .external_lex_state = 2}, - [2632] = {.lex_state = 772, .external_lex_state = 2}, - [2633] = {.lex_state = 772, .external_lex_state = 2}, - [2634] = {.lex_state = 229, .external_lex_state = 2}, - [2635] = {.lex_state = 192, .external_lex_state = 2}, - [2636] = {.lex_state = 229, .external_lex_state = 2}, - [2637] = {.lex_state = 192, .external_lex_state = 2}, - [2638] = {.lex_state = 192, .external_lex_state = 2}, - [2639] = {.lex_state = 229, .external_lex_state = 2}, - [2640] = {.lex_state = 770, .external_lex_state = 2}, - [2641] = {.lex_state = 770, .external_lex_state = 2}, - [2642] = {.lex_state = 772, .external_lex_state = 2}, - [2643] = {.lex_state = 229, .external_lex_state = 2}, - [2644] = {.lex_state = 772, .external_lex_state = 2}, - [2645] = {.lex_state = 229, .external_lex_state = 2}, - [2646] = {.lex_state = 229, .external_lex_state = 2}, - [2647] = {.lex_state = 229, .external_lex_state = 2}, - [2648] = {.lex_state = 229, .external_lex_state = 2}, - [2649] = {.lex_state = 229, .external_lex_state = 2}, - [2650] = {.lex_state = 772, .external_lex_state = 2}, - [2651] = {.lex_state = 136, .external_lex_state = 2}, - [2652] = {.lex_state = 205, .external_lex_state = 2}, - [2653] = {.lex_state = 205, .external_lex_state = 2}, - [2654] = {.lex_state = 229, .external_lex_state = 2}, - [2655] = {.lex_state = 772, .external_lex_state = 2}, - [2656] = {.lex_state = 772, .external_lex_state = 2}, - [2657] = {.lex_state = 772, .external_lex_state = 2}, - [2658] = {.lex_state = 772, .external_lex_state = 2}, - [2659] = {.lex_state = 229, .external_lex_state = 2}, - [2660] = {.lex_state = 229, .external_lex_state = 2}, - [2661] = {.lex_state = 229, .external_lex_state = 2}, - [2662] = {.lex_state = 229, .external_lex_state = 2}, - [2663] = {.lex_state = 772, .external_lex_state = 2}, - [2664] = {.lex_state = 229, .external_lex_state = 2}, - [2665] = {.lex_state = 229, .external_lex_state = 2}, - [2666] = {.lex_state = 772, .external_lex_state = 2}, - [2667] = {.lex_state = 137, .external_lex_state = 2}, - [2668] = {.lex_state = 772, .external_lex_state = 2}, - [2669] = {.lex_state = 772, .external_lex_state = 2}, - [2670] = {.lex_state = 772, .external_lex_state = 2}, - [2671] = {.lex_state = 772, .external_lex_state = 2}, - [2672] = {.lex_state = 239, .external_lex_state = 2}, - [2673] = {.lex_state = 239, .external_lex_state = 2}, - [2674] = {.lex_state = 239, .external_lex_state = 2}, - [2675] = {.lex_state = 772, .external_lex_state = 2}, - [2676] = {.lex_state = 192, .external_lex_state = 2}, - [2677] = {.lex_state = 212, .external_lex_state = 2}, - [2678] = {.lex_state = 192, .external_lex_state = 2}, - [2679] = {.lex_state = 772, .external_lex_state = 2}, - [2680] = {.lex_state = 214, .external_lex_state = 2}, - [2681] = {.lex_state = 214, .external_lex_state = 2}, - [2682] = {.lex_state = 214, .external_lex_state = 2}, - [2683] = {.lex_state = 214, .external_lex_state = 2}, - [2684] = {.lex_state = 214, .external_lex_state = 2}, - [2685] = {.lex_state = 221, .external_lex_state = 2}, - [2686] = {.lex_state = 137, .external_lex_state = 2}, - [2687] = {.lex_state = 137, .external_lex_state = 2}, - [2688] = {.lex_state = 137, .external_lex_state = 2}, - [2689] = {.lex_state = 137, .external_lex_state = 2}, - [2690] = {.lex_state = 137, .external_lex_state = 2}, - [2691] = {.lex_state = 203, .external_lex_state = 2}, - [2692] = {.lex_state = 203, .external_lex_state = 2}, - [2693] = {.lex_state = 751, .external_lex_state = 2}, - [2694] = {.lex_state = 751, .external_lex_state = 2}, - [2695] = {.lex_state = 203, .external_lex_state = 2}, - [2696] = {.lex_state = 203, .external_lex_state = 2}, - [2697] = {.lex_state = 203, .external_lex_state = 2}, - [2698] = {.lex_state = 203, .external_lex_state = 2}, - [2699] = {.lex_state = 202, .external_lex_state = 2}, - [2700] = {.lex_state = 248, .external_lex_state = 2}, - [2701] = {.lex_state = 204, .external_lex_state = 2}, - [2702] = {.lex_state = 772, .external_lex_state = 2}, - [2703] = {.lex_state = 772, .external_lex_state = 2}, - [2704] = {.lex_state = 239, .external_lex_state = 2}, - [2705] = {.lex_state = 772, .external_lex_state = 2}, - [2706] = {.lex_state = 237, .external_lex_state = 2}, - [2707] = {.lex_state = 237, .external_lex_state = 2}, - [2708] = {.lex_state = 772, .external_lex_state = 2}, - [2709] = {.lex_state = 239, .external_lex_state = 2}, - [2710] = {.lex_state = 772, .external_lex_state = 2}, - [2711] = {.lex_state = 248, .external_lex_state = 2}, - [2712] = {.lex_state = 772, .external_lex_state = 2}, - [2713] = {.lex_state = 44, .external_lex_state = 2}, - [2714] = {.lex_state = 248, .external_lex_state = 2}, - [2715] = {.lex_state = 772, .external_lex_state = 2}, - [2716] = {.lex_state = 772, .external_lex_state = 2}, - [2717] = {.lex_state = 772, .external_lex_state = 2}, - [2718] = {.lex_state = 772, .external_lex_state = 2}, - [2719] = {.lex_state = 772, .external_lex_state = 2}, - [2720] = {.lex_state = 248, .external_lex_state = 2}, - [2721] = {.lex_state = 206, .external_lex_state = 2}, - [2722] = {.lex_state = 772, .external_lex_state = 2}, - [2723] = {.lex_state = 237, .external_lex_state = 2}, - [2724] = {.lex_state = 237, .external_lex_state = 2}, - [2725] = {.lex_state = 248, .external_lex_state = 2}, - [2726] = {.lex_state = 772, .external_lex_state = 2}, - [2727] = {.lex_state = 772, .external_lex_state = 2}, - [2728] = {.lex_state = 248, .external_lex_state = 2}, - [2729] = {.lex_state = 248, .external_lex_state = 2}, - [2730] = {.lex_state = 772, .external_lex_state = 2}, - [2731] = {.lex_state = 248, .external_lex_state = 2}, - [2732] = {.lex_state = 248, .external_lex_state = 2}, - [2733] = {.lex_state = 248, .external_lex_state = 2}, - [2734] = {.lex_state = 248, .external_lex_state = 2}, - [2735] = {.lex_state = 248, .external_lex_state = 2}, - [2736] = {.lex_state = 248, .external_lex_state = 2}, - [2737] = {.lex_state = 248, .external_lex_state = 2}, - [2738] = {.lex_state = 248, .external_lex_state = 2}, - [2739] = {.lex_state = 248, .external_lex_state = 2}, - [2740] = {.lex_state = 248, .external_lex_state = 2}, - [2741] = {.lex_state = 248, .external_lex_state = 2}, - [2742] = {.lex_state = 248, .external_lex_state = 2}, - [2743] = {.lex_state = 248, .external_lex_state = 2}, - [2744] = {.lex_state = 248, .external_lex_state = 2}, - [2745] = {.lex_state = 248, .external_lex_state = 2}, - [2746] = {.lex_state = 248, .external_lex_state = 2}, - [2747] = {.lex_state = 772, .external_lex_state = 2}, - [2748] = {.lex_state = 238, .external_lex_state = 2}, - [2749] = {.lex_state = 205, .external_lex_state = 2}, - [2750] = {.lex_state = 138, .external_lex_state = 2}, - [2751] = {.lex_state = 205, .external_lex_state = 2}, - [2752] = {.lex_state = 205, .external_lex_state = 2}, - [2753] = {.lex_state = 248, .external_lex_state = 2}, - [2754] = {.lex_state = 189, .external_lex_state = 2}, - [2755] = {.lex_state = 215, .external_lex_state = 2}, - [2756] = {.lex_state = 44, .external_lex_state = 2}, - [2757] = {.lex_state = 209, .external_lex_state = 2}, - [2758] = {.lex_state = 209, .external_lex_state = 2}, - [2759] = {.lex_state = 209, .external_lex_state = 2}, - [2760] = {.lex_state = 200, .external_lex_state = 2}, - [2761] = {.lex_state = 209, .external_lex_state = 2}, - [2762] = {.lex_state = 200, .external_lex_state = 2}, - [2763] = {.lex_state = 209, .external_lex_state = 2}, - [2764] = {.lex_state = 209, .external_lex_state = 2}, - [2765] = {.lex_state = 190, .external_lex_state = 2}, - [2766] = {.lex_state = 143, .external_lex_state = 2}, - [2767] = {.lex_state = 209, .external_lex_state = 2}, - [2768] = {.lex_state = 209, .external_lex_state = 2}, - [2769] = {.lex_state = 191, .external_lex_state = 2}, - [2770] = {.lex_state = 209, .external_lex_state = 2}, - [2771] = {.lex_state = 209, .external_lex_state = 2}, - [2772] = {.lex_state = 209, .external_lex_state = 2}, - [2773] = {.lex_state = 209, .external_lex_state = 2}, - [2774] = {.lex_state = 209, .external_lex_state = 2}, - [2775] = {.lex_state = 209, .external_lex_state = 2}, - [2776] = {.lex_state = 209, .external_lex_state = 2}, - [2777] = {.lex_state = 209, .external_lex_state = 2}, - [2778] = {.lex_state = 209, .external_lex_state = 2}, - [2779] = {.lex_state = 190, .external_lex_state = 2}, - [2780] = {.lex_state = 209, .external_lex_state = 2}, - [2781] = {.lex_state = 238, .external_lex_state = 2}, - [2782] = {.lex_state = 238, .external_lex_state = 2}, - [2783] = {.lex_state = 238, .external_lex_state = 2}, - [2784] = {.lex_state = 215, .external_lex_state = 2}, - [2785] = {.lex_state = 239, .external_lex_state = 2}, - [2786] = {.lex_state = 238, .external_lex_state = 2}, - [2787] = {.lex_state = 209, .external_lex_state = 2}, - [2788] = {.lex_state = 238, .external_lex_state = 2}, - [2789] = {.lex_state = 193, .external_lex_state = 2}, - [2790] = {.lex_state = 239, .external_lex_state = 2}, - [2791] = {.lex_state = 190, .external_lex_state = 2}, - [2792] = {.lex_state = 248, .external_lex_state = 2}, - [2793] = {.lex_state = 190, .external_lex_state = 2}, - [2794] = {.lex_state = 190, .external_lex_state = 2}, - [2795] = {.lex_state = 190, .external_lex_state = 2}, - [2796] = {.lex_state = 209, .external_lex_state = 2}, - [2797] = {.lex_state = 216, .external_lex_state = 2}, - [2798] = {.lex_state = 201, .external_lex_state = 2}, - [2799] = {.lex_state = 229, .external_lex_state = 2}, - [2800] = {.lex_state = 139, .external_lex_state = 2}, + [1066] = {.lex_state = 42, .external_lex_state = 2}, + [1067] = {.lex_state = 42, .external_lex_state = 2}, + [1068] = {.lex_state = 42, .external_lex_state = 2}, + [1069] = {.lex_state = 42, .external_lex_state = 2}, + [1070] = {.lex_state = 42, .external_lex_state = 2}, + [1071] = {.lex_state = 42, .external_lex_state = 2}, + [1072] = {.lex_state = 42, .external_lex_state = 2}, + [1073] = {.lex_state = 42, .external_lex_state = 2}, + [1074] = {.lex_state = 42, .external_lex_state = 2}, + [1075] = {.lex_state = 13, .external_lex_state = 2}, + [1076] = {.lex_state = 41, .external_lex_state = 2}, + [1077] = {.lex_state = 13, .external_lex_state = 2}, + [1078] = {.lex_state = 2297, .external_lex_state = 2}, + [1079] = {.lex_state = 42, .external_lex_state = 2}, + [1080] = {.lex_state = 42, .external_lex_state = 2}, + [1081] = {.lex_state = 42, .external_lex_state = 2}, + [1082] = {.lex_state = 42, .external_lex_state = 2}, + [1083] = {.lex_state = 42, .external_lex_state = 2}, + [1084] = {.lex_state = 42, .external_lex_state = 2}, + [1085] = {.lex_state = 42, .external_lex_state = 2}, + [1086] = {.lex_state = 42, .external_lex_state = 2}, + [1087] = {.lex_state = 42, .external_lex_state = 2}, + [1088] = {.lex_state = 42, .external_lex_state = 2}, + [1089] = {.lex_state = 42, .external_lex_state = 2}, + [1090] = {.lex_state = 42, .external_lex_state = 2}, + [1091] = {.lex_state = 42, .external_lex_state = 2}, + [1092] = {.lex_state = 42, .external_lex_state = 2}, + [1093] = {.lex_state = 2297, .external_lex_state = 2}, + [1094] = {.lex_state = 42, .external_lex_state = 2}, + [1095] = {.lex_state = 42, .external_lex_state = 2}, + [1096] = {.lex_state = 42, .external_lex_state = 2}, + [1097] = {.lex_state = 42, .external_lex_state = 2}, + [1098] = {.lex_state = 42, .external_lex_state = 2}, + [1099] = {.lex_state = 42, .external_lex_state = 2}, + [1100] = {.lex_state = 42, .external_lex_state = 2}, + [1101] = {.lex_state = 42, .external_lex_state = 2}, + [1102] = {.lex_state = 42, .external_lex_state = 2}, + [1103] = {.lex_state = 42, .external_lex_state = 2}, + [1104] = {.lex_state = 42, .external_lex_state = 2}, + [1105] = {.lex_state = 42, .external_lex_state = 2}, + [1106] = {.lex_state = 42, .external_lex_state = 2}, + [1107] = {.lex_state = 42, .external_lex_state = 2}, + [1108] = {.lex_state = 42, .external_lex_state = 2}, + [1109] = {.lex_state = 42, .external_lex_state = 2}, + [1110] = {.lex_state = 42, .external_lex_state = 2}, + [1111] = {.lex_state = 42, .external_lex_state = 2}, + [1112] = {.lex_state = 42, .external_lex_state = 2}, + [1113] = {.lex_state = 42, .external_lex_state = 2}, + [1114] = {.lex_state = 42, .external_lex_state = 2}, + [1115] = {.lex_state = 42, .external_lex_state = 2}, + [1116] = {.lex_state = 42, .external_lex_state = 2}, + [1117] = {.lex_state = 42, .external_lex_state = 2}, + [1118] = {.lex_state = 42, .external_lex_state = 2}, + [1119] = {.lex_state = 42, .external_lex_state = 2}, + [1120] = {.lex_state = 42, .external_lex_state = 2}, + [1121] = {.lex_state = 42, .external_lex_state = 2}, + [1122] = {.lex_state = 42, .external_lex_state = 2}, + [1123] = {.lex_state = 42, .external_lex_state = 2}, + [1124] = {.lex_state = 42, .external_lex_state = 2}, + [1125] = {.lex_state = 42, .external_lex_state = 2}, + [1126] = {.lex_state = 42, .external_lex_state = 2}, + [1127] = {.lex_state = 42, .external_lex_state = 2}, + [1128] = {.lex_state = 42, .external_lex_state = 2}, + [1129] = {.lex_state = 42, .external_lex_state = 2}, + [1130] = {.lex_state = 42, .external_lex_state = 2}, + [1131] = {.lex_state = 42, .external_lex_state = 2}, + [1132] = {.lex_state = 42, .external_lex_state = 2}, + [1133] = {.lex_state = 42, .external_lex_state = 2}, + [1134] = {.lex_state = 42, .external_lex_state = 2}, + [1135] = {.lex_state = 42, .external_lex_state = 2}, + [1136] = {.lex_state = 42, .external_lex_state = 2}, + [1137] = {.lex_state = 42, .external_lex_state = 2}, + [1138] = {.lex_state = 42, .external_lex_state = 2}, + [1139] = {.lex_state = 42, .external_lex_state = 2}, + [1140] = {.lex_state = 42, .external_lex_state = 2}, + [1141] = {.lex_state = 42, .external_lex_state = 2}, + [1142] = {.lex_state = 42, .external_lex_state = 2}, + [1143] = {.lex_state = 42, .external_lex_state = 2}, + [1144] = {.lex_state = 42, .external_lex_state = 2}, + [1145] = {.lex_state = 42, .external_lex_state = 2}, + [1146] = {.lex_state = 42, .external_lex_state = 2}, + [1147] = {.lex_state = 42, .external_lex_state = 2}, + [1148] = {.lex_state = 42, .external_lex_state = 2}, + [1149] = {.lex_state = 42, .external_lex_state = 2}, + [1150] = {.lex_state = 42, .external_lex_state = 2}, + [1151] = {.lex_state = 42, .external_lex_state = 2}, + [1152] = {.lex_state = 42, .external_lex_state = 2}, + [1153] = {.lex_state = 42, .external_lex_state = 2}, + [1154] = {.lex_state = 42, .external_lex_state = 2}, + [1155] = {.lex_state = 42, .external_lex_state = 2}, + [1156] = {.lex_state = 42, .external_lex_state = 2}, + [1157] = {.lex_state = 42, .external_lex_state = 2}, + [1158] = {.lex_state = 2297, .external_lex_state = 2}, + [1159] = {.lex_state = 42, .external_lex_state = 2}, + [1160] = {.lex_state = 42, .external_lex_state = 2}, + [1161] = {.lex_state = 42, .external_lex_state = 2}, + [1162] = {.lex_state = 42, .external_lex_state = 2}, + [1163] = {.lex_state = 42, .external_lex_state = 2}, + [1164] = {.lex_state = 42, .external_lex_state = 2}, + [1165] = {.lex_state = 42, .external_lex_state = 2}, + [1166] = {.lex_state = 42, .external_lex_state = 2}, + [1167] = {.lex_state = 42, .external_lex_state = 2}, + [1168] = {.lex_state = 42, .external_lex_state = 2}, + [1169] = {.lex_state = 42, .external_lex_state = 2}, + [1170] = {.lex_state = 42, .external_lex_state = 2}, + [1171] = {.lex_state = 42, .external_lex_state = 2}, + [1172] = {.lex_state = 2297, .external_lex_state = 2}, + [1173] = {.lex_state = 42, .external_lex_state = 2}, + [1174] = {.lex_state = 42, .external_lex_state = 2}, + [1175] = {.lex_state = 42, .external_lex_state = 2}, + [1176] = {.lex_state = 42, .external_lex_state = 2}, + [1177] = {.lex_state = 42, .external_lex_state = 2}, + [1178] = {.lex_state = 42, .external_lex_state = 2}, + [1179] = {.lex_state = 2297, .external_lex_state = 2}, + [1180] = {.lex_state = 3710}, + [1181] = {.lex_state = 44, .external_lex_state = 2}, + [1182] = {.lex_state = 3712}, + [1183] = {.lex_state = 3720}, + [1184] = {.lex_state = 44, .external_lex_state = 2}, + [1185] = {.lex_state = 3724}, + [1186] = {.lex_state = 44, .external_lex_state = 2}, + [1187] = {.lex_state = 44, .external_lex_state = 2}, + [1188] = {.lex_state = 35, .external_lex_state = 2}, + [1189] = {.lex_state = 35, .external_lex_state = 2}, + [1190] = {.lex_state = 35, .external_lex_state = 2}, + [1191] = {.lex_state = 35, .external_lex_state = 2}, + [1192] = {.lex_state = 3856}, + [1193] = {.lex_state = 3858}, + [1194] = {.lex_state = 35, .external_lex_state = 2}, + [1195] = {.lex_state = 3726}, + [1196] = {.lex_state = 3714}, + [1197] = {.lex_state = 3726}, + [1198] = {.lex_state = 35, .external_lex_state = 2}, + [1199] = {.lex_state = 35, .external_lex_state = 2}, + [1200] = {.lex_state = 35, .external_lex_state = 2}, + [1201] = {.lex_state = 3714}, + [1202] = {.lex_state = 3856}, + [1203] = {.lex_state = 3860}, + [1204] = {.lex_state = 3858}, + [1205] = {.lex_state = 3860}, + [1206] = {.lex_state = 3716}, + [1207] = {.lex_state = 3728}, + [1208] = {.lex_state = 3862}, + [1209] = {.lex_state = 3716}, + [1210] = {.lex_state = 3860}, + [1211] = {.lex_state = 3728}, + [1212] = {.lex_state = 3716}, + [1213] = {.lex_state = 3860}, + [1214] = {.lex_state = 3716}, + [1215] = {.lex_state = 3716}, + [1216] = {.lex_state = 239, .external_lex_state = 2}, + [1217] = {.lex_state = 239, .external_lex_state = 2}, + [1218] = {.lex_state = 3728}, + [1219] = {.lex_state = 239, .external_lex_state = 2}, + [1220] = {.lex_state = 3728}, + [1221] = {.lex_state = 3730}, + [1222] = {.lex_state = 239, .external_lex_state = 2}, + [1223] = {.lex_state = 3728}, + [1224] = {.lex_state = 3862}, + [1225] = {.lex_state = 239, .external_lex_state = 2}, + [1226] = {.lex_state = 239, .external_lex_state = 2}, + [1227] = {.lex_state = 3862}, + [1228] = {.lex_state = 3722}, + [1229] = {.lex_state = 3862}, + [1230] = {.lex_state = 3862}, + [1231] = {.lex_state = 35, .external_lex_state = 2}, + [1232] = {.lex_state = 35, .external_lex_state = 2}, + [1233] = {.lex_state = 35, .external_lex_state = 2}, + [1234] = {.lex_state = 44, .external_lex_state = 2}, + [1235] = {.lex_state = 35, .external_lex_state = 2}, + [1236] = {.lex_state = 3862}, + [1237] = {.lex_state = 35, .external_lex_state = 2}, + [1238] = {.lex_state = 235, .external_lex_state = 2}, + [1239] = {.lex_state = 3732}, + [1240] = {.lex_state = 3732}, + [1241] = {.lex_state = 3862}, + [1242] = {.lex_state = 44, .external_lex_state = 2}, + [1243] = {.lex_state = 3862}, + [1244] = {.lex_state = 235, .external_lex_state = 2}, + [1245] = {.lex_state = 35, .external_lex_state = 2}, + [1246] = {.lex_state = 35, .external_lex_state = 2}, + [1247] = {.lex_state = 35, .external_lex_state = 2}, + [1248] = {.lex_state = 3862}, + [1249] = {.lex_state = 3862}, + [1250] = {.lex_state = 35, .external_lex_state = 2}, + [1251] = {.lex_state = 3734}, + [1252] = {.lex_state = 3734}, + [1253] = {.lex_state = 3734}, + [1254] = {.lex_state = 3734}, + [1255] = {.lex_state = 41, .external_lex_state = 2}, + [1256] = {.lex_state = 2279, .external_lex_state = 2}, + [1257] = {.lex_state = 3734}, + [1258] = {.lex_state = 41, .external_lex_state = 2}, + [1259] = {.lex_state = 2278, .external_lex_state = 2}, + [1260] = {.lex_state = 2289, .external_lex_state = 2}, + [1261] = {.lex_state = 2280, .external_lex_state = 2}, + [1262] = {.lex_state = 2278, .external_lex_state = 2}, + [1263] = {.lex_state = 2293, .external_lex_state = 2}, + [1264] = {.lex_state = 2279, .external_lex_state = 2}, + [1265] = {.lex_state = 41, .external_lex_state = 2}, + [1266] = {.lex_state = 2278, .external_lex_state = 2}, + [1267] = {.lex_state = 41, .external_lex_state = 2}, + [1268] = {.lex_state = 41, .external_lex_state = 2}, + [1269] = {.lex_state = 41, .external_lex_state = 2}, + [1270] = {.lex_state = 41, .external_lex_state = 2}, + [1271] = {.lex_state = 41, .external_lex_state = 2}, + [1272] = {.lex_state = 41, .external_lex_state = 2}, + [1273] = {.lex_state = 41, .external_lex_state = 2}, + [1274] = {.lex_state = 41, .external_lex_state = 2}, + [1275] = {.lex_state = 41, .external_lex_state = 2}, + [1276] = {.lex_state = 41, .external_lex_state = 2}, + [1277] = {.lex_state = 41, .external_lex_state = 2}, + [1278] = {.lex_state = 2283, .external_lex_state = 2}, + [1279] = {.lex_state = 2321, .external_lex_state = 2}, + [1280] = {.lex_state = 41, .external_lex_state = 2}, + [1281] = {.lex_state = 41, .external_lex_state = 2}, + [1282] = {.lex_state = 41, .external_lex_state = 2}, + [1283] = {.lex_state = 41, .external_lex_state = 2}, + [1284] = {.lex_state = 41, .external_lex_state = 2}, + [1285] = {.lex_state = 41, .external_lex_state = 2}, + [1286] = {.lex_state = 2289, .external_lex_state = 2}, + [1287] = {.lex_state = 41, .external_lex_state = 2}, + [1288] = {.lex_state = 41, .external_lex_state = 2}, + [1289] = {.lex_state = 41, .external_lex_state = 2}, + [1290] = {.lex_state = 41, .external_lex_state = 2}, + [1291] = {.lex_state = 41, .external_lex_state = 2}, + [1292] = {.lex_state = 41, .external_lex_state = 2}, + [1293] = {.lex_state = 41, .external_lex_state = 2}, + [1294] = {.lex_state = 41, .external_lex_state = 2}, + [1295] = {.lex_state = 41, .external_lex_state = 2}, + [1296] = {.lex_state = 2282, .external_lex_state = 2}, + [1297] = {.lex_state = 41, .external_lex_state = 2}, + [1298] = {.lex_state = 41, .external_lex_state = 2}, + [1299] = {.lex_state = 41, .external_lex_state = 2}, + [1300] = {.lex_state = 41, .external_lex_state = 2}, + [1301] = {.lex_state = 2280, .external_lex_state = 2}, + [1302] = {.lex_state = 41, .external_lex_state = 2}, + [1303] = {.lex_state = 41, .external_lex_state = 2}, + [1304] = {.lex_state = 41, .external_lex_state = 2}, + [1305] = {.lex_state = 2317, .external_lex_state = 2}, + [1306] = {.lex_state = 41, .external_lex_state = 2}, + [1307] = {.lex_state = 41, .external_lex_state = 2}, + [1308] = {.lex_state = 41, .external_lex_state = 2}, + [1309] = {.lex_state = 41, .external_lex_state = 2}, + [1310] = {.lex_state = 41, .external_lex_state = 2}, + [1311] = {.lex_state = 2282, .external_lex_state = 2}, + [1312] = {.lex_state = 41, .external_lex_state = 2}, + [1313] = {.lex_state = 41, .external_lex_state = 2}, + [1314] = {.lex_state = 41, .external_lex_state = 2}, + [1315] = {.lex_state = 41, .external_lex_state = 2}, + [1316] = {.lex_state = 41, .external_lex_state = 2}, + [1317] = {.lex_state = 41, .external_lex_state = 2}, + [1318] = {.lex_state = 41, .external_lex_state = 2}, + [1319] = {.lex_state = 41, .external_lex_state = 2}, + [1320] = {.lex_state = 41, .external_lex_state = 2}, + [1321] = {.lex_state = 41, .external_lex_state = 2}, + [1322] = {.lex_state = 41, .external_lex_state = 2}, + [1323] = {.lex_state = 2264}, + [1324] = {.lex_state = 41, .external_lex_state = 2}, + [1325] = {.lex_state = 41, .external_lex_state = 2}, + [1326] = {.lex_state = 2293, .external_lex_state = 2}, + [1327] = {.lex_state = 44, .external_lex_state = 2}, + [1328] = {.lex_state = 2292, .external_lex_state = 2}, + [1329] = {.lex_state = 41, .external_lex_state = 2}, + [1330] = {.lex_state = 41, .external_lex_state = 2}, + [1331] = {.lex_state = 41, .external_lex_state = 2}, + [1332] = {.lex_state = 2278, .external_lex_state = 2}, + [1333] = {.lex_state = 41, .external_lex_state = 2}, + [1334] = {.lex_state = 41, .external_lex_state = 2}, + [1335] = {.lex_state = 2292, .external_lex_state = 2}, + [1336] = {.lex_state = 2292, .external_lex_state = 2}, + [1337] = {.lex_state = 2292, .external_lex_state = 2}, + [1338] = {.lex_state = 44, .external_lex_state = 2}, + [1339] = {.lex_state = 9}, + [1340] = {.lex_state = 41, .external_lex_state = 2}, + [1341] = {.lex_state = 3736}, + [1342] = {.lex_state = 2292, .external_lex_state = 2}, + [1343] = {.lex_state = 2264}, + [1344] = {.lex_state = 2312, .external_lex_state = 2}, + [1345] = {.lex_state = 2264}, + [1346] = {.lex_state = 2264}, + [1347] = {.lex_state = 2312, .external_lex_state = 2}, + [1348] = {.lex_state = 2264}, + [1349] = {.lex_state = 2281, .external_lex_state = 2}, + [1350] = {.lex_state = 2312, .external_lex_state = 2}, + [1351] = {.lex_state = 2318, .external_lex_state = 2}, + [1352] = {.lex_state = 2283, .external_lex_state = 2}, + [1353] = {.lex_state = 2264}, + [1354] = {.lex_state = 2318, .external_lex_state = 2}, + [1355] = {.lex_state = 2290, .external_lex_state = 2}, + [1356] = {.lex_state = 2282, .external_lex_state = 2}, + [1357] = {.lex_state = 2292, .external_lex_state = 2}, + [1358] = {.lex_state = 2264}, + [1359] = {.lex_state = 2283, .external_lex_state = 2}, + [1360] = {.lex_state = 2283, .external_lex_state = 2}, + [1361] = {.lex_state = 3718}, + [1362] = {.lex_state = 2321, .external_lex_state = 2}, + [1363] = {.lex_state = 9}, + [1364] = {.lex_state = 2264}, + [1365] = {.lex_state = 3718}, + [1366] = {.lex_state = 3864}, + [1367] = {.lex_state = 9}, + [1368] = {.lex_state = 2292, .external_lex_state = 2}, + [1369] = {.lex_state = 2283, .external_lex_state = 2}, + [1370] = {.lex_state = 3864}, + [1371] = {.lex_state = 2282, .external_lex_state = 2}, + [1372] = {.lex_state = 2317, .external_lex_state = 2}, + [1373] = {.lex_state = 2292, .external_lex_state = 2}, + [1374] = {.lex_state = 3736}, + [1375] = {.lex_state = 44, .external_lex_state = 2}, + [1376] = {.lex_state = 2283, .external_lex_state = 2}, + [1377] = {.lex_state = 2290, .external_lex_state = 2}, + [1378] = {.lex_state = 2264}, + [1379] = {.lex_state = 9}, + [1380] = {.lex_state = 2283, .external_lex_state = 2}, + [1381] = {.lex_state = 2283, .external_lex_state = 2}, + [1382] = {.lex_state = 2284, .external_lex_state = 2}, + [1383] = {.lex_state = 2312, .external_lex_state = 2}, + [1384] = {.lex_state = 2312, .external_lex_state = 2}, + [1385] = {.lex_state = 2312, .external_lex_state = 2}, + [1386] = {.lex_state = 2283, .external_lex_state = 2}, + [1387] = {.lex_state = 2319, .external_lex_state = 2}, + [1388] = {.lex_state = 2312, .external_lex_state = 2}, + [1389] = {.lex_state = 2281, .external_lex_state = 2}, + [1390] = {.lex_state = 9}, + [1391] = {.lex_state = 9}, + [1392] = {.lex_state = 2319, .external_lex_state = 2}, + [1393] = {.lex_state = 2312, .external_lex_state = 2}, + [1394] = {.lex_state = 3864}, + [1395] = {.lex_state = 2319, .external_lex_state = 2}, + [1396] = {.lex_state = 2284, .external_lex_state = 2}, + [1397] = {.lex_state = 2318, .external_lex_state = 2}, + [1398] = {.lex_state = 9}, + [1399] = {.lex_state = 2264}, + [1400] = {.lex_state = 3864}, + [1401] = {.lex_state = 2318, .external_lex_state = 2}, + [1402] = {.lex_state = 41, .external_lex_state = 2}, + [1403] = {.lex_state = 9}, + [1404] = {.lex_state = 2319, .external_lex_state = 2}, + [1405] = {.lex_state = 2319, .external_lex_state = 2}, + [1406] = {.lex_state = 2283, .external_lex_state = 2}, + [1407] = {.lex_state = 2264}, + [1408] = {.lex_state = 2264}, + [1409] = {.lex_state = 9}, + [1410] = {.lex_state = 3738}, + [1411] = {.lex_state = 2264}, + [1412] = {.lex_state = 2285, .external_lex_state = 2}, + [1413] = {.lex_state = 2264}, + [1414] = {.lex_state = 2285, .external_lex_state = 2}, + [1415] = {.lex_state = 2310, .external_lex_state = 2}, + [1416] = {.lex_state = 2319, .external_lex_state = 2}, + [1417] = {.lex_state = 2310, .external_lex_state = 2}, + [1418] = {.lex_state = 2264}, + [1419] = {.lex_state = 2319, .external_lex_state = 2}, + [1420] = {.lex_state = 2264}, + [1421] = {.lex_state = 2284, .external_lex_state = 2}, + [1422] = {.lex_state = 2264}, + [1423] = {.lex_state = 9}, + [1424] = {.lex_state = 2253}, + [1425] = {.lex_state = 9}, + [1426] = {.lex_state = 2264}, + [1427] = {.lex_state = 2319, .external_lex_state = 2}, + [1428] = {.lex_state = 2264}, + [1429] = {.lex_state = 2319, .external_lex_state = 2}, + [1430] = {.lex_state = 2311, .external_lex_state = 2}, + [1431] = {.lex_state = 2319, .external_lex_state = 2}, + [1432] = {.lex_state = 2312, .external_lex_state = 2}, + [1433] = {.lex_state = 2312, .external_lex_state = 2}, + [1434] = {.lex_state = 2285, .external_lex_state = 2}, + [1435] = {.lex_state = 2264}, + [1436] = {.lex_state = 2285, .external_lex_state = 2}, + [1437] = {.lex_state = 3738}, + [1438] = {.lex_state = 2309, .external_lex_state = 2}, + [1439] = {.lex_state = 9}, + [1440] = {.lex_state = 2251}, + [1441] = {.lex_state = 2285, .external_lex_state = 2}, + [1442] = {.lex_state = 2310, .external_lex_state = 2}, + [1443] = {.lex_state = 2310, .external_lex_state = 2}, + [1444] = {.lex_state = 2310, .external_lex_state = 2}, + [1445] = {.lex_state = 2310, .external_lex_state = 2}, + [1446] = {.lex_state = 2264}, + [1447] = {.lex_state = 2284, .external_lex_state = 2}, + [1448] = {.lex_state = 2285, .external_lex_state = 2}, + [1449] = {.lex_state = 2307, .external_lex_state = 2}, + [1450] = {.lex_state = 2264}, + [1451] = {.lex_state = 2264}, + [1452] = {.lex_state = 2264}, + [1453] = {.lex_state = 2286, .external_lex_state = 2}, + [1454] = {.lex_state = 2310, .external_lex_state = 2}, + [1455] = {.lex_state = 2291, .external_lex_state = 2}, + [1456] = {.lex_state = 2310, .external_lex_state = 2}, + [1457] = {.lex_state = 2310, .external_lex_state = 2}, + [1458] = {.lex_state = 2312, .external_lex_state = 2}, + [1459] = {.lex_state = 2310, .external_lex_state = 2}, + [1460] = {.lex_state = 2312, .external_lex_state = 2}, + [1461] = {.lex_state = 2312, .external_lex_state = 2}, + [1462] = {.lex_state = 2307, .external_lex_state = 2}, + [1463] = {.lex_state = 2255}, + [1464] = {.lex_state = 2255}, + [1465] = {.lex_state = 2285, .external_lex_state = 2}, + [1466] = {.lex_state = 9}, + [1467] = {.lex_state = 2285, .external_lex_state = 2}, + [1468] = {.lex_state = 2285, .external_lex_state = 2}, + [1469] = {.lex_state = 2264}, + [1470] = {.lex_state = 2285, .external_lex_state = 2}, + [1471] = {.lex_state = 2264}, + [1472] = {.lex_state = 9}, + [1473] = {.lex_state = 2310, .external_lex_state = 2}, + [1474] = {.lex_state = 2315, .external_lex_state = 2}, + [1475] = {.lex_state = 2315, .external_lex_state = 2}, + [1476] = {.lex_state = 2315, .external_lex_state = 2}, + [1477] = {.lex_state = 2315, .external_lex_state = 2}, + [1478] = {.lex_state = 2315, .external_lex_state = 2}, + [1479] = {.lex_state = 2315, .external_lex_state = 2}, + [1480] = {.lex_state = 2315, .external_lex_state = 2}, + [1481] = {.lex_state = 2315, .external_lex_state = 2}, + [1482] = {.lex_state = 2315, .external_lex_state = 2}, + [1483] = {.lex_state = 2315, .external_lex_state = 2}, + [1484] = {.lex_state = 2315, .external_lex_state = 2}, + [1485] = {.lex_state = 2315, .external_lex_state = 2}, + [1486] = {.lex_state = 2315, .external_lex_state = 2}, + [1487] = {.lex_state = 2315, .external_lex_state = 2}, + [1488] = {.lex_state = 2315, .external_lex_state = 2}, + [1489] = {.lex_state = 2315, .external_lex_state = 2}, + [1490] = {.lex_state = 2315, .external_lex_state = 2}, + [1491] = {.lex_state = 2315, .external_lex_state = 2}, + [1492] = {.lex_state = 2315, .external_lex_state = 2}, + [1493] = {.lex_state = 2315, .external_lex_state = 2}, + [1494] = {.lex_state = 2315, .external_lex_state = 2}, + [1495] = {.lex_state = 2309, .external_lex_state = 2}, + [1496] = {.lex_state = 2285, .external_lex_state = 2}, + [1497] = {.lex_state = 2285, .external_lex_state = 2}, + [1498] = {.lex_state = 2315, .external_lex_state = 2}, + [1499] = {.lex_state = 2311, .external_lex_state = 2}, + [1500] = {.lex_state = 2310, .external_lex_state = 2}, + [1501] = {.lex_state = 2315, .external_lex_state = 2}, + [1502] = {.lex_state = 2308, .external_lex_state = 2}, + [1503] = {.lex_state = 2315, .external_lex_state = 2}, + [1504] = {.lex_state = 2287, .external_lex_state = 2}, + [1505] = {.lex_state = 2315, .external_lex_state = 2}, + [1506] = {.lex_state = 2264}, + [1507] = {.lex_state = 2315, .external_lex_state = 2}, + [1508] = {.lex_state = 2308, .external_lex_state = 2}, + [1509] = {.lex_state = 2308, .external_lex_state = 2}, + [1510] = {.lex_state = 2308, .external_lex_state = 2}, + [1511] = {.lex_state = 2315, .external_lex_state = 2}, + [1512] = {.lex_state = 2315, .external_lex_state = 2}, + [1513] = {.lex_state = 2315, .external_lex_state = 2}, + [1514] = {.lex_state = 2251}, + [1515] = {.lex_state = 2315, .external_lex_state = 2}, + [1516] = {.lex_state = 2312, .external_lex_state = 2}, + [1517] = {.lex_state = 2308, .external_lex_state = 2}, + [1518] = {.lex_state = 2253}, + [1519] = {.lex_state = 2315, .external_lex_state = 2}, + [1520] = {.lex_state = 2286, .external_lex_state = 2}, + [1521] = {.lex_state = 2315, .external_lex_state = 2}, + [1522] = {.lex_state = 2315, .external_lex_state = 2}, + [1523] = {.lex_state = 2263}, + [1524] = {.lex_state = 2263}, + [1525] = {.lex_state = 2315, .external_lex_state = 2}, + [1526] = {.lex_state = 2315, .external_lex_state = 2}, + [1527] = {.lex_state = 2315, .external_lex_state = 2}, + [1528] = {.lex_state = 2315, .external_lex_state = 2}, + [1529] = {.lex_state = 2315, .external_lex_state = 2}, + [1530] = {.lex_state = 2308, .external_lex_state = 2}, + [1531] = {.lex_state = 2287, .external_lex_state = 2}, + [1532] = {.lex_state = 2315, .external_lex_state = 2}, + [1533] = {.lex_state = 2315, .external_lex_state = 2}, + [1534] = {.lex_state = 2315, .external_lex_state = 2}, + [1535] = {.lex_state = 2308, .external_lex_state = 2}, + [1536] = {.lex_state = 2315, .external_lex_state = 2}, + [1537] = {.lex_state = 2308, .external_lex_state = 2}, + [1538] = {.lex_state = 2315, .external_lex_state = 2}, + [1539] = {.lex_state = 2308, .external_lex_state = 2}, + [1540] = {.lex_state = 2315, .external_lex_state = 2}, + [1541] = {.lex_state = 6}, + [1542] = {.lex_state = 2315, .external_lex_state = 2}, + [1543] = {.lex_state = 2257}, + [1544] = {.lex_state = 2251}, + [1545] = {.lex_state = 6}, + [1546] = {.lex_state = 2308, .external_lex_state = 2}, + [1547] = {.lex_state = 2308, .external_lex_state = 2}, + [1548] = {.lex_state = 2308, .external_lex_state = 2}, + [1549] = {.lex_state = 2308, .external_lex_state = 2}, + [1550] = {.lex_state = 2264}, + [1551] = {.lex_state = 2251}, + [1552] = {.lex_state = 2291, .external_lex_state = 2}, + [1553] = {.lex_state = 2307, .external_lex_state = 2}, + [1554] = {.lex_state = 2257}, + [1555] = {.lex_state = 2307, .external_lex_state = 2}, + [1556] = {.lex_state = 6}, + [1557] = {.lex_state = 2264}, + [1558] = {.lex_state = 2264}, + [1559] = {.lex_state = 2251}, + [1560] = {.lex_state = 2312, .external_lex_state = 2}, + [1561] = {.lex_state = 2315, .external_lex_state = 2}, + [1562] = {.lex_state = 2315, .external_lex_state = 2}, + [1563] = {.lex_state = 2308, .external_lex_state = 2}, + [1564] = {.lex_state = 2315, .external_lex_state = 2}, + [1565] = {.lex_state = 2257}, + [1566] = {.lex_state = 2308, .external_lex_state = 2}, + [1567] = {.lex_state = 2312, .external_lex_state = 2}, + [1568] = {.lex_state = 6}, + [1569] = {.lex_state = 2257}, + [1570] = {.lex_state = 2257}, + [1571] = {.lex_state = 2264}, + [1572] = {.lex_state = 2288, .external_lex_state = 2}, + [1573] = {.lex_state = 2265}, + [1574] = {.lex_state = 2265}, + [1575] = {.lex_state = 2277, .external_lex_state = 2}, + [1576] = {.lex_state = 2277, .external_lex_state = 2}, + [1577] = {.lex_state = 2251}, + [1578] = {.lex_state = 2288, .external_lex_state = 2}, + [1579] = {.lex_state = 2265}, + [1580] = {.lex_state = 2263}, + [1581] = {.lex_state = 2263}, + [1582] = {.lex_state = 2277, .external_lex_state = 2}, + [1583] = {.lex_state = 2277, .external_lex_state = 2}, + [1584] = {.lex_state = 2265}, + [1585] = {.lex_state = 2308, .external_lex_state = 2}, + [1586] = {.lex_state = 2288, .external_lex_state = 2}, + [1587] = {.lex_state = 2308, .external_lex_state = 2}, + [1588] = {.lex_state = 2313, .external_lex_state = 2}, + [1589] = {.lex_state = 2306, .external_lex_state = 2}, + [1590] = {.lex_state = 2308, .external_lex_state = 2}, + [1591] = {.lex_state = 2257}, + [1592] = {.lex_state = 2308, .external_lex_state = 2}, + [1593] = {.lex_state = 2313, .external_lex_state = 2}, + [1594] = {.lex_state = 2313, .external_lex_state = 2}, + [1595] = {.lex_state = 2313, .external_lex_state = 2}, + [1596] = {.lex_state = 2313, .external_lex_state = 2}, + [1597] = {.lex_state = 2288, .external_lex_state = 2}, + [1598] = {.lex_state = 2265}, + [1599] = {.lex_state = 2313, .external_lex_state = 2}, + [1600] = {.lex_state = 2265}, + [1601] = {.lex_state = 2265}, + [1602] = {.lex_state = 2300, .external_lex_state = 2}, + [1603] = {.lex_state = 2255}, + [1604] = {.lex_state = 2308, .external_lex_state = 2}, + [1605] = {.lex_state = 2288, .external_lex_state = 2}, + [1606] = {.lex_state = 2314, .external_lex_state = 2}, + [1607] = {.lex_state = 2265}, + [1608] = {.lex_state = 2287, .external_lex_state = 2}, + [1609] = {.lex_state = 6}, + [1610] = {.lex_state = 2288, .external_lex_state = 2}, + [1611] = {.lex_state = 2265}, + [1612] = {.lex_state = 2288, .external_lex_state = 2}, + [1613] = {.lex_state = 2288, .external_lex_state = 2}, + [1614] = {.lex_state = 2315, .external_lex_state = 2}, + [1615] = {.lex_state = 2251}, + [1616] = {.lex_state = 2308, .external_lex_state = 2}, + [1617] = {.lex_state = 2315, .external_lex_state = 2}, + [1618] = {.lex_state = 2308, .external_lex_state = 2}, + [1619] = {.lex_state = 2327, .external_lex_state = 2}, + [1620] = {.lex_state = 2308, .external_lex_state = 2}, + [1621] = {.lex_state = 2255}, + [1622] = {.lex_state = 2308, .external_lex_state = 2}, + [1623] = {.lex_state = 2287, .external_lex_state = 2}, + [1624] = {.lex_state = 2308, .external_lex_state = 2}, + [1625] = {.lex_state = 2265}, + [1626] = {.lex_state = 2308, .external_lex_state = 2}, + [1627] = {.lex_state = 2308, .external_lex_state = 2}, + [1628] = {.lex_state = 2327, .external_lex_state = 2}, + [1629] = {.lex_state = 2327, .external_lex_state = 2}, + [1630] = {.lex_state = 2327, .external_lex_state = 2}, + [1631] = {.lex_state = 2265}, + [1632] = {.lex_state = 2265}, + [1633] = {.lex_state = 2264}, + [1634] = {.lex_state = 2265}, + [1635] = {.lex_state = 2308, .external_lex_state = 2}, + [1636] = {.lex_state = 2308, .external_lex_state = 2}, + [1637] = {.lex_state = 6}, + [1638] = {.lex_state = 2265}, + [1639] = {.lex_state = 2308, .external_lex_state = 2}, + [1640] = {.lex_state = 2265}, + [1641] = {.lex_state = 2308, .external_lex_state = 2}, + [1642] = {.lex_state = 2265}, + [1643] = {.lex_state = 2277, .external_lex_state = 2}, + [1644] = {.lex_state = 2327, .external_lex_state = 2}, + [1645] = {.lex_state = 2316, .external_lex_state = 2}, + [1646] = {.lex_state = 2288, .external_lex_state = 2}, + [1647] = {.lex_state = 2265}, + [1648] = {.lex_state = 2265}, + [1649] = {.lex_state = 2265}, + [1650] = {.lex_state = 2263}, + [1651] = {.lex_state = 2308, .external_lex_state = 2}, + [1652] = {.lex_state = 2313, .external_lex_state = 2}, + [1653] = {.lex_state = 2265}, + [1654] = {.lex_state = 2288, .external_lex_state = 2}, + [1655] = {.lex_state = 2288, .external_lex_state = 2}, + [1656] = {.lex_state = 2257}, + [1657] = {.lex_state = 2288, .external_lex_state = 2}, + [1658] = {.lex_state = 2257}, + [1659] = {.lex_state = 2315, .external_lex_state = 2}, + [1660] = {.lex_state = 2288, .external_lex_state = 2}, + [1661] = {.lex_state = 2277, .external_lex_state = 2}, + [1662] = {.lex_state = 2251}, + [1663] = {.lex_state = 2301, .external_lex_state = 2}, + [1664] = {.lex_state = 2277, .external_lex_state = 2}, + [1665] = {.lex_state = 2263}, + [1666] = {.lex_state = 2320, .external_lex_state = 2}, + [1667] = {.lex_state = 2304, .external_lex_state = 2}, + [1668] = {.lex_state = 2265}, + [1669] = {.lex_state = 2315, .external_lex_state = 2}, + [1670] = {.lex_state = 2328, .external_lex_state = 2}, + [1671] = {.lex_state = 2265}, + [1672] = {.lex_state = 2277, .external_lex_state = 2}, + [1673] = {.lex_state = 2277, .external_lex_state = 2}, + [1674] = {.lex_state = 2328, .external_lex_state = 2}, + [1675] = {.lex_state = 2328, .external_lex_state = 2}, + [1676] = {.lex_state = 2251}, + [1677] = {.lex_state = 2277, .external_lex_state = 2}, + [1678] = {.lex_state = 2277, .external_lex_state = 2}, + [1679] = {.lex_state = 2288, .external_lex_state = 2}, + [1680] = {.lex_state = 2277, .external_lex_state = 2}, + [1681] = {.lex_state = 2301, .external_lex_state = 2}, + [1682] = {.lex_state = 2328, .external_lex_state = 2}, + [1683] = {.lex_state = 2265}, + [1684] = {.lex_state = 2277, .external_lex_state = 2}, + [1685] = {.lex_state = 2327, .external_lex_state = 2}, + [1686] = {.lex_state = 2327, .external_lex_state = 2}, + [1687] = {.lex_state = 2265}, + [1688] = {.lex_state = 2303, .external_lex_state = 2}, + [1689] = {.lex_state = 2265}, + [1690] = {.lex_state = 2251}, + [1691] = {.lex_state = 2315, .external_lex_state = 2}, + [1692] = {.lex_state = 2327, .external_lex_state = 2}, + [1693] = {.lex_state = 2320, .external_lex_state = 2}, + [1694] = {.lex_state = 2288, .external_lex_state = 2}, + [1695] = {.lex_state = 2313, .external_lex_state = 2}, + [1696] = {.lex_state = 2313, .external_lex_state = 2}, + [1697] = {.lex_state = 6}, + [1698] = {.lex_state = 6}, + [1699] = {.lex_state = 2263}, + [1700] = {.lex_state = 2263}, + [1701] = {.lex_state = 2263}, + [1702] = {.lex_state = 2265}, + [1703] = {.lex_state = 2263}, + [1704] = {.lex_state = 2263}, + [1705] = {.lex_state = 2306, .external_lex_state = 2}, + [1706] = {.lex_state = 2300, .external_lex_state = 2}, + [1707] = {.lex_state = 2326, .external_lex_state = 2}, + [1708] = {.lex_state = 2326, .external_lex_state = 2}, + [1709] = {.lex_state = 2327, .external_lex_state = 2}, + [1710] = {.lex_state = 2288, .external_lex_state = 2}, + [1711] = {.lex_state = 2257}, + [1712] = {.lex_state = 2326, .external_lex_state = 2}, + [1713] = {.lex_state = 2303, .external_lex_state = 2}, + [1714] = {.lex_state = 2257}, + [1715] = {.lex_state = 2288, .external_lex_state = 2}, + [1716] = {.lex_state = 2277, .external_lex_state = 2}, + [1717] = {.lex_state = 2327, .external_lex_state = 2}, + [1718] = {.lex_state = 2328, .external_lex_state = 2}, + [1719] = {.lex_state = 2288, .external_lex_state = 2}, + [1720] = {.lex_state = 2313, .external_lex_state = 2}, + [1721] = {.lex_state = 2314, .external_lex_state = 2}, + [1722] = {.lex_state = 2313, .external_lex_state = 2}, + [1723] = {.lex_state = 2316, .external_lex_state = 2}, + [1724] = {.lex_state = 2313, .external_lex_state = 2}, + [1725] = {.lex_state = 2265}, + [1726] = {.lex_state = 2263}, + [1727] = {.lex_state = 2305, .external_lex_state = 2}, + [1728] = {.lex_state = 2305, .external_lex_state = 2}, + [1729] = {.lex_state = 2305, .external_lex_state = 2}, + [1730] = {.lex_state = 2305, .external_lex_state = 2}, + [1731] = {.lex_state = 2305, .external_lex_state = 2}, + [1732] = {.lex_state = 2305, .external_lex_state = 2}, + [1733] = {.lex_state = 2305, .external_lex_state = 2}, + [1734] = {.lex_state = 2328, .external_lex_state = 2}, + [1735] = {.lex_state = 2305, .external_lex_state = 2}, + [1736] = {.lex_state = 2305, .external_lex_state = 2}, + [1737] = {.lex_state = 228, .external_lex_state = 2}, + [1738] = {.lex_state = 2265}, + [1739] = {.lex_state = 2305, .external_lex_state = 2}, + [1740] = {.lex_state = 2305, .external_lex_state = 2}, + [1741] = {.lex_state = 2305, .external_lex_state = 2}, + [1742] = {.lex_state = 2305, .external_lex_state = 2}, + [1743] = {.lex_state = 2305, .external_lex_state = 2}, + [1744] = {.lex_state = 2305, .external_lex_state = 2}, + [1745] = {.lex_state = 2305, .external_lex_state = 2}, + [1746] = {.lex_state = 2305, .external_lex_state = 2}, + [1747] = {.lex_state = 2305, .external_lex_state = 2}, + [1748] = {.lex_state = 2305, .external_lex_state = 2}, + [1749] = {.lex_state = 2326, .external_lex_state = 2}, + [1750] = {.lex_state = 2305, .external_lex_state = 2}, + [1751] = {.lex_state = 2305, .external_lex_state = 2}, + [1752] = {.lex_state = 2305, .external_lex_state = 2}, + [1753] = {.lex_state = 2305, .external_lex_state = 2}, + [1754] = {.lex_state = 2305, .external_lex_state = 2}, + [1755] = {.lex_state = 2304, .external_lex_state = 2}, + [1756] = {.lex_state = 2305, .external_lex_state = 2}, + [1757] = {.lex_state = 2328, .external_lex_state = 2}, + [1758] = {.lex_state = 2305, .external_lex_state = 2}, + [1759] = {.lex_state = 2305, .external_lex_state = 2}, + [1760] = {.lex_state = 2263}, + [1761] = {.lex_state = 2305, .external_lex_state = 2}, + [1762] = {.lex_state = 2305, .external_lex_state = 2}, + [1763] = {.lex_state = 2305, .external_lex_state = 2}, + [1764] = {.lex_state = 2305, .external_lex_state = 2}, + [1765] = {.lex_state = 2328, .external_lex_state = 2}, + [1766] = {.lex_state = 2305, .external_lex_state = 2}, + [1767] = {.lex_state = 2305, .external_lex_state = 2}, + [1768] = {.lex_state = 2305, .external_lex_state = 2}, + [1769] = {.lex_state = 2305, .external_lex_state = 2}, + [1770] = {.lex_state = 2305, .external_lex_state = 2}, + [1771] = {.lex_state = 2305, .external_lex_state = 2}, + [1772] = {.lex_state = 2305, .external_lex_state = 2}, + [1773] = {.lex_state = 2305, .external_lex_state = 2}, + [1774] = {.lex_state = 2305, .external_lex_state = 2}, + [1775] = {.lex_state = 2315, .external_lex_state = 2}, + [1776] = {.lex_state = 2305, .external_lex_state = 2}, + [1777] = {.lex_state = 2305, .external_lex_state = 2}, + [1778] = {.lex_state = 2305, .external_lex_state = 2}, + [1779] = {.lex_state = 2305, .external_lex_state = 2}, + [1780] = {.lex_state = 2326, .external_lex_state = 2}, + [1781] = {.lex_state = 2251}, + [1782] = {.lex_state = 2305, .external_lex_state = 2}, + [1783] = {.lex_state = 2305, .external_lex_state = 2}, + [1784] = {.lex_state = 2315, .external_lex_state = 2}, + [1785] = {.lex_state = 2315, .external_lex_state = 2}, + [1786] = {.lex_state = 2305, .external_lex_state = 2}, + [1787] = {.lex_state = 2265}, + [1788] = {.lex_state = 2305, .external_lex_state = 2}, + [1789] = {.lex_state = 2305, .external_lex_state = 2}, + [1790] = {.lex_state = 2305, .external_lex_state = 2}, + [1791] = {.lex_state = 2301, .external_lex_state = 2}, + [1792] = {.lex_state = 6}, + [1793] = {.lex_state = 6}, + [1794] = {.lex_state = 2328, .external_lex_state = 2}, + [1795] = {.lex_state = 2265}, + [1796] = {.lex_state = 2265}, + [1797] = {.lex_state = 228, .external_lex_state = 2}, + [1798] = {.lex_state = 2305, .external_lex_state = 2}, + [1799] = {.lex_state = 2303, .external_lex_state = 2}, + [1800] = {.lex_state = 2265}, + [1801] = {.lex_state = 2305, .external_lex_state = 2}, + [1802] = {.lex_state = 2305, .external_lex_state = 2}, + [1803] = {.lex_state = 2305, .external_lex_state = 2}, + [1804] = {.lex_state = 2305, .external_lex_state = 2}, + [1805] = {.lex_state = 2305, .external_lex_state = 2}, + [1806] = {.lex_state = 2305, .external_lex_state = 2}, + [1807] = {.lex_state = 2305, .external_lex_state = 2}, + [1808] = {.lex_state = 2303, .external_lex_state = 2}, + [1809] = {.lex_state = 2305, .external_lex_state = 2}, + [1810] = {.lex_state = 228, .external_lex_state = 2}, + [1811] = {.lex_state = 2305, .external_lex_state = 2}, + [1812] = {.lex_state = 2305, .external_lex_state = 2}, + [1813] = {.lex_state = 2305, .external_lex_state = 2}, + [1814] = {.lex_state = 2320, .external_lex_state = 2}, + [1815] = {.lex_state = 2305, .external_lex_state = 2}, + [1816] = {.lex_state = 2326, .external_lex_state = 2}, + [1817] = {.lex_state = 2305, .external_lex_state = 2}, + [1818] = {.lex_state = 2305, .external_lex_state = 2}, + [1819] = {.lex_state = 230, .external_lex_state = 2}, + [1820] = {.lex_state = 230, .external_lex_state = 2}, + [1821] = {.lex_state = 230, .external_lex_state = 2}, + [1822] = {.lex_state = 230, .external_lex_state = 2}, + [1823] = {.lex_state = 230, .external_lex_state = 2}, + [1824] = {.lex_state = 230, .external_lex_state = 2}, + [1825] = {.lex_state = 2305, .external_lex_state = 2}, + [1826] = {.lex_state = 2305, .external_lex_state = 2}, + [1827] = {.lex_state = 2320, .external_lex_state = 2}, + [1828] = {.lex_state = 230, .external_lex_state = 2}, + [1829] = {.lex_state = 2305, .external_lex_state = 2}, + [1830] = {.lex_state = 230, .external_lex_state = 2}, + [1831] = {.lex_state = 230, .external_lex_state = 2}, + [1832] = {.lex_state = 2265}, + [1833] = {.lex_state = 2277, .external_lex_state = 2}, + [1834] = {.lex_state = 2305, .external_lex_state = 2}, + [1835] = {.lex_state = 2305, .external_lex_state = 2}, + [1836] = {.lex_state = 2305, .external_lex_state = 2}, + [1837] = {.lex_state = 2305, .external_lex_state = 2}, + [1838] = {.lex_state = 2251}, + [1839] = {.lex_state = 2305, .external_lex_state = 2}, + [1840] = {.lex_state = 2305, .external_lex_state = 2}, + [1841] = {.lex_state = 2305, .external_lex_state = 2}, + [1842] = {.lex_state = 2305, .external_lex_state = 2}, + [1843] = {.lex_state = 2265}, + [1844] = {.lex_state = 2328, .external_lex_state = 2}, + [1845] = {.lex_state = 230, .external_lex_state = 2}, + [1846] = {.lex_state = 2265}, + [1847] = {.lex_state = 2305, .external_lex_state = 2}, + [1848] = {.lex_state = 2301, .external_lex_state = 2}, + [1849] = {.lex_state = 2305, .external_lex_state = 2}, + [1850] = {.lex_state = 230, .external_lex_state = 2}, + [1851] = {.lex_state = 2277, .external_lex_state = 2}, + [1852] = {.lex_state = 2305, .external_lex_state = 2}, + [1853] = {.lex_state = 230, .external_lex_state = 2}, + [1854] = {.lex_state = 2305, .external_lex_state = 2}, + [1855] = {.lex_state = 2263}, + [1856] = {.lex_state = 2305, .external_lex_state = 2}, + [1857] = {.lex_state = 2305, .external_lex_state = 2}, + [1858] = {.lex_state = 2263}, + [1859] = {.lex_state = 2305, .external_lex_state = 2}, + [1860] = {.lex_state = 2305, .external_lex_state = 2}, + [1861] = {.lex_state = 2305, .external_lex_state = 2}, + [1862] = {.lex_state = 2305, .external_lex_state = 2}, + [1863] = {.lex_state = 2305, .external_lex_state = 2}, + [1864] = {.lex_state = 2305, .external_lex_state = 2}, + [1865] = {.lex_state = 2305, .external_lex_state = 2}, + [1866] = {.lex_state = 2263}, + [1867] = {.lex_state = 2305, .external_lex_state = 2}, + [1868] = {.lex_state = 2305, .external_lex_state = 2}, + [1869] = {.lex_state = 2305, .external_lex_state = 2}, + [1870] = {.lex_state = 2265}, + [1871] = {.lex_state = 2305, .external_lex_state = 2}, + [1872] = {.lex_state = 2305, .external_lex_state = 2}, + [1873] = {.lex_state = 2265}, + [1874] = {.lex_state = 2305, .external_lex_state = 2}, + [1875] = {.lex_state = 2305, .external_lex_state = 2}, + [1876] = {.lex_state = 2263}, + [1877] = {.lex_state = 2305, .external_lex_state = 2}, + [1878] = {.lex_state = 2305, .external_lex_state = 2}, + [1879] = {.lex_state = 2305, .external_lex_state = 2}, + [1880] = {.lex_state = 2305, .external_lex_state = 2}, + [1881] = {.lex_state = 2305, .external_lex_state = 2}, + [1882] = {.lex_state = 2263}, + [1883] = {.lex_state = 2305, .external_lex_state = 2}, + [1884] = {.lex_state = 2305, .external_lex_state = 2}, + [1885] = {.lex_state = 2305, .external_lex_state = 2}, + [1886] = {.lex_state = 2305, .external_lex_state = 2}, + [1887] = {.lex_state = 2305, .external_lex_state = 2}, + [1888] = {.lex_state = 2305, .external_lex_state = 2}, + [1889] = {.lex_state = 2305, .external_lex_state = 2}, + [1890] = {.lex_state = 2305, .external_lex_state = 2}, + [1891] = {.lex_state = 2305, .external_lex_state = 2}, + [1892] = {.lex_state = 2305, .external_lex_state = 2}, + [1893] = {.lex_state = 2305, .external_lex_state = 2}, + [1894] = {.lex_state = 2263}, + [1895] = {.lex_state = 2305, .external_lex_state = 2}, + [1896] = {.lex_state = 2305, .external_lex_state = 2}, + [1897] = {.lex_state = 2305, .external_lex_state = 2}, + [1898] = {.lex_state = 2305, .external_lex_state = 2}, + [1899] = {.lex_state = 2305, .external_lex_state = 2}, + [1900] = {.lex_state = 2305, .external_lex_state = 2}, + [1901] = {.lex_state = 2305, .external_lex_state = 2}, + [1902] = {.lex_state = 2305, .external_lex_state = 2}, + [1903] = {.lex_state = 2305, .external_lex_state = 2}, + [1904] = {.lex_state = 2305, .external_lex_state = 2}, + [1905] = {.lex_state = 2305, .external_lex_state = 2}, + [1906] = {.lex_state = 2305, .external_lex_state = 2}, + [1907] = {.lex_state = 2305, .external_lex_state = 2}, + [1908] = {.lex_state = 2305, .external_lex_state = 2}, + [1909] = {.lex_state = 2265}, + [1910] = {.lex_state = 2305, .external_lex_state = 2}, + [1911] = {.lex_state = 2305, .external_lex_state = 2}, + [1912] = {.lex_state = 2305, .external_lex_state = 2}, + [1913] = {.lex_state = 2305, .external_lex_state = 2}, + [1914] = {.lex_state = 2305, .external_lex_state = 2}, + [1915] = {.lex_state = 2305, .external_lex_state = 2}, + [1916] = {.lex_state = 2263}, + [1917] = {.lex_state = 2305, .external_lex_state = 2}, + [1918] = {.lex_state = 2305, .external_lex_state = 2}, + [1919] = {.lex_state = 42, .external_lex_state = 2}, + [1920] = {.lex_state = 2305, .external_lex_state = 2}, + [1921] = {.lex_state = 6}, + [1922] = {.lex_state = 2263}, + [1923] = {.lex_state = 42, .external_lex_state = 2}, + [1924] = {.lex_state = 2305, .external_lex_state = 2}, + [1925] = {.lex_state = 2263}, + [1926] = {.lex_state = 2305, .external_lex_state = 2}, + [1927] = {.lex_state = 2265}, + [1928] = {.lex_state = 2305, .external_lex_state = 2}, + [1929] = {.lex_state = 2263}, + [1930] = {.lex_state = 2305, .external_lex_state = 2}, + [1931] = {.lex_state = 2263}, + [1932] = {.lex_state = 2263}, + [1933] = {.lex_state = 2305, .external_lex_state = 2}, + [1934] = {.lex_state = 2305, .external_lex_state = 2}, + [1935] = {.lex_state = 2305, .external_lex_state = 2}, + [1936] = {.lex_state = 2263}, + [1937] = {.lex_state = 2305, .external_lex_state = 2}, + [1938] = {.lex_state = 2305, .external_lex_state = 2}, + [1939] = {.lex_state = 2305, .external_lex_state = 2}, + [1940] = {.lex_state = 2305, .external_lex_state = 2}, + [1941] = {.lex_state = 2263}, + [1942] = {.lex_state = 2305, .external_lex_state = 2}, + [1943] = {.lex_state = 2305, .external_lex_state = 2}, + [1944] = {.lex_state = 2305, .external_lex_state = 2}, + [1945] = {.lex_state = 2263}, + [1946] = {.lex_state = 2263}, + [1947] = {.lex_state = 2305, .external_lex_state = 2}, + [1948] = {.lex_state = 2305, .external_lex_state = 2}, + [1949] = {.lex_state = 6}, + [1950] = {.lex_state = 6}, + [1951] = {.lex_state = 2305, .external_lex_state = 2}, + [1952] = {.lex_state = 2305, .external_lex_state = 2}, + [1953] = {.lex_state = 2305, .external_lex_state = 2}, + [1954] = {.lex_state = 2305, .external_lex_state = 2}, + [1955] = {.lex_state = 2305, .external_lex_state = 2}, + [1956] = {.lex_state = 2305, .external_lex_state = 2}, + [1957] = {.lex_state = 2263}, + [1958] = {.lex_state = 2305, .external_lex_state = 2}, + [1959] = {.lex_state = 42, .external_lex_state = 2}, + [1960] = {.lex_state = 2263}, + [1961] = {.lex_state = 2263}, + [1962] = {.lex_state = 2263}, + [1963] = {.lex_state = 2263}, + [1964] = {.lex_state = 2263}, + [1965] = {.lex_state = 2305, .external_lex_state = 2}, + [1966] = {.lex_state = 2305, .external_lex_state = 2}, + [1967] = {.lex_state = 2305, .external_lex_state = 2}, + [1968] = {.lex_state = 2263}, + [1969] = {.lex_state = 2305, .external_lex_state = 2}, + [1970] = {.lex_state = 2305, .external_lex_state = 2}, + [1971] = {.lex_state = 2305, .external_lex_state = 2}, + [1972] = {.lex_state = 2263}, + [1973] = {.lex_state = 2263}, + [1974] = {.lex_state = 42, .external_lex_state = 2}, + [1975] = {.lex_state = 42, .external_lex_state = 2}, + [1976] = {.lex_state = 42, .external_lex_state = 2}, + [1977] = {.lex_state = 2263}, + [1978] = {.lex_state = 13, .external_lex_state = 2}, + [1979] = {.lex_state = 6}, + [1980] = {.lex_state = 2253}, + [1981] = {.lex_state = 2253}, + [1982] = {.lex_state = 2253}, + [1983] = {.lex_state = 2253}, + [1984] = {.lex_state = 2253}, + [1985] = {.lex_state = 2265}, + [1986] = {.lex_state = 2253}, + [1987] = {.lex_state = 2253}, + [1988] = {.lex_state = 2265}, + [1989] = {.lex_state = 2253}, + [1990] = {.lex_state = 2253}, + [1991] = {.lex_state = 2253}, + [1992] = {.lex_state = 2253}, + [1993] = {.lex_state = 2253}, + [1994] = {.lex_state = 2253}, + [1995] = {.lex_state = 2253}, + [1996] = {.lex_state = 2253}, + [1997] = {.lex_state = 6}, + [1998] = {.lex_state = 2253}, + [1999] = {.lex_state = 2265}, + [2000] = {.lex_state = 2265}, + [2001] = {.lex_state = 2265}, + [2002] = {.lex_state = 2265}, + [2003] = {.lex_state = 2265}, + [2004] = {.lex_state = 2263}, + [2005] = {.lex_state = 2253}, + [2006] = {.lex_state = 2253}, + [2007] = {.lex_state = 2253}, + [2008] = {.lex_state = 2253}, + [2009] = {.lex_state = 2253}, + [2010] = {.lex_state = 2253}, + [2011] = {.lex_state = 2253}, + [2012] = {.lex_state = 2253}, + [2013] = {.lex_state = 2253}, + [2014] = {.lex_state = 2253}, + [2015] = {.lex_state = 2253}, + [2016] = {.lex_state = 2253}, + [2017] = {.lex_state = 2263}, + [2018] = {.lex_state = 2263}, + [2019] = {.lex_state = 2253}, + [2020] = {.lex_state = 2265}, + [2021] = {.lex_state = 2253}, + [2022] = {.lex_state = 2253}, + [2023] = {.lex_state = 2263}, + [2024] = {.lex_state = 2253}, + [2025] = {.lex_state = 2265}, + [2026] = {.lex_state = 2253}, + [2027] = {.lex_state = 2253}, + [2028] = {.lex_state = 2253}, + [2029] = {.lex_state = 2253}, + [2030] = {.lex_state = 2253}, + [2031] = {.lex_state = 2253}, + [2032] = {.lex_state = 2253}, + [2033] = {.lex_state = 2253}, + [2034] = {.lex_state = 2253}, + [2035] = {.lex_state = 2263}, + [2036] = {.lex_state = 2265}, + [2037] = {.lex_state = 2265}, + [2038] = {.lex_state = 2265}, + [2039] = {.lex_state = 2265}, + [2040] = {.lex_state = 2265}, + [2041] = {.lex_state = 2265}, + [2042] = {.lex_state = 2263}, + [2043] = {.lex_state = 13, .external_lex_state = 2}, + [2044] = {.lex_state = 13, .external_lex_state = 2}, + [2045] = {.lex_state = 2265}, + [2046] = {.lex_state = 2265}, + [2047] = {.lex_state = 2265}, + [2048] = {.lex_state = 2265}, + [2049] = {.lex_state = 2265}, + [2050] = {.lex_state = 6}, + [2051] = {.lex_state = 2253}, + [2052] = {.lex_state = 2263}, + [2053] = {.lex_state = 2263}, + [2054] = {.lex_state = 2263}, + [2055] = {.lex_state = 2263}, + [2056] = {.lex_state = 2253}, + [2057] = {.lex_state = 2253}, + [2058] = {.lex_state = 2253}, + [2059] = {.lex_state = 2253}, + [2060] = {.lex_state = 2265}, + [2061] = {.lex_state = 2265}, + [2062] = {.lex_state = 2265}, + [2063] = {.lex_state = 2265}, + [2064] = {.lex_state = 2251}, + [2065] = {.lex_state = 2263}, + [2066] = {.lex_state = 2263}, + [2067] = {.lex_state = 2251}, + [2068] = {.lex_state = 2263}, + [2069] = {.lex_state = 2253}, + [2070] = {.lex_state = 2263}, + [2071] = {.lex_state = 2263}, + [2072] = {.lex_state = 2265}, + [2073] = {.lex_state = 2263}, + [2074] = {.lex_state = 2263}, + [2075] = {.lex_state = 2263}, + [2076] = {.lex_state = 2263}, + [2077] = {.lex_state = 2263}, + [2078] = {.lex_state = 2263}, + [2079] = {.lex_state = 2253}, + [2080] = {.lex_state = 2253}, + [2081] = {.lex_state = 13, .external_lex_state = 2}, + [2082] = {.lex_state = 6}, + [2083] = {.lex_state = 2253}, + [2084] = {.lex_state = 2253}, + [2085] = {.lex_state = 2251}, + [2086] = {.lex_state = 2265}, + [2087] = {.lex_state = 2265}, + [2088] = {.lex_state = 2253}, + [2089] = {.lex_state = 2253}, + [2090] = {.lex_state = 2253}, + [2091] = {.lex_state = 2263}, + [2092] = {.lex_state = 2263}, + [2093] = {.lex_state = 2263}, + [2094] = {.lex_state = 2263}, + [2095] = {.lex_state = 2263}, + [2096] = {.lex_state = 2263}, + [2097] = {.lex_state = 2253}, + [2098] = {.lex_state = 2263}, + [2099] = {.lex_state = 2263}, + [2100] = {.lex_state = 2263}, + [2101] = {.lex_state = 2253}, + [2102] = {.lex_state = 2261}, + [2103] = {.lex_state = 2263}, + [2104] = {.lex_state = 2265}, + [2105] = {.lex_state = 2263}, + [2106] = {.lex_state = 42, .external_lex_state = 2}, + [2107] = {.lex_state = 42, .external_lex_state = 2}, + [2108] = {.lex_state = 42, .external_lex_state = 2}, + [2109] = {.lex_state = 42, .external_lex_state = 2}, + [2110] = {.lex_state = 42, .external_lex_state = 2}, + [2111] = {.lex_state = 42, .external_lex_state = 2}, + [2112] = {.lex_state = 2263}, + [2113] = {.lex_state = 2263}, + [2114] = {.lex_state = 2253}, + [2115] = {.lex_state = 42, .external_lex_state = 2}, + [2116] = {.lex_state = 2253}, + [2117] = {.lex_state = 42, .external_lex_state = 2}, + [2118] = {.lex_state = 42, .external_lex_state = 2}, + [2119] = {.lex_state = 2261}, + [2120] = {.lex_state = 42, .external_lex_state = 2}, + [2121] = {.lex_state = 42, .external_lex_state = 2}, + [2122] = {.lex_state = 42, .external_lex_state = 2}, + [2123] = {.lex_state = 2263}, + [2124] = {.lex_state = 2263}, + [2125] = {.lex_state = 2263}, + [2126] = {.lex_state = 2261}, + [2127] = {.lex_state = 2263}, + [2128] = {.lex_state = 2265}, + [2129] = {.lex_state = 2263}, + [2130] = {.lex_state = 2265}, + [2131] = {.lex_state = 2263}, + [2132] = {.lex_state = 2253}, + [2133] = {.lex_state = 42, .external_lex_state = 2}, + [2134] = {.lex_state = 2263}, + [2135] = {.lex_state = 2263}, + [2136] = {.lex_state = 2263}, + [2137] = {.lex_state = 2265}, + [2138] = {.lex_state = 2263}, + [2139] = {.lex_state = 2253}, + [2140] = {.lex_state = 2265}, + [2141] = {.lex_state = 2263}, + [2142] = {.lex_state = 2261}, + [2143] = {.lex_state = 2263}, + [2144] = {.lex_state = 2263}, + [2145] = {.lex_state = 2263}, + [2146] = {.lex_state = 2263}, + [2147] = {.lex_state = 2263}, + [2148] = {.lex_state = 42, .external_lex_state = 2}, + [2149] = {.lex_state = 42, .external_lex_state = 2}, + [2150] = {.lex_state = 2265}, + [2151] = {.lex_state = 42, .external_lex_state = 2}, + [2152] = {.lex_state = 42, .external_lex_state = 2}, + [2153] = {.lex_state = 2263}, + [2154] = {.lex_state = 2263}, + [2155] = {.lex_state = 2263}, + [2156] = {.lex_state = 42, .external_lex_state = 2}, + [2157] = {.lex_state = 42, .external_lex_state = 2}, + [2158] = {.lex_state = 42, .external_lex_state = 2}, + [2159] = {.lex_state = 42, .external_lex_state = 2}, + [2160] = {.lex_state = 42, .external_lex_state = 2}, + [2161] = {.lex_state = 42, .external_lex_state = 2}, + [2162] = {.lex_state = 42, .external_lex_state = 2}, + [2163] = {.lex_state = 42, .external_lex_state = 2}, + [2164] = {.lex_state = 2263}, + [2165] = {.lex_state = 2263}, + [2166] = {.lex_state = 42, .external_lex_state = 2}, + [2167] = {.lex_state = 42, .external_lex_state = 2}, + [2168] = {.lex_state = 42, .external_lex_state = 2}, + [2169] = {.lex_state = 42, .external_lex_state = 2}, + [2170] = {.lex_state = 42, .external_lex_state = 2}, + [2171] = {.lex_state = 42, .external_lex_state = 2}, + [2172] = {.lex_state = 42, .external_lex_state = 2}, + [2173] = {.lex_state = 2261}, + [2174] = {.lex_state = 2263}, + [2175] = {.lex_state = 2263}, + [2176] = {.lex_state = 2253}, + [2177] = {.lex_state = 2253}, + [2178] = {.lex_state = 2253}, + [2179] = {.lex_state = 2253}, + [2180] = {.lex_state = 2253}, + [2181] = {.lex_state = 2253}, + [2182] = {.lex_state = 2253}, + [2183] = {.lex_state = 2253}, + [2184] = {.lex_state = 2253}, + [2185] = {.lex_state = 2253}, + [2186] = {.lex_state = 2253}, + [2187] = {.lex_state = 2253}, + [2188] = {.lex_state = 2253}, + [2189] = {.lex_state = 2253}, + [2190] = {.lex_state = 2253}, + [2191] = {.lex_state = 2253}, + [2192] = {.lex_state = 2253}, + [2193] = {.lex_state = 2253}, + [2194] = {.lex_state = 2253}, + [2195] = {.lex_state = 2253}, + [2196] = {.lex_state = 2253}, + [2197] = {.lex_state = 2253}, + [2198] = {.lex_state = 2253}, + [2199] = {.lex_state = 2253}, + [2200] = {.lex_state = 2253}, + [2201] = {.lex_state = 2253}, + [2202] = {.lex_state = 2253}, + [2203] = {.lex_state = 2253}, + [2204] = {.lex_state = 2253}, + [2205] = {.lex_state = 2253}, + [2206] = {.lex_state = 2253}, + [2207] = {.lex_state = 2253}, + [2208] = {.lex_state = 2253}, + [2209] = {.lex_state = 228, .external_lex_state = 2}, + [2210] = {.lex_state = 2253}, + [2211] = {.lex_state = 106, .external_lex_state = 2}, + [2212] = {.lex_state = 2253}, + [2213] = {.lex_state = 2253}, + [2214] = {.lex_state = 2253}, + [2215] = {.lex_state = 2253}, + [2216] = {.lex_state = 2265}, + [2217] = {.lex_state = 2265}, + [2218] = {.lex_state = 2253}, + [2219] = {.lex_state = 2253}, + [2220] = {.lex_state = 2253}, + [2221] = {.lex_state = 2253}, + [2222] = {.lex_state = 2253}, + [2223] = {.lex_state = 2253}, + [2224] = {.lex_state = 2253}, + [2225] = {.lex_state = 2253}, + [2226] = {.lex_state = 2253}, + [2227] = {.lex_state = 2253}, + [2228] = {.lex_state = 2253}, + [2229] = {.lex_state = 2253}, + [2230] = {.lex_state = 2253}, + [2231] = {.lex_state = 2253}, + [2232] = {.lex_state = 2324, .external_lex_state = 2}, + [2233] = {.lex_state = 2253}, + [2234] = {.lex_state = 2253}, + [2235] = {.lex_state = 2253}, + [2236] = {.lex_state = 2253}, + [2237] = {.lex_state = 2253}, + [2238] = {.lex_state = 2253}, + [2239] = {.lex_state = 2253}, + [2240] = {.lex_state = 2253}, + [2241] = {.lex_state = 2253}, + [2242] = {.lex_state = 2253}, + [2243] = {.lex_state = 2253}, + [2244] = {.lex_state = 2253}, + [2245] = {.lex_state = 2253}, + [2246] = {.lex_state = 2253}, + [2247] = {.lex_state = 2253}, + [2248] = {.lex_state = 2253}, + [2249] = {.lex_state = 2253}, + [2250] = {.lex_state = 2253}, + [2251] = {.lex_state = 2253}, + [2252] = {.lex_state = 2261}, + [2253] = {.lex_state = 2253}, + [2254] = {.lex_state = 2253}, + [2255] = {.lex_state = 2253}, + [2256] = {.lex_state = 2259}, + [2257] = {.lex_state = 2253}, + [2258] = {.lex_state = 2253}, + [2259] = {.lex_state = 2253}, + [2260] = {.lex_state = 2253}, + [2261] = {.lex_state = 2253}, + [2262] = {.lex_state = 2253}, + [2263] = {.lex_state = 2261}, + [2264] = {.lex_state = 2261}, + [2265] = {.lex_state = 2253}, + [2266] = {.lex_state = 2253}, + [2267] = {.lex_state = 2253}, + [2268] = {.lex_state = 2253}, + [2269] = {.lex_state = 2253}, + [2270] = {.lex_state = 2253}, + [2271] = {.lex_state = 2253}, + [2272] = {.lex_state = 2253}, + [2273] = {.lex_state = 2253}, + [2274] = {.lex_state = 2253}, + [2275] = {.lex_state = 2253}, + [2276] = {.lex_state = 2253}, + [2277] = {.lex_state = 2253}, + [2278] = {.lex_state = 2253}, + [2279] = {.lex_state = 46, .external_lex_state = 2}, + [2280] = {.lex_state = 228, .external_lex_state = 2}, + [2281] = {.lex_state = 2253}, + [2282] = {.lex_state = 2253}, + [2283] = {.lex_state = 2253}, + [2284] = {.lex_state = 2253}, + [2285] = {.lex_state = 2253}, + [2286] = {.lex_state = 2253}, + [2287] = {.lex_state = 2253}, + [2288] = {.lex_state = 2253}, + [2289] = {.lex_state = 2253}, + [2290] = {.lex_state = 2253}, + [2291] = {.lex_state = 2253}, + [2292] = {.lex_state = 2253}, + [2293] = {.lex_state = 2324, .external_lex_state = 2}, + [2294] = {.lex_state = 2253}, + [2295] = {.lex_state = 2253}, + [2296] = {.lex_state = 2253}, + [2297] = {.lex_state = 2253}, + [2298] = {.lex_state = 2253}, + [2299] = {.lex_state = 2253}, + [2300] = {.lex_state = 2253}, + [2301] = {.lex_state = 2253}, + [2302] = {.lex_state = 2253}, + [2303] = {.lex_state = 2253}, + [2304] = {.lex_state = 46, .external_lex_state = 2}, + [2305] = {.lex_state = 2253}, + [2306] = {.lex_state = 2265}, + [2307] = {.lex_state = 2253}, + [2308] = {.lex_state = 2253}, + [2309] = {.lex_state = 2253}, + [2310] = {.lex_state = 2253}, + [2311] = {.lex_state = 2324, .external_lex_state = 2}, + [2312] = {.lex_state = 2253}, + [2313] = {.lex_state = 2253}, + [2314] = {.lex_state = 2253}, + [2315] = {.lex_state = 2261}, + [2316] = {.lex_state = 2253}, + [2317] = {.lex_state = 2253}, + [2318] = {.lex_state = 2253}, + [2319] = {.lex_state = 2253}, + [2320] = {.lex_state = 2253}, + [2321] = {.lex_state = 2253}, + [2322] = {.lex_state = 2261}, + [2323] = {.lex_state = 2253}, + [2324] = {.lex_state = 46, .external_lex_state = 2}, + [2325] = {.lex_state = 2253}, + [2326] = {.lex_state = 2253}, + [2327] = {.lex_state = 2253}, + [2328] = {.lex_state = 2253}, + [2329] = {.lex_state = 2253}, + [2330] = {.lex_state = 2253}, + [2331] = {.lex_state = 131, .external_lex_state = 2}, + [2332] = {.lex_state = 2253}, + [2333] = {.lex_state = 2253}, + [2334] = {.lex_state = 2253}, + [2335] = {.lex_state = 105, .external_lex_state = 2}, + [2336] = {.lex_state = 2253}, + [2337] = {.lex_state = 2253}, + [2338] = {.lex_state = 2253}, + [2339] = {.lex_state = 2253}, + [2340] = {.lex_state = 2253}, + [2341] = {.lex_state = 252, .external_lex_state = 2}, + [2342] = {.lex_state = 2253}, + [2343] = {.lex_state = 2253}, + [2344] = {.lex_state = 2253}, + [2345] = {.lex_state = 2253}, + [2346] = {.lex_state = 140, .external_lex_state = 2}, + [2347] = {.lex_state = 2253}, + [2348] = {.lex_state = 2253}, + [2349] = {.lex_state = 2253}, + [2350] = {.lex_state = 2324, .external_lex_state = 2}, + [2351] = {.lex_state = 2324, .external_lex_state = 2}, + [2352] = {.lex_state = 2253}, + [2353] = {.lex_state = 2253}, + [2354] = {.lex_state = 2253}, + [2355] = {.lex_state = 104, .external_lex_state = 2}, + [2356] = {.lex_state = 2253}, + [2357] = {.lex_state = 2253}, + [2358] = {.lex_state = 2253}, + [2359] = {.lex_state = 2253}, + [2360] = {.lex_state = 2253}, + [2361] = {.lex_state = 2253}, + [2362] = {.lex_state = 2253}, + [2363] = {.lex_state = 2253}, + [2364] = {.lex_state = 228, .external_lex_state = 2}, + [2365] = {.lex_state = 6}, + [2366] = {.lex_state = 2253}, + [2367] = {.lex_state = 2253}, + [2368] = {.lex_state = 2253}, + [2369] = {.lex_state = 2253}, + [2370] = {.lex_state = 2253}, + [2371] = {.lex_state = 150, .external_lex_state = 2}, + [2372] = {.lex_state = 2253}, + [2373] = {.lex_state = 105, .external_lex_state = 2}, + [2374] = {.lex_state = 2253}, + [2375] = {.lex_state = 2253}, + [2376] = {.lex_state = 2253}, + [2377] = {.lex_state = 2253}, + [2378] = {.lex_state = 2253}, + [2379] = {.lex_state = 228, .external_lex_state = 2}, + [2380] = {.lex_state = 2253}, + [2381] = {.lex_state = 2253}, + [2382] = {.lex_state = 2253}, + [2383] = {.lex_state = 2253}, + [2384] = {.lex_state = 2324, .external_lex_state = 2}, + [2385] = {.lex_state = 46, .external_lex_state = 2}, + [2386] = {.lex_state = 228, .external_lex_state = 2}, + [2387] = {.lex_state = 2253}, + [2388] = {.lex_state = 2253}, + [2389] = {.lex_state = 6}, + [2390] = {.lex_state = 2253}, + [2391] = {.lex_state = 2253}, + [2392] = {.lex_state = 2253}, + [2393] = {.lex_state = 2253}, + [2394] = {.lex_state = 2253}, + [2395] = {.lex_state = 2253}, + [2396] = {.lex_state = 6}, + [2397] = {.lex_state = 2253}, + [2398] = {.lex_state = 2253}, + [2399] = {.lex_state = 2253}, + [2400] = {.lex_state = 2253}, + [2401] = {.lex_state = 2253}, + [2402] = {.lex_state = 2253}, + [2403] = {.lex_state = 2253}, + [2404] = {.lex_state = 2253}, + [2405] = {.lex_state = 2253}, + [2406] = {.lex_state = 2253}, + [2407] = {.lex_state = 2253}, + [2408] = {.lex_state = 2253}, + [2409] = {.lex_state = 2253}, + [2410] = {.lex_state = 2253}, + [2411] = {.lex_state = 6}, + [2412] = {.lex_state = 2253}, + [2413] = {.lex_state = 2253}, + [2414] = {.lex_state = 2253}, + [2415] = {.lex_state = 2253}, + [2416] = {.lex_state = 2253}, + [2417] = {.lex_state = 2253}, + [2418] = {.lex_state = 2253}, + [2419] = {.lex_state = 228, .external_lex_state = 2}, + [2420] = {.lex_state = 2253}, + [2421] = {.lex_state = 2324, .external_lex_state = 2}, + [2422] = {.lex_state = 2253}, + [2423] = {.lex_state = 2253}, + [2424] = {.lex_state = 2253}, + [2425] = {.lex_state = 2253}, + [2426] = {.lex_state = 2253}, + [2427] = {.lex_state = 2253}, + [2428] = {.lex_state = 2253}, + [2429] = {.lex_state = 2253}, + [2430] = {.lex_state = 2253}, + [2431] = {.lex_state = 2253}, + [2432] = {.lex_state = 2253}, + [2433] = {.lex_state = 2253}, + [2434] = {.lex_state = 2253}, + [2435] = {.lex_state = 2253}, + [2436] = {.lex_state = 2253}, + [2437] = {.lex_state = 2253}, + [2438] = {.lex_state = 2324, .external_lex_state = 2}, + [2439] = {.lex_state = 2253}, + [2440] = {.lex_state = 2253}, + [2441] = {.lex_state = 2253}, + [2442] = {.lex_state = 2253}, + [2443] = {.lex_state = 228, .external_lex_state = 2}, + [2444] = {.lex_state = 228, .external_lex_state = 2}, + [2445] = {.lex_state = 228, .external_lex_state = 2}, + [2446] = {.lex_state = 2253}, + [2447] = {.lex_state = 228, .external_lex_state = 2}, + [2448] = {.lex_state = 2253}, + [2449] = {.lex_state = 2253}, + [2450] = {.lex_state = 2259}, + [2451] = {.lex_state = 2253}, + [2452] = {.lex_state = 2253}, + [2453] = {.lex_state = 2253}, + [2454] = {.lex_state = 2253}, + [2455] = {.lex_state = 2253}, + [2456] = {.lex_state = 2253}, + [2457] = {.lex_state = 254, .external_lex_state = 2}, + [2458] = {.lex_state = 2253}, + [2459] = {.lex_state = 2253}, + [2460] = {.lex_state = 2253}, + [2461] = {.lex_state = 2253}, + [2462] = {.lex_state = 2253}, + [2463] = {.lex_state = 103, .external_lex_state = 2}, + [2464] = {.lex_state = 2324, .external_lex_state = 2}, + [2465] = {.lex_state = 2253}, + [2466] = {.lex_state = 2253}, + [2467] = {.lex_state = 2253}, + [2468] = {.lex_state = 2253}, + [2469] = {.lex_state = 2253}, + [2470] = {.lex_state = 2253}, + [2471] = {.lex_state = 2253}, + [2472] = {.lex_state = 134, .external_lex_state = 2}, + [2473] = {.lex_state = 148, .external_lex_state = 2}, + [2474] = {.lex_state = 2253}, + [2475] = {.lex_state = 2253}, + [2476] = {.lex_state = 2253}, + [2477] = {.lex_state = 133, .external_lex_state = 2}, + [2478] = {.lex_state = 2253}, + [2479] = {.lex_state = 2253}, + [2480] = {.lex_state = 2253}, + [2481] = {.lex_state = 2253}, + [2482] = {.lex_state = 2253}, + [2483] = {.lex_state = 2253}, + [2484] = {.lex_state = 2253}, + [2485] = {.lex_state = 2253}, + [2486] = {.lex_state = 2253}, + [2487] = {.lex_state = 2253}, + [2488] = {.lex_state = 133, .external_lex_state = 2}, + [2489] = {.lex_state = 2253}, + [2490] = {.lex_state = 2253}, + [2491] = {.lex_state = 2253}, + [2492] = {.lex_state = 2253}, + [2493] = {.lex_state = 2253}, + [2494] = {.lex_state = 2253}, + [2495] = {.lex_state = 2253}, + [2496] = {.lex_state = 2253}, + [2497] = {.lex_state = 2253}, + [2498] = {.lex_state = 2253}, + [2499] = {.lex_state = 2253}, + [2500] = {.lex_state = 2253}, + [2501] = {.lex_state = 2253}, + [2502] = {.lex_state = 2253}, + [2503] = {.lex_state = 149, .external_lex_state = 2}, + [2504] = {.lex_state = 2253}, + [2505] = {.lex_state = 2323, .external_lex_state = 2}, + [2506] = {.lex_state = 2323, .external_lex_state = 2}, + [2507] = {.lex_state = 2323, .external_lex_state = 2}, + [2508] = {.lex_state = 2323, .external_lex_state = 2}, + [2509] = {.lex_state = 2253}, + [2510] = {.lex_state = 2253}, + [2511] = {.lex_state = 2253}, + [2512] = {.lex_state = 2253}, + [2513] = {.lex_state = 2253}, + [2514] = {.lex_state = 2324, .external_lex_state = 2}, + [2515] = {.lex_state = 2253}, + [2516] = {.lex_state = 2253}, + [2517] = {.lex_state = 2253}, + [2518] = {.lex_state = 2253}, + [2519] = {.lex_state = 2253}, + [2520] = {.lex_state = 2253}, + [2521] = {.lex_state = 2253}, + [2522] = {.lex_state = 2253}, + [2523] = {.lex_state = 2253}, + [2524] = {.lex_state = 2253}, + [2525] = {.lex_state = 2253}, + [2526] = {.lex_state = 2253}, + [2527] = {.lex_state = 2253}, + [2528] = {.lex_state = 2253}, + [2529] = {.lex_state = 2253}, + [2530] = {.lex_state = 2253}, + [2531] = {.lex_state = 2253}, + [2532] = {.lex_state = 251, .external_lex_state = 2}, + [2533] = {.lex_state = 103, .external_lex_state = 2}, + [2534] = {.lex_state = 2253}, + [2535] = {.lex_state = 2253}, + [2536] = {.lex_state = 149, .external_lex_state = 2}, + [2537] = {.lex_state = 149, .external_lex_state = 2}, + [2538] = {.lex_state = 251, .external_lex_state = 2}, + [2539] = {.lex_state = 149, .external_lex_state = 2}, + [2540] = {.lex_state = 2323, .external_lex_state = 2}, + [2541] = {.lex_state = 2323, .external_lex_state = 2}, + [2542] = {.lex_state = 2253}, + [2543] = {.lex_state = 2253}, + [2544] = {.lex_state = 2253}, + [2545] = {.lex_state = 2253}, + [2546] = {.lex_state = 2253}, + [2547] = {.lex_state = 2253}, + [2548] = {.lex_state = 2253}, + [2549] = {.lex_state = 2253}, + [2550] = {.lex_state = 2253}, + [2551] = {.lex_state = 2253}, + [2552] = {.lex_state = 2253}, + [2553] = {.lex_state = 2253}, + [2554] = {.lex_state = 2324, .external_lex_state = 2}, + [2555] = {.lex_state = 2323, .external_lex_state = 2}, + [2556] = {.lex_state = 228, .external_lex_state = 2}, + [2557] = {.lex_state = 134, .external_lex_state = 2}, + [2558] = {.lex_state = 210, .external_lex_state = 2}, + [2559] = {.lex_state = 253, .external_lex_state = 2}, + [2560] = {.lex_state = 228, .external_lex_state = 2}, + [2561] = {.lex_state = 141, .external_lex_state = 2}, + [2562] = {.lex_state = 132, .external_lex_state = 2}, + [2563] = {.lex_state = 204, .external_lex_state = 2}, + [2564] = {.lex_state = 147, .external_lex_state = 2}, + [2565] = {.lex_state = 253, .external_lex_state = 2}, + [2566] = {.lex_state = 228, .external_lex_state = 2}, + [2567] = {.lex_state = 228, .external_lex_state = 2}, + [2568] = {.lex_state = 2323, .external_lex_state = 2}, + [2569] = {.lex_state = 253, .external_lex_state = 2}, + [2570] = {.lex_state = 134, .external_lex_state = 2}, + [2571] = {.lex_state = 228, .external_lex_state = 2}, + [2572] = {.lex_state = 147, .external_lex_state = 2}, + [2573] = {.lex_state = 2323, .external_lex_state = 2}, + [2574] = {.lex_state = 219, .external_lex_state = 2}, + [2575] = {.lex_state = 228, .external_lex_state = 2}, + [2576] = {.lex_state = 253, .external_lex_state = 2}, + [2577] = {.lex_state = 228, .external_lex_state = 2}, + [2578] = {.lex_state = 147, .external_lex_state = 2}, + [2579] = {.lex_state = 2323, .external_lex_state = 2}, + [2580] = {.lex_state = 228, .external_lex_state = 2}, + [2581] = {.lex_state = 147, .external_lex_state = 2}, + [2582] = {.lex_state = 253, .external_lex_state = 2}, + [2583] = {.lex_state = 228, .external_lex_state = 2}, + [2584] = {.lex_state = 228, .external_lex_state = 2}, + [2585] = {.lex_state = 204, .external_lex_state = 2}, + [2586] = {.lex_state = 2324, .external_lex_state = 2}, + [2587] = {.lex_state = 2323, .external_lex_state = 2}, + [2588] = {.lex_state = 204, .external_lex_state = 2}, + [2589] = {.lex_state = 2324, .external_lex_state = 2}, + [2590] = {.lex_state = 134, .external_lex_state = 2}, + [2591] = {.lex_state = 134, .external_lex_state = 2}, + [2592] = {.lex_state = 228, .external_lex_state = 2}, + [2593] = {.lex_state = 228, .external_lex_state = 2}, + [2594] = {.lex_state = 2323, .external_lex_state = 2}, + [2595] = {.lex_state = 228, .external_lex_state = 2}, + [2596] = {.lex_state = 228, .external_lex_state = 2}, + [2597] = {.lex_state = 2326, .external_lex_state = 2}, + [2598] = {.lex_state = 204, .external_lex_state = 2}, + [2599] = {.lex_state = 2324, .external_lex_state = 2}, + [2600] = {.lex_state = 2326, .external_lex_state = 2}, + [2601] = {.lex_state = 2326, .external_lex_state = 2}, + [2602] = {.lex_state = 2324, .external_lex_state = 2}, + [2603] = {.lex_state = 2326, .external_lex_state = 2}, + [2604] = {.lex_state = 228, .external_lex_state = 2}, + [2605] = {.lex_state = 228, .external_lex_state = 2}, + [2606] = {.lex_state = 2326, .external_lex_state = 2}, + [2607] = {.lex_state = 2326, .external_lex_state = 2}, + [2608] = {.lex_state = 228, .external_lex_state = 2}, + [2609] = {.lex_state = 228, .external_lex_state = 2}, + [2610] = {.lex_state = 228, .external_lex_state = 2}, + [2611] = {.lex_state = 228, .external_lex_state = 2}, + [2612] = {.lex_state = 191, .external_lex_state = 2}, + [2613] = {.lex_state = 2326, .external_lex_state = 2}, + [2614] = {.lex_state = 2324, .external_lex_state = 2}, + [2615] = {.lex_state = 228, .external_lex_state = 2}, + [2616] = {.lex_state = 228, .external_lex_state = 2}, + [2617] = {.lex_state = 228, .external_lex_state = 2}, + [2618] = {.lex_state = 228, .external_lex_state = 2}, + [2619] = {.lex_state = 2326, .external_lex_state = 2}, + [2620] = {.lex_state = 228, .external_lex_state = 2}, + [2621] = {.lex_state = 228, .external_lex_state = 2}, + [2622] = {.lex_state = 228, .external_lex_state = 2}, + [2623] = {.lex_state = 228, .external_lex_state = 2}, + [2624] = {.lex_state = 228, .external_lex_state = 2}, + [2625] = {.lex_state = 228, .external_lex_state = 2}, + [2626] = {.lex_state = 228, .external_lex_state = 2}, + [2627] = {.lex_state = 212, .external_lex_state = 2}, + [2628] = {.lex_state = 135, .external_lex_state = 2}, + [2629] = {.lex_state = 228, .external_lex_state = 2}, + [2630] = {.lex_state = 228, .external_lex_state = 2}, + [2631] = {.lex_state = 2326, .external_lex_state = 2}, + [2632] = {.lex_state = 228, .external_lex_state = 2}, + [2633] = {.lex_state = 228, .external_lex_state = 2}, + [2634] = {.lex_state = 135, .external_lex_state = 2}, + [2635] = {.lex_state = 228, .external_lex_state = 2}, + [2636] = {.lex_state = 228, .external_lex_state = 2}, + [2637] = {.lex_state = 228, .external_lex_state = 2}, + [2638] = {.lex_state = 228, .external_lex_state = 2}, + [2639] = {.lex_state = 2326, .external_lex_state = 2}, + [2640] = {.lex_state = 2326, .external_lex_state = 2}, + [2641] = {.lex_state = 228, .external_lex_state = 2}, + [2642] = {.lex_state = 191, .external_lex_state = 2}, + [2643] = {.lex_state = 2326, .external_lex_state = 2}, + [2644] = {.lex_state = 228, .external_lex_state = 2}, + [2645] = {.lex_state = 212, .external_lex_state = 2}, + [2646] = {.lex_state = 2326, .external_lex_state = 2}, + [2647] = {.lex_state = 191, .external_lex_state = 2}, + [2648] = {.lex_state = 2326, .external_lex_state = 2}, + [2649] = {.lex_state = 228, .external_lex_state = 2}, + [2650] = {.lex_state = 2326, .external_lex_state = 2}, + [2651] = {.lex_state = 2326, .external_lex_state = 2}, + [2652] = {.lex_state = 2326, .external_lex_state = 2}, + [2653] = {.lex_state = 204, .external_lex_state = 2}, + [2654] = {.lex_state = 2326, .external_lex_state = 2}, + [2655] = {.lex_state = 228, .external_lex_state = 2}, + [2656] = {.lex_state = 228, .external_lex_state = 2}, + [2657] = {.lex_state = 228, .external_lex_state = 2}, + [2658] = {.lex_state = 2326, .external_lex_state = 2}, + [2659] = {.lex_state = 2326, .external_lex_state = 2}, + [2660] = {.lex_state = 228, .external_lex_state = 2}, + [2661] = {.lex_state = 228, .external_lex_state = 2}, + [2662] = {.lex_state = 228, .external_lex_state = 2}, + [2663] = {.lex_state = 2326, .external_lex_state = 2}, + [2664] = {.lex_state = 2326, .external_lex_state = 2}, + [2665] = {.lex_state = 228, .external_lex_state = 2}, + [2666] = {.lex_state = 228, .external_lex_state = 2}, + [2667] = {.lex_state = 2326, .external_lex_state = 2}, + [2668] = {.lex_state = 247, .external_lex_state = 2}, + [2669] = {.lex_state = 236, .external_lex_state = 2}, + [2670] = {.lex_state = 213, .external_lex_state = 2}, + [2671] = {.lex_state = 236, .external_lex_state = 2}, + [2672] = {.lex_state = 2326, .external_lex_state = 2}, + [2673] = {.lex_state = 247, .external_lex_state = 2}, + [2674] = {.lex_state = 220, .external_lex_state = 2}, + [2675] = {.lex_state = 247, .external_lex_state = 2}, + [2676] = {.lex_state = 202, .external_lex_state = 2}, + [2677] = {.lex_state = 202, .external_lex_state = 2}, + [2678] = {.lex_state = 247, .external_lex_state = 2}, + [2679] = {.lex_state = 238, .external_lex_state = 2}, + [2680] = {.lex_state = 2326, .external_lex_state = 2}, + [2681] = {.lex_state = 247, .external_lex_state = 2}, + [2682] = {.lex_state = 247, .external_lex_state = 2}, + [2683] = {.lex_state = 136, .external_lex_state = 2}, + [2684] = {.lex_state = 247, .external_lex_state = 2}, + [2685] = {.lex_state = 2326, .external_lex_state = 2}, + [2686] = {.lex_state = 247, .external_lex_state = 2}, + [2687] = {.lex_state = 247, .external_lex_state = 2}, + [2688] = {.lex_state = 136, .external_lex_state = 2}, + [2689] = {.lex_state = 213, .external_lex_state = 2}, + [2690] = {.lex_state = 205, .external_lex_state = 2}, + [2691] = {.lex_state = 202, .external_lex_state = 2}, + [2692] = {.lex_state = 247, .external_lex_state = 2}, + [2693] = {.lex_state = 213, .external_lex_state = 2}, + [2694] = {.lex_state = 247, .external_lex_state = 2}, + [2695] = {.lex_state = 136, .external_lex_state = 2}, + [2696] = {.lex_state = 2326, .external_lex_state = 2}, + [2697] = {.lex_state = 136, .external_lex_state = 2}, + [2698] = {.lex_state = 236, .external_lex_state = 2}, + [2699] = {.lex_state = 2326, .external_lex_state = 2}, + [2700] = {.lex_state = 2326, .external_lex_state = 2}, + [2701] = {.lex_state = 191, .external_lex_state = 2}, + [2702] = {.lex_state = 211, .external_lex_state = 2}, + [2703] = {.lex_state = 191, .external_lex_state = 2}, + [2704] = {.lex_state = 2326, .external_lex_state = 2}, + [2705] = {.lex_state = 2326, .external_lex_state = 2}, + [2706] = {.lex_state = 247, .external_lex_state = 2}, + [2707] = {.lex_state = 247, .external_lex_state = 2}, + [2708] = {.lex_state = 213, .external_lex_state = 2}, + [2709] = {.lex_state = 2326, .external_lex_state = 2}, + [2710] = {.lex_state = 136, .external_lex_state = 2}, + [2711] = {.lex_state = 238, .external_lex_state = 2}, + [2712] = {.lex_state = 2326, .external_lex_state = 2}, + [2713] = {.lex_state = 247, .external_lex_state = 2}, + [2714] = {.lex_state = 202, .external_lex_state = 2}, + [2715] = {.lex_state = 202, .external_lex_state = 2}, + [2716] = {.lex_state = 2326, .external_lex_state = 2}, + [2717] = {.lex_state = 2305, .external_lex_state = 2}, + [2718] = {.lex_state = 247, .external_lex_state = 2}, + [2719] = {.lex_state = 2305, .external_lex_state = 2}, + [2720] = {.lex_state = 238, .external_lex_state = 2}, + [2721] = {.lex_state = 2326, .external_lex_state = 2}, + [2722] = {.lex_state = 247, .external_lex_state = 2}, + [2723] = {.lex_state = 213, .external_lex_state = 2}, + [2724] = {.lex_state = 247, .external_lex_state = 2}, + [2725] = {.lex_state = 236, .external_lex_state = 2}, + [2726] = {.lex_state = 247, .external_lex_state = 2}, + [2727] = {.lex_state = 247, .external_lex_state = 2}, + [2728] = {.lex_state = 2326, .external_lex_state = 2}, + [2729] = {.lex_state = 2326, .external_lex_state = 2}, + [2730] = {.lex_state = 2326, .external_lex_state = 2}, + [2731] = {.lex_state = 238, .external_lex_state = 2}, + [2732] = {.lex_state = 201, .external_lex_state = 2}, + [2733] = {.lex_state = 2326, .external_lex_state = 2}, + [2734] = {.lex_state = 202, .external_lex_state = 2}, + [2735] = {.lex_state = 247, .external_lex_state = 2}, + [2736] = {.lex_state = 238, .external_lex_state = 2}, + [2737] = {.lex_state = 247, .external_lex_state = 2}, + [2738] = {.lex_state = 247, .external_lex_state = 2}, + [2739] = {.lex_state = 2326, .external_lex_state = 2}, + [2740] = {.lex_state = 2326, .external_lex_state = 2}, + [2741] = {.lex_state = 247, .external_lex_state = 2}, + [2742] = {.lex_state = 43, .external_lex_state = 2}, + [2743] = {.lex_state = 2326, .external_lex_state = 2}, + [2744] = {.lex_state = 136, .external_lex_state = 2}, + [2745] = {.lex_state = 2326, .external_lex_state = 2}, + [2746] = {.lex_state = 203, .external_lex_state = 2}, + [2747] = {.lex_state = 2326, .external_lex_state = 2}, + [2748] = {.lex_state = 208, .external_lex_state = 2}, + [2749] = {.lex_state = 208, .external_lex_state = 2}, + [2750] = {.lex_state = 208, .external_lex_state = 2}, + [2751] = {.lex_state = 237, .external_lex_state = 2}, + [2752] = {.lex_state = 208, .external_lex_state = 2}, + [2753] = {.lex_state = 214, .external_lex_state = 2}, + [2754] = {.lex_state = 192, .external_lex_state = 2}, + [2755] = {.lex_state = 204, .external_lex_state = 2}, + [2756] = {.lex_state = 247, .external_lex_state = 2}, + [2757] = {.lex_state = 189, .external_lex_state = 2}, + [2758] = {.lex_state = 189, .external_lex_state = 2}, + [2759] = {.lex_state = 208, .external_lex_state = 2}, + [2760] = {.lex_state = 208, .external_lex_state = 2}, + [2761] = {.lex_state = 208, .external_lex_state = 2}, + [2762] = {.lex_state = 208, .external_lex_state = 2}, + [2763] = {.lex_state = 208, .external_lex_state = 2}, + [2764] = {.lex_state = 237, .external_lex_state = 2}, + [2765] = {.lex_state = 204, .external_lex_state = 2}, + [2766] = {.lex_state = 208, .external_lex_state = 2}, + [2767] = {.lex_state = 189, .external_lex_state = 2}, + [2768] = {.lex_state = 214, .external_lex_state = 2}, + [2769] = {.lex_state = 237, .external_lex_state = 2}, + [2770] = {.lex_state = 208, .external_lex_state = 2}, + [2771] = {.lex_state = 247, .external_lex_state = 2}, + [2772] = {.lex_state = 208, .external_lex_state = 2}, + [2773] = {.lex_state = 208, .external_lex_state = 2}, + [2774] = {.lex_state = 199, .external_lex_state = 2}, + [2775] = {.lex_state = 208, .external_lex_state = 2}, + [2776] = {.lex_state = 189, .external_lex_state = 2}, + [2777] = {.lex_state = 188, .external_lex_state = 2}, + [2778] = {.lex_state = 189, .external_lex_state = 2}, + [2779] = {.lex_state = 238, .external_lex_state = 2}, + [2780] = {.lex_state = 208, .external_lex_state = 2}, + [2781] = {.lex_state = 237, .external_lex_state = 2}, + [2782] = {.lex_state = 199, .external_lex_state = 2}, + [2783] = {.lex_state = 190, .external_lex_state = 2}, + [2784] = {.lex_state = 43, .external_lex_state = 2}, + [2785] = {.lex_state = 208, .external_lex_state = 2}, + [2786] = {.lex_state = 142, .external_lex_state = 2}, + [2787] = {.lex_state = 237, .external_lex_state = 2}, + [2788] = {.lex_state = 208, .external_lex_state = 2}, + [2789] = {.lex_state = 137, .external_lex_state = 2}, + [2790] = {.lex_state = 204, .external_lex_state = 2}, + [2791] = {.lex_state = 238, .external_lex_state = 2}, + [2792] = {.lex_state = 208, .external_lex_state = 2}, + [2793] = {.lex_state = 208, .external_lex_state = 2}, + [2794] = {.lex_state = 237, .external_lex_state = 2}, + [2795] = {.lex_state = 189, .external_lex_state = 2}, + [2796] = {.lex_state = 208, .external_lex_state = 2}, + [2797] = {.lex_state = 192, .external_lex_state = 2}, + [2798] = {.lex_state = 192, .external_lex_state = 2}, + [2799] = {.lex_state = 192, .external_lex_state = 2}, + [2800] = {.lex_state = 192, .external_lex_state = 2}, [2801] = {.lex_state = 192, .external_lex_state = 2}, - [2802] = {.lex_state = 247, .external_lex_state = 2}, - [2803] = {.lex_state = 246, .external_lex_state = 2}, - [2804] = {.lex_state = 246, .external_lex_state = 2}, - [2805] = {.lex_state = 246, .external_lex_state = 2}, - [2806] = {.lex_state = 187, .external_lex_state = 2}, - [2807] = {.lex_state = 216, .external_lex_state = 2}, + [2802] = {.lex_state = 192, .external_lex_state = 2}, + [2803] = {.lex_state = 192, .external_lex_state = 2}, + [2804] = {.lex_state = 192, .external_lex_state = 2}, + [2805] = {.lex_state = 192, .external_lex_state = 2}, + [2806] = {.lex_state = 192, .external_lex_state = 2}, + [2807] = {.lex_state = 192, .external_lex_state = 2}, [2808] = {.lex_state = 192, .external_lex_state = 2}, [2809] = {.lex_state = 192, .external_lex_state = 2}, - [2810] = {.lex_state = 201, .external_lex_state = 2}, - [2811] = {.lex_state = 216, .external_lex_state = 2}, - [2812] = {.lex_state = 201, .external_lex_state = 2}, - [2813] = {.lex_state = 249, .external_lex_state = 2}, - [2814] = {.lex_state = 43, .external_lex_state = 2}, - [2815] = {.lex_state = 246, .external_lex_state = 2}, - [2816] = {.lex_state = 247, .external_lex_state = 2}, - [2817] = {.lex_state = 246, .external_lex_state = 2}, - [2818] = {.lex_state = 246, .external_lex_state = 2}, - [2819] = {.lex_state = 246, .external_lex_state = 2}, - [2820] = {.lex_state = 209, .external_lex_state = 2}, - [2821] = {.lex_state = 201, .external_lex_state = 2}, - [2822] = {.lex_state = 201, .external_lex_state = 2}, - [2823] = {.lex_state = 201, .external_lex_state = 2}, - [2824] = {.lex_state = 139, .external_lex_state = 2}, - [2825] = {.lex_state = 246, .external_lex_state = 2}, - [2826] = {.lex_state = 193, .external_lex_state = 2}, - [2827] = {.lex_state = 201, .external_lex_state = 2}, - [2828] = {.lex_state = 201, .external_lex_state = 2}, - [2829] = {.lex_state = 201, .external_lex_state = 2}, - [2830] = {.lex_state = 247, .external_lex_state = 2}, - [2831] = {.lex_state = 193, .external_lex_state = 2}, - [2832] = {.lex_state = 193, .external_lex_state = 2}, - [2833] = {.lex_state = 216, .external_lex_state = 2}, - [2834] = {.lex_state = 193, .external_lex_state = 2}, - [2835] = {.lex_state = 193, .external_lex_state = 2}, - [2836] = {.lex_state = 193, .external_lex_state = 2}, - [2837] = {.lex_state = 193, .external_lex_state = 2}, - [2838] = {.lex_state = 193, .external_lex_state = 2}, - [2839] = {.lex_state = 193, .external_lex_state = 2}, - [2840] = {.lex_state = 193, .external_lex_state = 2}, - [2841] = {.lex_state = 247, .external_lex_state = 2}, - [2842] = {.lex_state = 193, .external_lex_state = 2}, - [2843] = {.lex_state = 193, .external_lex_state = 2}, - [2844] = {.lex_state = 247, .external_lex_state = 2}, - [2845] = {.lex_state = 247, .external_lex_state = 2}, - [2846] = {.lex_state = 193, .external_lex_state = 2}, - [2847] = {.lex_state = 193, .external_lex_state = 2}, - [2848] = {.lex_state = 201, .external_lex_state = 2}, - [2849] = {.lex_state = 193, .external_lex_state = 2}, - [2850] = {.lex_state = 246, .external_lex_state = 2}, - [2851] = {.lex_state = 44, .external_lex_state = 2}, - [2852] = {.lex_state = 193, .external_lex_state = 2}, - [2853] = {.lex_state = 201, .external_lex_state = 2}, - [2854] = {.lex_state = 216, .external_lex_state = 2}, - [2855] = {.lex_state = 201, .external_lex_state = 2}, - [2856] = {.lex_state = 193, .external_lex_state = 2}, - [2857] = {.lex_state = 216, .external_lex_state = 2}, - [2858] = {.lex_state = 209, .external_lex_state = 2}, - [2859] = {.lex_state = 187, .external_lex_state = 2}, - [2860] = {.lex_state = 42, .external_lex_state = 2}, - [2861] = {.lex_state = 193, .external_lex_state = 2}, - [2862] = {.lex_state = 193, .external_lex_state = 2}, - [2863] = {.lex_state = 201, .external_lex_state = 2}, - [2864] = {.lex_state = 201, .external_lex_state = 2}, - [2865] = {.lex_state = 201, .external_lex_state = 2}, - [2866] = {.lex_state = 193, .external_lex_state = 2}, - [2867] = {.lex_state = 193, .external_lex_state = 2}, - [2868] = {.lex_state = 42, .external_lex_state = 2}, - [2869] = {.lex_state = 47, .external_lex_state = 2}, - [2870] = {.lex_state = 188, .external_lex_state = 2}, - [2871] = {.lex_state = 193, .external_lex_state = 2}, - [2872] = {.lex_state = 199, .external_lex_state = 2}, - [2873] = {.lex_state = 47, .external_lex_state = 2}, - [2874] = {.lex_state = 140, .external_lex_state = 2}, - [2875] = {.lex_state = 188, .external_lex_state = 2}, - [2876] = {.lex_state = 140, .external_lex_state = 2}, - [2877] = {.lex_state = 262, .external_lex_state = 2}, - [2878] = {.lex_state = 222, .external_lex_state = 2}, - [2879] = {.lex_state = 140, .external_lex_state = 2}, - [2880] = {.lex_state = 217, .external_lex_state = 2}, - [2881] = {.lex_state = 103, .external_lex_state = 2}, - [2882] = {.lex_state = 229, .external_lex_state = 2}, - [2883] = {.lex_state = 188, .external_lex_state = 2}, - [2884] = {.lex_state = 248, .external_lex_state = 2}, - [2885] = {.lex_state = 261, .external_lex_state = 2}, - [2886] = {.lex_state = 261, .external_lex_state = 2}, - [2887] = {.lex_state = 193, .external_lex_state = 2}, - [2888] = {.lex_state = 140, .external_lex_state = 2}, - [2889] = {.lex_state = 261, .external_lex_state = 2}, - [2890] = {.lex_state = 261, .external_lex_state = 2}, - [2891] = {.lex_state = 140, .external_lex_state = 2}, - [2892] = {.lex_state = 246, .external_lex_state = 2}, - [2893] = {.lex_state = 188, .external_lex_state = 2}, - [2894] = {.lex_state = 188, .external_lex_state = 2}, - [2895] = {.lex_state = 229, .external_lex_state = 2}, - [2896] = {.lex_state = 261, .external_lex_state = 2}, - [2897] = {.lex_state = 188, .external_lex_state = 2}, - [2898] = {.lex_state = 262, .external_lex_state = 2}, - [2899] = {.lex_state = 262, .external_lex_state = 2}, - [2900] = {.lex_state = 188, .external_lex_state = 2}, - [2901] = {.lex_state = 140, .external_lex_state = 2}, - [2902] = {.lex_state = 140, .external_lex_state = 2}, - [2903] = {.lex_state = 43, .external_lex_state = 2}, - [2904] = {.lex_state = 188, .external_lex_state = 2}, - [2905] = {.lex_state = 207, .external_lex_state = 2}, - [2906] = {.lex_state = 208, .external_lex_state = 2}, - [2907] = {.lex_state = 698}, - [2908] = {.lex_state = 700}, - [2909] = {.lex_state = 262, .external_lex_state = 2}, - [2910] = {.lex_state = 188, .external_lex_state = 2}, - [2911] = {.lex_state = 248, .external_lex_state = 2}, - [2912] = {.lex_state = 188, .external_lex_state = 2}, - [2913] = {.lex_state = 188, .external_lex_state = 2}, - [2914] = {.lex_state = 248, .external_lex_state = 2}, - [2915] = {.lex_state = 188, .external_lex_state = 2}, - [2916] = {.lex_state = 207, .external_lex_state = 2}, - [2917] = {.lex_state = 207, .external_lex_state = 2}, - [2918] = {.lex_state = 188, .external_lex_state = 2}, - [2919] = {.lex_state = 140, .external_lex_state = 2}, - [2920] = {.lex_state = 188, .external_lex_state = 2}, - [2921] = {.lex_state = 246, .external_lex_state = 2}, - [2922] = {.lex_state = 207, .external_lex_state = 2}, - [2923] = {.lex_state = 207, .external_lex_state = 2}, - [2924] = {.lex_state = 207, .external_lex_state = 2}, - [2925] = {.lex_state = 140, .external_lex_state = 2}, - [2926] = {.lex_state = 188, .external_lex_state = 2}, - [2927] = {.lex_state = 262, .external_lex_state = 2}, - [2928] = {.lex_state = 229, .external_lex_state = 2}, - [2929] = {.lex_state = 180, .external_lex_state = 2}, - [2930] = {.lex_state = 180, .external_lex_state = 2}, - [2931] = {.lex_state = 196, .external_lex_state = 2}, - [2932] = {.lex_state = 209, .external_lex_state = 2}, - [2933] = {.lex_state = 229, .external_lex_state = 2}, - [2934] = {.lex_state = 229, .external_lex_state = 2}, - [2935] = {.lex_state = 195, .external_lex_state = 2}, - [2936] = {.lex_state = 229, .external_lex_state = 2}, - [2937] = {.lex_state = 229, .external_lex_state = 2}, - [2938] = {.lex_state = 229, .external_lex_state = 2}, - [2939] = {.lex_state = 229, .external_lex_state = 2}, - [2940] = {.lex_state = 180, .external_lex_state = 2}, - [2941] = {.lex_state = 223, .external_lex_state = 2}, - [2942] = {.lex_state = 229, .external_lex_state = 2}, - [2943] = {.lex_state = 229, .external_lex_state = 2}, - [2944] = {.lex_state = 229, .external_lex_state = 2}, - [2945] = {.lex_state = 229, .external_lex_state = 2}, - [2946] = {.lex_state = 229, .external_lex_state = 2}, - [2947] = {.lex_state = 229, .external_lex_state = 2}, - [2948] = {.lex_state = 229, .external_lex_state = 2}, - [2949] = {.lex_state = 229, .external_lex_state = 2}, - [2950] = {.lex_state = 229, .external_lex_state = 2}, - [2951] = {.lex_state = 229, .external_lex_state = 2}, - [2952] = {.lex_state = 229, .external_lex_state = 2}, - [2953] = {.lex_state = 229, .external_lex_state = 2}, - [2954] = {.lex_state = 218, .external_lex_state = 2}, - [2955] = {.lex_state = 229, .external_lex_state = 2}, - [2956] = {.lex_state = 229, .external_lex_state = 2}, - [2957] = {.lex_state = 229, .external_lex_state = 2}, - [2958] = {.lex_state = 229, .external_lex_state = 2}, - [2959] = {.lex_state = 229, .external_lex_state = 2}, - [2960] = {.lex_state = 103, .external_lex_state = 2}, - [2961] = {.lex_state = 229, .external_lex_state = 2}, - [2962] = {.lex_state = 229, .external_lex_state = 2}, - [2963] = {.lex_state = 229, .external_lex_state = 2}, - [2964] = {.lex_state = 47, .external_lex_state = 2}, - [2965] = {.lex_state = 180, .external_lex_state = 2}, - [2966] = {.lex_state = 103, .external_lex_state = 2}, - [2967] = {.lex_state = 229, .external_lex_state = 2}, - [2968] = {.lex_state = 229, .external_lex_state = 2}, - [2969] = {.lex_state = 194, .external_lex_state = 2}, - [2970] = {.lex_state = 180, .external_lex_state = 2}, - [2971] = {.lex_state = 180, .external_lex_state = 2}, - [2972] = {.lex_state = 229, .external_lex_state = 2}, - [2973] = {.lex_state = 702}, - [2974] = {.lex_state = 194, .external_lex_state = 2}, - [2975] = {.lex_state = 702}, - [2976] = {.lex_state = 229, .external_lex_state = 2}, - [2977] = {.lex_state = 700}, - [2978] = {.lex_state = 180, .external_lex_state = 2}, - [2979] = {.lex_state = 209, .external_lex_state = 2}, - [2980] = {.lex_state = 229, .external_lex_state = 2}, - [2981] = {.lex_state = 229, .external_lex_state = 2}, - [2982] = {.lex_state = 194, .external_lex_state = 2}, - [2983] = {.lex_state = 194, .external_lex_state = 2}, - [2984] = {.lex_state = 704}, - [2985] = {.lex_state = 194, .external_lex_state = 2}, - [2986] = {.lex_state = 229, .external_lex_state = 2}, - [2987] = {.lex_state = 229, .external_lex_state = 2}, - [2988] = {.lex_state = 229, .external_lex_state = 2}, - [2989] = {.lex_state = 229, .external_lex_state = 2}, - [2990] = {.lex_state = 218, .external_lex_state = 2}, - [2991] = {.lex_state = 180, .external_lex_state = 2}, - [2992] = {.lex_state = 180, .external_lex_state = 2}, - [2993] = {.lex_state = 186, .external_lex_state = 2}, - [2994] = {.lex_state = 229, .external_lex_state = 2}, - [2995] = {.lex_state = 229, .external_lex_state = 2}, - [2996] = {.lex_state = 229, .external_lex_state = 2}, - [2997] = {.lex_state = 229, .external_lex_state = 2}, - [2998] = {.lex_state = 197, .external_lex_state = 2}, - [2999] = {.lex_state = 180, .external_lex_state = 2}, - [3000] = {.lex_state = 180, .external_lex_state = 2}, - [3001] = {.lex_state = 196, .external_lex_state = 2}, - [3002] = {.lex_state = 229, .external_lex_state = 2}, - [3003] = {.lex_state = 229, .external_lex_state = 2}, - [3004] = {.lex_state = 229, .external_lex_state = 2}, - [3005] = {.lex_state = 229, .external_lex_state = 2}, - [3006] = {.lex_state = 180, .external_lex_state = 2}, - [3007] = {.lex_state = 229, .external_lex_state = 2}, - [3008] = {.lex_state = 229, .external_lex_state = 2}, - [3009] = {.lex_state = 229, .external_lex_state = 2}, - [3010] = {.lex_state = 45, .external_lex_state = 2}, - [3011] = {.lex_state = 229, .external_lex_state = 2}, - [3012] = {.lex_state = 229, .external_lex_state = 2}, - [3013] = {.lex_state = 209, .external_lex_state = 2}, - [3014] = {.lex_state = 194, .external_lex_state = 2}, - [3015] = {.lex_state = 180, .external_lex_state = 2}, - [3016] = {.lex_state = 698}, - [3017] = {.lex_state = 219, .external_lex_state = 2}, - [3018] = {.lex_state = 198, .external_lex_state = 2}, - [3019] = {.lex_state = 198, .external_lex_state = 2}, - [3020] = {.lex_state = 198, .external_lex_state = 2}, - [3021] = {.lex_state = 45, .external_lex_state = 2}, - [3022] = {.lex_state = 198, .external_lex_state = 2}, - [3023] = {.lex_state = 198, .external_lex_state = 2}, - [3024] = {.lex_state = 219, .external_lex_state = 2}, - [3025] = {.lex_state = 198, .external_lex_state = 2}, - [3026] = {.lex_state = 198, .external_lex_state = 2}, - [3027] = {.lex_state = 198, .external_lex_state = 2}, - [3028] = {.lex_state = 198, .external_lex_state = 2}, - [3029] = {.lex_state = 198, .external_lex_state = 2}, - [3030] = {.lex_state = 198, .external_lex_state = 2}, - [3031] = {.lex_state = 184, .external_lex_state = 2}, - [3032] = {.lex_state = 183, .external_lex_state = 2}, - [3033] = {.lex_state = 198, .external_lex_state = 2}, - [3034] = {.lex_state = 183, .external_lex_state = 2}, - [3035] = {.lex_state = 219, .external_lex_state = 2}, - [3036] = {.lex_state = 219, .external_lex_state = 2}, - [3037] = {.lex_state = 263, .external_lex_state = 2}, - [3038] = {.lex_state = 198, .external_lex_state = 2}, - [3039] = {.lex_state = 198, .external_lex_state = 2}, - [3040] = {.lex_state = 198, .external_lex_state = 2}, - [3041] = {.lex_state = 198, .external_lex_state = 2}, - [3042] = {.lex_state = 704}, - [3043] = {.lex_state = 704}, - [3044] = {.lex_state = 704}, - [3045] = {.lex_state = 704}, - [3046] = {.lex_state = 704}, - [3047] = {.lex_state = 702}, - [3048] = {.lex_state = 702}, - [3049] = {.lex_state = 198, .external_lex_state = 2}, - [3050] = {.lex_state = 198, .external_lex_state = 2}, - [3051] = {.lex_state = 198, .external_lex_state = 2}, - [3052] = {.lex_state = 198, .external_lex_state = 2}, - [3053] = {.lex_state = 180, .external_lex_state = 2}, - [3054] = {.lex_state = 198, .external_lex_state = 2}, - [3055] = {.lex_state = 198, .external_lex_state = 2}, - [3056] = {.lex_state = 198, .external_lex_state = 2}, - [3057] = {.lex_state = 263, .external_lex_state = 2}, - [3058] = {.lex_state = 263, .external_lex_state = 2}, - [3059] = {.lex_state = 263, .external_lex_state = 2}, - [3060] = {.lex_state = 180, .external_lex_state = 2}, - [3061] = {.lex_state = 198, .external_lex_state = 2}, - [3062] = {.lex_state = 198, .external_lex_state = 2}, - [3063] = {.lex_state = 263, .external_lex_state = 2}, - [3064] = {.lex_state = 219, .external_lex_state = 2}, - [3065] = {.lex_state = 198, .external_lex_state = 2}, - [3066] = {.lex_state = 198, .external_lex_state = 2}, - [3067] = {.lex_state = 198, .external_lex_state = 2}, - [3068] = {.lex_state = 198, .external_lex_state = 2}, - [3069] = {.lex_state = 198, .external_lex_state = 2}, - [3070] = {.lex_state = 198, .external_lex_state = 2}, - [3071] = {.lex_state = 36, .external_lex_state = 2}, - [3072] = {.lex_state = 198, .external_lex_state = 2}, - [3073] = {.lex_state = 198, .external_lex_state = 2}, - [3074] = {.lex_state = 198, .external_lex_state = 2}, - [3075] = {.lex_state = 198, .external_lex_state = 2}, - [3076] = {.lex_state = 219, .external_lex_state = 2}, - [3077] = {.lex_state = 193, .external_lex_state = 2}, - [3078] = {.lex_state = 198, .external_lex_state = 2}, - [3079] = {.lex_state = 198, .external_lex_state = 2}, - [3080] = {.lex_state = 219, .external_lex_state = 2}, - [3081] = {.lex_state = 198, .external_lex_state = 2}, - [3082] = {.lex_state = 219, .external_lex_state = 2}, - [3083] = {.lex_state = 193, .external_lex_state = 2}, - [3084] = {.lex_state = 193, .external_lex_state = 2}, - [3085] = {.lex_state = 219, .external_lex_state = 2}, - [3086] = {.lex_state = 198, .external_lex_state = 2}, - [3087] = {.lex_state = 198, .external_lex_state = 2}, - [3088] = {.lex_state = 198, .external_lex_state = 2}, - [3089] = {.lex_state = 198, .external_lex_state = 2}, - [3090] = {.lex_state = 198, .external_lex_state = 2}, - [3091] = {.lex_state = 198, .external_lex_state = 2}, - [3092] = {.lex_state = 198, .external_lex_state = 2}, - [3093] = {.lex_state = 198, .external_lex_state = 2}, - [3094] = {.lex_state = 198, .external_lex_state = 2}, - [3095] = {.lex_state = 198, .external_lex_state = 2}, - [3096] = {.lex_state = 198, .external_lex_state = 2}, - [3097] = {.lex_state = 219, .external_lex_state = 2}, - [3098] = {.lex_state = 198, .external_lex_state = 2}, - [3099] = {.lex_state = 198, .external_lex_state = 2}, - [3100] = {.lex_state = 198, .external_lex_state = 2}, - [3101] = {.lex_state = 45, .external_lex_state = 2}, - [3102] = {.lex_state = 45, .external_lex_state = 2}, - [3103] = {.lex_state = 45, .external_lex_state = 2}, - [3104] = {.lex_state = 45, .external_lex_state = 2}, - [3105] = {.lex_state = 45, .external_lex_state = 2}, - [3106] = {.lex_state = 704}, - [3107] = {.lex_state = 45, .external_lex_state = 2}, - [3108] = {.lex_state = 704}, - [3109] = {.lex_state = 45, .external_lex_state = 2}, - [3110] = {.lex_state = 704}, - [3111] = {.lex_state = 704}, - [3112] = {.lex_state = 45, .external_lex_state = 2}, - [3113] = {.lex_state = 45, .external_lex_state = 2}, - [3114] = {.lex_state = 45, .external_lex_state = 2}, - [3115] = {.lex_state = 45, .external_lex_state = 2}, - [3116] = {.lex_state = 45, .external_lex_state = 2}, - [3117] = {.lex_state = 45, .external_lex_state = 2}, - [3118] = {.lex_state = 45, .external_lex_state = 2}, - [3119] = {.lex_state = 45, .external_lex_state = 2}, - [3120] = {.lex_state = 45, .external_lex_state = 2}, - [3121] = {.lex_state = 45, .external_lex_state = 2}, - [3122] = {.lex_state = 45, .external_lex_state = 2}, - [3123] = {.lex_state = 45, .external_lex_state = 2}, - [3124] = {.lex_state = 45, .external_lex_state = 2}, - [3125] = {.lex_state = 45, .external_lex_state = 2}, - [3126] = {.lex_state = 45, .external_lex_state = 2}, - [3127] = {.lex_state = 45, .external_lex_state = 2}, - [3128] = {.lex_state = 45, .external_lex_state = 2}, - [3129] = {.lex_state = 45, .external_lex_state = 2}, - [3130] = {.lex_state = 45, .external_lex_state = 2}, - [3131] = {.lex_state = 45, .external_lex_state = 2}, - [3132] = {.lex_state = 45, .external_lex_state = 2}, - [3133] = {.lex_state = 45, .external_lex_state = 2}, - [3134] = {.lex_state = 45, .external_lex_state = 2}, - [3135] = {.lex_state = 45, .external_lex_state = 2}, - [3136] = {.lex_state = 45, .external_lex_state = 2}, - [3137] = {.lex_state = 45, .external_lex_state = 2}, - [3138] = {.lex_state = 45, .external_lex_state = 2}, - [3139] = {.lex_state = 45, .external_lex_state = 2}, - [3140] = {.lex_state = 45, .external_lex_state = 2}, - [3141] = {.lex_state = 45, .external_lex_state = 2}, - [3142] = {.lex_state = 45, .external_lex_state = 2}, - [3143] = {.lex_state = 45, .external_lex_state = 2}, - [3144] = {.lex_state = 45, .external_lex_state = 2}, - [3145] = {.lex_state = 45, .external_lex_state = 2}, - [3146] = {.lex_state = 45, .external_lex_state = 2}, - [3147] = {.lex_state = 45, .external_lex_state = 2}, - [3148] = {.lex_state = 45, .external_lex_state = 2}, - [3149] = {.lex_state = 45, .external_lex_state = 2}, - [3150] = {.lex_state = 45, .external_lex_state = 2}, - [3151] = {.lex_state = 45, .external_lex_state = 2}, - [3152] = {.lex_state = 45, .external_lex_state = 2}, - [3153] = {.lex_state = 45, .external_lex_state = 2}, - [3154] = {.lex_state = 36, .external_lex_state = 2}, - [3155] = {.lex_state = 45, .external_lex_state = 2}, - [3156] = {.lex_state = 45, .external_lex_state = 2}, - [3157] = {.lex_state = 45, .external_lex_state = 2}, - [3158] = {.lex_state = 45, .external_lex_state = 2}, - [3159] = {.lex_state = 45, .external_lex_state = 2}, - [3160] = {.lex_state = 45, .external_lex_state = 2}, - [3161] = {.lex_state = 45, .external_lex_state = 2}, - [3162] = {.lex_state = 45, .external_lex_state = 2}, - [3163] = {.lex_state = 45, .external_lex_state = 2}, - [3164] = {.lex_state = 45, .external_lex_state = 2}, - [3165] = {.lex_state = 45, .external_lex_state = 2}, - [3166] = {.lex_state = 45, .external_lex_state = 2}, - [3167] = {.lex_state = 45, .external_lex_state = 2}, - [3168] = {.lex_state = 45, .external_lex_state = 2}, - [3169] = {.lex_state = 697}, - [3170] = {.lex_state = 45, .external_lex_state = 2}, - [3171] = {.lex_state = 71}, - [3172] = {.lex_state = 71}, - [3173] = {.lex_state = 71}, - [3174] = {.lex_state = 71}, - [3175] = {.lex_state = 71}, - [3176] = {.lex_state = 71}, - [3177] = {.lex_state = 71}, - [3178] = {.lex_state = 71}, - [3179] = {.lex_state = 711}, - [3180] = {.lex_state = 71}, - [3181] = {.lex_state = 697}, - [3182] = {.lex_state = 71}, - [3183] = {.lex_state = 71}, - [3184] = {.lex_state = 71}, - [3185] = {.lex_state = 71}, - [3186] = {.lex_state = 71}, - [3187] = {.lex_state = 71}, - [3188] = {.lex_state = 71}, - [3189] = {.lex_state = 711}, - [3190] = {.lex_state = 708}, - [3191] = {.lex_state = 708}, - [3192] = {.lex_state = 71}, - [3193] = {.lex_state = 708}, - [3194] = {.lex_state = 709}, - [3195] = {.lex_state = 708}, - [3196] = {.lex_state = 781}, - [3197] = {.lex_state = 708}, - [3198] = {.lex_state = 709}, - [3199] = {.lex_state = 708}, - [3200] = {.lex_state = 775}, - [3201] = {.lex_state = 708}, - [3202] = {.lex_state = 708}, - [3203] = {.lex_state = 24}, - [3204] = {.lex_state = 708}, - [3205] = {.lex_state = 706}, - [3206] = {.lex_state = 24}, - [3207] = {.lex_state = 71}, - [3208] = {.lex_state = 708}, - [3209] = {.lex_state = 71}, - [3210] = {.lex_state = 71}, - [3211] = {.lex_state = 697}, - [3212] = {.lex_state = 697}, - [3213] = {.lex_state = 697}, - [3214] = {.lex_state = 697}, - [3215] = {.lex_state = 697}, - [3216] = {.lex_state = 697}, - [3217] = {.lex_state = 697}, - [3218] = {.lex_state = 697}, - [3219] = {.lex_state = 697}, - [3220] = {.lex_state = 697}, - [3221] = {.lex_state = 697}, - [3222] = {.lex_state = 697}, - [3223] = {.lex_state = 697}, - [3224] = {.lex_state = 697}, - [3225] = {.lex_state = 697}, - [3226] = {.lex_state = 697}, - [3227] = {.lex_state = 697}, - [3228] = {.lex_state = 697}, - [3229] = {.lex_state = 697}, - [3230] = {.lex_state = 697}, - [3231] = {.lex_state = 697}, - [3232] = {.lex_state = 697}, - [3233] = {.lex_state = 697}, - [3234] = {.lex_state = 697}, - [3235] = {.lex_state = 697}, - [3236] = {.lex_state = 697}, - [3237] = {.lex_state = 697}, - [3238] = {.lex_state = 697}, - [3239] = {.lex_state = 697}, - [3240] = {.lex_state = 697}, - [3241] = {.lex_state = 697}, - [3242] = {.lex_state = 697}, - [3243] = {.lex_state = 697}, - [3244] = {.lex_state = 697}, - [3245] = {.lex_state = 697}, - [3246] = {.lex_state = 697}, - [3247] = {.lex_state = 697}, - [3248] = {.lex_state = 697}, - [3249] = {.lex_state = 697}, - [3250] = {.lex_state = 697}, - [3251] = {.lex_state = 697}, - [3252] = {.lex_state = 697}, - [3253] = {.lex_state = 697}, - [3254] = {.lex_state = 697}, - [3255] = {.lex_state = 697}, - [3256] = {.lex_state = 697}, - [3257] = {.lex_state = 697}, - [3258] = {.lex_state = 697}, - [3259] = {.lex_state = 697}, - [3260] = {.lex_state = 697}, - [3261] = {.lex_state = 697}, - [3262] = {.lex_state = 697}, - [3263] = {.lex_state = 697}, - [3264] = {.lex_state = 697}, - [3265] = {.lex_state = 697}, - [3266] = {.lex_state = 697}, - [3267] = {.lex_state = 697}, - [3268] = {.lex_state = 697}, - [3269] = {.lex_state = 697}, - [3270] = {.lex_state = 697}, - [3271] = {.lex_state = 697}, - [3272] = {.lex_state = 697}, - [3273] = {.lex_state = 697}, - [3274] = {.lex_state = 697}, - [3275] = {.lex_state = 697}, - [3276] = {.lex_state = 697}, - [3277] = {.lex_state = 697}, - [3278] = {.lex_state = 697}, - [3279] = {.lex_state = 697}, - [3280] = {.lex_state = 697}, - [3281] = {.lex_state = 697}, - [3282] = {.lex_state = 697}, - [3283] = {.lex_state = 71}, - [3284] = {.lex_state = 697}, - [3285] = {.lex_state = 697}, - [3286] = {.lex_state = 697}, - [3287] = {.lex_state = 697}, - [3288] = {.lex_state = 697}, - [3289] = {.lex_state = 697}, - [3290] = {.lex_state = 697}, - [3291] = {.lex_state = 697}, - [3292] = {.lex_state = 697}, - [3293] = {.lex_state = 697}, - [3294] = {.lex_state = 697}, - [3295] = {.lex_state = 775}, - [3296] = {.lex_state = 697}, - [3297] = {.lex_state = 697}, - [3298] = {.lex_state = 697}, - [3299] = {.lex_state = 697}, - [3300] = {.lex_state = 697}, - [3301] = {.lex_state = 697}, - [3302] = {.lex_state = 697}, - [3303] = {.lex_state = 697}, - [3304] = {.lex_state = 697}, - [3305] = {.lex_state = 697}, - [3306] = {.lex_state = 697}, - [3307] = {.lex_state = 697}, - [3308] = {.lex_state = 775}, - [3309] = {.lex_state = 71}, - [3310] = {.lex_state = 24}, - [3311] = {.lex_state = 697}, - [3312] = {.lex_state = 697}, - [3313] = {.lex_state = 697}, - [3314] = {.lex_state = 697}, - [3315] = {.lex_state = 706}, - [3316] = {.lex_state = 697}, - [3317] = {.lex_state = 697}, - [3318] = {.lex_state = 697}, - [3319] = {.lex_state = 71}, - [3320] = {.lex_state = 697}, - [3321] = {.lex_state = 697}, - [3322] = {.lex_state = 697}, - [3323] = {.lex_state = 697}, - [3324] = {.lex_state = 71}, - [3325] = {.lex_state = 71}, - [3326] = {.lex_state = 71}, - [3327] = {.lex_state = 697}, - [3328] = {.lex_state = 71}, - [3329] = {.lex_state = 71}, - [3330] = {.lex_state = 775}, - [3331] = {.lex_state = 775}, - [3332] = {.lex_state = 775}, - [3333] = {.lex_state = 24}, - [3334] = {.lex_state = 697}, - [3335] = {.lex_state = 71}, - [3336] = {.lex_state = 697}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 71}, - [3339] = {.lex_state = 24}, - [3340] = {.lex_state = 697}, - [3341] = {.lex_state = 697}, - [3342] = {.lex_state = 697}, - [3343] = {.lex_state = 24}, - [3344] = {.lex_state = 697}, - [3345] = {.lex_state = 775}, - [3346] = {.lex_state = 697}, - [3347] = {.lex_state = 71}, - [3348] = {.lex_state = 71}, - [3349] = {.lex_state = 71}, - [3350] = {.lex_state = 24}, - [3351] = {.lex_state = 24}, - [3352] = {.lex_state = 775}, - [3353] = {.lex_state = 775}, - [3354] = {.lex_state = 241, .external_lex_state = 2}, - [3355] = {.lex_state = 775}, - [3356] = {.lex_state = 697}, - [3357] = {.lex_state = 71}, - [3358] = {.lex_state = 71}, - [3359] = {.lex_state = 24}, - [3360] = {.lex_state = 697}, - [3361] = {.lex_state = 697}, - [3362] = {.lex_state = 71}, - [3363] = {.lex_state = 697}, - [3364] = {.lex_state = 697}, - [3365] = {.lex_state = 697}, - [3366] = {.lex_state = 710}, - [3367] = {.lex_state = 697}, - [3368] = {.lex_state = 71}, - [3369] = {.lex_state = 24}, - [3370] = {.lex_state = 71}, - [3371] = {.lex_state = 71}, - [3372] = {.lex_state = 24}, - [3373] = {.lex_state = 697}, - [3374] = {.lex_state = 697}, - [3375] = {.lex_state = 24}, - [3376] = {.lex_state = 24}, - [3377] = {.lex_state = 245, .external_lex_state = 2}, - [3378] = {.lex_state = 697}, - [3379] = {.lex_state = 24}, - [3380] = {.lex_state = 717}, - [3381] = {.lex_state = 18}, - [3382] = {.lex_state = 19}, - [3383] = {.lex_state = 775}, - [3384] = {.lex_state = 709}, - [3385] = {.lex_state = 242, .external_lex_state = 2}, - [3386] = {.lex_state = 242, .external_lex_state = 2}, - [3387] = {.lex_state = 237}, - [3388] = {.lex_state = 237}, - [3389] = {.lex_state = 709}, - [3390] = {.lex_state = 709}, - [3391] = {.lex_state = 91}, - [3392] = {.lex_state = 710}, - [3393] = {.lex_state = 710}, - [3394] = {.lex_state = 92}, - [3395] = {.lex_state = 243, .external_lex_state = 2}, - [3396] = {.lex_state = 389}, - [3397] = {.lex_state = 88}, - [3398] = {.lex_state = 71}, - [3399] = {.lex_state = 71}, - [3400] = {.lex_state = 71}, - [3401] = {.lex_state = 20}, - [3402] = {.lex_state = 775}, - [3403] = {.lex_state = 94}, - [3404] = {.lex_state = 238}, - [3405] = {.lex_state = 710}, - [3406] = {.lex_state = 243, .external_lex_state = 2}, - [3407] = {.lex_state = 243, .external_lex_state = 2}, - [3408] = {.lex_state = 243, .external_lex_state = 2}, - [3409] = {.lex_state = 21}, - [3410] = {.lex_state = 243, .external_lex_state = 2}, - [3411] = {.lex_state = 775}, - [3412] = {.lex_state = 20}, - [3413] = {.lex_state = 93}, - [3414] = {.lex_state = 71}, - [3415] = {.lex_state = 775}, - [3416] = {.lex_state = 709}, - [3417] = {.lex_state = 709}, - [3418] = {.lex_state = 87}, - [3419] = {.lex_state = 238}, - [3420] = {.lex_state = 93}, - [3421] = {.lex_state = 24}, - [3422] = {.lex_state = 389}, - [3423] = {.lex_state = 94}, - [3424] = {.lex_state = 21}, - [3425] = {.lex_state = 24}, - [3426] = {.lex_state = 24}, - [3427] = {.lex_state = 24}, - [3428] = {.lex_state = 21}, - [3429] = {.lex_state = 24}, - [3430] = {.lex_state = 389}, - [3431] = {.lex_state = 710}, - [3432] = {.lex_state = 389}, - [3433] = {.lex_state = 94}, - [3434] = {.lex_state = 775}, - [3435] = {.lex_state = 389}, - [3436] = {.lex_state = 89}, - [3437] = {.lex_state = 89}, - [3438] = {.lex_state = 24}, - [3439] = {.lex_state = 24}, - [3440] = {.lex_state = 775}, - [3441] = {.lex_state = 94}, - [3442] = {.lex_state = 21}, - [3443] = {.lex_state = 24}, - [3444] = {.lex_state = 24}, - [3445] = {.lex_state = 24}, - [3446] = {.lex_state = 24}, - [3447] = {.lex_state = 21}, - [3448] = {.lex_state = 24}, - [3449] = {.lex_state = 24}, - [3450] = {.lex_state = 24}, - [3451] = {.lex_state = 24}, - [3452] = {.lex_state = 94}, - [3453] = {.lex_state = 24}, - [3454] = {.lex_state = 389}, - [3455] = {.lex_state = 24}, - [3456] = {.lex_state = 711}, - [3457] = {.lex_state = 24}, - [3458] = {.lex_state = 710}, - [3459] = {.lex_state = 90}, - [3460] = {.lex_state = 14, .external_lex_state = 2}, - [3461] = {.lex_state = 71}, - [3462] = {.lex_state = 14, .external_lex_state = 2}, - [3463] = {.lex_state = 90}, - [3464] = {.lex_state = 14, .external_lex_state = 2}, - [3465] = {.lex_state = 14, .external_lex_state = 2}, - [3466] = {.lex_state = 14, .external_lex_state = 2}, - [3467] = {.lex_state = 14, .external_lex_state = 2}, - [3468] = {.lex_state = 14, .external_lex_state = 2}, - [3469] = {.lex_state = 710}, - [3470] = {.lex_state = 14, .external_lex_state = 2}, - [3471] = {.lex_state = 14, .external_lex_state = 2}, - [3472] = {.lex_state = 14, .external_lex_state = 2}, - [3473] = {.lex_state = 14, .external_lex_state = 2}, - [3474] = {.lex_state = 14, .external_lex_state = 2}, - [3475] = {.lex_state = 24}, - [3476] = {.lex_state = 24}, - [3477] = {.lex_state = 24}, - [3478] = {.lex_state = 14, .external_lex_state = 2}, - [3479] = {.lex_state = 14, .external_lex_state = 2}, - [3480] = {.lex_state = 14, .external_lex_state = 2}, - [3481] = {.lex_state = 14, .external_lex_state = 2}, - [3482] = {.lex_state = 90}, - [3483] = {.lex_state = 710}, - [3484] = {.lex_state = 24}, - [3485] = {.lex_state = 90}, - [3486] = {.lex_state = 14, .external_lex_state = 2}, - [3487] = {.lex_state = 14, .external_lex_state = 2}, - [3488] = {.lex_state = 14, .external_lex_state = 2}, - [3489] = {.lex_state = 24}, - [3490] = {.lex_state = 14, .external_lex_state = 2}, - [3491] = {.lex_state = 14, .external_lex_state = 2}, - [3492] = {.lex_state = 711}, - [3493] = {.lex_state = 14, .external_lex_state = 2}, - [3494] = {.lex_state = 90}, - [3495] = {.lex_state = 14, .external_lex_state = 2}, - [3496] = {.lex_state = 389}, - [3497] = {.lex_state = 24}, - [3498] = {.lex_state = 24}, - [3499] = {.lex_state = 24}, - [3500] = {.lex_state = 24}, - [3501] = {.lex_state = 24}, - [3502] = {.lex_state = 99}, - [3503] = {.lex_state = 24}, - [3504] = {.lex_state = 24}, - [3505] = {.lex_state = 24}, - [3506] = {.lex_state = 24}, - [3507] = {.lex_state = 24}, - [3508] = {.lex_state = 710}, - [3509] = {.lex_state = 24}, - [3510] = {.lex_state = 24}, - [3511] = {.lex_state = 99}, - [3512] = {.lex_state = 24}, - [3513] = {.lex_state = 24}, - [3514] = {.lex_state = 24}, - [3515] = {.lex_state = 24}, - [3516] = {.lex_state = 24}, - [3517] = {.lex_state = 24}, - [3518] = {.lex_state = 24}, - [3519] = {.lex_state = 24}, - [3520] = {.lex_state = 24}, - [3521] = {.lex_state = 24}, - [3522] = {.lex_state = 710}, - [3523] = {.lex_state = 24}, - [3524] = {.lex_state = 710}, - [3525] = {.lex_state = 710}, - [3526] = {.lex_state = 24}, - [3527] = {.lex_state = 24}, - [3528] = {.lex_state = 710}, - [3529] = {.lex_state = 24}, - [3530] = {.lex_state = 24}, - [3531] = {.lex_state = 24}, - [3532] = {.lex_state = 24}, - [3533] = {.lex_state = 24}, - [3534] = {.lex_state = 24}, - [3535] = {.lex_state = 24}, - [3536] = {.lex_state = 24}, - [3537] = {.lex_state = 14, .external_lex_state = 2}, - [3538] = {.lex_state = 24}, - [3539] = {.lex_state = 24}, - [3540] = {.lex_state = 24}, - [3541] = {.lex_state = 226, .external_lex_state = 2}, - [3542] = {.lex_state = 24}, - [3543] = {.lex_state = 710}, - [3544] = {.lex_state = 24}, - [3545] = {.lex_state = 24}, - [3546] = {.lex_state = 71}, - [3547] = {.lex_state = 14, .external_lex_state = 2}, - [3548] = {.lex_state = 697}, - [3549] = {.lex_state = 24}, - [3550] = {.lex_state = 24}, - [3551] = {.lex_state = 717}, - [3552] = {.lex_state = 717}, - [3553] = {.lex_state = 710}, - [3554] = {.lex_state = 710}, - [3555] = {.lex_state = 710}, - [3556] = {.lex_state = 717}, - [3557] = {.lex_state = 710}, - [3558] = {.lex_state = 697}, - [3559] = {.lex_state = 99}, - [3560] = {.lex_state = 99}, - [3561] = {.lex_state = 710}, - [3562] = {.lex_state = 99}, - [3563] = {.lex_state = 717}, - [3564] = {.lex_state = 99}, - [3565] = {.lex_state = 717}, - [3566] = {.lex_state = 717}, - [3567] = {.lex_state = 717}, - [3568] = {.lex_state = 99}, - [3569] = {.lex_state = 717}, - [3570] = {.lex_state = 99}, - [3571] = {.lex_state = 710}, - [3572] = {.lex_state = 710}, - [3573] = {.lex_state = 14, .external_lex_state = 2}, - [3574] = {.lex_state = 14, .external_lex_state = 2}, - [3575] = {.lex_state = 1834}, - [3576] = {.lex_state = 24}, - [3577] = {.lex_state = 717}, - [3578] = {.lex_state = 717}, - [3579] = {.lex_state = 717}, - [3580] = {.lex_state = 14, .external_lex_state = 2}, - [3581] = {.lex_state = 24}, - [3582] = {.lex_state = 24}, - [3583] = {.lex_state = 717}, - [3584] = {.lex_state = 717}, - [3585] = {.lex_state = 717}, - [3586] = {.lex_state = 717}, - [3587] = {.lex_state = 717}, - [3588] = {.lex_state = 235, .external_lex_state = 2}, - [3589] = {.lex_state = 717}, - [3590] = {.lex_state = 710}, - [3591] = {.lex_state = 710}, - [3592] = {.lex_state = 710}, - [3593] = {.lex_state = 717}, - [3594] = {.lex_state = 14, .external_lex_state = 2}, - [3595] = {.lex_state = 14, .external_lex_state = 2}, - [3596] = {.lex_state = 717}, - [3597] = {.lex_state = 717}, - [3598] = {.lex_state = 717}, - [3599] = {.lex_state = 709}, - [3600] = {.lex_state = 717}, - [3601] = {.lex_state = 717}, - [3602] = {.lex_state = 1832}, - [3603] = {.lex_state = 717}, - [3604] = {.lex_state = 717}, - [3605] = {.lex_state = 14, .external_lex_state = 2}, - [3606] = {.lex_state = 14, .external_lex_state = 2}, - [3607] = {.lex_state = 99}, - [3608] = {.lex_state = 1835}, - [3609] = {.lex_state = 711}, - [3610] = {.lex_state = 24}, - [3611] = {.lex_state = 260, .external_lex_state = 2}, - [3612] = {.lex_state = 1837}, - [3613] = {.lex_state = 14, .external_lex_state = 2}, - [3614] = {.lex_state = 24}, - [3615] = {.lex_state = 24}, - [3616] = {.lex_state = 24}, - [3617] = {.lex_state = 244, .external_lex_state = 2}, - [3618] = {.lex_state = 99}, - [3619] = {.lex_state = 99}, - [3620] = {.lex_state = 24}, - [3621] = {.lex_state = 14, .external_lex_state = 2}, - [3622] = {.lex_state = 24}, - [3623] = {.lex_state = 1833}, - [3624] = {.lex_state = 24}, - [3625] = {.lex_state = 24}, - [3626] = {.lex_state = 24}, - [3627] = {.lex_state = 14, .external_lex_state = 2}, - [3628] = {.lex_state = 24}, - [3629] = {.lex_state = 24}, - [3630] = {.lex_state = 260, .external_lex_state = 2}, - [3631] = {.lex_state = 697}, - [3632] = {.lex_state = 14, .external_lex_state = 2}, - [3633] = {.lex_state = 260, .external_lex_state = 2}, - [3634] = {.lex_state = 697}, - [3635] = {.lex_state = 1835}, - [3636] = {.lex_state = 233, .external_lex_state = 2}, - [3637] = {.lex_state = 260, .external_lex_state = 2}, - [3638] = {.lex_state = 260, .external_lex_state = 2}, - [3639] = {.lex_state = 43, .external_lex_state = 2}, - [3640] = {.lex_state = 43, .external_lex_state = 2}, - [3641] = {.lex_state = 43, .external_lex_state = 2}, - [3642] = {.lex_state = 43, .external_lex_state = 2}, - [3643] = {.lex_state = 43, .external_lex_state = 2}, - [3644] = {.lex_state = 1836}, - [3645] = {.lex_state = 43, .external_lex_state = 2}, - [3646] = {.lex_state = 1838}, - [3647] = {.lex_state = 1836}, - [3648] = {.lex_state = 43, .external_lex_state = 2}, - [3649] = {.lex_state = 43, .external_lex_state = 2}, - [3650] = {.lex_state = 43, .external_lex_state = 2}, - [3651] = {.lex_state = 98}, - [3652] = {.lex_state = 43, .external_lex_state = 2}, - [3653] = {.lex_state = 43, .external_lex_state = 2}, - [3654] = {.lex_state = 43, .external_lex_state = 2}, - [3655] = {.lex_state = 43, .external_lex_state = 2}, - [3656] = {.lex_state = 43, .external_lex_state = 2}, - [3657] = {.lex_state = 697}, - [3658] = {.lex_state = 43, .external_lex_state = 2}, - [3659] = {.lex_state = 43, .external_lex_state = 2}, - [3660] = {.lex_state = 43, .external_lex_state = 2}, - [3661] = {.lex_state = 43, .external_lex_state = 2}, - [3662] = {.lex_state = 43, .external_lex_state = 2}, - [3663] = {.lex_state = 43, .external_lex_state = 2}, - [3664] = {.lex_state = 43, .external_lex_state = 2}, - [3665] = {.lex_state = 23}, - [3666] = {.lex_state = 43, .external_lex_state = 2}, - [3667] = {.lex_state = 23}, - [3668] = {.lex_state = 98}, - [3669] = {.lex_state = 710}, - [3670] = {.lex_state = 24}, - [3671] = {.lex_state = 98}, - [3672] = {.lex_state = 98}, - [3673] = {.lex_state = 24}, - [3674] = {.lex_state = 43, .external_lex_state = 2}, - [3675] = {.lex_state = 24}, - [3676] = {.lex_state = 24}, - [3677] = {.lex_state = 43, .external_lex_state = 2}, - [3678] = {.lex_state = 24}, - [3679] = {.lex_state = 24}, - [3680] = {.lex_state = 43, .external_lex_state = 2}, - [3681] = {.lex_state = 24}, - [3682] = {.lex_state = 43, .external_lex_state = 2}, - [3683] = {.lex_state = 24}, - [3684] = {.lex_state = 24}, - [3685] = {.lex_state = 24}, - [3686] = {.lex_state = 98}, - [3687] = {.lex_state = 43, .external_lex_state = 2}, - [3688] = {.lex_state = 24}, - [3689] = {.lex_state = 24}, - [3690] = {.lex_state = 43, .external_lex_state = 2}, - [3691] = {.lex_state = 43, .external_lex_state = 2}, - [3692] = {.lex_state = 43, .external_lex_state = 2}, + [2810] = {.lex_state = 192, .external_lex_state = 2}, + [2811] = {.lex_state = 192, .external_lex_state = 2}, + [2812] = {.lex_state = 192, .external_lex_state = 2}, + [2813] = {.lex_state = 215, .external_lex_state = 2}, + [2814] = {.lex_state = 228, .external_lex_state = 2}, + [2815] = {.lex_state = 245, .external_lex_state = 2}, + [2816] = {.lex_state = 215, .external_lex_state = 2}, + [2817] = {.lex_state = 200, .external_lex_state = 2}, + [2818] = {.lex_state = 41, .external_lex_state = 2}, + [2819] = {.lex_state = 200, .external_lex_state = 2}, + [2820] = {.lex_state = 200, .external_lex_state = 2}, + [2821] = {.lex_state = 200, .external_lex_state = 2}, + [2822] = {.lex_state = 245, .external_lex_state = 2}, + [2823] = {.lex_state = 200, .external_lex_state = 2}, + [2824] = {.lex_state = 200, .external_lex_state = 2}, + [2825] = {.lex_state = 248, .external_lex_state = 2}, + [2826] = {.lex_state = 42, .external_lex_state = 2}, + [2827] = {.lex_state = 200, .external_lex_state = 2}, + [2828] = {.lex_state = 246, .external_lex_state = 2}, + [2829] = {.lex_state = 246, .external_lex_state = 2}, + [2830] = {.lex_state = 215, .external_lex_state = 2}, + [2831] = {.lex_state = 191, .external_lex_state = 2}, + [2832] = {.lex_state = 215, .external_lex_state = 2}, + [2833] = {.lex_state = 215, .external_lex_state = 2}, + [2834] = {.lex_state = 191, .external_lex_state = 2}, + [2835] = {.lex_state = 191, .external_lex_state = 2}, + [2836] = {.lex_state = 215, .external_lex_state = 2}, + [2837] = {.lex_state = 246, .external_lex_state = 2}, + [2838] = {.lex_state = 192, .external_lex_state = 2}, + [2839] = {.lex_state = 246, .external_lex_state = 2}, + [2840] = {.lex_state = 246, .external_lex_state = 2}, + [2841] = {.lex_state = 246, .external_lex_state = 2}, + [2842] = {.lex_state = 138, .external_lex_state = 2}, + [2843] = {.lex_state = 138, .external_lex_state = 2}, + [2844] = {.lex_state = 186, .external_lex_state = 2}, + [2845] = {.lex_state = 208, .external_lex_state = 2}, + [2846] = {.lex_state = 208, .external_lex_state = 2}, + [2847] = {.lex_state = 186, .external_lex_state = 2}, + [2848] = {.lex_state = 200, .external_lex_state = 2}, + [2849] = {.lex_state = 200, .external_lex_state = 2}, + [2850] = {.lex_state = 200, .external_lex_state = 2}, + [2851] = {.lex_state = 200, .external_lex_state = 2}, + [2852] = {.lex_state = 245, .external_lex_state = 2}, + [2853] = {.lex_state = 245, .external_lex_state = 2}, + [2854] = {.lex_state = 192, .external_lex_state = 2}, + [2855] = {.lex_state = 245, .external_lex_state = 2}, + [2856] = {.lex_state = 245, .external_lex_state = 2}, + [2857] = {.lex_state = 245, .external_lex_state = 2}, + [2858] = {.lex_state = 245, .external_lex_state = 2}, + [2859] = {.lex_state = 200, .external_lex_state = 2}, + [2860] = {.lex_state = 200, .external_lex_state = 2}, + [2861] = {.lex_state = 200, .external_lex_state = 2}, + [2862] = {.lex_state = 192, .external_lex_state = 2}, + [2863] = {.lex_state = 192, .external_lex_state = 2}, + [2864] = {.lex_state = 245, .external_lex_state = 2}, + [2865] = {.lex_state = 200, .external_lex_state = 2}, + [2866] = {.lex_state = 43, .external_lex_state = 2}, + [2867] = {.lex_state = 192, .external_lex_state = 2}, + [2868] = {.lex_state = 192, .external_lex_state = 2}, + [2869] = {.lex_state = 139, .external_lex_state = 2}, + [2870] = {.lex_state = 247, .external_lex_state = 2}, + [2871] = {.lex_state = 139, .external_lex_state = 2}, + [2872] = {.lex_state = 139, .external_lex_state = 2}, + [2873] = {.lex_state = 187, .external_lex_state = 2}, + [2874] = {.lex_state = 245, .external_lex_state = 2}, + [2875] = {.lex_state = 42, .external_lex_state = 2}, + [2876] = {.lex_state = 187, .external_lex_state = 2}, + [2877] = {.lex_state = 206, .external_lex_state = 2}, + [2878] = {.lex_state = 206, .external_lex_state = 2}, + [2879] = {.lex_state = 41, .external_lex_state = 2}, + [2880] = {.lex_state = 187, .external_lex_state = 2}, + [2881] = {.lex_state = 187, .external_lex_state = 2}, + [2882] = {.lex_state = 187, .external_lex_state = 2}, + [2883] = {.lex_state = 260, .external_lex_state = 2}, + [2884] = {.lex_state = 260, .external_lex_state = 2}, + [2885] = {.lex_state = 206, .external_lex_state = 2}, + [2886] = {.lex_state = 187, .external_lex_state = 2}, + [2887] = {.lex_state = 206, .external_lex_state = 2}, + [2888] = {.lex_state = 206, .external_lex_state = 2}, + [2889] = {.lex_state = 187, .external_lex_state = 2}, + [2890] = {.lex_state = 206, .external_lex_state = 2}, + [2891] = {.lex_state = 46, .external_lex_state = 2}, + [2892] = {.lex_state = 192, .external_lex_state = 2}, + [2893] = {.lex_state = 198, .external_lex_state = 2}, + [2894] = {.lex_state = 216, .external_lex_state = 2}, + [2895] = {.lex_state = 245, .external_lex_state = 2}, + [2896] = {.lex_state = 247, .external_lex_state = 2}, + [2897] = {.lex_state = 207, .external_lex_state = 2}, + [2898] = {.lex_state = 2252}, + [2899] = {.lex_state = 2254}, + [2900] = {.lex_state = 260, .external_lex_state = 2}, + [2901] = {.lex_state = 261, .external_lex_state = 2}, + [2902] = {.lex_state = 261, .external_lex_state = 2}, + [2903] = {.lex_state = 187, .external_lex_state = 2}, + [2904] = {.lex_state = 247, .external_lex_state = 2}, + [2905] = {.lex_state = 187, .external_lex_state = 2}, + [2906] = {.lex_state = 187, .external_lex_state = 2}, + [2907] = {.lex_state = 187, .external_lex_state = 2}, + [2908] = {.lex_state = 187, .external_lex_state = 2}, + [2909] = {.lex_state = 187, .external_lex_state = 2}, + [2910] = {.lex_state = 187, .external_lex_state = 2}, + [2911] = {.lex_state = 228, .external_lex_state = 2}, + [2912] = {.lex_state = 139, .external_lex_state = 2}, + [2913] = {.lex_state = 102, .external_lex_state = 2}, + [2914] = {.lex_state = 187, .external_lex_state = 2}, + [2915] = {.lex_state = 261, .external_lex_state = 2}, + [2916] = {.lex_state = 139, .external_lex_state = 2}, + [2917] = {.lex_state = 139, .external_lex_state = 2}, + [2918] = {.lex_state = 261, .external_lex_state = 2}, + [2919] = {.lex_state = 139, .external_lex_state = 2}, + [2920] = {.lex_state = 139, .external_lex_state = 2}, + [2921] = {.lex_state = 228, .external_lex_state = 2}, + [2922] = {.lex_state = 260, .external_lex_state = 2}, + [2923] = {.lex_state = 260, .external_lex_state = 2}, + [2924] = {.lex_state = 46, .external_lex_state = 2}, + [2925] = {.lex_state = 221, .external_lex_state = 2}, + [2926] = {.lex_state = 139, .external_lex_state = 2}, + [2927] = {.lex_state = 261, .external_lex_state = 2}, + [2928] = {.lex_state = 228, .external_lex_state = 2}, + [2929] = {.lex_state = 196, .external_lex_state = 2}, + [2930] = {.lex_state = 2258}, + [2931] = {.lex_state = 179, .external_lex_state = 2}, + [2932] = {.lex_state = 217, .external_lex_state = 2}, + [2933] = {.lex_state = 193, .external_lex_state = 2}, + [2934] = {.lex_state = 193, .external_lex_state = 2}, + [2935] = {.lex_state = 217, .external_lex_state = 2}, + [2936] = {.lex_state = 228, .external_lex_state = 2}, + [2937] = {.lex_state = 179, .external_lex_state = 2}, + [2938] = {.lex_state = 228, .external_lex_state = 2}, + [2939] = {.lex_state = 193, .external_lex_state = 2}, + [2940] = {.lex_state = 179, .external_lex_state = 2}, + [2941] = {.lex_state = 193, .external_lex_state = 2}, + [2942] = {.lex_state = 193, .external_lex_state = 2}, + [2943] = {.lex_state = 193, .external_lex_state = 2}, + [2944] = {.lex_state = 208, .external_lex_state = 2}, + [2945] = {.lex_state = 208, .external_lex_state = 2}, + [2946] = {.lex_state = 208, .external_lex_state = 2}, + [2947] = {.lex_state = 228, .external_lex_state = 2}, + [2948] = {.lex_state = 228, .external_lex_state = 2}, + [2949] = {.lex_state = 185, .external_lex_state = 2}, + [2950] = {.lex_state = 228, .external_lex_state = 2}, + [2951] = {.lex_state = 228, .external_lex_state = 2}, + [2952] = {.lex_state = 179, .external_lex_state = 2}, + [2953] = {.lex_state = 228, .external_lex_state = 2}, + [2954] = {.lex_state = 179, .external_lex_state = 2}, + [2955] = {.lex_state = 228, .external_lex_state = 2}, + [2956] = {.lex_state = 195, .external_lex_state = 2}, + [2957] = {.lex_state = 195, .external_lex_state = 2}, + [2958] = {.lex_state = 228, .external_lex_state = 2}, + [2959] = {.lex_state = 228, .external_lex_state = 2}, + [2960] = {.lex_state = 228, .external_lex_state = 2}, + [2961] = {.lex_state = 228, .external_lex_state = 2}, + [2962] = {.lex_state = 228, .external_lex_state = 2}, + [2963] = {.lex_state = 228, .external_lex_state = 2}, + [2964] = {.lex_state = 228, .external_lex_state = 2}, + [2965] = {.lex_state = 228, .external_lex_state = 2}, + [2966] = {.lex_state = 228, .external_lex_state = 2}, + [2967] = {.lex_state = 194, .external_lex_state = 2}, + [2968] = {.lex_state = 228, .external_lex_state = 2}, + [2969] = {.lex_state = 228, .external_lex_state = 2}, + [2970] = {.lex_state = 44, .external_lex_state = 2}, + [2971] = {.lex_state = 228, .external_lex_state = 2}, + [2972] = {.lex_state = 228, .external_lex_state = 2}, + [2973] = {.lex_state = 228, .external_lex_state = 2}, + [2974] = {.lex_state = 228, .external_lex_state = 2}, + [2975] = {.lex_state = 228, .external_lex_state = 2}, + [2976] = {.lex_state = 228, .external_lex_state = 2}, + [2977] = {.lex_state = 228, .external_lex_state = 2}, + [2978] = {.lex_state = 228, .external_lex_state = 2}, + [2979] = {.lex_state = 228, .external_lex_state = 2}, + [2980] = {.lex_state = 228, .external_lex_state = 2}, + [2981] = {.lex_state = 228, .external_lex_state = 2}, + [2982] = {.lex_state = 2256}, + [2983] = {.lex_state = 228, .external_lex_state = 2}, + [2984] = {.lex_state = 2256}, + [2985] = {.lex_state = 2252}, + [2986] = {.lex_state = 228, .external_lex_state = 2}, + [2987] = {.lex_state = 2254}, + [2988] = {.lex_state = 228, .external_lex_state = 2}, + [2989] = {.lex_state = 228, .external_lex_state = 2}, + [2990] = {.lex_state = 222, .external_lex_state = 2}, + [2991] = {.lex_state = 102, .external_lex_state = 2}, + [2992] = {.lex_state = 46, .external_lex_state = 2}, + [2993] = {.lex_state = 179, .external_lex_state = 2}, + [2994] = {.lex_state = 179, .external_lex_state = 2}, + [2995] = {.lex_state = 102, .external_lex_state = 2}, + [2996] = {.lex_state = 179, .external_lex_state = 2}, + [2997] = {.lex_state = 179, .external_lex_state = 2}, + [2998] = {.lex_state = 179, .external_lex_state = 2}, + [2999] = {.lex_state = 179, .external_lex_state = 2}, + [3000] = {.lex_state = 228, .external_lex_state = 2}, + [3001] = {.lex_state = 228, .external_lex_state = 2}, + [3002] = {.lex_state = 228, .external_lex_state = 2}, + [3003] = {.lex_state = 228, .external_lex_state = 2}, + [3004] = {.lex_state = 179, .external_lex_state = 2}, + [3005] = {.lex_state = 228, .external_lex_state = 2}, + [3006] = {.lex_state = 228, .external_lex_state = 2}, + [3007] = {.lex_state = 228, .external_lex_state = 2}, + [3008] = {.lex_state = 179, .external_lex_state = 2}, + [3009] = {.lex_state = 228, .external_lex_state = 2}, + [3010] = {.lex_state = 228, .external_lex_state = 2}, + [3011] = {.lex_state = 228, .external_lex_state = 2}, + [3012] = {.lex_state = 228, .external_lex_state = 2}, + [3013] = {.lex_state = 228, .external_lex_state = 2}, + [3014] = {.lex_state = 228, .external_lex_state = 2}, + [3015] = {.lex_state = 228, .external_lex_state = 2}, + [3016] = {.lex_state = 228, .external_lex_state = 2}, + [3017] = {.lex_state = 262, .external_lex_state = 2}, + [3018] = {.lex_state = 197, .external_lex_state = 2}, + [3019] = {.lex_state = 197, .external_lex_state = 2}, + [3020] = {.lex_state = 197, .external_lex_state = 2}, + [3021] = {.lex_state = 197, .external_lex_state = 2}, + [3022] = {.lex_state = 197, .external_lex_state = 2}, + [3023] = {.lex_state = 197, .external_lex_state = 2}, + [3024] = {.lex_state = 197, .external_lex_state = 2}, + [3025] = {.lex_state = 197, .external_lex_state = 2}, + [3026] = {.lex_state = 197, .external_lex_state = 2}, + [3027] = {.lex_state = 197, .external_lex_state = 2}, + [3028] = {.lex_state = 262, .external_lex_state = 2}, + [3029] = {.lex_state = 262, .external_lex_state = 2}, + [3030] = {.lex_state = 197, .external_lex_state = 2}, + [3031] = {.lex_state = 197, .external_lex_state = 2}, + [3032] = {.lex_state = 262, .external_lex_state = 2}, + [3033] = {.lex_state = 197, .external_lex_state = 2}, + [3034] = {.lex_state = 197, .external_lex_state = 2}, + [3035] = {.lex_state = 197, .external_lex_state = 2}, + [3036] = {.lex_state = 197, .external_lex_state = 2}, + [3037] = {.lex_state = 2258}, + [3038] = {.lex_state = 197, .external_lex_state = 2}, + [3039] = {.lex_state = 197, .external_lex_state = 2}, + [3040] = {.lex_state = 2258}, + [3041] = {.lex_state = 197, .external_lex_state = 2}, + [3042] = {.lex_state = 2258}, + [3043] = {.lex_state = 2258}, + [3044] = {.lex_state = 197, .external_lex_state = 2}, + [3045] = {.lex_state = 2256}, + [3046] = {.lex_state = 197, .external_lex_state = 2}, + [3047] = {.lex_state = 197, .external_lex_state = 2}, + [3048] = {.lex_state = 2256}, + [3049] = {.lex_state = 218, .external_lex_state = 2}, + [3050] = {.lex_state = 44, .external_lex_state = 2}, + [3051] = {.lex_state = 197, .external_lex_state = 2}, + [3052] = {.lex_state = 197, .external_lex_state = 2}, + [3053] = {.lex_state = 218, .external_lex_state = 2}, + [3054] = {.lex_state = 197, .external_lex_state = 2}, + [3055] = {.lex_state = 182, .external_lex_state = 2}, + [3056] = {.lex_state = 218, .external_lex_state = 2}, + [3057] = {.lex_state = 197, .external_lex_state = 2}, + [3058] = {.lex_state = 218, .external_lex_state = 2}, + [3059] = {.lex_state = 182, .external_lex_state = 2}, + [3060] = {.lex_state = 192, .external_lex_state = 2}, + [3061] = {.lex_state = 218, .external_lex_state = 2}, + [3062] = {.lex_state = 262, .external_lex_state = 2}, + [3063] = {.lex_state = 218, .external_lex_state = 2}, + [3064] = {.lex_state = 192, .external_lex_state = 2}, + [3065] = {.lex_state = 197, .external_lex_state = 2}, + [3066] = {.lex_state = 218, .external_lex_state = 2}, + [3067] = {.lex_state = 197, .external_lex_state = 2}, + [3068] = {.lex_state = 218, .external_lex_state = 2}, + [3069] = {.lex_state = 197, .external_lex_state = 2}, + [3070] = {.lex_state = 197, .external_lex_state = 2}, + [3071] = {.lex_state = 197, .external_lex_state = 2}, + [3072] = {.lex_state = 179, .external_lex_state = 2}, + [3073] = {.lex_state = 179, .external_lex_state = 2}, + [3074] = {.lex_state = 197, .external_lex_state = 2}, + [3075] = {.lex_state = 197, .external_lex_state = 2}, + [3076] = {.lex_state = 197, .external_lex_state = 2}, + [3077] = {.lex_state = 197, .external_lex_state = 2}, + [3078] = {.lex_state = 197, .external_lex_state = 2}, + [3079] = {.lex_state = 197, .external_lex_state = 2}, + [3080] = {.lex_state = 197, .external_lex_state = 2}, + [3081] = {.lex_state = 197, .external_lex_state = 2}, + [3082] = {.lex_state = 197, .external_lex_state = 2}, + [3083] = {.lex_state = 197, .external_lex_state = 2}, + [3084] = {.lex_state = 197, .external_lex_state = 2}, + [3085] = {.lex_state = 197, .external_lex_state = 2}, + [3086] = {.lex_state = 197, .external_lex_state = 2}, + [3087] = {.lex_state = 197, .external_lex_state = 2}, + [3088] = {.lex_state = 197, .external_lex_state = 2}, + [3089] = {.lex_state = 197, .external_lex_state = 2}, + [3090] = {.lex_state = 197, .external_lex_state = 2}, + [3091] = {.lex_state = 197, .external_lex_state = 2}, + [3092] = {.lex_state = 197, .external_lex_state = 2}, + [3093] = {.lex_state = 218, .external_lex_state = 2}, + [3094] = {.lex_state = 35, .external_lex_state = 2}, + [3095] = {.lex_state = 183, .external_lex_state = 2}, + [3096] = {.lex_state = 197, .external_lex_state = 2}, + [3097] = {.lex_state = 197, .external_lex_state = 2}, + [3098] = {.lex_state = 218, .external_lex_state = 2}, + [3099] = {.lex_state = 192, .external_lex_state = 2}, + [3100] = {.lex_state = 2258}, + [3101] = {.lex_state = 44, .external_lex_state = 2}, + [3102] = {.lex_state = 44, .external_lex_state = 2}, + [3103] = {.lex_state = 44, .external_lex_state = 2}, + [3104] = {.lex_state = 44, .external_lex_state = 2}, + [3105] = {.lex_state = 44, .external_lex_state = 2}, + [3106] = {.lex_state = 44, .external_lex_state = 2}, + [3107] = {.lex_state = 44, .external_lex_state = 2}, + [3108] = {.lex_state = 44, .external_lex_state = 2}, + [3109] = {.lex_state = 44, .external_lex_state = 2}, + [3110] = {.lex_state = 44, .external_lex_state = 2}, + [3111] = {.lex_state = 44, .external_lex_state = 2}, + [3112] = {.lex_state = 44, .external_lex_state = 2}, + [3113] = {.lex_state = 44, .external_lex_state = 2}, + [3114] = {.lex_state = 44, .external_lex_state = 2}, + [3115] = {.lex_state = 44, .external_lex_state = 2}, + [3116] = {.lex_state = 44, .external_lex_state = 2}, + [3117] = {.lex_state = 44, .external_lex_state = 2}, + [3118] = {.lex_state = 44, .external_lex_state = 2}, + [3119] = {.lex_state = 44, .external_lex_state = 2}, + [3120] = {.lex_state = 44, .external_lex_state = 2}, + [3121] = {.lex_state = 44, .external_lex_state = 2}, + [3122] = {.lex_state = 44, .external_lex_state = 2}, + [3123] = {.lex_state = 44, .external_lex_state = 2}, + [3124] = {.lex_state = 44, .external_lex_state = 2}, + [3125] = {.lex_state = 44, .external_lex_state = 2}, + [3126] = {.lex_state = 44, .external_lex_state = 2}, + [3127] = {.lex_state = 44, .external_lex_state = 2}, + [3128] = {.lex_state = 44, .external_lex_state = 2}, + [3129] = {.lex_state = 44, .external_lex_state = 2}, + [3130] = {.lex_state = 44, .external_lex_state = 2}, + [3131] = {.lex_state = 44, .external_lex_state = 2}, + [3132] = {.lex_state = 44, .external_lex_state = 2}, + [3133] = {.lex_state = 44, .external_lex_state = 2}, + [3134] = {.lex_state = 44, .external_lex_state = 2}, + [3135] = {.lex_state = 44, .external_lex_state = 2}, + [3136] = {.lex_state = 44, .external_lex_state = 2}, + [3137] = {.lex_state = 44, .external_lex_state = 2}, + [3138] = {.lex_state = 44, .external_lex_state = 2}, + [3139] = {.lex_state = 44, .external_lex_state = 2}, + [3140] = {.lex_state = 44, .external_lex_state = 2}, + [3141] = {.lex_state = 44, .external_lex_state = 2}, + [3142] = {.lex_state = 44, .external_lex_state = 2}, + [3143] = {.lex_state = 44, .external_lex_state = 2}, + [3144] = {.lex_state = 44, .external_lex_state = 2}, + [3145] = {.lex_state = 44, .external_lex_state = 2}, + [3146] = {.lex_state = 44, .external_lex_state = 2}, + [3147] = {.lex_state = 44, .external_lex_state = 2}, + [3148] = {.lex_state = 44, .external_lex_state = 2}, + [3149] = {.lex_state = 2258}, + [3150] = {.lex_state = 44, .external_lex_state = 2}, + [3151] = {.lex_state = 44, .external_lex_state = 2}, + [3152] = {.lex_state = 44, .external_lex_state = 2}, + [3153] = {.lex_state = 44, .external_lex_state = 2}, + [3154] = {.lex_state = 44, .external_lex_state = 2}, + [3155] = {.lex_state = 44, .external_lex_state = 2}, + [3156] = {.lex_state = 44, .external_lex_state = 2}, + [3157] = {.lex_state = 44, .external_lex_state = 2}, + [3158] = {.lex_state = 2258}, + [3159] = {.lex_state = 44, .external_lex_state = 2}, + [3160] = {.lex_state = 44, .external_lex_state = 2}, + [3161] = {.lex_state = 2258}, + [3162] = {.lex_state = 2258}, + [3163] = {.lex_state = 35, .external_lex_state = 2}, + [3164] = {.lex_state = 44, .external_lex_state = 2}, + [3165] = {.lex_state = 44, .external_lex_state = 2}, + [3166] = {.lex_state = 44, .external_lex_state = 2}, + [3167] = {.lex_state = 44, .external_lex_state = 2}, + [3168] = {.lex_state = 44, .external_lex_state = 2}, + [3169] = {.lex_state = 2253}, + [3170] = {.lex_state = 44, .external_lex_state = 2}, + [3171] = {.lex_state = 70}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 70}, + [3174] = {.lex_state = 2265}, + [3175] = {.lex_state = 2253}, + [3176] = {.lex_state = 70}, + [3177] = {.lex_state = 70}, + [3178] = {.lex_state = 70}, + [3179] = {.lex_state = 70}, + [3180] = {.lex_state = 70}, + [3181] = {.lex_state = 70}, + [3182] = {.lex_state = 70}, + [3183] = {.lex_state = 70}, + [3184] = {.lex_state = 70}, + [3185] = {.lex_state = 70}, + [3186] = {.lex_state = 70}, + [3187] = {.lex_state = 70}, + [3188] = {.lex_state = 70}, + [3189] = {.lex_state = 2265}, + [3190] = {.lex_state = 2335}, + [3191] = {.lex_state = 2263}, + [3192] = {.lex_state = 2262}, + [3193] = {.lex_state = 2262}, + [3194] = {.lex_state = 2262}, + [3195] = {.lex_state = 2262}, + [3196] = {.lex_state = 70}, + [3197] = {.lex_state = 2263}, + [3198] = {.lex_state = 2262}, + [3199] = {.lex_state = 2262}, + [3200] = {.lex_state = 2260}, + [3201] = {.lex_state = 23}, + [3202] = {.lex_state = 23}, + [3203] = {.lex_state = 2262}, + [3204] = {.lex_state = 2262}, + [3205] = {.lex_state = 2262}, + [3206] = {.lex_state = 70}, + [3207] = {.lex_state = 2262}, + [3208] = {.lex_state = 2329}, + [3209] = {.lex_state = 2253}, + [3210] = {.lex_state = 2253}, + [3211] = {.lex_state = 2253}, + [3212] = {.lex_state = 2253}, + [3213] = {.lex_state = 2253}, + [3214] = {.lex_state = 2253}, + [3215] = {.lex_state = 2253}, + [3216] = {.lex_state = 2253}, + [3217] = {.lex_state = 2253}, + [3218] = {.lex_state = 2253}, + [3219] = {.lex_state = 2253}, + [3220] = {.lex_state = 2253}, + [3221] = {.lex_state = 2253}, + [3222] = {.lex_state = 2253}, + [3223] = {.lex_state = 2253}, + [3224] = {.lex_state = 2253}, + [3225] = {.lex_state = 2253}, + [3226] = {.lex_state = 2253}, + [3227] = {.lex_state = 2253}, + [3228] = {.lex_state = 2253}, + [3229] = {.lex_state = 2253}, + [3230] = {.lex_state = 2253}, + [3231] = {.lex_state = 2253}, + [3232] = {.lex_state = 2253}, + [3233] = {.lex_state = 2253}, + [3234] = {.lex_state = 2253}, + [3235] = {.lex_state = 2253}, + [3236] = {.lex_state = 2253}, + [3237] = {.lex_state = 2253}, + [3238] = {.lex_state = 2253}, + [3239] = {.lex_state = 2253}, + [3240] = {.lex_state = 2253}, + [3241] = {.lex_state = 2253}, + [3242] = {.lex_state = 2253}, + [3243] = {.lex_state = 2253}, + [3244] = {.lex_state = 2253}, + [3245] = {.lex_state = 2253}, + [3246] = {.lex_state = 2253}, + [3247] = {.lex_state = 2253}, + [3248] = {.lex_state = 2253}, + [3249] = {.lex_state = 2253}, + [3250] = {.lex_state = 2253}, + [3251] = {.lex_state = 2253}, + [3252] = {.lex_state = 2253}, + [3253] = {.lex_state = 2253}, + [3254] = {.lex_state = 2253}, + [3255] = {.lex_state = 2253}, + [3256] = {.lex_state = 2253}, + [3257] = {.lex_state = 2260}, + [3258] = {.lex_state = 2253}, + [3259] = {.lex_state = 2253}, + [3260] = {.lex_state = 2253}, + [3261] = {.lex_state = 2253}, + [3262] = {.lex_state = 2253}, + [3263] = {.lex_state = 2253}, + [3264] = {.lex_state = 2253}, + [3265] = {.lex_state = 2253}, + [3266] = {.lex_state = 2253}, + [3267] = {.lex_state = 2253}, + [3268] = {.lex_state = 2253}, + [3269] = {.lex_state = 2253}, + [3270] = {.lex_state = 2253}, + [3271] = {.lex_state = 70}, + [3272] = {.lex_state = 2253}, + [3273] = {.lex_state = 2253}, + [3274] = {.lex_state = 70}, + [3275] = {.lex_state = 2253}, + [3276] = {.lex_state = 2253}, + [3277] = {.lex_state = 2253}, + [3278] = {.lex_state = 23}, + [3279] = {.lex_state = 2253}, + [3280] = {.lex_state = 2253}, + [3281] = {.lex_state = 2253}, + [3282] = {.lex_state = 2253}, + [3283] = {.lex_state = 2253}, + [3284] = {.lex_state = 2253}, + [3285] = {.lex_state = 2329}, + [3286] = {.lex_state = 2329}, + [3287] = {.lex_state = 2253}, + [3288] = {.lex_state = 70}, + [3289] = {.lex_state = 70}, + [3290] = {.lex_state = 2253}, + [3291] = {.lex_state = 2329}, + [3292] = {.lex_state = 70}, + [3293] = {.lex_state = 70}, + [3294] = {.lex_state = 2253}, + [3295] = {.lex_state = 2253}, + [3296] = {.lex_state = 2253}, + [3297] = {.lex_state = 2253}, + [3298] = {.lex_state = 70}, + [3299] = {.lex_state = 70}, + [3300] = {.lex_state = 2253}, + [3301] = {.lex_state = 2253}, + [3302] = {.lex_state = 2253}, + [3303] = {.lex_state = 2253}, + [3304] = {.lex_state = 2253}, + [3305] = {.lex_state = 2253}, + [3306] = {.lex_state = 2253}, + [3307] = {.lex_state = 2253}, + [3308] = {.lex_state = 2253}, + [3309] = {.lex_state = 2253}, + [3310] = {.lex_state = 2253}, + [3311] = {.lex_state = 2253}, + [3312] = {.lex_state = 2253}, + [3313] = {.lex_state = 2253}, + [3314] = {.lex_state = 70}, + [3315] = {.lex_state = 70}, + [3316] = {.lex_state = 2253}, + [3317] = {.lex_state = 2253}, + [3318] = {.lex_state = 70}, + [3319] = {.lex_state = 2253}, + [3320] = {.lex_state = 2253}, + [3321] = {.lex_state = 2253}, + [3322] = {.lex_state = 2253}, + [3323] = {.lex_state = 2253}, + [3324] = {.lex_state = 2253}, + [3325] = {.lex_state = 2253}, + [3326] = {.lex_state = 2253}, + [3327] = {.lex_state = 2253}, + [3328] = {.lex_state = 2329}, + [3329] = {.lex_state = 23}, + [3330] = {.lex_state = 2253}, + [3331] = {.lex_state = 2253}, + [3332] = {.lex_state = 2253}, + [3333] = {.lex_state = 2329}, + [3334] = {.lex_state = 2253}, + [3335] = {.lex_state = 2253}, + [3336] = {.lex_state = 2253}, + [3337] = {.lex_state = 70}, + [3338] = {.lex_state = 70}, + [3339] = {.lex_state = 23}, + [3340] = {.lex_state = 244, .external_lex_state = 2}, + [3341] = {.lex_state = 240, .external_lex_state = 2}, + [3342] = {.lex_state = 23}, + [3343] = {.lex_state = 70}, + [3344] = {.lex_state = 70}, + [3345] = {.lex_state = 23}, + [3346] = {.lex_state = 2329}, + [3347] = {.lex_state = 2329}, + [3348] = {.lex_state = 2329}, + [3349] = {.lex_state = 70}, + [3350] = {.lex_state = 2253}, + [3351] = {.lex_state = 2253}, + [3352] = {.lex_state = 23}, + [3353] = {.lex_state = 23}, + [3354] = {.lex_state = 23}, + [3355] = {.lex_state = 23}, + [3356] = {.lex_state = 23}, + [3357] = {.lex_state = 70}, + [3358] = {.lex_state = 2329}, + [3359] = {.lex_state = 70}, + [3360] = {.lex_state = 2253}, + [3361] = {.lex_state = 23}, + [3362] = {.lex_state = 70}, + [3363] = {.lex_state = 2253}, + [3364] = {.lex_state = 2253}, + [3365] = {.lex_state = 2253}, + [3366] = {.lex_state = 2253}, + [3367] = {.lex_state = 2253}, + [3368] = {.lex_state = 2253}, + [3369] = {.lex_state = 2253}, + [3370] = {.lex_state = 2253}, + [3371] = {.lex_state = 2253}, + [3372] = {.lex_state = 2253}, + [3373] = {.lex_state = 2253}, + [3374] = {.lex_state = 2253}, + [3375] = {.lex_state = 70}, + [3376] = {.lex_state = 23}, + [3377] = {.lex_state = 70}, + [3378] = {.lex_state = 2264}, + [3379] = {.lex_state = 70}, + [3380] = {.lex_state = 2329}, + [3381] = {.lex_state = 91}, + [3382] = {.lex_state = 241, .external_lex_state = 2}, + [3383] = {.lex_state = 236}, + [3384] = {.lex_state = 90}, + [3385] = {.lex_state = 2263}, + [3386] = {.lex_state = 2271}, + [3387] = {.lex_state = 241, .external_lex_state = 2}, + [3388] = {.lex_state = 17}, + [3389] = {.lex_state = 2263}, + [3390] = {.lex_state = 2263}, + [3391] = {.lex_state = 18}, + [3392] = {.lex_state = 2264}, + [3393] = {.lex_state = 2264}, + [3394] = {.lex_state = 236}, + [3395] = {.lex_state = 70}, + [3396] = {.lex_state = 92}, + [3397] = {.lex_state = 242, .external_lex_state = 2}, + [3398] = {.lex_state = 92}, + [3399] = {.lex_state = 70}, + [3400] = {.lex_state = 70}, + [3401] = {.lex_state = 237}, + [3402] = {.lex_state = 388}, + [3403] = {.lex_state = 2329}, + [3404] = {.lex_state = 242, .external_lex_state = 2}, + [3405] = {.lex_state = 20}, + [3406] = {.lex_state = 2329}, + [3407] = {.lex_state = 70}, + [3408] = {.lex_state = 2329}, + [3409] = {.lex_state = 242, .external_lex_state = 2}, + [3410] = {.lex_state = 93}, + [3411] = {.lex_state = 19}, + [3412] = {.lex_state = 237}, + [3413] = {.lex_state = 2264}, + [3414] = {.lex_state = 2263}, + [3415] = {.lex_state = 2263}, + [3416] = {.lex_state = 242, .external_lex_state = 2}, + [3417] = {.lex_state = 19}, + [3418] = {.lex_state = 86}, + [3419] = {.lex_state = 87}, + [3420] = {.lex_state = 242, .external_lex_state = 2}, + [3421] = {.lex_state = 2264}, + [3422] = {.lex_state = 2264}, + [3423] = {.lex_state = 93}, + [3424] = {.lex_state = 20}, + [3425] = {.lex_state = 20}, + [3426] = {.lex_state = 20}, + [3427] = {.lex_state = 88}, + [3428] = {.lex_state = 93}, + [3429] = {.lex_state = 88}, + [3430] = {.lex_state = 388}, + [3431] = {.lex_state = 93}, + [3432] = {.lex_state = 23}, + [3433] = {.lex_state = 23}, + [3434] = {.lex_state = 23}, + [3435] = {.lex_state = 23}, + [3436] = {.lex_state = 2265}, + [3437] = {.lex_state = 23}, + [3438] = {.lex_state = 23}, + [3439] = {.lex_state = 388}, + [3440] = {.lex_state = 23}, + [3441] = {.lex_state = 23}, + [3442] = {.lex_state = 388}, + [3443] = {.lex_state = 2329}, + [3444] = {.lex_state = 23}, + [3445] = {.lex_state = 93}, + [3446] = {.lex_state = 388}, + [3447] = {.lex_state = 388}, + [3448] = {.lex_state = 23}, + [3449] = {.lex_state = 23}, + [3450] = {.lex_state = 23}, + [3451] = {.lex_state = 89}, + [3452] = {.lex_state = 23}, + [3453] = {.lex_state = 23}, + [3454] = {.lex_state = 23}, + [3455] = {.lex_state = 23}, + [3456] = {.lex_state = 20}, + [3457] = {.lex_state = 2329}, + [3458] = {.lex_state = 23}, + [3459] = {.lex_state = 23}, + [3460] = {.lex_state = 89}, + [3461] = {.lex_state = 2265}, + [3462] = {.lex_state = 89}, + [3463] = {.lex_state = 70}, + [3464] = {.lex_state = 13, .external_lex_state = 2}, + [3465] = {.lex_state = 23}, + [3466] = {.lex_state = 89}, + [3467] = {.lex_state = 13, .external_lex_state = 2}, + [3468] = {.lex_state = 13, .external_lex_state = 2}, + [3469] = {.lex_state = 13, .external_lex_state = 2}, + [3470] = {.lex_state = 23}, + [3471] = {.lex_state = 23}, + [3472] = {.lex_state = 89}, + [3473] = {.lex_state = 13, .external_lex_state = 2}, + [3474] = {.lex_state = 13, .external_lex_state = 2}, + [3475] = {.lex_state = 13, .external_lex_state = 2}, + [3476] = {.lex_state = 23}, + [3477] = {.lex_state = 13, .external_lex_state = 2}, + [3478] = {.lex_state = 13, .external_lex_state = 2}, + [3479] = {.lex_state = 388}, + [3480] = {.lex_state = 13, .external_lex_state = 2}, + [3481] = {.lex_state = 13, .external_lex_state = 2}, + [3482] = {.lex_state = 23}, + [3483] = {.lex_state = 2264}, + [3484] = {.lex_state = 2264}, + [3485] = {.lex_state = 13, .external_lex_state = 2}, + [3486] = {.lex_state = 13, .external_lex_state = 2}, + [3487] = {.lex_state = 13, .external_lex_state = 2}, + [3488] = {.lex_state = 13, .external_lex_state = 2}, + [3489] = {.lex_state = 13, .external_lex_state = 2}, + [3490] = {.lex_state = 13, .external_lex_state = 2}, + [3491] = {.lex_state = 13, .external_lex_state = 2}, + [3492] = {.lex_state = 13, .external_lex_state = 2}, + [3493] = {.lex_state = 13, .external_lex_state = 2}, + [3494] = {.lex_state = 13, .external_lex_state = 2}, + [3495] = {.lex_state = 13, .external_lex_state = 2}, + [3496] = {.lex_state = 13, .external_lex_state = 2}, + [3497] = {.lex_state = 2264}, + [3498] = {.lex_state = 23}, + [3499] = {.lex_state = 23}, + [3500] = {.lex_state = 23}, + [3501] = {.lex_state = 23}, + [3502] = {.lex_state = 23}, + [3503] = {.lex_state = 23}, + [3504] = {.lex_state = 98}, + [3505] = {.lex_state = 23}, + [3506] = {.lex_state = 23}, + [3507] = {.lex_state = 98}, + [3508] = {.lex_state = 23}, + [3509] = {.lex_state = 23}, + [3510] = {.lex_state = 23}, + [3511] = {.lex_state = 23}, + [3512] = {.lex_state = 23}, + [3513] = {.lex_state = 23}, + [3514] = {.lex_state = 23}, + [3515] = {.lex_state = 23}, + [3516] = {.lex_state = 2264}, + [3517] = {.lex_state = 13, .external_lex_state = 2}, + [3518] = {.lex_state = 23}, + [3519] = {.lex_state = 23}, + [3520] = {.lex_state = 23}, + [3521] = {.lex_state = 23}, + [3522] = {.lex_state = 2264}, + [3523] = {.lex_state = 225, .external_lex_state = 2}, + [3524] = {.lex_state = 23}, + [3525] = {.lex_state = 2264}, + [3526] = {.lex_state = 23}, + [3527] = {.lex_state = 23}, + [3528] = {.lex_state = 23}, + [3529] = {.lex_state = 13, .external_lex_state = 2}, + [3530] = {.lex_state = 23}, + [3531] = {.lex_state = 23}, + [3532] = {.lex_state = 23}, + [3533] = {.lex_state = 23}, + [3534] = {.lex_state = 23}, + [3535] = {.lex_state = 2264}, + [3536] = {.lex_state = 23}, + [3537] = {.lex_state = 23}, + [3538] = {.lex_state = 2264}, + [3539] = {.lex_state = 23}, + [3540] = {.lex_state = 23}, + [3541] = {.lex_state = 23}, + [3542] = {.lex_state = 23}, + [3543] = {.lex_state = 23}, + [3544] = {.lex_state = 23}, + [3545] = {.lex_state = 70}, + [3546] = {.lex_state = 23}, + [3547] = {.lex_state = 23}, + [3548] = {.lex_state = 23}, + [3549] = {.lex_state = 2253}, + [3550] = {.lex_state = 23}, + [3551] = {.lex_state = 13, .external_lex_state = 2}, + [3552] = {.lex_state = 2271}, + [3553] = {.lex_state = 3741}, + [3554] = {.lex_state = 23}, + [3555] = {.lex_state = 3739}, + [3556] = {.lex_state = 2264}, + [3557] = {.lex_state = 2264}, + [3558] = {.lex_state = 2264}, + [3559] = {.lex_state = 2271}, + [3560] = {.lex_state = 2271}, + [3561] = {.lex_state = 23}, + [3562] = {.lex_state = 2271}, + [3563] = {.lex_state = 2271}, + [3564] = {.lex_state = 2271}, + [3565] = {.lex_state = 98}, + [3566] = {.lex_state = 2271}, + [3567] = {.lex_state = 13, .external_lex_state = 2}, + [3568] = {.lex_state = 2264}, + [3569] = {.lex_state = 2271}, + [3570] = {.lex_state = 2271}, + [3571] = {.lex_state = 2271}, + [3572] = {.lex_state = 2253}, + [3573] = {.lex_state = 13, .external_lex_state = 2}, + [3574] = {.lex_state = 2264}, + [3575] = {.lex_state = 2271}, + [3576] = {.lex_state = 2271}, + [3577] = {.lex_state = 2271}, + [3578] = {.lex_state = 2271}, + [3579] = {.lex_state = 13, .external_lex_state = 2}, + [3580] = {.lex_state = 2271}, + [3581] = {.lex_state = 2271}, + [3582] = {.lex_state = 2271}, + [3583] = {.lex_state = 2271}, + [3584] = {.lex_state = 2271}, + [3585] = {.lex_state = 23}, + [3586] = {.lex_state = 2271}, + [3587] = {.lex_state = 2263}, + [3588] = {.lex_state = 98}, + [3589] = {.lex_state = 13, .external_lex_state = 2}, + [3590] = {.lex_state = 13, .external_lex_state = 2}, + [3591] = {.lex_state = 98}, + [3592] = {.lex_state = 2271}, + [3593] = {.lex_state = 98}, + [3594] = {.lex_state = 2271}, + [3595] = {.lex_state = 234, .external_lex_state = 2}, + [3596] = {.lex_state = 2271}, + [3597] = {.lex_state = 2264}, + [3598] = {.lex_state = 2264}, + [3599] = {.lex_state = 2264}, + [3600] = {.lex_state = 2264}, + [3601] = {.lex_state = 2271}, + [3602] = {.lex_state = 2271}, + [3603] = {.lex_state = 2264}, + [3604] = {.lex_state = 98}, + [3605] = {.lex_state = 98}, + [3606] = {.lex_state = 259, .external_lex_state = 2}, + [3607] = {.lex_state = 2253}, + [3608] = {.lex_state = 23}, + [3609] = {.lex_state = 13, .external_lex_state = 2}, + [3610] = {.lex_state = 23}, + [3611] = {.lex_state = 232, .external_lex_state = 2}, + [3612] = {.lex_state = 23}, + [3613] = {.lex_state = 23}, + [3614] = {.lex_state = 2253}, + [3615] = {.lex_state = 13, .external_lex_state = 2}, + [3616] = {.lex_state = 259, .external_lex_state = 2}, + [3617] = {.lex_state = 259, .external_lex_state = 2}, + [3618] = {.lex_state = 13, .external_lex_state = 2}, + [3619] = {.lex_state = 259, .external_lex_state = 2}, + [3620] = {.lex_state = 3744}, + [3621] = {.lex_state = 13, .external_lex_state = 2}, + [3622] = {.lex_state = 23}, + [3623] = {.lex_state = 98}, + [3624] = {.lex_state = 98}, + [3625] = {.lex_state = 23}, + [3626] = {.lex_state = 23}, + [3627] = {.lex_state = 23}, + [3628] = {.lex_state = 13, .external_lex_state = 2}, + [3629] = {.lex_state = 259, .external_lex_state = 2}, + [3630] = {.lex_state = 98}, + [3631] = {.lex_state = 23}, + [3632] = {.lex_state = 23}, + [3633] = {.lex_state = 23}, + [3634] = {.lex_state = 243, .external_lex_state = 2}, + [3635] = {.lex_state = 3742}, + [3636] = {.lex_state = 3740}, + [3637] = {.lex_state = 2265}, + [3638] = {.lex_state = 3742}, + [3639] = {.lex_state = 42, .external_lex_state = 2}, + [3640] = {.lex_state = 23}, + [3641] = {.lex_state = 63}, + [3642] = {.lex_state = 23}, + [3643] = {.lex_state = 23}, + [3644] = {.lex_state = 42, .external_lex_state = 2}, + [3645] = {.lex_state = 23}, + [3646] = {.lex_state = 23}, + [3647] = {.lex_state = 3743}, + [3648] = {.lex_state = 42, .external_lex_state = 2}, + [3649] = {.lex_state = 23}, + [3650] = {.lex_state = 23}, + [3651] = {.lex_state = 42, .external_lex_state = 2}, + [3652] = {.lex_state = 42, .external_lex_state = 2}, + [3653] = {.lex_state = 42, .external_lex_state = 2}, + [3654] = {.lex_state = 3743}, + [3655] = {.lex_state = 42, .external_lex_state = 2}, + [3656] = {.lex_state = 42, .external_lex_state = 2}, + [3657] = {.lex_state = 42, .external_lex_state = 2}, + [3658] = {.lex_state = 42, .external_lex_state = 2}, + [3659] = {.lex_state = 42, .external_lex_state = 2}, + [3660] = {.lex_state = 42, .external_lex_state = 2}, + [3661] = {.lex_state = 3745}, + [3662] = {.lex_state = 42, .external_lex_state = 2}, + [3663] = {.lex_state = 42, .external_lex_state = 2}, + [3664] = {.lex_state = 42, .external_lex_state = 2}, + [3665] = {.lex_state = 42, .external_lex_state = 2}, + [3666] = {.lex_state = 42, .external_lex_state = 2}, + [3667] = {.lex_state = 42, .external_lex_state = 2}, + [3668] = {.lex_state = 42, .external_lex_state = 2}, + [3669] = {.lex_state = 42, .external_lex_state = 2}, + [3670] = {.lex_state = 42, .external_lex_state = 2}, + [3671] = {.lex_state = 42, .external_lex_state = 2}, + [3672] = {.lex_state = 42, .external_lex_state = 2}, + [3673] = {.lex_state = 42, .external_lex_state = 2}, + [3674] = {.lex_state = 2253}, + [3675] = {.lex_state = 42, .external_lex_state = 2}, + [3676] = {.lex_state = 42, .external_lex_state = 2}, + [3677] = {.lex_state = 42, .external_lex_state = 2}, + [3678] = {.lex_state = 42, .external_lex_state = 2}, + [3679] = {.lex_state = 22}, + [3680] = {.lex_state = 42, .external_lex_state = 2}, + [3681] = {.lex_state = 3743}, + [3682] = {.lex_state = 42, .external_lex_state = 2}, + [3683] = {.lex_state = 42, .external_lex_state = 2}, + [3684] = {.lex_state = 42, .external_lex_state = 2}, + [3685] = {.lex_state = 3743}, + [3686] = {.lex_state = 23}, + [3687] = {.lex_state = 42, .external_lex_state = 2}, + [3688] = {.lex_state = 42, .external_lex_state = 2}, + [3689] = {.lex_state = 42, .external_lex_state = 2}, + [3690] = {.lex_state = 42, .external_lex_state = 2}, + [3691] = {.lex_state = 3745}, + [3692] = {.lex_state = 42, .external_lex_state = 2}, [3693] = {.lex_state = 23}, - [3694] = {.lex_state = 43, .external_lex_state = 2}, - [3695] = {.lex_state = 43, .external_lex_state = 2}, - [3696] = {.lex_state = 710}, - [3697] = {.lex_state = 43, .external_lex_state = 2}, - [3698] = {.lex_state = 697}, - [3699] = {.lex_state = 23}, - [3700] = {.lex_state = 23}, - [3701] = {.lex_state = 43, .external_lex_state = 2}, - [3702] = {.lex_state = 43, .external_lex_state = 2}, - [3703] = {.lex_state = 43, .external_lex_state = 2}, - [3704] = {.lex_state = 43, .external_lex_state = 2}, - [3705] = {.lex_state = 43, .external_lex_state = 2}, - [3706] = {.lex_state = 64}, - [3707] = {.lex_state = 43, .external_lex_state = 2}, - [3708] = {.lex_state = 1836}, - [3709] = {.lex_state = 1838}, - [3710] = {.lex_state = 43, .external_lex_state = 2}, - [3711] = {.lex_state = 43, .external_lex_state = 2}, - [3712] = {.lex_state = 43, .external_lex_state = 2}, - [3713] = {.lex_state = 43, .external_lex_state = 2}, - [3714] = {.lex_state = 43, .external_lex_state = 2}, - [3715] = {.lex_state = 43, .external_lex_state = 2}, - [3716] = {.lex_state = 709}, - [3717] = {.lex_state = 709}, - [3718] = {.lex_state = 43, .external_lex_state = 2}, - [3719] = {.lex_state = 24}, - [3720] = {.lex_state = 24}, - [3721] = {.lex_state = 24}, - [3722] = {.lex_state = 24}, - [3723] = {.lex_state = 43, .external_lex_state = 2}, - [3724] = {.lex_state = 64}, - [3725] = {.lex_state = 1836}, - [3726] = {.lex_state = 1836}, - [3727] = {.lex_state = 43, .external_lex_state = 2}, - [3728] = {.lex_state = 43, .external_lex_state = 2}, - [3729] = {.lex_state = 24}, - [3730] = {.lex_state = 97}, - [3731] = {.lex_state = 697}, - [3732] = {.lex_state = 697}, - [3733] = {.lex_state = 697}, - [3734] = {.lex_state = 697}, - [3735] = {.lex_state = 697}, - [3736] = {.lex_state = 697}, - [3737] = {.lex_state = 697}, - [3738] = {.lex_state = 697}, - [3739] = {.lex_state = 697}, - [3740] = {.lex_state = 697}, - [3741] = {.lex_state = 697}, - [3742] = {.lex_state = 697}, - [3743] = {.lex_state = 697}, - [3744] = {.lex_state = 697}, - [3745] = {.lex_state = 697}, - [3746] = {.lex_state = 697}, - [3747] = {.lex_state = 743}, - [3748] = {.lex_state = 697}, - [3749] = {.lex_state = 697}, - [3750] = {.lex_state = 743}, - [3751] = {.lex_state = 710}, - [3752] = {.lex_state = 1839}, - [3753] = {.lex_state = 97}, - [3754] = {.lex_state = 743}, - [3755] = {.lex_state = 697}, - [3756] = {.lex_state = 743}, - [3757] = {.lex_state = 697}, - [3758] = {.lex_state = 697}, - [3759] = {.lex_state = 96}, - [3760] = {.lex_state = 697}, - [3761] = {.lex_state = 697}, - [3762] = {.lex_state = 697}, - [3763] = {.lex_state = 697}, - [3764] = {.lex_state = 1839}, - [3765] = {.lex_state = 1839}, - [3766] = {.lex_state = 697}, - [3767] = {.lex_state = 22}, - [3768] = {.lex_state = 697}, - [3769] = {.lex_state = 697}, - [3770] = {.lex_state = 697}, - [3771] = {.lex_state = 697}, - [3772] = {.lex_state = 697}, - [3773] = {.lex_state = 697}, - [3774] = {.lex_state = 697}, - [3775] = {.lex_state = 697}, - [3776] = {.lex_state = 697}, - [3777] = {.lex_state = 697}, - [3778] = {.lex_state = 697}, - [3779] = {.lex_state = 697}, - [3780] = {.lex_state = 697}, - [3781] = {.lex_state = 697}, - [3782] = {.lex_state = 697}, - [3783] = {.lex_state = 697}, - [3784] = {.lex_state = 697}, - [3785] = {.lex_state = 697}, - [3786] = {.lex_state = 697}, - [3787] = {.lex_state = 697}, - [3788] = {.lex_state = 697}, - [3789] = {.lex_state = 697}, - [3790] = {.lex_state = 697}, - [3791] = {.lex_state = 697}, - [3792] = {.lex_state = 1839}, - [3793] = {.lex_state = 697}, - [3794] = {.lex_state = 1839}, - [3795] = {.lex_state = 697}, - [3796] = {.lex_state = 710}, - [3797] = {.lex_state = 697}, - [3798] = {.lex_state = 697}, - [3799] = {.lex_state = 697}, - [3800] = {.lex_state = 97}, - [3801] = {.lex_state = 697}, - [3802] = {.lex_state = 697}, - [3803] = {.lex_state = 697}, - [3804] = {.lex_state = 697}, - [3805] = {.lex_state = 697}, - [3806] = {.lex_state = 1839}, - [3807] = {.lex_state = 697}, - [3808] = {.lex_state = 697}, - [3809] = {.lex_state = 697}, - [3810] = {.lex_state = 697}, - [3811] = {.lex_state = 697}, - [3812] = {.lex_state = 743}, - [3813] = {.lex_state = 697}, - [3814] = {.lex_state = 697}, - [3815] = {.lex_state = 1839}, - [3816] = {.lex_state = 697}, - [3817] = {.lex_state = 697}, - [3818] = {.lex_state = 697}, - [3819] = {.lex_state = 1839}, - [3820] = {.lex_state = 1839}, - [3821] = {.lex_state = 743}, - [3822] = {.lex_state = 743}, - [3823] = {.lex_state = 697}, - [3824] = {.lex_state = 1839}, - [3825] = {.lex_state = 697}, - [3826] = {.lex_state = 697}, - [3827] = {.lex_state = 697}, - [3828] = {.lex_state = 743}, - [3829] = {.lex_state = 743}, - [3830] = {.lex_state = 697}, - [3831] = {.lex_state = 697}, - [3832] = {.lex_state = 1839}, - [3833] = {.lex_state = 1839}, - [3834] = {.lex_state = 697}, - [3835] = {.lex_state = 697}, - [3836] = {.lex_state = 697}, - [3837] = {.lex_state = 697}, - [3838] = {.lex_state = 743}, - [3839] = {.lex_state = 697}, - [3840] = {.lex_state = 697}, - [3841] = {.lex_state = 697}, - [3842] = {.lex_state = 697}, - [3843] = {.lex_state = 97}, - [3844] = {.lex_state = 697}, - [3845] = {.lex_state = 743}, - [3846] = {.lex_state = 697}, - [3847] = {.lex_state = 697}, - [3848] = {.lex_state = 97}, - [3849] = {.lex_state = 743}, - [3850] = {.lex_state = 743}, - [3851] = {.lex_state = 697}, - [3852] = {.lex_state = 697}, - [3853] = {.lex_state = 697}, - [3854] = {.lex_state = 697}, - [3855] = {.lex_state = 697}, - [3856] = {.lex_state = 743}, - [3857] = {.lex_state = 697}, - [3858] = {.lex_state = 743}, - [3859] = {.lex_state = 697}, - [3860] = {.lex_state = 697}, - [3861] = {.lex_state = 697}, - [3862] = {.lex_state = 64}, - [3863] = {.lex_state = 64}, - [3864] = {.lex_state = 64}, - [3865] = {.lex_state = 64}, - [3866] = {.lex_state = 24}, - [3867] = {.lex_state = 751}, - [3868] = {.lex_state = 697}, - [3869] = {.lex_state = 64}, - [3870] = {.lex_state = 64}, - [3871] = {.lex_state = 751}, - [3872] = {.lex_state = 64}, - [3873] = {.lex_state = 24}, - [3874] = {.lex_state = 24}, - [3875] = {.lex_state = 24}, - [3876] = {.lex_state = 24}, - [3877] = {.lex_state = 24}, - [3878] = {.lex_state = 24}, - [3879] = {.lex_state = 95}, - [3880] = {.lex_state = 24}, - [3881] = {.lex_state = 24}, - [3882] = {.lex_state = 24}, - [3883] = {.lex_state = 24}, - [3884] = {.lex_state = 64}, - [3885] = {.lex_state = 24}, - [3886] = {.lex_state = 24}, - [3887] = {.lex_state = 24}, - [3888] = {.lex_state = 24}, - [3889] = {.lex_state = 24}, - [3890] = {.lex_state = 24}, - [3891] = {.lex_state = 24}, - [3892] = {.lex_state = 64}, - [3893] = {.lex_state = 24}, - [3894] = {.lex_state = 24}, - [3895] = {.lex_state = 24}, - [3896] = {.lex_state = 64}, - [3897] = {.lex_state = 24}, - [3898] = {.lex_state = 24}, - [3899] = {.lex_state = 24}, - [3900] = {.lex_state = 24}, - [3901] = {.lex_state = 24}, - [3902] = {.lex_state = 24}, - [3903] = {.lex_state = 24}, - [3904] = {.lex_state = 24}, - [3905] = {.lex_state = 24}, - [3906] = {.lex_state = 697}, - [3907] = {.lex_state = 24}, - [3908] = {.lex_state = 24}, - [3909] = {.lex_state = 24}, - [3910] = {.lex_state = 64}, - [3911] = {.lex_state = 64}, - [3912] = {.lex_state = 64}, - [3913] = {.lex_state = 64}, - [3914] = {.lex_state = 64}, - [3915] = {.lex_state = 697}, - [3916] = {.lex_state = 697}, - [3917] = {.lex_state = 64}, - [3918] = {.lex_state = 64}, - [3919] = {.lex_state = 64}, - [3920] = {.lex_state = 697}, - [3921] = {.lex_state = 697}, - [3922] = {.lex_state = 64}, - [3923] = {.lex_state = 64}, - [3924] = {.lex_state = 64}, - [3925] = {.lex_state = 64}, - [3926] = {.lex_state = 64}, - [3927] = {.lex_state = 24}, - [3928] = {.lex_state = 64}, - [3929] = {.lex_state = 64}, - [3930] = {.lex_state = 64}, - [3931] = {.lex_state = 24}, - [3932] = {.lex_state = 1840}, - [3933] = {.lex_state = 709}, - [3934] = {.lex_state = 709}, - [3935] = {.lex_state = 709}, - [3936] = {.lex_state = 709}, - [3937] = {.lex_state = 709}, - [3938] = {.lex_state = 709}, - [3939] = {.lex_state = 709}, - [3940] = {.lex_state = 751}, - [3941] = {.lex_state = 1840}, - [3942] = {.lex_state = 751}, - [3943] = {.lex_state = 1840}, - [3944] = {.lex_state = 1840}, - [3945] = {.lex_state = 1840}, - [3946] = {.lex_state = 697}, - [3947] = {.lex_state = 709}, - [3948] = {.lex_state = 709}, - [3949] = {.lex_state = 697}, - [3950] = {.lex_state = 1840}, - [3951] = {.lex_state = 751}, - [3952] = {.lex_state = 697}, - [3953] = {.lex_state = 697}, - [3954] = {.lex_state = 697}, - [3955] = {.lex_state = 697}, - [3956] = {.lex_state = 751}, - [3957] = {.lex_state = 697}, - [3958] = {.lex_state = 751}, - [3959] = {.lex_state = 697}, - [3960] = {.lex_state = 697}, - [3961] = {.lex_state = 1840}, - [3962] = {.lex_state = 697}, - [3963] = {.lex_state = 697}, - [3964] = {.lex_state = 697}, - [3965] = {.lex_state = 1840}, - [3966] = {.lex_state = 709}, - [3967] = {.lex_state = 709}, - [3968] = {.lex_state = 709}, - [3969] = {.lex_state = 1840}, - [3970] = {.lex_state = 64}, - [3971] = {.lex_state = 64}, - [3972] = {.lex_state = 751}, - [3973] = {.lex_state = 64}, - [3974] = {.lex_state = 64}, - [3975] = {.lex_state = 64}, - [3976] = {.lex_state = 751}, - [3977] = {.lex_state = 710}, - [3978] = {.lex_state = 64}, - [3979] = {.lex_state = 751}, - [3980] = {.lex_state = 697}, - [3981] = {.lex_state = 697}, - [3982] = {.lex_state = 697}, - [3983] = {.lex_state = 697}, - [3984] = {.lex_state = 697}, - [3985] = {.lex_state = 64}, - [3986] = {.lex_state = 697}, - [3987] = {.lex_state = 64}, - [3988] = {.lex_state = 751}, - [3989] = {.lex_state = 64}, - [3990] = {.lex_state = 64}, - [3991] = {.lex_state = 751}, - [3992] = {.lex_state = 697}, - [3993] = {.lex_state = 64}, - [3994] = {.lex_state = 64}, - [3995] = {.lex_state = 751}, - [3996] = {.lex_state = 779}, - [3997] = {.lex_state = 710}, - [3998] = {.lex_state = 776}, - [3999] = {.lex_state = 779}, - [4000] = {.lex_state = 776}, - [4001] = {.lex_state = 778}, - [4002] = {.lex_state = 785}, - [4003] = {.lex_state = 776}, - [4004] = {.lex_state = 789}, - [4005] = {.lex_state = 776}, - [4006] = {.lex_state = 785}, - [4007] = {.lex_state = 778}, - [4008] = {.lex_state = 791}, - [4009] = {.lex_state = 791}, - [4010] = {.lex_state = 778}, - [4011] = {.lex_state = 777}, - [4012] = {.lex_state = 777}, - [4013] = {.lex_state = 789}, - [4014] = {.lex_state = 793}, - [4015] = {.lex_state = 795}, - [4016] = {.lex_state = 793}, - [4017] = {.lex_state = 791}, - [4018] = {.lex_state = 791}, - [4019] = {.lex_state = 793}, - [4020] = {.lex_state = 790}, - [4021] = {.lex_state = 778}, - [4022] = {.lex_state = 777}, - [4023] = {.lex_state = 793}, - [4024] = {.lex_state = 777}, - [4025] = {.lex_state = 787}, - [4026] = {.lex_state = 778}, - [4027] = {.lex_state = 710}, - [4028] = {.lex_state = 710}, - [4029] = {.lex_state = 778}, - [4030] = {.lex_state = 778}, - [4031] = {.lex_state = 793}, - [4032] = {.lex_state = 786}, - [4033] = {.lex_state = 778}, - [4034] = {.lex_state = 793}, - [4035] = {.lex_state = 797}, - [4036] = {.lex_state = 793}, - [4037] = {.lex_state = 795}, - [4038] = {.lex_state = 797}, - [4039] = {.lex_state = 793}, - [4040] = {.lex_state = 790}, - [4041] = {.lex_state = 793}, - [4042] = {.lex_state = 778}, - [4043] = {.lex_state = 778}, - [4044] = {.lex_state = 778}, - [4045] = {.lex_state = 793}, - [4046] = {.lex_state = 778}, - [4047] = {.lex_state = 792}, - [4048] = {.lex_state = 49}, - [4049] = {.lex_state = 64}, - [4050] = {.lex_state = 787}, - [4051] = {.lex_state = 710}, - [4052] = {.lex_state = 792}, - [4053] = {.lex_state = 794}, - [4054] = {.lex_state = 710}, - [4055] = {.lex_state = 786}, - [4056] = {.lex_state = 792}, - [4057] = {.lex_state = 792}, - [4058] = {.lex_state = 799}, - [4059] = {.lex_state = 799}, - [4060] = {.lex_state = 64}, - [4061] = {.lex_state = 794}, - [4062] = {.lex_state = 50}, - [4063] = {.lex_state = 799}, - [4064] = {.lex_state = 52}, - [4065] = {.lex_state = 797}, - [4066] = {.lex_state = 48}, - [4067] = {.lex_state = 796}, - [4068] = {.lex_state = 799}, - [4069] = {.lex_state = 799}, - [4070] = {.lex_state = 786}, - [4071] = {.lex_state = 794}, - [4072] = {.lex_state = 794}, - [4073] = {.lex_state = 794}, - [4074] = {.lex_state = 794}, - [4075] = {.lex_state = 786}, - [4076] = {.lex_state = 788}, - [4077] = {.lex_state = 786}, - [4078] = {.lex_state = 797}, - [4079] = {.lex_state = 49}, - [4080] = {.lex_state = 48}, - [4081] = {.lex_state = 799}, - [4082] = {.lex_state = 49}, - [4083] = {.lex_state = 49}, - [4084] = {.lex_state = 798}, - [4085] = {.lex_state = 786}, - [4086] = {.lex_state = 799}, - [4087] = {.lex_state = 798}, - [4088] = {.lex_state = 53}, - [4089] = {.lex_state = 794}, - [4090] = {.lex_state = 786}, - [4091] = {.lex_state = 794}, - [4092] = {.lex_state = 799}, - [4093] = {.lex_state = 53}, - [4094] = {.lex_state = 799}, - [4095] = {.lex_state = 796}, - [4096] = {.lex_state = 788}, - [4097] = {.lex_state = 786}, - [4098] = {.lex_state = 794}, - [4099] = {.lex_state = 799}, - [4100] = {.lex_state = 799}, - [4101] = {.lex_state = 49}, - [4102] = {.lex_state = 49}, - [4103] = {.lex_state = 794}, - [4104] = {.lex_state = 801}, - [4105] = {.lex_state = 799}, - [4106] = {.lex_state = 803}, - [4107] = {.lex_state = 786}, - [4108] = {.lex_state = 794}, - [4109] = {.lex_state = 54}, - [4110] = {.lex_state = 786}, - [4111] = {.lex_state = 786}, - [4112] = {.lex_state = 54}, - [4113] = {.lex_state = 801}, - [4114] = {.lex_state = 33}, - [4115] = {.lex_state = 794}, - [4116] = {.lex_state = 800}, - [4117] = {.lex_state = 54}, - [4118] = {.lex_state = 782}, - [4119] = {.lex_state = 782}, - [4120] = {.lex_state = 800}, - [4121] = {.lex_state = 805}, - [4122] = {.lex_state = 798}, - [4123] = {.lex_state = 33}, - [4124] = {.lex_state = 710}, - [4125] = {.lex_state = 710}, - [4126] = {.lex_state = 56}, - [4127] = {.lex_state = 54}, - [4128] = {.lex_state = 800}, - [4129] = {.lex_state = 54}, - [4130] = {.lex_state = 782}, - [4131] = {.lex_state = 51}, - [4132] = {.lex_state = 803}, - [4133] = {.lex_state = 800}, - [4134] = {.lex_state = 33}, - [4135] = {.lex_state = 782}, - [4136] = {.lex_state = 782}, - [4137] = {.lex_state = 800}, - [4138] = {.lex_state = 800}, - [4139] = {.lex_state = 782}, - [4140] = {.lex_state = 33}, - [4141] = {.lex_state = 710}, - [4142] = {.lex_state = 786}, - [4143] = {.lex_state = 805}, - [4144] = {.lex_state = 798}, - [4145] = {.lex_state = 802}, - [4146] = {.lex_state = 822}, - [4147] = {.lex_state = 802}, - [4148] = {.lex_state = 802}, - [4149] = {.lex_state = 802}, - [4150] = {.lex_state = 822}, - [4151] = {.lex_state = 807}, - [4152] = {.lex_state = 33}, - [4153] = {.lex_state = 33}, - [4154] = {.lex_state = 33}, - [4155] = {.lex_state = 807}, - [4156] = {.lex_state = 805}, - [4157] = {.lex_state = 807}, - [4158] = {.lex_state = 804}, - [4159] = {.lex_state = 782}, - [4160] = {.lex_state = 782}, - [4161] = {.lex_state = 33}, - [4162] = {.lex_state = 802}, - [4163] = {.lex_state = 802}, - [4164] = {.lex_state = 807}, - [4165] = {.lex_state = 802}, - [4166] = {.lex_state = 57}, - [4167] = {.lex_state = 33}, - [4168] = {.lex_state = 802}, - [4169] = {.lex_state = 807}, - [4170] = {.lex_state = 802}, - [4171] = {.lex_state = 822}, - [4172] = {.lex_state = 822}, - [4173] = {.lex_state = 802}, - [4174] = {.lex_state = 710}, - [4175] = {.lex_state = 786}, - [4176] = {.lex_state = 33}, - [4177] = {.lex_state = 822}, - [4178] = {.lex_state = 802}, - [4179] = {.lex_state = 800}, - [4180] = {.lex_state = 807}, - [4181] = {.lex_state = 807}, - [4182] = {.lex_state = 802}, - [4183] = {.lex_state = 802}, - [4184] = {.lex_state = 800}, - [4185] = {.lex_state = 710}, - [4186] = {.lex_state = 802}, - [4187] = {.lex_state = 782}, - [4188] = {.lex_state = 807}, - [4189] = {.lex_state = 710}, - [4190] = {.lex_state = 802}, - [4191] = {.lex_state = 802}, - [4192] = {.lex_state = 800}, - [4193] = {.lex_state = 800}, - [4194] = {.lex_state = 802}, - [4195] = {.lex_state = 782}, - [4196] = {.lex_state = 782}, - [4197] = {.lex_state = 800}, - [4198] = {.lex_state = 33}, - [4199] = {.lex_state = 802}, - [4200] = {.lex_state = 710}, - [4201] = {.lex_state = 802}, - [4202] = {.lex_state = 802}, - [4203] = {.lex_state = 710}, - [4204] = {.lex_state = 802}, - [4205] = {.lex_state = 57}, - [4206] = {.lex_state = 802}, - [4207] = {.lex_state = 802}, - [4208] = {.lex_state = 33}, - [4209] = {.lex_state = 807}, - [4210] = {.lex_state = 802}, - [4211] = {.lex_state = 782}, - [4212] = {.lex_state = 710}, - [4213] = {.lex_state = 802}, - [4214] = {.lex_state = 802}, - [4215] = {.lex_state = 33}, - [4216] = {.lex_state = 805}, - [4217] = {.lex_state = 800}, - [4218] = {.lex_state = 802}, - [4219] = {.lex_state = 802}, - [4220] = {.lex_state = 786}, - [4221] = {.lex_state = 786}, - [4222] = {.lex_state = 802}, - [4223] = {.lex_state = 802}, - [4224] = {.lex_state = 802}, - [4225] = {.lex_state = 33}, - [4226] = {.lex_state = 802}, - [4227] = {.lex_state = 790}, - [4228] = {.lex_state = 802}, - [4229] = {.lex_state = 806}, - [4230] = {.lex_state = 802}, - [4231] = {.lex_state = 802}, - [4232] = {.lex_state = 55}, - [4233] = {.lex_state = 802}, - [4234] = {.lex_state = 33}, - [4235] = {.lex_state = 802}, - [4236] = {.lex_state = 790}, - [4237] = {.lex_state = 802}, - [4238] = {.lex_state = 802}, - [4239] = {.lex_state = 802}, - [4240] = {.lex_state = 802}, - [4241] = {.lex_state = 265, .external_lex_state = 2}, - [4242] = {.lex_state = 802}, - [4243] = {.lex_state = 802}, - [4244] = {.lex_state = 822}, - [4245] = {.lex_state = 790}, - [4246] = {.lex_state = 802}, - [4247] = {.lex_state = 802}, - [4248] = {.lex_state = 802}, - [4249] = {.lex_state = 55}, - [4250] = {.lex_state = 790}, - [4251] = {.lex_state = 807}, - [4252] = {.lex_state = 786}, - [4253] = {.lex_state = 807}, - [4254] = {.lex_state = 790}, - [4255] = {.lex_state = 55}, - [4256] = {.lex_state = 807}, - [4257] = {.lex_state = 802}, - [4258] = {.lex_state = 790}, - [4259] = {.lex_state = 265, .external_lex_state = 2}, - [4260] = {.lex_state = 802}, - [4261] = {.lex_state = 804}, - [4262] = {.lex_state = 807}, - [4263] = {.lex_state = 802}, - [4264] = {.lex_state = 55}, - [4265] = {.lex_state = 802}, - [4266] = {.lex_state = 802}, - [4267] = {.lex_state = 802}, - [4268] = {.lex_state = 790}, - [4269] = {.lex_state = 265, .external_lex_state = 2}, - [4270] = {.lex_state = 790}, - [4271] = {.lex_state = 802}, - [4272] = {.lex_state = 710}, - [4273] = {.lex_state = 786}, - [4274] = {.lex_state = 265, .external_lex_state = 2}, - [4275] = {.lex_state = 802}, - [4276] = {.lex_state = 55}, - [4277] = {.lex_state = 711}, - [4278] = {.lex_state = 822}, - [4279] = {.lex_state = 807}, - [4280] = {.lex_state = 802}, - [4281] = {.lex_state = 822}, - [4282] = {.lex_state = 710}, - [4283] = {.lex_state = 807}, - [4284] = {.lex_state = 33}, - [4285] = {.lex_state = 802}, - [4286] = {.lex_state = 802}, - [4287] = {.lex_state = 802}, - [4288] = {.lex_state = 802}, - [4289] = {.lex_state = 33}, - [4290] = {.lex_state = 807}, - [4291] = {.lex_state = 790}, - [4292] = {.lex_state = 33}, - [4293] = {.lex_state = 790}, - [4294] = {.lex_state = 802}, - [4295] = {.lex_state = 33}, - [4296] = {.lex_state = 33}, - [4297] = {.lex_state = 711}, - [4298] = {.lex_state = 822}, - [4299] = {.lex_state = 33}, - [4300] = {.lex_state = 710}, - [4301] = {.lex_state = 55}, - [4302] = {.lex_state = 807}, - [4303] = {.lex_state = 802}, - [4304] = {.lex_state = 807}, - [4305] = {.lex_state = 33}, - [4306] = {.lex_state = 33}, - [4307] = {.lex_state = 807}, - [4308] = {.lex_state = 790}, - [4309] = {.lex_state = 822}, - [4310] = {.lex_state = 802}, - [4311] = {.lex_state = 786}, - [4312] = {.lex_state = 806}, - [4313] = {.lex_state = 802}, - [4314] = {.lex_state = 802}, - [4315] = {.lex_state = 33}, - [4316] = {.lex_state = 743}, - [4317] = {.lex_state = 778}, - [4318] = {.lex_state = 778}, - [4319] = {.lex_state = 808}, - [4320] = {.lex_state = 808}, - [4321] = {.lex_state = 778}, - [4322] = {.lex_state = 778}, - [4323] = {.lex_state = 802}, - [4324] = {.lex_state = 743}, - [4325] = {.lex_state = 743}, - [4326] = {.lex_state = 790}, - [4327] = {.lex_state = 743}, - [4328] = {.lex_state = 743}, - [4329] = {.lex_state = 711}, - [4330] = {.lex_state = 70}, - [4331] = {.lex_state = 743}, - [4332] = {.lex_state = 62}, - [4333] = {.lex_state = 743}, - [4334] = {.lex_state = 743}, - [4335] = {.lex_state = 808}, - [4336] = {.lex_state = 790}, - [4337] = {.lex_state = 743}, - [4338] = {.lex_state = 743}, - [4339] = {.lex_state = 743}, - [4340] = {.lex_state = 743}, - [4341] = {.lex_state = 743}, - [4342] = {.lex_state = 743}, - [4343] = {.lex_state = 70}, - [4344] = {.lex_state = 70}, - [4345] = {.lex_state = 808}, - [4346] = {.lex_state = 743}, - [4347] = {.lex_state = 743}, - [4348] = {.lex_state = 743}, - [4349] = {.lex_state = 743}, - [4350] = {.lex_state = 743}, - [4351] = {.lex_state = 58}, - [4352] = {.lex_state = 743}, - [4353] = {.lex_state = 743}, - [4354] = {.lex_state = 743}, - [4355] = {.lex_state = 743}, - [4356] = {.lex_state = 823}, - [4357] = {.lex_state = 70}, - [4358] = {.lex_state = 70}, - [4359] = {.lex_state = 70}, - [4360] = {.lex_state = 70}, - [4361] = {.lex_state = 70}, - [4362] = {.lex_state = 70}, - [4363] = {.lex_state = 70}, - [4364] = {.lex_state = 802}, - [4365] = {.lex_state = 70}, - [4366] = {.lex_state = 70}, - [4367] = {.lex_state = 33}, - [4368] = {.lex_state = 70}, - [4369] = {.lex_state = 70}, - [4370] = {.lex_state = 70}, - [4371] = {.lex_state = 819}, - [4372] = {.lex_state = 33}, - [4373] = {.lex_state = 33}, - [4374] = {.lex_state = 70}, - [4375] = {.lex_state = 70}, - [4376] = {.lex_state = 70}, - [4377] = {.lex_state = 711}, - [4378] = {.lex_state = 790}, - [4379] = {.lex_state = 790}, - [4380] = {.lex_state = 70}, - [4381] = {.lex_state = 70}, - [4382] = {.lex_state = 782}, - [4383] = {.lex_state = 790}, - [4384] = {.lex_state = 820}, - [4385] = {.lex_state = 819}, - [4386] = {.lex_state = 819}, - [4387] = {.lex_state = 790}, - [4388] = {.lex_state = 711}, - [4389] = {.lex_state = 62}, - [4390] = {.lex_state = 819}, - [4391] = {.lex_state = 70}, - [4392] = {.lex_state = 790}, - [4393] = {.lex_state = 819}, - [4394] = {.lex_state = 743}, - [4395] = {.lex_state = 778}, - [4396] = {.lex_state = 61}, - [4397] = {.lex_state = 711}, - [4398] = {.lex_state = 743}, - [4399] = {.lex_state = 806}, - [4400] = {.lex_state = 743}, - [4401] = {.lex_state = 743}, - [4402] = {.lex_state = 743}, - [4403] = {.lex_state = 743}, - [4404] = {.lex_state = 743}, - [4405] = {.lex_state = 743}, - [4406] = {.lex_state = 33}, - [4407] = {.lex_state = 743}, - [4408] = {.lex_state = 62}, - [4409] = {.lex_state = 743}, - [4410] = {.lex_state = 743}, - [4411] = {.lex_state = 743}, - [4412] = {.lex_state = 743}, - [4413] = {.lex_state = 743}, - [4414] = {.lex_state = 743}, - [4415] = {.lex_state = 743}, - [4416] = {.lex_state = 743}, - [4417] = {.lex_state = 743}, - [4418] = {.lex_state = 743}, - [4419] = {.lex_state = 790}, - [4420] = {.lex_state = 743}, - [4421] = {.lex_state = 790}, - [4422] = {.lex_state = 790}, - [4423] = {.lex_state = 790}, - [4424] = {.lex_state = 819}, - [4425] = {.lex_state = 743}, - [4426] = {.lex_state = 743}, - [4427] = {.lex_state = 743}, - [4428] = {.lex_state = 743}, - [4429] = {.lex_state = 743}, - [4430] = {.lex_state = 743}, - [4431] = {.lex_state = 743}, - [4432] = {.lex_state = 743}, - [4433] = {.lex_state = 743}, - [4434] = {.lex_state = 743}, - [4435] = {.lex_state = 743}, - [4436] = {.lex_state = 808}, - [4437] = {.lex_state = 743}, - [4438] = {.lex_state = 743}, - [4439] = {.lex_state = 743}, - [4440] = {.lex_state = 743}, - [4441] = {.lex_state = 743}, - [4442] = {.lex_state = 743}, - [4443] = {.lex_state = 743}, - [4444] = {.lex_state = 743}, - [4445] = {.lex_state = 743}, - [4446] = {.lex_state = 743}, - [4447] = {.lex_state = 823}, - [4448] = {.lex_state = 823}, - [4449] = {.lex_state = 743}, - [4450] = {.lex_state = 743}, - [4451] = {.lex_state = 743}, - [4452] = {.lex_state = 743}, - [4453] = {.lex_state = 743}, - [4454] = {.lex_state = 743}, - [4455] = {.lex_state = 743}, - [4456] = {.lex_state = 743}, - [4457] = {.lex_state = 743}, - [4458] = {.lex_state = 743}, - [4459] = {.lex_state = 743}, - [4460] = {.lex_state = 743}, - [4461] = {.lex_state = 808}, - [4462] = {.lex_state = 823}, - [4463] = {.lex_state = 808}, - [4464] = {.lex_state = 823}, - [4465] = {.lex_state = 743}, - [4466] = {.lex_state = 743}, - [4467] = {.lex_state = 743}, - [4468] = {.lex_state = 743}, - [4469] = {.lex_state = 806}, - [4470] = {.lex_state = 743}, - [4471] = {.lex_state = 743}, - [4472] = {.lex_state = 743}, - [4473] = {.lex_state = 743}, - [4474] = {.lex_state = 743}, - [4475] = {.lex_state = 743}, - [4476] = {.lex_state = 743}, - [4477] = {.lex_state = 743}, - [4478] = {.lex_state = 743}, - [4479] = {.lex_state = 743}, - [4480] = {.lex_state = 743}, - [4481] = {.lex_state = 743}, - [4482] = {.lex_state = 743}, - [4483] = {.lex_state = 743}, - [4484] = {.lex_state = 743}, - [4485] = {.lex_state = 743}, - [4486] = {.lex_state = 743}, - [4487] = {.lex_state = 70}, - [4488] = {.lex_state = 743}, - [4489] = {.lex_state = 743}, - [4490] = {.lex_state = 743}, - [4491] = {.lex_state = 808}, - [4492] = {.lex_state = 743}, - [4493] = {.lex_state = 743}, - [4494] = {.lex_state = 743}, - [4495] = {.lex_state = 743}, - [4496] = {.lex_state = 743}, - [4497] = {.lex_state = 743}, - [4498] = {.lex_state = 743}, - [4499] = {.lex_state = 743}, - [4500] = {.lex_state = 807}, - [4501] = {.lex_state = 62}, - [4502] = {.lex_state = 743}, - [4503] = {.lex_state = 743}, - [4504] = {.lex_state = 743}, - [4505] = {.lex_state = 743}, - [4506] = {.lex_state = 743}, - [4507] = {.lex_state = 743}, - [4508] = {.lex_state = 743}, - [4509] = {.lex_state = 743}, - [4510] = {.lex_state = 743}, - [4511] = {.lex_state = 743}, - [4512] = {.lex_state = 743}, - [4513] = {.lex_state = 743}, - [4514] = {.lex_state = 808}, - [4515] = {.lex_state = 802}, - [4516] = {.lex_state = 70}, - [4517] = {.lex_state = 743}, - [4518] = {.lex_state = 743}, - [4519] = {.lex_state = 743}, - [4520] = {.lex_state = 743}, - [4521] = {.lex_state = 743}, - [4522] = {.lex_state = 711}, - [4523] = {.lex_state = 743}, - [4524] = {.lex_state = 743}, - [4525] = {.lex_state = 33}, - [4526] = {.lex_state = 778}, - [4527] = {.lex_state = 778}, - [4528] = {.lex_state = 819}, - [4529] = {.lex_state = 743}, - [4530] = {.lex_state = 782}, - [4531] = {.lex_state = 745}, - [4532] = {.lex_state = 33}, - [4533] = {.lex_state = 33}, - [4534] = {.lex_state = 808}, - [4535] = {.lex_state = 802}, - [4536] = {.lex_state = 820}, - [4537] = {.lex_state = 33}, - [4538] = {.lex_state = 819}, - [4539] = {.lex_state = 778}, - [4540] = {.lex_state = 743}, - [4541] = {.lex_state = 711}, - [4542] = {.lex_state = 33}, - [4543] = {.lex_state = 819}, - [4544] = {.lex_state = 808}, - [4545] = {.lex_state = 15}, - [4546] = {.lex_state = 745}, - [4547] = {.lex_state = 59}, - [4548] = {.lex_state = 33}, - [4549] = {.lex_state = 33}, - [4550] = {.lex_state = 33}, - [4551] = {.lex_state = 33}, - [4552] = {.lex_state = 70}, - [4553] = {.lex_state = 743}, - [4554] = {.lex_state = 743}, - [4555] = {.lex_state = 819}, - [4556] = {.lex_state = 33}, - [4557] = {.lex_state = 778}, - [4558] = {.lex_state = 33}, - [4559] = {.lex_state = 778}, - [4560] = {.lex_state = 808}, - [4561] = {.lex_state = 15}, - [4562] = {.lex_state = 745}, - [4563] = {.lex_state = 778}, - [4564] = {.lex_state = 70}, - [4565] = {.lex_state = 743}, - [4566] = {.lex_state = 802}, - [4567] = {.lex_state = 819}, - [4568] = {.lex_state = 743}, - [4569] = {.lex_state = 33}, - [4570] = {.lex_state = 808}, - [4571] = {.lex_state = 745}, - [4572] = {.lex_state = 742}, - [4573] = {.lex_state = 743}, - [4574] = {.lex_state = 33}, - [4575] = {.lex_state = 743}, - [4576] = {.lex_state = 743}, - [4577] = {.lex_state = 778}, - [4578] = {.lex_state = 33}, - [4579] = {.lex_state = 743}, - [4580] = {.lex_state = 819}, - [4581] = {.lex_state = 33}, - [4582] = {.lex_state = 743}, - [4583] = {.lex_state = 743}, - [4584] = {.lex_state = 808}, - [4585] = {.lex_state = 782}, - [4586] = {.lex_state = 782}, - [4587] = {.lex_state = 743}, - [4588] = {.lex_state = 743}, - [4589] = {.lex_state = 808}, - [4590] = {.lex_state = 711}, - [4591] = {.lex_state = 778}, - [4592] = {.lex_state = 33}, - [4593] = {.lex_state = 33}, - [4594] = {.lex_state = 802}, - [4595] = {.lex_state = 743}, - [4596] = {.lex_state = 823}, - [4597] = {.lex_state = 808}, - [4598] = {.lex_state = 742}, - [4599] = {.lex_state = 743}, - [4600] = {.lex_state = 809}, - [4601] = {.lex_state = 823}, - [4602] = {.lex_state = 810}, - [4603] = {.lex_state = 802}, - [4604] = {.lex_state = 808}, - [4605] = {.lex_state = 33}, - [4606] = {.lex_state = 33}, - [4607] = {.lex_state = 33}, - [4608] = {.lex_state = 743}, - [4609] = {.lex_state = 823}, - [4610] = {.lex_state = 743}, - [4611] = {.lex_state = 59}, - [4612] = {.lex_state = 33}, - [4613] = {.lex_state = 745}, - [4614] = {.lex_state = 33}, - [4615] = {.lex_state = 808}, - [4616] = {.lex_state = 743}, - [4617] = {.lex_state = 33}, - [4618] = {.lex_state = 808}, - [4619] = {.lex_state = 823}, - [4620] = {.lex_state = 823}, - [4621] = {.lex_state = 743}, - [4622] = {.lex_state = 33}, - [4623] = {.lex_state = 743}, - [4624] = {.lex_state = 86}, - [4625] = {.lex_state = 711}, - [4626] = {.lex_state = 743}, - [4627] = {.lex_state = 271}, - [4628] = {.lex_state = 15}, - [4629] = {.lex_state = 742}, - [4630] = {.lex_state = 745}, - [4631] = {.lex_state = 743}, - [4632] = {.lex_state = 743}, - [4633] = {.lex_state = 60}, - [4634] = {.lex_state = 743}, - [4635] = {.lex_state = 33}, - [4636] = {.lex_state = 745}, - [4637] = {.lex_state = 745}, - [4638] = {.lex_state = 745}, - [4639] = {.lex_state = 778}, - [4640] = {.lex_state = 33}, - [4641] = {.lex_state = 745}, - [4642] = {.lex_state = 745}, - [4643] = {.lex_state = 743}, - [4644] = {.lex_state = 745}, - [4645] = {.lex_state = 60}, - [4646] = {.lex_state = 745}, - [4647] = {.lex_state = 802}, - [4648] = {.lex_state = 743}, - [4649] = {.lex_state = 745}, - [4650] = {.lex_state = 808}, - [4651] = {.lex_state = 745}, - [4652] = {.lex_state = 745}, - [4653] = {.lex_state = 745}, - [4654] = {.lex_state = 802}, - [4655] = {.lex_state = 15}, - [4656] = {.lex_state = 60}, - [4657] = {.lex_state = 745}, - [4658] = {.lex_state = 745}, - [4659] = {.lex_state = 55}, - [4660] = {.lex_state = 745}, - [4661] = {.lex_state = 782}, - [4662] = {.lex_state = 778}, - [4663] = {.lex_state = 55}, - [4664] = {.lex_state = 60}, - [4665] = {.lex_state = 86}, - [4666] = {.lex_state = 60}, - [4667] = {.lex_state = 60}, - [4668] = {.lex_state = 742}, - [4669] = {.lex_state = 743}, - [4670] = {.lex_state = 711}, - [4671] = {.lex_state = 743}, - [4672] = {.lex_state = 743}, - [4673] = {.lex_state = 743}, - [4674] = {.lex_state = 743}, - [4675] = {.lex_state = 743}, - [4676] = {.lex_state = 745}, - [4677] = {.lex_state = 745}, - [4678] = {.lex_state = 745}, - [4679] = {.lex_state = 55}, - [4680] = {.lex_state = 745}, - [4681] = {.lex_state = 745}, - [4682] = {.lex_state = 745}, - [4683] = {.lex_state = 745}, - [4684] = {.lex_state = 745}, - [4685] = {.lex_state = 745}, - [4686] = {.lex_state = 86}, - [4687] = {.lex_state = 745}, - [4688] = {.lex_state = 711}, - [4689] = {.lex_state = 745}, - [4690] = {.lex_state = 86}, - [4691] = {.lex_state = 745}, - [4692] = {.lex_state = 809}, - [4693] = {.lex_state = 743}, - [4694] = {.lex_state = 743}, - [4695] = {.lex_state = 745}, - [4696] = {.lex_state = 745}, - [4697] = {.lex_state = 745}, - [4698] = {.lex_state = 810}, - [4699] = {.lex_state = 743}, - [4700] = {.lex_state = 743}, - [4701] = {.lex_state = 55}, - [4702] = {.lex_state = 745}, - [4703] = {.lex_state = 745}, - [4704] = {.lex_state = 811}, - [4705] = {.lex_state = 33}, - [4706] = {.lex_state = 743}, - [4707] = {.lex_state = 811}, - [4708] = {.lex_state = 70}, - [4709] = {.lex_state = 70}, - [4710] = {.lex_state = 745}, - [4711] = {.lex_state = 745}, - [4712] = {.lex_state = 745}, - [4713] = {.lex_state = 745}, - [4714] = {.lex_state = 745}, - [4715] = {.lex_state = 745}, - [4716] = {.lex_state = 745}, - [4717] = {.lex_state = 745}, - [4718] = {.lex_state = 745}, - [4719] = {.lex_state = 745}, - [4720] = {.lex_state = 745}, - [4721] = {.lex_state = 70}, - [4722] = {.lex_state = 61}, - [4723] = {.lex_state = 70}, - [4724] = {.lex_state = 70}, - [4725] = {.lex_state = 782}, - [4726] = {.lex_state = 70}, - [4727] = {.lex_state = 742}, - [4728] = {.lex_state = 778}, - [4729] = {.lex_state = 745}, - [4730] = {.lex_state = 743}, - [4731] = {.lex_state = 745}, - [4732] = {.lex_state = 745}, - [4733] = {.lex_state = 745}, - [4734] = {.lex_state = 745}, - [4735] = {.lex_state = 745}, - [4736] = {.lex_state = 33}, - [4737] = {.lex_state = 743}, - [4738] = {.lex_state = 743}, - [4739] = {.lex_state = 745}, - [4740] = {.lex_state = 745}, - [4741] = {.lex_state = 33}, - [4742] = {.lex_state = 745}, - [4743] = {.lex_state = 60}, - [4744] = {.lex_state = 60}, - [4745] = {.lex_state = 742}, - [4746] = {.lex_state = 745}, - [4747] = {.lex_state = 745}, - [4748] = {.lex_state = 55}, - [4749] = {.lex_state = 745}, - [4750] = {.lex_state = 33}, - [4751] = {.lex_state = 745}, - [4752] = {.lex_state = 745}, - [4753] = {.lex_state = 15}, - [4754] = {.lex_state = 15}, - [4755] = {.lex_state = 745}, - [4756] = {.lex_state = 745}, - [4757] = {.lex_state = 745}, - [4758] = {.lex_state = 745}, - [4759] = {.lex_state = 745}, - [4760] = {.lex_state = 745}, - [4761] = {.lex_state = 711}, - [4762] = {.lex_state = 15}, - [4763] = {.lex_state = 745}, - [4764] = {.lex_state = 745}, - [4765] = {.lex_state = 86}, - [4766] = {.lex_state = 745}, - [4767] = {.lex_state = 745}, - [4768] = {.lex_state = 55}, - [4769] = {.lex_state = 745}, - [4770] = {.lex_state = 745}, - [4771] = {.lex_state = 745}, - [4772] = {.lex_state = 60}, - [4773] = {.lex_state = 745}, - [4774] = {.lex_state = 745}, - [4775] = {.lex_state = 745}, - [4776] = {.lex_state = 55}, - [4777] = {.lex_state = 745}, - [4778] = {.lex_state = 743}, - [4779] = {.lex_state = 745}, - [4780] = {.lex_state = 802}, - [4781] = {.lex_state = 745}, - [4782] = {.lex_state = 745}, - [4783] = {.lex_state = 745}, - [4784] = {.lex_state = 745}, - [4785] = {.lex_state = 745}, - [4786] = {.lex_state = 745}, - [4787] = {.lex_state = 745}, - [4788] = {.lex_state = 745}, - [4789] = {.lex_state = 745}, - [4790] = {.lex_state = 745}, - [4791] = {.lex_state = 745}, - [4792] = {.lex_state = 745}, - [4793] = {.lex_state = 55}, - [4794] = {.lex_state = 745}, - [4795] = {.lex_state = 745}, - [4796] = {.lex_state = 33}, - [4797] = {.lex_state = 33}, - [4798] = {.lex_state = 33}, - [4799] = {.lex_state = 743}, - [4800] = {.lex_state = 745}, - [4801] = {.lex_state = 742}, - [4802] = {.lex_state = 33}, - [4803] = {.lex_state = 275}, - [4804] = {.lex_state = 742}, - [4805] = {.lex_state = 745}, - [4806] = {.lex_state = 742}, - [4807] = {.lex_state = 745}, - [4808] = {.lex_state = 742}, - [4809] = {.lex_state = 745}, - [4810] = {.lex_state = 33}, - [4811] = {.lex_state = 745}, - [4812] = {.lex_state = 745}, - [4813] = {.lex_state = 745}, - [4814] = {.lex_state = 745}, - [4815] = {.lex_state = 745}, - [4816] = {.lex_state = 33}, - [4817] = {.lex_state = 745}, - [4818] = {.lex_state = 33}, - [4819] = {.lex_state = 745}, - [4820] = {.lex_state = 70}, - [4821] = {.lex_state = 745}, - [4822] = {.lex_state = 33}, - [4823] = {.lex_state = 745}, - [4824] = {.lex_state = 745}, - [4825] = {.lex_state = 745}, - [4826] = {.lex_state = 742}, - [4827] = {.lex_state = 745}, - [4828] = {.lex_state = 267}, - [4829] = {.lex_state = 782}, - [4830] = {.lex_state = 55}, - [4831] = {.lex_state = 745}, - [4832] = {.lex_state = 745}, - [4833] = {.lex_state = 745}, - [4834] = {.lex_state = 33}, - [4835] = {.lex_state = 33}, - [4836] = {.lex_state = 33}, - [4837] = {.lex_state = 745}, - [4838] = {.lex_state = 33}, - [4839] = {.lex_state = 745}, - [4840] = {.lex_state = 745}, + [3694] = {.lex_state = 42, .external_lex_state = 2}, + [3695] = {.lex_state = 23}, + [3696] = {.lex_state = 97}, + [3697] = {.lex_state = 2253}, + [3698] = {.lex_state = 97}, + [3699] = {.lex_state = 97}, + [3700] = {.lex_state = 42, .external_lex_state = 2}, + [3701] = {.lex_state = 42, .external_lex_state = 2}, + [3702] = {.lex_state = 22}, + [3703] = {.lex_state = 22}, + [3704] = {.lex_state = 23}, + [3705] = {.lex_state = 22}, + [3706] = {.lex_state = 22}, + [3707] = {.lex_state = 42, .external_lex_state = 2}, + [3708] = {.lex_state = 42, .external_lex_state = 2}, + [3709] = {.lex_state = 23}, + [3710] = {.lex_state = 23}, + [3711] = {.lex_state = 3743}, + [3712] = {.lex_state = 23}, + [3713] = {.lex_state = 23}, + [3714] = {.lex_state = 2264}, + [3715] = {.lex_state = 97}, + [3716] = {.lex_state = 42, .external_lex_state = 2}, + [3717] = {.lex_state = 2263}, + [3718] = {.lex_state = 2263}, + [3719] = {.lex_state = 2264}, + [3720] = {.lex_state = 63}, + [3721] = {.lex_state = 23}, + [3722] = {.lex_state = 42, .external_lex_state = 2}, + [3723] = {.lex_state = 23}, + [3724] = {.lex_state = 42, .external_lex_state = 2}, + [3725] = {.lex_state = 42, .external_lex_state = 2}, + [3726] = {.lex_state = 42, .external_lex_state = 2}, + [3727] = {.lex_state = 42, .external_lex_state = 2}, + [3728] = {.lex_state = 42, .external_lex_state = 2}, + [3729] = {.lex_state = 97}, + [3730] = {.lex_state = 2253}, + [3731] = {.lex_state = 2253}, + [3732] = {.lex_state = 2253}, + [3733] = {.lex_state = 2264}, + [3734] = {.lex_state = 96}, + [3735] = {.lex_state = 2253}, + [3736] = {.lex_state = 3746}, + [3737] = {.lex_state = 2253}, + [3738] = {.lex_state = 2297}, + [3739] = {.lex_state = 96}, + [3740] = {.lex_state = 96}, + [3741] = {.lex_state = 2253}, + [3742] = {.lex_state = 2253}, + [3743] = {.lex_state = 2253}, + [3744] = {.lex_state = 2253}, + [3745] = {.lex_state = 21}, + [3746] = {.lex_state = 2253}, + [3747] = {.lex_state = 2297}, + [3748] = {.lex_state = 3746}, + [3749] = {.lex_state = 2253}, + [3750] = {.lex_state = 2253}, + [3751] = {.lex_state = 2297}, + [3752] = {.lex_state = 2253}, + [3753] = {.lex_state = 2253}, + [3754] = {.lex_state = 2297}, + [3755] = {.lex_state = 2297}, + [3756] = {.lex_state = 2297}, + [3757] = {.lex_state = 2297}, + [3758] = {.lex_state = 2297}, + [3759] = {.lex_state = 2297}, + [3760] = {.lex_state = 2253}, + [3761] = {.lex_state = 2253}, + [3762] = {.lex_state = 2253}, + [3763] = {.lex_state = 2253}, + [3764] = {.lex_state = 2253}, + [3765] = {.lex_state = 2253}, + [3766] = {.lex_state = 96}, + [3767] = {.lex_state = 2253}, + [3768] = {.lex_state = 2253}, + [3769] = {.lex_state = 95}, + [3770] = {.lex_state = 2253}, + [3771] = {.lex_state = 2253}, + [3772] = {.lex_state = 2253}, + [3773] = {.lex_state = 2253}, + [3774] = {.lex_state = 2253}, + [3775] = {.lex_state = 2297}, + [3776] = {.lex_state = 2253}, + [3777] = {.lex_state = 2253}, + [3778] = {.lex_state = 2253}, + [3779] = {.lex_state = 2253}, + [3780] = {.lex_state = 2253}, + [3781] = {.lex_state = 2253}, + [3782] = {.lex_state = 2253}, + [3783] = {.lex_state = 2253}, + [3784] = {.lex_state = 2253}, + [3785] = {.lex_state = 2297}, + [3786] = {.lex_state = 2297}, + [3787] = {.lex_state = 2253}, + [3788] = {.lex_state = 2253}, + [3789] = {.lex_state = 2264}, + [3790] = {.lex_state = 2253}, + [3791] = {.lex_state = 2253}, + [3792] = {.lex_state = 3746}, + [3793] = {.lex_state = 2253}, + [3794] = {.lex_state = 2253}, + [3795] = {.lex_state = 3746}, + [3796] = {.lex_state = 2253}, + [3797] = {.lex_state = 2253}, + [3798] = {.lex_state = 2253}, + [3799] = {.lex_state = 2253}, + [3800] = {.lex_state = 3746}, + [3801] = {.lex_state = 2297}, + [3802] = {.lex_state = 2253}, + [3803] = {.lex_state = 2253}, + [3804] = {.lex_state = 3746}, + [3805] = {.lex_state = 2253}, + [3806] = {.lex_state = 2253}, + [3807] = {.lex_state = 2253}, + [3808] = {.lex_state = 3746}, + [3809] = {.lex_state = 3746}, + [3810] = {.lex_state = 2253}, + [3811] = {.lex_state = 2253}, + [3812] = {.lex_state = 3746}, + [3813] = {.lex_state = 2253}, + [3814] = {.lex_state = 2253}, + [3815] = {.lex_state = 2253}, + [3816] = {.lex_state = 2253}, + [3817] = {.lex_state = 2253}, + [3818] = {.lex_state = 2297}, + [3819] = {.lex_state = 2253}, + [3820] = {.lex_state = 3746}, + [3821] = {.lex_state = 2297}, + [3822] = {.lex_state = 96}, + [3823] = {.lex_state = 2253}, + [3824] = {.lex_state = 2253}, + [3825] = {.lex_state = 2253}, + [3826] = {.lex_state = 2253}, + [3827] = {.lex_state = 2253}, + [3828] = {.lex_state = 2253}, + [3829] = {.lex_state = 2253}, + [3830] = {.lex_state = 2253}, + [3831] = {.lex_state = 2253}, + [3832] = {.lex_state = 2253}, + [3833] = {.lex_state = 2253}, + [3834] = {.lex_state = 2253}, + [3835] = {.lex_state = 3746}, + [3836] = {.lex_state = 2253}, + [3837] = {.lex_state = 2253}, + [3838] = {.lex_state = 2253}, + [3839] = {.lex_state = 2253}, + [3840] = {.lex_state = 2253}, + [3841] = {.lex_state = 2253}, + [3842] = {.lex_state = 2253}, + [3843] = {.lex_state = 2253}, + [3844] = {.lex_state = 2253}, + [3845] = {.lex_state = 2253}, + [3846] = {.lex_state = 2253}, + [3847] = {.lex_state = 2253}, + [3848] = {.lex_state = 2253}, + [3849] = {.lex_state = 2253}, + [3850] = {.lex_state = 2253}, + [3851] = {.lex_state = 2253}, + [3852] = {.lex_state = 2253}, + [3853] = {.lex_state = 2253}, + [3854] = {.lex_state = 2253}, + [3855] = {.lex_state = 2253}, + [3856] = {.lex_state = 2253}, + [3857] = {.lex_state = 2253}, + [3858] = {.lex_state = 2253}, + [3859] = {.lex_state = 2253}, + [3860] = {.lex_state = 2253}, + [3861] = {.lex_state = 3746}, + [3862] = {.lex_state = 63}, + [3863] = {.lex_state = 23}, + [3864] = {.lex_state = 2305}, + [3865] = {.lex_state = 2253}, + [3866] = {.lex_state = 63}, + [3867] = {.lex_state = 2253}, + [3868] = {.lex_state = 23}, + [3869] = {.lex_state = 23}, + [3870] = {.lex_state = 23}, + [3871] = {.lex_state = 23}, + [3872] = {.lex_state = 23}, + [3873] = {.lex_state = 23}, + [3874] = {.lex_state = 23}, + [3875] = {.lex_state = 23}, + [3876] = {.lex_state = 23}, + [3877] = {.lex_state = 23}, + [3878] = {.lex_state = 63}, + [3879] = {.lex_state = 23}, + [3880] = {.lex_state = 23}, + [3881] = {.lex_state = 23}, + [3882] = {.lex_state = 23}, + [3883] = {.lex_state = 63}, + [3884] = {.lex_state = 23}, + [3885] = {.lex_state = 23}, + [3886] = {.lex_state = 63}, + [3887] = {.lex_state = 94}, + [3888] = {.lex_state = 2305}, + [3889] = {.lex_state = 63}, + [3890] = {.lex_state = 23}, + [3891] = {.lex_state = 2253}, + [3892] = {.lex_state = 63}, + [3893] = {.lex_state = 23}, + [3894] = {.lex_state = 63}, + [3895] = {.lex_state = 63}, + [3896] = {.lex_state = 63}, + [3897] = {.lex_state = 63}, + [3898] = {.lex_state = 63}, + [3899] = {.lex_state = 2253}, + [3900] = {.lex_state = 63}, + [3901] = {.lex_state = 63}, + [3902] = {.lex_state = 23}, + [3903] = {.lex_state = 23}, + [3904] = {.lex_state = 23}, + [3905] = {.lex_state = 23}, + [3906] = {.lex_state = 63}, + [3907] = {.lex_state = 23}, + [3908] = {.lex_state = 63}, + [3909] = {.lex_state = 23}, + [3910] = {.lex_state = 63}, + [3911] = {.lex_state = 23}, + [3912] = {.lex_state = 2253}, + [3913] = {.lex_state = 23}, + [3914] = {.lex_state = 63}, + [3915] = {.lex_state = 2253}, + [3916] = {.lex_state = 63}, + [3917] = {.lex_state = 23}, + [3918] = {.lex_state = 23}, + [3919] = {.lex_state = 23}, + [3920] = {.lex_state = 23}, + [3921] = {.lex_state = 23}, + [3922] = {.lex_state = 63}, + [3923] = {.lex_state = 63}, + [3924] = {.lex_state = 63}, + [3925] = {.lex_state = 63}, + [3926] = {.lex_state = 63}, + [3927] = {.lex_state = 23}, + [3928] = {.lex_state = 63}, + [3929] = {.lex_state = 23}, + [3930] = {.lex_state = 23}, + [3931] = {.lex_state = 63}, + [3932] = {.lex_state = 3747}, + [3933] = {.lex_state = 2253}, + [3934] = {.lex_state = 3747}, + [3935] = {.lex_state = 2305}, + [3936] = {.lex_state = 3747}, + [3937] = {.lex_state = 2305}, + [3938] = {.lex_state = 2253}, + [3939] = {.lex_state = 2263}, + [3940] = {.lex_state = 2253}, + [3941] = {.lex_state = 2263}, + [3942] = {.lex_state = 2253}, + [3943] = {.lex_state = 2263}, + [3944] = {.lex_state = 2263}, + [3945] = {.lex_state = 2305}, + [3946] = {.lex_state = 2253}, + [3947] = {.lex_state = 3747}, + [3948] = {.lex_state = 2263}, + [3949] = {.lex_state = 2253}, + [3950] = {.lex_state = 2305}, + [3951] = {.lex_state = 3747}, + [3952] = {.lex_state = 2253}, + [3953] = {.lex_state = 2253}, + [3954] = {.lex_state = 2305}, + [3955] = {.lex_state = 3747}, + [3956] = {.lex_state = 2253}, + [3957] = {.lex_state = 2263}, + [3958] = {.lex_state = 2253}, + [3959] = {.lex_state = 2253}, + [3960] = {.lex_state = 3747}, + [3961] = {.lex_state = 2263}, + [3962] = {.lex_state = 2263}, + [3963] = {.lex_state = 3747}, + [3964] = {.lex_state = 2263}, + [3965] = {.lex_state = 2263}, + [3966] = {.lex_state = 2263}, + [3967] = {.lex_state = 2263}, + [3968] = {.lex_state = 3747}, + [3969] = {.lex_state = 2253}, + [3970] = {.lex_state = 2305}, + [3971] = {.lex_state = 63}, + [3972] = {.lex_state = 2253}, + [3973] = {.lex_state = 63}, + [3974] = {.lex_state = 63}, + [3975] = {.lex_state = 63}, + [3976] = {.lex_state = 2253}, + [3977] = {.lex_state = 2305}, + [3978] = {.lex_state = 63}, + [3979] = {.lex_state = 2305}, + [3980] = {.lex_state = 2253}, + [3981] = {.lex_state = 2253}, + [3982] = {.lex_state = 2253}, + [3983] = {.lex_state = 63}, + [3984] = {.lex_state = 2305}, + [3985] = {.lex_state = 2264}, + [3986] = {.lex_state = 63}, + [3987] = {.lex_state = 63}, + [3988] = {.lex_state = 2305}, + [3989] = {.lex_state = 63}, + [3990] = {.lex_state = 2253}, + [3991] = {.lex_state = 2305}, + [3992] = {.lex_state = 63}, + [3993] = {.lex_state = 63}, + [3994] = {.lex_state = 2253}, + [3995] = {.lex_state = 63}, + [3996] = {.lex_state = 2264}, + [3997] = {.lex_state = 2333}, + [3998] = {.lex_state = 2333}, + [3999] = {.lex_state = 2330}, + [4000] = {.lex_state = 2330}, + [4001] = {.lex_state = 2330}, + [4002] = {.lex_state = 2343}, + [4003] = {.lex_state = 2330}, + [4004] = {.lex_state = 2332}, + [4005] = {.lex_state = 2339}, + [4006] = {.lex_state = 2345}, + [4007] = {.lex_state = 2343}, + [4008] = {.lex_state = 2332}, + [4009] = {.lex_state = 2345}, + [4010] = {.lex_state = 2332}, + [4011] = {.lex_state = 2331}, + [4012] = {.lex_state = 2347}, + [4013] = {.lex_state = 2331}, + [4014] = {.lex_state = 2339}, + [4015] = {.lex_state = 2264}, + [4016] = {.lex_state = 2340}, + [4017] = {.lex_state = 2264}, + [4018] = {.lex_state = 2347}, + [4019] = {.lex_state = 2347}, + [4020] = {.lex_state = 2332}, + [4021] = {.lex_state = 2349}, + [4022] = {.lex_state = 2345}, + [4023] = {.lex_state = 2347}, + [4024] = {.lex_state = 2344}, + [4025] = {.lex_state = 2332}, + [4026] = {.lex_state = 2345}, + [4027] = {.lex_state = 2331}, + [4028] = {.lex_state = 2341}, + [4029] = {.lex_state = 2347}, + [4030] = {.lex_state = 2331}, + [4031] = {.lex_state = 2332}, + [4032] = {.lex_state = 2347}, + [4033] = {.lex_state = 2332}, + [4034] = {.lex_state = 2332}, + [4035] = {.lex_state = 2351}, + [4036] = {.lex_state = 2264}, + [4037] = {.lex_state = 2341}, + [4038] = {.lex_state = 2347}, + [4039] = {.lex_state = 2346}, + [4040] = {.lex_state = 2347}, + [4041] = {.lex_state = 2332}, + [4042] = {.lex_state = 63}, + [4043] = {.lex_state = 2264}, + [4044] = {.lex_state = 2332}, + [4045] = {.lex_state = 2347}, + [4046] = {.lex_state = 2348}, + [4047] = {.lex_state = 2332}, + [4048] = {.lex_state = 48}, + [4049] = {.lex_state = 2347}, + [4050] = {.lex_state = 2346}, + [4051] = {.lex_state = 2340}, + [4052] = {.lex_state = 2349}, + [4053] = {.lex_state = 2351}, + [4054] = {.lex_state = 2332}, + [4055] = {.lex_state = 2344}, + [4056] = {.lex_state = 2353}, + [4057] = {.lex_state = 2348}, + [4058] = {.lex_state = 2351}, + [4059] = {.lex_state = 2348}, + [4060] = {.lex_state = 47}, + [4061] = {.lex_state = 2353}, + [4062] = {.lex_state = 2346}, + [4063] = {.lex_state = 2353}, + [4064] = {.lex_state = 2351}, + [4065] = {.lex_state = 2348}, + [4066] = {.lex_state = 2340}, + [4067] = {.lex_state = 2353}, + [4068] = {.lex_state = 63}, + [4069] = {.lex_state = 48}, + [4070] = {.lex_state = 2350}, + [4071] = {.lex_state = 47}, + [4072] = {.lex_state = 49}, + [4073] = {.lex_state = 2353}, + [4074] = {.lex_state = 2340}, + [4075] = {.lex_state = 2342}, + [4076] = {.lex_state = 2346}, + [4077] = {.lex_state = 2353}, + [4078] = {.lex_state = 51}, + [4079] = {.lex_state = 2348}, + [4080] = {.lex_state = 2348}, + [4081] = {.lex_state = 2340}, + [4082] = {.lex_state = 2348}, + [4083] = {.lex_state = 2340}, + [4084] = {.lex_state = 2353}, + [4085] = {.lex_state = 2355}, + [4086] = {.lex_state = 2357}, + [4087] = {.lex_state = 48}, + [4088] = {.lex_state = 2352}, + [4089] = {.lex_state = 2348}, + [4090] = {.lex_state = 2340}, + [4091] = {.lex_state = 2340}, + [4092] = {.lex_state = 2353}, + [4093] = {.lex_state = 2348}, + [4094] = {.lex_state = 48}, + [4095] = {.lex_state = 48}, + [4096] = {.lex_state = 2348}, + [4097] = {.lex_state = 2353}, + [4098] = {.lex_state = 48}, + [4099] = {.lex_state = 2353}, + [4100] = {.lex_state = 2348}, + [4101] = {.lex_state = 2342}, + [4102] = {.lex_state = 2353}, + [4103] = {.lex_state = 2353}, + [4104] = {.lex_state = 2350}, + [4105] = {.lex_state = 52}, + [4106] = {.lex_state = 2340}, + [4107] = {.lex_state = 2352}, + [4108] = {.lex_state = 2340}, + [4109] = {.lex_state = 53}, + [4110] = {.lex_state = 52}, + [4111] = {.lex_state = 2354}, + [4112] = {.lex_state = 32}, + [4113] = {.lex_state = 2355}, + [4114] = {.lex_state = 2354}, + [4115] = {.lex_state = 32}, + [4116] = {.lex_state = 55}, + [4117] = {.lex_state = 2354}, + [4118] = {.lex_state = 53}, + [4119] = {.lex_state = 53}, + [4120] = {.lex_state = 53}, + [4121] = {.lex_state = 53}, + [4122] = {.lex_state = 2352}, + [4123] = {.lex_state = 50}, + [4124] = {.lex_state = 32}, + [4125] = {.lex_state = 32}, + [4126] = {.lex_state = 2340}, + [4127] = {.lex_state = 2359}, + [4128] = {.lex_state = 2352}, + [4129] = {.lex_state = 2264}, + [4130] = {.lex_state = 2340}, + [4131] = {.lex_state = 2264}, + [4132] = {.lex_state = 2264}, + [4133] = {.lex_state = 2357}, + [4134] = {.lex_state = 2336}, + [4135] = {.lex_state = 2336}, + [4136] = {.lex_state = 2354}, + [4137] = {.lex_state = 2336}, + [4138] = {.lex_state = 2336}, + [4139] = {.lex_state = 2336}, + [4140] = {.lex_state = 2336}, + [4141] = {.lex_state = 2354}, + [4142] = {.lex_state = 2359}, + [4143] = {.lex_state = 2354}, + [4144] = {.lex_state = 2348}, + [4145] = {.lex_state = 2356}, + [4146] = {.lex_state = 2356}, + [4147] = {.lex_state = 32}, + [4148] = {.lex_state = 2356}, + [4149] = {.lex_state = 2356}, + [4150] = {.lex_state = 2356}, + [4151] = {.lex_state = 2356}, + [4152] = {.lex_state = 2356}, + [4153] = {.lex_state = 2356}, + [4154] = {.lex_state = 2356}, + [4155] = {.lex_state = 2356}, + [4156] = {.lex_state = 2356}, + [4157] = {.lex_state = 2356}, + [4158] = {.lex_state = 2356}, + [4159] = {.lex_state = 2356}, + [4160] = {.lex_state = 2356}, + [4161] = {.lex_state = 2356}, + [4162] = {.lex_state = 2264}, + [4163] = {.lex_state = 2356}, + [4164] = {.lex_state = 2354}, + [4165] = {.lex_state = 2356}, + [4166] = {.lex_state = 2376}, + [4167] = {.lex_state = 56}, + [4168] = {.lex_state = 32}, + [4169] = {.lex_state = 2376}, + [4170] = {.lex_state = 2376}, + [4171] = {.lex_state = 2354}, + [4172] = {.lex_state = 2264}, + [4173] = {.lex_state = 2356}, + [4174] = {.lex_state = 2361}, + [4175] = {.lex_state = 56}, + [4176] = {.lex_state = 32}, + [4177] = {.lex_state = 2356}, + [4178] = {.lex_state = 2361}, + [4179] = {.lex_state = 2354}, + [4180] = {.lex_state = 2376}, + [4181] = {.lex_state = 2356}, + [4182] = {.lex_state = 2354}, + [4183] = {.lex_state = 32}, + [4184] = {.lex_state = 2336}, + [4185] = {.lex_state = 2361}, + [4186] = {.lex_state = 32}, + [4187] = {.lex_state = 2354}, + [4188] = {.lex_state = 2376}, + [4189] = {.lex_state = 2264}, + [4190] = {.lex_state = 32}, + [4191] = {.lex_state = 2264}, + [4192] = {.lex_state = 2356}, + [4193] = {.lex_state = 2359}, + [4194] = {.lex_state = 2264}, + [4195] = {.lex_state = 2340}, + [4196] = {.lex_state = 2264}, + [4197] = {.lex_state = 32}, + [4198] = {.lex_state = 2356}, + [4199] = {.lex_state = 2361}, + [4200] = {.lex_state = 2361}, + [4201] = {.lex_state = 2359}, + [4202] = {.lex_state = 2340}, + [4203] = {.lex_state = 2340}, + [4204] = {.lex_state = 2336}, + [4205] = {.lex_state = 2336}, + [4206] = {.lex_state = 2336}, + [4207] = {.lex_state = 2356}, + [4208] = {.lex_state = 2336}, + [4209] = {.lex_state = 2356}, + [4210] = {.lex_state = 32}, + [4211] = {.lex_state = 32}, + [4212] = {.lex_state = 2361}, + [4213] = {.lex_state = 2356}, + [4214] = {.lex_state = 2356}, + [4215] = {.lex_state = 2356}, + [4216] = {.lex_state = 2358}, + [4217] = {.lex_state = 2361}, + [4218] = {.lex_state = 2356}, + [4219] = {.lex_state = 2361}, + [4220] = {.lex_state = 2361}, + [4221] = {.lex_state = 2356}, + [4222] = {.lex_state = 2356}, + [4223] = {.lex_state = 2354}, + [4224] = {.lex_state = 2336}, + [4225] = {.lex_state = 2356}, + [4226] = {.lex_state = 2376}, + [4227] = {.lex_state = 2356}, + [4228] = {.lex_state = 32}, + [4229] = {.lex_state = 32}, + [4230] = {.lex_state = 2361}, + [4231] = {.lex_state = 32}, + [4232] = {.lex_state = 2340}, + [4233] = {.lex_state = 2340}, + [4234] = {.lex_state = 264, .external_lex_state = 2}, + [4235] = {.lex_state = 2356}, + [4236] = {.lex_state = 2356}, + [4237] = {.lex_state = 32}, + [4238] = {.lex_state = 264, .external_lex_state = 2}, + [4239] = {.lex_state = 2264}, + [4240] = {.lex_state = 32}, + [4241] = {.lex_state = 2360}, + [4242] = {.lex_state = 32}, + [4243] = {.lex_state = 2376}, + [4244] = {.lex_state = 2361}, + [4245] = {.lex_state = 2264}, + [4246] = {.lex_state = 2356}, + [4247] = {.lex_state = 54}, + [4248] = {.lex_state = 2265}, + [4249] = {.lex_state = 2340}, + [4250] = {.lex_state = 2340}, + [4251] = {.lex_state = 2340}, + [4252] = {.lex_state = 2340}, + [4253] = {.lex_state = 2376}, + [4254] = {.lex_state = 2360}, + [4255] = {.lex_state = 2356}, + [4256] = {.lex_state = 2340}, + [4257] = {.lex_state = 2356}, + [4258] = {.lex_state = 2340}, + [4259] = {.lex_state = 54}, + [4260] = {.lex_state = 2356}, + [4261] = {.lex_state = 54}, + [4262] = {.lex_state = 2340}, + [4263] = {.lex_state = 2356}, + [4264] = {.lex_state = 264, .external_lex_state = 2}, + [4265] = {.lex_state = 2356}, + [4266] = {.lex_state = 54}, + [4267] = {.lex_state = 32}, + [4268] = {.lex_state = 2356}, + [4269] = {.lex_state = 2356}, + [4270] = {.lex_state = 2340}, + [4271] = {.lex_state = 2340}, + [4272] = {.lex_state = 32}, + [4273] = {.lex_state = 2340}, + [4274] = {.lex_state = 2356}, + [4275] = {.lex_state = 2356}, + [4276] = {.lex_state = 2356}, + [4277] = {.lex_state = 2356}, + [4278] = {.lex_state = 2356}, + [4279] = {.lex_state = 2356}, + [4280] = {.lex_state = 2356}, + [4281] = {.lex_state = 2356}, + [4282] = {.lex_state = 2356}, + [4283] = {.lex_state = 2265}, + [4284] = {.lex_state = 2356}, + [4285] = {.lex_state = 2356}, + [4286] = {.lex_state = 2356}, + [4287] = {.lex_state = 54}, + [4288] = {.lex_state = 2356}, + [4289] = {.lex_state = 2356}, + [4290] = {.lex_state = 2361}, + [4291] = {.lex_state = 2356}, + [4292] = {.lex_state = 2264}, + [4293] = {.lex_state = 2358}, + [4294] = {.lex_state = 2356}, + [4295] = {.lex_state = 2361}, + [4296] = {.lex_state = 2356}, + [4297] = {.lex_state = 2340}, + [4298] = {.lex_state = 2356}, + [4299] = {.lex_state = 2361}, + [4300] = {.lex_state = 2361}, + [4301] = {.lex_state = 2361}, + [4302] = {.lex_state = 2356}, + [4303] = {.lex_state = 2356}, + [4304] = {.lex_state = 2340}, + [4305] = {.lex_state = 2361}, + [4306] = {.lex_state = 2376}, + [4307] = {.lex_state = 2361}, + [4308] = {.lex_state = 2356}, + [4309] = {.lex_state = 264, .external_lex_state = 2}, + [4310] = {.lex_state = 2361}, + [4311] = {.lex_state = 2376}, + [4312] = {.lex_state = 32}, + [4313] = {.lex_state = 32}, + [4314] = {.lex_state = 32}, + [4315] = {.lex_state = 54}, + [4316] = {.lex_state = 2340}, + [4317] = {.lex_state = 69}, + [4318] = {.lex_state = 2297}, + [4319] = {.lex_state = 2362}, + [4320] = {.lex_state = 2297}, + [4321] = {.lex_state = 2297}, + [4322] = {.lex_state = 2265}, + [4323] = {.lex_state = 2297}, + [4324] = {.lex_state = 2297}, + [4325] = {.lex_state = 2297}, + [4326] = {.lex_state = 2297}, + [4327] = {.lex_state = 2297}, + [4328] = {.lex_state = 2297}, + [4329] = {.lex_state = 2297}, + [4330] = {.lex_state = 2297}, + [4331] = {.lex_state = 2297}, + [4332] = {.lex_state = 2297}, + [4333] = {.lex_state = 2297}, + [4334] = {.lex_state = 2297}, + [4335] = {.lex_state = 2297}, + [4336] = {.lex_state = 2297}, + [4337] = {.lex_state = 2265}, + [4338] = {.lex_state = 2373}, + [4339] = {.lex_state = 2297}, + [4340] = {.lex_state = 2297}, + [4341] = {.lex_state = 2340}, + [4342] = {.lex_state = 2297}, + [4343] = {.lex_state = 60}, + [4344] = {.lex_state = 69}, + [4345] = {.lex_state = 2297}, + [4346] = {.lex_state = 2373}, + [4347] = {.lex_state = 69}, + [4348] = {.lex_state = 2297}, + [4349] = {.lex_state = 2297}, + [4350] = {.lex_state = 2297}, + [4351] = {.lex_state = 69}, + [4352] = {.lex_state = 2362}, + [4353] = {.lex_state = 32}, + [4354] = {.lex_state = 61}, + [4355] = {.lex_state = 2297}, + [4356] = {.lex_state = 2340}, + [4357] = {.lex_state = 32}, + [4358] = {.lex_state = 2297}, + [4359] = {.lex_state = 2297}, + [4360] = {.lex_state = 69}, + [4361] = {.lex_state = 32}, + [4362] = {.lex_state = 2297}, + [4363] = {.lex_state = 69}, + [4364] = {.lex_state = 2340}, + [4365] = {.lex_state = 2297}, + [4366] = {.lex_state = 2340}, + [4367] = {.lex_state = 2361}, + [4368] = {.lex_state = 2297}, + [4369] = {.lex_state = 2297}, + [4370] = {.lex_state = 69}, + [4371] = {.lex_state = 69}, + [4372] = {.lex_state = 2373}, + [4373] = {.lex_state = 2297}, + [4374] = {.lex_state = 2297}, + [4375] = {.lex_state = 2297}, + [4376] = {.lex_state = 2297}, + [4377] = {.lex_state = 69}, + [4378] = {.lex_state = 2297}, + [4379] = {.lex_state = 2362}, + [4380] = {.lex_state = 2297}, + [4381] = {.lex_state = 2297}, + [4382] = {.lex_state = 69}, + [4383] = {.lex_state = 2297}, + [4384] = {.lex_state = 2373}, + [4385] = {.lex_state = 2373}, + [4386] = {.lex_state = 61}, + [4387] = {.lex_state = 69}, + [4388] = {.lex_state = 2297}, + [4389] = {.lex_state = 2362}, + [4390] = {.lex_state = 2297}, + [4391] = {.lex_state = 2297}, + [4392] = {.lex_state = 69}, + [4393] = {.lex_state = 2297}, + [4394] = {.lex_state = 2297}, + [4395] = {.lex_state = 2297}, + [4396] = {.lex_state = 2297}, + [4397] = {.lex_state = 2356}, + [4398] = {.lex_state = 69}, + [4399] = {.lex_state = 2297}, + [4400] = {.lex_state = 2297}, + [4401] = {.lex_state = 69}, + [4402] = {.lex_state = 2297}, + [4403] = {.lex_state = 69}, + [4404] = {.lex_state = 69}, + [4405] = {.lex_state = 2297}, + [4406] = {.lex_state = 2297}, + [4407] = {.lex_state = 2340}, + [4408] = {.lex_state = 2297}, + [4409] = {.lex_state = 2297}, + [4410] = {.lex_state = 2297}, + [4411] = {.lex_state = 2297}, + [4412] = {.lex_state = 2297}, + [4413] = {.lex_state = 2297}, + [4414] = {.lex_state = 2297}, + [4415] = {.lex_state = 2297}, + [4416] = {.lex_state = 2297}, + [4417] = {.lex_state = 2297}, + [4418] = {.lex_state = 2340}, + [4419] = {.lex_state = 2297}, + [4420] = {.lex_state = 2297}, + [4421] = {.lex_state = 2362}, + [4422] = {.lex_state = 2356}, + [4423] = {.lex_state = 2297}, + [4424] = {.lex_state = 2297}, + [4425] = {.lex_state = 2297}, + [4426] = {.lex_state = 2374}, + [4427] = {.lex_state = 2297}, + [4428] = {.lex_state = 2297}, + [4429] = {.lex_state = 2297}, + [4430] = {.lex_state = 2297}, + [4431] = {.lex_state = 2297}, + [4432] = {.lex_state = 2297}, + [4433] = {.lex_state = 2360}, + [4434] = {.lex_state = 2297}, + [4435] = {.lex_state = 2297}, + [4436] = {.lex_state = 2297}, + [4437] = {.lex_state = 2297}, + [4438] = {.lex_state = 2297}, + [4439] = {.lex_state = 2297}, + [4440] = {.lex_state = 2297}, + [4441] = {.lex_state = 2297}, + [4442] = {.lex_state = 2297}, + [4443] = {.lex_state = 2297}, + [4444] = {.lex_state = 57}, + [4445] = {.lex_state = 2297}, + [4446] = {.lex_state = 2340}, + [4447] = {.lex_state = 2297}, + [4448] = {.lex_state = 2297}, + [4449] = {.lex_state = 2297}, + [4450] = {.lex_state = 2377}, + [4451] = {.lex_state = 2377}, + [4452] = {.lex_state = 2340}, + [4453] = {.lex_state = 2297}, + [4454] = {.lex_state = 2297}, + [4455] = {.lex_state = 2297}, + [4456] = {.lex_state = 2360}, + [4457] = {.lex_state = 2297}, + [4458] = {.lex_state = 69}, + [4459] = {.lex_state = 2297}, + [4460] = {.lex_state = 2332}, + [4461] = {.lex_state = 2362}, + [4462] = {.lex_state = 69}, + [4463] = {.lex_state = 2332}, + [4464] = {.lex_state = 2377}, + [4465] = {.lex_state = 2377}, + [4466] = {.lex_state = 2377}, + [4467] = {.lex_state = 61}, + [4468] = {.lex_state = 2297}, + [4469] = {.lex_state = 2297}, + [4470] = {.lex_state = 2340}, + [4471] = {.lex_state = 2297}, + [4472] = {.lex_state = 2332}, + [4473] = {.lex_state = 2297}, + [4474] = {.lex_state = 2297}, + [4475] = {.lex_state = 2373}, + [4476] = {.lex_state = 2297}, + [4477] = {.lex_state = 2297}, + [4478] = {.lex_state = 2297}, + [4479] = {.lex_state = 2265}, + [4480] = {.lex_state = 69}, + [4481] = {.lex_state = 2297}, + [4482] = {.lex_state = 69}, + [4483] = {.lex_state = 2297}, + [4484] = {.lex_state = 69}, + [4485] = {.lex_state = 2336}, + [4486] = {.lex_state = 2297}, + [4487] = {.lex_state = 2297}, + [4488] = {.lex_state = 2297}, + [4489] = {.lex_state = 2297}, + [4490] = {.lex_state = 2297}, + [4491] = {.lex_state = 2297}, + [4492] = {.lex_state = 69}, + [4493] = {.lex_state = 2297}, + [4494] = {.lex_state = 2297}, + [4495] = {.lex_state = 2265}, + [4496] = {.lex_state = 69}, + [4497] = {.lex_state = 2297}, + [4498] = {.lex_state = 2297}, + [4499] = {.lex_state = 2297}, + [4500] = {.lex_state = 2340}, + [4501] = {.lex_state = 2297}, + [4502] = {.lex_state = 2297}, + [4503] = {.lex_state = 2297}, + [4504] = {.lex_state = 2297}, + [4505] = {.lex_state = 2332}, + [4506] = {.lex_state = 2297}, + [4507] = {.lex_state = 2362}, + [4508] = {.lex_state = 2297}, + [4509] = {.lex_state = 2332}, + [4510] = {.lex_state = 2297}, + [4511] = {.lex_state = 2362}, + [4512] = {.lex_state = 2362}, + [4513] = {.lex_state = 2297}, + [4514] = {.lex_state = 61}, + [4515] = {.lex_state = 2297}, + [4516] = {.lex_state = 2297}, + [4517] = {.lex_state = 2297}, + [4518] = {.lex_state = 2297}, + [4519] = {.lex_state = 32}, + [4520] = {.lex_state = 2356}, + [4521] = {.lex_state = 2297}, + [4522] = {.lex_state = 32}, + [4523] = {.lex_state = 2332}, + [4524] = {.lex_state = 32}, + [4525] = {.lex_state = 2297}, + [4526] = {.lex_state = 2362}, + [4527] = {.lex_state = 2297}, + [4528] = {.lex_state = 32}, + [4529] = {.lex_state = 2373}, + [4530] = {.lex_state = 2297}, + [4531] = {.lex_state = 2297}, + [4532] = {.lex_state = 32}, + [4533] = {.lex_state = 2297}, + [4534] = {.lex_state = 32}, + [4535] = {.lex_state = 14}, + [4536] = {.lex_state = 32}, + [4537] = {.lex_state = 2332}, + [4538] = {.lex_state = 2332}, + [4539] = {.lex_state = 58}, + [4540] = {.lex_state = 32}, + [4541] = {.lex_state = 2265}, + [4542] = {.lex_state = 2377}, + [4543] = {.lex_state = 2377}, + [4544] = {.lex_state = 32}, + [4545] = {.lex_state = 2297}, + [4546] = {.lex_state = 2373}, + [4547] = {.lex_state = 32}, + [4548] = {.lex_state = 2299}, + [4549] = {.lex_state = 2297}, + [4550] = {.lex_state = 2299}, + [4551] = {.lex_state = 2265}, + [4552] = {.lex_state = 32}, + [4553] = {.lex_state = 2336}, + [4554] = {.lex_state = 2336}, + [4555] = {.lex_state = 32}, + [4556] = {.lex_state = 2363}, + [4557] = {.lex_state = 32}, + [4558] = {.lex_state = 58}, + [4559] = {.lex_state = 2296}, + [4560] = {.lex_state = 2362}, + [4561] = {.lex_state = 2356}, + [4562] = {.lex_state = 2332}, + [4563] = {.lex_state = 32}, + [4564] = {.lex_state = 2362}, + [4565] = {.lex_state = 2356}, + [4566] = {.lex_state = 32}, + [4567] = {.lex_state = 2362}, + [4568] = {.lex_state = 2297}, + [4569] = {.lex_state = 2362}, + [4570] = {.lex_state = 2296}, + [4571] = {.lex_state = 2297}, + [4572] = {.lex_state = 32}, + [4573] = {.lex_state = 2373}, + [4574] = {.lex_state = 2297}, + [4575] = {.lex_state = 32}, + [4576] = {.lex_state = 32}, + [4577] = {.lex_state = 2364}, + [4578] = {.lex_state = 32}, + [4579] = {.lex_state = 2297}, + [4580] = {.lex_state = 2356}, + [4581] = {.lex_state = 2377}, + [4582] = {.lex_state = 32}, + [4583] = {.lex_state = 2297}, + [4584] = {.lex_state = 2356}, + [4585] = {.lex_state = 14}, + [4586] = {.lex_state = 2362}, + [4587] = {.lex_state = 2297}, + [4588] = {.lex_state = 2297}, + [4589] = {.lex_state = 2377}, + [4590] = {.lex_state = 2332}, + [4591] = {.lex_state = 2373}, + [4592] = {.lex_state = 69}, + [4593] = {.lex_state = 32}, + [4594] = {.lex_state = 32}, + [4595] = {.lex_state = 2299}, + [4596] = {.lex_state = 2297}, + [4597] = {.lex_state = 2336}, + [4598] = {.lex_state = 2362}, + [4599] = {.lex_state = 2362}, + [4600] = {.lex_state = 69}, + [4601] = {.lex_state = 2297}, + [4602] = {.lex_state = 32}, + [4603] = {.lex_state = 2297}, + [4604] = {.lex_state = 2362}, + [4605] = {.lex_state = 32}, + [4606] = {.lex_state = 2373}, + [4607] = {.lex_state = 2373}, + [4608] = {.lex_state = 2297}, + [4609] = {.lex_state = 2374}, + [4610] = {.lex_state = 2332}, + [4611] = {.lex_state = 2297}, + [4612] = {.lex_state = 2332}, + [4613] = {.lex_state = 2297}, + [4614] = {.lex_state = 2377}, + [4615] = {.lex_state = 2297}, + [4616] = {.lex_state = 2299}, + [4617] = {.lex_state = 32}, + [4618] = {.lex_state = 2297}, + [4619] = {.lex_state = 2332}, + [4620] = {.lex_state = 2265}, + [4621] = {.lex_state = 2362}, + [4622] = {.lex_state = 2297}, + [4623] = {.lex_state = 2299}, + [4624] = {.lex_state = 2299}, + [4625] = {.lex_state = 2265}, + [4626] = {.lex_state = 2332}, + [4627] = {.lex_state = 2299}, + [4628] = {.lex_state = 14}, + [4629] = {.lex_state = 32}, + [4630] = {.lex_state = 32}, + [4631] = {.lex_state = 2297}, + [4632] = {.lex_state = 59}, + [4633] = {.lex_state = 59}, + [4634] = {.lex_state = 2299}, + [4635] = {.lex_state = 2299}, + [4636] = {.lex_state = 2265}, + [4637] = {.lex_state = 2299}, + [4638] = {.lex_state = 2299}, + [4639] = {.lex_state = 59}, + [4640] = {.lex_state = 2299}, + [4641] = {.lex_state = 2299}, + [4642] = {.lex_state = 2299}, + [4643] = {.lex_state = 2299}, + [4644] = {.lex_state = 2299}, + [4645] = {.lex_state = 59}, + [4646] = {.lex_state = 2299}, + [4647] = {.lex_state = 2299}, + [4648] = {.lex_state = 2299}, + [4649] = {.lex_state = 2299}, + [4650] = {.lex_state = 2299}, + [4651] = {.lex_state = 2299}, + [4652] = {.lex_state = 2299}, + [4653] = {.lex_state = 2299}, + [4654] = {.lex_state = 2356}, + [4655] = {.lex_state = 2299}, + [4656] = {.lex_state = 2299}, + [4657] = {.lex_state = 54}, + [4658] = {.lex_state = 2299}, + [4659] = {.lex_state = 2299}, + [4660] = {.lex_state = 2299}, + [4661] = {.lex_state = 2299}, + [4662] = {.lex_state = 2299}, + [4663] = {.lex_state = 2299}, + [4664] = {.lex_state = 59}, + [4665] = {.lex_state = 2299}, + [4666] = {.lex_state = 2299}, + [4667] = {.lex_state = 2297}, + [4668] = {.lex_state = 2363}, + [4669] = {.lex_state = 85}, + [4670] = {.lex_state = 2364}, + [4671] = {.lex_state = 2297}, + [4672] = {.lex_state = 2299}, + [4673] = {.lex_state = 59}, + [4674] = {.lex_state = 2299}, + [4675] = {.lex_state = 2365}, + [4676] = {.lex_state = 2299}, + [4677] = {.lex_state = 32}, + [4678] = {.lex_state = 32}, + [4679] = {.lex_state = 2265}, + [4680] = {.lex_state = 2299}, + [4681] = {.lex_state = 85}, + [4682] = {.lex_state = 2336}, + [4683] = {.lex_state = 2299}, + [4684] = {.lex_state = 54}, + [4685] = {.lex_state = 2299}, + [4686] = {.lex_state = 59}, + [4687] = {.lex_state = 2365}, + [4688] = {.lex_state = 85}, + [4689] = {.lex_state = 2299}, + [4690] = {.lex_state = 2299}, + [4691] = {.lex_state = 2297}, + [4692] = {.lex_state = 2297}, + [4693] = {.lex_state = 2299}, + [4694] = {.lex_state = 2299}, + [4695] = {.lex_state = 32}, + [4696] = {.lex_state = 2297}, + [4697] = {.lex_state = 59}, + [4698] = {.lex_state = 54}, + [4699] = {.lex_state = 54}, + [4700] = {.lex_state = 2299}, + [4701] = {.lex_state = 54}, + [4702] = {.lex_state = 2299}, + [4703] = {.lex_state = 2299}, + [4704] = {.lex_state = 2297}, + [4705] = {.lex_state = 54}, + [4706] = {.lex_state = 2297}, + [4707] = {.lex_state = 2336}, + [4708] = {.lex_state = 2299}, + [4709] = {.lex_state = 2332}, + [4710] = {.lex_state = 2299}, + [4711] = {.lex_state = 270}, + [4712] = {.lex_state = 69}, + [4713] = {.lex_state = 60}, + [4714] = {.lex_state = 2299}, + [4715] = {.lex_state = 2299}, + [4716] = {.lex_state = 2299}, + [4717] = {.lex_state = 69}, + [4718] = {.lex_state = 69}, + [4719] = {.lex_state = 85}, + [4720] = {.lex_state = 2299}, + [4721] = {.lex_state = 69}, + [4722] = {.lex_state = 2299}, + [4723] = {.lex_state = 2356}, + [4724] = {.lex_state = 2299}, + [4725] = {.lex_state = 14}, + [4726] = {.lex_state = 2356}, + [4727] = {.lex_state = 69}, + [4728] = {.lex_state = 2296}, + [4729] = {.lex_state = 2265}, + [4730] = {.lex_state = 69}, + [4731] = {.lex_state = 2299}, + [4732] = {.lex_state = 2299}, + [4733] = {.lex_state = 32}, + [4734] = {.lex_state = 2299}, + [4735] = {.lex_state = 2297}, + [4736] = {.lex_state = 2297}, + [4737] = {.lex_state = 2299}, + [4738] = {.lex_state = 2299}, + [4739] = {.lex_state = 2299}, + [4740] = {.lex_state = 2299}, + [4741] = {.lex_state = 14}, + [4742] = {.lex_state = 2296}, + [4743] = {.lex_state = 2299}, + [4744] = {.lex_state = 2299}, + [4745] = {.lex_state = 2299}, + [4746] = {.lex_state = 2299}, + [4747] = {.lex_state = 2299}, + [4748] = {.lex_state = 2332}, + [4749] = {.lex_state = 2299}, + [4750] = {.lex_state = 2299}, + [4751] = {.lex_state = 2299}, + [4752] = {.lex_state = 59}, + [4753] = {.lex_state = 2297}, + [4754] = {.lex_state = 2299}, + [4755] = {.lex_state = 2299}, + [4756] = {.lex_state = 2296}, + [4757] = {.lex_state = 2297}, + [4758] = {.lex_state = 2299}, + [4759] = {.lex_state = 2299}, + [4760] = {.lex_state = 2297}, + [4761] = {.lex_state = 2296}, + [4762] = {.lex_state = 54}, + [4763] = {.lex_state = 2297}, + [4764] = {.lex_state = 2299}, + [4765] = {.lex_state = 2299}, + [4766] = {.lex_state = 2297}, + [4767] = {.lex_state = 2299}, + [4768] = {.lex_state = 2299}, + [4769] = {.lex_state = 2362}, + [4770] = {.lex_state = 2297}, + [4771] = {.lex_state = 2297}, + [4772] = {.lex_state = 2297}, + [4773] = {.lex_state = 2299}, + [4774] = {.lex_state = 2299}, + [4775] = {.lex_state = 2297}, + [4776] = {.lex_state = 2299}, + [4777] = {.lex_state = 2299}, + [4778] = {.lex_state = 2299}, + [4779] = {.lex_state = 2297}, + [4780] = {.lex_state = 14}, + [4781] = {.lex_state = 2299}, + [4782] = {.lex_state = 2299}, + [4783] = {.lex_state = 2299}, + [4784] = {.lex_state = 14}, + [4785] = {.lex_state = 2299}, + [4786] = {.lex_state = 2299}, + [4787] = {.lex_state = 85}, + [4788] = {.lex_state = 54}, + [4789] = {.lex_state = 2299}, + [4790] = {.lex_state = 2297}, + [4791] = {.lex_state = 2299}, + [4792] = {.lex_state = 2299}, + [4793] = {.lex_state = 2299}, + [4794] = {.lex_state = 2299}, + [4795] = {.lex_state = 2299}, + [4796] = {.lex_state = 2299}, + [4797] = {.lex_state = 59}, + [4798] = {.lex_state = 32}, + [4799] = {.lex_state = 2299}, + [4800] = {.lex_state = 32}, + [4801] = {.lex_state = 2299}, + [4802] = {.lex_state = 2299}, + [4803] = {.lex_state = 2299}, + [4804] = {.lex_state = 2299}, + [4805] = {.lex_state = 32}, + [4806] = {.lex_state = 2299}, + [4807] = {.lex_state = 32}, + [4808] = {.lex_state = 2296}, + [4809] = {.lex_state = 2296}, + [4810] = {.lex_state = 2299}, + [4811] = {.lex_state = 2297}, + [4812] = {.lex_state = 2296}, + [4813] = {.lex_state = 2299}, + [4814] = {.lex_state = 274}, + [4815] = {.lex_state = 32}, + [4816] = {.lex_state = 32}, + [4817] = {.lex_state = 266}, + [4818] = {.lex_state = 2299}, + [4819] = {.lex_state = 2366}, + [4820] = {.lex_state = 2299}, + [4821] = {.lex_state = 32}, + [4822] = {.lex_state = 32}, + [4823] = {.lex_state = 2365}, + [4824] = {.lex_state = 2296}, + [4825] = {.lex_state = 266}, + [4826] = {.lex_state = 2299}, + [4827] = {.lex_state = 2296}, + [4828] = {.lex_state = 32}, + [4829] = {.lex_state = 32}, + [4830] = {.lex_state = 32}, + [4831] = {.lex_state = 2299}, + [4832] = {.lex_state = 2299}, + [4833] = {.lex_state = 69}, + [4834] = {.lex_state = 32}, + [4835] = {.lex_state = 32}, + [4836] = {.lex_state = 2299}, + [4837] = {.lex_state = 32}, + [4838] = {.lex_state = 2296}, + [4839] = {.lex_state = 2299}, + [4840] = {.lex_state = 2}, [4841] = {.lex_state = 2}, - [4842] = {.lex_state = 745}, - [4843] = {.lex_state = 745}, - [4844] = {.lex_state = 745}, - [4845] = {.lex_state = 745}, - [4846] = {.lex_state = 811}, - [4847] = {.lex_state = 745}, - [4848] = {.lex_state = 33}, - [4849] = {.lex_state = 33}, - [4850] = {.lex_state = 33}, - [4851] = {.lex_state = 745}, - [4852] = {.lex_state = 745}, - [4853] = {.lex_state = 811}, - [4854] = {.lex_state = 33}, - [4855] = {.lex_state = 742}, - [4856] = {.lex_state = 33}, - [4857] = {.lex_state = 812}, - [4858] = {.lex_state = 782}, - [4859] = {.lex_state = 812}, - [4860] = {.lex_state = 742}, - [4861] = {.lex_state = 742}, - [4862] = {.lex_state = 812}, - [4863] = {.lex_state = 812}, - [4864] = {.lex_state = 745}, - [4865] = {.lex_state = 745}, - [4866] = {.lex_state = 60}, - [4867] = {.lex_state = 745}, - [4868] = {.lex_state = 812}, - [4869] = {.lex_state = 55}, - [4870] = {.lex_state = 745}, - [4871] = {.lex_state = 742}, - [4872] = {.lex_state = 70}, - [4873] = {.lex_state = 70}, - [4874] = {.lex_state = 742}, - [4875] = {.lex_state = 33}, - [4876] = {.lex_state = 742}, - [4877] = {.lex_state = 267}, - [4878] = {.lex_state = 33}, - [4879] = {.lex_state = 33}, - [4880] = {.lex_state = 33}, - [4881] = {.lex_state = 272}, - [4882] = {.lex_state = 33}, - [4883] = {.lex_state = 742}, - [4884] = {.lex_state = 33}, - [4885] = {.lex_state = 742}, - [4886] = {.lex_state = 745}, - [4887] = {.lex_state = 742}, - [4888] = {.lex_state = 745}, - [4889] = {.lex_state = 33}, - [4890] = {.lex_state = 33}, - [4891] = {.lex_state = 745}, - [4892] = {.lex_state = 33}, - [4893] = {.lex_state = 33}, - [4894] = {.lex_state = 745}, - [4895] = {.lex_state = 742}, - [4896] = {.lex_state = 745}, - [4897] = {.lex_state = 276}, - [4898] = {.lex_state = 33}, - [4899] = {.lex_state = 745}, - [4900] = {.lex_state = 745}, - [4901] = {.lex_state = 2}, - [4902] = {.lex_state = 745}, - [4903] = {.lex_state = 742}, - [4904] = {.lex_state = 33}, - [4905] = {.lex_state = 745}, - [4906] = {.lex_state = 745}, - [4907] = {.lex_state = 745}, - [4908] = {.lex_state = 33}, - [4909] = {.lex_state = 742}, - [4910] = {.lex_state = 33}, - [4911] = {.lex_state = 2}, - [4912] = {.lex_state = 742}, - [4913] = {.lex_state = 742}, - [4914] = {.lex_state = 742}, - [4915] = {.lex_state = 745}, - [4916] = {.lex_state = 742}, - [4917] = {.lex_state = 745}, - [4918] = {.lex_state = 33}, - [4919] = {.lex_state = 742}, - [4920] = {.lex_state = 33}, - [4921] = {.lex_state = 33}, - [4922] = {.lex_state = 33}, - [4923] = {.lex_state = 33}, - [4924] = {.lex_state = 742}, - [4925] = {.lex_state = 745}, - [4926] = {.lex_state = 742}, - [4927] = {.lex_state = 745}, - [4928] = {.lex_state = 745}, - [4929] = {.lex_state = 745}, - [4930] = {.lex_state = 742}, - [4931] = {.lex_state = 745}, - [4932] = {.lex_state = 33}, - [4933] = {.lex_state = 275}, - [4934] = {.lex_state = 745}, - [4935] = {.lex_state = 775}, - [4936] = {.lex_state = 743}, - [4937] = {.lex_state = 775}, - [4938] = {.lex_state = 33}, - [4939] = {.lex_state = 743}, - [4940] = {.lex_state = 745}, - [4941] = {.lex_state = 743}, - [4942] = {.lex_state = 745}, - [4943] = {.lex_state = 33}, - [4944] = {.lex_state = 745}, - [4945] = {.lex_state = 745}, - [4946] = {.lex_state = 745}, - [4947] = {.lex_state = 745}, - [4948] = {.lex_state = 742}, - [4949] = {.lex_state = 743}, - [4950] = {.lex_state = 743}, - [4951] = {.lex_state = 743}, - [4952] = {.lex_state = 743}, - [4953] = {.lex_state = 743}, - [4954] = {.lex_state = 743}, - [4955] = {.lex_state = 743}, - [4956] = {.lex_state = 743}, - [4957] = {.lex_state = 743}, - [4958] = {.lex_state = 743}, - [4959] = {.lex_state = 743}, - [4960] = {.lex_state = 743}, - [4961] = {.lex_state = 775}, - [4962] = {.lex_state = 745}, - [4963] = {.lex_state = 745}, - [4964] = {.lex_state = 745}, - [4965] = {.lex_state = 33}, - [4966] = {.lex_state = 745}, - [4967] = {.lex_state = 745}, - [4968] = {.lex_state = 33}, - [4969] = {.lex_state = 745}, - [4970] = {.lex_state = 745}, - [4971] = {.lex_state = 33}, - [4972] = {.lex_state = 33}, - [4973] = {.lex_state = 745}, - [4974] = {.lex_state = 33}, - [4975] = {.lex_state = 33}, - [4976] = {.lex_state = 33}, - [4977] = {.lex_state = 745}, - [4978] = {.lex_state = 745}, - [4979] = {.lex_state = 745}, - [4980] = {.lex_state = 742}, - [4981] = {.lex_state = 745}, - [4982] = {.lex_state = 745}, - [4983] = {.lex_state = 33}, - [4984] = {.lex_state = 742}, - [4985] = {.lex_state = 745}, - [4986] = {.lex_state = 33}, - [4987] = {.lex_state = 33}, - [4988] = {.lex_state = 745}, - [4989] = {.lex_state = 745}, - [4990] = {.lex_state = 745}, - [4991] = {.lex_state = 33}, - [4992] = {.lex_state = 745}, - [4993] = {.lex_state = 33}, - [4994] = {.lex_state = 33}, - [4995] = {.lex_state = 33}, - [4996] = {.lex_state = 742}, - [4997] = {.lex_state = 33}, - [4998] = {.lex_state = 745}, - [4999] = {.lex_state = 745}, - [5000] = {.lex_state = 745}, - [5001] = {.lex_state = 33}, - [5002] = {.lex_state = 33}, - [5003] = {.lex_state = 66}, - [5004] = {.lex_state = 745}, - [5005] = {.lex_state = 2}, - [5006] = {.lex_state = 742}, - [5007] = {.lex_state = 742}, - [5008] = {.lex_state = 742}, - [5009] = {.lex_state = 742}, - [5010] = {.lex_state = 33}, - [5011] = {.lex_state = 742}, - [5012] = {.lex_state = 33}, - [5013] = {.lex_state = 710}, - [5014] = {.lex_state = 742}, - [5015] = {.lex_state = 742}, - [5016] = {.lex_state = 742}, - [5017] = {.lex_state = 33}, - [5018] = {.lex_state = 742}, - [5019] = {.lex_state = 742}, - [5020] = {.lex_state = 3704}, - [5021] = {.lex_state = 742}, - [5022] = {.lex_state = 710}, - [5023] = {.lex_state = 742}, - [5024] = {.lex_state = 812}, - [5025] = {.lex_state = 3704}, - [5026] = {.lex_state = 742}, - [5027] = {.lex_state = 742}, - [5028] = {.lex_state = 742}, - [5029] = {.lex_state = 742}, - [5030] = {.lex_state = 812}, - [5031] = {.lex_state = 742}, - [5032] = {.lex_state = 742}, - [5033] = {.lex_state = 275}, - [5034] = {.lex_state = 812}, - [5035] = {.lex_state = 710}, - [5036] = {.lex_state = 99}, - [5037] = {.lex_state = 742}, - [5038] = {.lex_state = 742}, - [5039] = {.lex_state = 33}, - [5040] = {.lex_state = 33}, - [5041] = {.lex_state = 270}, - [5042] = {.lex_state = 742}, - [5043] = {.lex_state = 33}, - [5044] = {.lex_state = 742}, - [5045] = {.lex_state = 742}, - [5046] = {.lex_state = 742}, - [5047] = {.lex_state = 742}, - [5048] = {.lex_state = 742}, - [5049] = {.lex_state = 743}, - [5050] = {.lex_state = 99}, - [5051] = {.lex_state = 742}, - [5052] = {.lex_state = 275}, - [5053] = {.lex_state = 33}, - [5054] = {.lex_state = 742}, - [5055] = {.lex_state = 742}, - [5056] = {.lex_state = 742}, - [5057] = {.lex_state = 742}, - [5058] = {.lex_state = 743}, - [5059] = {.lex_state = 743}, - [5060] = {.lex_state = 743}, - [5061] = {.lex_state = 321}, - [5062] = {.lex_state = 710}, - [5063] = {.lex_state = 742}, - [5064] = {.lex_state = 33}, - [5065] = {.lex_state = 268}, - [5066] = {.lex_state = 742}, - [5067] = {.lex_state = 742}, - [5068] = {.lex_state = 33}, - [5069] = {.lex_state = 278}, - [5070] = {.lex_state = 743}, - [5071] = {.lex_state = 743}, - [5072] = {.lex_state = 743}, - [5073] = {.lex_state = 743}, - [5074] = {.lex_state = 33}, - [5075] = {.lex_state = 33}, - [5076] = {.lex_state = 270}, - [5077] = {.lex_state = 743}, - [5078] = {.lex_state = 743}, - [5079] = {.lex_state = 743}, - [5080] = {.lex_state = 743}, - [5081] = {.lex_state = 775}, - [5082] = {.lex_state = 742}, - [5083] = {.lex_state = 775}, - [5084] = {.lex_state = 742}, - [5085] = {.lex_state = 775}, - [5086] = {.lex_state = 775}, - [5087] = {.lex_state = 775}, - [5088] = {.lex_state = 775}, - [5089] = {.lex_state = 275}, - [5090] = {.lex_state = 742}, - [5091] = {.lex_state = 742}, - [5092] = {.lex_state = 283}, - [5093] = {.lex_state = 33}, - [5094] = {.lex_state = 742}, - [5095] = {.lex_state = 742}, - [5096] = {.lex_state = 33}, - [5097] = {.lex_state = 742}, - [5098] = {.lex_state = 742}, - [5099] = {.lex_state = 273}, - [5100] = {.lex_state = 742}, - [5101] = {.lex_state = 275}, - [5102] = {.lex_state = 742}, - [5103] = {.lex_state = 742}, - [5104] = {.lex_state = 274}, - [5105] = {.lex_state = 742}, - [5106] = {.lex_state = 742}, - [5107] = {.lex_state = 742}, - [5108] = {.lex_state = 33}, - [5109] = {.lex_state = 742}, - [5110] = {.lex_state = 33}, - [5111] = {.lex_state = 742}, - [5112] = {.lex_state = 775}, - [5113] = {.lex_state = 775}, - [5114] = {.lex_state = 775}, - [5115] = {.lex_state = 775}, - [5116] = {.lex_state = 33}, - [5117] = {.lex_state = 742}, - [5118] = {.lex_state = 742}, - [5119] = {.lex_state = 742}, - [5120] = {.lex_state = 742}, - [5121] = {.lex_state = 742}, - [5122] = {.lex_state = 33}, - [5123] = {.lex_state = 742}, - [5124] = {.lex_state = 3704}, - [5125] = {.lex_state = 743}, - [5126] = {.lex_state = 742}, - [5127] = {.lex_state = 308}, - [5128] = {.lex_state = 742}, - [5129] = {.lex_state = 742}, - [5130] = {.lex_state = 274}, - [5131] = {.lex_state = 742}, - [5132] = {.lex_state = 33}, - [5133] = {.lex_state = 710}, - [5134] = {.lex_state = 33}, - [5135] = {.lex_state = 33}, - [5136] = {.lex_state = 742}, - [5137] = {.lex_state = 742}, - [5138] = {.lex_state = 33}, - [5139] = {.lex_state = 33}, - [5140] = {.lex_state = 742}, - [5141] = {.lex_state = 812}, - [5142] = {.lex_state = 33}, - [5143] = {.lex_state = 268}, - [5144] = {.lex_state = 33}, - [5145] = {.lex_state = 742}, - [5146] = {.lex_state = 742}, - [5147] = {.lex_state = 33}, - [5148] = {.lex_state = 33}, - [5149] = {.lex_state = 742}, - [5150] = {.lex_state = 33}, - [5151] = {.lex_state = 277}, - [5152] = {.lex_state = 33}, - [5153] = {.lex_state = 742}, - [5154] = {.lex_state = 742}, - [5155] = {.lex_state = 742}, - [5156] = {.lex_state = 33}, - [5157] = {.lex_state = 775}, - [5158] = {.lex_state = 775}, - [5159] = {.lex_state = 3704}, - [5160] = {.lex_state = 742}, - [5161] = {.lex_state = 812}, - [5162] = {.lex_state = 33}, - [5163] = {.lex_state = 742}, - [5164] = {.lex_state = 275}, - [5165] = {.lex_state = 3704}, - [5166] = {.lex_state = 279}, - [5167] = {.lex_state = 742}, - [5168] = {.lex_state = 742}, - [5169] = {.lex_state = 33}, - [5170] = {.lex_state = 33}, - [5171] = {.lex_state = 33}, - [5172] = {.lex_state = 33}, - [5173] = {.lex_state = 742}, - [5174] = {.lex_state = 33}, - [5175] = {.lex_state = 742}, - [5176] = {.lex_state = 710}, - [5177] = {.lex_state = 742}, - [5178] = {.lex_state = 346}, - [5179] = {.lex_state = 775}, - [5180] = {.lex_state = 340}, - [5181] = {.lex_state = 775}, - [5182] = {.lex_state = 7}, - [5183] = {.lex_state = 309}, - [5184] = {.lex_state = 775}, - [5185] = {.lex_state = 717}, - [5186] = {.lex_state = 71}, - [5187] = {.lex_state = 717}, - [5188] = {.lex_state = 717}, - [5189] = {.lex_state = 322}, - [5190] = {.lex_state = 717}, - [5191] = {.lex_state = 717}, - [5192] = {.lex_state = 775}, - [5193] = {.lex_state = 7}, - [5194] = {.lex_state = 775}, - [5195] = {.lex_state = 353}, - [5196] = {.lex_state = 717}, - [5197] = {.lex_state = 717}, - [5198] = {.lex_state = 269}, - [5199] = {.lex_state = 717}, - [5200] = {.lex_state = 717}, - [5201] = {.lex_state = 275}, - [5202] = {.lex_state = 33}, - [5203] = {.lex_state = 284}, - [5204] = {.lex_state = 717}, - [5205] = {.lex_state = 717}, - [5206] = {.lex_state = 322}, - [5207] = {.lex_state = 717}, - [5208] = {.lex_state = 717}, - [5209] = {.lex_state = 717}, - [5210] = {.lex_state = 775}, - [5211] = {.lex_state = 280}, - [5212] = {.lex_state = 717}, - [5213] = {.lex_state = 71}, - [5214] = {.lex_state = 275}, - [5215] = {.lex_state = 33}, - [5216] = {.lex_state = 717}, - [5217] = {.lex_state = 71}, - [5218] = {.lex_state = 338}, - [5219] = {.lex_state = 775}, - [5220] = {.lex_state = 743}, - [5221] = {.lex_state = 717}, - [5222] = {.lex_state = 33}, - [5223] = {.lex_state = 33}, - [5224] = {.lex_state = 717}, - [5225] = {.lex_state = 280}, - [5226] = {.lex_state = 62}, - [5227] = {.lex_state = 7}, - [5228] = {.lex_state = 775}, - [5229] = {.lex_state = 269}, - [5230] = {.lex_state = 33}, - [5231] = {.lex_state = 33}, - [5232] = {.lex_state = 7}, - [5233] = {.lex_state = 284}, - [5234] = {.lex_state = 717}, - [5235] = {.lex_state = 717}, - [5236] = {.lex_state = 71}, - [5237] = {.lex_state = 717}, - [5238] = {.lex_state = 33}, - [5239] = {.lex_state = 71}, - [5240] = {.lex_state = 717}, - [5241] = {.lex_state = 775}, - [5242] = {.lex_state = 62}, - [5243] = {.lex_state = 7}, - [5244] = {.lex_state = 717}, - [5245] = {.lex_state = 315}, - [5246] = {.lex_state = 742}, - [5247] = {.lex_state = 3880}, - [5248] = {.lex_state = 281}, - [5249] = {.lex_state = 341}, - [5250] = {.lex_state = 341}, - [5251] = {.lex_state = 77}, - [5252] = {.lex_state = 78}, - [5253] = {.lex_state = 3705}, - [5254] = {.lex_state = 285}, - [5255] = {.lex_state = 33}, - [5256] = {.lex_state = 3705}, - [5257] = {.lex_state = 347}, - [5258] = {.lex_state = 3705}, - [5259] = {.lex_state = 354}, - [5260] = {.lex_state = 323}, - [5261] = {.lex_state = 308}, - [5262] = {.lex_state = 323}, - [5263] = {.lex_state = 717}, - [5264] = {.lex_state = 717}, - [5265] = {.lex_state = 324}, - [5266] = {.lex_state = 3247}, - [5267] = {.lex_state = 323}, - [5268] = {.lex_state = 3247}, - [5269] = {.lex_state = 323}, - [5270] = {.lex_state = 282}, - [5271] = {.lex_state = 323}, - [5272] = {.lex_state = 3705}, - [5273] = {.lex_state = 310}, - [5274] = {.lex_state = 3705}, - [5275] = {.lex_state = 3705}, - [5276] = {.lex_state = 3247}, - [5277] = {.lex_state = 3247}, - [5278] = {.lex_state = 3247}, - [5279] = {.lex_state = 3247}, - [5280] = {.lex_state = 717}, - [5281] = {.lex_state = 33, .external_lex_state = 2}, - [5282] = {.lex_state = 62}, - [5283] = {.lex_state = 62}, - [5284] = {.lex_state = 717}, - [5285] = {.lex_state = 3880}, - [5286] = {.lex_state = 3880}, - [5287] = {.lex_state = 33, .external_lex_state = 2}, - [5288] = {.lex_state = 717}, - [5289] = {.lex_state = 781}, - [5290] = {.lex_state = 717}, - [5291] = {.lex_state = 33, .external_lex_state = 2}, - [5292] = {.lex_state = 3880}, - [5293] = {.lex_state = 317}, - [5294] = {.lex_state = 717}, - [5295] = {.lex_state = 717}, - [5296] = {.lex_state = 717}, - [5297] = {.lex_state = 717}, - [5298] = {.lex_state = 717}, - [5299] = {.lex_state = 717}, - [5300] = {.lex_state = 717}, - [5301] = {.lex_state = 717}, - [5302] = {.lex_state = 717}, - [5303] = {.lex_state = 717}, - [5304] = {.lex_state = 717}, - [5305] = {.lex_state = 717}, - [5306] = {.lex_state = 717}, - [5307] = {.lex_state = 717}, - [5308] = {.lex_state = 717}, - [5309] = {.lex_state = 3705}, - [5310] = {.lex_state = 717}, - [5311] = {.lex_state = 3247}, - [5312] = {.lex_state = 3247}, - [5313] = {.lex_state = 717}, - [5314] = {.lex_state = 717}, - [5315] = {.lex_state = 717}, - [5316] = {.lex_state = 3247}, - [5317] = {.lex_state = 3247}, - [5318] = {.lex_state = 3247}, - [5319] = {.lex_state = 3247}, - [5320] = {.lex_state = 33, .external_lex_state = 2}, - [5321] = {.lex_state = 3880}, - [5322] = {.lex_state = 3880}, - [5323] = {.lex_state = 33, .external_lex_state = 2}, - [5324] = {.lex_state = 781}, - [5325] = {.lex_state = 781}, - [5326] = {.lex_state = 33, .external_lex_state = 2}, - [5327] = {.lex_state = 296}, - [5328] = {.lex_state = 298}, - [5329] = {.lex_state = 781}, - [5330] = {.lex_state = 3247}, - [5331] = {.lex_state = 3247}, - [5332] = {.lex_state = 33, .external_lex_state = 2}, - [5333] = {.lex_state = 33, .external_lex_state = 2}, - [5334] = {.lex_state = 281}, - [5335] = {.lex_state = 281}, + [4842] = {.lex_state = 2299}, + [4843] = {.lex_state = 2299}, + [4844] = {.lex_state = 32}, + [4845] = {.lex_state = 2299}, + [4846] = {.lex_state = 32}, + [4847] = {.lex_state = 2299}, + [4848] = {.lex_state = 32}, + [4849] = {.lex_state = 2299}, + [4850] = {.lex_state = 32}, + [4851] = {.lex_state = 32}, + [4852] = {.lex_state = 2299}, + [4853] = {.lex_state = 32}, + [4854] = {.lex_state = 2296}, + [4855] = {.lex_state = 2299}, + [4856] = {.lex_state = 32}, + [4857] = {.lex_state = 2299}, + [4858] = {.lex_state = 2299}, + [4859] = {.lex_state = 2365}, + [4860] = {.lex_state = 32}, + [4861] = {.lex_state = 2299}, + [4862] = {.lex_state = 2296}, + [4863] = {.lex_state = 2296}, + [4864] = {.lex_state = 274}, + [4865] = {.lex_state = 275}, + [4866] = {.lex_state = 2297}, + [4867] = {.lex_state = 2299}, + [4868] = {.lex_state = 2299}, + [4869] = {.lex_state = 69}, + [4870] = {.lex_state = 2296}, + [4871] = {.lex_state = 2296}, + [4872] = {.lex_state = 32}, + [4873] = {.lex_state = 32}, + [4874] = {.lex_state = 2296}, + [4875] = {.lex_state = 2296}, + [4876] = {.lex_state = 69}, + [4877] = {.lex_state = 32}, + [4878] = {.lex_state = 2299}, + [4879] = {.lex_state = 2299}, + [4880] = {.lex_state = 32}, + [4881] = {.lex_state = 2299}, + [4882] = {.lex_state = 2299}, + [4883] = {.lex_state = 32}, + [4884] = {.lex_state = 2336}, + [4885] = {.lex_state = 32}, + [4886] = {.lex_state = 32}, + [4887] = {.lex_state = 2366}, + [4888] = {.lex_state = 2329}, + [4889] = {.lex_state = 2297}, + [4890] = {.lex_state = 2336}, + [4891] = {.lex_state = 2329}, + [4892] = {.lex_state = 2299}, + [4893] = {.lex_state = 32}, + [4894] = {.lex_state = 2299}, + [4895] = {.lex_state = 2299}, + [4896] = {.lex_state = 32}, + [4897] = {.lex_state = 2296}, + [4898] = {.lex_state = 2299}, + [4899] = {.lex_state = 2299}, + [4900] = {.lex_state = 2299}, + [4901] = {.lex_state = 32}, + [4902] = {.lex_state = 2299}, + [4903] = {.lex_state = 2299}, + [4904] = {.lex_state = 2296}, + [4905] = {.lex_state = 2299}, + [4906] = {.lex_state = 2296}, + [4907] = {.lex_state = 2}, + [4908] = {.lex_state = 2299}, + [4909] = {.lex_state = 32}, + [4910] = {.lex_state = 2296}, + [4911] = {.lex_state = 2299}, + [4912] = {.lex_state = 2299}, + [4913] = {.lex_state = 2299}, + [4914] = {.lex_state = 2297}, + [4915] = {.lex_state = 2297}, + [4916] = {.lex_state = 2297}, + [4917] = {.lex_state = 2297}, + [4918] = {.lex_state = 2297}, + [4919] = {.lex_state = 2297}, + [4920] = {.lex_state = 2297}, + [4921] = {.lex_state = 2297}, + [4922] = {.lex_state = 2297}, + [4923] = {.lex_state = 2297}, + [4924] = {.lex_state = 2297}, + [4925] = {.lex_state = 2297}, + [4926] = {.lex_state = 2299}, + [4927] = {.lex_state = 2329}, + [4928] = {.lex_state = 32}, + [4929] = {.lex_state = 32}, + [4930] = {.lex_state = 32}, + [4931] = {.lex_state = 2299}, + [4932] = {.lex_state = 32}, + [4933] = {.lex_state = 2299}, + [4934] = {.lex_state = 32}, + [4935] = {.lex_state = 2299}, + [4936] = {.lex_state = 32}, + [4937] = {.lex_state = 32}, + [4938] = {.lex_state = 54}, + [4939] = {.lex_state = 2299}, + [4940] = {.lex_state = 2366}, + [4941] = {.lex_state = 32}, + [4942] = {.lex_state = 32}, + [4943] = {.lex_state = 2296}, + [4944] = {.lex_state = 2299}, + [4945] = {.lex_state = 65}, + [4946] = {.lex_state = 2299}, + [4947] = {.lex_state = 32}, + [4948] = {.lex_state = 2299}, + [4949] = {.lex_state = 2299}, + [4950] = {.lex_state = 2}, + [4951] = {.lex_state = 2299}, + [4952] = {.lex_state = 2297}, + [4953] = {.lex_state = 2299}, + [4954] = {.lex_state = 32}, + [4955] = {.lex_state = 2299}, + [4956] = {.lex_state = 2296}, + [4957] = {.lex_state = 2366}, + [4958] = {.lex_state = 2299}, + [4959] = {.lex_state = 32}, + [4960] = {.lex_state = 2299}, + [4961] = {.lex_state = 2296}, + [4962] = {.lex_state = 2299}, + [4963] = {.lex_state = 2299}, + [4964] = {.lex_state = 2366}, + [4965] = {.lex_state = 32}, + [4966] = {.lex_state = 2299}, + [4967] = {.lex_state = 2299}, + [4968] = {.lex_state = 32}, + [4969] = {.lex_state = 2299}, + [4970] = {.lex_state = 2299}, + [4971] = {.lex_state = 2296}, + [4972] = {.lex_state = 2299}, + [4973] = {.lex_state = 32}, + [4974] = {.lex_state = 2299}, + [4975] = {.lex_state = 2299}, + [4976] = {.lex_state = 2296}, + [4977] = {.lex_state = 2296}, + [4978] = {.lex_state = 2299}, + [4979] = {.lex_state = 2296}, + [4980] = {.lex_state = 2299}, + [4981] = {.lex_state = 2299}, + [4982] = {.lex_state = 2296}, + [4983] = {.lex_state = 2299}, + [4984] = {.lex_state = 2299}, + [4985] = {.lex_state = 2299}, + [4986] = {.lex_state = 2296}, + [4987] = {.lex_state = 2296}, + [4988] = {.lex_state = 2299}, + [4989] = {.lex_state = 2299}, + [4990] = {.lex_state = 271}, + [4991] = {.lex_state = 2299}, + [4992] = {.lex_state = 32}, + [4993] = {.lex_state = 2299}, + [4994] = {.lex_state = 32}, + [4995] = {.lex_state = 2299}, + [4996] = {.lex_state = 32}, + [4997] = {.lex_state = 2299}, + [4998] = {.lex_state = 2296}, + [4999] = {.lex_state = 32}, + [5000] = {.lex_state = 32}, + [5001] = {.lex_state = 32}, + [5002] = {.lex_state = 2299}, + [5003] = {.lex_state = 32}, + [5004] = {.lex_state = 54}, + [5005] = {.lex_state = 2296}, + [5006] = {.lex_state = 32}, + [5007] = {.lex_state = 2329}, + [5008] = {.lex_state = 98}, + [5009] = {.lex_state = 32}, + [5010] = {.lex_state = 32}, + [5011] = {.lex_state = 277}, + [5012] = {.lex_state = 282}, + [5013] = {.lex_state = 2296}, + [5014] = {.lex_state = 2296}, + [5015] = {.lex_state = 2296}, + [5016] = {.lex_state = 2296}, + [5017] = {.lex_state = 2296}, + [5018] = {.lex_state = 274}, + [5019] = {.lex_state = 274}, + [5020] = {.lex_state = 274}, + [5021] = {.lex_state = 2296}, + [5022] = {.lex_state = 272}, + [5023] = {.lex_state = 2296}, + [5024] = {.lex_state = 2296}, + [5025] = {.lex_state = 32}, + [5026] = {.lex_state = 2296}, + [5027] = {.lex_state = 32}, + [5028] = {.lex_state = 32}, + [5029] = {.lex_state = 32}, + [5030] = {.lex_state = 32}, + [5031] = {.lex_state = 32}, + [5032] = {.lex_state = 32}, + [5033] = {.lex_state = 32}, + [5034] = {.lex_state = 32}, + [5035] = {.lex_state = 32}, + [5036] = {.lex_state = 32}, + [5037] = {.lex_state = 32}, + [5038] = {.lex_state = 32}, + [5039] = {.lex_state = 32}, + [5040] = {.lex_state = 32}, + [5041] = {.lex_state = 32}, + [5042] = {.lex_state = 32}, + [5043] = {.lex_state = 32}, + [5044] = {.lex_state = 32}, + [5045] = {.lex_state = 32}, + [5046] = {.lex_state = 32}, + [5047] = {.lex_state = 32}, + [5048] = {.lex_state = 2296}, + [5049] = {.lex_state = 2296}, + [5050] = {.lex_state = 32}, + [5051] = {.lex_state = 2366}, + [5052] = {.lex_state = 2366}, + [5053] = {.lex_state = 2366}, + [5054] = {.lex_state = 2366}, + [5055] = {.lex_state = 2296}, + [5056] = {.lex_state = 2264}, + [5057] = {.lex_state = 2264}, + [5058] = {.lex_state = 2296}, + [5059] = {.lex_state = 2264}, + [5060] = {.lex_state = 2296}, + [5061] = {.lex_state = 6004}, + [5062] = {.lex_state = 2264}, + [5063] = {.lex_state = 2296}, + [5064] = {.lex_state = 6004}, + [5065] = {.lex_state = 2296}, + [5066] = {.lex_state = 2296}, + [5067] = {.lex_state = 32}, + [5068] = {.lex_state = 32}, + [5069] = {.lex_state = 2264}, + [5070] = {.lex_state = 32}, + [5071] = {.lex_state = 2264}, + [5072] = {.lex_state = 32}, + [5073] = {.lex_state = 2296}, + [5074] = {.lex_state = 2296}, + [5075] = {.lex_state = 2296}, + [5076] = {.lex_state = 2296}, + [5077] = {.lex_state = 2296}, + [5078] = {.lex_state = 2296}, + [5079] = {.lex_state = 2296}, + [5080] = {.lex_state = 2296}, + [5081] = {.lex_state = 307}, + [5082] = {.lex_state = 269}, + [5083] = {.lex_state = 320}, + [5084] = {.lex_state = 2296}, + [5085] = {.lex_state = 2296}, + [5086] = {.lex_state = 274}, + [5087] = {.lex_state = 2296}, + [5088] = {.lex_state = 6004}, + [5089] = {.lex_state = 267}, + [5090] = {.lex_state = 6004}, + [5091] = {.lex_state = 2296}, + [5092] = {.lex_state = 2296}, + [5093] = {.lex_state = 2296}, + [5094] = {.lex_state = 2296}, + [5095] = {.lex_state = 2296}, + [5096] = {.lex_state = 32}, + [5097] = {.lex_state = 267}, + [5098] = {.lex_state = 2296}, + [5099] = {.lex_state = 2296}, + [5100] = {.lex_state = 2296}, + [5101] = {.lex_state = 2296}, + [5102] = {.lex_state = 2296}, + [5103] = {.lex_state = 2296}, + [5104] = {.lex_state = 2296}, + [5105] = {.lex_state = 2296}, + [5106] = {.lex_state = 2296}, + [5107] = {.lex_state = 2296}, + [5108] = {.lex_state = 2296}, + [5109] = {.lex_state = 2296}, + [5110] = {.lex_state = 2296}, + [5111] = {.lex_state = 2296}, + [5112] = {.lex_state = 2366}, + [5113] = {.lex_state = 2296}, + [5114] = {.lex_state = 2296}, + [5115] = {.lex_state = 273}, + [5116] = {.lex_state = 2296}, + [5117] = {.lex_state = 2296}, + [5118] = {.lex_state = 2296}, + [5119] = {.lex_state = 2296}, + [5120] = {.lex_state = 2296}, + [5121] = {.lex_state = 2296}, + [5122] = {.lex_state = 2296}, + [5123] = {.lex_state = 2296}, + [5124] = {.lex_state = 2296}, + [5125] = {.lex_state = 2296}, + [5126] = {.lex_state = 2296}, + [5127] = {.lex_state = 2296}, + [5128] = {.lex_state = 2296}, + [5129] = {.lex_state = 2296}, + [5130] = {.lex_state = 2296}, + [5131] = {.lex_state = 2296}, + [5132] = {.lex_state = 2296}, + [5133] = {.lex_state = 2296}, + [5134] = {.lex_state = 2296}, + [5135] = {.lex_state = 2296}, + [5136] = {.lex_state = 2296}, + [5137] = {.lex_state = 273}, + [5138] = {.lex_state = 32}, + [5139] = {.lex_state = 32}, + [5140] = {.lex_state = 32}, + [5141] = {.lex_state = 274}, + [5142] = {.lex_state = 269}, + [5143] = {.lex_state = 98}, + [5144] = {.lex_state = 2297}, + [5145] = {.lex_state = 2297}, + [5146] = {.lex_state = 2297}, + [5147] = {.lex_state = 2297}, + [5148] = {.lex_state = 2296}, + [5149] = {.lex_state = 2296}, + [5150] = {.lex_state = 2297}, + [5151] = {.lex_state = 2297}, + [5152] = {.lex_state = 2297}, + [5153] = {.lex_state = 2297}, + [5154] = {.lex_state = 6004}, + [5155] = {.lex_state = 2297}, + [5156] = {.lex_state = 2297}, + [5157] = {.lex_state = 2297}, + [5158] = {.lex_state = 2297}, + [5159] = {.lex_state = 2329}, + [5160] = {.lex_state = 2329}, + [5161] = {.lex_state = 2329}, + [5162] = {.lex_state = 2329}, + [5163] = {.lex_state = 2329}, + [5164] = {.lex_state = 276}, + [5165] = {.lex_state = 278}, + [5166] = {.lex_state = 2296}, + [5167] = {.lex_state = 2329}, + [5168] = {.lex_state = 2329}, + [5169] = {.lex_state = 2329}, + [5170] = {.lex_state = 2329}, + [5171] = {.lex_state = 2296}, + [5172] = {.lex_state = 2297}, + [5173] = {.lex_state = 32}, + [5174] = {.lex_state = 32}, + [5175] = {.lex_state = 2296}, + [5176] = {.lex_state = 2329}, + [5177] = {.lex_state = 2329}, + [5178] = {.lex_state = 2296}, + [5179] = {.lex_state = 339}, + [5180] = {.lex_state = 2271}, + [5181] = {.lex_state = 2271}, + [5182] = {.lex_state = 2271}, + [5183] = {.lex_state = 2271}, + [5184] = {.lex_state = 2271}, + [5185] = {.lex_state = 2271}, + [5186] = {.lex_state = 2271}, + [5187] = {.lex_state = 2271}, + [5188] = {.lex_state = 2271}, + [5189] = {.lex_state = 70}, + [5190] = {.lex_state = 2271}, + [5191] = {.lex_state = 2271}, + [5192] = {.lex_state = 2271}, + [5193] = {.lex_state = 2271}, + [5194] = {.lex_state = 2271}, + [5195] = {.lex_state = 2271}, + [5196] = {.lex_state = 6}, + [5197] = {.lex_state = 2271}, + [5198] = {.lex_state = 70}, + [5199] = {.lex_state = 2271}, + [5200] = {.lex_state = 32}, + [5201] = {.lex_state = 2271}, + [5202] = {.lex_state = 2271}, + [5203] = {.lex_state = 2271}, + [5204] = {.lex_state = 2271}, + [5205] = {.lex_state = 2271}, + [5206] = {.lex_state = 2329}, + [5207] = {.lex_state = 6}, + [5208] = {.lex_state = 274}, + [5209] = {.lex_state = 32}, + [5210] = {.lex_state = 2329}, + [5211] = {.lex_state = 6}, + [5212] = {.lex_state = 2329}, + [5213] = {.lex_state = 321}, + [5214] = {.lex_state = 337}, + [5215] = {.lex_state = 2271}, + [5216] = {.lex_state = 268}, + [5217] = {.lex_state = 32}, + [5218] = {.lex_state = 61}, + [5219] = {.lex_state = 32}, + [5220] = {.lex_state = 6}, + [5221] = {.lex_state = 2329}, + [5222] = {.lex_state = 279}, + [5223] = {.lex_state = 2329}, + [5224] = {.lex_state = 2329}, + [5225] = {.lex_state = 2329}, + [5226] = {.lex_state = 2297}, + [5227] = {.lex_state = 274}, + [5228] = {.lex_state = 70}, + [5229] = {.lex_state = 283}, + [5230] = {.lex_state = 321}, + [5231] = {.lex_state = 279}, + [5232] = {.lex_state = 268}, + [5233] = {.lex_state = 6}, + [5234] = {.lex_state = 2296}, + [5235] = {.lex_state = 345}, + [5236] = {.lex_state = 283}, + [5237] = {.lex_state = 70}, + [5238] = {.lex_state = 70}, + [5239] = {.lex_state = 352}, + [5240] = {.lex_state = 32}, + [5241] = {.lex_state = 32}, + [5242] = {.lex_state = 32}, + [5243] = {.lex_state = 61}, + [5244] = {.lex_state = 2329}, + [5245] = {.lex_state = 2329}, + [5246] = {.lex_state = 308}, + [5247] = {.lex_state = 314}, + [5248] = {.lex_state = 5547}, + [5249] = {.lex_state = 315}, + [5250] = {.lex_state = 281}, + [5251] = {.lex_state = 32}, + [5252] = {.lex_state = 281}, + [5253] = {.lex_state = 284}, + [5254] = {.lex_state = 346}, + [5255] = {.lex_state = 280}, + [5256] = {.lex_state = 2335}, + [5257] = {.lex_state = 353}, + [5258] = {.lex_state = 32, .external_lex_state = 2}, + [5259] = {.lex_state = 6005}, + [5260] = {.lex_state = 5547}, + [5261] = {.lex_state = 5547}, + [5262] = {.lex_state = 32, .external_lex_state = 2}, + [5263] = {.lex_state = 6005}, + [5264] = {.lex_state = 5547}, + [5265] = {.lex_state = 5547}, + [5266] = {.lex_state = 6005}, + [5267] = {.lex_state = 2271}, + [5268] = {.lex_state = 309}, + [5269] = {.lex_state = 2271}, + [5270] = {.lex_state = 6180}, + [5271] = {.lex_state = 6180}, + [5272] = {.lex_state = 32, .external_lex_state = 2}, + [5273] = {.lex_state = 281}, + [5274] = {.lex_state = 2335}, + [5275] = {.lex_state = 5547}, + [5276] = {.lex_state = 5547}, + [5277] = {.lex_state = 6180}, + [5278] = {.lex_state = 32, .external_lex_state = 2}, + [5279] = {.lex_state = 6180}, + [5280] = {.lex_state = 316}, + [5281] = {.lex_state = 5547}, + [5282] = {.lex_state = 5547}, + [5283] = {.lex_state = 32, .external_lex_state = 2}, + [5284] = {.lex_state = 2335}, + [5285] = {.lex_state = 2271}, + [5286] = {.lex_state = 61}, + [5287] = {.lex_state = 61}, + [5288] = {.lex_state = 2335}, + [5289] = {.lex_state = 322}, + [5290] = {.lex_state = 322}, + [5291] = {.lex_state = 307}, + [5292] = {.lex_state = 340}, + [5293] = {.lex_state = 6180}, + [5294] = {.lex_state = 2271}, + [5295] = {.lex_state = 6180}, + [5296] = {.lex_state = 2271}, + [5297] = {.lex_state = 2271}, + [5298] = {.lex_state = 2271}, + [5299] = {.lex_state = 2271}, + [5300] = {.lex_state = 2271}, + [5301] = {.lex_state = 2271}, + [5302] = {.lex_state = 2271}, + [5303] = {.lex_state = 2271}, + [5304] = {.lex_state = 315}, + [5305] = {.lex_state = 2271}, + [5306] = {.lex_state = 2271}, + [5307] = {.lex_state = 2271}, + [5308] = {.lex_state = 2271}, + [5309] = {.lex_state = 2271}, + [5310] = {.lex_state = 2271}, + [5311] = {.lex_state = 2271}, + [5312] = {.lex_state = 2271}, + [5313] = {.lex_state = 5547}, + [5314] = {.lex_state = 5547}, + [5315] = {.lex_state = 32, .external_lex_state = 2}, + [5316] = {.lex_state = 32, .external_lex_state = 2}, + [5317] = {.lex_state = 32, .external_lex_state = 2}, + [5318] = {.lex_state = 281}, + [5319] = {.lex_state = 307}, + [5320] = {.lex_state = 5547}, + [5321] = {.lex_state = 5547}, + [5322] = {.lex_state = 5547}, + [5323] = {.lex_state = 5547}, + [5324] = {.lex_state = 322}, + [5325] = {.lex_state = 340}, + [5326] = {.lex_state = 295}, + [5327] = {.lex_state = 297}, + [5328] = {.lex_state = 284}, + [5329] = {.lex_state = 76}, + [5330] = {.lex_state = 2271}, + [5331] = {.lex_state = 5547}, + [5332] = {.lex_state = 5547}, + [5333] = {.lex_state = 32, .external_lex_state = 2}, + [5334] = {.lex_state = 323}, + [5335] = {.lex_state = 322}, [5336] = {.lex_state = 281}, - [5337] = {.lex_state = 3247}, - [5338] = {.lex_state = 3247}, - [5339] = {.lex_state = 281}, - [5340] = {.lex_state = 3247}, - [5341] = {.lex_state = 3247}, - [5342] = {.lex_state = 355}, - [5343] = {.lex_state = 355}, - [5344] = {.lex_state = 33}, - [5345] = {.lex_state = 316}, - [5346] = {.lex_state = 316}, - [5347] = {.lex_state = 282}, - [5348] = {.lex_state = 285}, - [5349] = {.lex_state = 282}, - [5350] = {.lex_state = 282}, - [5351] = {.lex_state = 282}, - [5352] = {.lex_state = 308}, - [5353] = {.lex_state = 33, .external_lex_state = 2}, - [5354] = {.lex_state = 775}, - [5355] = {.lex_state = 775}, - [5356] = {.lex_state = 308}, - [5357] = {.lex_state = 781}, - [5358] = {.lex_state = 781}, - [5359] = {.lex_state = 352}, - [5360] = {.lex_state = 62}, - [5361] = {.lex_state = 62}, - [5362] = {.lex_state = 62}, - [5363] = {.lex_state = 62}, - [5364] = {.lex_state = 62}, - [5365] = {.lex_state = 62}, - [5366] = {.lex_state = 62}, - [5367] = {.lex_state = 62}, - [5368] = {.lex_state = 62}, - [5369] = {.lex_state = 62}, - [5370] = {.lex_state = 62}, - [5371] = {.lex_state = 62}, - [5372] = {.lex_state = 62}, - [5373] = {.lex_state = 62}, - [5374] = {.lex_state = 339}, - [5375] = {.lex_state = 356}, - [5376] = {.lex_state = 818}, - [5377] = {.lex_state = 717}, - [5378] = {.lex_state = 717}, - [5379] = {.lex_state = 717}, - [5380] = {.lex_state = 717}, - [5381] = {.lex_state = 775}, - [5382] = {.lex_state = 33}, - [5383] = {.lex_state = 357}, - [5384] = {.lex_state = 775}, - [5385] = {.lex_state = 339}, - [5386] = {.lex_state = 775}, - [5387] = {.lex_state = 33, .external_lex_state = 2}, - [5388] = {.lex_state = 775}, - [5389] = {.lex_state = 775}, - [5390] = {.lex_state = 356}, - [5391] = {.lex_state = 79}, - [5392] = {.lex_state = 33}, - [5393] = {.lex_state = 62}, - [5394] = {.lex_state = 781}, - [5395] = {.lex_state = 813}, - [5396] = {.lex_state = 33}, - [5397] = {.lex_state = 781}, - [5398] = {.lex_state = 781}, - [5399] = {.lex_state = 33}, - [5400] = {.lex_state = 711}, - [5401] = {.lex_state = 775}, - [5402] = {.lex_state = 325}, - [5403] = {.lex_state = 79}, - [5404] = {.lex_state = 717}, - [5405] = {.lex_state = 775}, - [5406] = {.lex_state = 775}, - [5407] = {.lex_state = 775}, - [5408] = {.lex_state = 717}, - [5409] = {.lex_state = 775}, - [5410] = {.lex_state = 775}, - [5411] = {.lex_state = 775}, - [5412] = {.lex_state = 318}, - [5413] = {.lex_state = 62}, - [5414] = {.lex_state = 299}, - [5415] = {.lex_state = 62}, - [5416] = {.lex_state = 711}, - [5417] = {.lex_state = 775}, - [5418] = {.lex_state = 299}, - [5419] = {.lex_state = 775}, - [5420] = {.lex_state = 348}, - [5421] = {.lex_state = 775}, - [5422] = {.lex_state = 775}, - [5423] = {.lex_state = 717}, - [5424] = {.lex_state = 339}, - [5425] = {.lex_state = 775}, - [5426] = {.lex_state = 775}, - [5427] = {.lex_state = 711}, - [5428] = {.lex_state = 781}, - [5429] = {.lex_state = 717}, - [5430] = {.lex_state = 775}, - [5431] = {.lex_state = 74}, - [5432] = {.lex_state = 775}, - [5433] = {.lex_state = 775}, - [5434] = {.lex_state = 775}, - [5435] = {.lex_state = 62}, - [5436] = {.lex_state = 775}, - [5437] = {.lex_state = 775}, - [5438] = {.lex_state = 33, .external_lex_state = 2}, - [5439] = {.lex_state = 357}, - [5440] = {.lex_state = 775}, - [5441] = {.lex_state = 781}, - [5442] = {.lex_state = 339}, - [5443] = {.lex_state = 775}, - [5444] = {.lex_state = 775}, - [5445] = {.lex_state = 311}, - [5446] = {.lex_state = 357}, - [5447] = {.lex_state = 775}, - [5448] = {.lex_state = 775}, - [5449] = {.lex_state = 775}, - [5450] = {.lex_state = 33, .external_lex_state = 2}, - [5451] = {.lex_state = 775}, - [5452] = {.lex_state = 357}, - [5453] = {.lex_state = 33}, - [5454] = {.lex_state = 357}, - [5455] = {.lex_state = 775}, - [5456] = {.lex_state = 775}, - [5457] = {.lex_state = 317}, - [5458] = {.lex_state = 781}, - [5459] = {.lex_state = 308}, - [5460] = {.lex_state = 775}, - [5461] = {.lex_state = 775}, - [5462] = {.lex_state = 775}, - [5463] = {.lex_state = 775}, - [5464] = {.lex_state = 317}, - [5465] = {.lex_state = 775}, - [5466] = {.lex_state = 775}, - [5467] = {.lex_state = 781}, - [5468] = {.lex_state = 317}, - [5469] = {.lex_state = 317}, - [5470] = {.lex_state = 339}, - [5471] = {.lex_state = 308}, - [5472] = {.lex_state = 285}, - [5473] = {.lex_state = 775}, - [5474] = {.lex_state = 775}, - [5475] = {.lex_state = 359}, - [5476] = {.lex_state = 285}, - [5477] = {.lex_state = 325}, - [5478] = {.lex_state = 62}, - [5479] = {.lex_state = 62}, - [5480] = {.lex_state = 73}, - [5481] = {.lex_state = 775}, - [5482] = {.lex_state = 366}, - [5483] = {.lex_state = 775}, - [5484] = {.lex_state = 775}, - [5485] = {.lex_state = 775}, - [5486] = {.lex_state = 62}, - [5487] = {.lex_state = 62}, - [5488] = {.lex_state = 775}, - [5489] = {.lex_state = 62}, - [5490] = {.lex_state = 351}, - [5491] = {.lex_state = 775}, - [5492] = {.lex_state = 365}, - [5493] = {.lex_state = 62}, - [5494] = {.lex_state = 62}, - [5495] = {.lex_state = 775}, - [5496] = {.lex_state = 775}, - [5497] = {.lex_state = 775}, - [5498] = {.lex_state = 33, .external_lex_state = 2}, - [5499] = {.lex_state = 717}, - [5500] = {.lex_state = 33}, - [5501] = {.lex_state = 781}, - [5502] = {.lex_state = 781}, - [5503] = {.lex_state = 781}, - [5504] = {.lex_state = 326}, - [5505] = {.lex_state = 80}, - [5506] = {.lex_state = 257, .external_lex_state = 2}, - [5507] = {.lex_state = 350}, - [5508] = {.lex_state = 350}, - [5509] = {.lex_state = 75}, - [5510] = {.lex_state = 717}, - [5511] = {.lex_state = 80}, - [5512] = {.lex_state = 319}, - [5513] = {.lex_state = 319}, - [5514] = {.lex_state = 781}, - [5515] = {.lex_state = 781}, - [5516] = {.lex_state = 297}, - [5517] = {.lex_state = 297}, - [5518] = {.lex_state = 824}, - [5519] = {.lex_state = 297}, - [5520] = {.lex_state = 297}, - [5521] = {.lex_state = 257, .external_lex_state = 2}, - [5522] = {.lex_state = 33, .external_lex_state = 2}, - [5523] = {.lex_state = 717}, - [5524] = {.lex_state = 717}, - [5525] = {.lex_state = 717}, - [5526] = {.lex_state = 349}, - [5527] = {.lex_state = 717}, - [5528] = {.lex_state = 326}, - [5529] = {.lex_state = 824}, - [5530] = {.lex_state = 257, .external_lex_state = 2}, - [5531] = {.lex_state = 361}, - [5532] = {.lex_state = 257, .external_lex_state = 2}, - [5533] = {.lex_state = 257, .external_lex_state = 2}, - [5534] = {.lex_state = 350}, - [5535] = {.lex_state = 824}, - [5536] = {.lex_state = 33, .external_lex_state = 2}, - [5537] = {.lex_state = 257, .external_lex_state = 2}, - [5538] = {.lex_state = 33}, - [5539] = {.lex_state = 33, .external_lex_state = 2}, - [5540] = {.lex_state = 257, .external_lex_state = 2}, - [5541] = {.lex_state = 33, .external_lex_state = 2}, - [5542] = {.lex_state = 326}, - [5543] = {.lex_state = 33, .external_lex_state = 2}, - [5544] = {.lex_state = 257, .external_lex_state = 2}, - [5545] = {.lex_state = 813}, - [5546] = {.lex_state = 33, .external_lex_state = 2}, - [5547] = {.lex_state = 360}, - [5548] = {.lex_state = 326}, - [5549] = {.lex_state = 257, .external_lex_state = 2}, - [5550] = {.lex_state = 33}, - [5551] = {.lex_state = 33, .external_lex_state = 2}, - [5552] = {.lex_state = 33, .external_lex_state = 2}, - [5553] = {.lex_state = 33, .external_lex_state = 2}, - [5554] = {.lex_state = 257, .external_lex_state = 2}, - [5555] = {.lex_state = 33, .external_lex_state = 2}, - [5556] = {.lex_state = 33, .external_lex_state = 2}, - [5557] = {.lex_state = 257, .external_lex_state = 2}, - [5558] = {.lex_state = 257, .external_lex_state = 2}, - [5559] = {.lex_state = 33, .external_lex_state = 2}, - [5560] = {.lex_state = 710}, - [5561] = {.lex_state = 257, .external_lex_state = 2}, - [5562] = {.lex_state = 711}, - [5563] = {.lex_state = 711}, - [5564] = {.lex_state = 361}, - [5565] = {.lex_state = 257, .external_lex_state = 2}, - [5566] = {.lex_state = 257, .external_lex_state = 2}, - [5567] = {.lex_state = 257, .external_lex_state = 2}, - [5568] = {.lex_state = 257, .external_lex_state = 2}, - [5569] = {.lex_state = 781}, - [5570] = {.lex_state = 257, .external_lex_state = 2}, - [5571] = {.lex_state = 350}, - [5572] = {.lex_state = 350}, - [5573] = {.lex_state = 257, .external_lex_state = 2}, - [5574] = {.lex_state = 257, .external_lex_state = 2}, - [5575] = {.lex_state = 257, .external_lex_state = 2}, - [5576] = {.lex_state = 257, .external_lex_state = 2}, - [5577] = {.lex_state = 257, .external_lex_state = 2}, - [5578] = {.lex_state = 257, .external_lex_state = 2}, - [5579] = {.lex_state = 257, .external_lex_state = 2}, - [5580] = {.lex_state = 257, .external_lex_state = 2}, - [5581] = {.lex_state = 257, .external_lex_state = 2}, - [5582] = {.lex_state = 257, .external_lex_state = 2}, - [5583] = {.lex_state = 257, .external_lex_state = 2}, - [5584] = {.lex_state = 257, .external_lex_state = 2}, - [5585] = {.lex_state = 257, .external_lex_state = 2}, - [5586] = {.lex_state = 257, .external_lex_state = 2}, - [5587] = {.lex_state = 257, .external_lex_state = 2}, - [5588] = {.lex_state = 257, .external_lex_state = 2}, - [5589] = {.lex_state = 257, .external_lex_state = 2}, - [5590] = {.lex_state = 257, .external_lex_state = 2}, - [5591] = {.lex_state = 257, .external_lex_state = 2}, - [5592] = {.lex_state = 257, .external_lex_state = 2}, - [5593] = {.lex_state = 257, .external_lex_state = 2}, - [5594] = {.lex_state = 257, .external_lex_state = 2}, - [5595] = {.lex_state = 257, .external_lex_state = 2}, - [5596] = {.lex_state = 257, .external_lex_state = 2}, - [5597] = {.lex_state = 257, .external_lex_state = 2}, - [5598] = {.lex_state = 75}, - [5599] = {.lex_state = 358}, - [5600] = {.lex_state = 80}, - [5601] = {.lex_state = 368}, - [5602] = {.lex_state = 297}, - [5603] = {.lex_state = 781}, - [5604] = {.lex_state = 62}, - [5605] = {.lex_state = 358}, - [5606] = {.lex_state = 814}, - [5607] = {.lex_state = 814}, - [5608] = {.lex_state = 358}, - [5609] = {.lex_state = 80}, - [5610] = {.lex_state = 815}, - [5611] = {.lex_state = 711}, - [5612] = {.lex_state = 358}, - [5613] = {.lex_state = 33, .external_lex_state = 2}, - [5614] = {.lex_state = 33, .external_lex_state = 2}, - [5615] = {.lex_state = 367}, - [5616] = {.lex_state = 717}, - [5617] = {.lex_state = 824}, - [5618] = {.lex_state = 824}, - [5619] = {.lex_state = 257, .external_lex_state = 2}, - [5620] = {.lex_state = 717}, - [5621] = {.lex_state = 367}, - [5622] = {.lex_state = 717}, - [5623] = {.lex_state = 711}, - [5624] = {.lex_state = 358}, - [5625] = {.lex_state = 350}, - [5626] = {.lex_state = 80}, - [5627] = {.lex_state = 818}, - [5628] = {.lex_state = 368}, - [5629] = {.lex_state = 781}, - [5630] = {.lex_state = 312}, - [5631] = {.lex_state = 312}, - [5632] = {.lex_state = 362}, - [5633] = {.lex_state = 717}, - [5634] = {.lex_state = 312}, - [5635] = {.lex_state = 824}, - [5636] = {.lex_state = 824}, - [5637] = {.lex_state = 312}, - [5638] = {.lex_state = 312}, - [5639] = {.lex_state = 312}, - [5640] = {.lex_state = 76}, - [5641] = {.lex_state = 362}, - [5642] = {.lex_state = 71}, - [5643] = {.lex_state = 312}, - [5644] = {.lex_state = 375}, - [5645] = {.lex_state = 76}, - [5646] = {.lex_state = 337}, - [5647] = {.lex_state = 320}, - [5648] = {.lex_state = 362}, - [5649] = {.lex_state = 782}, - [5650] = {.lex_state = 363}, - [5651] = {.lex_state = 312}, - [5652] = {.lex_state = 33, .external_lex_state = 2}, - [5653] = {.lex_state = 320}, - [5654] = {.lex_state = 33, .external_lex_state = 2}, - [5655] = {.lex_state = 321}, - [5656] = {.lex_state = 33, .external_lex_state = 2}, - [5657] = {.lex_state = 312}, - [5658] = {.lex_state = 711}, - [5659] = {.lex_state = 312}, - [5660] = {.lex_state = 711}, - [5661] = {.lex_state = 14}, - [5662] = {.lex_state = 312}, + [5337] = {.lex_state = 2271}, + [5338] = {.lex_state = 6005}, + [5339] = {.lex_state = 6005}, + [5340] = {.lex_state = 2271}, + [5341] = {.lex_state = 77}, + [5342] = {.lex_state = 322}, + [5343] = {.lex_state = 32}, + [5344] = {.lex_state = 6005}, + [5345] = {.lex_state = 280}, + [5346] = {.lex_state = 2335}, + [5347] = {.lex_state = 280}, + [5348] = {.lex_state = 2329}, + [5349] = {.lex_state = 2271}, + [5350] = {.lex_state = 2329}, + [5351] = {.lex_state = 5547}, + [5352] = {.lex_state = 280}, + [5353] = {.lex_state = 6005}, + [5354] = {.lex_state = 280}, + [5355] = {.lex_state = 307}, + [5356] = {.lex_state = 354}, + [5357] = {.lex_state = 2335}, + [5358] = {.lex_state = 354}, + [5359] = {.lex_state = 2271}, + [5360] = {.lex_state = 2329}, + [5361] = {.lex_state = 2271}, + [5362] = {.lex_state = 355}, + [5363] = {.lex_state = 2329}, + [5364] = {.lex_state = 2329}, + [5365] = {.lex_state = 307}, + [5366] = {.lex_state = 2329}, + [5367] = {.lex_state = 2329}, + [5368] = {.lex_state = 2329}, + [5369] = {.lex_state = 351}, + [5370] = {.lex_state = 338}, + [5371] = {.lex_state = 2329}, + [5372] = {.lex_state = 307}, + [5373] = {.lex_state = 2329}, + [5374] = {.lex_state = 2329}, + [5375] = {.lex_state = 61}, + [5376] = {.lex_state = 2265}, + [5377] = {.lex_state = 32}, + [5378] = {.lex_state = 2329}, + [5379] = {.lex_state = 2329}, + [5380] = {.lex_state = 324}, + [5381] = {.lex_state = 2329}, + [5382] = {.lex_state = 356}, + [5383] = {.lex_state = 2329}, + [5384] = {.lex_state = 2329}, + [5385] = {.lex_state = 2329}, + [5386] = {.lex_state = 2329}, + [5387] = {.lex_state = 2329}, + [5388] = {.lex_state = 2329}, + [5389] = {.lex_state = 32}, + [5390] = {.lex_state = 32}, + [5391] = {.lex_state = 2329}, + [5392] = {.lex_state = 2329}, + [5393] = {.lex_state = 2329}, + [5394] = {.lex_state = 2329}, + [5395] = {.lex_state = 2329}, + [5396] = {.lex_state = 338}, + [5397] = {.lex_state = 2329}, + [5398] = {.lex_state = 2329}, + [5399] = {.lex_state = 2329}, + [5400] = {.lex_state = 2329}, + [5401] = {.lex_state = 2335}, + [5402] = {.lex_state = 2329}, + [5403] = {.lex_state = 2329}, + [5404] = {.lex_state = 61}, + [5405] = {.lex_state = 317}, + [5406] = {.lex_state = 338}, + [5407] = {.lex_state = 72}, + [5408] = {.lex_state = 32}, + [5409] = {.lex_state = 298}, + [5410] = {.lex_state = 61}, + [5411] = {.lex_state = 284}, + [5412] = {.lex_state = 338}, + [5413] = {.lex_state = 365}, + [5414] = {.lex_state = 2335}, + [5415] = {.lex_state = 298}, + [5416] = {.lex_state = 2329}, + [5417] = {.lex_state = 61}, + [5418] = {.lex_state = 2372}, + [5419] = {.lex_state = 338}, + [5420] = {.lex_state = 78}, + [5421] = {.lex_state = 2329}, + [5422] = {.lex_state = 2271}, + [5423] = {.lex_state = 347}, + [5424] = {.lex_state = 2265}, + [5425] = {.lex_state = 2329}, + [5426] = {.lex_state = 2271}, + [5427] = {.lex_state = 2335}, + [5428] = {.lex_state = 2329}, + [5429] = {.lex_state = 358}, + [5430] = {.lex_state = 61}, + [5431] = {.lex_state = 61}, + [5432] = {.lex_state = 2367}, + [5433] = {.lex_state = 350}, + [5434] = {.lex_state = 61}, + [5435] = {.lex_state = 32}, + [5436] = {.lex_state = 61}, + [5437] = {.lex_state = 61}, + [5438] = {.lex_state = 2329}, + [5439] = {.lex_state = 78}, + [5440] = {.lex_state = 324}, + [5441] = {.lex_state = 2329}, + [5442] = {.lex_state = 61}, + [5443] = {.lex_state = 73}, + [5444] = {.lex_state = 2329}, + [5445] = {.lex_state = 364}, + [5446] = {.lex_state = 2329}, + [5447] = {.lex_state = 2329}, + [5448] = {.lex_state = 2329}, + [5449] = {.lex_state = 2329}, + [5450] = {.lex_state = 2265}, + [5451] = {.lex_state = 61}, + [5452] = {.lex_state = 2335}, + [5453] = {.lex_state = 61}, + [5454] = {.lex_state = 2335}, + [5455] = {.lex_state = 2329}, + [5456] = {.lex_state = 2271}, + [5457] = {.lex_state = 32, .external_lex_state = 2}, + [5458] = {.lex_state = 316}, + [5459] = {.lex_state = 61}, + [5460] = {.lex_state = 2329}, + [5461] = {.lex_state = 32, .external_lex_state = 2}, + [5462] = {.lex_state = 32, .external_lex_state = 2}, + [5463] = {.lex_state = 2271}, + [5464] = {.lex_state = 2329}, + [5465] = {.lex_state = 2329}, + [5466] = {.lex_state = 2329}, + [5467] = {.lex_state = 2329}, + [5468] = {.lex_state = 32, .external_lex_state = 2}, + [5469] = {.lex_state = 61}, + [5470] = {.lex_state = 2329}, + [5471] = {.lex_state = 2329}, + [5472] = {.lex_state = 2329}, + [5473] = {.lex_state = 355}, + [5474] = {.lex_state = 356}, + [5475] = {.lex_state = 2271}, + [5476] = {.lex_state = 2271}, + [5477] = {.lex_state = 316}, + [5478] = {.lex_state = 61}, + [5479] = {.lex_state = 310}, + [5480] = {.lex_state = 61}, + [5481] = {.lex_state = 356}, + [5482] = {.lex_state = 61}, + [5483] = {.lex_state = 61}, + [5484] = {.lex_state = 61}, + [5485] = {.lex_state = 2271}, + [5486] = {.lex_state = 356}, + [5487] = {.lex_state = 61}, + [5488] = {.lex_state = 356}, + [5489] = {.lex_state = 61}, + [5490] = {.lex_state = 61}, + [5491] = {.lex_state = 2329}, + [5492] = {.lex_state = 2335}, + [5493] = {.lex_state = 61}, + [5494] = {.lex_state = 316}, + [5495] = {.lex_state = 61}, + [5496] = {.lex_state = 61}, + [5497] = {.lex_state = 316}, + [5498] = {.lex_state = 284}, + [5499] = {.lex_state = 2335}, + [5500] = {.lex_state = 32, .external_lex_state = 2}, + [5501] = {.lex_state = 2378}, + [5502] = {.lex_state = 2378}, + [5503] = {.lex_state = 2378}, + [5504] = {.lex_state = 256, .external_lex_state = 2}, + [5505] = {.lex_state = 2264}, + [5506] = {.lex_state = 2265}, + [5507] = {.lex_state = 2265}, + [5508] = {.lex_state = 79}, + [5509] = {.lex_state = 32, .external_lex_state = 2}, + [5510] = {.lex_state = 366}, + [5511] = {.lex_state = 2271}, + [5512] = {.lex_state = 367}, + [5513] = {.lex_state = 2265}, + [5514] = {.lex_state = 2378}, + [5515] = {.lex_state = 79}, + [5516] = {.lex_state = 2372}, + [5517] = {.lex_state = 32, .external_lex_state = 2}, + [5518] = {.lex_state = 2335}, + [5519] = {.lex_state = 2335}, + [5520] = {.lex_state = 2271}, + [5521] = {.lex_state = 79}, + [5522] = {.lex_state = 2271}, + [5523] = {.lex_state = 79}, + [5524] = {.lex_state = 79}, + [5525] = {.lex_state = 2265}, + [5526] = {.lex_state = 2335}, + [5527] = {.lex_state = 32}, + [5528] = {.lex_state = 2271}, + [5529] = {.lex_state = 2271}, + [5530] = {.lex_state = 366}, + [5531] = {.lex_state = 360}, + [5532] = {.lex_state = 2378}, + [5533] = {.lex_state = 2335}, + [5534] = {.lex_state = 2335}, + [5535] = {.lex_state = 2271}, + [5536] = {.lex_state = 360}, + [5537] = {.lex_state = 32, .external_lex_state = 2}, + [5538] = {.lex_state = 32, .external_lex_state = 2}, + [5539] = {.lex_state = 256, .external_lex_state = 2}, + [5540] = {.lex_state = 32, .external_lex_state = 2}, + [5541] = {.lex_state = 32, .external_lex_state = 2}, + [5542] = {.lex_state = 32, .external_lex_state = 2}, + [5543] = {.lex_state = 359}, + [5544] = {.lex_state = 32, .external_lex_state = 2}, + [5545] = {.lex_state = 256, .external_lex_state = 2}, + [5546] = {.lex_state = 256, .external_lex_state = 2}, + [5547] = {.lex_state = 2367}, + [5548] = {.lex_state = 256, .external_lex_state = 2}, + [5549] = {.lex_state = 2335}, + [5550] = {.lex_state = 349}, + [5551] = {.lex_state = 256, .external_lex_state = 2}, + [5552] = {.lex_state = 74}, + [5553] = {.lex_state = 256, .external_lex_state = 2}, + [5554] = {.lex_state = 32}, + [5555] = {.lex_state = 32, .external_lex_state = 2}, + [5556] = {.lex_state = 256, .external_lex_state = 2}, + [5557] = {.lex_state = 357}, + [5558] = {.lex_state = 325}, + [5559] = {.lex_state = 256, .external_lex_state = 2}, + [5560] = {.lex_state = 256, .external_lex_state = 2}, + [5561] = {.lex_state = 61}, + [5562] = {.lex_state = 348}, + [5563] = {.lex_state = 349}, + [5564] = {.lex_state = 256, .external_lex_state = 2}, + [5565] = {.lex_state = 256, .external_lex_state = 2}, + [5566] = {.lex_state = 357}, + [5567] = {.lex_state = 256, .external_lex_state = 2}, + [5568] = {.lex_state = 318}, + [5569] = {.lex_state = 256, .external_lex_state = 2}, + [5570] = {.lex_state = 256, .external_lex_state = 2}, + [5571] = {.lex_state = 256, .external_lex_state = 2}, + [5572] = {.lex_state = 256, .external_lex_state = 2}, + [5573] = {.lex_state = 256, .external_lex_state = 2}, + [5574] = {.lex_state = 256, .external_lex_state = 2}, + [5575] = {.lex_state = 256, .external_lex_state = 2}, + [5576] = {.lex_state = 256, .external_lex_state = 2}, + [5577] = {.lex_state = 256, .external_lex_state = 2}, + [5578] = {.lex_state = 256, .external_lex_state = 2}, + [5579] = {.lex_state = 256, .external_lex_state = 2}, + [5580] = {.lex_state = 256, .external_lex_state = 2}, + [5581] = {.lex_state = 256, .external_lex_state = 2}, + [5582] = {.lex_state = 256, .external_lex_state = 2}, + [5583] = {.lex_state = 256, .external_lex_state = 2}, + [5584] = {.lex_state = 256, .external_lex_state = 2}, + [5585] = {.lex_state = 256, .external_lex_state = 2}, + [5586] = {.lex_state = 256, .external_lex_state = 2}, + [5587] = {.lex_state = 256, .external_lex_state = 2}, + [5588] = {.lex_state = 256, .external_lex_state = 2}, + [5589] = {.lex_state = 256, .external_lex_state = 2}, + [5590] = {.lex_state = 256, .external_lex_state = 2}, + [5591] = {.lex_state = 256, .external_lex_state = 2}, + [5592] = {.lex_state = 256, .external_lex_state = 2}, + [5593] = {.lex_state = 256, .external_lex_state = 2}, + [5594] = {.lex_state = 256, .external_lex_state = 2}, + [5595] = {.lex_state = 256, .external_lex_state = 2}, + [5596] = {.lex_state = 256, .external_lex_state = 2}, + [5597] = {.lex_state = 296}, + [5598] = {.lex_state = 349}, + [5599] = {.lex_state = 256, .external_lex_state = 2}, + [5600] = {.lex_state = 296}, + [5601] = {.lex_state = 296}, + [5602] = {.lex_state = 296}, + [5603] = {.lex_state = 357}, + [5604] = {.lex_state = 357}, + [5605] = {.lex_state = 325}, + [5606] = {.lex_state = 296}, + [5607] = {.lex_state = 349}, + [5608] = {.lex_state = 2368}, + [5609] = {.lex_state = 2368}, + [5610] = {.lex_state = 367}, + [5611] = {.lex_state = 2335}, + [5612] = {.lex_state = 349}, + [5613] = {.lex_state = 349}, + [5614] = {.lex_state = 2369}, + [5615] = {.lex_state = 2335}, + [5616] = {.lex_state = 325}, + [5617] = {.lex_state = 74}, + [5618] = {.lex_state = 357}, + [5619] = {.lex_state = 32, .external_lex_state = 2}, + [5620] = {.lex_state = 325}, + [5621] = {.lex_state = 256, .external_lex_state = 2}, + [5622] = {.lex_state = 32, .external_lex_state = 2}, + [5623] = {.lex_state = 32, .external_lex_state = 2}, + [5624] = {.lex_state = 32, .external_lex_state = 2}, + [5625] = {.lex_state = 2271}, + [5626] = {.lex_state = 256, .external_lex_state = 2}, + [5627] = {.lex_state = 2271}, + [5628] = {.lex_state = 2271}, + [5629] = {.lex_state = 32}, + [5630] = {.lex_state = 318}, + [5631] = {.lex_state = 374}, + [5632] = {.lex_state = 311}, + [5633] = {.lex_state = 311}, + [5634] = {.lex_state = 319}, + [5635] = {.lex_state = 361}, + [5636] = {.lex_state = 2336}, + [5637] = {.lex_state = 368}, + [5638] = {.lex_state = 32, .external_lex_state = 2}, + [5639] = {.lex_state = 319}, + [5640] = {.lex_state = 368}, + [5641] = {.lex_state = 2335}, + [5642] = {.lex_state = 369}, + [5643] = {.lex_state = 361}, + [5644] = {.lex_state = 32, .external_lex_state = 2}, + [5645] = {.lex_state = 32, .external_lex_state = 2}, + [5646] = {.lex_state = 361}, + [5647] = {.lex_state = 311}, + [5648] = {.lex_state = 311}, + [5649] = {.lex_state = 362}, + [5650] = {.lex_state = 32}, + [5651] = {.lex_state = 311}, + [5652] = {.lex_state = 311}, + [5653] = {.lex_state = 32, .external_lex_state = 2}, + [5654] = {.lex_state = 311}, + [5655] = {.lex_state = 311}, + [5656] = {.lex_state = 368}, + [5657] = {.lex_state = 319}, + [5658] = {.lex_state = 32, .external_lex_state = 2}, + [5659] = {.lex_state = 374}, + [5660] = {.lex_state = 336}, + [5661] = {.lex_state = 32, .external_lex_state = 2}, + [5662] = {.lex_state = 311}, [5663] = {.lex_state = 362}, - [5664] = {.lex_state = 76}, - [5665] = {.lex_state = 320}, - [5666] = {.lex_state = 308}, - [5667] = {.lex_state = 308}, - [5668] = {.lex_state = 337}, - [5669] = {.lex_state = 33, .external_lex_state = 2}, - [5670] = {.lex_state = 370}, - [5671] = {.lex_state = 312}, - [5672] = {.lex_state = 33, .external_lex_state = 2}, - [5673] = {.lex_state = 363}, - [5674] = {.lex_state = 815}, - [5675] = {.lex_state = 308}, - [5676] = {.lex_state = 781}, - [5677] = {.lex_state = 320}, - [5678] = {.lex_state = 782}, - [5679] = {.lex_state = 312}, - [5680] = {.lex_state = 320}, - [5681] = {.lex_state = 312}, - [5682] = {.lex_state = 14}, - [5683] = {.lex_state = 326}, - [5684] = {.lex_state = 312}, - [5685] = {.lex_state = 326}, - [5686] = {.lex_state = 370}, - [5687] = {.lex_state = 824}, - [5688] = {.lex_state = 312}, - [5689] = {.lex_state = 824}, - [5690] = {.lex_state = 824}, - [5691] = {.lex_state = 370}, - [5692] = {.lex_state = 312}, - [5693] = {.lex_state = 33}, - [5694] = {.lex_state = 312}, - [5695] = {.lex_state = 312}, - [5696] = {.lex_state = 312}, - [5697] = {.lex_state = 312}, - [5698] = {.lex_state = 370}, - [5699] = {.lex_state = 814}, + [5664] = {.lex_state = 368}, + [5665] = {.lex_state = 2378}, + [5666] = {.lex_state = 2368}, + [5667] = {.lex_state = 311}, + [5668] = {.lex_state = 32, .external_lex_state = 2}, + [5669] = {.lex_state = 32, .external_lex_state = 2}, + [5670] = {.lex_state = 13}, + [5671] = {.lex_state = 2369}, + [5672] = {.lex_state = 70}, + [5673] = {.lex_state = 311}, + [5674] = {.lex_state = 336}, + [5675] = {.lex_state = 32, .external_lex_state = 2}, + [5676] = {.lex_state = 311}, + [5677] = {.lex_state = 311}, + [5678] = {.lex_state = 2271}, + [5679] = {.lex_state = 75}, + [5680] = {.lex_state = 2265}, + [5681] = {.lex_state = 311}, + [5682] = {.lex_state = 319}, + [5683] = {.lex_state = 369}, + [5684] = {.lex_state = 369}, + [5685] = {.lex_state = 311}, + [5686] = {.lex_state = 361}, + [5687] = {.lex_state = 325}, + [5688] = {.lex_state = 311}, + [5689] = {.lex_state = 75}, + [5690] = {.lex_state = 311}, + [5691] = {.lex_state = 369}, + [5692] = {.lex_state = 307}, + [5693] = {.lex_state = 311}, + [5694] = {.lex_state = 311}, + [5695] = {.lex_state = 2265}, + [5696] = {.lex_state = 311}, + [5697] = {.lex_state = 311}, + [5698] = {.lex_state = 361}, + [5699] = {.lex_state = 325}, [5700] = {.lex_state = 369}, - [5701] = {.lex_state = 312}, - [5702] = {.lex_state = 814}, - [5703] = {.lex_state = 312}, - [5704] = {.lex_state = 33, .external_lex_state = 2}, - [5705] = {.lex_state = 375}, - [5706] = {.lex_state = 312}, - [5707] = {.lex_state = 370}, - [5708] = {.lex_state = 369}, - [5709] = {.lex_state = 33, .external_lex_state = 2}, - [5710] = {.lex_state = 76}, - [5711] = {.lex_state = 717}, - [5712] = {.lex_state = 369}, - [5713] = {.lex_state = 312}, - [5714] = {.lex_state = 369}, - [5715] = {.lex_state = 362}, - [5716] = {.lex_state = 781}, - [5717] = {.lex_state = 717}, - [5718] = {.lex_state = 33, .external_lex_state = 2}, - [5719] = {.lex_state = 33, .external_lex_state = 2}, - [5720] = {.lex_state = 362}, - [5721] = {.lex_state = 717}, - [5722] = {.lex_state = 320}, - [5723] = {.lex_state = 369}, - [5724] = {.lex_state = 370}, - [5725] = {.lex_state = 312}, - [5726] = {.lex_state = 33, .external_lex_state = 2}, - [5727] = {.lex_state = 33, .external_lex_state = 2}, - [5728] = {.lex_state = 744}, - [5729] = {.lex_state = 266}, - [5730] = {.lex_state = 3248}, - [5731] = {.lex_state = 3248}, - [5732] = {.lex_state = 3248}, - [5733] = {.lex_state = 370}, - [5734] = {.lex_state = 3248}, - [5735] = {.lex_state = 3248}, - [5736] = {.lex_state = 370}, - [5737] = {.lex_state = 401}, - [5738] = {.lex_state = 401}, - [5739] = {.lex_state = 266}, - [5740] = {.lex_state = 744}, - [5741] = {.lex_state = 3248}, - [5742] = {.lex_state = 744}, - [5743] = {.lex_state = 370}, - [5744] = {.lex_state = 321}, - [5745] = {.lex_state = 71}, - [5746] = {.lex_state = 266}, - [5747] = {.lex_state = 3248}, - [5748] = {.lex_state = 3248}, - [5749] = {.lex_state = 744}, - [5750] = {.lex_state = 744}, - [5751] = {.lex_state = 33}, - [5752] = {.lex_state = 744}, - [5753] = {.lex_state = 374}, - [5754] = {.lex_state = 266}, - [5755] = {.lex_state = 321}, - [5756] = {.lex_state = 383}, - [5757] = {.lex_state = 33, .external_lex_state = 2}, - [5758] = {.lex_state = 71}, - [5759] = {.lex_state = 321}, - [5760] = {.lex_state = 14}, - [5761] = {.lex_state = 744}, - [5762] = {.lex_state = 285}, - [5763] = {.lex_state = 285}, - [5764] = {.lex_state = 337}, - [5765] = {.lex_state = 327}, - [5766] = {.lex_state = 3248}, - [5767] = {.lex_state = 364}, - [5768] = {.lex_state = 33, .external_lex_state = 2}, - [5769] = {.lex_state = 71}, - [5770] = {.lex_state = 744}, - [5771] = {.lex_state = 71}, - [5772] = {.lex_state = 321}, - [5773] = {.lex_state = 33}, - [5774] = {.lex_state = 71}, - [5775] = {.lex_state = 337}, - [5776] = {.lex_state = 3248}, - [5777] = {.lex_state = 3248}, - [5778] = {.lex_state = 71}, - [5779] = {.lex_state = 71}, - [5780] = {.lex_state = 71}, - [5781] = {.lex_state = 71}, - [5782] = {.lex_state = 374}, - [5783] = {.lex_state = 71}, - [5784] = {.lex_state = 312}, - [5785] = {.lex_state = 364}, - [5786] = {.lex_state = 331}, - [5787] = {.lex_state = 781}, - [5788] = {.lex_state = 744}, - [5789] = {.lex_state = 782}, - [5790] = {.lex_state = 321}, - [5791] = {.lex_state = 71}, - [5792] = {.lex_state = 266}, - [5793] = {.lex_state = 3248}, - [5794] = {.lex_state = 3248}, - [5795] = {.lex_state = 370}, - [5796] = {.lex_state = 266}, - [5797] = {.lex_state = 744}, - [5798] = {.lex_state = 71}, - [5799] = {.lex_state = 744}, - [5800] = {.lex_state = 781}, - [5801] = {.lex_state = 744}, - [5802] = {.lex_state = 744}, - [5803] = {.lex_state = 744}, - [5804] = {.lex_state = 71}, - [5805] = {.lex_state = 71}, - [5806] = {.lex_state = 71}, - [5807] = {.lex_state = 364}, - [5808] = {.lex_state = 374}, - [5809] = {.lex_state = 33, .external_lex_state = 2}, - [5810] = {.lex_state = 33, .external_lex_state = 2}, - [5811] = {.lex_state = 371}, - [5812] = {.lex_state = 71}, - [5813] = {.lex_state = 266}, - [5814] = {.lex_state = 3248}, - [5815] = {.lex_state = 3248}, - [5816] = {.lex_state = 266}, - [5817] = {.lex_state = 744}, - [5818] = {.lex_state = 401}, - [5819] = {.lex_state = 709}, - [5820] = {.lex_state = 71}, - [5821] = {.lex_state = 744}, - [5822] = {.lex_state = 744}, - [5823] = {.lex_state = 364}, - [5824] = {.lex_state = 781}, - [5825] = {.lex_state = 781}, - [5826] = {.lex_state = 709}, - [5827] = {.lex_state = 266}, - [5828] = {.lex_state = 744}, - [5829] = {.lex_state = 781}, - [5830] = {.lex_state = 3248}, - [5831] = {.lex_state = 3248}, - [5832] = {.lex_state = 266}, - [5833] = {.lex_state = 744}, - [5834] = {.lex_state = 321}, - [5835] = {.lex_state = 312}, - [5836] = {.lex_state = 744}, - [5837] = {.lex_state = 14}, - [5838] = {.lex_state = 744}, - [5839] = {.lex_state = 781}, - [5840] = {.lex_state = 781}, - [5841] = {.lex_state = 71}, - [5842] = {.lex_state = 266}, - [5843] = {.lex_state = 3248}, - [5844] = {.lex_state = 3248}, - [5845] = {.lex_state = 71}, - [5846] = {.lex_state = 266}, - [5847] = {.lex_state = 744}, - [5848] = {.lex_state = 71}, - [5849] = {.lex_state = 71}, - [5850] = {.lex_state = 744}, - [5851] = {.lex_state = 71}, - [5852] = {.lex_state = 266}, - [5853] = {.lex_state = 3248}, - [5854] = {.lex_state = 3248}, - [5855] = {.lex_state = 266}, - [5856] = {.lex_state = 744}, - [5857] = {.lex_state = 744}, - [5858] = {.lex_state = 33}, - [5859] = {.lex_state = 266}, - [5860] = {.lex_state = 3248}, - [5861] = {.lex_state = 3248}, - [5862] = {.lex_state = 266}, - [5863] = {.lex_state = 781}, - [5864] = {.lex_state = 744}, - [5865] = {.lex_state = 744}, - [5866] = {.lex_state = 781}, - [5867] = {.lex_state = 744}, - [5868] = {.lex_state = 781}, - [5869] = {.lex_state = 744}, - [5870] = {.lex_state = 266}, - [5871] = {.lex_state = 3248}, - [5872] = {.lex_state = 3248}, - [5873] = {.lex_state = 312}, - [5874] = {.lex_state = 266}, - [5875] = {.lex_state = 744}, - [5876] = {.lex_state = 744}, - [5877] = {.lex_state = 744}, - [5878] = {.lex_state = 744}, - [5879] = {.lex_state = 781}, - [5880] = {.lex_state = 781}, - [5881] = {.lex_state = 266}, - [5882] = {.lex_state = 3248}, - [5883] = {.lex_state = 3248}, - [5884] = {.lex_state = 266}, - [5885] = {.lex_state = 314}, - [5886] = {.lex_state = 744}, - [5887] = {.lex_state = 744}, - [5888] = {.lex_state = 744}, - [5889] = {.lex_state = 781}, - [5890] = {.lex_state = 781}, - [5891] = {.lex_state = 781}, - [5892] = {.lex_state = 71}, - [5893] = {.lex_state = 266}, - [5894] = {.lex_state = 3248}, - [5895] = {.lex_state = 3248}, - [5896] = {.lex_state = 266}, - [5897] = {.lex_state = 71}, - [5898] = {.lex_state = 744}, - [5899] = {.lex_state = 71}, - [5900] = {.lex_state = 71}, - [5901] = {.lex_state = 744}, - [5902] = {.lex_state = 71}, - [5903] = {.lex_state = 71}, - [5904] = {.lex_state = 71}, - [5905] = {.lex_state = 71}, - [5906] = {.lex_state = 266}, - [5907] = {.lex_state = 3248}, - [5908] = {.lex_state = 3248}, - [5909] = {.lex_state = 781}, - [5910] = {.lex_state = 266}, - [5911] = {.lex_state = 781}, - [5912] = {.lex_state = 744}, - [5913] = {.lex_state = 744}, - [5914] = {.lex_state = 781}, - [5915] = {.lex_state = 266}, - [5916] = {.lex_state = 781}, - [5917] = {.lex_state = 266}, - [5918] = {.lex_state = 744}, - [5919] = {.lex_state = 744}, - [5920] = {.lex_state = 266}, - [5921] = {.lex_state = 266}, - [5922] = {.lex_state = 744}, - [5923] = {.lex_state = 744}, - [5924] = {.lex_state = 266}, - [5925] = {.lex_state = 266}, - [5926] = {.lex_state = 266}, - [5927] = {.lex_state = 744}, - [5928] = {.lex_state = 781}, - [5929] = {.lex_state = 781}, - [5930] = {.lex_state = 744}, - [5931] = {.lex_state = 744}, - [5932] = {.lex_state = 781}, - [5933] = {.lex_state = 781}, - [5934] = {.lex_state = 781}, - [5935] = {.lex_state = 744}, - [5936] = {.lex_state = 744}, - [5937] = {.lex_state = 312}, - [5938] = {.lex_state = 781}, - [5939] = {.lex_state = 744}, - [5940] = {.lex_state = 744}, - [5941] = {.lex_state = 781}, - [5942] = {.lex_state = 781}, - [5943] = {.lex_state = 781}, - [5944] = {.lex_state = 71}, - [5945] = {.lex_state = 71}, - [5946] = {.lex_state = 71}, - [5947] = {.lex_state = 71}, - [5948] = {.lex_state = 781}, - [5949] = {.lex_state = 781}, - [5950] = {.lex_state = 781}, - [5951] = {.lex_state = 781}, - [5952] = {.lex_state = 781}, - [5953] = {.lex_state = 266}, - [5954] = {.lex_state = 71}, - [5955] = {.lex_state = 321}, - [5956] = {.lex_state = 781}, - [5957] = {.lex_state = 781}, - [5958] = {.lex_state = 321}, - [5959] = {.lex_state = 781}, - [5960] = {.lex_state = 781}, - [5961] = {.lex_state = 401}, - [5962] = {.lex_state = 401}, - [5963] = {.lex_state = 285}, - [5964] = {.lex_state = 285}, - [5965] = {.lex_state = 285}, - [5966] = {.lex_state = 321}, - [5967] = {.lex_state = 71}, - [5968] = {.lex_state = 781}, - [5969] = {.lex_state = 781}, - [5970] = {.lex_state = 744}, - [5971] = {.lex_state = 744}, - [5972] = {.lex_state = 287}, - [5973] = {.lex_state = 285}, - [5974] = {.lex_state = 295}, - [5975] = {.lex_state = 288}, - [5976] = {.lex_state = 781}, - [5977] = {.lex_state = 781}, - [5978] = {.lex_state = 781}, - [5979] = {.lex_state = 374}, - [5980] = {.lex_state = 33}, - [5981] = {.lex_state = 744}, - [5982] = {.lex_state = 781}, - [5983] = {.lex_state = 781}, - [5984] = {.lex_state = 33, .external_lex_state = 2}, - [5985] = {.lex_state = 33}, - [5986] = {.lex_state = 312}, - [5987] = {.lex_state = 781}, - [5988] = {.lex_state = 781}, - [5989] = {.lex_state = 71}, - [5990] = {.lex_state = 781}, - [5991] = {.lex_state = 364}, - [5992] = {.lex_state = 312}, - [5993] = {.lex_state = 294}, - [5994] = {.lex_state = 14}, - [5995] = {.lex_state = 71}, - [5996] = {.lex_state = 285}, - [5997] = {.lex_state = 312}, - [5998] = {.lex_state = 781}, - [5999] = {.lex_state = 744}, - [6000] = {.lex_state = 744}, - [6001] = {.lex_state = 781}, - [6002] = {.lex_state = 744}, - [6003] = {.lex_state = 321}, - [6004] = {.lex_state = 344}, - [6005] = {.lex_state = 3248}, - [6006] = {.lex_state = 781}, - [6007] = {.lex_state = 781}, - [6008] = {.lex_state = 709}, - [6009] = {.lex_state = 781}, - [6010] = {.lex_state = 781}, - [6011] = {.lex_state = 781}, - [6012] = {.lex_state = 781}, - [6013] = {.lex_state = 344}, - [6014] = {.lex_state = 14}, - [6015] = {.lex_state = 781}, - [6016] = {.lex_state = 709}, - [6017] = {.lex_state = 709}, - [6018] = {.lex_state = 709}, - [6019] = {.lex_state = 14}, - [6020] = {.lex_state = 312}, - [6021] = {.lex_state = 285}, - [6022] = {.lex_state = 364}, - [6023] = {.lex_state = 266}, - [6024] = {.lex_state = 744}, - [6025] = {.lex_state = 14}, - [6026] = {.lex_state = 744}, - [6027] = {.lex_state = 744}, - [6028] = {.lex_state = 744}, - [6029] = {.lex_state = 410}, - [6030] = {.lex_state = 290}, - [6031] = {.lex_state = 410}, - [6032] = {.lex_state = 385}, - [6033] = {.lex_state = 711}, - [6034] = {.lex_state = 410}, - [6035] = {.lex_state = 33}, - [6036] = {.lex_state = 33}, - [6037] = {.lex_state = 344}, - [6038] = {.lex_state = 410}, - [6039] = {.lex_state = 410}, - [6040] = {.lex_state = 744}, - [6041] = {.lex_state = 321}, - [6042] = {.lex_state = 743}, - [6043] = {.lex_state = 384}, - [6044] = {.lex_state = 410}, - [6045] = {.lex_state = 337}, - [6046] = {.lex_state = 775}, - [6047] = {.lex_state = 33}, - [6048] = {.lex_state = 711}, - [6049] = {.lex_state = 410}, - [6050] = {.lex_state = 710}, - [6051] = {.lex_state = 334}, - [6052] = {.lex_state = 711}, - [6053] = {.lex_state = 99}, - [6054] = {.lex_state = 711}, - [6055] = {.lex_state = 312}, - [6056] = {.lex_state = 321}, - [6057] = {.lex_state = 373}, - [6058] = {.lex_state = 344}, - [6059] = {.lex_state = 76}, - [6060] = {.lex_state = 321}, - [6061] = {.lex_state = 410}, - [6062] = {.lex_state = 385}, - [6063] = {.lex_state = 744}, - [6064] = {.lex_state = 410}, - [6065] = {.lex_state = 410}, - [6066] = {.lex_state = 33}, - [6067] = {.lex_state = 33}, - [6068] = {.lex_state = 711}, - [6069] = {.lex_state = 744}, - [6070] = {.lex_state = 344}, - [6071] = {.lex_state = 711}, - [6072] = {.lex_state = 711}, - [6073] = {.lex_state = 334}, - [6074] = {.lex_state = 744}, - [6075] = {.lex_state = 744}, - [6076] = {.lex_state = 285}, - [6077] = {.lex_state = 710}, - [6078] = {.lex_state = 292}, - [6079] = {.lex_state = 321}, - [6080] = {.lex_state = 744}, - [6081] = {.lex_state = 744}, - [6082] = {.lex_state = 76}, - [6083] = {.lex_state = 321}, - [6084] = {.lex_state = 744}, - [6085] = {.lex_state = 321}, - [6086] = {.lex_state = 711}, - [6087] = {.lex_state = 744}, - [6088] = {.lex_state = 410}, - [6089] = {.lex_state = 76}, - [6090] = {.lex_state = 33}, - [6091] = {.lex_state = 710}, - [6092] = {.lex_state = 410}, - [6093] = {.lex_state = 710}, - [6094] = {.lex_state = 710}, - [6095] = {.lex_state = 33}, - [6096] = {.lex_state = 99}, - [6097] = {.lex_state = 285}, - [6098] = {.lex_state = 711}, - [6099] = {.lex_state = 711}, - [6100] = {.lex_state = 337}, - [6101] = {.lex_state = 295}, - [6102] = {.lex_state = 328}, - [6103] = {.lex_state = 321}, - [6104] = {.lex_state = 410}, - [6105] = {.lex_state = 711}, - [6106] = {.lex_state = 711}, - [6107] = {.lex_state = 711}, - [6108] = {.lex_state = 711}, - [6109] = {.lex_state = 744}, - [6110] = {.lex_state = 33}, - [6111] = {.lex_state = 33}, - [6112] = {.lex_state = 33}, - [6113] = {.lex_state = 711}, - [6114] = {.lex_state = 711}, - [6115] = {.lex_state = 33}, - [6116] = {.lex_state = 711}, - [6117] = {.lex_state = 33}, - [6118] = {.lex_state = 711}, - [6119] = {.lex_state = 744}, - [6120] = {.lex_state = 711}, - [6121] = {.lex_state = 410}, - [6122] = {.lex_state = 744}, - [6123] = {.lex_state = 744}, - [6124] = {.lex_state = 344}, - [6125] = {.lex_state = 410}, - [6126] = {.lex_state = 33}, - [6127] = {.lex_state = 285}, - [6128] = {.lex_state = 344}, - [6129] = {.lex_state = 744}, - [6130] = {.lex_state = 344}, - [6131] = {.lex_state = 744}, - [6132] = {.lex_state = 410}, - [6133] = {.lex_state = 288}, - [6134] = {.lex_state = 745}, - [6135] = {.lex_state = 285}, - [6136] = {.lex_state = 33}, - [6137] = {.lex_state = 33}, - [6138] = {.lex_state = 781}, - [6139] = {.lex_state = 410}, - [6140] = {.lex_state = 410}, - [6141] = {.lex_state = 337}, - [6142] = {.lex_state = 410}, - [6143] = {.lex_state = 33}, - [6144] = {.lex_state = 410}, - [6145] = {.lex_state = 410}, - [6146] = {.lex_state = 33}, - [6147] = {.lex_state = 33}, - [6148] = {.lex_state = 781}, - [6149] = {.lex_state = 33}, - [6150] = {.lex_state = 33}, - [6151] = {.lex_state = 33}, - [6152] = {.lex_state = 33}, - [6153] = {.lex_state = 410}, - [6154] = {.lex_state = 33}, - [6155] = {.lex_state = 744}, - [6156] = {.lex_state = 744}, - [6157] = {.lex_state = 745}, - [6158] = {.lex_state = 711}, - [6159] = {.lex_state = 744}, - [6160] = {.lex_state = 744}, - [6161] = {.lex_state = 313}, - [6162] = {.lex_state = 33}, - [6163] = {.lex_state = 328}, - [6164] = {.lex_state = 744}, - [6165] = {.lex_state = 744}, - [6166] = {.lex_state = 99}, - [6167] = {.lex_state = 410}, - [6168] = {.lex_state = 744}, - [6169] = {.lex_state = 744}, - [6170] = {.lex_state = 373}, - [6171] = {.lex_state = 744}, - [6172] = {.lex_state = 744}, - [6173] = {.lex_state = 99}, - [6174] = {.lex_state = 744}, - [6175] = {.lex_state = 744}, - [6176] = {.lex_state = 76}, - [6177] = {.lex_state = 744}, - [6178] = {.lex_state = 744}, - [6179] = {.lex_state = 744}, - [6180] = {.lex_state = 744}, - [6181] = {.lex_state = 410}, - [6182] = {.lex_state = 33}, - [6183] = {.lex_state = 744}, - [6184] = {.lex_state = 744}, - [6185] = {.lex_state = 744}, - [6186] = {.lex_state = 744}, - [6187] = {.lex_state = 744}, - [6188] = {.lex_state = 744}, - [6189] = {.lex_state = 99}, - [6190] = {.lex_state = 744}, - [6191] = {.lex_state = 744}, - [6192] = {.lex_state = 744}, - [6193] = {.lex_state = 744}, - [6194] = {.lex_state = 744}, - [6195] = {.lex_state = 744}, - [6196] = {.lex_state = 744}, - [6197] = {.lex_state = 744}, - [6198] = {.lex_state = 744}, - [6199] = {.lex_state = 744}, - [6200] = {.lex_state = 744}, - [6201] = {.lex_state = 744}, - [6202] = {.lex_state = 775}, - [6203] = {.lex_state = 33}, - [6204] = {.lex_state = 33}, - [6205] = {.lex_state = 33}, - [6206] = {.lex_state = 781}, - [6207] = {.lex_state = 344}, - [6208] = {.lex_state = 33}, - [6209] = {.lex_state = 33}, - [6210] = {.lex_state = 781}, - [6211] = {.lex_state = 410}, - [6212] = {.lex_state = 744}, - [6213] = {.lex_state = 410}, - [6214] = {.lex_state = 410}, - [6215] = {.lex_state = 337}, - [6216] = {.lex_state = 410}, - [6217] = {.lex_state = 33}, - [6218] = {.lex_state = 410}, - [6219] = {.lex_state = 344}, - [6220] = {.lex_state = 337}, - [6221] = {.lex_state = 710}, - [6222] = {.lex_state = 410}, - [6223] = {.lex_state = 373}, - [6224] = {.lex_state = 744}, - [6225] = {.lex_state = 410}, - [6226] = {.lex_state = 372}, - [6227] = {.lex_state = 744}, - [6228] = {.lex_state = 373}, - [6229] = {.lex_state = 373}, - [6230] = {.lex_state = 330}, - [6231] = {.lex_state = 373}, - [6232] = {.lex_state = 33}, - [6233] = {.lex_state = 410}, - [6234] = {.lex_state = 744}, - [6235] = {.lex_state = 33}, - [6236] = {.lex_state = 337}, - [6237] = {.lex_state = 744}, - [6238] = {.lex_state = 410}, - [6239] = {.lex_state = 33}, - [6240] = {.lex_state = 744}, - [6241] = {.lex_state = 745}, - [6242] = {.lex_state = 344}, - [6243] = {.lex_state = 33}, - [6244] = {.lex_state = 392}, - [6245] = {.lex_state = 744}, - [6246] = {.lex_state = 744}, - [6247] = {.lex_state = 146}, - [6248] = {.lex_state = 744}, - [6249] = {.lex_state = 312}, - [6250] = {.lex_state = 744}, - [6251] = {.lex_state = 744}, - [6252] = {.lex_state = 744}, - [6253] = {.lex_state = 744}, - [6254] = {.lex_state = 744}, - [6255] = {.lex_state = 146}, - [6256] = {.lex_state = 744}, - [6257] = {.lex_state = 744}, - [6258] = {.lex_state = 405}, - [6259] = {.lex_state = 399}, - [6260] = {.lex_state = 744}, - [6261] = {.lex_state = 146}, - [6262] = {.lex_state = 744}, - [6263] = {.lex_state = 744}, - [6264] = {.lex_state = 744}, - [6265] = {.lex_state = 744}, - [6266] = {.lex_state = 744}, - [6267] = {.lex_state = 744}, - [6268] = {.lex_state = 146}, - [6269] = {.lex_state = 744}, - [6270] = {.lex_state = 264}, - [6271] = {.lex_state = 305}, - [6272] = {.lex_state = 744}, - [6273] = {.lex_state = 405}, - [6274] = {.lex_state = 33}, - [6275] = {.lex_state = 405}, - [6276] = {.lex_state = 744}, - [6277] = {.lex_state = 744}, - [6278] = {.lex_state = 312}, - [6279] = {.lex_state = 744}, - [6280] = {.lex_state = 744}, - [6281] = {.lex_state = 392}, - [6282] = {.lex_state = 744}, - [6283] = {.lex_state = 744}, - [6284] = {.lex_state = 264}, - [6285] = {.lex_state = 744}, - [6286] = {.lex_state = 288}, - [6287] = {.lex_state = 744}, - [6288] = {.lex_state = 744}, - [6289] = {.lex_state = 744}, - [6290] = {.lex_state = 744}, - [6291] = {.lex_state = 744}, - [6292] = {.lex_state = 744}, - [6293] = {.lex_state = 387}, - [6294] = {.lex_state = 744}, - [6295] = {.lex_state = 264}, - [6296] = {.lex_state = 399}, - [6297] = {.lex_state = 744}, - [6298] = {.lex_state = 744}, - [6299] = {.lex_state = 744}, - [6300] = {.lex_state = 744}, - [6301] = {.lex_state = 266}, - [6302] = {.lex_state = 386}, - [6303] = {.lex_state = 76}, - [6304] = {.lex_state = 123}, - [6305] = {.lex_state = 386}, - [6306] = {.lex_state = 392}, - [6307] = {.lex_state = 386}, - [6308] = {.lex_state = 386}, - [6309] = {.lex_state = 387}, - [6310] = {.lex_state = 710}, - [6311] = {.lex_state = 266}, - [6312] = {.lex_state = 123}, - [6313] = {.lex_state = 386}, - [6314] = {.lex_state = 744}, - [6315] = {.lex_state = 344}, - [6316] = {.lex_state = 386}, - [6317] = {.lex_state = 264}, - [6318] = {.lex_state = 76}, - [6319] = {.lex_state = 337}, - [6320] = {.lex_state = 266}, - [6321] = {.lex_state = 123}, - [6322] = {.lex_state = 123}, - [6323] = {.lex_state = 123}, - [6324] = {.lex_state = 744}, - [6325] = {.lex_state = 744}, - [6326] = {.lex_state = 744}, - [6327] = {.lex_state = 744}, - [6328] = {.lex_state = 744}, - [6329] = {.lex_state = 744}, - [6330] = {.lex_state = 744}, - [6331] = {.lex_state = 408}, - [6332] = {.lex_state = 744}, - [6333] = {.lex_state = 744}, - [6334] = {.lex_state = 744}, - [6335] = {.lex_state = 744}, - [6336] = {.lex_state = 329}, - [6337] = {.lex_state = 744}, - [6338] = {.lex_state = 744}, - [6339] = {.lex_state = 744}, - [6340] = {.lex_state = 744}, - [6341] = {.lex_state = 408}, - [6342] = {.lex_state = 123}, - [6343] = {.lex_state = 123}, - [6344] = {.lex_state = 123}, - [6345] = {.lex_state = 744}, - [6346] = {.lex_state = 386}, - [6347] = {.lex_state = 123}, - [6348] = {.lex_state = 744}, - [6349] = {.lex_state = 744}, - [6350] = {.lex_state = 335}, - [6351] = {.lex_state = 744}, - [6352] = {.lex_state = 744}, - [6353] = {.lex_state = 335}, - [6354] = {.lex_state = 337}, - [6355] = {.lex_state = 337}, - [6356] = {.lex_state = 335}, - [6357] = {.lex_state = 264}, - [6358] = {.lex_state = 335}, - [6359] = {.lex_state = 329}, - [6360] = {.lex_state = 744}, - [6361] = {.lex_state = 744}, - [6362] = {.lex_state = 744}, - [6363] = {.lex_state = 744}, - [6364] = {.lex_state = 342}, - [6365] = {.lex_state = 744}, - [6366] = {.lex_state = 744}, - [6367] = {.lex_state = 744}, - [6368] = {.lex_state = 744}, - [6369] = {.lex_state = 392}, - [6370] = {.lex_state = 744}, - [6371] = {.lex_state = 744}, - [6372] = {.lex_state = 264}, - [6373] = {.lex_state = 744}, - [6374] = {.lex_state = 744}, - [6375] = {.lex_state = 744}, - [6376] = {.lex_state = 264}, - [6377] = {.lex_state = 335}, - [6378] = {.lex_state = 744}, - [6379] = {.lex_state = 123}, - [6380] = {.lex_state = 123}, - [6381] = {.lex_state = 123}, - [6382] = {.lex_state = 123}, - [6383] = {.lex_state = 123}, - [6384] = {.lex_state = 123}, - [6385] = {.lex_state = 123}, - [6386] = {.lex_state = 123}, - [6387] = {.lex_state = 744}, - [6388] = {.lex_state = 744}, - [6389] = {.lex_state = 744}, - [6390] = {.lex_state = 744}, - [6391] = {.lex_state = 744}, - [6392] = {.lex_state = 744}, - [6393] = {.lex_state = 744}, - [6394] = {.lex_state = 146}, - [6395] = {.lex_state = 123}, - [6396] = {.lex_state = 386}, - [6397] = {.lex_state = 744}, - [6398] = {.lex_state = 744}, - [6399] = {.lex_state = 744}, - [6400] = {.lex_state = 744}, - [6401] = {.lex_state = 392}, - [6402] = {.lex_state = 264}, - [6403] = {.lex_state = 744}, - [6404] = {.lex_state = 744}, - [6405] = {.lex_state = 744}, - [6406] = {.lex_state = 264}, - [6407] = {.lex_state = 744}, - [6408] = {.lex_state = 329}, - [6409] = {.lex_state = 123}, - [6410] = {.lex_state = 123}, - [6411] = {.lex_state = 123}, - [6412] = {.lex_state = 123}, - [6413] = {.lex_state = 123}, - [6414] = {.lex_state = 123}, - [6415] = {.lex_state = 123}, - [6416] = {.lex_state = 123}, - [6417] = {.lex_state = 399}, - [6418] = {.lex_state = 81}, - [6419] = {.lex_state = 392}, - [6420] = {.lex_state = 264}, - [6421] = {.lex_state = 332}, - [6422] = {.lex_state = 264}, - [6423] = {.lex_state = 744}, - [6424] = {.lex_state = 744}, - [6425] = {.lex_state = 744}, - [6426] = {.lex_state = 386}, - [6427] = {.lex_state = 123}, - [6428] = {.lex_state = 123}, - [6429] = {.lex_state = 123}, - [6430] = {.lex_state = 123}, - [6431] = {.lex_state = 123}, - [6432] = {.lex_state = 123}, - [6433] = {.lex_state = 123}, - [6434] = {.lex_state = 123}, - [6435] = {.lex_state = 744}, - [6436] = {.lex_state = 404}, - [6437] = {.lex_state = 392}, - [6438] = {.lex_state = 82}, - [6439] = {.lex_state = 264}, - [6440] = {.lex_state = 744}, - [6441] = {.lex_state = 264}, - [6442] = {.lex_state = 744}, - [6443] = {.lex_state = 744}, - [6444] = {.lex_state = 744}, - [6445] = {.lex_state = 123}, - [6446] = {.lex_state = 123}, - [6447] = {.lex_state = 123}, - [6448] = {.lex_state = 123}, - [6449] = {.lex_state = 123}, - [6450] = {.lex_state = 123}, - [6451] = {.lex_state = 123}, - [6452] = {.lex_state = 123}, - [6453] = {.lex_state = 744}, - [6454] = {.lex_state = 392}, - [6455] = {.lex_state = 744}, - [6456] = {.lex_state = 264}, - [6457] = {.lex_state = 744}, - [6458] = {.lex_state = 744}, - [6459] = {.lex_state = 744}, - [6460] = {.lex_state = 744}, - [6461] = {.lex_state = 264}, - [6462] = {.lex_state = 744}, - [6463] = {.lex_state = 744}, - [6464] = {.lex_state = 744}, - [6465] = {.lex_state = 744}, - [6466] = {.lex_state = 399}, - [6467] = {.lex_state = 123}, - [6468] = {.lex_state = 123}, - [6469] = {.lex_state = 123}, - [6470] = {.lex_state = 123}, - [6471] = {.lex_state = 123}, - [6472] = {.lex_state = 123}, - [6473] = {.lex_state = 123}, - [6474] = {.lex_state = 123}, - [6475] = {.lex_state = 399}, - [6476] = {.lex_state = 392}, - [6477] = {.lex_state = 744}, - [6478] = {.lex_state = 264}, - [6479] = {.lex_state = 744}, - [6480] = {.lex_state = 264}, - [6481] = {.lex_state = 335}, - [6482] = {.lex_state = 335}, - [6483] = {.lex_state = 123}, - [6484] = {.lex_state = 123}, - [6485] = {.lex_state = 123}, - [6486] = {.lex_state = 123}, - [6487] = {.lex_state = 123}, - [6488] = {.lex_state = 123}, - [6489] = {.lex_state = 123}, - [6490] = {.lex_state = 123}, - [6491] = {.lex_state = 392}, - [6492] = {.lex_state = 264}, - [6493] = {.lex_state = 264}, - [6494] = {.lex_state = 744}, - [6495] = {.lex_state = 329}, - [6496] = {.lex_state = 744}, - [6497] = {.lex_state = 146}, - [6498] = {.lex_state = 123}, - [6499] = {.lex_state = 123}, - [6500] = {.lex_state = 123}, - [6501] = {.lex_state = 123}, - [6502] = {.lex_state = 123}, - [6503] = {.lex_state = 123}, - [6504] = {.lex_state = 123}, - [6505] = {.lex_state = 123}, - [6506] = {.lex_state = 392}, - [6507] = {.lex_state = 744}, - [6508] = {.lex_state = 264}, - [6509] = {.lex_state = 264}, - [6510] = {.lex_state = 744}, - [6511] = {.lex_state = 744}, - [6512] = {.lex_state = 744}, - [6513] = {.lex_state = 335}, - [6514] = {.lex_state = 123}, - [6515] = {.lex_state = 123}, - [6516] = {.lex_state = 123}, - [6517] = {.lex_state = 123}, - [6518] = {.lex_state = 123}, - [6519] = {.lex_state = 123}, - [6520] = {.lex_state = 123}, - [6521] = {.lex_state = 123}, - [6522] = {.lex_state = 744}, - [6523] = {.lex_state = 744}, - [6524] = {.lex_state = 744}, - [6525] = {.lex_state = 744}, - [6526] = {.lex_state = 392}, - [6527] = {.lex_state = 264}, - [6528] = {.lex_state = 264}, - [6529] = {.lex_state = 123}, - [6530] = {.lex_state = 123}, - [6531] = {.lex_state = 123}, - [6532] = {.lex_state = 123}, - [6533] = {.lex_state = 123}, - [6534] = {.lex_state = 123}, - [6535] = {.lex_state = 123}, - [6536] = {.lex_state = 123}, - [6537] = {.lex_state = 392}, - [6538] = {.lex_state = 744}, - [6539] = {.lex_state = 264}, - [6540] = {.lex_state = 405}, - [6541] = {.lex_state = 264}, - [6542] = {.lex_state = 329}, - [6543] = {.lex_state = 744}, - [6544] = {.lex_state = 744}, - [6545] = {.lex_state = 329}, - [6546] = {.lex_state = 744}, - [6547] = {.lex_state = 123}, - [6548] = {.lex_state = 123}, - [6549] = {.lex_state = 123}, - [6550] = {.lex_state = 123}, - [6551] = {.lex_state = 123}, - [6552] = {.lex_state = 123}, - [6553] = {.lex_state = 123}, - [6554] = {.lex_state = 123}, - [6555] = {.lex_state = 744}, - [6556] = {.lex_state = 744}, - [6557] = {.lex_state = 392}, - [6558] = {.lex_state = 744}, - [6559] = {.lex_state = 264}, - [6560] = {.lex_state = 264}, - [6561] = {.lex_state = 744}, - [6562] = {.lex_state = 123}, - [6563] = {.lex_state = 744}, - [6564] = {.lex_state = 392}, - [6565] = {.lex_state = 123}, - [6566] = {.lex_state = 123}, - [6567] = {.lex_state = 123}, - [6568] = {.lex_state = 123}, - [6569] = {.lex_state = 123}, - [6570] = {.lex_state = 123}, - [6571] = {.lex_state = 123}, - [6572] = {.lex_state = 744}, - [6573] = {.lex_state = 744}, - [6574] = {.lex_state = 392}, - [6575] = {.lex_state = 744}, - [6576] = {.lex_state = 264}, - [6577] = {.lex_state = 264}, - [6578] = {.lex_state = 335}, - [6579] = {.lex_state = 123}, - [6580] = {.lex_state = 123}, - [6581] = {.lex_state = 123}, - [6582] = {.lex_state = 123}, - [6583] = {.lex_state = 123}, - [6584] = {.lex_state = 123}, - [6585] = {.lex_state = 123}, - [6586] = {.lex_state = 123}, - [6587] = {.lex_state = 123}, - [6588] = {.lex_state = 744}, - [6589] = {.lex_state = 744}, - [6590] = {.lex_state = 392}, - [6591] = {.lex_state = 404}, - [6592] = {.lex_state = 264}, - [6593] = {.lex_state = 264}, - [6594] = {.lex_state = 123}, - [6595] = {.lex_state = 744}, - [6596] = {.lex_state = 123}, - [6597] = {.lex_state = 123}, - [6598] = {.lex_state = 123}, - [6599] = {.lex_state = 123}, - [6600] = {.lex_state = 123}, - [6601] = {.lex_state = 123}, - [6602] = {.lex_state = 123}, - [6603] = {.lex_state = 123}, - [6604] = {.lex_state = 744}, - [6605] = {.lex_state = 392}, - [6606] = {.lex_state = 264}, - [6607] = {.lex_state = 744}, - [6608] = {.lex_state = 264}, - [6609] = {.lex_state = 744}, - [6610] = {.lex_state = 123}, - [6611] = {.lex_state = 123}, - [6612] = {.lex_state = 123}, - [6613] = {.lex_state = 123}, - [6614] = {.lex_state = 123}, - [6615] = {.lex_state = 123}, - [6616] = {.lex_state = 123}, - [6617] = {.lex_state = 123}, - [6618] = {.lex_state = 123}, - [6619] = {.lex_state = 392}, - [6620] = {.lex_state = 264}, - [6621] = {.lex_state = 264}, - [6622] = {.lex_state = 123}, - [6623] = {.lex_state = 123}, - [6624] = {.lex_state = 123}, - [6625] = {.lex_state = 123}, - [6626] = {.lex_state = 123}, - [6627] = {.lex_state = 123}, - [6628] = {.lex_state = 123}, - [6629] = {.lex_state = 123}, - [6630] = {.lex_state = 392}, - [6631] = {.lex_state = 264}, - [6632] = {.lex_state = 264}, - [6633] = {.lex_state = 123}, - [6634] = {.lex_state = 123}, - [6635] = {.lex_state = 123}, - [6636] = {.lex_state = 123}, - [6637] = {.lex_state = 123}, - [6638] = {.lex_state = 123}, - [6639] = {.lex_state = 123}, - [6640] = {.lex_state = 123}, - [6641] = {.lex_state = 392}, - [6642] = {.lex_state = 264}, - [6643] = {.lex_state = 744}, - [6644] = {.lex_state = 264}, - [6645] = {.lex_state = 392}, - [6646] = {.lex_state = 264}, - [6647] = {.lex_state = 744}, - [6648] = {.lex_state = 264}, - [6649] = {.lex_state = 392}, - [6650] = {.lex_state = 264}, - [6651] = {.lex_state = 264}, - [6652] = {.lex_state = 392}, - [6653] = {.lex_state = 264}, - [6654] = {.lex_state = 264}, - [6655] = {.lex_state = 386}, - [6656] = {.lex_state = 392}, - [6657] = {.lex_state = 264}, - [6658] = {.lex_state = 264}, - [6659] = {.lex_state = 392}, - [6660] = {.lex_state = 264}, - [6661] = {.lex_state = 264}, - [6662] = {.lex_state = 392}, - [6663] = {.lex_state = 264}, - [6664] = {.lex_state = 264}, - [6665] = {.lex_state = 392}, - [6666] = {.lex_state = 264}, - [6667] = {.lex_state = 264}, - [6668] = {.lex_state = 392}, - [6669] = {.lex_state = 264}, - [6670] = {.lex_state = 264}, - [6671] = {.lex_state = 392}, - [6672] = {.lex_state = 264}, - [6673] = {.lex_state = 264}, - [6674] = {.lex_state = 392}, - [6675] = {.lex_state = 264}, - [6676] = {.lex_state = 264}, - [6677] = {.lex_state = 392}, - [6678] = {.lex_state = 264}, - [6679] = {.lex_state = 264}, - [6680] = {.lex_state = 392}, - [6681] = {.lex_state = 264}, - [6682] = {.lex_state = 264}, - [6683] = {.lex_state = 392}, - [6684] = {.lex_state = 264}, - [6685] = {.lex_state = 264}, - [6686] = {.lex_state = 392}, - [6687] = {.lex_state = 264}, - [6688] = {.lex_state = 264}, - [6689] = {.lex_state = 392}, - [6690] = {.lex_state = 264}, - [6691] = {.lex_state = 264}, - [6692] = {.lex_state = 146}, - [6693] = {.lex_state = 392}, - [6694] = {.lex_state = 264}, - [6695] = {.lex_state = 264}, - [6696] = {.lex_state = 744}, - [6697] = {.lex_state = 392}, - [6698] = {.lex_state = 264}, - [6699] = {.lex_state = 264}, - [6700] = {.lex_state = 392}, - [6701] = {.lex_state = 264}, - [6702] = {.lex_state = 264}, - [6703] = {.lex_state = 392}, - [6704] = {.lex_state = 264}, - [6705] = {.lex_state = 264}, - [6706] = {.lex_state = 392}, - [6707] = {.lex_state = 264}, - [6708] = {.lex_state = 264}, - [6709] = {.lex_state = 744}, - [6710] = {.lex_state = 392}, - [6711] = {.lex_state = 264}, - [6712] = {.lex_state = 264}, - [6713] = {.lex_state = 392}, - [6714] = {.lex_state = 264}, - [6715] = {.lex_state = 264}, - [6716] = {.lex_state = 392}, - [6717] = {.lex_state = 264}, - [6718] = {.lex_state = 264}, - [6719] = {.lex_state = 392}, - [6720] = {.lex_state = 264}, - [6721] = {.lex_state = 264}, - [6722] = {.lex_state = 392}, - [6723] = {.lex_state = 264}, - [6724] = {.lex_state = 264}, - [6725] = {.lex_state = 392}, - [6726] = {.lex_state = 264}, - [6727] = {.lex_state = 264}, - [6728] = {.lex_state = 392}, - [6729] = {.lex_state = 264}, - [6730] = {.lex_state = 264}, - [6731] = {.lex_state = 264}, - [6732] = {.lex_state = 264}, - [6733] = {.lex_state = 264}, - [6734] = {.lex_state = 264}, - [6735] = {.lex_state = 264}, - [6736] = {.lex_state = 264}, - [6737] = {.lex_state = 744}, - [6738] = {.lex_state = 744}, - [6739] = {.lex_state = 392}, - [6740] = {.lex_state = 404}, - [6741] = {.lex_state = 404}, - [6742] = {.lex_state = 744}, - [6743] = {.lex_state = 744}, - [6744] = {.lex_state = 744}, - [6745] = {.lex_state = 744}, - [6746] = {.lex_state = 710}, - [6747] = {.lex_state = 744}, - [6748] = {.lex_state = 744}, - [6749] = {.lex_state = 744}, - [6750] = {.lex_state = 744}, - [6751] = {.lex_state = 744}, - [6752] = {.lex_state = 744}, - [6753] = {.lex_state = 744}, - [6754] = {.lex_state = 744}, - [6755] = {.lex_state = 744}, - [6756] = {.lex_state = 744}, - [6757] = {.lex_state = 744}, - [6758] = {.lex_state = 744}, - [6759] = {.lex_state = 744}, - [6760] = {.lex_state = 408}, - [6761] = {.lex_state = 744}, - [6762] = {.lex_state = 744}, - [6763] = {.lex_state = 744}, - [6764] = {.lex_state = 146}, - [6765] = {.lex_state = 123}, - [6766] = {.lex_state = 146}, - [6767] = {.lex_state = 123}, - [6768] = {.lex_state = 123}, - [6769] = {.lex_state = 332}, - [6770] = {.lex_state = 404}, - [6771] = {.lex_state = 744}, - [6772] = {.lex_state = 146}, - [6773] = {.lex_state = 392}, - [6774] = {.lex_state = 329}, - [6775] = {.lex_state = 711}, - [6776] = {.lex_state = 744}, - [6777] = {.lex_state = 744}, - [6778] = {.lex_state = 744}, - [6779] = {.lex_state = 329}, - [6780] = {.lex_state = 285}, - [6781] = {.lex_state = 285}, - [6782] = {.lex_state = 744}, - [6783] = {.lex_state = 312}, - [6784] = {.lex_state = 744}, - [6785] = {.lex_state = 264}, - [6786] = {.lex_state = 123}, - [6787] = {.lex_state = 123}, - [6788] = {.lex_state = 123}, - [6789] = {.lex_state = 123}, - [6790] = {.lex_state = 123}, - [6791] = {.lex_state = 123}, - [6792] = {.lex_state = 408}, - [6793] = {.lex_state = 408}, - [6794] = {.lex_state = 744}, - [6795] = {.lex_state = 146}, - [6796] = {.lex_state = 744}, - [6797] = {.lex_state = 329}, - [6798] = {.lex_state = 744}, - [6799] = {.lex_state = 123}, - [6800] = {.lex_state = 744}, - [6801] = {.lex_state = 744}, - [6802] = {.lex_state = 744}, - [6803] = {.lex_state = 744}, - [6804] = {.lex_state = 405}, - [6805] = {.lex_state = 146}, - [6806] = {.lex_state = 344}, - [6807] = {.lex_state = 744}, - [6808] = {.lex_state = 744}, - [6809] = {.lex_state = 744}, - [6810] = {.lex_state = 744}, - [6811] = {.lex_state = 709}, - [6812] = {.lex_state = 709}, - [6813] = {.lex_state = 44}, - [6814] = {.lex_state = 264}, - [6815] = {.lex_state = 344}, - [6816] = {.lex_state = 33}, - [6817] = {.lex_state = 123}, - [6818] = {.lex_state = 146}, - [6819] = {.lex_state = 206}, - [6820] = {.lex_state = 146}, - [6821] = {.lex_state = 146}, - [6822] = {.lex_state = 146}, - [6823] = {.lex_state = 146}, - [6824] = {.lex_state = 336}, - [6825] = {.lex_state = 146}, - [6826] = {.lex_state = 146}, - [6827] = {.lex_state = 146}, - [6828] = {.lex_state = 146}, - [6829] = {.lex_state = 146}, - [6830] = {.lex_state = 744}, - [6831] = {.lex_state = 146}, - [6832] = {.lex_state = 146}, - [6833] = {.lex_state = 285}, - [6834] = {.lex_state = 744}, - [6835] = {.lex_state = 403}, - [6836] = {.lex_state = 744}, - [6837] = {.lex_state = 744}, - [6838] = {.lex_state = 336}, - [6839] = {.lex_state = 336}, - [6840] = {.lex_state = 410}, - [6841] = {.lex_state = 333}, - [6842] = {.lex_state = 744}, - [6843] = {.lex_state = 403}, - [6844] = {.lex_state = 336}, - [6845] = {.lex_state = 336}, - [6846] = {.lex_state = 146}, - [6847] = {.lex_state = 146}, - [6848] = {.lex_state = 146}, - [6849] = {.lex_state = 146}, - [6850] = {.lex_state = 744}, - [6851] = {.lex_state = 146}, - [6852] = {.lex_state = 744}, - [6853] = {.lex_state = 146}, - [6854] = {.lex_state = 146}, - [6855] = {.lex_state = 146}, - [6856] = {.lex_state = 744}, - [6857] = {.lex_state = 744}, - [6858] = {.lex_state = 381}, - [6859] = {.lex_state = 382}, - [6860] = {.lex_state = 744}, - [6861] = {.lex_state = 306}, - [6862] = {.lex_state = 744}, - [6863] = {.lex_state = 744}, - [6864] = {.lex_state = 336}, - [6865] = {.lex_state = 744}, - [6866] = {.lex_state = 744}, - [6867] = {.lex_state = 744}, - [6868] = {.lex_state = 744}, - [6869] = {.lex_state = 403}, - [6870] = {.lex_state = 336}, - [6871] = {.lex_state = 14}, - [6872] = {.lex_state = 146}, - [6873] = {.lex_state = 146}, - [6874] = {.lex_state = 146}, - [6875] = {.lex_state = 146}, - [6876] = {.lex_state = 146}, - [6877] = {.lex_state = 146}, - [6878] = {.lex_state = 146}, - [6879] = {.lex_state = 146}, - [6880] = {.lex_state = 146}, - [6881] = {.lex_state = 744}, - [6882] = {.lex_state = 744}, - [6883] = {.lex_state = 146}, - [6884] = {.lex_state = 264}, - [6885] = {.lex_state = 744}, - [6886] = {.lex_state = 744}, - [6887] = {.lex_state = 744}, - [6888] = {.lex_state = 388}, - [6889] = {.lex_state = 744}, - [6890] = {.lex_state = 336}, - [6891] = {.lex_state = 744}, - [6892] = {.lex_state = 744}, - [6893] = {.lex_state = 336}, - [6894] = {.lex_state = 146}, - [6895] = {.lex_state = 400}, - [6896] = {.lex_state = 146}, - [6897] = {.lex_state = 146}, - [6898] = {.lex_state = 146}, - [6899] = {.lex_state = 146}, - [6900] = {.lex_state = 146}, - [6901] = {.lex_state = 146}, - [6902] = {.lex_state = 146}, - [6903] = {.lex_state = 156}, - [6904] = {.lex_state = 146}, - [6905] = {.lex_state = 146}, - [6906] = {.lex_state = 146}, - [6907] = {.lex_state = 146}, - [6908] = {.lex_state = 146}, - [6909] = {.lex_state = 744}, - [6910] = {.lex_state = 744}, - [6911] = {.lex_state = 388}, - [6912] = {.lex_state = 231}, - [6913] = {.lex_state = 146}, - [6914] = {.lex_state = 744}, - [6915] = {.lex_state = 744}, - [6916] = {.lex_state = 146}, - [6917] = {.lex_state = 336}, - [6918] = {.lex_state = 146}, - [6919] = {.lex_state = 231}, - [6920] = {.lex_state = 744}, - [6921] = {.lex_state = 146}, - [6922] = {.lex_state = 156}, - [6923] = {.lex_state = 744}, - [6924] = {.lex_state = 336}, - [6925] = {.lex_state = 388}, - [6926] = {.lex_state = 744}, - [6927] = {.lex_state = 146}, - [6928] = {.lex_state = 743}, - [6929] = {.lex_state = 146}, - [6930] = {.lex_state = 146}, - [6931] = {.lex_state = 146}, - [6932] = {.lex_state = 146}, - [6933] = {.lex_state = 146}, - [6934] = {.lex_state = 146}, - [6935] = {.lex_state = 146}, - [6936] = {.lex_state = 146}, - [6937] = {.lex_state = 146}, - [6938] = {.lex_state = 146}, - [6939] = {.lex_state = 744}, - [6940] = {.lex_state = 146}, - [6941] = {.lex_state = 231}, - [6942] = {.lex_state = 744}, - [6943] = {.lex_state = 744}, - [6944] = {.lex_state = 744}, - [6945] = {.lex_state = 744}, - [6946] = {.lex_state = 744}, - [6947] = {.lex_state = 744}, - [6948] = {.lex_state = 744}, - [6949] = {.lex_state = 146}, - [6950] = {.lex_state = 744}, - [6951] = {.lex_state = 336}, - [6952] = {.lex_state = 146}, - [6953] = {.lex_state = 744}, - [6954] = {.lex_state = 744}, - [6955] = {.lex_state = 744}, - [6956] = {.lex_state = 336}, - [6957] = {.lex_state = 380}, - [6958] = {.lex_state = 146}, - [6959] = {.lex_state = 744}, - [6960] = {.lex_state = 146}, - [6961] = {.lex_state = 146}, - [6962] = {.lex_state = 146}, - [6963] = {.lex_state = 146}, - [6964] = {.lex_state = 146}, - [6965] = {.lex_state = 146}, - [6966] = {.lex_state = 146}, - [6967] = {.lex_state = 146}, - [6968] = {.lex_state = 744}, - [6969] = {.lex_state = 744}, - [6970] = {.lex_state = 285}, - [6971] = {.lex_state = 85}, - [6972] = {.lex_state = 743}, - [6973] = {.lex_state = 744}, - [6974] = {.lex_state = 744}, - [6975] = {.lex_state = 744}, - [6976] = {.lex_state = 744}, - [6977] = {.lex_state = 744}, - [6978] = {.lex_state = 744}, - [6979] = {.lex_state = 336}, - [6980] = {.lex_state = 744}, - [6981] = {.lex_state = 744}, - [6982] = {.lex_state = 744}, - [6983] = {.lex_state = 336}, - [6984] = {.lex_state = 146}, - [6985] = {.lex_state = 146}, - [6986] = {.lex_state = 744}, - [6987] = {.lex_state = 146}, - [6988] = {.lex_state = 744}, - [6989] = {.lex_state = 146}, - [6990] = {.lex_state = 146}, - [6991] = {.lex_state = 146}, - [6992] = {.lex_state = 146}, - [6993] = {.lex_state = 146}, - [6994] = {.lex_state = 744}, - [6995] = {.lex_state = 40}, - [6996] = {.lex_state = 146}, - [6997] = {.lex_state = 146}, - [6998] = {.lex_state = 146}, - [6999] = {.lex_state = 146}, - [7000] = {.lex_state = 146}, - [7001] = {.lex_state = 410}, - [7002] = {.lex_state = 744}, - [7003] = {.lex_state = 744}, - [7004] = {.lex_state = 146}, - [7005] = {.lex_state = 744}, - [7006] = {.lex_state = 206}, - [7007] = {.lex_state = 146}, - [7008] = {.lex_state = 336}, - [7009] = {.lex_state = 744}, - [7010] = {.lex_state = 743}, - [7011] = {.lex_state = 146}, - [7012] = {.lex_state = 146}, - [7013] = {.lex_state = 336}, - [7014] = {.lex_state = 146}, - [7015] = {.lex_state = 146}, - [7016] = {.lex_state = 146}, - [7017] = {.lex_state = 146}, - [7018] = {.lex_state = 146}, - [7019] = {.lex_state = 146}, - [7020] = {.lex_state = 146}, - [7021] = {.lex_state = 146}, - [7022] = {.lex_state = 14}, - [7023] = {.lex_state = 146}, - [7024] = {.lex_state = 146}, - [7025] = {.lex_state = 740}, - [7026] = {.lex_state = 146}, - [7027] = {.lex_state = 146}, - [7028] = {.lex_state = 722}, - [7029] = {.lex_state = 146}, - [7030] = {.lex_state = 400}, - [7031] = {.lex_state = 146}, - [7032] = {.lex_state = 146}, - [7033] = {.lex_state = 146}, - [7034] = {.lex_state = 744}, - [7035] = {.lex_state = 336}, - [7036] = {.lex_state = 744}, - [7037] = {.lex_state = 336}, - [7038] = {.lex_state = 146}, - [7039] = {.lex_state = 146}, - [7040] = {.lex_state = 744}, - [7041] = {.lex_state = 146}, - [7042] = {.lex_state = 146}, - [7043] = {.lex_state = 146}, - [7044] = {.lex_state = 146}, - [7045] = {.lex_state = 2}, - [7046] = {.lex_state = 146}, - [7047] = {.lex_state = 406}, - [7048] = {.lex_state = 146}, - [7049] = {.lex_state = 146}, - [7050] = {.lex_state = 146}, - [7051] = {.lex_state = 744}, - [7052] = {.lex_state = 146}, - [7053] = {.lex_state = 146}, - [7054] = {.lex_state = 146}, - [7055] = {.lex_state = 743}, - [7056] = {.lex_state = 336}, - [7057] = {.lex_state = 744}, - [7058] = {.lex_state = 146}, - [7059] = {.lex_state = 146}, - [7060] = {.lex_state = 146}, - [7061] = {.lex_state = 336}, - [7062] = {.lex_state = 744}, - [7063] = {.lex_state = 146}, - [7064] = {.lex_state = 146}, - [7065] = {.lex_state = 146}, - [7066] = {.lex_state = 146}, - [7067] = {.lex_state = 146}, - [7068] = {.lex_state = 146}, - [7069] = {.lex_state = 329}, - [7070] = {.lex_state = 146}, - [7071] = {.lex_state = 146}, - [7072] = {.lex_state = 146}, - [7073] = {.lex_state = 744}, - [7074] = {.lex_state = 146}, - [7075] = {.lex_state = 146}, - [7076] = {.lex_state = 146}, - [7077] = {.lex_state = 336}, - [7078] = {.lex_state = 744}, - [7079] = {.lex_state = 336}, - [7080] = {.lex_state = 146}, - [7081] = {.lex_state = 744}, - [7082] = {.lex_state = 146}, - [7083] = {.lex_state = 146}, - [7084] = {.lex_state = 146}, - [7085] = {.lex_state = 146}, - [7086] = {.lex_state = 744}, - [7087] = {.lex_state = 146}, - [7088] = {.lex_state = 146}, - [7089] = {.lex_state = 146}, - [7090] = {.lex_state = 146}, - [7091] = {.lex_state = 744}, - [7092] = {.lex_state = 146}, - [7093] = {.lex_state = 409}, - [7094] = {.lex_state = 146}, - [7095] = {.lex_state = 743}, - [7096] = {.lex_state = 336}, - [7097] = {.lex_state = 744}, - [7098] = {.lex_state = 336}, - [7099] = {.lex_state = 146}, - [7100] = {.lex_state = 146}, - [7101] = {.lex_state = 146}, - [7102] = {.lex_state = 146}, - [7103] = {.lex_state = 146}, - [7104] = {.lex_state = 146}, - [7105] = {.lex_state = 146}, - [7106] = {.lex_state = 146}, - [7107] = {.lex_state = 146}, - [7108] = {.lex_state = 744}, - [7109] = {.lex_state = 743}, - [7110] = {.lex_state = 388}, - [7111] = {.lex_state = 336}, - [7112] = {.lex_state = 744}, - [7113] = {.lex_state = 146}, - [7114] = {.lex_state = 743}, - [7115] = {.lex_state = 146}, - [7116] = {.lex_state = 146}, - [7117] = {.lex_state = 146}, - [7118] = {.lex_state = 146}, - [7119] = {.lex_state = 146}, - [7120] = {.lex_state = 146}, - [7121] = {.lex_state = 744}, - [7122] = {.lex_state = 146}, - [7123] = {.lex_state = 146}, - [7124] = {.lex_state = 388}, - [7125] = {.lex_state = 744}, - [7126] = {.lex_state = 146}, - [7127] = {.lex_state = 744}, - [7128] = {.lex_state = 146}, - [7129] = {.lex_state = 146}, - [7130] = {.lex_state = 744}, - [7131] = {.lex_state = 146}, - [7132] = {.lex_state = 146}, - [7133] = {.lex_state = 146}, - [7134] = {.lex_state = 146}, - [7135] = {.lex_state = 146}, - [7136] = {.lex_state = 146}, - [7137] = {.lex_state = 146}, - [7138] = {.lex_state = 146}, - [7139] = {.lex_state = 402}, - [7140] = {.lex_state = 744}, - [7141] = {.lex_state = 146}, - [7142] = {.lex_state = 146}, - [7143] = {.lex_state = 744}, - [7144] = {.lex_state = 146}, - [7145] = {.lex_state = 146}, - [7146] = {.lex_state = 744}, - [7147] = {.lex_state = 146}, - [7148] = {.lex_state = 743}, - [7149] = {.lex_state = 146}, - [7150] = {.lex_state = 744}, - [7151] = {.lex_state = 146}, - [7152] = {.lex_state = 146}, - [7153] = {.lex_state = 146}, - [7154] = {.lex_state = 146}, - [7155] = {.lex_state = 336}, - [7156] = {.lex_state = 146}, - [7157] = {.lex_state = 146}, - [7158] = {.lex_state = 146}, - [7159] = {.lex_state = 744}, - [7160] = {.lex_state = 146}, - [7161] = {.lex_state = 146}, - [7162] = {.lex_state = 410}, - [7163] = {.lex_state = 744}, - [7164] = {.lex_state = 743}, - [7165] = {.lex_state = 409}, - [7166] = {.lex_state = 744}, - [7167] = {.lex_state = 744}, - [7168] = {.lex_state = 388}, - [7169] = {.lex_state = 744}, - [7170] = {.lex_state = 744}, - [7171] = {.lex_state = 744}, - [7172] = {.lex_state = 85}, - [7173] = {.lex_state = 744}, - [7174] = {.lex_state = 745}, - [7175] = {.lex_state = 744}, - [7176] = {.lex_state = 743}, - [7177] = {.lex_state = 744}, - [7178] = {.lex_state = 146}, - [7179] = {.lex_state = 744}, - [7180] = {.lex_state = 336}, - [7181] = {.lex_state = 146}, - [7182] = {.lex_state = 336}, - [7183] = {.lex_state = 744}, - [7184] = {.lex_state = 146}, - [7185] = {.lex_state = 744}, - [7186] = {.lex_state = 403}, - [7187] = {.lex_state = 336}, - [7188] = {.lex_state = 744}, - [7189] = {.lex_state = 146}, - [7190] = {.lex_state = 146}, - [7191] = {.lex_state = 146}, - [7192] = {.lex_state = 287}, - [7193] = {.lex_state = 146}, - [7194] = {.lex_state = 146}, - [7195] = {.lex_state = 146}, - [7196] = {.lex_state = 14}, - [7197] = {.lex_state = 146}, - [7198] = {.lex_state = 744}, - [7199] = {.lex_state = 146}, - [7200] = {.lex_state = 146}, - [7201] = {.lex_state = 146}, - [7202] = {.lex_state = 744}, - [7203] = {.lex_state = 406}, - [7204] = {.lex_state = 744}, - [7205] = {.lex_state = 744}, - [7206] = {.lex_state = 146}, - [7207] = {.lex_state = 206}, - [7208] = {.lex_state = 146}, - [7209] = {.lex_state = 146}, - [7210] = {.lex_state = 146}, - [7211] = {.lex_state = 388}, - [7212] = {.lex_state = 146}, - [7213] = {.lex_state = 2}, - [7214] = {.lex_state = 744}, - [7215] = {.lex_state = 2}, - [7216] = {.lex_state = 2}, - [7217] = {.lex_state = 146}, - [7218] = {.lex_state = 85}, - [7219] = {.lex_state = 744}, - [7220] = {.lex_state = 744}, - [7221] = {.lex_state = 146}, - [7222] = {.lex_state = 744}, - [7223] = {.lex_state = 146}, - [7224] = {.lex_state = 146}, - [7225] = {.lex_state = 84}, - [7226] = {.lex_state = 206}, - [7227] = {.lex_state = 744}, - [7228] = {.lex_state = 146}, - [7229] = {.lex_state = 85}, - [7230] = {.lex_state = 85}, - [7231] = {.lex_state = 744}, - [7232] = {.lex_state = 85}, - [7233] = {.lex_state = 146}, - [7234] = {.lex_state = 744}, - [7235] = {.lex_state = 14}, - [7236] = {.lex_state = 744}, - [7237] = {.lex_state = 744}, - [7238] = {.lex_state = 146}, - [7239] = {.lex_state = 146}, - [7240] = {.lex_state = 740}, - [7241] = {.lex_state = 744}, - [7242] = {.lex_state = 743}, - [7243] = {.lex_state = 146}, - [7244] = {.lex_state = 146}, - [7245] = {.lex_state = 2}, - [7246] = {.lex_state = 146}, - [7247] = {.lex_state = 744}, - [7248] = {.lex_state = 146}, - [7249] = {.lex_state = 146}, - [7250] = {.lex_state = 744}, - [7251] = {.lex_state = 744}, - [7252] = {.lex_state = 744}, - [7253] = {.lex_state = 146}, - [7254] = {.lex_state = 146}, - [7255] = {.lex_state = 146}, - [7256] = {.lex_state = 744}, - [7257] = {.lex_state = 744}, - [7258] = {.lex_state = 146}, - [7259] = {.lex_state = 744}, - [7260] = {.lex_state = 333}, - [7261] = {.lex_state = 744}, - [7262] = {.lex_state = 744}, - [7263] = {.lex_state = 335}, - [7264] = {.lex_state = 146}, - [7265] = {.lex_state = 388}, - [7266] = {.lex_state = 744}, - [7267] = {.lex_state = 146}, - [7268] = {.lex_state = 146}, - [7269] = {.lex_state = 146}, - [7270] = {.lex_state = 744}, - [7271] = {.lex_state = 744}, - [7272] = {.lex_state = 400}, - [7273] = {.lex_state = 744}, - [7274] = {.lex_state = 744}, - [7275] = {.lex_state = 206}, - [7276] = {.lex_state = 744}, - [7277] = {.lex_state = 402}, - [7278] = {.lex_state = 402}, - [7279] = {.lex_state = 206}, - [7280] = {.lex_state = 744}, - [7281] = {.lex_state = 744}, - [7282] = {.lex_state = 744}, - [7283] = {.lex_state = 744}, - [7284] = {.lex_state = 744}, - [7285] = {.lex_state = 40}, - [7286] = {.lex_state = 146}, - [7287] = {.lex_state = 744}, - [7288] = {.lex_state = 146}, - [7289] = {.lex_state = 744}, - [7290] = {.lex_state = 744}, - [7291] = {.lex_state = 744}, - [7292] = {.lex_state = 744}, - [7293] = {.lex_state = 206}, - [7294] = {.lex_state = 85}, - [7295] = {.lex_state = 722}, - [7296] = {.lex_state = 206}, - [7297] = {.lex_state = 744}, - [7298] = {.lex_state = 744}, - [7299] = {.lex_state = 744}, - [7300] = {.lex_state = 744}, - [7301] = {.lex_state = 206}, - [7302] = {.lex_state = 744}, - [7303] = {.lex_state = 206}, - [7304] = {.lex_state = 2}, - [7305] = {.lex_state = 744}, - [7306] = {.lex_state = 744}, - [7307] = {.lex_state = 744}, - [7308] = {.lex_state = 744}, - [7309] = {.lex_state = 744}, - [7310] = {.lex_state = 146}, - [7311] = {.lex_state = 744}, - [7312] = {.lex_state = 206}, - [7313] = {.lex_state = 146}, - [7314] = {.lex_state = 206}, - [7315] = {.lex_state = 146}, - [7316] = {.lex_state = 744}, - [7317] = {.lex_state = 744}, - [7318] = {.lex_state = 146}, - [7319] = {.lex_state = 744}, - [7320] = {.lex_state = 744}, - [7321] = {.lex_state = 206}, - [7322] = {.lex_state = 206}, - [7323] = {.lex_state = 744}, - [7324] = {.lex_state = 744}, - [7325] = {.lex_state = 744}, - [7326] = {.lex_state = 744}, - [7327] = {.lex_state = 206}, - [7328] = {.lex_state = 206}, - [7329] = {.lex_state = 146}, - [7330] = {.lex_state = 744}, - [7331] = {.lex_state = 744}, - [7332] = {.lex_state = 744}, - [7333] = {.lex_state = 744}, - [7334] = {.lex_state = 744}, - [7335] = {.lex_state = 206}, - [7336] = {.lex_state = 402}, - [7337] = {.lex_state = 402}, - [7338] = {.lex_state = 206}, - [7339] = {.lex_state = 744}, - [7340] = {.lex_state = 744}, - [7341] = {.lex_state = 744}, - [7342] = {.lex_state = 744}, - [7343] = {.lex_state = 744}, - [7344] = {.lex_state = 744}, - [7345] = {.lex_state = 206}, - [7346] = {.lex_state = 123}, - [7347] = {.lex_state = 744}, - [7348] = {.lex_state = 206}, - [7349] = {.lex_state = 333}, - [7350] = {.lex_state = 744}, - [7351] = {.lex_state = 744}, - [7352] = {.lex_state = 743}, - [7353] = {.lex_state = 744}, - [7354] = {.lex_state = 744}, - [7355] = {.lex_state = 206}, - [7356] = {.lex_state = 743}, - [7357] = {.lex_state = 206}, - [7358] = {.lex_state = 403}, - [7359] = {.lex_state = 744}, - [7360] = {.lex_state = 744}, - [7361] = {.lex_state = 146}, - [7362] = {.lex_state = 744}, - [7363] = {.lex_state = 744}, - [7364] = {.lex_state = 206}, - [7365] = {.lex_state = 146}, - [7366] = {.lex_state = 744}, - [7367] = {.lex_state = 206}, - [7368] = {.lex_state = 406}, - [7369] = {.lex_state = 146}, - [7370] = {.lex_state = 744}, - [7371] = {.lex_state = 744}, - [7372] = {.lex_state = 146}, - [7373] = {.lex_state = 744}, - [7374] = {.lex_state = 744}, - [7375] = {.lex_state = 206}, - [7376] = {.lex_state = 336}, - [7377] = {.lex_state = 206}, - [7378] = {.lex_state = 403}, - [7379] = {.lex_state = 743}, - [7380] = {.lex_state = 744}, - [7381] = {.lex_state = 744}, - [7382] = {.lex_state = 744}, - [7383] = {.lex_state = 744}, - [7384] = {.lex_state = 206}, - [7385] = {.lex_state = 206}, - [7386] = {.lex_state = 744}, - [7387] = {.lex_state = 744}, - [7388] = {.lex_state = 409}, - [7389] = {.lex_state = 744}, - [7390] = {.lex_state = 744}, - [7391] = {.lex_state = 206}, - [7392] = {.lex_state = 146}, - [7393] = {.lex_state = 206}, - [7394] = {.lex_state = 744}, - [7395] = {.lex_state = 744}, - [7396] = {.lex_state = 744}, - [7397] = {.lex_state = 744}, - [7398] = {.lex_state = 206}, - [7399] = {.lex_state = 206}, - [7400] = {.lex_state = 744}, - [7401] = {.lex_state = 744}, - [7402] = {.lex_state = 744}, - [7403] = {.lex_state = 744}, - [7404] = {.lex_state = 206}, - [7405] = {.lex_state = 206}, - [7406] = {.lex_state = 744}, - [7407] = {.lex_state = 744}, - [7408] = {.lex_state = 744}, - [7409] = {.lex_state = 744}, - [7410] = {.lex_state = 206}, - [7411] = {.lex_state = 206}, - [7412] = {.lex_state = 744}, - [7413] = {.lex_state = 744}, - [7414] = {.lex_state = 744}, - [7415] = {.lex_state = 744}, - [7416] = {.lex_state = 206}, - [7417] = {.lex_state = 206}, - [7418] = {.lex_state = 744}, - [7419] = {.lex_state = 744}, - [7420] = {.lex_state = 744}, - [7421] = {.lex_state = 744}, - [7422] = {.lex_state = 206}, - [7423] = {.lex_state = 206}, - [7424] = {.lex_state = 744}, - [7425] = {.lex_state = 744}, - [7426] = {.lex_state = 744}, - [7427] = {.lex_state = 744}, - [7428] = {.lex_state = 744}, - [7429] = {.lex_state = 744}, - [7430] = {.lex_state = 406}, - [7431] = {.lex_state = 406}, - [7432] = {.lex_state = 744}, - [7433] = {.lex_state = 744}, - [7434] = {.lex_state = 388}, - [7435] = {.lex_state = 744}, - [7436] = {.lex_state = 388}, - [7437] = {.lex_state = 146}, - [7438] = {.lex_state = 146}, - [7439] = {.lex_state = 403}, - [7440] = {.lex_state = 336}, - [7441] = {.lex_state = 744}, - [7442] = {.lex_state = 336}, - [7443] = {.lex_state = 146}, - [7444] = {.lex_state = 231}, - [7445] = {.lex_state = 333}, - [7446] = {.lex_state = 336}, - [7447] = {.lex_state = 146}, - [7448] = {.lex_state = 146}, - [7449] = {.lex_state = 146}, - [7450] = {.lex_state = 146}, - [7451] = {.lex_state = 744}, - [7452] = {.lex_state = 744}, - [7453] = {.lex_state = 744}, - [7454] = {.lex_state = 744}, - [7455] = {.lex_state = 146}, - [7456] = {.lex_state = 744}, - [7457] = {.lex_state = 744}, - [7458] = {.lex_state = 4063}, - [7459] = {.lex_state = 146}, - [7460] = {.lex_state = 744}, - [7461] = {.lex_state = 744}, - [7462] = {.lex_state = 744}, - [7463] = {.lex_state = 4063}, - [7464] = {.lex_state = 744}, - [7465] = {.lex_state = 409}, - [7466] = {.lex_state = 4063}, - [7467] = {.lex_state = 407}, - [7468] = {.lex_state = 146}, - [7469] = {.lex_state = 146}, - [7470] = {.lex_state = 4063}, - [7471] = {.lex_state = 744}, - [7472] = {.lex_state = 4063}, - [7473] = {.lex_state = 146}, - [7474] = {.lex_state = 744}, - [7475] = {.lex_state = 744}, - [7476] = {.lex_state = 744}, - [7477] = {.lex_state = 745}, - [7478] = {.lex_state = 146}, - [7479] = {.lex_state = 744}, - [7480] = {.lex_state = 407}, - [7481] = {.lex_state = 407}, - [7482] = {.lex_state = 144}, - [7483] = {.lex_state = 4063}, - [7484] = {.lex_state = 744}, - [7485] = {.lex_state = 144}, - [7486] = {.lex_state = 403}, - [7487] = {.lex_state = 146}, - [7488] = {.lex_state = 4063}, - [7489] = {.lex_state = 4063}, - [7490] = {.lex_state = 146}, - [7491] = {.lex_state = 146}, - [7492] = {.lex_state = 146}, - [7493] = {.lex_state = 814}, - [7494] = {.lex_state = 4063}, - [7495] = {.lex_state = 4063}, - [7496] = {.lex_state = 744}, - [7497] = {.lex_state = 744}, - [7498] = {.lex_state = 4063}, - [7499] = {.lex_state = 4063}, - [7500] = {.lex_state = 4063}, - [7501] = {.lex_state = 744}, - [7502] = {.lex_state = 403}, - [7503] = {.lex_state = 146}, - [7504] = {.lex_state = 4067}, - [7505] = {.lex_state = 744}, - [7506] = {.lex_state = 4063}, - [7507] = {.lex_state = 333}, - [7508] = {.lex_state = 144}, - [7509] = {.lex_state = 744}, - [7510] = {.lex_state = 744}, - [7511] = {.lex_state = 146}, - [7512] = {.lex_state = 744}, - [7513] = {.lex_state = 744}, - [7514] = {.lex_state = 744}, - [7515] = {.lex_state = 4065}, - [7516] = {.lex_state = 146}, - [7517] = {.lex_state = 4065}, - [7518] = {.lex_state = 14}, - [7519] = {.lex_state = 333}, - [7520] = {.lex_state = 744}, - [7521] = {.lex_state = 4063}, - [7522] = {.lex_state = 744}, - [7523] = {.lex_state = 4067}, - [7524] = {.lex_state = 146}, - [7525] = {.lex_state = 4063}, - [7526] = {.lex_state = 744}, - [7527] = {.lex_state = 744}, - [7528] = {.lex_state = 4065}, - [7529] = {.lex_state = 4065}, - [7530] = {.lex_state = 333}, - [7531] = {.lex_state = 744}, - [7532] = {.lex_state = 4063}, - [7533] = {.lex_state = 146}, - [7534] = {.lex_state = 144}, - [7535] = {.lex_state = 4065}, - [7536] = {.lex_state = 4067}, - [7537] = {.lex_state = 4067}, - [7538] = {.lex_state = 146}, - [7539] = {.lex_state = 744}, - [7540] = {.lex_state = 744}, - [7541] = {.lex_state = 146}, - [7542] = {.lex_state = 146}, - [7543] = {.lex_state = 146}, - [7544] = {.lex_state = 146}, - [7545] = {.lex_state = 144}, - [7546] = {.lex_state = 740}, - [7547] = {.lex_state = 744}, - [7548] = {.lex_state = 744}, - [7549] = {.lex_state = 744}, - [7550] = {.lex_state = 744}, - [7551] = {.lex_state = 400}, - [7552] = {.lex_state = 146}, - [7553] = {.lex_state = 333}, - [7554] = {.lex_state = 744}, - [7555] = {.lex_state = 333}, - [7556] = {.lex_state = 4067}, - [7557] = {.lex_state = 4067}, - [7558] = {.lex_state = 744}, - [7559] = {.lex_state = 33}, - [7560] = {.lex_state = 146}, - [7561] = {.lex_state = 744}, - [7562] = {.lex_state = 146}, - [7563] = {.lex_state = 144}, - [7564] = {.lex_state = 745}, - [7565] = {.lex_state = 146}, - [7566] = {.lex_state = 333}, - [7567] = {.lex_state = 744}, - [7568] = {.lex_state = 146}, - [7569] = {.lex_state = 744}, - [7570] = {.lex_state = 403}, - [7571] = {.lex_state = 744}, - [7572] = {.lex_state = 144}, - [7573] = {.lex_state = 146}, - [7574] = {.lex_state = 146}, - [7575] = {.lex_state = 744}, - [7576] = {.lex_state = 144}, - [7577] = {.lex_state = 144}, - [7578] = {.lex_state = 4065}, - [7579] = {.lex_state = 744}, - [7580] = {.lex_state = 38}, - [7581] = {.lex_state = 744}, - [7582] = {.lex_state = 744}, - [7583] = {.lex_state = 144}, - [7584] = {.lex_state = 144}, - [7585] = {.lex_state = 146}, - [7586] = {.lex_state = 146}, - [7587] = {.lex_state = 146}, - [7588] = {.lex_state = 744}, - [7589] = {.lex_state = 146}, - [7590] = {.lex_state = 744}, - [7591] = {.lex_state = 146}, - [7592] = {.lex_state = 744}, - [7593] = {.lex_state = 744}, - [7594] = {.lex_state = 744}, - [7595] = {.lex_state = 744}, - [7596] = {.lex_state = 744}, - [7597] = {.lex_state = 744}, - [7598] = {.lex_state = 38}, - [7599] = {.lex_state = 744}, - [7600] = {.lex_state = 744}, - [7601] = {.lex_state = 744}, - [7602] = {.lex_state = 744}, - [7603] = {.lex_state = 744}, - [7604] = {.lex_state = 745}, - [7605] = {.lex_state = 146}, - [7606] = {.lex_state = 333}, - [7607] = {.lex_state = 144}, - [7608] = {.lex_state = 4065}, - [7609] = {.lex_state = 744}, - [7610] = {.lex_state = 744}, - [7611] = {.lex_state = 4067}, - [7612] = {.lex_state = 146}, - [7613] = {.lex_state = 144}, - [7614] = {.lex_state = 697}, - [7615] = {.lex_state = 744}, - [7616] = {.lex_state = 744}, - [7617] = {.lex_state = 4067}, - [7618] = {.lex_state = 4067}, - [7619] = {.lex_state = 144}, - [7620] = {.lex_state = 744}, - [7621] = {.lex_state = 146}, - [7622] = {.lex_state = 403}, - [7623] = {.lex_state = 744}, - [7624] = {.lex_state = 144}, - [7625] = {.lex_state = 744}, - [7626] = {.lex_state = 14}, - [7627] = {.lex_state = 403}, - [7628] = {.lex_state = 744}, - [7629] = {.lex_state = 146}, - [7630] = {.lex_state = 745}, - [7631] = {.lex_state = 403}, - [7632] = {.lex_state = 4063}, - [7633] = {.lex_state = 4063}, - [7634] = {.lex_state = 4067}, - [7635] = {.lex_state = 407}, - [7636] = {.lex_state = 4065}, - [7637] = {.lex_state = 4067}, - [7638] = {.lex_state = 146}, - [7639] = {.lex_state = 146}, - [7640] = {.lex_state = 146}, - [7641] = {.lex_state = 146}, - [7642] = {.lex_state = 4063}, - [7643] = {.lex_state = 744}, - [7644] = {.lex_state = 146}, - [7645] = {.lex_state = 744}, - [7646] = {.lex_state = 4063}, - [7647] = {.lex_state = 4067}, - [7648] = {.lex_state = 744}, - [7649] = {.lex_state = 146}, - [7650] = {.lex_state = 744}, - [7651] = {.lex_state = 4065}, - [7652] = {.lex_state = 744}, - [7653] = {.lex_state = 146}, - [7654] = {.lex_state = 744}, - [7655] = {.lex_state = 744}, - [7656] = {.lex_state = 744}, - [7657] = {.lex_state = 744}, - [7658] = {.lex_state = 744}, - [7659] = {.lex_state = 4063}, - [7660] = {.lex_state = 744}, - [7661] = {.lex_state = 744}, - [7662] = {.lex_state = 407}, - [7663] = {.lex_state = 744}, - [7664] = {.lex_state = 744}, - [7665] = {.lex_state = 814}, - [7666] = {.lex_state = 744}, - [7667] = {.lex_state = 744}, - [7668] = {.lex_state = 391}, - [7669] = {.lex_state = 744}, - [7670] = {.lex_state = 744}, - [7671] = {.lex_state = 744}, - [7672] = {.lex_state = 744}, - [7673] = {.lex_state = 4063}, - [7674] = {.lex_state = 744}, - [7675] = {.lex_state = 4063}, - [7676] = {.lex_state = 744}, - [7677] = {.lex_state = 744}, - [7678] = {.lex_state = 744}, - [7679] = {.lex_state = 744}, - [7680] = {.lex_state = 744}, - [7681] = {.lex_state = 4063}, - [7682] = {.lex_state = 744}, - [7683] = {.lex_state = 744}, - [7684] = {.lex_state = 4063}, - [7685] = {.lex_state = 722}, - [7686] = {.lex_state = 333}, - [7687] = {.lex_state = 146}, - [7688] = {.lex_state = 744}, - [7689] = {.lex_state = 744}, - [7690] = {.lex_state = 744}, - [7691] = {.lex_state = 744}, - [7692] = {.lex_state = 744}, - [7693] = {.lex_state = 333}, - [7694] = {.lex_state = 744}, - [7695] = {.lex_state = 744}, - [7696] = {.lex_state = 744}, - [7697] = {.lex_state = 744}, - [7698] = {.lex_state = 4063}, - [7699] = {.lex_state = 146}, - [7700] = {.lex_state = 4063}, - [7701] = {.lex_state = 336}, - [7702] = {.lex_state = 146}, - [7703] = {.lex_state = 14}, - [7704] = {.lex_state = 744}, - [7705] = {.lex_state = 146}, - [7706] = {.lex_state = 4067}, - [7707] = {.lex_state = 4063}, - [7708] = {.lex_state = 2811}, - [7709] = {.lex_state = 744}, - [7710] = {.lex_state = 333}, - [7711] = {.lex_state = 744}, - [7712] = {.lex_state = 744}, - [7713] = {.lex_state = 710}, - [7714] = {.lex_state = 744}, - [7715] = {.lex_state = 744, .external_lex_state = 3}, - [7716] = {.lex_state = 744}, - [7717] = {.lex_state = 744}, - [7718] = {.lex_state = 740}, - [7719] = {.lex_state = 744}, - [7720] = {.lex_state = 333}, - [7721] = {.lex_state = 744, .external_lex_state = 3}, - [7722] = {.lex_state = 744}, - [7723] = {.lex_state = 744}, - [7724] = {.lex_state = 740}, - [7725] = {.lex_state = 1841}, - [7726] = {.lex_state = 333}, - [7727] = {.lex_state = 744}, - [7728] = {.lex_state = 744, .external_lex_state = 3}, - [7729] = {.lex_state = 398}, - [7730] = {.lex_state = 744}, - [7731] = {.lex_state = 744}, - [7732] = {.lex_state = 397}, - [7733] = {.lex_state = 1841}, - [7734] = {.lex_state = 403}, - [7735] = {.lex_state = 333}, - [7736] = {.lex_state = 744, .external_lex_state = 3}, - [7737] = {.lex_state = 744, .external_lex_state = 3}, - [7738] = {.lex_state = 33}, - [7739] = {.lex_state = 333}, - [7740] = {.lex_state = 740}, - [7741] = {.lex_state = 398}, - [7742] = {.lex_state = 744}, - [7743] = {.lex_state = 744, .external_lex_state = 3}, - [7744] = {.lex_state = 227}, - [7745] = {.lex_state = 333}, - [7746] = {.lex_state = 403}, - [7747] = {.lex_state = 744}, - [7748] = {.lex_state = 744}, - [7749] = {.lex_state = 744}, - [7750] = {.lex_state = 744}, - [7751] = {.lex_state = 33}, - [7752] = {.lex_state = 744}, - [7753] = {.lex_state = 744}, - [7754] = {.lex_state = 744}, - [7755] = {.lex_state = 828}, - [7756] = {.lex_state = 227}, - [7757] = {.lex_state = 403}, - [7758] = {.lex_state = 744}, - [7759] = {.lex_state = 14}, - [7760] = {.lex_state = 744, .external_lex_state = 3}, - [7761] = {.lex_state = 744}, - [7762] = {.lex_state = 744}, - [7763] = {.lex_state = 744}, - [7764] = {.lex_state = 333}, - [7765] = {.lex_state = 744}, - [7766] = {.lex_state = 333}, - [7767] = {.lex_state = 744}, - [7768] = {.lex_state = 744, .external_lex_state = 3}, - [7769] = {.lex_state = 744}, - [7770] = {.lex_state = 36}, - [7771] = {.lex_state = 744}, - [7772] = {.lex_state = 744}, - [7773] = {.lex_state = 744}, - [7774] = {.lex_state = 744}, - [7775] = {.lex_state = 744}, - [7776] = {.lex_state = 2}, - [7777] = {.lex_state = 744}, - [7778] = {.lex_state = 744}, - [7779] = {.lex_state = 333}, - [7780] = {.lex_state = 333}, - [7781] = {.lex_state = 744}, - [7782] = {.lex_state = 2}, - [7783] = {.lex_state = 744, .external_lex_state = 3}, - [7784] = {.lex_state = 744}, - [7785] = {.lex_state = 403}, - [7786] = {.lex_state = 2}, - [7787] = {.lex_state = 1841}, - [7788] = {.lex_state = 403}, - [7789] = {.lex_state = 744}, - [7790] = {.lex_state = 744}, - [7791] = {.lex_state = 744}, - [7792] = {.lex_state = 397}, - [7793] = {.lex_state = 744, .external_lex_state = 3}, - [7794] = {.lex_state = 744}, - [7795] = {.lex_state = 744}, - [7796] = {.lex_state = 744}, - [7797] = {.lex_state = 744}, - [7798] = {.lex_state = 744}, - [7799] = {.lex_state = 1841}, - [7800] = {.lex_state = 744}, - [7801] = {.lex_state = 744}, - [7802] = {.lex_state = 403}, - [7803] = {.lex_state = 744, .external_lex_state = 4}, - [7804] = {.lex_state = 744}, - [7805] = {.lex_state = 744}, - [7806] = {.lex_state = 2}, - [7807] = {.lex_state = 333}, - [7808] = {.lex_state = 403}, - [7809] = {.lex_state = 744, .external_lex_state = 3}, - [7810] = {.lex_state = 227}, - [7811] = {.lex_state = 2}, - [7812] = {.lex_state = 4063}, - [7813] = {.lex_state = 1841}, - [7814] = {.lex_state = 744}, - [7815] = {.lex_state = 744}, - [7816] = {.lex_state = 33}, - [7817] = {.lex_state = 744}, - [7818] = {.lex_state = 744}, - [7819] = {.lex_state = 744}, - [7820] = {.lex_state = 745}, - [7821] = {.lex_state = 744}, - [7822] = {.lex_state = 744}, - [7823] = {.lex_state = 744}, - [7824] = {.lex_state = 744, .external_lex_state = 3}, - [7825] = {.lex_state = 744}, - [7826] = {.lex_state = 744}, - [7827] = {.lex_state = 1841}, - [7828] = {.lex_state = 744}, - [7829] = {.lex_state = 395}, - [7830] = {.lex_state = 2}, - [7831] = {.lex_state = 744}, - [7832] = {.lex_state = 1841}, - [7833] = {.lex_state = 33}, - [7834] = {.lex_state = 744, .external_lex_state = 3}, - [7835] = {.lex_state = 744}, - [7836] = {.lex_state = 744}, - [7837] = {.lex_state = 744}, - [7838] = {.lex_state = 744, .external_lex_state = 3}, - [7839] = {.lex_state = 744, .external_lex_state = 3}, - [7840] = {.lex_state = 744, .external_lex_state = 3}, - [7841] = {.lex_state = 744}, - [7842] = {.lex_state = 333}, - [7843] = {.lex_state = 744}, - [7844] = {.lex_state = 744}, - [7845] = {.lex_state = 744}, - [7846] = {.lex_state = 4067}, - [7847] = {.lex_state = 403}, - [7848] = {.lex_state = 1841}, - [7849] = {.lex_state = 744, .external_lex_state = 3}, - [7850] = {.lex_state = 744}, - [7851] = {.lex_state = 744, .external_lex_state = 3}, - [7852] = {.lex_state = 2}, - [7853] = {.lex_state = 740}, - [7854] = {.lex_state = 744}, - [7855] = {.lex_state = 740}, - [7856] = {.lex_state = 744}, - [7857] = {.lex_state = 744, .external_lex_state = 3}, - [7858] = {.lex_state = 740}, - [7859] = {.lex_state = 744}, - [7860] = {.lex_state = 744}, - [7861] = {.lex_state = 744}, - [7862] = {.lex_state = 744}, - [7863] = {.lex_state = 744}, - [7864] = {.lex_state = 744, .external_lex_state = 4}, - [7865] = {.lex_state = 744, .external_lex_state = 3}, - [7866] = {.lex_state = 744}, - [7867] = {.lex_state = 2}, - [7868] = {.lex_state = 1841}, - [7869] = {.lex_state = 33}, - [7870] = {.lex_state = 744}, - [7871] = {.lex_state = 744, .external_lex_state = 3}, - [7872] = {.lex_state = 409}, - [7873] = {.lex_state = 744, .external_lex_state = 4}, - [7874] = {.lex_state = 744}, - [7875] = {.lex_state = 744}, - [7876] = {.lex_state = 744}, - [7877] = {.lex_state = 744}, - [7878] = {.lex_state = 744}, - [7879] = {.lex_state = 744}, - [7880] = {.lex_state = 744}, - [7881] = {.lex_state = 744}, - [7882] = {.lex_state = 744}, - [7883] = {.lex_state = 744}, - [7884] = {.lex_state = 333}, - [7885] = {.lex_state = 744, .external_lex_state = 3}, - [7886] = {.lex_state = 744, .external_lex_state = 4}, - [7887] = {.lex_state = 744}, - [7888] = {.lex_state = 2}, + [5701] = {.lex_state = 75}, + [5702] = {.lex_state = 75}, + [5703] = {.lex_state = 2335}, + [5704] = {.lex_state = 13}, + [5705] = {.lex_state = 2271}, + [5706] = {.lex_state = 2336}, + [5707] = {.lex_state = 2378}, + [5708] = {.lex_state = 311}, + [5709] = {.lex_state = 361}, + [5710] = {.lex_state = 311}, + [5711] = {.lex_state = 307}, + [5712] = {.lex_state = 319}, + [5713] = {.lex_state = 319}, + [5714] = {.lex_state = 307}, + [5715] = {.lex_state = 369}, + [5716] = {.lex_state = 368}, + [5717] = {.lex_state = 311}, + [5718] = {.lex_state = 2271}, + [5719] = {.lex_state = 2368}, + [5720] = {.lex_state = 2378}, + [5721] = {.lex_state = 2378}, + [5722] = {.lex_state = 32, .external_lex_state = 2}, + [5723] = {.lex_state = 307}, + [5724] = {.lex_state = 2271}, + [5725] = {.lex_state = 2378}, + [5726] = {.lex_state = 311}, + [5727] = {.lex_state = 311}, + [5728] = {.lex_state = 2335}, + [5729] = {.lex_state = 5548}, + [5730] = {.lex_state = 5548}, + [5731] = {.lex_state = 265}, + [5732] = {.lex_state = 400}, + [5733] = {.lex_state = 2298}, + [5734] = {.lex_state = 2335}, + [5735] = {.lex_state = 70}, + [5736] = {.lex_state = 2298}, + [5737] = {.lex_state = 2335}, + [5738] = {.lex_state = 2298}, + [5739] = {.lex_state = 400}, + [5740] = {.lex_state = 2335}, + [5741] = {.lex_state = 32, .external_lex_state = 2}, + [5742] = {.lex_state = 2335}, + [5743] = {.lex_state = 265}, + [5744] = {.lex_state = 307}, + [5745] = {.lex_state = 5548}, + [5746] = {.lex_state = 5548}, + [5747] = {.lex_state = 265}, + [5748] = {.lex_state = 311}, + [5749] = {.lex_state = 2298}, + [5750] = {.lex_state = 2335}, + [5751] = {.lex_state = 2298}, + [5752] = {.lex_state = 2298}, + [5753] = {.lex_state = 70}, + [5754] = {.lex_state = 2335}, + [5755] = {.lex_state = 2298}, + [5756] = {.lex_state = 265}, + [5757] = {.lex_state = 326}, + [5758] = {.lex_state = 5548}, + [5759] = {.lex_state = 5548}, + [5760] = {.lex_state = 265}, + [5761] = {.lex_state = 2335}, + [5762] = {.lex_state = 265}, + [5763] = {.lex_state = 2298}, + [5764] = {.lex_state = 2335}, + [5765] = {.lex_state = 2298}, + [5766] = {.lex_state = 2335}, + [5767] = {.lex_state = 2335}, + [5768] = {.lex_state = 70}, + [5769] = {.lex_state = 2335}, + [5770] = {.lex_state = 265}, + [5771] = {.lex_state = 5548}, + [5772] = {.lex_state = 5548}, + [5773] = {.lex_state = 265}, + [5774] = {.lex_state = 2335}, + [5775] = {.lex_state = 2298}, + [5776] = {.lex_state = 311}, + [5777] = {.lex_state = 2335}, + [5778] = {.lex_state = 2298}, + [5779] = {.lex_state = 2298}, + [5780] = {.lex_state = 307}, + [5781] = {.lex_state = 265}, + [5782] = {.lex_state = 265}, + [5783] = {.lex_state = 5548}, + [5784] = {.lex_state = 5548}, + [5785] = {.lex_state = 265}, + [5786] = {.lex_state = 2335}, + [5787] = {.lex_state = 2298}, + [5788] = {.lex_state = 32, .external_lex_state = 2}, + [5789] = {.lex_state = 2335}, + [5790] = {.lex_state = 2298}, + [5791] = {.lex_state = 311}, + [5792] = {.lex_state = 2335}, + [5793] = {.lex_state = 2335}, + [5794] = {.lex_state = 265}, + [5795] = {.lex_state = 5548}, + [5796] = {.lex_state = 5548}, + [5797] = {.lex_state = 70}, + [5798] = {.lex_state = 265}, + [5799] = {.lex_state = 2335}, + [5800] = {.lex_state = 2298}, + [5801] = {.lex_state = 13}, + [5802] = {.lex_state = 2335}, + [5803] = {.lex_state = 2298}, + [5804] = {.lex_state = 5548}, + [5805] = {.lex_state = 70}, + [5806] = {.lex_state = 2298}, + [5807] = {.lex_state = 265}, + [5808] = {.lex_state = 5548}, + [5809] = {.lex_state = 5548}, + [5810] = {.lex_state = 265}, + [5811] = {.lex_state = 2298}, + [5812] = {.lex_state = 5548}, + [5813] = {.lex_state = 5548}, + [5814] = {.lex_state = 2298}, + [5815] = {.lex_state = 2335}, + [5816] = {.lex_state = 307}, + [5817] = {.lex_state = 2298}, + [5818] = {.lex_state = 5548}, + [5819] = {.lex_state = 2335}, + [5820] = {.lex_state = 265}, + [5821] = {.lex_state = 5548}, + [5822] = {.lex_state = 5548}, + [5823] = {.lex_state = 265}, + [5824] = {.lex_state = 2335}, + [5825] = {.lex_state = 2298}, + [5826] = {.lex_state = 2298}, + [5827] = {.lex_state = 2298}, + [5828] = {.lex_state = 2298}, + [5829] = {.lex_state = 265}, + [5830] = {.lex_state = 369}, + [5831] = {.lex_state = 265}, + [5832] = {.lex_state = 70}, + [5833] = {.lex_state = 2298}, + [5834] = {.lex_state = 2298}, + [5835] = {.lex_state = 400}, + [5836] = {.lex_state = 336}, + [5837] = {.lex_state = 265}, + [5838] = {.lex_state = 32}, + [5839] = {.lex_state = 265}, + [5840] = {.lex_state = 2298}, + [5841] = {.lex_state = 2298}, + [5842] = {.lex_state = 32, .external_lex_state = 2}, + [5843] = {.lex_state = 32, .external_lex_state = 2}, + [5844] = {.lex_state = 265}, + [5845] = {.lex_state = 2298}, + [5846] = {.lex_state = 265}, + [5847] = {.lex_state = 2298}, + [5848] = {.lex_state = 2298}, + [5849] = {.lex_state = 70}, + [5850] = {.lex_state = 2298}, + [5851] = {.lex_state = 2298}, + [5852] = {.lex_state = 2298}, + [5853] = {.lex_state = 2298}, + [5854] = {.lex_state = 2298}, + [5855] = {.lex_state = 2298}, + [5856] = {.lex_state = 70}, + [5857] = {.lex_state = 2298}, + [5858] = {.lex_state = 2298}, + [5859] = {.lex_state = 2298}, + [5860] = {.lex_state = 2335}, + [5861] = {.lex_state = 2298}, + [5862] = {.lex_state = 5548}, + [5863] = {.lex_state = 5548}, + [5864] = {.lex_state = 373}, + [5865] = {.lex_state = 2298}, + [5866] = {.lex_state = 32}, + [5867] = {.lex_state = 2335}, + [5868] = {.lex_state = 265}, + [5869] = {.lex_state = 2335}, + [5870] = {.lex_state = 2298}, + [5871] = {.lex_state = 2335}, + [5872] = {.lex_state = 70}, + [5873] = {.lex_state = 2335}, + [5874] = {.lex_state = 2298}, + [5875] = {.lex_state = 2335}, + [5876] = {.lex_state = 2263}, + [5877] = {.lex_state = 5548}, + [5878] = {.lex_state = 2263}, + [5879] = {.lex_state = 5548}, + [5880] = {.lex_state = 265}, + [5881] = {.lex_state = 307}, + [5882] = {.lex_state = 2298}, + [5883] = {.lex_state = 284}, + [5884] = {.lex_state = 363}, + [5885] = {.lex_state = 13}, + [5886] = {.lex_state = 2335}, + [5887] = {.lex_state = 2335}, + [5888] = {.lex_state = 2335}, + [5889] = {.lex_state = 32}, + [5890] = {.lex_state = 284}, + [5891] = {.lex_state = 284}, + [5892] = {.lex_state = 2335}, + [5893] = {.lex_state = 2335}, + [5894] = {.lex_state = 5548}, + [5895] = {.lex_state = 2335}, + [5896] = {.lex_state = 70}, + [5897] = {.lex_state = 2335}, + [5898] = {.lex_state = 70}, + [5899] = {.lex_state = 70}, + [5900] = {.lex_state = 2335}, + [5901] = {.lex_state = 70}, + [5902] = {.lex_state = 2298}, + [5903] = {.lex_state = 70}, + [5904] = {.lex_state = 330}, + [5905] = {.lex_state = 70}, + [5906] = {.lex_state = 5548}, + [5907] = {.lex_state = 400}, + [5908] = {.lex_state = 2335}, + [5909] = {.lex_state = 70}, + [5910] = {.lex_state = 70}, + [5911] = {.lex_state = 70}, + [5912] = {.lex_state = 70}, + [5913] = {.lex_state = 307}, + [5914] = {.lex_state = 2335}, + [5915] = {.lex_state = 70}, + [5916] = {.lex_state = 311}, + [5917] = {.lex_state = 363}, + [5918] = {.lex_state = 265}, + [5919] = {.lex_state = 311}, + [5920] = {.lex_state = 343}, + [5921] = {.lex_state = 400}, + [5922] = {.lex_state = 307}, + [5923] = {.lex_state = 343}, + [5924] = {.lex_state = 311}, + [5925] = {.lex_state = 70}, + [5926] = {.lex_state = 2298}, + [5927] = {.lex_state = 70}, + [5928] = {.lex_state = 70}, + [5929] = {.lex_state = 70}, + [5930] = {.lex_state = 287}, + [5931] = {.lex_state = 2298}, + [5932] = {.lex_state = 265}, + [5933] = {.lex_state = 5548}, + [5934] = {.lex_state = 2298}, + [5935] = {.lex_state = 2335}, + [5936] = {.lex_state = 70}, + [5937] = {.lex_state = 70}, + [5938] = {.lex_state = 70}, + [5939] = {.lex_state = 70}, + [5940] = {.lex_state = 5548}, + [5941] = {.lex_state = 369}, + [5942] = {.lex_state = 307}, + [5943] = {.lex_state = 70}, + [5944] = {.lex_state = 70}, + [5945] = {.lex_state = 70}, + [5946] = {.lex_state = 70}, + [5947] = {.lex_state = 265}, + [5948] = {.lex_state = 32}, + [5949] = {.lex_state = 2298}, + [5950] = {.lex_state = 13}, + [5951] = {.lex_state = 2298}, + [5952] = {.lex_state = 363}, + [5953] = {.lex_state = 2298}, + [5954] = {.lex_state = 2298}, + [5955] = {.lex_state = 286}, + [5956] = {.lex_state = 370}, + [5957] = {.lex_state = 363}, + [5958] = {.lex_state = 2298}, + [5959] = {.lex_state = 70}, + [5960] = {.lex_state = 2336}, + [5961] = {.lex_state = 307}, + [5962] = {.lex_state = 307}, + [5963] = {.lex_state = 32, .external_lex_state = 2}, + [5964] = {.lex_state = 70}, + [5965] = {.lex_state = 70}, + [5966] = {.lex_state = 70}, + [5967] = {.lex_state = 70}, + [5968] = {.lex_state = 2335}, + [5969] = {.lex_state = 2335}, + [5970] = {.lex_state = 369}, + [5971] = {.lex_state = 265}, + [5972] = {.lex_state = 2335}, + [5973] = {.lex_state = 294}, + [5974] = {.lex_state = 2335}, + [5975] = {.lex_state = 2298}, + [5976] = {.lex_state = 5548}, + [5977] = {.lex_state = 373}, + [5978] = {.lex_state = 2298}, + [5979] = {.lex_state = 307}, + [5980] = {.lex_state = 373}, + [5981] = {.lex_state = 382}, + [5982] = {.lex_state = 2335}, + [5983] = {.lex_state = 32, .external_lex_state = 2}, + [5984] = {.lex_state = 265}, + [5985] = {.lex_state = 2335}, + [5986] = {.lex_state = 2298}, + [5987] = {.lex_state = 5548}, + [5988] = {.lex_state = 284}, + [5989] = {.lex_state = 284}, + [5990] = {.lex_state = 5548}, + [5991] = {.lex_state = 2298}, + [5992] = {.lex_state = 373}, + [5993] = {.lex_state = 293}, + [5994] = {.lex_state = 284}, + [5995] = {.lex_state = 265}, + [5996] = {.lex_state = 284}, + [5997] = {.lex_state = 311}, + [5998] = {.lex_state = 32}, + [5999] = {.lex_state = 311}, + [6000] = {.lex_state = 2298}, + [6001] = {.lex_state = 5548}, + [6002] = {.lex_state = 265}, + [6003] = {.lex_state = 2335}, + [6004] = {.lex_state = 2335}, + [6005] = {.lex_state = 2335}, + [6006] = {.lex_state = 2263}, + [6007] = {.lex_state = 363}, + [6008] = {.lex_state = 2335}, + [6009] = {.lex_state = 2335}, + [6010] = {.lex_state = 2335}, + [6011] = {.lex_state = 363}, + [6012] = {.lex_state = 13}, + [6013] = {.lex_state = 2298}, + [6014] = {.lex_state = 2335}, + [6015] = {.lex_state = 2263}, + [6016] = {.lex_state = 2263}, + [6017] = {.lex_state = 2263}, + [6018] = {.lex_state = 13}, + [6019] = {.lex_state = 2335}, + [6020] = {.lex_state = 369}, + [6021] = {.lex_state = 2298}, + [6022] = {.lex_state = 313}, + [6023] = {.lex_state = 336}, + [6024] = {.lex_state = 2335}, + [6025] = {.lex_state = 265}, + [6026] = {.lex_state = 2335}, + [6027] = {.lex_state = 13}, + [6028] = {.lex_state = 70}, + [6029] = {.lex_state = 284}, + [6030] = {.lex_state = 32}, + [6031] = {.lex_state = 2298}, + [6032] = {.lex_state = 32}, + [6033] = {.lex_state = 32}, + [6034] = {.lex_state = 32}, + [6035] = {.lex_state = 2265}, + [6036] = {.lex_state = 32}, + [6037] = {.lex_state = 343}, + [6038] = {.lex_state = 32}, + [6039] = {.lex_state = 372}, + [6040] = {.lex_state = 372}, + [6041] = {.lex_state = 2265}, + [6042] = {.lex_state = 2298}, + [6043] = {.lex_state = 32}, + [6044] = {.lex_state = 98}, + [6045] = {.lex_state = 39}, + [6046] = {.lex_state = 32}, + [6047] = {.lex_state = 383}, + [6048] = {.lex_state = 98}, + [6049] = {.lex_state = 2264}, + [6050] = {.lex_state = 343}, + [6051] = {.lex_state = 2265}, + [6052] = {.lex_state = 2265}, + [6053] = {.lex_state = 32}, + [6054] = {.lex_state = 32}, + [6055] = {.lex_state = 2265}, + [6056] = {.lex_state = 2265}, + [6057] = {.lex_state = 2265}, + [6058] = {.lex_state = 2265}, + [6059] = {.lex_state = 2264}, + [6060] = {.lex_state = 2264}, + [6061] = {.lex_state = 2264}, + [6062] = {.lex_state = 2264}, + [6063] = {.lex_state = 2298}, + [6064] = {.lex_state = 98}, + [6065] = {.lex_state = 307}, + [6066] = {.lex_state = 32}, + [6067] = {.lex_state = 98}, + [6068] = {.lex_state = 2265}, + [6069] = {.lex_state = 98}, + [6070] = {.lex_state = 2265}, + [6071] = {.lex_state = 2265}, + [6072] = {.lex_state = 32}, + [6073] = {.lex_state = 2265}, + [6074] = {.lex_state = 2265}, + [6075] = {.lex_state = 2265}, + [6076] = {.lex_state = 409}, + [6077] = {.lex_state = 2298}, + [6078] = {.lex_state = 2265}, + [6079] = {.lex_state = 2265}, + [6080] = {.lex_state = 2265}, + [6081] = {.lex_state = 409}, + [6082] = {.lex_state = 32}, + [6083] = {.lex_state = 2265}, + [6084] = {.lex_state = 2298}, + [6085] = {.lex_state = 289}, + [6086] = {.lex_state = 2265}, + [6087] = {.lex_state = 311}, + [6088] = {.lex_state = 2298}, + [6089] = {.lex_state = 2298}, + [6090] = {.lex_state = 75}, + [6091] = {.lex_state = 307}, + [6092] = {.lex_state = 291}, + [6093] = {.lex_state = 327}, + [6094] = {.lex_state = 307}, + [6095] = {.lex_state = 343}, + [6096] = {.lex_state = 32}, + [6097] = {.lex_state = 371}, + [6098] = {.lex_state = 327}, + [6099] = {.lex_state = 2335}, + [6100] = {.lex_state = 2298}, + [6101] = {.lex_state = 2298}, + [6102] = {.lex_state = 2298}, + [6103] = {.lex_state = 329}, + [6104] = {.lex_state = 372}, + [6105] = {.lex_state = 372}, + [6106] = {.lex_state = 372}, + [6107] = {.lex_state = 2298}, + [6108] = {.lex_state = 372}, + [6109] = {.lex_state = 343}, + [6110] = {.lex_state = 343}, + [6111] = {.lex_state = 409}, + [6112] = {.lex_state = 2298}, + [6113] = {.lex_state = 2298}, + [6114] = {.lex_state = 336}, + [6115] = {.lex_state = 409}, + [6116] = {.lex_state = 307}, + [6117] = {.lex_state = 384}, + [6118] = {.lex_state = 336}, + [6119] = {.lex_state = 336}, + [6120] = {.lex_state = 75}, + [6121] = {.lex_state = 336}, + [6122] = {.lex_state = 409}, + [6123] = {.lex_state = 307}, + [6124] = {.lex_state = 409}, + [6125] = {.lex_state = 307}, + [6126] = {.lex_state = 384}, + [6127] = {.lex_state = 307}, + [6128] = {.lex_state = 409}, + [6129] = {.lex_state = 409}, + [6130] = {.lex_state = 409}, + [6131] = {.lex_state = 2329}, + [6132] = {.lex_state = 409}, + [6133] = {.lex_state = 409}, + [6134] = {.lex_state = 409}, + [6135] = {.lex_state = 32}, + [6136] = {.lex_state = 32}, + [6137] = {.lex_state = 32}, + [6138] = {.lex_state = 409}, + [6139] = {.lex_state = 409}, + [6140] = {.lex_state = 409}, + [6141] = {.lex_state = 2297}, + [6142] = {.lex_state = 409}, + [6143] = {.lex_state = 409}, + [6144] = {.lex_state = 32}, + [6145] = {.lex_state = 343}, + [6146] = {.lex_state = 2264}, + [6147] = {.lex_state = 409}, + [6148] = {.lex_state = 2298}, + [6149] = {.lex_state = 343}, + [6150] = {.lex_state = 409}, + [6151] = {.lex_state = 343}, + [6152] = {.lex_state = 409}, + [6153] = {.lex_state = 409}, + [6154] = {.lex_state = 409}, + [6155] = {.lex_state = 336}, + [6156] = {.lex_state = 409}, + [6157] = {.lex_state = 39}, + [6158] = {.lex_state = 75}, + [6159] = {.lex_state = 409}, + [6160] = {.lex_state = 409}, + [6161] = {.lex_state = 409}, + [6162] = {.lex_state = 2298}, + [6163] = {.lex_state = 32}, + [6164] = {.lex_state = 409}, + [6165] = {.lex_state = 409}, + [6166] = {.lex_state = 409}, + [6167] = {.lex_state = 409}, + [6168] = {.lex_state = 32}, + [6169] = {.lex_state = 32}, + [6170] = {.lex_state = 336}, + [6171] = {.lex_state = 333}, + [6172] = {.lex_state = 32}, + [6173] = {.lex_state = 343}, + [6174] = {.lex_state = 409}, + [6175] = {.lex_state = 409}, + [6176] = {.lex_state = 2298}, + [6177] = {.lex_state = 284}, + [6178] = {.lex_state = 333}, + [6179] = {.lex_state = 2298}, + [6180] = {.lex_state = 2298}, + [6181] = {.lex_state = 32}, + [6182] = {.lex_state = 284}, + [6183] = {.lex_state = 294}, + [6184] = {.lex_state = 2298}, + [6185] = {.lex_state = 32}, + [6186] = {.lex_state = 32}, + [6187] = {.lex_state = 32}, + [6188] = {.lex_state = 32}, + [6189] = {.lex_state = 284}, + [6190] = {.lex_state = 2298}, + [6191] = {.lex_state = 2298}, + [6192] = {.lex_state = 39}, + [6193] = {.lex_state = 287}, + [6194] = {.lex_state = 284}, + [6195] = {.lex_state = 32}, + [6196] = {.lex_state = 32}, + [6197] = {.lex_state = 32}, + [6198] = {.lex_state = 32}, + [6199] = {.lex_state = 2298}, + [6200] = {.lex_state = 2298}, + [6201] = {.lex_state = 2298}, + [6202] = {.lex_state = 2298}, + [6203] = {.lex_state = 2298}, + [6204] = {.lex_state = 2298}, + [6205] = {.lex_state = 2298}, + [6206] = {.lex_state = 2298}, + [6207] = {.lex_state = 2298}, + [6208] = {.lex_state = 2298}, + [6209] = {.lex_state = 2298}, + [6210] = {.lex_state = 2298}, + [6211] = {.lex_state = 2298}, + [6212] = {.lex_state = 2298}, + [6213] = {.lex_state = 2265}, + [6214] = {.lex_state = 2298}, + [6215] = {.lex_state = 2298}, + [6216] = {.lex_state = 2298}, + [6217] = {.lex_state = 2298}, + [6218] = {.lex_state = 2298}, + [6219] = {.lex_state = 2298}, + [6220] = {.lex_state = 2298}, + [6221] = {.lex_state = 2298}, + [6222] = {.lex_state = 2298}, + [6223] = {.lex_state = 2298}, + [6224] = {.lex_state = 2298}, + [6225] = {.lex_state = 2298}, + [6226] = {.lex_state = 2298}, + [6227] = {.lex_state = 2298}, + [6228] = {.lex_state = 2298}, + [6229] = {.lex_state = 2298}, + [6230] = {.lex_state = 2298}, + [6231] = {.lex_state = 2298}, + [6232] = {.lex_state = 2298}, + [6233] = {.lex_state = 409}, + [6234] = {.lex_state = 32}, + [6235] = {.lex_state = 32}, + [6236] = {.lex_state = 32}, + [6237] = {.lex_state = 2335}, + [6238] = {.lex_state = 32}, + [6239] = {.lex_state = 2335}, + [6240] = {.lex_state = 2335}, + [6241] = {.lex_state = 2329}, + [6242] = {.lex_state = 312}, + [6243] = {.lex_state = 75}, + [6244] = {.lex_state = 2298}, + [6245] = {.lex_state = 263}, + [6246] = {.lex_state = 2298}, + [6247] = {.lex_state = 2298}, + [6248] = {.lex_state = 334}, + [6249] = {.lex_state = 390}, + [6250] = {.lex_state = 398}, + [6251] = {.lex_state = 263}, + [6252] = {.lex_state = 265}, + [6253] = {.lex_state = 343}, + [6254] = {.lex_state = 2298}, + [6255] = {.lex_state = 2298}, + [6256] = {.lex_state = 2298}, + [6257] = {.lex_state = 2298}, + [6258] = {.lex_state = 407}, + [6259] = {.lex_state = 32}, + [6260] = {.lex_state = 75}, + [6261] = {.lex_state = 145}, + [6262] = {.lex_state = 263}, + [6263] = {.lex_state = 145}, + [6264] = {.lex_state = 2298}, + [6265] = {.lex_state = 145}, + [6266] = {.lex_state = 145}, + [6267] = {.lex_state = 145}, + [6268] = {.lex_state = 145}, + [6269] = {.lex_state = 145}, + [6270] = {.lex_state = 145}, + [6271] = {.lex_state = 145}, + [6272] = {.lex_state = 145}, + [6273] = {.lex_state = 145}, + [6274] = {.lex_state = 2298}, + [6275] = {.lex_state = 2298}, + [6276] = {.lex_state = 385}, + [6277] = {.lex_state = 2298}, + [6278] = {.lex_state = 2298}, + [6279] = {.lex_state = 336}, + [6280] = {.lex_state = 2298}, + [6281] = {.lex_state = 2298}, + [6282] = {.lex_state = 287}, + [6283] = {.lex_state = 336}, + [6284] = {.lex_state = 2298}, + [6285] = {.lex_state = 2298}, + [6286] = {.lex_state = 2298}, + [6287] = {.lex_state = 385}, + [6288] = {.lex_state = 390}, + [6289] = {.lex_state = 2298}, + [6290] = {.lex_state = 263}, + [6291] = {.lex_state = 2298}, + [6292] = {.lex_state = 2298}, + [6293] = {.lex_state = 2298}, + [6294] = {.lex_state = 263}, + [6295] = {.lex_state = 2298}, + [6296] = {.lex_state = 2298}, + [6297] = {.lex_state = 2298}, + [6298] = {.lex_state = 2298}, + [6299] = {.lex_state = 2298}, + [6300] = {.lex_state = 2298}, + [6301] = {.lex_state = 2298}, + [6302] = {.lex_state = 145}, + [6303] = {.lex_state = 145}, + [6304] = {.lex_state = 145}, + [6305] = {.lex_state = 145}, + [6306] = {.lex_state = 145}, + [6307] = {.lex_state = 145}, + [6308] = {.lex_state = 145}, + [6309] = {.lex_state = 145}, + [6310] = {.lex_state = 2298}, + [6311] = {.lex_state = 2298}, + [6312] = {.lex_state = 385}, + [6313] = {.lex_state = 390}, + [6314] = {.lex_state = 263}, + [6315] = {.lex_state = 2298}, + [6316] = {.lex_state = 2298}, + [6317] = {.lex_state = 385}, + [6318] = {.lex_state = 2298}, + [6319] = {.lex_state = 2298}, + [6320] = {.lex_state = 263}, + [6321] = {.lex_state = 2298}, + [6322] = {.lex_state = 2298}, + [6323] = {.lex_state = 145}, + [6324] = {.lex_state = 385}, + [6325] = {.lex_state = 145}, + [6326] = {.lex_state = 145}, + [6327] = {.lex_state = 145}, + [6328] = {.lex_state = 145}, + [6329] = {.lex_state = 145}, + [6330] = {.lex_state = 145}, + [6331] = {.lex_state = 145}, + [6332] = {.lex_state = 145}, + [6333] = {.lex_state = 385}, + [6334] = {.lex_state = 390}, + [6335] = {.lex_state = 263}, + [6336] = {.lex_state = 2298}, + [6337] = {.lex_state = 145}, + [6338] = {.lex_state = 2298}, + [6339] = {.lex_state = 145}, + [6340] = {.lex_state = 2298}, + [6341] = {.lex_state = 263}, + [6342] = {.lex_state = 2298}, + [6343] = {.lex_state = 385}, + [6344] = {.lex_state = 2298}, + [6345] = {.lex_state = 2298}, + [6346] = {.lex_state = 2298}, + [6347] = {.lex_state = 145}, + [6348] = {.lex_state = 145}, + [6349] = {.lex_state = 145}, + [6350] = {.lex_state = 145}, + [6351] = {.lex_state = 145}, + [6352] = {.lex_state = 145}, + [6353] = {.lex_state = 145}, + [6354] = {.lex_state = 145}, + [6355] = {.lex_state = 2298}, + [6356] = {.lex_state = 2298}, + [6357] = {.lex_state = 390}, + [6358] = {.lex_state = 2298}, + [6359] = {.lex_state = 263}, + [6360] = {.lex_state = 2298}, + [6361] = {.lex_state = 2298}, + [6362] = {.lex_state = 2298}, + [6363] = {.lex_state = 2298}, + [6364] = {.lex_state = 263}, + [6365] = {.lex_state = 407}, + [6366] = {.lex_state = 2298}, + [6367] = {.lex_state = 2298}, + [6368] = {.lex_state = 75}, + [6369] = {.lex_state = 2298}, + [6370] = {.lex_state = 2298}, + [6371] = {.lex_state = 145}, + [6372] = {.lex_state = 145}, + [6373] = {.lex_state = 145}, + [6374] = {.lex_state = 145}, + [6375] = {.lex_state = 145}, + [6376] = {.lex_state = 145}, + [6377] = {.lex_state = 145}, + [6378] = {.lex_state = 145}, + [6379] = {.lex_state = 263}, + [6380] = {.lex_state = 328}, + [6381] = {.lex_state = 390}, + [6382] = {.lex_state = 263}, + [6383] = {.lex_state = 145}, + [6384] = {.lex_state = 390}, + [6385] = {.lex_state = 263}, + [6386] = {.lex_state = 145}, + [6387] = {.lex_state = 2298}, + [6388] = {.lex_state = 404}, + [6389] = {.lex_state = 145}, + [6390] = {.lex_state = 145}, + [6391] = {.lex_state = 145}, + [6392] = {.lex_state = 145}, + [6393] = {.lex_state = 145}, + [6394] = {.lex_state = 145}, + [6395] = {.lex_state = 145}, + [6396] = {.lex_state = 145}, + [6397] = {.lex_state = 145}, + [6398] = {.lex_state = 328}, + [6399] = {.lex_state = 390}, + [6400] = {.lex_state = 343}, + [6401] = {.lex_state = 263}, + [6402] = {.lex_state = 398}, + [6403] = {.lex_state = 2298}, + [6404] = {.lex_state = 328}, + [6405] = {.lex_state = 263}, + [6406] = {.lex_state = 145}, + [6407] = {.lex_state = 263}, + [6408] = {.lex_state = 2298}, + [6409] = {.lex_state = 2298}, + [6410] = {.lex_state = 2298}, + [6411] = {.lex_state = 145}, + [6412] = {.lex_state = 145}, + [6413] = {.lex_state = 145}, + [6414] = {.lex_state = 145}, + [6415] = {.lex_state = 145}, + [6416] = {.lex_state = 145}, + [6417] = {.lex_state = 145}, + [6418] = {.lex_state = 145}, + [6419] = {.lex_state = 2298}, + [6420] = {.lex_state = 390}, + [6421] = {.lex_state = 263}, + [6422] = {.lex_state = 2298}, + [6423] = {.lex_state = 2298}, + [6424] = {.lex_state = 390}, + [6425] = {.lex_state = 2298}, + [6426] = {.lex_state = 263}, + [6427] = {.lex_state = 2298}, + [6428] = {.lex_state = 385}, + [6429] = {.lex_state = 145}, + [6430] = {.lex_state = 145}, + [6431] = {.lex_state = 145}, + [6432] = {.lex_state = 145}, + [6433] = {.lex_state = 145}, + [6434] = {.lex_state = 145}, + [6435] = {.lex_state = 145}, + [6436] = {.lex_state = 145}, + [6437] = {.lex_state = 145}, + [6438] = {.lex_state = 2298}, + [6439] = {.lex_state = 390}, + [6440] = {.lex_state = 263}, + [6441] = {.lex_state = 2298}, + [6442] = {.lex_state = 263}, + [6443] = {.lex_state = 263}, + [6444] = {.lex_state = 331}, + [6445] = {.lex_state = 145}, + [6446] = {.lex_state = 145}, + [6447] = {.lex_state = 145}, + [6448] = {.lex_state = 145}, + [6449] = {.lex_state = 145}, + [6450] = {.lex_state = 145}, + [6451] = {.lex_state = 145}, + [6452] = {.lex_state = 145}, + [6453] = {.lex_state = 403}, + [6454] = {.lex_state = 390}, + [6455] = {.lex_state = 263}, + [6456] = {.lex_state = 145}, + [6457] = {.lex_state = 2298}, + [6458] = {.lex_state = 263}, + [6459] = {.lex_state = 2298}, + [6460] = {.lex_state = 2298}, + [6461] = {.lex_state = 2298}, + [6462] = {.lex_state = 407}, + [6463] = {.lex_state = 2298}, + [6464] = {.lex_state = 145}, + [6465] = {.lex_state = 145}, + [6466] = {.lex_state = 145}, + [6467] = {.lex_state = 145}, + [6468] = {.lex_state = 145}, + [6469] = {.lex_state = 145}, + [6470] = {.lex_state = 145}, + [6471] = {.lex_state = 145}, + [6472] = {.lex_state = 407}, + [6473] = {.lex_state = 390}, + [6474] = {.lex_state = 2298}, + [6475] = {.lex_state = 2298}, + [6476] = {.lex_state = 2298}, + [6477] = {.lex_state = 263}, + [6478] = {.lex_state = 2298}, + [6479] = {.lex_state = 263}, + [6480] = {.lex_state = 386}, + [6481] = {.lex_state = 2298}, + [6482] = {.lex_state = 2298}, + [6483] = {.lex_state = 145}, + [6484] = {.lex_state = 145}, + [6485] = {.lex_state = 145}, + [6486] = {.lex_state = 145}, + [6487] = {.lex_state = 145}, + [6488] = {.lex_state = 145}, + [6489] = {.lex_state = 145}, + [6490] = {.lex_state = 145}, + [6491] = {.lex_state = 343}, + [6492] = {.lex_state = 390}, + [6493] = {.lex_state = 2298}, + [6494] = {.lex_state = 263}, + [6495] = {.lex_state = 390}, + [6496] = {.lex_state = 263}, + [6497] = {.lex_state = 2298}, + [6498] = {.lex_state = 2298}, + [6499] = {.lex_state = 145}, + [6500] = {.lex_state = 145}, + [6501] = {.lex_state = 145}, + [6502] = {.lex_state = 145}, + [6503] = {.lex_state = 145}, + [6504] = {.lex_state = 145}, + [6505] = {.lex_state = 145}, + [6506] = {.lex_state = 145}, + [6507] = {.lex_state = 2298}, + [6508] = {.lex_state = 390}, + [6509] = {.lex_state = 2298}, + [6510] = {.lex_state = 263}, + [6511] = {.lex_state = 145}, + [6512] = {.lex_state = 263}, + [6513] = {.lex_state = 263}, + [6514] = {.lex_state = 145}, + [6515] = {.lex_state = 145}, + [6516] = {.lex_state = 145}, + [6517] = {.lex_state = 145}, + [6518] = {.lex_state = 145}, + [6519] = {.lex_state = 145}, + [6520] = {.lex_state = 145}, + [6521] = {.lex_state = 145}, + [6522] = {.lex_state = 2298}, + [6523] = {.lex_state = 390}, + [6524] = {.lex_state = 2298}, + [6525] = {.lex_state = 263}, + [6526] = {.lex_state = 263}, + [6527] = {.lex_state = 2298}, + [6528] = {.lex_state = 145}, + [6529] = {.lex_state = 145}, + [6530] = {.lex_state = 145}, + [6531] = {.lex_state = 145}, + [6532] = {.lex_state = 145}, + [6533] = {.lex_state = 145}, + [6534] = {.lex_state = 145}, + [6535] = {.lex_state = 145}, + [6536] = {.lex_state = 145}, + [6537] = {.lex_state = 390}, + [6538] = {.lex_state = 263}, + [6539] = {.lex_state = 263}, + [6540] = {.lex_state = 145}, + [6541] = {.lex_state = 145}, + [6542] = {.lex_state = 145}, + [6543] = {.lex_state = 145}, + [6544] = {.lex_state = 145}, + [6545] = {.lex_state = 145}, + [6546] = {.lex_state = 145}, + [6547] = {.lex_state = 145}, + [6548] = {.lex_state = 145}, + [6549] = {.lex_state = 390}, + [6550] = {.lex_state = 263}, + [6551] = {.lex_state = 263}, + [6552] = {.lex_state = 145}, + [6553] = {.lex_state = 145}, + [6554] = {.lex_state = 145}, + [6555] = {.lex_state = 145}, + [6556] = {.lex_state = 145}, + [6557] = {.lex_state = 145}, + [6558] = {.lex_state = 145}, + [6559] = {.lex_state = 145}, + [6560] = {.lex_state = 390}, + [6561] = {.lex_state = 263}, + [6562] = {.lex_state = 263}, + [6563] = {.lex_state = 390}, + [6564] = {.lex_state = 263}, + [6565] = {.lex_state = 2298}, + [6566] = {.lex_state = 263}, + [6567] = {.lex_state = 390}, + [6568] = {.lex_state = 263}, + [6569] = {.lex_state = 263}, + [6570] = {.lex_state = 390}, + [6571] = {.lex_state = 263}, + [6572] = {.lex_state = 263}, + [6573] = {.lex_state = 390}, + [6574] = {.lex_state = 263}, + [6575] = {.lex_state = 263}, + [6576] = {.lex_state = 390}, + [6577] = {.lex_state = 263}, + [6578] = {.lex_state = 263}, + [6579] = {.lex_state = 390}, + [6580] = {.lex_state = 263}, + [6581] = {.lex_state = 263}, + [6582] = {.lex_state = 2298}, + [6583] = {.lex_state = 390}, + [6584] = {.lex_state = 263}, + [6585] = {.lex_state = 263}, + [6586] = {.lex_state = 145}, + [6587] = {.lex_state = 390}, + [6588] = {.lex_state = 263}, + [6589] = {.lex_state = 263}, + [6590] = {.lex_state = 390}, + [6591] = {.lex_state = 263}, + [6592] = {.lex_state = 263}, + [6593] = {.lex_state = 390}, + [6594] = {.lex_state = 263}, + [6595] = {.lex_state = 263}, + [6596] = {.lex_state = 390}, + [6597] = {.lex_state = 263}, + [6598] = {.lex_state = 263}, + [6599] = {.lex_state = 145}, + [6600] = {.lex_state = 390}, + [6601] = {.lex_state = 263}, + [6602] = {.lex_state = 263}, + [6603] = {.lex_state = 2298}, + [6604] = {.lex_state = 390}, + [6605] = {.lex_state = 263}, + [6606] = {.lex_state = 263}, + [6607] = {.lex_state = 2298}, + [6608] = {.lex_state = 390}, + [6609] = {.lex_state = 263}, + [6610] = {.lex_state = 263}, + [6611] = {.lex_state = 390}, + [6612] = {.lex_state = 263}, + [6613] = {.lex_state = 263}, + [6614] = {.lex_state = 390}, + [6615] = {.lex_state = 263}, + [6616] = {.lex_state = 263}, + [6617] = {.lex_state = 390}, + [6618] = {.lex_state = 263}, + [6619] = {.lex_state = 263}, + [6620] = {.lex_state = 390}, + [6621] = {.lex_state = 263}, + [6622] = {.lex_state = 263}, + [6623] = {.lex_state = 390}, + [6624] = {.lex_state = 263}, + [6625] = {.lex_state = 263}, + [6626] = {.lex_state = 390}, + [6627] = {.lex_state = 263}, + [6628] = {.lex_state = 263}, + [6629] = {.lex_state = 390}, + [6630] = {.lex_state = 263}, + [6631] = {.lex_state = 263}, + [6632] = {.lex_state = 390}, + [6633] = {.lex_state = 263}, + [6634] = {.lex_state = 263}, + [6635] = {.lex_state = 390}, + [6636] = {.lex_state = 263}, + [6637] = {.lex_state = 263}, + [6638] = {.lex_state = 390}, + [6639] = {.lex_state = 263}, + [6640] = {.lex_state = 263}, + [6641] = {.lex_state = 390}, + [6642] = {.lex_state = 263}, + [6643] = {.lex_state = 263}, + [6644] = {.lex_state = 390}, + [6645] = {.lex_state = 263}, + [6646] = {.lex_state = 263}, + [6647] = {.lex_state = 390}, + [6648] = {.lex_state = 263}, + [6649] = {.lex_state = 263}, + [6650] = {.lex_state = 263}, + [6651] = {.lex_state = 263}, + [6652] = {.lex_state = 263}, + [6653] = {.lex_state = 263}, + [6654] = {.lex_state = 263}, + [6655] = {.lex_state = 263}, + [6656] = {.lex_state = 2298}, + [6657] = {.lex_state = 390}, + [6658] = {.lex_state = 2298}, + [6659] = {.lex_state = 2298}, + [6660] = {.lex_state = 145}, + [6661] = {.lex_state = 2298}, + [6662] = {.lex_state = 2298}, + [6663] = {.lex_state = 2298}, + [6664] = {.lex_state = 2264}, + [6665] = {.lex_state = 263}, + [6666] = {.lex_state = 334}, + [6667] = {.lex_state = 2298}, + [6668] = {.lex_state = 2298}, + [6669] = {.lex_state = 2298}, + [6670] = {.lex_state = 2298}, + [6671] = {.lex_state = 2298}, + [6672] = {.lex_state = 81}, + [6673] = {.lex_state = 334}, + [6674] = {.lex_state = 2298}, + [6675] = {.lex_state = 2298}, + [6676] = {.lex_state = 2298}, + [6677] = {.lex_state = 2298}, + [6678] = {.lex_state = 2298}, + [6679] = {.lex_state = 398}, + [6680] = {.lex_state = 265}, + [6681] = {.lex_state = 2298}, + [6682] = {.lex_state = 398}, + [6683] = {.lex_state = 334}, + [6684] = {.lex_state = 2298}, + [6685] = {.lex_state = 334}, + [6686] = {.lex_state = 2265}, + [6687] = {.lex_state = 2298}, + [6688] = {.lex_state = 331}, + [6689] = {.lex_state = 2298}, + [6690] = {.lex_state = 341}, + [6691] = {.lex_state = 2298}, + [6692] = {.lex_state = 2298}, + [6693] = {.lex_state = 2298}, + [6694] = {.lex_state = 311}, + [6695] = {.lex_state = 385}, + [6696] = {.lex_state = 328}, + [6697] = {.lex_state = 2298}, + [6698] = {.lex_state = 265}, + [6699] = {.lex_state = 2298}, + [6700] = {.lex_state = 311}, + [6701] = {.lex_state = 2298}, + [6702] = {.lex_state = 145}, + [6703] = {.lex_state = 145}, + [6704] = {.lex_state = 2298}, + [6705] = {.lex_state = 2298}, + [6706] = {.lex_state = 2298}, + [6707] = {.lex_state = 2298}, + [6708] = {.lex_state = 2298}, + [6709] = {.lex_state = 2298}, + [6710] = {.lex_state = 390}, + [6711] = {.lex_state = 390}, + [6712] = {.lex_state = 2298}, + [6713] = {.lex_state = 2298}, + [6714] = {.lex_state = 2298}, + [6715] = {.lex_state = 2298}, + [6716] = {.lex_state = 404}, + [6717] = {.lex_state = 398}, + [6718] = {.lex_state = 2298}, + [6719] = {.lex_state = 2298}, + [6720] = {.lex_state = 2298}, + [6721] = {.lex_state = 2298}, + [6722] = {.lex_state = 334}, + [6723] = {.lex_state = 2298}, + [6724] = {.lex_state = 328}, + [6725] = {.lex_state = 2298}, + [6726] = {.lex_state = 2298}, + [6727] = {.lex_state = 385}, + [6728] = {.lex_state = 145}, + [6729] = {.lex_state = 328}, + [6730] = {.lex_state = 2298}, + [6731] = {.lex_state = 2298}, + [6732] = {.lex_state = 2264}, + [6733] = {.lex_state = 2298}, + [6734] = {.lex_state = 2298}, + [6735] = {.lex_state = 2298}, + [6736] = {.lex_state = 2298}, + [6737] = {.lex_state = 145}, + [6738] = {.lex_state = 145}, + [6739] = {.lex_state = 2298}, + [6740] = {.lex_state = 284}, + [6741] = {.lex_state = 145}, + [6742] = {.lex_state = 145}, + [6743] = {.lex_state = 284}, + [6744] = {.lex_state = 2298}, + [6745] = {.lex_state = 2298}, + [6746] = {.lex_state = 2298}, + [6747] = {.lex_state = 2298}, + [6748] = {.lex_state = 404}, + [6749] = {.lex_state = 407}, + [6750] = {.lex_state = 145}, + [6751] = {.lex_state = 328}, + [6752] = {.lex_state = 2298}, + [6753] = {.lex_state = 403}, + [6754] = {.lex_state = 2298}, + [6755] = {.lex_state = 2298}, + [6756] = {.lex_state = 334}, + [6757] = {.lex_state = 2298}, + [6758] = {.lex_state = 334}, + [6759] = {.lex_state = 2298}, + [6760] = {.lex_state = 145}, + [6761] = {.lex_state = 145}, + [6762] = {.lex_state = 145}, + [6763] = {.lex_state = 304}, + [6764] = {.lex_state = 2298}, + [6765] = {.lex_state = 263}, + [6766] = {.lex_state = 328}, + [6767] = {.lex_state = 403}, + [6768] = {.lex_state = 2298}, + [6769] = {.lex_state = 2298}, + [6770] = {.lex_state = 403}, + [6771] = {.lex_state = 145}, + [6772] = {.lex_state = 2298}, + [6773] = {.lex_state = 145}, + [6774] = {.lex_state = 2298}, + [6775] = {.lex_state = 2298}, + [6776] = {.lex_state = 386}, + [6777] = {.lex_state = 403}, + [6778] = {.lex_state = 2298}, + [6779] = {.lex_state = 145}, + [6780] = {.lex_state = 334}, + [6781] = {.lex_state = 146}, + [6782] = {.lex_state = 145}, + [6783] = {.lex_state = 43}, + [6784] = {.lex_state = 404}, + [6785] = {.lex_state = 404}, + [6786] = {.lex_state = 2298}, + [6787] = {.lex_state = 2298}, + [6788] = {.lex_state = 2298}, + [6789] = {.lex_state = 2298}, + [6790] = {.lex_state = 2298}, + [6791] = {.lex_state = 2298}, + [6792] = {.lex_state = 328}, + [6793] = {.lex_state = 2298}, + [6794] = {.lex_state = 2298}, + [6795] = {.lex_state = 2298}, + [6796] = {.lex_state = 2298}, + [6797] = {.lex_state = 2298}, + [6798] = {.lex_state = 2298}, + [6799] = {.lex_state = 145}, + [6800] = {.lex_state = 311}, + [6801] = {.lex_state = 2298}, + [6802] = {.lex_state = 2298}, + [6803] = {.lex_state = 2298}, + [6804] = {.lex_state = 2298}, + [6805] = {.lex_state = 2298}, + [6806] = {.lex_state = 2298}, + [6807] = {.lex_state = 2298}, + [6808] = {.lex_state = 2263}, + [6809] = {.lex_state = 2263}, + [6810] = {.lex_state = 2298}, + [6811] = {.lex_state = 2298}, + [6812] = {.lex_state = 2298}, + [6813] = {.lex_state = 145}, + [6814] = {.lex_state = 336}, + [6815] = {.lex_state = 2298}, + [6816] = {.lex_state = 80}, + [6817] = {.lex_state = 32}, + [6818] = {.lex_state = 2298}, + [6819] = {.lex_state = 145}, + [6820] = {.lex_state = 2298}, + [6821] = {.lex_state = 145}, + [6822] = {.lex_state = 145}, + [6823] = {.lex_state = 145}, + [6824] = {.lex_state = 145}, + [6825] = {.lex_state = 387}, + [6826] = {.lex_state = 145}, + [6827] = {.lex_state = 145}, + [6828] = {.lex_state = 2298}, + [6829] = {.lex_state = 145}, + [6830] = {.lex_state = 145}, + [6831] = {.lex_state = 2298}, + [6832] = {.lex_state = 2298}, + [6833] = {.lex_state = 2298}, + [6834] = {.lex_state = 2298}, + [6835] = {.lex_state = 13}, + [6836] = {.lex_state = 2298}, + [6837] = {.lex_state = 2298}, + [6838] = {.lex_state = 145}, + [6839] = {.lex_state = 405}, + [6840] = {.lex_state = 334}, + [6841] = {.lex_state = 145}, + [6842] = {.lex_state = 335}, + [6843] = {.lex_state = 405}, + [6844] = {.lex_state = 145}, + [6845] = {.lex_state = 2294}, + [6846] = {.lex_state = 145}, + [6847] = {.lex_state = 402}, + [6848] = {.lex_state = 335}, + [6849] = {.lex_state = 145}, + [6850] = {.lex_state = 145}, + [6851] = {.lex_state = 145}, + [6852] = {.lex_state = 145}, + [6853] = {.lex_state = 145}, + [6854] = {.lex_state = 145}, + [6855] = {.lex_state = 145}, + [6856] = {.lex_state = 145}, + [6857] = {.lex_state = 399}, + [6858] = {.lex_state = 145}, + [6859] = {.lex_state = 145}, + [6860] = {.lex_state = 145}, + [6861] = {.lex_state = 2298}, + [6862] = {.lex_state = 2298}, + [6863] = {.lex_state = 145}, + [6864] = {.lex_state = 2298}, + [6865] = {.lex_state = 2298}, + [6866] = {.lex_state = 335}, + [6867] = {.lex_state = 2298}, + [6868] = {.lex_state = 2298}, + [6869] = {.lex_state = 145}, + [6870] = {.lex_state = 402}, + [6871] = {.lex_state = 335}, + [6872] = {.lex_state = 335}, + [6873] = {.lex_state = 145}, + [6874] = {.lex_state = 2298}, + [6875] = {.lex_state = 145}, + [6876] = {.lex_state = 145}, + [6877] = {.lex_state = 145}, + [6878] = {.lex_state = 145}, + [6879] = {.lex_state = 145}, + [6880] = {.lex_state = 2298}, + [6881] = {.lex_state = 145}, + [6882] = {.lex_state = 145}, + [6883] = {.lex_state = 145}, + [6884] = {.lex_state = 145}, + [6885] = {.lex_state = 2297}, + [6886] = {.lex_state = 2298}, + [6887] = {.lex_state = 145}, + [6888] = {.lex_state = 145}, + [6889] = {.lex_state = 263}, + [6890] = {.lex_state = 405}, + [6891] = {.lex_state = 145}, + [6892] = {.lex_state = 335}, + [6893] = {.lex_state = 408}, + [6894] = {.lex_state = 2298}, + [6895] = {.lex_state = 145}, + [6896] = {.lex_state = 335}, + [6897] = {.lex_state = 2297}, + [6898] = {.lex_state = 145}, + [6899] = {.lex_state = 145}, + [6900] = {.lex_state = 145}, + [6901] = {.lex_state = 145}, + [6902] = {.lex_state = 145}, + [6903] = {.lex_state = 145}, + [6904] = {.lex_state = 145}, + [6905] = {.lex_state = 335}, + [6906] = {.lex_state = 145}, + [6907] = {.lex_state = 145}, + [6908] = {.lex_state = 2298}, + [6909] = {.lex_state = 2298}, + [6910] = {.lex_state = 2298}, + [6911] = {.lex_state = 2298}, + [6912] = {.lex_state = 145}, + [6913] = {.lex_state = 2297}, + [6914] = {.lex_state = 145}, + [6915] = {.lex_state = 335}, + [6916] = {.lex_state = 2298}, + [6917] = {.lex_state = 145}, + [6918] = {.lex_state = 2297}, + [6919] = {.lex_state = 335}, + [6920] = {.lex_state = 2298}, + [6921] = {.lex_state = 145}, + [6922] = {.lex_state = 2298}, + [6923] = {.lex_state = 84}, + [6924] = {.lex_state = 145}, + [6925] = {.lex_state = 145}, + [6926] = {.lex_state = 145}, + [6927] = {.lex_state = 387}, + [6928] = {.lex_state = 145}, + [6929] = {.lex_state = 2298}, + [6930] = {.lex_state = 145}, + [6931] = {.lex_state = 145}, + [6932] = {.lex_state = 145}, + [6933] = {.lex_state = 145}, + [6934] = {.lex_state = 2298}, + [6935] = {.lex_state = 145}, + [6936] = {.lex_state = 387}, + [6937] = {.lex_state = 39}, + [6938] = {.lex_state = 2297}, + [6939] = {.lex_state = 335}, + [6940] = {.lex_state = 402}, + [6941] = {.lex_state = 332}, + [6942] = {.lex_state = 2297}, + [6943] = {.lex_state = 335}, + [6944] = {.lex_state = 2297}, + [6945] = {.lex_state = 145}, + [6946] = {.lex_state = 145}, + [6947] = {.lex_state = 145}, + [6948] = {.lex_state = 145}, + [6949] = {.lex_state = 145}, + [6950] = {.lex_state = 145}, + [6951] = {.lex_state = 335}, + [6952] = {.lex_state = 145}, + [6953] = {.lex_state = 145}, + [6954] = {.lex_state = 2298}, + [6955] = {.lex_state = 2297}, + [6956] = {.lex_state = 145}, + [6957] = {.lex_state = 145}, + [6958] = {.lex_state = 2298}, + [6959] = {.lex_state = 2298}, + [6960] = {.lex_state = 145}, + [6961] = {.lex_state = 2298}, + [6962] = {.lex_state = 335}, + [6963] = {.lex_state = 2298}, + [6964] = {.lex_state = 2298}, + [6965] = {.lex_state = 2298}, + [6966] = {.lex_state = 335}, + [6967] = {.lex_state = 145}, + [6968] = {.lex_state = 2297}, + [6969] = {.lex_state = 2298}, + [6970] = {.lex_state = 145}, + [6971] = {.lex_state = 145}, + [6972] = {.lex_state = 145}, + [6973] = {.lex_state = 145}, + [6974] = {.lex_state = 84}, + [6975] = {.lex_state = 380}, + [6976] = {.lex_state = 145}, + [6977] = {.lex_state = 145}, + [6978] = {.lex_state = 2298}, + [6979] = {.lex_state = 145}, + [6980] = {.lex_state = 2298}, + [6981] = {.lex_state = 2298}, + [6982] = {.lex_state = 2298}, + [6983] = {.lex_state = 405}, + [6984] = {.lex_state = 2298}, + [6985] = {.lex_state = 145}, + [6986] = {.lex_state = 145}, + [6987] = {.lex_state = 335}, + [6988] = {.lex_state = 2298}, + [6989] = {.lex_state = 2298}, + [6990] = {.lex_state = 408}, + [6991] = {.lex_state = 379}, + [6992] = {.lex_state = 335}, + [6993] = {.lex_state = 332}, + [6994] = {.lex_state = 145}, + [6995] = {.lex_state = 2298}, + [6996] = {.lex_state = 145}, + [6997] = {.lex_state = 145}, + [6998] = {.lex_state = 145}, + [6999] = {.lex_state = 2298}, + [7000] = {.lex_state = 145}, + [7001] = {.lex_state = 145}, + [7002] = {.lex_state = 145}, + [7003] = {.lex_state = 145}, + [7004] = {.lex_state = 2298}, + [7005] = {.lex_state = 2298}, + [7006] = {.lex_state = 145}, + [7007] = {.lex_state = 2298}, + [7008] = {.lex_state = 2298}, + [7009] = {.lex_state = 2298}, + [7010] = {.lex_state = 2298}, + [7011] = {.lex_state = 335}, + [7012] = {.lex_state = 2298}, + [7013] = {.lex_state = 2298}, + [7014] = {.lex_state = 2298}, + [7015] = {.lex_state = 335}, + [7016] = {.lex_state = 145}, + [7017] = {.lex_state = 2298}, + [7018] = {.lex_state = 145}, + [7019] = {.lex_state = 145}, + [7020] = {.lex_state = 145}, + [7021] = {.lex_state = 2298}, + [7022] = {.lex_state = 145}, + [7023] = {.lex_state = 399}, + [7024] = {.lex_state = 145}, + [7025] = {.lex_state = 145}, + [7026] = {.lex_state = 2298}, + [7027] = {.lex_state = 145}, + [7028] = {.lex_state = 2298}, + [7029] = {.lex_state = 2297}, + [7030] = {.lex_state = 145}, + [7031] = {.lex_state = 145}, + [7032] = {.lex_state = 145}, + [7033] = {.lex_state = 145}, + [7034] = {.lex_state = 145}, + [7035] = {.lex_state = 335}, + [7036] = {.lex_state = 2298}, + [7037] = {.lex_state = 335}, + [7038] = {.lex_state = 335}, + [7039] = {.lex_state = 145}, + [7040] = {.lex_state = 2298}, + [7041] = {.lex_state = 145}, + [7042] = {.lex_state = 145}, + [7043] = {.lex_state = 145}, + [7044] = {.lex_state = 145}, + [7045] = {.lex_state = 205}, + [7046] = {.lex_state = 2298}, + [7047] = {.lex_state = 145}, + [7048] = {.lex_state = 145}, + [7049] = {.lex_state = 2298}, + [7050] = {.lex_state = 145}, + [7051] = {.lex_state = 335}, + [7052] = {.lex_state = 145}, + [7053] = {.lex_state = 335}, + [7054] = {.lex_state = 145}, + [7055] = {.lex_state = 145}, + [7056] = {.lex_state = 145}, + [7057] = {.lex_state = 145}, + [7058] = {.lex_state = 145}, + [7059] = {.lex_state = 145}, + [7060] = {.lex_state = 2298}, + [7061] = {.lex_state = 145}, + [7062] = {.lex_state = 145}, + [7063] = {.lex_state = 2276}, + [7064] = {.lex_state = 39}, + [7065] = {.lex_state = 145}, + [7066] = {.lex_state = 145}, + [7067] = {.lex_state = 2298}, + [7068] = {.lex_state = 2298}, + [7069] = {.lex_state = 2298}, + [7070] = {.lex_state = 2298}, + [7071] = {.lex_state = 2298}, + [7072] = {.lex_state = 335}, + [7073] = {.lex_state = 2298}, + [7074] = {.lex_state = 335}, + [7075] = {.lex_state = 145}, + [7076] = {.lex_state = 2298}, + [7077] = {.lex_state = 2298}, + [7078] = {.lex_state = 145}, + [7079] = {.lex_state = 145}, + [7080] = {.lex_state = 145}, + [7081] = {.lex_state = 145}, + [7082] = {.lex_state = 145}, + [7083] = {.lex_state = 145}, + [7084] = {.lex_state = 145}, + [7085] = {.lex_state = 2298}, + [7086] = {.lex_state = 145}, + [7087] = {.lex_state = 145}, + [7088] = {.lex_state = 284}, + [7089] = {.lex_state = 145}, + [7090] = {.lex_state = 409}, + [7091] = {.lex_state = 145}, + [7092] = {.lex_state = 145}, + [7093] = {.lex_state = 145}, + [7094] = {.lex_state = 145}, + [7095] = {.lex_state = 145}, + [7096] = {.lex_state = 145}, + [7097] = {.lex_state = 145}, + [7098] = {.lex_state = 13}, + [7099] = {.lex_state = 145}, + [7100] = {.lex_state = 145}, + [7101] = {.lex_state = 145}, + [7102] = {.lex_state = 2298}, + [7103] = {.lex_state = 145}, + [7104] = {.lex_state = 145}, + [7105] = {.lex_state = 2298}, + [7106] = {.lex_state = 145}, + [7107] = {.lex_state = 145}, + [7108] = {.lex_state = 145}, + [7109] = {.lex_state = 145}, + [7110] = {.lex_state = 145}, + [7111] = {.lex_state = 145}, + [7112] = {.lex_state = 145}, + [7113] = {.lex_state = 145}, + [7114] = {.lex_state = 145}, + [7115] = {.lex_state = 387}, + [7116] = {.lex_state = 2298}, + [7117] = {.lex_state = 145}, + [7118] = {.lex_state = 145}, + [7119] = {.lex_state = 145}, + [7120] = {.lex_state = 145}, + [7121] = {.lex_state = 145}, + [7122] = {.lex_state = 2298}, + [7123] = {.lex_state = 145}, + [7124] = {.lex_state = 2298}, + [7125] = {.lex_state = 145}, + [7126] = {.lex_state = 145}, + [7127] = {.lex_state = 2298}, + [7128] = {.lex_state = 145}, + [7129] = {.lex_state = 2298}, + [7130] = {.lex_state = 2298}, + [7131] = {.lex_state = 2298}, + [7132] = {.lex_state = 2298}, + [7133] = {.lex_state = 335}, + [7134] = {.lex_state = 2298}, + [7135] = {.lex_state = 2298}, + [7136] = {.lex_state = 2298}, + [7137] = {.lex_state = 2298}, + [7138] = {.lex_state = 145}, + [7139] = {.lex_state = 145}, + [7140] = {.lex_state = 2298}, + [7141] = {.lex_state = 2298}, + [7142] = {.lex_state = 145}, + [7143] = {.lex_state = 2298}, + [7144] = {.lex_state = 2298}, + [7145] = {.lex_state = 335}, + [7146] = {.lex_state = 2298}, + [7147] = {.lex_state = 145}, + [7148] = {.lex_state = 145}, + [7149] = {.lex_state = 145}, + [7150] = {.lex_state = 2298}, + [7151] = {.lex_state = 332}, + [7152] = {.lex_state = 13}, + [7153] = {.lex_state = 402}, + [7154] = {.lex_state = 230}, + [7155] = {.lex_state = 84}, + [7156] = {.lex_state = 2298}, + [7157] = {.lex_state = 145}, + [7158] = {.lex_state = 2298}, + [7159] = {.lex_state = 332}, + [7160] = {.lex_state = 145}, + [7161] = {.lex_state = 387}, + [7162] = {.lex_state = 230}, + [7163] = {.lex_state = 387}, + [7164] = {.lex_state = 145}, + [7165] = {.lex_state = 2298}, + [7166] = {.lex_state = 145}, + [7167] = {.lex_state = 145}, + [7168] = {.lex_state = 145}, + [7169] = {.lex_state = 2298}, + [7170] = {.lex_state = 145}, + [7171] = {.lex_state = 145}, + [7172] = {.lex_state = 2298}, + [7173] = {.lex_state = 145}, + [7174] = {.lex_state = 2298}, + [7175] = {.lex_state = 2298}, + [7176] = {.lex_state = 145}, + [7177] = {.lex_state = 145}, + [7178] = {.lex_state = 2298}, + [7179] = {.lex_state = 2298}, + [7180] = {.lex_state = 145}, + [7181] = {.lex_state = 2298}, + [7182] = {.lex_state = 145}, + [7183] = {.lex_state = 145}, + [7184] = {.lex_state = 145}, + [7185] = {.lex_state = 2298}, + [7186] = {.lex_state = 145}, + [7187] = {.lex_state = 145}, + [7188] = {.lex_state = 145}, + [7189] = {.lex_state = 2298}, + [7190] = {.lex_state = 2298}, + [7191] = {.lex_state = 2298}, + [7192] = {.lex_state = 145}, + [7193] = {.lex_state = 2298}, + [7194] = {.lex_state = 2298}, + [7195] = {.lex_state = 2298}, + [7196] = {.lex_state = 230}, + [7197] = {.lex_state = 387}, + [7198] = {.lex_state = 305}, + [7199] = {.lex_state = 401}, + [7200] = {.lex_state = 402}, + [7201] = {.lex_state = 328}, + [7202] = {.lex_state = 205}, + [7203] = {.lex_state = 2298}, + [7204] = {.lex_state = 145}, + [7205] = {.lex_state = 401}, + [7206] = {.lex_state = 205}, + [7207] = {.lex_state = 409}, + [7208] = {.lex_state = 226}, + [7209] = {.lex_state = 226}, + [7210] = {.lex_state = 387}, + [7211] = {.lex_state = 335}, + [7212] = {.lex_state = 226}, + [7213] = {.lex_state = 2298}, + [7214] = {.lex_state = 145}, + [7215] = {.lex_state = 205}, + [7216] = {.lex_state = 145}, + [7217] = {.lex_state = 145}, + [7218] = {.lex_state = 145}, + [7219] = {.lex_state = 2298}, + [7220] = {.lex_state = 205}, + [7221] = {.lex_state = 145}, + [7222] = {.lex_state = 84}, + [7223] = {.lex_state = 2298}, + [7224] = {.lex_state = 145}, + [7225] = {.lex_state = 387}, + [7226] = {.lex_state = 2298}, + [7227] = {.lex_state = 145}, + [7228] = {.lex_state = 335}, + [7229] = {.lex_state = 2298}, + [7230] = {.lex_state = 2298}, + [7231] = {.lex_state = 155}, + [7232] = {.lex_state = 2298}, + [7233] = {.lex_state = 2298}, + [7234] = {.lex_state = 2298}, + [7235] = {.lex_state = 155}, + [7236] = {.lex_state = 145}, + [7237] = {.lex_state = 145}, + [7238] = {.lex_state = 2297}, + [7239] = {.lex_state = 2298}, + [7240] = {.lex_state = 145}, + [7241] = {.lex_state = 145}, + [7242] = {.lex_state = 84}, + [7243] = {.lex_state = 145}, + [7244] = {.lex_state = 145}, + [7245] = {.lex_state = 2298}, + [7246] = {.lex_state = 2298}, + [7247] = {.lex_state = 145}, + [7248] = {.lex_state = 2298}, + [7249] = {.lex_state = 2298}, + [7250] = {.lex_state = 145}, + [7251] = {.lex_state = 402}, + [7252] = {.lex_state = 2298}, + [7253] = {.lex_state = 145}, + [7254] = {.lex_state = 145}, + [7255] = {.lex_state = 2298}, + [7256] = {.lex_state = 2298}, + [7257] = {.lex_state = 284}, + [7258] = {.lex_state = 335}, + [7259] = {.lex_state = 145}, + [7260] = {.lex_state = 145}, + [7261] = {.lex_state = 2298}, + [7262] = {.lex_state = 145}, + [7263] = {.lex_state = 2298}, + [7264] = {.lex_state = 335}, + [7265] = {.lex_state = 205}, + [7266] = {.lex_state = 409}, + [7267] = {.lex_state = 2298}, + [7268] = {.lex_state = 205}, + [7269] = {.lex_state = 145}, + [7270] = {.lex_state = 145}, + [7271] = {.lex_state = 145}, + [7272] = {.lex_state = 2298}, + [7273] = {.lex_state = 83}, + [7274] = {.lex_state = 2298}, + [7275] = {.lex_state = 2298}, + [7276] = {.lex_state = 205}, + [7277] = {.lex_state = 2298}, + [7278] = {.lex_state = 2297}, + [7279] = {.lex_state = 2298}, + [7280] = {.lex_state = 145}, + [7281] = {.lex_state = 13}, + [7282] = {.lex_state = 2298}, + [7283] = {.lex_state = 2276}, + [7284] = {.lex_state = 145}, + [7285] = {.lex_state = 2298}, + [7286] = {.lex_state = 145}, + [7287] = {.lex_state = 145}, + [7288] = {.lex_state = 145}, + [7289] = {.lex_state = 145}, + [7290] = {.lex_state = 145}, + [7291] = {.lex_state = 145}, + [7292] = {.lex_state = 2298}, + [7293] = {.lex_state = 84}, + [7294] = {.lex_state = 145}, + [7295] = {.lex_state = 2294}, + [7296] = {.lex_state = 145}, + [7297] = {.lex_state = 2298}, + [7298] = {.lex_state = 205}, + [7299] = {.lex_state = 2298}, + [7300] = {.lex_state = 145}, + [7301] = {.lex_state = 205}, + [7302] = {.lex_state = 2298}, + [7303] = {.lex_state = 2298}, + [7304] = {.lex_state = 2298}, + [7305] = {.lex_state = 2298}, + [7306] = {.lex_state = 2298}, + [7307] = {.lex_state = 2298}, + [7308] = {.lex_state = 2298}, + [7309] = {.lex_state = 387}, + [7310] = {.lex_state = 205}, + [7311] = {.lex_state = 145}, + [7312] = {.lex_state = 205}, + [7313] = {.lex_state = 145}, + [7314] = {.lex_state = 2298}, + [7315] = {.lex_state = 2298}, + [7316] = {.lex_state = 2298}, + [7317] = {.lex_state = 2298}, + [7318] = {.lex_state = 2298}, + [7319] = {.lex_state = 205}, + [7320] = {.lex_state = 205}, + [7321] = {.lex_state = 286}, + [7322] = {.lex_state = 145}, + [7323] = {.lex_state = 2298}, + [7324] = {.lex_state = 2298}, + [7325] = {.lex_state = 2298}, + [7326] = {.lex_state = 2298}, + [7327] = {.lex_state = 2298}, + [7328] = {.lex_state = 205}, + [7329] = {.lex_state = 2298}, + [7330] = {.lex_state = 145}, + [7331] = {.lex_state = 205}, + [7332] = {.lex_state = 226}, + [7333] = {.lex_state = 2298}, + [7334] = {.lex_state = 2298}, + [7335] = {.lex_state = 2298}, + [7336] = {.lex_state = 2298}, + [7337] = {.lex_state = 205}, + [7338] = {.lex_state = 2298}, + [7339] = {.lex_state = 145}, + [7340] = {.lex_state = 205}, + [7341] = {.lex_state = 2298}, + [7342] = {.lex_state = 2298}, + [7343] = {.lex_state = 2298}, + [7344] = {.lex_state = 2298}, + [7345] = {.lex_state = 205}, + [7346] = {.lex_state = 2298}, + [7347] = {.lex_state = 205}, + [7348] = {.lex_state = 399}, + [7349] = {.lex_state = 2297}, + [7350] = {.lex_state = 2298}, + [7351] = {.lex_state = 2298}, + [7352] = {.lex_state = 2298}, + [7353] = {.lex_state = 2298}, + [7354] = {.lex_state = 205}, + [7355] = {.lex_state = 205}, + [7356] = {.lex_state = 2298}, + [7357] = {.lex_state = 2298}, + [7358] = {.lex_state = 401}, + [7359] = {.lex_state = 2298}, + [7360] = {.lex_state = 2298}, + [7361] = {.lex_state = 205}, + [7362] = {.lex_state = 145}, + [7363] = {.lex_state = 205}, + [7364] = {.lex_state = 2298}, + [7365] = {.lex_state = 2298}, + [7366] = {.lex_state = 2298}, + [7367] = {.lex_state = 2298}, + [7368] = {.lex_state = 205}, + [7369] = {.lex_state = 145}, + [7370] = {.lex_state = 205}, + [7371] = {.lex_state = 2297}, + [7372] = {.lex_state = 2298}, + [7373] = {.lex_state = 2298}, + [7374] = {.lex_state = 2298}, + [7375] = {.lex_state = 2298}, + [7376] = {.lex_state = 2298}, + [7377] = {.lex_state = 205}, + [7378] = {.lex_state = 205}, + [7379] = {.lex_state = 2298}, + [7380] = {.lex_state = 2298}, + [7381] = {.lex_state = 2298}, + [7382] = {.lex_state = 2298}, + [7383] = {.lex_state = 2298}, + [7384] = {.lex_state = 205}, + [7385] = {.lex_state = 2298}, + [7386] = {.lex_state = 205}, + [7387] = {.lex_state = 405}, + [7388] = {.lex_state = 2298}, + [7389] = {.lex_state = 2298}, + [7390] = {.lex_state = 2298}, + [7391] = {.lex_state = 2298}, + [7392] = {.lex_state = 205}, + [7393] = {.lex_state = 205}, + [7394] = {.lex_state = 2298}, + [7395] = {.lex_state = 2298}, + [7396] = {.lex_state = 145}, + [7397] = {.lex_state = 2298}, + [7398] = {.lex_state = 2298}, + [7399] = {.lex_state = 205}, + [7400] = {.lex_state = 205}, + [7401] = {.lex_state = 145}, + [7402] = {.lex_state = 2298}, + [7403] = {.lex_state = 2298}, + [7404] = {.lex_state = 2298}, + [7405] = {.lex_state = 2298}, + [7406] = {.lex_state = 205}, + [7407] = {.lex_state = 205}, + [7408] = {.lex_state = 2298}, + [7409] = {.lex_state = 2298}, + [7410] = {.lex_state = 2298}, + [7411] = {.lex_state = 2298}, + [7412] = {.lex_state = 205}, + [7413] = {.lex_state = 205}, + [7414] = {.lex_state = 145}, + [7415] = {.lex_state = 2298}, + [7416] = {.lex_state = 2298}, + [7417] = {.lex_state = 2298}, + [7418] = {.lex_state = 2298}, + [7419] = {.lex_state = 205}, + [7420] = {.lex_state = 205}, + [7421] = {.lex_state = 2298}, + [7422] = {.lex_state = 2298}, + [7423] = {.lex_state = 2298}, + [7424] = {.lex_state = 2298}, + [7425] = {.lex_state = 145}, + [7426] = {.lex_state = 226}, + [7427] = {.lex_state = 2298}, + [7428] = {.lex_state = 408}, + [7429] = {.lex_state = 335}, + [7430] = {.lex_state = 2298}, + [7431] = {.lex_state = 2298}, + [7432] = {.lex_state = 145}, + [7433] = {.lex_state = 145}, + [7434] = {.lex_state = 145}, + [7435] = {.lex_state = 145}, + [7436] = {.lex_state = 145}, + [7437] = {.lex_state = 145}, + [7438] = {.lex_state = 381}, + [7439] = {.lex_state = 402}, + [7440] = {.lex_state = 335}, + [7441] = {.lex_state = 2298}, + [7442] = {.lex_state = 2298}, + [7443] = {.lex_state = 2298}, + [7444] = {.lex_state = 2298}, + [7445] = {.lex_state = 145}, + [7446] = {.lex_state = 84}, + [7447] = {.lex_state = 39}, + [7448] = {.lex_state = 145}, + [7449] = {.lex_state = 145}, + [7450] = {.lex_state = 401}, + [7451] = {.lex_state = 401}, + [7452] = {.lex_state = 2298}, + [7453] = {.lex_state = 226}, + [7454] = {.lex_state = 2298}, + [7455] = {.lex_state = 230}, + [7456] = {.lex_state = 13}, + [7457] = {.lex_state = 6363}, + [7458] = {.lex_state = 6363}, + [7459] = {.lex_state = 2298}, + [7460] = {.lex_state = 2298}, + [7461] = {.lex_state = 145}, + [7462] = {.lex_state = 2298}, + [7463] = {.lex_state = 2298}, + [7464] = {.lex_state = 145}, + [7465] = {.lex_state = 6363}, + [7466] = {.lex_state = 6363}, + [7467] = {.lex_state = 2298}, + [7468] = {.lex_state = 39}, + [7469] = {.lex_state = 2298}, + [7470] = {.lex_state = 2298}, + [7471] = {.lex_state = 145}, + [7472] = {.lex_state = 145}, + [7473] = {.lex_state = 145}, + [7474] = {.lex_state = 6365}, + [7475] = {.lex_state = 6367}, + [7476] = {.lex_state = 145}, + [7477] = {.lex_state = 6367}, + [7478] = {.lex_state = 6365}, + [7479] = {.lex_state = 2298}, + [7480] = {.lex_state = 2298}, + [7481] = {.lex_state = 2298}, + [7482] = {.lex_state = 6367}, + [7483] = {.lex_state = 6367}, + [7484] = {.lex_state = 6367}, + [7485] = {.lex_state = 2298}, + [7486] = {.lex_state = 2298}, + [7487] = {.lex_state = 2298}, + [7488] = {.lex_state = 145}, + [7489] = {.lex_state = 2298}, + [7490] = {.lex_state = 6363}, + [7491] = {.lex_state = 145}, + [7492] = {.lex_state = 6363}, + [7493] = {.lex_state = 2298}, + [7494] = {.lex_state = 2298}, + [7495] = {.lex_state = 2298}, + [7496] = {.lex_state = 2298}, + [7497] = {.lex_state = 402}, + [7498] = {.lex_state = 2298}, + [7499] = {.lex_state = 2298}, + [7500] = {.lex_state = 2298}, + [7501] = {.lex_state = 2298}, + [7502] = {.lex_state = 2298}, + [7503] = {.lex_state = 145}, + [7504] = {.lex_state = 2298}, + [7505] = {.lex_state = 145}, + [7506] = {.lex_state = 145}, + [7507] = {.lex_state = 145}, + [7508] = {.lex_state = 145}, + [7509] = {.lex_state = 6367}, + [7510] = {.lex_state = 145}, + [7511] = {.lex_state = 6367}, + [7512] = {.lex_state = 2298}, + [7513] = {.lex_state = 6363}, + [7514] = {.lex_state = 2298}, + [7515] = {.lex_state = 332}, + [7516] = {.lex_state = 332}, + [7517] = {.lex_state = 37}, + [7518] = {.lex_state = 2298}, + [7519] = {.lex_state = 6365}, + [7520] = {.lex_state = 2298}, + [7521] = {.lex_state = 2298}, + [7522] = {.lex_state = 6365}, + [7523] = {.lex_state = 145}, + [7524] = {.lex_state = 6363}, + [7525] = {.lex_state = 32}, + [7526] = {.lex_state = 145}, + [7527] = {.lex_state = 2298}, + [7528] = {.lex_state = 143}, + [7529] = {.lex_state = 406}, + [7530] = {.lex_state = 6363}, + [7531] = {.lex_state = 389}, + [7532] = {.lex_state = 2298}, + [7533] = {.lex_state = 13}, + [7534] = {.lex_state = 145}, + [7535] = {.lex_state = 6365}, + [7536] = {.lex_state = 402}, + [7537] = {.lex_state = 402}, + [7538] = {.lex_state = 143}, + [7539] = {.lex_state = 2298}, + [7540] = {.lex_state = 2298}, + [7541] = {.lex_state = 145}, + [7542] = {.lex_state = 2253}, + [7543] = {.lex_state = 402}, + [7544] = {.lex_state = 6363}, + [7545] = {.lex_state = 2298}, + [7546] = {.lex_state = 2298}, + [7547] = {.lex_state = 406}, + [7548] = {.lex_state = 143}, + [7549] = {.lex_state = 2368}, + [7550] = {.lex_state = 145}, + [7551] = {.lex_state = 2298}, + [7552] = {.lex_state = 2298}, + [7553] = {.lex_state = 145}, + [7554] = {.lex_state = 6363}, + [7555] = {.lex_state = 2298}, + [7556] = {.lex_state = 332}, + [7557] = {.lex_state = 2298}, + [7558] = {.lex_state = 145}, + [7559] = {.lex_state = 2298}, + [7560] = {.lex_state = 2298}, + [7561] = {.lex_state = 2298}, + [7562] = {.lex_state = 406}, + [7563] = {.lex_state = 406}, + [7564] = {.lex_state = 2298}, + [7565] = {.lex_state = 145}, + [7566] = {.lex_state = 2298}, + [7567] = {.lex_state = 2298}, + [7568] = {.lex_state = 143}, + [7569] = {.lex_state = 6365}, + [7570] = {.lex_state = 6365}, + [7571] = {.lex_state = 145}, + [7572] = {.lex_state = 2298}, + [7573] = {.lex_state = 2298}, + [7574] = {.lex_state = 2298}, + [7575] = {.lex_state = 2298}, + [7576] = {.lex_state = 2298}, + [7577] = {.lex_state = 6363}, + [7578] = {.lex_state = 6363}, + [7579] = {.lex_state = 2298}, + [7580] = {.lex_state = 39}, + [7581] = {.lex_state = 335}, + [7582] = {.lex_state = 2298}, + [7583] = {.lex_state = 332}, + [7584] = {.lex_state = 6363}, + [7585] = {.lex_state = 6363}, + [7586] = {.lex_state = 2298}, + [7587] = {.lex_state = 2298}, + [7588] = {.lex_state = 145}, + [7589] = {.lex_state = 145}, + [7590] = {.lex_state = 143}, + [7591] = {.lex_state = 145}, + [7592] = {.lex_state = 6363}, + [7593] = {.lex_state = 2368}, + [7594] = {.lex_state = 143}, + [7595] = {.lex_state = 6363}, + [7596] = {.lex_state = 332}, + [7597] = {.lex_state = 2298}, + [7598] = {.lex_state = 332}, + [7599] = {.lex_state = 145}, + [7600] = {.lex_state = 2298}, + [7601] = {.lex_state = 2298}, + [7602] = {.lex_state = 145}, + [7603] = {.lex_state = 2298}, + [7604] = {.lex_state = 2298}, + [7605] = {.lex_state = 145}, + [7606] = {.lex_state = 145}, + [7607] = {.lex_state = 145}, + [7608] = {.lex_state = 6365}, + [7609] = {.lex_state = 399}, + [7610] = {.lex_state = 39}, + [7611] = {.lex_state = 2298}, + [7612] = {.lex_state = 2298}, + [7613] = {.lex_state = 2298}, + [7614] = {.lex_state = 2298}, + [7615] = {.lex_state = 145}, + [7616] = {.lex_state = 143}, + [7617] = {.lex_state = 2298}, + [7618] = {.lex_state = 145}, + [7619] = {.lex_state = 2298}, + [7620] = {.lex_state = 2298}, + [7621] = {.lex_state = 2298}, + [7622] = {.lex_state = 6363}, + [7623] = {.lex_state = 2298}, + [7624] = {.lex_state = 6363}, + [7625] = {.lex_state = 143}, + [7626] = {.lex_state = 2298}, + [7627] = {.lex_state = 6367}, + [7628] = {.lex_state = 6367}, + [7629] = {.lex_state = 13}, + [7630] = {.lex_state = 143}, + [7631] = {.lex_state = 143}, + [7632] = {.lex_state = 2298}, + [7633] = {.lex_state = 145}, + [7634] = {.lex_state = 143}, + [7635] = {.lex_state = 2298}, + [7636] = {.lex_state = 143}, + [7637] = {.lex_state = 6367}, + [7638] = {.lex_state = 2298}, + [7639] = {.lex_state = 145}, + [7640] = {.lex_state = 2298}, + [7641] = {.lex_state = 145}, + [7642] = {.lex_state = 145}, + [7643] = {.lex_state = 2298}, + [7644] = {.lex_state = 145}, + [7645] = {.lex_state = 408}, + [7646] = {.lex_state = 2298}, + [7647] = {.lex_state = 2298}, + [7648] = {.lex_state = 2298}, + [7649] = {.lex_state = 2298}, + [7650] = {.lex_state = 145}, + [7651] = {.lex_state = 2298}, + [7652] = {.lex_state = 6363}, + [7653] = {.lex_state = 2298}, + [7654] = {.lex_state = 2298}, + [7655] = {.lex_state = 2298}, + [7656] = {.lex_state = 6367}, + [7657] = {.lex_state = 402}, + [7658] = {.lex_state = 145}, + [7659] = {.lex_state = 2298}, + [7660] = {.lex_state = 2298}, + [7661] = {.lex_state = 2298}, + [7662] = {.lex_state = 402}, + [7663] = {.lex_state = 2294}, + [7664] = {.lex_state = 145}, + [7665] = {.lex_state = 332}, + [7666] = {.lex_state = 2298}, + [7667] = {.lex_state = 2298}, + [7668] = {.lex_state = 145}, + [7669] = {.lex_state = 2298}, + [7670] = {.lex_state = 2298}, + [7671] = {.lex_state = 6363}, + [7672] = {.lex_state = 6365}, + [7673] = {.lex_state = 2298}, + [7674] = {.lex_state = 2298}, + [7675] = {.lex_state = 6363}, + [7676] = {.lex_state = 2298}, + [7677] = {.lex_state = 6363}, + [7678] = {.lex_state = 37}, + [7679] = {.lex_state = 6363}, + [7680] = {.lex_state = 2298}, + [7681] = {.lex_state = 143}, + [7682] = {.lex_state = 6363}, + [7683] = {.lex_state = 6363}, + [7684] = {.lex_state = 2298}, + [7685] = {.lex_state = 145}, + [7686] = {.lex_state = 6367}, + [7687] = {.lex_state = 6367}, + [7688] = {.lex_state = 2298}, + [7689] = {.lex_state = 6363}, + [7690] = {.lex_state = 145}, + [7691] = {.lex_state = 2298}, + [7692] = {.lex_state = 2298}, + [7693] = {.lex_state = 2298}, + [7694] = {.lex_state = 2298}, + [7695] = {.lex_state = 2298}, + [7696] = {.lex_state = 143}, + [7697] = {.lex_state = 2298}, + [7698] = {.lex_state = 2298}, + [7699] = {.lex_state = 145}, + [7700] = {.lex_state = 145}, + [7701] = {.lex_state = 145}, + [7702] = {.lex_state = 406}, + [7703] = {.lex_state = 332}, + [7704] = {.lex_state = 2276}, + [7705] = {.lex_state = 332}, + [7706] = {.lex_state = 4718}, + [7707] = {.lex_state = 2298}, + [7708] = {.lex_state = 332}, + [7709] = {.lex_state = 143}, + [7710] = {.lex_state = 6363}, + [7711] = {.lex_state = 6363}, + [7712] = {.lex_state = 39}, + [7713] = {.lex_state = 2298}, + [7714] = {.lex_state = 2298, .external_lex_state = 3}, + [7715] = {.lex_state = 2294}, + [7716] = {.lex_state = 2298}, + [7717] = {.lex_state = 2298}, + [7718] = {.lex_state = 2298}, + [7719] = {.lex_state = 2298}, + [7720] = {.lex_state = 2298}, + [7721] = {.lex_state = 2298}, + [7722] = {.lex_state = 226}, + [7723] = {.lex_state = 2298}, + [7724] = {.lex_state = 226}, + [7725] = {.lex_state = 2298, .external_lex_state = 3}, + [7726] = {.lex_state = 2298}, + [7727] = {.lex_state = 2298}, + [7728] = {.lex_state = 2294}, + [7729] = {.lex_state = 2298}, + [7730] = {.lex_state = 2298}, + [7731] = {.lex_state = 2298, .external_lex_state = 3}, + [7732] = {.lex_state = 2298}, + [7733] = {.lex_state = 2298}, + [7734] = {.lex_state = 2298, .external_lex_state = 3}, + [7735] = {.lex_state = 2298}, + [7736] = {.lex_state = 3748}, + [7737] = {.lex_state = 3748}, + [7738] = {.lex_state = 2298}, + [7739] = {.lex_state = 2298}, + [7740] = {.lex_state = 2298, .external_lex_state = 3}, + [7741] = {.lex_state = 2294}, + [7742] = {.lex_state = 2298}, + [7743] = {.lex_state = 2298}, + [7744] = {.lex_state = 32}, + [7745] = {.lex_state = 226}, + [7746] = {.lex_state = 2298}, + [7747] = {.lex_state = 332}, + [7748] = {.lex_state = 6365}, + [7749] = {.lex_state = 2294}, + [7750] = {.lex_state = 226}, + [7751] = {.lex_state = 2298}, + [7752] = {.lex_state = 2298}, + [7753] = {.lex_state = 2298, .external_lex_state = 3}, + [7754] = {.lex_state = 2298}, + [7755] = {.lex_state = 2298}, + [7756] = {.lex_state = 2298}, + [7757] = {.lex_state = 226}, + [7758] = {.lex_state = 35}, + [7759] = {.lex_state = 402}, + [7760] = {.lex_state = 2298, .external_lex_state = 3}, + [7761] = {.lex_state = 2298, .external_lex_state = 3}, + [7762] = {.lex_state = 2298, .external_lex_state = 3}, + [7763] = {.lex_state = 2298, .external_lex_state = 3}, + [7764] = {.lex_state = 2298}, + [7765] = {.lex_state = 2298}, + [7766] = {.lex_state = 2298}, + [7767] = {.lex_state = 332}, + [7768] = {.lex_state = 402}, + [7769] = {.lex_state = 2298, .external_lex_state = 3}, + [7770] = {.lex_state = 2298}, + [7771] = {.lex_state = 332}, + [7772] = {.lex_state = 2298}, + [7773] = {.lex_state = 2298}, + [7774] = {.lex_state = 2298}, + [7775] = {.lex_state = 2298}, + [7776] = {.lex_state = 2298}, + [7777] = {.lex_state = 2298}, + [7778] = {.lex_state = 2298}, + [7779] = {.lex_state = 2298}, + [7780] = {.lex_state = 2298}, + [7781] = {.lex_state = 226}, + [7782] = {.lex_state = 2298, .external_lex_state = 3}, + [7783] = {.lex_state = 2298}, + [7784] = {.lex_state = 2298}, + [7785] = {.lex_state = 332}, + [7786] = {.lex_state = 2298}, + [7787] = {.lex_state = 2298}, + [7788] = {.lex_state = 2298}, + [7789] = {.lex_state = 2298}, + [7790] = {.lex_state = 2298}, + [7791] = {.lex_state = 2298}, + [7792] = {.lex_state = 3748}, + [7793] = {.lex_state = 402}, + [7794] = {.lex_state = 2298}, + [7795] = {.lex_state = 2298, .external_lex_state = 3}, + [7796] = {.lex_state = 2298}, + [7797] = {.lex_state = 2298}, + [7798] = {.lex_state = 2294}, + [7799] = {.lex_state = 2298}, + [7800] = {.lex_state = 2298}, + [7801] = {.lex_state = 2298}, + [7802] = {.lex_state = 2298, .external_lex_state = 3}, + [7803] = {.lex_state = 2298}, + [7804] = {.lex_state = 2298, .external_lex_state = 4}, + [7805] = {.lex_state = 332}, + [7806] = {.lex_state = 2298, .external_lex_state = 3}, + [7807] = {.lex_state = 2}, + [7808] = {.lex_state = 2298}, + [7809] = {.lex_state = 2298}, + [7810] = {.lex_state = 2298}, + [7811] = {.lex_state = 2298}, + [7812] = {.lex_state = 226}, + [7813] = {.lex_state = 2298, .external_lex_state = 3}, + [7814] = {.lex_state = 2382}, + [7815] = {.lex_state = 2298}, + [7816] = {.lex_state = 402}, + [7817] = {.lex_state = 2298}, + [7818] = {.lex_state = 408}, + [7819] = {.lex_state = 2298, .external_lex_state = 3}, + [7820] = {.lex_state = 6367}, + [7821] = {.lex_state = 2298}, + [7822] = {.lex_state = 2298}, + [7823] = {.lex_state = 2298, .external_lex_state = 3}, + [7824] = {.lex_state = 2298, .external_lex_state = 3}, + [7825] = {.lex_state = 396}, + [7826] = {.lex_state = 2298, .external_lex_state = 3}, + [7827] = {.lex_state = 396}, + [7828] = {.lex_state = 2298}, + [7829] = {.lex_state = 2298}, + [7830] = {.lex_state = 3748}, + [7831] = {.lex_state = 2298}, + [7832] = {.lex_state = 2298}, + [7833] = {.lex_state = 332}, + [7834] = {.lex_state = 2298}, + [7835] = {.lex_state = 32}, + [7836] = {.lex_state = 2298}, + [7837] = {.lex_state = 2298, .external_lex_state = 3}, + [7838] = {.lex_state = 2298}, + [7839] = {.lex_state = 2294}, + [7840] = {.lex_state = 6365}, + [7841] = {.lex_state = 2298}, + [7842] = {.lex_state = 2298}, + [7843] = {.lex_state = 2298, .external_lex_state = 3}, + [7844] = {.lex_state = 2298}, + [7845] = {.lex_state = 2298, .external_lex_state = 3}, + [7846] = {.lex_state = 2298}, + [7847] = {.lex_state = 2298, .external_lex_state = 3}, + [7848] = {.lex_state = 2298}, + [7849] = {.lex_state = 2298}, + [7850] = {.lex_state = 332}, + [7851] = {.lex_state = 2298}, + [7852] = {.lex_state = 2298, .external_lex_state = 3}, + [7853] = {.lex_state = 2298, .external_lex_state = 3}, + [7854] = {.lex_state = 2298}, + [7855] = {.lex_state = 2298}, + [7856] = {.lex_state = 2298}, + [7857] = {.lex_state = 402}, + [7858] = {.lex_state = 2298, .external_lex_state = 3}, + [7859] = {.lex_state = 2298}, + [7860] = {.lex_state = 2298, .external_lex_state = 3}, + [7861] = {.lex_state = 332}, + [7862] = {.lex_state = 2298}, + [7863] = {.lex_state = 2298}, + [7864] = {.lex_state = 2298}, + [7865] = {.lex_state = 2298, .external_lex_state = 4}, + [7866] = {.lex_state = 2298}, + [7867] = {.lex_state = 2298}, + [7868] = {.lex_state = 2}, + [7869] = {.lex_state = 2298}, + [7870] = {.lex_state = 2298, .external_lex_state = 3}, + [7871] = {.lex_state = 332}, + [7872] = {.lex_state = 402}, + [7873] = {.lex_state = 2298}, + [7874] = {.lex_state = 2298}, + [7875] = {.lex_state = 6367}, + [7876] = {.lex_state = 2298}, + [7877] = {.lex_state = 2298}, + [7878] = {.lex_state = 2298, .external_lex_state = 3}, + [7879] = {.lex_state = 2298}, + [7880] = {.lex_state = 2298}, + [7881] = {.lex_state = 2298, .external_lex_state = 3}, + [7882] = {.lex_state = 2298}, + [7883] = {.lex_state = 2298}, + [7884] = {.lex_state = 332}, + [7885] = {.lex_state = 32}, + [7886] = {.lex_state = 2298}, + [7887] = {.lex_state = 2298, .external_lex_state = 4}, + [7888] = {.lex_state = 2298, .external_lex_state = 3}, [7889] = {.lex_state = 2}, - [7890] = {.lex_state = 403}, - [7891] = {.lex_state = 744}, - [7892] = {.lex_state = 744}, - [7893] = {.lex_state = 1841}, - [7894] = {.lex_state = 744}, - [7895] = {.lex_state = 744, .external_lex_state = 3}, - [7896] = {.lex_state = 398}, - [7897] = {.lex_state = 744}, - [7898] = {.lex_state = 333}, - [7899] = {.lex_state = 744}, - [7900] = {.lex_state = 287}, - [7901] = {.lex_state = 744, .external_lex_state = 4}, + [7890] = {.lex_state = 2298}, + [7891] = {.lex_state = 3748}, + [7892] = {.lex_state = 2298}, + [7893] = {.lex_state = 226}, + [7894] = {.lex_state = 2298}, + [7895] = {.lex_state = 2298, .external_lex_state = 3}, + [7896] = {.lex_state = 3748}, + [7897] = {.lex_state = 2298}, + [7898] = {.lex_state = 2298}, + [7899] = {.lex_state = 226}, + [7900] = {.lex_state = 2298}, + [7901] = {.lex_state = 2298, .external_lex_state = 4}, [7902] = {.lex_state = 2}, - [7903] = {.lex_state = 1841}, - [7904] = {.lex_state = 403}, - [7905] = {.lex_state = 744, .external_lex_state = 3}, - [7906] = {.lex_state = 333}, - [7907] = {.lex_state = 744}, - [7908] = {.lex_state = 744}, - [7909] = {.lex_state = 33}, - [7910] = {.lex_state = 744, .external_lex_state = 3}, - [7911] = {.lex_state = 744}, - [7912] = {.lex_state = 744}, - [7913] = {.lex_state = 403}, - [7914] = {.lex_state = 740}, - [7915] = {.lex_state = 744, .external_lex_state = 4}, + [7903] = {.lex_state = 332}, + [7904] = {.lex_state = 32}, + [7905] = {.lex_state = 2298, .external_lex_state = 3}, + [7906] = {.lex_state = 3748}, + [7907] = {.lex_state = 2298, .external_lex_state = 3}, + [7908] = {.lex_state = 6365}, + [7909] = {.lex_state = 332}, + [7910] = {.lex_state = 226}, + [7911] = {.lex_state = 402}, + [7912] = {.lex_state = 2298, .external_lex_state = 3}, + [7913] = {.lex_state = 2298}, + [7914] = {.lex_state = 2298, .external_lex_state = 3}, + [7915] = {.lex_state = 2298, .external_lex_state = 4}, [7916] = {.lex_state = 2}, - [7917] = {.lex_state = 744, .external_lex_state = 3}, - [7918] = {.lex_state = 744}, - [7919] = {.lex_state = 744}, - [7920] = {.lex_state = 744}, - [7921] = {.lex_state = 744}, - [7922] = {.lex_state = 744}, - [7923] = {.lex_state = 744}, - [7924] = {.lex_state = 744}, - [7925] = {.lex_state = 2}, - [7926] = {.lex_state = 744}, - [7927] = {.lex_state = 744, .external_lex_state = 3}, - [7928] = {.lex_state = 744}, - [7929] = {.lex_state = 744, .external_lex_state = 4}, + [7917] = {.lex_state = 39}, + [7918] = {.lex_state = 2298}, + [7919] = {.lex_state = 2298}, + [7920] = {.lex_state = 402}, + [7921] = {.lex_state = 2298, .external_lex_state = 3}, + [7922] = {.lex_state = 2298}, + [7923] = {.lex_state = 397}, + [7924] = {.lex_state = 2298, .external_lex_state = 3}, + [7925] = {.lex_state = 2298}, + [7926] = {.lex_state = 2298}, + [7927] = {.lex_state = 2298}, + [7928] = {.lex_state = 2298, .external_lex_state = 3}, + [7929] = {.lex_state = 2298, .external_lex_state = 4}, [7930] = {.lex_state = 2}, - [7931] = {.lex_state = 744, .external_lex_state = 3}, - [7932] = {.lex_state = 333}, - [7933] = {.lex_state = 744}, - [7934] = {.lex_state = 744}, - [7935] = {.lex_state = 744}, - [7936] = {.lex_state = 744}, - [7937] = {.lex_state = 744}, - [7938] = {.lex_state = 1841}, - [7939] = {.lex_state = 744, .external_lex_state = 3}, - [7940] = {.lex_state = 33}, - [7941] = {.lex_state = 744}, - [7942] = {.lex_state = 744, .external_lex_state = 4}, + [7931] = {.lex_state = 332}, + [7932] = {.lex_state = 2298}, + [7933] = {.lex_state = 2298}, + [7934] = {.lex_state = 2298}, + [7935] = {.lex_state = 32}, + [7936] = {.lex_state = 2298, .external_lex_state = 4}, + [7937] = {.lex_state = 402}, + [7938] = {.lex_state = 2298}, + [7939] = {.lex_state = 226}, + [7940] = {.lex_state = 2298}, + [7941] = {.lex_state = 2264}, + [7942] = {.lex_state = 2298, .external_lex_state = 4}, [7943] = {.lex_state = 2}, - [7944] = {.lex_state = 744}, - [7945] = {.lex_state = 744}, - [7946] = {.lex_state = 744}, - [7947] = {.lex_state = 744}, - [7948] = {.lex_state = 744, .external_lex_state = 3}, - [7949] = {.lex_state = 744}, - [7950] = {.lex_state = 744}, - [7951] = {.lex_state = 744}, - [7952] = {.lex_state = 744, .external_lex_state = 3}, - [7953] = {.lex_state = 744}, - [7954] = {.lex_state = 744, .external_lex_state = 4}, - [7955] = {.lex_state = 2}, - [7956] = {.lex_state = 744}, - [7957] = {.lex_state = 744}, - [7958] = {.lex_state = 144}, - [7959] = {.lex_state = 744, .external_lex_state = 3}, - [7960] = {.lex_state = 744}, - [7961] = {.lex_state = 744, .external_lex_state = 3}, - [7962] = {.lex_state = 744}, - [7963] = {.lex_state = 744}, - [7964] = {.lex_state = 333}, - [7965] = {.lex_state = 403}, - [7966] = {.lex_state = 710}, - [7967] = {.lex_state = 397}, - [7968] = {.lex_state = 2}, - [7969] = {.lex_state = 744}, - [7970] = {.lex_state = 398}, - [7971] = {.lex_state = 744}, - [7972] = {.lex_state = 744}, - [7973] = {.lex_state = 744, .external_lex_state = 3}, - [7974] = {.lex_state = 1841}, - [7975] = {.lex_state = 744}, - [7976] = {.lex_state = 744}, - [7977] = {.lex_state = 1841}, - [7978] = {.lex_state = 744, .external_lex_state = 3}, - [7979] = {.lex_state = 744}, - [7980] = {.lex_state = 744, .external_lex_state = 4}, - [7981] = {.lex_state = 2}, - [7982] = {.lex_state = 744}, - [7983] = {.lex_state = 744}, - [7984] = {.lex_state = 744}, - [7985] = {.lex_state = 744, .external_lex_state = 4}, - [7986] = {.lex_state = 2811}, - [7987] = {.lex_state = 744}, - [7988] = {.lex_state = 744}, - [7989] = {.lex_state = 744}, - [7990] = {.lex_state = 396}, - [7991] = {.lex_state = 14}, - [7992] = {.lex_state = 744}, - [7993] = {.lex_state = 744, .external_lex_state = 4}, - [7994] = {.lex_state = 2}, - [7995] = {.lex_state = 403}, - [7996] = {.lex_state = 744}, - [7997] = {.lex_state = 744}, - [7998] = {.lex_state = 744}, - [7999] = {.lex_state = 710}, - [8000] = {.lex_state = 1841}, - [8001] = {.lex_state = 744}, - [8002] = {.lex_state = 1841}, - [8003] = {.lex_state = 2}, - [8004] = {.lex_state = 740}, - [8005] = {.lex_state = 4081}, - [8006] = {.lex_state = 744, .external_lex_state = 4}, - [8007] = {.lex_state = 2}, - [8008] = {.lex_state = 33}, - [8009] = {.lex_state = 744}, - [8010] = {.lex_state = 744}, - [8011] = {.lex_state = 744}, - [8012] = {.lex_state = 744, .external_lex_state = 3}, - [8013] = {.lex_state = 744}, - [8014] = {.lex_state = 744}, - [8015] = {.lex_state = 744}, - [8016] = {.lex_state = 745}, - [8017] = {.lex_state = 744}, - [8018] = {.lex_state = 744}, - [8019] = {.lex_state = 744, .external_lex_state = 4}, - [8020] = {.lex_state = 2}, - [8021] = {.lex_state = 744}, - [8022] = {.lex_state = 744}, - [8023] = {.lex_state = 744}, - [8024] = {.lex_state = 4063}, - [8025] = {.lex_state = 1841}, - [8026] = {.lex_state = 744}, - [8027] = {.lex_state = 1841}, - [8028] = {.lex_state = 744}, - [8029] = {.lex_state = 744, .external_lex_state = 4}, - [8030] = {.lex_state = 2}, - [8031] = {.lex_state = 740}, - [8032] = {.lex_state = 744, .external_lex_state = 3}, - [8033] = {.lex_state = 744}, - [8034] = {.lex_state = 744, .external_lex_state = 3}, - [8035] = {.lex_state = 744}, - [8036] = {.lex_state = 744}, - [8037] = {.lex_state = 744, .external_lex_state = 3}, - [8038] = {.lex_state = 744}, - [8039] = {.lex_state = 744, .external_lex_state = 4}, - [8040] = {.lex_state = 744}, - [8041] = {.lex_state = 744}, - [8042] = {.lex_state = 744}, - [8043] = {.lex_state = 227}, - [8044] = {.lex_state = 744}, - [8045] = {.lex_state = 744}, - [8046] = {.lex_state = 744, .external_lex_state = 3}, - [8047] = {.lex_state = 744}, - [8048] = {.lex_state = 744, .external_lex_state = 4}, - [8049] = {.lex_state = 744}, - [8050] = {.lex_state = 4065}, - [8051] = {.lex_state = 744}, - [8052] = {.lex_state = 744}, - [8053] = {.lex_state = 744}, - [8054] = {.lex_state = 333}, - [8055] = {.lex_state = 744, .external_lex_state = 3}, - [8056] = {.lex_state = 403}, - [8057] = {.lex_state = 744, .external_lex_state = 4}, - [8058] = {.lex_state = 2}, - [8059] = {.lex_state = 744}, - [8060] = {.lex_state = 744, .external_lex_state = 3}, - [8061] = {.lex_state = 2}, - [8062] = {.lex_state = 744}, - [8063] = {.lex_state = 4065}, - [8064] = {.lex_state = 744}, - [8065] = {.lex_state = 744}, - [8066] = {.lex_state = 744, .external_lex_state = 4}, - [8067] = {.lex_state = 744, .external_lex_state = 4}, - [8068] = {.lex_state = 744, .external_lex_state = 4}, - [8069] = {.lex_state = 744, .external_lex_state = 4}, - [8070] = {.lex_state = 744, .external_lex_state = 4}, - [8071] = {.lex_state = 744, .external_lex_state = 4}, - [8072] = {.lex_state = 744, .external_lex_state = 4}, - [8073] = {.lex_state = 744, .external_lex_state = 4}, - [8074] = {.lex_state = 744, .external_lex_state = 4}, - [8075] = {.lex_state = 744, .external_lex_state = 4}, - [8076] = {.lex_state = 744, .external_lex_state = 4}, - [8077] = {.lex_state = 744, .external_lex_state = 4}, - [8078] = {.lex_state = 744, .external_lex_state = 4}, - [8079] = {.lex_state = 744, .external_lex_state = 4}, - [8080] = {.lex_state = 744, .external_lex_state = 4}, - [8081] = {.lex_state = 744, .external_lex_state = 4}, - [8082] = {.lex_state = 744, .external_lex_state = 4}, - [8083] = {.lex_state = 744, .external_lex_state = 4}, - [8084] = {.lex_state = 744, .external_lex_state = 4}, - [8085] = {.lex_state = 744, .external_lex_state = 4}, - [8086] = {.lex_state = 744, .external_lex_state = 4}, - [8087] = {.lex_state = 744, .external_lex_state = 4}, - [8088] = {.lex_state = 744, .external_lex_state = 4}, - [8089] = {.lex_state = 744, .external_lex_state = 4}, - [8090] = {.lex_state = 744, .external_lex_state = 4}, - [8091] = {.lex_state = 744, .external_lex_state = 4}, - [8092] = {.lex_state = 744, .external_lex_state = 4}, - [8093] = {.lex_state = 744, .external_lex_state = 4}, - [8094] = {.lex_state = 744, .external_lex_state = 4}, - [8095] = {.lex_state = 744, .external_lex_state = 4}, - [8096] = {.lex_state = 744, .external_lex_state = 4}, - [8097] = {.lex_state = 744}, - [8098] = {.lex_state = 744}, - [8099] = {.lex_state = 144}, - [8100] = {.lex_state = 744}, - [8101] = {.lex_state = 1841}, - [8102] = {.lex_state = 744}, - [8103] = {.lex_state = 744}, - [8104] = {.lex_state = 744}, - [8105] = {.lex_state = 4063}, - [8106] = {.lex_state = 744}, - [8107] = {.lex_state = 744}, - [8108] = {.lex_state = 744}, - [8109] = {.lex_state = 744}, - [8110] = {.lex_state = 744, .external_lex_state = 3}, - [8111] = {.lex_state = 4067}, - [8112] = {.lex_state = 744}, - [8113] = {.lex_state = 744}, - [8114] = {.lex_state = 710}, - [8115] = {.lex_state = 710}, - [8116] = {.lex_state = 744}, - [8117] = {.lex_state = 744}, - [8118] = {.lex_state = 744}, - [8119] = {.lex_state = 710}, - [8120] = {.lex_state = 710}, - [8121] = {.lex_state = 744}, - [8122] = {.lex_state = 710}, - [8123] = {.lex_state = 744}, - [8124] = {.lex_state = 744}, - [8125] = {.lex_state = 403}, - [8126] = {.lex_state = 744}, - [8127] = {.lex_state = 828}, - [8128] = {.lex_state = 744}, - [8129] = {.lex_state = 744}, - [8130] = {.lex_state = 744, .external_lex_state = 3}, - [8131] = {.lex_state = 744}, - [8132] = {.lex_state = 744}, - [8133] = {.lex_state = 36}, - [8134] = {.lex_state = 144}, - [8135] = {.lex_state = 744}, - [8136] = {.lex_state = 744}, - [8137] = {.lex_state = 744}, - [8138] = {.lex_state = 1841}, - [8139] = {.lex_state = 2}, - [8140] = {.lex_state = 744}, - [8141] = {.lex_state = 740}, - [8142] = {.lex_state = 744}, - [8143] = {.lex_state = 740}, - [8144] = {.lex_state = 744}, - [8145] = {.lex_state = 744}, - [8146] = {.lex_state = 744}, - [8147] = {.lex_state = 744}, - [8148] = {.lex_state = 744}, - [8149] = {.lex_state = 333}, - [8150] = {.lex_state = 4065}, - [8151] = {.lex_state = 744}, - [8152] = {.lex_state = 4067}, - [8153] = {.lex_state = 744}, - [8154] = {.lex_state = 744}, - [8155] = {.lex_state = 744, .external_lex_state = 3}, - [8156] = {.lex_state = 740}, - [8157] = {.lex_state = 744}, - [8158] = {.lex_state = 744}, - [8159] = {.lex_state = 744}, - [8160] = {.lex_state = 333}, - [8161] = {.lex_state = 744, .external_lex_state = 3}, - [8162] = {.lex_state = 744, .external_lex_state = 3}, - [8163] = {.lex_state = 744}, - [8164] = {.lex_state = 744}, - [8165] = {.lex_state = 744, .external_lex_state = 3}, - [8166] = {.lex_state = 744}, - [8167] = {.lex_state = 2}, - [8168] = {.lex_state = 744, .external_lex_state = 3}, - [8169] = {.lex_state = 744}, - [8170] = {.lex_state = 744}, - [8171] = {.lex_state = 740}, - [8172] = {.lex_state = 744, .external_lex_state = 3}, - [8173] = {.lex_state = 744, .external_lex_state = 4}, - [8174] = {(TSStateId)(-1)}, + [7944] = {.lex_state = 332}, + [7945] = {.lex_state = 402}, + [7946] = {.lex_state = 396}, + [7947] = {.lex_state = 2298}, + [7948] = {.lex_state = 2298}, + [7949] = {.lex_state = 2298}, + [7950] = {.lex_state = 3748}, + [7951] = {.lex_state = 2298}, + [7952] = {.lex_state = 13}, + [7953] = {.lex_state = 2298}, + [7954] = {.lex_state = 2294}, + [7955] = {.lex_state = 2298, .external_lex_state = 4}, + [7956] = {.lex_state = 2}, + [7957] = {.lex_state = 2298}, + [7958] = {.lex_state = 2298}, + [7959] = {.lex_state = 2298}, + [7960] = {.lex_state = 2298}, + [7961] = {.lex_state = 2298}, + [7962] = {.lex_state = 2}, + [7963] = {.lex_state = 2298}, + [7964] = {.lex_state = 2298}, + [7965] = {.lex_state = 332}, + [7966] = {.lex_state = 6363}, + [7967] = {.lex_state = 2298}, + [7968] = {.lex_state = 2298, .external_lex_state = 3}, + [7969] = {.lex_state = 2}, + [7970] = {.lex_state = 2298}, + [7971] = {.lex_state = 2298}, + [7972] = {.lex_state = 2298}, + [7973] = {.lex_state = 402}, + [7974] = {.lex_state = 2264}, + [7975] = {.lex_state = 2298}, + [7976] = {.lex_state = 397}, + [7977] = {.lex_state = 2298}, + [7978] = {.lex_state = 2298}, + [7979] = {.lex_state = 2298, .external_lex_state = 3}, + [7980] = {.lex_state = 3748}, + [7981] = {.lex_state = 2298, .external_lex_state = 4}, + [7982] = {.lex_state = 2}, + [7983] = {.lex_state = 2298}, + [7984] = {.lex_state = 402}, + [7985] = {.lex_state = 2298}, + [7986] = {.lex_state = 2298}, + [7987] = {.lex_state = 2298}, + [7988] = {.lex_state = 3748}, + [7989] = {.lex_state = 2298, .external_lex_state = 3}, + [7990] = {.lex_state = 2298}, + [7991] = {.lex_state = 2298, .external_lex_state = 3}, + [7992] = {.lex_state = 2298}, + [7993] = {.lex_state = 2298}, + [7994] = {.lex_state = 2298, .external_lex_state = 4}, + [7995] = {.lex_state = 2}, + [7996] = {.lex_state = 2298}, + [7997] = {.lex_state = 6381}, + [7998] = {.lex_state = 2298}, + [7999] = {.lex_state = 6363}, + [8000] = {.lex_state = 2}, + [8001] = {.lex_state = 2298}, + [8002] = {.lex_state = 2264}, + [8003] = {.lex_state = 6367}, + [8004] = {.lex_state = 3748}, + [8005] = {.lex_state = 32}, + [8006] = {.lex_state = 2298}, + [8007] = {.lex_state = 2298, .external_lex_state = 4}, + [8008] = {.lex_state = 2}, + [8009] = {.lex_state = 2298}, + [8010] = {.lex_state = 2298}, + [8011] = {.lex_state = 2298}, + [8012] = {.lex_state = 2298}, + [8013] = {.lex_state = 2298}, + [8014] = {.lex_state = 2298}, + [8015] = {.lex_state = 2298, .external_lex_state = 3}, + [8016] = {.lex_state = 2298}, + [8017] = {.lex_state = 4718}, + [8018] = {.lex_state = 2294}, + [8019] = {.lex_state = 2298}, + [8020] = {.lex_state = 2298, .external_lex_state = 4}, + [8021] = {.lex_state = 2}, + [8022] = {.lex_state = 2298}, + [8023] = {.lex_state = 2298}, + [8024] = {.lex_state = 6363}, + [8025] = {.lex_state = 2298}, + [8026] = {.lex_state = 2298}, + [8027] = {.lex_state = 13}, + [8028] = {.lex_state = 143}, + [8029] = {.lex_state = 2298}, + [8030] = {.lex_state = 2298, .external_lex_state = 4}, + [8031] = {.lex_state = 2}, + [8032] = {.lex_state = 226}, + [8033] = {.lex_state = 2298}, + [8034] = {.lex_state = 2298}, + [8035] = {.lex_state = 2298}, + [8036] = {.lex_state = 3748}, + [8037] = {.lex_state = 2298}, + [8038] = {.lex_state = 2298}, + [8039] = {.lex_state = 2298}, + [8040] = {.lex_state = 2298, .external_lex_state = 4}, + [8041] = {.lex_state = 2298, .external_lex_state = 4}, + [8042] = {.lex_state = 397}, + [8043] = {.lex_state = 2298, .external_lex_state = 3}, + [8044] = {.lex_state = 2298, .external_lex_state = 3}, + [8045] = {.lex_state = 2298, .external_lex_state = 3}, + [8046] = {.lex_state = 2298}, + [8047] = {.lex_state = 2298}, + [8048] = {.lex_state = 2298}, + [8049] = {.lex_state = 2298, .external_lex_state = 4}, + [8050] = {.lex_state = 2298}, + [8051] = {.lex_state = 2298}, + [8052] = {.lex_state = 2298}, + [8053] = {.lex_state = 2298}, + [8054] = {.lex_state = 2298}, + [8055] = {.lex_state = 2294}, + [8056] = {.lex_state = 3748}, + [8057] = {.lex_state = 332}, + [8058] = {.lex_state = 2298, .external_lex_state = 4}, + [8059] = {.lex_state = 2298}, + [8060] = {.lex_state = 402}, + [8061] = {.lex_state = 2298}, + [8062] = {.lex_state = 2298}, + [8063] = {.lex_state = 2298}, + [8064] = {.lex_state = 332}, + [8065] = {.lex_state = 2382}, + [8066] = {.lex_state = 2298}, + [8067] = {.lex_state = 2298, .external_lex_state = 4}, + [8068] = {.lex_state = 2298, .external_lex_state = 4}, + [8069] = {.lex_state = 2298, .external_lex_state = 4}, + [8070] = {.lex_state = 2298, .external_lex_state = 4}, + [8071] = {.lex_state = 2298, .external_lex_state = 4}, + [8072] = {.lex_state = 2298, .external_lex_state = 4}, + [8073] = {.lex_state = 2298, .external_lex_state = 4}, + [8074] = {.lex_state = 2298, .external_lex_state = 4}, + [8075] = {.lex_state = 2298, .external_lex_state = 4}, + [8076] = {.lex_state = 2298, .external_lex_state = 4}, + [8077] = {.lex_state = 2298, .external_lex_state = 4}, + [8078] = {.lex_state = 2298, .external_lex_state = 4}, + [8079] = {.lex_state = 2298, .external_lex_state = 4}, + [8080] = {.lex_state = 2298, .external_lex_state = 4}, + [8081] = {.lex_state = 2298, .external_lex_state = 4}, + [8082] = {.lex_state = 2298, .external_lex_state = 4}, + [8083] = {.lex_state = 2298, .external_lex_state = 4}, + [8084] = {.lex_state = 2298, .external_lex_state = 4}, + [8085] = {.lex_state = 2298, .external_lex_state = 4}, + [8086] = {.lex_state = 2298, .external_lex_state = 4}, + [8087] = {.lex_state = 2298, .external_lex_state = 4}, + [8088] = {.lex_state = 2298, .external_lex_state = 4}, + [8089] = {.lex_state = 2298, .external_lex_state = 4}, + [8090] = {.lex_state = 2298, .external_lex_state = 4}, + [8091] = {.lex_state = 2298, .external_lex_state = 4}, + [8092] = {.lex_state = 2298, .external_lex_state = 4}, + [8093] = {.lex_state = 2298, .external_lex_state = 4}, + [8094] = {.lex_state = 2298, .external_lex_state = 4}, + [8095] = {.lex_state = 2298, .external_lex_state = 4}, + [8096] = {.lex_state = 2298, .external_lex_state = 4}, + [8097] = {.lex_state = 2298, .external_lex_state = 4}, + [8098] = {.lex_state = 402}, + [8099] = {.lex_state = 2298, .external_lex_state = 3}, + [8100] = {.lex_state = 143}, + [8101] = {.lex_state = 32}, + [8102] = {.lex_state = 2298}, + [8103] = {.lex_state = 2298}, + [8104] = {.lex_state = 2298}, + [8105] = {.lex_state = 2298}, + [8106] = {.lex_state = 2298}, + [8107] = {.lex_state = 2298}, + [8108] = {.lex_state = 2298}, + [8109] = {.lex_state = 2298}, + [8110] = {.lex_state = 332}, + [8111] = {.lex_state = 2298}, + [8112] = {.lex_state = 2298}, + [8113] = {.lex_state = 2298}, + [8114] = {.lex_state = 2298}, + [8115] = {.lex_state = 2264}, + [8116] = {.lex_state = 2264}, + [8117] = {.lex_state = 2294}, + [8118] = {.lex_state = 332}, + [8119] = {.lex_state = 3748}, + [8120] = {.lex_state = 2264}, + [8121] = {.lex_state = 2264}, + [8122] = {.lex_state = 2298}, + [8123] = {.lex_state = 402}, + [8124] = {.lex_state = 2298}, + [8125] = {.lex_state = 2298}, + [8126] = {.lex_state = 2298}, + [8127] = {.lex_state = 2298}, + [8128] = {.lex_state = 32}, + [8129] = {.lex_state = 2298}, + [8130] = {.lex_state = 3748}, + [8131] = {.lex_state = 2264}, + [8132] = {.lex_state = 2298}, + [8133] = {.lex_state = 2298, .external_lex_state = 3}, + [8134] = {.lex_state = 35}, + [8135] = {.lex_state = 143}, + [8136] = {.lex_state = 2298}, + [8137] = {.lex_state = 397}, + [8138] = {.lex_state = 2298}, + [8139] = {.lex_state = 2298}, + [8140] = {.lex_state = 2298}, + [8141] = {.lex_state = 2298}, + [8142] = {.lex_state = 2298}, + [8143] = {.lex_state = 2298}, + [8144] = {.lex_state = 2298}, + [8145] = {.lex_state = 2298}, + [8146] = {.lex_state = 2298}, + [8147] = {.lex_state = 39}, + [8148] = {.lex_state = 2298}, + [8149] = {.lex_state = 3748}, + [8150] = {.lex_state = 2298}, + [8151] = {.lex_state = 2294}, + [8152] = {.lex_state = 2298}, + [8153] = {.lex_state = 2298}, + [8154] = {.lex_state = 2298}, + [8155] = {.lex_state = 3748}, + [8156] = {.lex_state = 2298}, + [8157] = {.lex_state = 3748}, + [8158] = {.lex_state = 286}, + [8159] = {.lex_state = 2298}, + [8160] = {.lex_state = 2298}, + [8161] = {.lex_state = 2298}, + [8162] = {.lex_state = 3748}, + [8163] = {.lex_state = 395}, + [8164] = {.lex_state = 226}, + [8165] = {.lex_state = 394}, + [8166] = {.lex_state = 2294}, + [8167] = {.lex_state = 2298}, + [8168] = {.lex_state = 3748}, + [8169] = {.lex_state = 226}, + [8170] = {.lex_state = 226}, + [8171] = {.lex_state = 2298}, + [8172] = {.lex_state = 2298}, + [8173] = {.lex_state = 2294}, + [8174] = {.lex_state = 2298, .external_lex_state = 4}, + [8175] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -62827,83 +74351,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(8159), - [sym_shebang] = STATE(80), - [sym__block_body_statement] = STATE(6245), - [sym__declaration] = STATE(7166), - [sym_decl_alias] = STATE(7170), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6910), - [sym__statement] = STATE(7166), - [sym_pipeline] = STATE(6842), - [sym__block_body] = STATE(7987), - [sym_cmd_identifier] = STATE(4653), - [sym_decl_def] = STATE(7170), - [sym_decl_export] = STATE(7170), - [sym_decl_extern] = STATE(7170), - [sym_decl_module] = STATE(7170), - [sym_decl_use] = STATE(7170), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_for] = STATE(7366), - [sym_ctrl_loop] = STATE(7366), - [sym_ctrl_error] = STATE(7366), - [sym_ctrl_while] = STATE(7366), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(7441), - [sym_hide_env] = STATE(7441), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6830), - [sym_overlay_hide] = STATE(6830), - [sym_overlay_new] = STATE(6830), - [sym_overlay_use] = STATE(6830), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(1564), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), + [sym_nu_script] = STATE(7790), + [sym_shebang] = STATE(68), + [sym__block_body_statement] = STATE(6699), + [sym__declaration] = STATE(6909), + [sym_decl_alias] = STATE(7077), + [sym_stmt_let] = STATE(7085), + [sym_stmt_mut] = STATE(7085), + [sym_stmt_const] = STATE(7085), + [sym_assignment] = STATE(7085), + [sym__mutable_assignment_pattern] = STATE(7069), + [sym__statement] = STATE(6909), + [sym_pipeline] = STATE(7085), + [sym__block_body] = STATE(7986), + [sym_cmd_identifier] = STATE(4789), + [sym_decl_def] = STATE(7077), + [sym_decl_export] = STATE(7077), + [sym_decl_extern] = STATE(7077), + [sym_decl_module] = STATE(7077), + [sym_decl_use] = STATE(7077), + [sym__ctrl_statement] = STATE(7085), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_for] = STATE(7233), + [sym_ctrl_loop] = STATE(7233), + [sym_ctrl_error] = STATE(7233), + [sym_ctrl_while] = STATE(7233), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_stmt_source] = STATE(7085), + [sym_stmt_register] = STATE(7085), + [sym__stmt_hide] = STATE(7085), + [sym_hide_mod] = STATE(6934), + [sym_hide_env] = STATE(6934), + [sym__stmt_overlay] = STATE(7085), + [sym_overlay_list] = STATE(6834), + [sym_overlay_hide] = STATE(6834), + [sym_overlay_new] = STATE(6834), + [sym_overlay_use] = STATE(6834), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(1550), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(7295), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(139), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(325), + [aux_sym_shebang_repeat1] = STATE(7063), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(289), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -62929,7 +74453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -62943,7 +74467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -63010,25804 +74534,39177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(125), }, [2] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8109), - [sym_cmd_identifier] = STATE(4561), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym__match_pattern_record_variable] = STATE(762), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2068), - [sym__spread_parenthesized] = STATE(690), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(691), - [sym_val_variable] = STATE(164), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2355), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(690), - [sym_record_body] = STATE(8146), - [sym_record_entry] = STATE(584), - [sym__record_key] = STATE(7811), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7791), + [sym_cmd_identifier] = STATE(4535), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym__match_pattern_record_variable] = STATE(751), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2082), + [sym__spread_parenthesized] = STATE(708), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(709), + [sym_val_variable] = STATE(335), + [sym_val_number] = STATE(2396), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2396), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(708), + [sym_record_body] = STATE(7811), + [sym_record_entry] = STATE(585), + [sym__record_key] = STATE(7812), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym__match_pattern_record_repeat1] = STATE(215), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(123), - [anon_sym_alias] = ACTIONS(125), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(143), - [anon_sym_export_DASHenv] = ACTIONS(145), - [anon_sym_extern] = ACTIONS(147), - [anon_sym_module] = ACTIONS(149), - [anon_sym_use] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(157), - [anon_sym_error] = ACTIONS(159), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(163), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_in2] = ACTIONS(169), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_make] = ACTIONS(169), - [anon_sym_while] = ACTIONS(173), - [anon_sym_do] = ACTIONS(175), - [anon_sym_if] = ACTIONS(177), - [anon_sym_else] = ACTIONS(169), - [anon_sym_match] = ACTIONS(179), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(187), - [anon_sym_catch] = ACTIONS(169), - [anon_sym_return] = ACTIONS(189), - [anon_sym_source] = ACTIONS(191), - [anon_sym_source_DASHenv] = ACTIONS(191), - [anon_sym_register] = ACTIONS(193), - [anon_sym_hide] = ACTIONS(195), - [anon_sym_hide_DASHenv] = ACTIONS(197), - [anon_sym_overlay] = ACTIONS(199), - [anon_sym_as] = ACTIONS(169), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(207), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(243), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym__match_pattern_record_repeat1] = STATE(345), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(127), + [anon_sym_alias] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_DASHenv] = ACTIONS(131), + [anon_sym_mut] = ACTIONS(133), + [anon_sym_const] = ACTIONS(135), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(147), + [anon_sym_export_DASHenv] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(151), + [anon_sym_module] = ACTIONS(153), + [anon_sym_use] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_error] = ACTIONS(163), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_in2] = ACTIONS(173), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_make] = ACTIONS(173), + [anon_sym_while] = ACTIONS(177), + [anon_sym_do] = ACTIONS(179), + [anon_sym_if] = ACTIONS(181), + [anon_sym_else] = ACTIONS(173), + [anon_sym_match] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(173), + [anon_sym_return] = ACTIONS(193), + [anon_sym_source] = ACTIONS(195), + [anon_sym_source_DASHenv] = ACTIONS(195), + [anon_sym_register] = ACTIONS(197), + [anon_sym_hide] = ACTIONS(199), + [anon_sym_hide_DASHenv] = ACTIONS(201), + [anon_sym_overlay] = ACTIONS(203), + [anon_sym_as] = ACTIONS(173), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(219), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(247), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [3] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7801), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8158), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8111), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7822), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [4] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8010), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8158), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8051), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7822), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [5] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8109), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8146), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7791), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7811), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [6] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7814), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8163), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7772), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7789), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [7] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8131), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8163), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7784), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7789), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [8] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8118), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8146), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8136), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7811), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [9] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8131), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7762), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7784), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8172), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [10] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7758), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7923), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8171), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8108), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [11] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7919), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8062), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8107), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8167), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [12] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8045), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7804), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8053), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7964), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [13] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7798), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7781), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7963), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7886), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [14] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8164), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7775), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7873), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7894), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [15] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7774), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7976), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7890), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8102), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [16] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7972), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7989), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8066), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7721), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [17] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8164), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7941), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7873), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7972), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [18] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7962), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7754), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8148), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7778), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [19] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7935), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7854), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7970), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7869), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [20] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7774), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7936), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7890), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7934), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [21] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7753), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7983), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7776), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7996), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(35), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [22] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7845), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8041), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7867), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8050), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [23] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7877), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8016), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [24] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7796), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8141), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [25] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7881), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(141), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7940), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [26] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8123), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8129), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [27] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7926), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8029), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [28] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7837), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8022), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [29] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7719), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7783), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [30] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8128), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7787), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [31] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7897), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8145), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [32] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7821), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8159), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [33] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8015), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7779), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [34] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7765), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8039), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [35] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8021), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7797), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [36] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7769), - [sym_cmd_identifier] = STATE(4545), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(2024), - [sym__spread_parenthesized] = STATE(7503), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(1492), - [sym_val_number] = STATE(2390), - [sym__val_number_decimal] = STATE(803), - [sym__val_number] = STATE(2451), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2390), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7880), + [sym_cmd_identifier] = STATE(4585), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(140), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2050), + [sym__spread_parenthesized] = STATE(7650), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(1466), + [sym_val_number] = STATE(2365), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(2411), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2365), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(251), - [anon_sym_alias] = ACTIONS(253), - [anon_sym_let] = ACTIONS(255), - [anon_sym_let_DASHenv] = ACTIONS(255), - [anon_sym_mut] = ACTIONS(257), - [anon_sym_const] = ACTIONS(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [sym__newline] = ACTIONS(137), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(261), - [anon_sym_export_DASHenv] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_use] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(271), - [anon_sym_error] = ACTIONS(273), - [anon_sym_DASH2] = ACTIONS(161), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(283), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(287), - [anon_sym_if] = ACTIONS(289), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(295), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(297), - [anon_sym_source] = ACTIONS(299), - [anon_sym_source_DASHenv] = ACTIONS(299), - [anon_sym_register] = ACTIONS(301), - [anon_sym_hide] = ACTIONS(303), - [anon_sym_hide_DASHenv] = ACTIONS(305), - [anon_sym_overlay] = ACTIONS(307), - [anon_sym_as] = ACTIONS(281), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_shebang_repeat1] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(259), + [anon_sym_alias] = ACTIONS(261), + [anon_sym_let] = ACTIONS(263), + [anon_sym_let_DASHenv] = ACTIONS(263), + [anon_sym_mut] = ACTIONS(265), + [anon_sym_const] = ACTIONS(267), + [aux_sym_cmd_identifier_token1] = ACTIONS(137), + [aux_sym_cmd_identifier_token2] = ACTIONS(139), + [aux_sym_cmd_identifier_token3] = ACTIONS(139), + [aux_sym_cmd_identifier_token4] = ACTIONS(139), + [aux_sym_cmd_identifier_token5] = ACTIONS(139), + [aux_sym_cmd_identifier_token6] = ACTIONS(139), + [aux_sym_cmd_identifier_token7] = ACTIONS(139), + [aux_sym_cmd_identifier_token8] = ACTIONS(137), + [aux_sym_cmd_identifier_token9] = ACTIONS(137), + [aux_sym_cmd_identifier_token10] = ACTIONS(139), + [aux_sym_cmd_identifier_token11] = ACTIONS(139), + [aux_sym_cmd_identifier_token12] = ACTIONS(137), + [aux_sym_cmd_identifier_token13] = ACTIONS(137), + [aux_sym_cmd_identifier_token14] = ACTIONS(137), + [aux_sym_cmd_identifier_token15] = ACTIONS(137), + [aux_sym_cmd_identifier_token16] = ACTIONS(139), + [aux_sym_cmd_identifier_token17] = ACTIONS(139), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(139), + [aux_sym_cmd_identifier_token20] = ACTIONS(139), + [aux_sym_cmd_identifier_token21] = ACTIONS(139), + [aux_sym_cmd_identifier_token22] = ACTIONS(139), + [aux_sym_cmd_identifier_token23] = ACTIONS(139), + [aux_sym_cmd_identifier_token24] = ACTIONS(139), + [aux_sym_cmd_identifier_token25] = ACTIONS(139), + [aux_sym_cmd_identifier_token26] = ACTIONS(139), + [aux_sym_cmd_identifier_token27] = ACTIONS(139), + [aux_sym_cmd_identifier_token28] = ACTIONS(139), + [aux_sym_cmd_identifier_token29] = ACTIONS(139), + [aux_sym_cmd_identifier_token30] = ACTIONS(139), + [aux_sym_cmd_identifier_token31] = ACTIONS(139), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(139), + [aux_sym_cmd_identifier_token34] = ACTIONS(137), + [aux_sym_cmd_identifier_token35] = ACTIONS(139), + [aux_sym_cmd_identifier_token36] = ACTIONS(139), + [aux_sym_cmd_identifier_token37] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(137), + [aux_sym_cmd_identifier_token39] = ACTIONS(139), + [aux_sym_cmd_identifier_token40] = ACTIONS(139), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(269), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(279), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(165), + [anon_sym_break] = ACTIONS(283), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(287), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(291), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(293), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(297), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(303), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(305), + [anon_sym_source] = ACTIONS(307), + [anon_sym_source_DASHenv] = ACTIONS(307), + [anon_sym_register] = ACTIONS(309), + [anon_sym_hide] = ACTIONS(311), + [anon_sym_hide_DASHenv] = ACTIONS(313), + [anon_sym_overlay] = ACTIONS(315), + [anon_sym_as] = ACTIONS(289), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(221), + [aux_sym__val_number_decimal_token2] = ACTIONS(223), + [aux_sym__val_number_decimal_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token4] = ACTIONS(227), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, [37] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7960), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7961), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [38] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7814), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7772), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [39] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7731), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8105), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [40] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7801), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8051), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [41] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7837), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8111), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [42] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8010), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7784), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(42), [aux_sym_shebang_repeat1] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [43] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8131), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8022), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [44] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7796), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7783), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [45] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8128), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7787), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [46] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8123), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8141), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8108), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7764), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(469), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(477), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7928), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8001), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(483), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), [sym__parenthesized_body] = STATE(7844), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(487), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(499), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8011), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7817), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(469), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(503), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7934), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7933), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(493), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(507), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8033), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8109), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(497), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7969), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8106), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7982), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7801), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(505), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8040), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8063), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(509), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7907), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7864), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), [anon_sym_RPAREN2] = ACTIONS(513), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7856), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7993), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(517), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(523), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8124), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8153), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(505), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7911), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8048), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(523), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(529), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8013), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8104), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(527), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [61] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8036), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(531), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [62] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7749), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [63] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7800), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [64] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7863), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [65] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7918), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(501), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8129), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(469), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [67] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7882), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7778), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7969), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8064), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8022), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7956), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [73] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7771), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7750), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8113), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7878), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7722), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7791), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [79] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7945), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [80] = { - [sym__block_body_statement] = STATE(6245), - [sym__declaration] = STATE(7166), - [sym_decl_alias] = STATE(7170), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6910), - [sym__statement] = STATE(7166), - [sym_pipeline] = STATE(6842), - [sym__block_body] = STATE(7876), - [sym_cmd_identifier] = STATE(4653), - [sym_decl_def] = STATE(7170), - [sym_decl_export] = STATE(7170), - [sym_decl_extern] = STATE(7170), - [sym_decl_module] = STATE(7170), - [sym_decl_use] = STATE(7170), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_for] = STATE(7366), - [sym_ctrl_loop] = STATE(7366), - [sym_ctrl_error] = STATE(7366), - [sym_ctrl_while] = STATE(7366), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(7441), - [sym_hide_env] = STATE(7441), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6830), - [sym_overlay_hide] = STATE(6830), - [sym_overlay_new] = STATE(6830), - [sym_overlay_use] = STATE(6830), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(1564), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(139), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(569), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [81] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7998), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(81), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7992), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8136), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8047), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(575), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8148), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8023), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7891), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7988), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7822), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7950), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7795), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7953), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [93] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8059), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7975), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7866), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8017), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7805), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8151), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [99] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7797), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7841), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7899), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8011), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [103] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(7773), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8124), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [105] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8044), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [106] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8132), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(133), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [107] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7836), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [108] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8170), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [109] = { - [sym__block_body_statement] = STATE(6119), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [110] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7883), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [111] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8126), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [112] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8145), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [113] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7815), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [114] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7924), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [115] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8035), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(115), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [116] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8097), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [117] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7894), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [118] = { - [sym__block_body_statement_parenthesized] = STATE(5887), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym__parenthesized_body] = STATE(8157), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(118), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [119] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7951), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [120] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7714), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [121] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7860), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [122] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7850), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [123] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7817), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [124] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7763), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [125] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7879), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [126] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8009), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [127] = { - [sym__block_body_statement_parenthesized] = STATE(5821), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), [aux_sym__parenthesized_body_repeat2] = STATE(150), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [128] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8053), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(533), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [129] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7752), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [130] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(133), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [131] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8116), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [61] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8059), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(537), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [132] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8018), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [62] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7959), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(541), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [133] = { - [sym__block_body_statement] = STATE(6119), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym__block_body_repeat2] = STATE(149), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [63] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7735), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(545), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [134] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(8112), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [64] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7866), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(549), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [135] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7767), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [65] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8143), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(523), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [136] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7748), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(133), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8010), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(495), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [137] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7784), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8161), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [138] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7874), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(198), + [68] = { + [sym__block_body_statement] = STATE(6699), + [sym__declaration] = STATE(6909), + [sym_decl_alias] = STATE(7077), + [sym_stmt_let] = STATE(7085), + [sym_stmt_mut] = STATE(7085), + [sym_stmt_const] = STATE(7085), + [sym_assignment] = STATE(7085), + [sym__mutable_assignment_pattern] = STATE(7069), + [sym__statement] = STATE(6909), + [sym_pipeline] = STATE(7085), + [sym__block_body] = STATE(7851), + [sym_cmd_identifier] = STATE(4789), + [sym_decl_def] = STATE(7077), + [sym_decl_export] = STATE(7077), + [sym_decl_extern] = STATE(7077), + [sym_decl_module] = STATE(7077), + [sym_decl_use] = STATE(7077), + [sym__ctrl_statement] = STATE(7085), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_for] = STATE(7233), + [sym_ctrl_loop] = STATE(7233), + [sym_ctrl_error] = STATE(7233), + [sym_ctrl_while] = STATE(7233), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_stmt_source] = STATE(7085), + [sym_stmt_register] = STATE(7085), + [sym__stmt_hide] = STATE(7085), + [sym_hide_mod] = STATE(6934), + [sym_hide_env] = STATE(6934), + [sym__stmt_overlay] = STATE(7085), + [sym_overlay_list] = STATE(6834), + [sym_overlay_hide] = STATE(6834), + [sym_overlay_new] = STATE(6834), + [sym_overlay_use] = STATE(6834), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(1550), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(185), [aux_sym__block_body_repeat1] = STATE(109), [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [139] = { - [sym__block_body_statement] = STATE(6272), - [sym__declaration] = STATE(7166), - [sym_decl_alias] = STATE(7170), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6910), - [sym__statement] = STATE(7166), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4653), - [sym_decl_def] = STATE(7170), - [sym_decl_export] = STATE(7170), - [sym_decl_extern] = STATE(7170), - [sym_decl_module] = STATE(7170), - [sym_decl_use] = STATE(7170), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_for] = STATE(7366), - [sym_ctrl_loop] = STATE(7366), - [sym_ctrl_error] = STATE(7366), - [sym_ctrl_while] = STATE(7366), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(7441), - [sym_hide_env] = STATE(7441), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6830), - [sym_overlay_hide] = STATE(6830), - [sym_overlay_new] = STATE(6830), - [sym_overlay_use] = STATE(6830), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(1564), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(228), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(325), - [ts_builtin_sym_end] = ACTIONS(627), + [aux_sym_pipe_element_repeat2] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(557), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -88831,7 +113728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -88845,7 +113742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -88912,6013 +113809,23519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [140] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7887), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7957), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [141] = { - [sym__block_body_statement] = STATE(6234), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym__block_body] = STATE(7730), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [70] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7898), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [142] = { - [sym__block_body_statement] = STATE(6272), - [sym__declaration] = STATE(7166), - [sym_decl_alias] = STATE(7170), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6910), - [sym__statement] = STATE(7166), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4653), - [sym_decl_def] = STATE(7170), - [sym_decl_export] = STATE(7170), - [sym_decl_extern] = STATE(7170), - [sym_decl_module] = STATE(7170), - [sym_decl_use] = STATE(7170), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_for] = STATE(7366), - [sym_ctrl_loop] = STATE(7366), - [sym_ctrl_error] = STATE(7366), - [sym_ctrl_while] = STATE(7366), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(7441), - [sym_hide_env] = STATE(7441), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6830), - [sym_overlay_hide] = STATE(6830), - [sym_overlay_new] = STATE(6830), - [sym_overlay_use] = STATE(6830), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(1564), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(325), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7821), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [143] = { - [sym__block_body_statement] = STATE(6075), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7876), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [144] = { - [sym__block_body_statement] = STATE(7347), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1623), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(333), - [anon_sym_export] = ACTIONS(631), - [anon_sym_alias] = ACTIONS(634), - [anon_sym_let] = ACTIONS(637), - [anon_sym_let_DASHenv] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(640), - [anon_sym_const] = ACTIONS(643), - [aux_sym_cmd_identifier_token1] = ACTIONS(646), - [aux_sym_cmd_identifier_token2] = ACTIONS(649), - [aux_sym_cmd_identifier_token3] = ACTIONS(649), - [aux_sym_cmd_identifier_token4] = ACTIONS(649), - [aux_sym_cmd_identifier_token5] = ACTIONS(649), - [aux_sym_cmd_identifier_token6] = ACTIONS(649), - [aux_sym_cmd_identifier_token7] = ACTIONS(649), - [aux_sym_cmd_identifier_token8] = ACTIONS(646), - [aux_sym_cmd_identifier_token9] = ACTIONS(646), - [aux_sym_cmd_identifier_token10] = ACTIONS(649), - [aux_sym_cmd_identifier_token11] = ACTIONS(649), - [aux_sym_cmd_identifier_token12] = ACTIONS(646), - [aux_sym_cmd_identifier_token13] = ACTIONS(646), - [aux_sym_cmd_identifier_token14] = ACTIONS(646), - [aux_sym_cmd_identifier_token15] = ACTIONS(646), - [aux_sym_cmd_identifier_token16] = ACTIONS(649), - [aux_sym_cmd_identifier_token17] = ACTIONS(649), - [aux_sym_cmd_identifier_token18] = ACTIONS(649), - [aux_sym_cmd_identifier_token19] = ACTIONS(649), - [aux_sym_cmd_identifier_token20] = ACTIONS(649), - [aux_sym_cmd_identifier_token21] = ACTIONS(649), - [aux_sym_cmd_identifier_token22] = ACTIONS(649), - [aux_sym_cmd_identifier_token23] = ACTIONS(649), - [aux_sym_cmd_identifier_token24] = ACTIONS(649), - [aux_sym_cmd_identifier_token25] = ACTIONS(649), - [aux_sym_cmd_identifier_token26] = ACTIONS(649), - [aux_sym_cmd_identifier_token27] = ACTIONS(649), - [aux_sym_cmd_identifier_token28] = ACTIONS(649), - [aux_sym_cmd_identifier_token29] = ACTIONS(649), - [aux_sym_cmd_identifier_token30] = ACTIONS(649), - [aux_sym_cmd_identifier_token31] = ACTIONS(649), - [aux_sym_cmd_identifier_token32] = ACTIONS(649), - [aux_sym_cmd_identifier_token33] = ACTIONS(649), - [aux_sym_cmd_identifier_token34] = ACTIONS(646), - [aux_sym_cmd_identifier_token35] = ACTIONS(649), - [aux_sym_cmd_identifier_token36] = ACTIONS(649), - [aux_sym_cmd_identifier_token37] = ACTIONS(649), - [aux_sym_cmd_identifier_token38] = ACTIONS(646), - [aux_sym_cmd_identifier_token39] = ACTIONS(649), - [aux_sym_cmd_identifier_token40] = ACTIONS(649), - [anon_sym_def] = ACTIONS(652), - [anon_sym_export_DASHenv] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_module] = ACTIONS(661), - [anon_sym_use] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(673), - [anon_sym_error] = ACTIONS(676), - [anon_sym_DASH2] = ACTIONS(679), - [anon_sym_break] = ACTIONS(682), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_for] = ACTIONS(688), - [anon_sym_loop] = ACTIONS(691), - [anon_sym_while] = ACTIONS(694), - [anon_sym_do] = ACTIONS(697), - [anon_sym_if] = ACTIONS(700), - [anon_sym_match] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(709), - [anon_sym_try] = ACTIONS(712), - [anon_sym_return] = ACTIONS(715), - [anon_sym_source] = ACTIONS(718), - [anon_sym_source_DASHenv] = ACTIONS(718), - [anon_sym_register] = ACTIONS(721), - [anon_sym_hide] = ACTIONS(724), - [anon_sym_hide_DASHenv] = ACTIONS(727), - [anon_sym_overlay] = ACTIONS(730), - [anon_sym_where] = ACTIONS(733), - [aux_sym_expr_unary_token1] = ACTIONS(736), - [anon_sym_DOT_DOT_EQ] = ACTIONS(739), - [anon_sym_DOT_DOT_LT] = ACTIONS(739), - [anon_sym_null] = ACTIONS(742), - [anon_sym_true] = ACTIONS(745), - [anon_sym_false] = ACTIONS(745), - [aux_sym__val_number_decimal_token1] = ACTIONS(748), - [aux_sym__val_number_decimal_token2] = ACTIONS(751), - [aux_sym__val_number_decimal_token3] = ACTIONS(754), - [aux_sym__val_number_decimal_token4] = ACTIONS(757), - [aux_sym__val_number_token1] = ACTIONS(760), - [aux_sym__val_number_token2] = ACTIONS(760), - [aux_sym__val_number_token3] = ACTIONS(760), - [aux_sym__val_number_token4] = ACTIONS(763), - [aux_sym__val_number_token5] = ACTIONS(763), - [aux_sym__val_number_token6] = ACTIONS(763), - [anon_sym_0b] = ACTIONS(766), - [anon_sym_0o] = ACTIONS(769), - [anon_sym_0x] = ACTIONS(769), - [sym_val_date] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(775), - [sym__str_single_quotes] = ACTIONS(778), - [sym__str_back_ticks] = ACTIONS(778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), - [aux_sym_env_var_token1] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(790), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(793), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7862), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [145] = { - [sym__block_body_statement_parenthesized] = STATE(5821), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(151), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7766), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [146] = { - [sym__block_body_statement] = STATE(6784), - [sym__declaration] = STATE(7166), - [sym_decl_alias] = STATE(7170), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6910), - [sym__statement] = STATE(7166), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4653), - [sym_decl_def] = STATE(7170), - [sym_decl_export] = STATE(7170), - [sym_decl_extern] = STATE(7170), - [sym_decl_module] = STATE(7170), - [sym_decl_use] = STATE(7170), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_for] = STATE(7366), - [sym_ctrl_loop] = STATE(7366), - [sym_ctrl_error] = STATE(7366), - [sym_ctrl_while] = STATE(7366), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(7441), - [sym_hide_env] = STATE(7441), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6830), - [sym_overlay_hide] = STATE(6830), - [sym_overlay_new] = STATE(6830), - [sym_overlay_use] = STATE(6830), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(1564), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(325), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7788), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [147] = { - [sym__block_body_statement] = STATE(6119), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1570), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(316), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7883), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [148] = { - [sym__block_body_statement] = STATE(6119), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8127), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [149] = { - [sym__block_body_statement] = STATE(6075), - [sym__declaration] = STATE(6250), - [sym_decl_alias] = STATE(6251), - [sym_stmt_let] = STATE(6256), - [sym_stmt_mut] = STATE(6256), - [sym_stmt_const] = STATE(6256), - [sym_assignment] = STATE(6256), - [sym__mutable_assignment_pattern] = STATE(6257), - [sym__statement] = STATE(6250), - [sym_pipeline] = STATE(6256), - [sym_cmd_identifier] = STATE(4546), - [sym_decl_def] = STATE(6251), - [sym_decl_export] = STATE(6251), - [sym_decl_extern] = STATE(6251), - [sym_decl_module] = STATE(6251), - [sym_decl_use] = STATE(6251), - [sym__ctrl_statement] = STATE(6256), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_stmt_source] = STATE(6256), - [sym_stmt_register] = STATE(6256), - [sym__stmt_hide] = STATE(6256), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(6256), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1549), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(323), - [anon_sym_export] = ACTIONS(615), - [anon_sym_alias] = ACTIONS(617), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_const] = ACTIONS(623), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8142), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [150] = { - [sym__block_body_statement_parenthesized] = STATE(5740), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1546), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym__parenthesized_body_repeat2] = STATE(151), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8063), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [151] = { - [sym__block_body_statement_parenthesized] = STATE(6348), - [sym__declaration_parenthesized] = STATE(7280), - [sym_decl_alias_parenthesized] = STATE(7282), - [sym_stmt_let_parenthesized] = STATE(7289), - [sym_stmt_mut_parenthesized] = STATE(7289), - [sym_stmt_const_parenthesized] = STATE(7289), - [sym_assignment_parenthesized] = STATE(7289), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), - [sym__statement_parenthesized] = STATE(7280), - [sym_pipeline_parenthesized] = STATE(7289), - [sym_cmd_identifier] = STATE(4794), - [sym_decl_def] = STATE(7282), - [sym_decl_export] = STATE(7282), - [sym_decl_extern] = STATE(7282), - [sym_decl_module] = STATE(7282), - [sym_decl_use] = STATE(7282), - [sym__ctrl_statement] = STATE(7289), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_for] = STATE(6260), - [sym_ctrl_loop] = STATE(6260), - [sym_ctrl_error] = STATE(6260), - [sym_ctrl_while] = STATE(6260), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_stmt_source] = STATE(7289), - [sym_stmt_register] = STATE(7289), - [sym__stmt_hide] = STATE(7289), - [sym_hide_mod] = STATE(6263), - [sym_hide_env] = STATE(6263), - [sym__stmt_overlay] = STATE(7289), - [sym_overlay_list] = STATE(6264), - [sym_overlay_hide] = STATE(6264), - [sym_overlay_new] = STATE(6264), - [sym_overlay_use] = STATE(6264), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(1607), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(151), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(151), - [anon_sym_export] = ACTIONS(796), - [anon_sym_alias] = ACTIONS(799), - [anon_sym_let] = ACTIONS(802), - [anon_sym_let_DASHenv] = ACTIONS(802), - [anon_sym_mut] = ACTIONS(805), - [anon_sym_const] = ACTIONS(808), - [aux_sym_cmd_identifier_token1] = ACTIONS(811), - [aux_sym_cmd_identifier_token2] = ACTIONS(814), - [aux_sym_cmd_identifier_token3] = ACTIONS(814), - [aux_sym_cmd_identifier_token4] = ACTIONS(814), - [aux_sym_cmd_identifier_token5] = ACTIONS(814), - [aux_sym_cmd_identifier_token6] = ACTIONS(814), - [aux_sym_cmd_identifier_token7] = ACTIONS(814), - [aux_sym_cmd_identifier_token8] = ACTIONS(811), - [aux_sym_cmd_identifier_token9] = ACTIONS(811), - [aux_sym_cmd_identifier_token10] = ACTIONS(814), - [aux_sym_cmd_identifier_token11] = ACTIONS(814), - [aux_sym_cmd_identifier_token12] = ACTIONS(811), - [aux_sym_cmd_identifier_token13] = ACTIONS(811), - [aux_sym_cmd_identifier_token14] = ACTIONS(811), - [aux_sym_cmd_identifier_token15] = ACTIONS(811), - [aux_sym_cmd_identifier_token16] = ACTIONS(814), - [aux_sym_cmd_identifier_token17] = ACTIONS(814), - [aux_sym_cmd_identifier_token18] = ACTIONS(814), - [aux_sym_cmd_identifier_token19] = ACTIONS(814), - [aux_sym_cmd_identifier_token20] = ACTIONS(814), - [aux_sym_cmd_identifier_token21] = ACTIONS(814), - [aux_sym_cmd_identifier_token22] = ACTIONS(814), - [aux_sym_cmd_identifier_token23] = ACTIONS(814), - [aux_sym_cmd_identifier_token24] = ACTIONS(814), - [aux_sym_cmd_identifier_token25] = ACTIONS(814), - [aux_sym_cmd_identifier_token26] = ACTIONS(814), - [aux_sym_cmd_identifier_token27] = ACTIONS(814), - [aux_sym_cmd_identifier_token28] = ACTIONS(814), - [aux_sym_cmd_identifier_token29] = ACTIONS(814), - [aux_sym_cmd_identifier_token30] = ACTIONS(814), - [aux_sym_cmd_identifier_token31] = ACTIONS(814), - [aux_sym_cmd_identifier_token32] = ACTIONS(814), - [aux_sym_cmd_identifier_token33] = ACTIONS(814), - [aux_sym_cmd_identifier_token34] = ACTIONS(811), - [aux_sym_cmd_identifier_token35] = ACTIONS(814), - [aux_sym_cmd_identifier_token36] = ACTIONS(814), - [aux_sym_cmd_identifier_token37] = ACTIONS(814), - [aux_sym_cmd_identifier_token38] = ACTIONS(811), - [aux_sym_cmd_identifier_token39] = ACTIONS(814), - [aux_sym_cmd_identifier_token40] = ACTIONS(814), - [anon_sym_def] = ACTIONS(817), - [anon_sym_export_DASHenv] = ACTIONS(820), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_module] = ACTIONS(826), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_error] = ACTIONS(841), - [anon_sym_DASH2] = ACTIONS(844), - [anon_sym_break] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_for] = ACTIONS(853), - [anon_sym_loop] = ACTIONS(856), - [anon_sym_while] = ACTIONS(859), - [anon_sym_do] = ACTIONS(862), - [anon_sym_if] = ACTIONS(865), - [anon_sym_match] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(874), - [anon_sym_try] = ACTIONS(877), - [anon_sym_return] = ACTIONS(880), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(886), - [anon_sym_hide] = ACTIONS(889), - [anon_sym_hide_DASHenv] = ACTIONS(892), - [anon_sym_overlay] = ACTIONS(895), - [anon_sym_where] = ACTIONS(898), - [aux_sym_expr_unary_token1] = ACTIONS(901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(904), - [anon_sym_DOT_DOT_LT] = ACTIONS(904), - [anon_sym_null] = ACTIONS(907), - [anon_sym_true] = ACTIONS(910), - [anon_sym_false] = ACTIONS(910), - [aux_sym__val_number_decimal_token1] = ACTIONS(913), - [aux_sym__val_number_decimal_token2] = ACTIONS(916), - [aux_sym__val_number_decimal_token3] = ACTIONS(919), - [aux_sym__val_number_decimal_token4] = ACTIONS(922), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(928), - [aux_sym__val_number_token5] = ACTIONS(928), - [aux_sym__val_number_token6] = ACTIONS(928), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(934), - [anon_sym_0x] = ACTIONS(934), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), - [aux_sym_env_var_token1] = ACTIONS(952), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(958), + [80] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8138), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [152] = { - [sym_cell_path] = STATE(165), - [sym_path] = STATE(161), - [sym_comment] = STATE(152), - [aux_sym_cell_path_repeat1] = STATE(153), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [sym__newline] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(961), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [aux_sym_record_entry_token1] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [81] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8023), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [153] = { - [sym_path] = STATE(161), - [sym_comment] = STATE(153), - [aux_sym_cell_path_repeat1] = STATE(154), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [sym__newline] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(967), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(967), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [aux_sym_record_entry_token1] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7775), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [154] = { - [sym_path] = STATE(161), - [sym_comment] = STATE(154), - [aux_sym_cell_path_repeat1] = STATE(154), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(973), - [aux_sym_cmd_identifier_token23] = ACTIONS(973), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(973), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(973), - [aux_sym_cmd_identifier_token28] = ACTIONS(973), - [aux_sym_cmd_identifier_token29] = ACTIONS(973), - [aux_sym_cmd_identifier_token30] = ACTIONS(973), - [aux_sym_cmd_identifier_token31] = ACTIONS(973), - [aux_sym_cmd_identifier_token32] = ACTIONS(973), - [aux_sym_cmd_identifier_token33] = ACTIONS(973), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(973), - [aux_sym_cmd_identifier_token36] = ACTIONS(973), - [aux_sym_cmd_identifier_token37] = ACTIONS(973), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [aux_sym_record_entry_token1] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8035), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [155] = { - [sym_comment] = STATE(155), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(978), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [aux_sym_record_entry_token1] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8143), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [156] = { - [sym_comment] = STATE(156), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [aux_sym_record_entry_token1] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7948), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [157] = { - [sym_comment] = STATE(157), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8160), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [158] = { - [sym_comment] = STATE(158), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7780), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [159] = { - [sym_comment] = STATE(159), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [88] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7754), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [160] = { - [sym_comment] = STATE(160), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8052), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [161] = { - [sym_comment] = STATE(161), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [aux_sym_record_entry_token1] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8012), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [162] = { - [sym_comment] = STATE(162), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1012), - [anon_sym_DASH_EQ] = ACTIONS(1012), - [anon_sym_STAR_EQ] = ACTIONS(1012), - [anon_sym_SLASH_EQ] = ACTIONS(1012), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [aux_sym_record_entry_token1] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7800), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [163] = { - [sym_comment] = STATE(163), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [92] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7882), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [164] = { - [sym_comment] = STATE(164), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1026), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1032), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1042), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1024), + [93] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7947), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(93), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [165] = { - [sym_comment] = STATE(165), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [aux_sym_cmd_identifier_token37] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_GT2] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_STAR2] = ACTIONS(1044), - [anon_sym_and2] = ACTIONS(1046), - [anon_sym_xor2] = ACTIONS(1046), - [anon_sym_or2] = ACTIONS(1046), - [anon_sym_not_DASHin2] = ACTIONS(1046), - [anon_sym_starts_DASHwith2] = ACTIONS(1046), - [anon_sym_ends_DASHwith2] = ACTIONS(1046), - [anon_sym_EQ_EQ2] = ACTIONS(1046), - [anon_sym_BANG_EQ2] = ACTIONS(1046), - [anon_sym_LT2] = ACTIONS(1044), - [anon_sym_LT_EQ2] = ACTIONS(1046), - [anon_sym_GT_EQ2] = ACTIONS(1046), - [anon_sym_EQ_TILDE2] = ACTIONS(1046), - [anon_sym_BANG_TILDE2] = ACTIONS(1046), - [anon_sym_STAR_STAR2] = ACTIONS(1046), - [anon_sym_PLUS_PLUS2] = ACTIONS(1044), - [anon_sym_SLASH2] = ACTIONS(1044), - [anon_sym_mod2] = ACTIONS(1044), - [anon_sym_SLASH_SLASH2] = ACTIONS(1046), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1046), - [anon_sym_bit_DASHshr2] = ACTIONS(1046), - [anon_sym_bit_DASHand2] = ACTIONS(1046), - [anon_sym_bit_DASHxor2] = ACTIONS(1046), - [anon_sym_bit_DASHor2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), + [94] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8009), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(94), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [166] = { - [sym_pipeline] = STATE(6330), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [95] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8054), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(95), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [167] = { - [sym_pipeline_parenthesized] = STATE(7251), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(167), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [96] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8150), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(96), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [168] = { - [sym_pipeline] = STATE(7432), - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7765), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [169] = { - [sym_pipeline_parenthesized] = STATE(7252), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(169), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7755), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [170] = { - [sym_pipeline] = STATE(6248), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [99] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7794), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(99), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [171] = { - [sym_pipeline_parenthesized] = STATE(7130), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [100] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7829), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(100), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [172] = { - [sym_pipeline] = STATE(6254), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [101] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7726), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [173] = { - [sym_pipeline] = STATE(6269), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [102] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8001), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(102), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [174] = { - [sym_pipeline] = STATE(6324), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(7756), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [175] = { - [sym_pipeline] = STATE(6330), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [104] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8156), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [176] = { - [sym_pipeline] = STATE(7433), - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [105] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8034), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [177] = { - [sym_pipeline_parenthesized] = STATE(6892), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [106] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7983), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [178] = { - [sym_pipeline] = STATE(7250), - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(325), + [107] = { + [sym__block_body_statement] = STATE(6162), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(107), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(196), + [aux_sym__block_body_repeat2] = STATE(143), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [108] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7919), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(108), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [109] = { + [sym__block_body_statement] = STATE(6254), + [sym__declaration] = STATE(6909), + [sym_decl_alias] = STATE(7077), + [sym_stmt_let] = STATE(7085), + [sym_stmt_mut] = STATE(7085), + [sym_stmt_const] = STATE(7085), + [sym_assignment] = STATE(7085), + [sym__mutable_assignment_pattern] = STATE(7069), + [sym__statement] = STATE(6909), + [sym_pipeline] = STATE(7085), + [sym_cmd_identifier] = STATE(4789), + [sym_decl_def] = STATE(7077), + [sym_decl_export] = STATE(7077), + [sym_decl_extern] = STATE(7077), + [sym_decl_module] = STATE(7077), + [sym_decl_use] = STATE(7077), + [sym__ctrl_statement] = STATE(7085), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_for] = STATE(7233), + [sym_ctrl_loop] = STATE(7233), + [sym_ctrl_error] = STATE(7233), + [sym_ctrl_while] = STATE(7233), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_stmt_source] = STATE(7085), + [sym_stmt_register] = STATE(7085), + [sym__stmt_hide] = STATE(7085), + [sym_hide_mod] = STATE(6934), + [sym_hide_env] = STATE(6934), + [sym__stmt_overlay] = STATE(7085), + [sym_overlay_list] = STATE(6834), + [sym_overlay_hide] = STATE(6834), + [sym_overlay_new] = STATE(6834), + [sym_overlay_use] = STATE(6834), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(1550), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(109), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(637), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -94926,17 +137329,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(21), [aux_sym_cmd_identifier_token6] = ACTIONS(21), [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), [aux_sym_cmd_identifier_token9] = ACTIONS(19), [aux_sym_cmd_identifier_token10] = ACTIONS(21), [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -94950,7 +137353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -94959,12 +137362,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(19), [aux_sym_cmd_identifier_token39] = ACTIONS(21), [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), [anon_sym_do] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), [anon_sym_match] = ACTIONS(61), @@ -94972,6 +137386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), [anon_sym_where] = ACTIONS(81), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), @@ -95000,2966 +137420,20023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [179] = { - [sym_pipeline_parenthesized] = STATE(6892), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [110] = { + [sym__block_body_statement] = STATE(6162), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(110), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(196), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [180] = { - [sym_pipeline] = STATE(6254), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [111] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8026), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(111), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [181] = { - [sym_pipeline] = STATE(6269), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [112] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7834), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [182] = { - [sym_pipeline] = STATE(6324), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [113] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8025), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [183] = { - [sym_pipeline] = STATE(6330), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [114] = { + [sym__block_body_statement_parenthesized] = STATE(5986), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym__parenthesized_body] = STATE(8061), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(114), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [184] = { - [sym_pipeline] = STATE(6867), - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [115] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8033), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [116] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7846), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [117] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7831), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(117), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [118] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7786), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [119] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7810), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(119), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [120] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8140), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(120), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [121] = { + [sym__block_body_statement_parenthesized] = STATE(5736), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(121), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(149), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [122] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7892), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(122), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [123] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8125), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [124] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7738), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(124), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [125] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8013), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [185] = { - [sym_pipeline] = STATE(6939), - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4745), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [126] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7809), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(126), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [186] = { - [sym_pipeline_parenthesized] = STATE(7251), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [127] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8126), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [187] = { - [sym_pipeline_parenthesized] = STATE(7252), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [128] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7727), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(128), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [188] = { - [sym_pipeline_parenthesized] = STATE(7130), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [129] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7938), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(129), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [189] = { - [sym_pipeline_parenthesized] = STATE(7146), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(189), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [130] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7967), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [190] = { - [sym_pipeline_parenthesized] = STATE(7146), - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4668), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [131] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8154), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [191] = { - [sym_pipeline] = STATE(6248), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [132] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7719), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(132), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [192] = { - [sym_pipeline] = STATE(6254), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [133] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7777), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [193] = { - [sym_pipeline] = STATE(6269), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [134] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7803), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(134), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [194] = { - [sym_pipeline] = STATE(6324), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(194), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [135] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7842), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(107), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [195] = { - [sym_pipeline] = STATE(6248), - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4572), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [136] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(8122), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [196] = { - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4629), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(196), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [137] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7796), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [197] = { - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(5082), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(857), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(197), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1069), - [aux_sym_cmd_identifier_token3] = ACTIONS(1069), - [aux_sym_cmd_identifier_token4] = ACTIONS(1069), - [aux_sym_cmd_identifier_token5] = ACTIONS(1069), - [aux_sym_cmd_identifier_token6] = ACTIONS(1069), - [aux_sym_cmd_identifier_token7] = ACTIONS(1069), - [aux_sym_cmd_identifier_token8] = ACTIONS(1069), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1069), - [aux_sym_cmd_identifier_token11] = ACTIONS(1069), - [aux_sym_cmd_identifier_token12] = ACTIONS(1069), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1069), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1069), - [aux_sym_cmd_identifier_token17] = ACTIONS(1069), - [aux_sym_cmd_identifier_token18] = ACTIONS(1069), - [aux_sym_cmd_identifier_token19] = ACTIONS(1069), - [aux_sym_cmd_identifier_token20] = ACTIONS(1069), - [aux_sym_cmd_identifier_token21] = ACTIONS(1069), - [aux_sym_cmd_identifier_token22] = ACTIONS(1069), - [aux_sym_cmd_identifier_token23] = ACTIONS(1069), - [aux_sym_cmd_identifier_token24] = ACTIONS(1069), - [aux_sym_cmd_identifier_token25] = ACTIONS(1069), - [aux_sym_cmd_identifier_token26] = ACTIONS(1069), - [aux_sym_cmd_identifier_token27] = ACTIONS(1069), - [aux_sym_cmd_identifier_token28] = ACTIONS(1069), - [aux_sym_cmd_identifier_token29] = ACTIONS(1069), - [aux_sym_cmd_identifier_token30] = ACTIONS(1069), - [aux_sym_cmd_identifier_token31] = ACTIONS(1069), - [aux_sym_cmd_identifier_token32] = ACTIONS(1069), - [aux_sym_cmd_identifier_token33] = ACTIONS(1069), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1069), - [aux_sym_cmd_identifier_token36] = ACTIONS(1069), - [aux_sym_cmd_identifier_token37] = ACTIONS(1069), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1069), - [aux_sym_cmd_identifier_token40] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_DASH2] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_match] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_DOT_DOT] = ACTIONS(1102), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_where] = ACTIONS(1111), - [aux_sym_expr_unary_token1] = ACTIONS(1114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), - [anon_sym_DOT_DOT_LT] = ACTIONS(1117), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1123), - [anon_sym_false] = ACTIONS(1123), - [aux_sym__val_number_decimal_token1] = ACTIONS(1126), - [aux_sym__val_number_decimal_token2] = ACTIONS(1129), - [aux_sym__val_number_decimal_token3] = ACTIONS(1132), - [aux_sym__val_number_decimal_token4] = ACTIONS(1135), - [aux_sym__val_number_token1] = ACTIONS(1138), - [aux_sym__val_number_token2] = ACTIONS(1138), - [aux_sym__val_number_token3] = ACTIONS(1138), - [aux_sym__val_number_token4] = ACTIONS(1141), - [aux_sym__val_number_token5] = ACTIONS(1141), - [aux_sym__val_number_token6] = ACTIONS(1141), - [anon_sym_0b] = ACTIONS(1144), - [anon_sym_0o] = ACTIONS(1147), - [anon_sym_0x] = ACTIONS(1147), - [sym_val_date] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym__str_single_quotes] = ACTIONS(1156), - [sym__str_back_ticks] = ACTIONS(1156), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1162), - [aux_sym_env_var_token1] = ACTIONS(1165), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1171), + [138] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7815), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [198] = { - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4598), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [139] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7879), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [199] = { - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(5084), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(857), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(330), - [aux_sym_cmd_identifier_token1] = ACTIONS(1174), - [aux_sym_cmd_identifier_token2] = ACTIONS(1177), - [aux_sym_cmd_identifier_token3] = ACTIONS(1177), - [aux_sym_cmd_identifier_token4] = ACTIONS(1177), - [aux_sym_cmd_identifier_token5] = ACTIONS(1177), - [aux_sym_cmd_identifier_token6] = ACTIONS(1177), - [aux_sym_cmd_identifier_token7] = ACTIONS(1177), - [aux_sym_cmd_identifier_token8] = ACTIONS(1177), - [aux_sym_cmd_identifier_token9] = ACTIONS(1174), - [aux_sym_cmd_identifier_token10] = ACTIONS(1177), - [aux_sym_cmd_identifier_token11] = ACTIONS(1177), - [aux_sym_cmd_identifier_token12] = ACTIONS(1177), - [aux_sym_cmd_identifier_token13] = ACTIONS(1174), - [aux_sym_cmd_identifier_token14] = ACTIONS(1177), - [aux_sym_cmd_identifier_token15] = ACTIONS(1174), - [aux_sym_cmd_identifier_token16] = ACTIONS(1177), - [aux_sym_cmd_identifier_token17] = ACTIONS(1177), - [aux_sym_cmd_identifier_token18] = ACTIONS(1177), - [aux_sym_cmd_identifier_token19] = ACTIONS(1177), - [aux_sym_cmd_identifier_token20] = ACTIONS(1177), - [aux_sym_cmd_identifier_token21] = ACTIONS(1177), - [aux_sym_cmd_identifier_token22] = ACTIONS(1177), - [aux_sym_cmd_identifier_token23] = ACTIONS(1177), - [aux_sym_cmd_identifier_token24] = ACTIONS(1177), - [aux_sym_cmd_identifier_token25] = ACTIONS(1177), - [aux_sym_cmd_identifier_token26] = ACTIONS(1177), - [aux_sym_cmd_identifier_token27] = ACTIONS(1177), - [aux_sym_cmd_identifier_token28] = ACTIONS(1177), - [aux_sym_cmd_identifier_token29] = ACTIONS(1177), - [aux_sym_cmd_identifier_token30] = ACTIONS(1177), - [aux_sym_cmd_identifier_token31] = ACTIONS(1177), - [aux_sym_cmd_identifier_token32] = ACTIONS(1177), - [aux_sym_cmd_identifier_token33] = ACTIONS(1177), - [aux_sym_cmd_identifier_token34] = ACTIONS(1174), - [aux_sym_cmd_identifier_token35] = ACTIONS(1177), - [aux_sym_cmd_identifier_token36] = ACTIONS(1177), - [aux_sym_cmd_identifier_token37] = ACTIONS(1177), - [aux_sym_cmd_identifier_token38] = ACTIONS(1174), - [aux_sym_cmd_identifier_token39] = ACTIONS(1177), - [aux_sym_cmd_identifier_token40] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_DASH2] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_try] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_where] = ACTIONS(1219), - [aux_sym_expr_unary_token1] = ACTIONS(1222), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), - [anon_sym_DOT_DOT_LT] = ACTIONS(1225), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [aux_sym__val_number_decimal_token1] = ACTIONS(1234), - [aux_sym__val_number_decimal_token2] = ACTIONS(1237), - [aux_sym__val_number_decimal_token3] = ACTIONS(1240), - [aux_sym__val_number_decimal_token4] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1246), - [aux_sym__val_number_token2] = ACTIONS(1246), - [aux_sym__val_number_token3] = ACTIONS(1246), - [aux_sym__val_number_token4] = ACTIONS(1249), - [aux_sym__val_number_token5] = ACTIONS(1249), - [aux_sym__val_number_token6] = ACTIONS(1249), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1255), - [anon_sym_0x] = ACTIONS(1255), - [sym_val_date] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), - [aux_sym_env_var_token1] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1279), + [140] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7713), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [200] = { - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4598), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(200), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(625), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [141] = { + [sym__block_body_statement] = STATE(6107), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym__block_body] = STATE(7958), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(141), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [201] = { - [sym_cmd_identifier] = STATE(4794), - [sym__ctrl_expression_parenthesized] = STATE(5153), - [sym_ctrl_do_parenthesized] = STATE(5109), - [sym_ctrl_if_parenthesized] = STATE(5109), - [sym_ctrl_match] = STATE(5109), - [sym_ctrl_try_parenthesized] = STATE(5109), - [sym_ctrl_return] = STATE(5109), - [sym_pipe_element_parenthesized] = STATE(4629), - [sym_where_command_parenthesized] = STATE(5008), - [sym__expression_parenthesized] = STATE(3956), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5021), - [sym_comment] = STATE(201), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [142] = { + [sym__block_body_statement] = STATE(6063), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [202] = { - [sym_cmd_identifier] = STATE(4653), - [sym__ctrl_expression] = STATE(5067), - [sym_ctrl_do] = STATE(5032), - [sym_ctrl_if] = STATE(5032), - [sym_ctrl_match] = STATE(5032), - [sym_ctrl_try] = STATE(5032), - [sym_ctrl_return] = STATE(5032), - [sym_pipe_element] = STATE(4727), - [sym_where_command] = STATE(5146), - [sym__expression] = STATE(3951), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5146), - [sym_comment] = STATE(202), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(325), + [143] = { + [sym__block_body_statement] = STATE(6063), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [144] = { + [sym__block_body_statement] = STATE(6768), + [sym__declaration] = STATE(6909), + [sym_decl_alias] = STATE(7077), + [sym_stmt_let] = STATE(7085), + [sym_stmt_mut] = STATE(7085), + [sym_stmt_const] = STATE(7085), + [sym_assignment] = STATE(7085), + [sym__mutable_assignment_pattern] = STATE(7069), + [sym__statement] = STATE(6909), + [sym_pipeline] = STATE(7085), + [sym_cmd_identifier] = STATE(4789), + [sym_decl_def] = STATE(7077), + [sym_decl_export] = STATE(7077), + [sym_decl_extern] = STATE(7077), + [sym_decl_module] = STATE(7077), + [sym_decl_use] = STATE(7077), + [sym__ctrl_statement] = STATE(7085), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_for] = STATE(7233), + [sym_ctrl_loop] = STATE(7233), + [sym_ctrl_error] = STATE(7233), + [sym_ctrl_while] = STATE(7233), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_stmt_source] = STATE(7085), + [sym_stmt_register] = STATE(7085), + [sym__stmt_hide] = STATE(7085), + [sym_hide_mod] = STATE(6934), + [sym_hide_env] = STATE(6934), + [sym__stmt_overlay] = STATE(7085), + [sym_overlay_list] = STATE(6834), + [sym_overlay_hide] = STATE(6834), + [sym_overlay_new] = STATE(6834), + [sym_overlay_use] = STATE(6834), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(1550), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(144), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97967,17 +157444,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(21), [aux_sym_cmd_identifier_token6] = ACTIONS(21), [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), [aux_sym_cmd_identifier_token9] = ACTIONS(19), [aux_sym_cmd_identifier_token10] = ACTIONS(21), [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -97991,7 +157468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -98000,12 +157477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(19), [aux_sym_cmd_identifier_token39] = ACTIONS(21), [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), [anon_sym_do] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), [anon_sym_match] = ACTIONS(61), @@ -98013,6 +157499,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), [anon_sym_where] = ACTIONS(81), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), @@ -98041,13225 +157533,7042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [203] = { - [sym_cmd_identifier] = STATE(4546), - [sym__ctrl_expression] = STATE(4909), - [sym_ctrl_do] = STATE(4913), - [sym_ctrl_if] = STATE(4913), - [sym_ctrl_match] = STATE(4913), - [sym_ctrl_try] = STATE(4913), - [sym_ctrl_return] = STATE(4913), - [sym_pipe_element] = STATE(4598), - [sym_where_command] = STATE(4930), - [sym__expression] = STATE(3871), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4930), - [sym_comment] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(333), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [aux_sym_cmd_identifier_token1] = ACTIONS(1282), - [aux_sym_cmd_identifier_token2] = ACTIONS(1285), - [aux_sym_cmd_identifier_token3] = ACTIONS(1285), - [aux_sym_cmd_identifier_token4] = ACTIONS(1285), - [aux_sym_cmd_identifier_token5] = ACTIONS(1285), - [aux_sym_cmd_identifier_token6] = ACTIONS(1285), - [aux_sym_cmd_identifier_token7] = ACTIONS(1285), - [aux_sym_cmd_identifier_token8] = ACTIONS(1282), - [aux_sym_cmd_identifier_token9] = ACTIONS(1282), - [aux_sym_cmd_identifier_token10] = ACTIONS(1285), - [aux_sym_cmd_identifier_token11] = ACTIONS(1285), - [aux_sym_cmd_identifier_token12] = ACTIONS(1282), - [aux_sym_cmd_identifier_token13] = ACTIONS(1282), - [aux_sym_cmd_identifier_token14] = ACTIONS(1282), - [aux_sym_cmd_identifier_token15] = ACTIONS(1282), - [aux_sym_cmd_identifier_token16] = ACTIONS(1285), - [aux_sym_cmd_identifier_token17] = ACTIONS(1285), - [aux_sym_cmd_identifier_token18] = ACTIONS(1285), - [aux_sym_cmd_identifier_token19] = ACTIONS(1285), - [aux_sym_cmd_identifier_token20] = ACTIONS(1285), - [aux_sym_cmd_identifier_token21] = ACTIONS(1285), - [aux_sym_cmd_identifier_token22] = ACTIONS(1285), - [aux_sym_cmd_identifier_token23] = ACTIONS(1285), - [aux_sym_cmd_identifier_token24] = ACTIONS(1285), - [aux_sym_cmd_identifier_token25] = ACTIONS(1285), - [aux_sym_cmd_identifier_token26] = ACTIONS(1285), - [aux_sym_cmd_identifier_token27] = ACTIONS(1285), - [aux_sym_cmd_identifier_token28] = ACTIONS(1285), - [aux_sym_cmd_identifier_token29] = ACTIONS(1285), - [aux_sym_cmd_identifier_token30] = ACTIONS(1285), - [aux_sym_cmd_identifier_token31] = ACTIONS(1285), - [aux_sym_cmd_identifier_token32] = ACTIONS(1285), - [aux_sym_cmd_identifier_token33] = ACTIONS(1285), - [aux_sym_cmd_identifier_token34] = ACTIONS(1282), - [aux_sym_cmd_identifier_token35] = ACTIONS(1285), - [aux_sym_cmd_identifier_token36] = ACTIONS(1285), - [aux_sym_cmd_identifier_token37] = ACTIONS(1285), - [aux_sym_cmd_identifier_token38] = ACTIONS(1282), - [aux_sym_cmd_identifier_token39] = ACTIONS(1285), - [aux_sym_cmd_identifier_token40] = ACTIONS(1285), - [sym__newline] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_DASH2] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_in2] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_make] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_catch] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_where] = ACTIONS(1285), - [aux_sym_expr_unary_token1] = ACTIONS(1285), - [anon_sym_PLUS2] = ACTIONS(1290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), - [anon_sym_DOT_DOT_LT] = ACTIONS(1285), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_decimal_token2] = ACTIONS(1285), - [aux_sym__val_number_decimal_token3] = ACTIONS(1285), - [aux_sym__val_number_decimal_token4] = ACTIONS(1285), - [aux_sym__val_number_token1] = ACTIONS(1285), - [aux_sym__val_number_token2] = ACTIONS(1285), - [aux_sym__val_number_token3] = ACTIONS(1285), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym__str_single_quotes] = ACTIONS(1285), - [sym__str_back_ticks] = ACTIONS(1285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [aux_sym_env_var_token1] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1285), - }, - [205] = { - [sym_comment] = STATE(205), - [aux_sym_shebang_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1294), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1294), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in2] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_make] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1296), - [aux_sym_expr_unary_token1] = ACTIONS(1296), - [anon_sym_PLUS2] = ACTIONS(1294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), - [aux_sym_env_var_token1] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), - }, - [206] = { - [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_alias] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_let_DASHenv] = ACTIONS(1290), - [anon_sym_mut] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [aux_sym_cmd_identifier_token1] = ACTIONS(1290), - [aux_sym_cmd_identifier_token2] = ACTIONS(1288), - [aux_sym_cmd_identifier_token3] = ACTIONS(1288), - [aux_sym_cmd_identifier_token4] = ACTIONS(1288), - [aux_sym_cmd_identifier_token5] = ACTIONS(1288), - [aux_sym_cmd_identifier_token6] = ACTIONS(1288), - [aux_sym_cmd_identifier_token7] = ACTIONS(1288), - [aux_sym_cmd_identifier_token8] = ACTIONS(1290), - [aux_sym_cmd_identifier_token9] = ACTIONS(1290), - [aux_sym_cmd_identifier_token10] = ACTIONS(1288), - [aux_sym_cmd_identifier_token11] = ACTIONS(1288), - [aux_sym_cmd_identifier_token12] = ACTIONS(1290), - [aux_sym_cmd_identifier_token13] = ACTIONS(1290), - [aux_sym_cmd_identifier_token14] = ACTIONS(1290), - [aux_sym_cmd_identifier_token15] = ACTIONS(1290), - [aux_sym_cmd_identifier_token16] = ACTIONS(1288), - [aux_sym_cmd_identifier_token17] = ACTIONS(1288), - [aux_sym_cmd_identifier_token18] = ACTIONS(1288), - [aux_sym_cmd_identifier_token19] = ACTIONS(1288), - [aux_sym_cmd_identifier_token20] = ACTIONS(1288), - [aux_sym_cmd_identifier_token21] = ACTIONS(1288), - [aux_sym_cmd_identifier_token22] = ACTIONS(1288), - [aux_sym_cmd_identifier_token23] = ACTIONS(1288), - [aux_sym_cmd_identifier_token24] = ACTIONS(1288), - [aux_sym_cmd_identifier_token25] = ACTIONS(1288), - [aux_sym_cmd_identifier_token26] = ACTIONS(1288), - [aux_sym_cmd_identifier_token27] = ACTIONS(1288), - [aux_sym_cmd_identifier_token28] = ACTIONS(1288), - [aux_sym_cmd_identifier_token29] = ACTIONS(1288), - [aux_sym_cmd_identifier_token30] = ACTIONS(1288), - [aux_sym_cmd_identifier_token31] = ACTIONS(1288), - [aux_sym_cmd_identifier_token32] = ACTIONS(1288), - [aux_sym_cmd_identifier_token33] = ACTIONS(1288), - [aux_sym_cmd_identifier_token34] = ACTIONS(1290), - [aux_sym_cmd_identifier_token35] = ACTIONS(1288), - [aux_sym_cmd_identifier_token36] = ACTIONS(1288), - [aux_sym_cmd_identifier_token37] = ACTIONS(1288), - [aux_sym_cmd_identifier_token38] = ACTIONS(1290), - [aux_sym_cmd_identifier_token39] = ACTIONS(1288), - [aux_sym_cmd_identifier_token40] = ACTIONS(1288), - [sym__newline] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1290), - [anon_sym_export_DASHenv] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_error] = ACTIONS(1290), - [anon_sym_DASH2] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_in2] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_make] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_catch] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_source] = ACTIONS(1290), - [anon_sym_source_DASHenv] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_hide] = ACTIONS(1290), - [anon_sym_hide_DASHenv] = ACTIONS(1290), - [anon_sym_overlay] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_where] = ACTIONS(1288), - [aux_sym_expr_unary_token1] = ACTIONS(1288), - [anon_sym_PLUS2] = ACTIONS(1290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1290), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1290), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1290), - [anon_sym_0b] = ACTIONS(1290), - [anon_sym_0o] = ACTIONS(1290), - [anon_sym_0x] = ACTIONS(1290), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [aux_sym_env_var_token1] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1288), - }, - [207] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8135), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(207), - [aux_sym_shebang_repeat1] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [208] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7997), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(208), - [aux_sym_shebang_repeat1] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [209] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8158), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(209), - [aux_sym_shebang_repeat1] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [210] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(7762), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(210), - [aux_sym_shebang_repeat1] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [211] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_body] = STATE(8169), - [sym_record_entry] = STATE(6929), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(211), - [aux_sym_shebang_repeat1] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [212] = { - [sym_cmd_identifier] = STATE(8061), - [sym__match_pattern_record_variable] = STATE(762), - [sym_expr_parenthesized] = STATE(8167), - [sym__spread_parenthesized] = STATE(768), - [sym__spread_variable] = STATE(769), - [sym_val_variable] = STATE(578), - [sym_val_number] = STATE(8167), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(8167), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(768), - [sym_record_entry] = STATE(762), - [sym__record_key] = STATE(8061), - [sym_comment] = STATE(212), - [aux_sym__match_pattern_record_repeat1] = STATE(215), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [213] = { - [sym_cmd_identifier] = STATE(8061), - [sym__match_pattern_record_variable] = STATE(762), - [sym_expr_parenthesized] = STATE(8167), - [sym__spread_parenthesized] = STATE(768), - [sym__spread_variable] = STATE(769), - [sym_val_variable] = STATE(578), - [sym_val_number] = STATE(8167), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(8167), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(768), - [sym_record_entry] = STATE(762), - [sym__record_key] = STATE(8061), - [sym_comment] = STATE(213), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1337), - [anon_sym_alias] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_let_DASHenv] = ACTIONS(1337), - [anon_sym_mut] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [aux_sym_cmd_identifier_token1] = ACTIONS(1340), - [aux_sym_cmd_identifier_token2] = ACTIONS(1343), - [aux_sym_cmd_identifier_token3] = ACTIONS(1343), - [aux_sym_cmd_identifier_token4] = ACTIONS(1343), - [aux_sym_cmd_identifier_token5] = ACTIONS(1343), - [aux_sym_cmd_identifier_token6] = ACTIONS(1343), - [aux_sym_cmd_identifier_token7] = ACTIONS(1343), - [aux_sym_cmd_identifier_token8] = ACTIONS(1340), - [aux_sym_cmd_identifier_token9] = ACTIONS(1340), - [aux_sym_cmd_identifier_token10] = ACTIONS(1343), - [aux_sym_cmd_identifier_token11] = ACTIONS(1343), - [aux_sym_cmd_identifier_token12] = ACTIONS(1340), - [aux_sym_cmd_identifier_token13] = ACTIONS(1340), - [aux_sym_cmd_identifier_token14] = ACTIONS(1340), - [aux_sym_cmd_identifier_token15] = ACTIONS(1340), - [aux_sym_cmd_identifier_token16] = ACTIONS(1343), - [aux_sym_cmd_identifier_token17] = ACTIONS(1343), - [aux_sym_cmd_identifier_token18] = ACTIONS(1343), - [aux_sym_cmd_identifier_token19] = ACTIONS(1343), - [aux_sym_cmd_identifier_token20] = ACTIONS(1343), - [aux_sym_cmd_identifier_token21] = ACTIONS(1343), - [aux_sym_cmd_identifier_token22] = ACTIONS(1343), - [aux_sym_cmd_identifier_token23] = ACTIONS(1343), - [aux_sym_cmd_identifier_token24] = ACTIONS(1343), - [aux_sym_cmd_identifier_token25] = ACTIONS(1343), - [aux_sym_cmd_identifier_token26] = ACTIONS(1343), - [aux_sym_cmd_identifier_token27] = ACTIONS(1343), - [aux_sym_cmd_identifier_token28] = ACTIONS(1343), - [aux_sym_cmd_identifier_token29] = ACTIONS(1343), - [aux_sym_cmd_identifier_token30] = ACTIONS(1343), - [aux_sym_cmd_identifier_token31] = ACTIONS(1343), - [aux_sym_cmd_identifier_token32] = ACTIONS(1343), - [aux_sym_cmd_identifier_token33] = ACTIONS(1343), - [aux_sym_cmd_identifier_token34] = ACTIONS(1340), - [aux_sym_cmd_identifier_token35] = ACTIONS(1343), - [aux_sym_cmd_identifier_token36] = ACTIONS(1343), - [aux_sym_cmd_identifier_token37] = ACTIONS(1343), - [aux_sym_cmd_identifier_token38] = ACTIONS(1340), - [aux_sym_cmd_identifier_token39] = ACTIONS(1343), - [aux_sym_cmd_identifier_token40] = ACTIONS(1343), - [anon_sym_def] = ACTIONS(1337), - [anon_sym_export_DASHenv] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_module] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_error] = ACTIONS(1337), - [anon_sym_DASH2] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_in2] = ACTIONS(1337), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_make] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_try] = ACTIONS(1337), - [anon_sym_catch] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_source] = ACTIONS(1337), - [anon_sym_source_DASHenv] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_hide] = ACTIONS(1337), - [anon_sym_hide_DASHenv] = ACTIONS(1337), - [anon_sym_overlay] = ACTIONS(1337), - [anon_sym_as] = ACTIONS(1337), - [anon_sym_PLUS2] = ACTIONS(1352), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1360), - [aux_sym__val_number_decimal_token1] = ACTIONS(1363), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [aux_sym__val_number_decimal_token3] = ACTIONS(1369), - [aux_sym__val_number_decimal_token4] = ACTIONS(1372), - [aux_sym__val_number_token1] = ACTIONS(1375), - [aux_sym__val_number_token2] = ACTIONS(1375), - [aux_sym__val_number_token3] = ACTIONS(1375), - [aux_sym__val_number_token4] = ACTIONS(1378), - [aux_sym__val_number_token5] = ACTIONS(1378), - [aux_sym__val_number_token6] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym__str_single_quotes] = ACTIONS(1384), - [sym__str_back_ticks] = ACTIONS(1384), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1390), - }, - [214] = { - [sym_cmd_identifier] = STATE(8061), - [sym__match_pattern_record_variable] = STATE(762), - [sym_expr_parenthesized] = STATE(8167), - [sym__spread_parenthesized] = STATE(768), - [sym__spread_variable] = STATE(769), - [sym_val_variable] = STATE(578), - [sym_val_number] = STATE(8167), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(8167), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(768), - [sym_record_entry] = STATE(762), - [sym__record_key] = STATE(8061), - [sym_comment] = STATE(214), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [215] = { - [sym_cmd_identifier] = STATE(8061), - [sym__match_pattern_record_variable] = STATE(762), - [sym_expr_parenthesized] = STATE(8167), - [sym__spread_parenthesized] = STATE(768), - [sym__spread_variable] = STATE(769), - [sym_val_variable] = STATE(578), - [sym_val_number] = STATE(8167), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(8167), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(768), - [sym_record_entry] = STATE(762), - [sym__record_key] = STATE(8061), - [sym_comment] = STATE(215), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [216] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7286), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(216), - [aux_sym_shebang_repeat1] = STATE(629), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [217] = { - [sym_cmd_identifier] = STATE(8061), - [sym__match_pattern_record_variable] = STATE(762), - [sym_expr_parenthesized] = STATE(8167), - [sym__spread_parenthesized] = STATE(768), - [sym__spread_variable] = STATE(769), - [sym_val_variable] = STATE(578), - [sym_val_number] = STATE(8167), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(8167), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(768), - [sym_record_entry] = STATE(762), - [sym__record_key] = STATE(8061), - [sym_comment] = STATE(217), - [aux_sym__match_pattern_record_repeat1] = STATE(214), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [218] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7699), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(218), - [aux_sym_record_body_repeat1] = STATE(218), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [aux_sym_cmd_identifier_token1] = ACTIONS(1402), - [aux_sym_cmd_identifier_token2] = ACTIONS(1405), - [aux_sym_cmd_identifier_token3] = ACTIONS(1405), - [aux_sym_cmd_identifier_token4] = ACTIONS(1405), - [aux_sym_cmd_identifier_token5] = ACTIONS(1405), - [aux_sym_cmd_identifier_token6] = ACTIONS(1405), - [aux_sym_cmd_identifier_token7] = ACTIONS(1405), - [aux_sym_cmd_identifier_token8] = ACTIONS(1402), - [aux_sym_cmd_identifier_token9] = ACTIONS(1402), - [aux_sym_cmd_identifier_token10] = ACTIONS(1405), - [aux_sym_cmd_identifier_token11] = ACTIONS(1405), - [aux_sym_cmd_identifier_token12] = ACTIONS(1402), - [aux_sym_cmd_identifier_token13] = ACTIONS(1402), - [aux_sym_cmd_identifier_token14] = ACTIONS(1402), - [aux_sym_cmd_identifier_token15] = ACTIONS(1402), - [aux_sym_cmd_identifier_token16] = ACTIONS(1405), - [aux_sym_cmd_identifier_token17] = ACTIONS(1405), - [aux_sym_cmd_identifier_token18] = ACTIONS(1405), - [aux_sym_cmd_identifier_token19] = ACTIONS(1405), - [aux_sym_cmd_identifier_token20] = ACTIONS(1405), - [aux_sym_cmd_identifier_token21] = ACTIONS(1405), - [aux_sym_cmd_identifier_token22] = ACTIONS(1405), - [aux_sym_cmd_identifier_token23] = ACTIONS(1405), - [aux_sym_cmd_identifier_token24] = ACTIONS(1405), - [aux_sym_cmd_identifier_token25] = ACTIONS(1405), - [aux_sym_cmd_identifier_token26] = ACTIONS(1405), - [aux_sym_cmd_identifier_token27] = ACTIONS(1405), - [aux_sym_cmd_identifier_token28] = ACTIONS(1405), - [aux_sym_cmd_identifier_token29] = ACTIONS(1405), - [aux_sym_cmd_identifier_token30] = ACTIONS(1405), - [aux_sym_cmd_identifier_token31] = ACTIONS(1405), - [aux_sym_cmd_identifier_token32] = ACTIONS(1405), - [aux_sym_cmd_identifier_token33] = ACTIONS(1405), - [aux_sym_cmd_identifier_token34] = ACTIONS(1402), - [aux_sym_cmd_identifier_token35] = ACTIONS(1405), - [aux_sym_cmd_identifier_token36] = ACTIONS(1405), - [aux_sym_cmd_identifier_token37] = ACTIONS(1405), - [aux_sym_cmd_identifier_token38] = ACTIONS(1402), - [aux_sym_cmd_identifier_token39] = ACTIONS(1405), - [aux_sym_cmd_identifier_token40] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH2] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in2] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_make] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_catch] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1399), - [anon_sym_PLUS2] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1420), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1426), - [aux_sym__val_number_decimal_token3] = ACTIONS(1429), - [aux_sym__val_number_decimal_token4] = ACTIONS(1432), - [aux_sym__val_number_token1] = ACTIONS(1435), - [aux_sym__val_number_token2] = ACTIONS(1435), - [aux_sym__val_number_token3] = ACTIONS(1435), - [aux_sym__val_number_token4] = ACTIONS(1438), - [aux_sym__val_number_token5] = ACTIONS(1438), - [aux_sym__val_number_token6] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1444), - [sym__str_back_ticks] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1450), - }, - [219] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7310), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(219), - [aux_sym_record_body_repeat1] = STATE(218), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [220] = { - [sym_cmd_identifier] = STATE(7830), - [sym_expr_parenthesized] = STATE(7852), - [sym__spread_parenthesized] = STATE(7503), - [sym__spread_variable] = STATE(7585), - [sym_val_variable] = STATE(7852), - [sym_val_number] = STATE(7852), - [sym__val_number_decimal] = STATE(3647), - [sym__val_number] = STATE(2451), - [sym_val_string] = STATE(7852), - [sym__raw_str] = STATE(1544), - [sym__str_double_quotes] = STATE(1544), - [sym__spread_record] = STATE(7503), - [sym_record_entry] = STATE(7443), - [sym__record_key] = STATE(7830), - [sym_comment] = STATE(220), - [aux_sym_record_body_repeat1] = STATE(218), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1303), - [aux_sym_cmd_identifier_token3] = ACTIONS(1303), - [aux_sym_cmd_identifier_token4] = ACTIONS(1303), - [aux_sym_cmd_identifier_token5] = ACTIONS(1303), - [aux_sym_cmd_identifier_token6] = ACTIONS(1303), - [aux_sym_cmd_identifier_token7] = ACTIONS(1303), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1303), - [aux_sym_cmd_identifier_token19] = ACTIONS(1303), - [aux_sym_cmd_identifier_token20] = ACTIONS(1303), - [aux_sym_cmd_identifier_token21] = ACTIONS(1303), - [aux_sym_cmd_identifier_token22] = ACTIONS(1303), - [aux_sym_cmd_identifier_token23] = ACTIONS(1303), - [aux_sym_cmd_identifier_token24] = ACTIONS(1303), - [aux_sym_cmd_identifier_token25] = ACTIONS(1303), - [aux_sym_cmd_identifier_token26] = ACTIONS(1303), - [aux_sym_cmd_identifier_token27] = ACTIONS(1303), - [aux_sym_cmd_identifier_token28] = ACTIONS(1303), - [aux_sym_cmd_identifier_token29] = ACTIONS(1303), - [aux_sym_cmd_identifier_token30] = ACTIONS(1303), - [aux_sym_cmd_identifier_token31] = ACTIONS(1303), - [aux_sym_cmd_identifier_token32] = ACTIONS(1303), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1303), - [aux_sym_cmd_identifier_token36] = ACTIONS(1303), - [aux_sym_cmd_identifier_token37] = ACTIONS(1303), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), - [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), - [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1317), - [aux_sym__val_number_decimal_token4] = ACTIONS(1319), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(249), - }, - [221] = { - [sym_comment] = STATE(221), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [222] = { - [sym_comment] = STATE(222), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [223] = { - [sym_comment] = STATE(223), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1463), - [aux_sym_cmd_identifier_token3] = ACTIONS(1463), - [aux_sym_cmd_identifier_token4] = ACTIONS(1463), - [aux_sym_cmd_identifier_token5] = ACTIONS(1463), - [aux_sym_cmd_identifier_token6] = ACTIONS(1463), - [aux_sym_cmd_identifier_token7] = ACTIONS(1463), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1463), - [aux_sym_cmd_identifier_token11] = ACTIONS(1463), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1463), - [aux_sym_cmd_identifier_token17] = ACTIONS(1463), - [aux_sym_cmd_identifier_token18] = ACTIONS(1463), - [aux_sym_cmd_identifier_token19] = ACTIONS(1463), - [aux_sym_cmd_identifier_token20] = ACTIONS(1463), - [aux_sym_cmd_identifier_token21] = ACTIONS(1463), - [aux_sym_cmd_identifier_token22] = ACTIONS(1463), - [aux_sym_cmd_identifier_token23] = ACTIONS(1463), - [aux_sym_cmd_identifier_token24] = ACTIONS(1463), - [aux_sym_cmd_identifier_token25] = ACTIONS(1463), - [aux_sym_cmd_identifier_token26] = ACTIONS(1463), - [aux_sym_cmd_identifier_token27] = ACTIONS(1463), - [aux_sym_cmd_identifier_token28] = ACTIONS(1463), - [aux_sym_cmd_identifier_token29] = ACTIONS(1463), - [aux_sym_cmd_identifier_token30] = ACTIONS(1463), - [aux_sym_cmd_identifier_token31] = ACTIONS(1463), - [aux_sym_cmd_identifier_token32] = ACTIONS(1463), - [aux_sym_cmd_identifier_token33] = ACTIONS(1463), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1463), - [aux_sym_cmd_identifier_token36] = ACTIONS(1463), - [aux_sym_cmd_identifier_token37] = ACTIONS(1463), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1463), - [aux_sym_cmd_identifier_token40] = ACTIONS(1463), - [sym__newline] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1461), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_where] = ACTIONS(1463), - [aux_sym_expr_unary_token1] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_DOT_DOT_LT] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1463), - [aux_sym__val_number_decimal_token3] = ACTIONS(1463), - [aux_sym__val_number_decimal_token4] = ACTIONS(1463), - [aux_sym__val_number_token1] = ACTIONS(1463), - [aux_sym__val_number_token2] = ACTIONS(1463), - [aux_sym__val_number_token3] = ACTIONS(1463), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [sym_val_date] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym__str_single_quotes] = ACTIONS(1463), - [sym__str_back_ticks] = ACTIONS(1463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), - [aux_sym_env_var_token1] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1463), - }, - [224] = { - [sym_comment] = STATE(224), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [225] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(225), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [226] = { - [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1484), - [anon_sym_alias] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_let_DASHenv] = ACTIONS(1484), - [anon_sym_mut] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [aux_sym_cmd_identifier_token1] = ACTIONS(1484), - [aux_sym_cmd_identifier_token2] = ACTIONS(1292), - [aux_sym_cmd_identifier_token3] = ACTIONS(1292), - [aux_sym_cmd_identifier_token4] = ACTIONS(1292), - [aux_sym_cmd_identifier_token5] = ACTIONS(1292), - [aux_sym_cmd_identifier_token6] = ACTIONS(1292), - [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1292), - [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1484), - [aux_sym_cmd_identifier_token13] = ACTIONS(1484), - [aux_sym_cmd_identifier_token14] = ACTIONS(1484), - [aux_sym_cmd_identifier_token15] = ACTIONS(1484), - [aux_sym_cmd_identifier_token16] = ACTIONS(1292), - [aux_sym_cmd_identifier_token17] = ACTIONS(1292), - [aux_sym_cmd_identifier_token18] = ACTIONS(1292), - [aux_sym_cmd_identifier_token19] = ACTIONS(1292), - [aux_sym_cmd_identifier_token20] = ACTIONS(1292), - [aux_sym_cmd_identifier_token21] = ACTIONS(1292), - [aux_sym_cmd_identifier_token22] = ACTIONS(1292), - [aux_sym_cmd_identifier_token23] = ACTIONS(1292), - [aux_sym_cmd_identifier_token24] = ACTIONS(1292), - [aux_sym_cmd_identifier_token25] = ACTIONS(1292), - [aux_sym_cmd_identifier_token26] = ACTIONS(1292), - [aux_sym_cmd_identifier_token27] = ACTIONS(1292), - [aux_sym_cmd_identifier_token28] = ACTIONS(1292), - [aux_sym_cmd_identifier_token29] = ACTIONS(1292), - [aux_sym_cmd_identifier_token30] = ACTIONS(1292), - [aux_sym_cmd_identifier_token31] = ACTIONS(1292), - [aux_sym_cmd_identifier_token32] = ACTIONS(1292), - [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1292), - [aux_sym_cmd_identifier_token36] = ACTIONS(1292), - [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1292), - [aux_sym_cmd_identifier_token40] = ACTIONS(1292), - [sym__newline] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1484), - [anon_sym_export_DASHenv] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_module] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_error] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_where] = ACTIONS(1292), - [aux_sym_expr_unary_token1] = ACTIONS(1292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), - [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1292), - [aux_sym__val_number_decimal_token3] = ACTIONS(1292), - [aux_sym__val_number_decimal_token4] = ACTIONS(1292), - [aux_sym__val_number_token1] = ACTIONS(1292), - [aux_sym__val_number_token2] = ACTIONS(1292), - [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [anon_sym_0b] = ACTIONS(1484), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym__str_single_quotes] = ACTIONS(1292), - [sym__str_back_ticks] = ACTIONS(1292), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1292), - }, - [227] = { - [sym_comment] = STATE(227), - [aux_sym__block_body_repeat1] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(1457), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [228] = { - [sym_comment] = STATE(228), - [aux_sym__block_body_repeat1] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1463), - [aux_sym_cmd_identifier_token3] = ACTIONS(1463), - [aux_sym_cmd_identifier_token4] = ACTIONS(1463), - [aux_sym_cmd_identifier_token5] = ACTIONS(1463), - [aux_sym_cmd_identifier_token6] = ACTIONS(1463), - [aux_sym_cmd_identifier_token7] = ACTIONS(1463), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1463), - [aux_sym_cmd_identifier_token11] = ACTIONS(1463), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1463), - [aux_sym_cmd_identifier_token17] = ACTIONS(1463), - [aux_sym_cmd_identifier_token18] = ACTIONS(1463), - [aux_sym_cmd_identifier_token19] = ACTIONS(1463), - [aux_sym_cmd_identifier_token20] = ACTIONS(1463), - [aux_sym_cmd_identifier_token21] = ACTIONS(1463), - [aux_sym_cmd_identifier_token22] = ACTIONS(1463), - [aux_sym_cmd_identifier_token23] = ACTIONS(1463), - [aux_sym_cmd_identifier_token24] = ACTIONS(1463), - [aux_sym_cmd_identifier_token25] = ACTIONS(1463), - [aux_sym_cmd_identifier_token26] = ACTIONS(1463), - [aux_sym_cmd_identifier_token27] = ACTIONS(1463), - [aux_sym_cmd_identifier_token28] = ACTIONS(1463), - [aux_sym_cmd_identifier_token29] = ACTIONS(1463), - [aux_sym_cmd_identifier_token30] = ACTIONS(1463), - [aux_sym_cmd_identifier_token31] = ACTIONS(1463), - [aux_sym_cmd_identifier_token32] = ACTIONS(1463), - [aux_sym_cmd_identifier_token33] = ACTIONS(1463), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1463), - [aux_sym_cmd_identifier_token36] = ACTIONS(1463), - [aux_sym_cmd_identifier_token37] = ACTIONS(1463), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1463), - [aux_sym_cmd_identifier_token40] = ACTIONS(1463), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1461), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_where] = ACTIONS(1463), - [aux_sym_expr_unary_token1] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_DOT_DOT_LT] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1463), - [aux_sym__val_number_decimal_token3] = ACTIONS(1463), - [aux_sym__val_number_decimal_token4] = ACTIONS(1463), - [aux_sym__val_number_token1] = ACTIONS(1463), - [aux_sym__val_number_token2] = ACTIONS(1463), - [aux_sym__val_number_token3] = ACTIONS(1463), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [sym_val_date] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym__str_single_quotes] = ACTIONS(1463), - [sym__str_back_ticks] = ACTIONS(1463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), - [aux_sym_env_var_token1] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1463), - }, - [229] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5107), - [sym__expression_parenthesized] = STATE(5107), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5107), - [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(230), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [230] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(230), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [231] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(234), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [232] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5155), - [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(236), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [233] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5007), - [sym_block] = STATE(5009), - [sym__expression_parenthesized] = STATE(5009), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5009), - [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(238), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [234] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [235] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(241), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [236] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [237] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(242), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [238] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [239] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(225), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [240] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5048), - [sym_block] = STATE(5023), - [sym__expression_parenthesized] = STATE(5023), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5023), - [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(245), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [241] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5131), - [sym__expression_parenthesized] = STATE(5131), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5131), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [242] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [243] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(247), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [244] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(248), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [245] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [246] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [247] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5019), - [sym_block] = STATE(5173), - [sym__expression_parenthesized] = STATE(5173), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5173), - [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [248] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5029), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5140), - [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [249] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [250] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(250), - [aux_sym_shebang_repeat1] = STATE(251), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [251] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5137), - [sym_block] = STATE(5006), - [sym__expression_parenthesized] = STATE(5006), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5006), - [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [252] = { - [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(308), - [aux_sym__parenthesized_body_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_alias] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_let_DASHenv] = ACTIONS(1489), - [anon_sym_mut] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [aux_sym_cmd_identifier_token1] = ACTIONS(1489), - [aux_sym_cmd_identifier_token2] = ACTIONS(1491), - [aux_sym_cmd_identifier_token3] = ACTIONS(1491), - [aux_sym_cmd_identifier_token4] = ACTIONS(1491), - [aux_sym_cmd_identifier_token5] = ACTIONS(1491), - [aux_sym_cmd_identifier_token6] = ACTIONS(1491), - [aux_sym_cmd_identifier_token7] = ACTIONS(1491), - [aux_sym_cmd_identifier_token8] = ACTIONS(1489), - [aux_sym_cmd_identifier_token9] = ACTIONS(1489), - [aux_sym_cmd_identifier_token10] = ACTIONS(1491), - [aux_sym_cmd_identifier_token11] = ACTIONS(1491), - [aux_sym_cmd_identifier_token12] = ACTIONS(1489), - [aux_sym_cmd_identifier_token13] = ACTIONS(1489), - [aux_sym_cmd_identifier_token14] = ACTIONS(1489), - [aux_sym_cmd_identifier_token15] = ACTIONS(1489), - [aux_sym_cmd_identifier_token16] = ACTIONS(1491), - [aux_sym_cmd_identifier_token17] = ACTIONS(1491), - [aux_sym_cmd_identifier_token18] = ACTIONS(1491), - [aux_sym_cmd_identifier_token19] = ACTIONS(1491), - [aux_sym_cmd_identifier_token20] = ACTIONS(1491), - [aux_sym_cmd_identifier_token21] = ACTIONS(1491), - [aux_sym_cmd_identifier_token22] = ACTIONS(1491), - [aux_sym_cmd_identifier_token23] = ACTIONS(1491), - [aux_sym_cmd_identifier_token24] = ACTIONS(1491), - [aux_sym_cmd_identifier_token25] = ACTIONS(1491), - [aux_sym_cmd_identifier_token26] = ACTIONS(1491), - [aux_sym_cmd_identifier_token27] = ACTIONS(1491), - [aux_sym_cmd_identifier_token28] = ACTIONS(1491), - [aux_sym_cmd_identifier_token29] = ACTIONS(1491), - [aux_sym_cmd_identifier_token30] = ACTIONS(1491), - [aux_sym_cmd_identifier_token31] = ACTIONS(1491), - [aux_sym_cmd_identifier_token32] = ACTIONS(1491), - [aux_sym_cmd_identifier_token33] = ACTIONS(1491), - [aux_sym_cmd_identifier_token34] = ACTIONS(1489), - [aux_sym_cmd_identifier_token35] = ACTIONS(1491), - [aux_sym_cmd_identifier_token36] = ACTIONS(1491), - [aux_sym_cmd_identifier_token37] = ACTIONS(1491), - [aux_sym_cmd_identifier_token38] = ACTIONS(1489), - [aux_sym_cmd_identifier_token39] = ACTIONS(1491), - [aux_sym_cmd_identifier_token40] = ACTIONS(1491), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1489), - [anon_sym_export_DASHenv] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1489), - [anon_sym_DASH2] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_loop] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_source] = ACTIONS(1489), - [anon_sym_source_DASHenv] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_hide] = ACTIONS(1489), - [anon_sym_hide_DASHenv] = ACTIONS(1489), - [anon_sym_overlay] = ACTIONS(1489), - [anon_sym_where] = ACTIONS(1491), - [aux_sym_expr_unary_token1] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_DOT_DOT_LT] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [aux_sym__val_number_decimal_token1] = ACTIONS(1489), - [aux_sym__val_number_decimal_token2] = ACTIONS(1491), - [aux_sym__val_number_decimal_token3] = ACTIONS(1491), - [aux_sym__val_number_decimal_token4] = ACTIONS(1491), - [aux_sym__val_number_token1] = ACTIONS(1491), - [aux_sym__val_number_token2] = ACTIONS(1491), - [aux_sym__val_number_token3] = ACTIONS(1491), - [aux_sym__val_number_token4] = ACTIONS(1489), - [aux_sym__val_number_token5] = ACTIONS(1489), - [aux_sym__val_number_token6] = ACTIONS(1489), - [anon_sym_0b] = ACTIONS(1489), - [anon_sym_0o] = ACTIONS(1489), - [anon_sym_0x] = ACTIONS(1489), - [sym_val_date] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym__str_single_quotes] = ACTIONS(1491), - [sym__str_back_ticks] = ACTIONS(1491), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), - [aux_sym_env_var_token1] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1491), - }, - [253] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5107), - [sym__expression_parenthesized] = STATE(5107), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5107), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(254), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [254] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [255] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(258), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [256] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5155), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(260), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [257] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5007), - [sym_block] = STATE(5009), - [sym__expression_parenthesized] = STATE(5009), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5009), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(262), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [258] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [259] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(265), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [260] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [261] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(266), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [262] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [263] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(306), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [264] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5048), - [sym_block] = STATE(5023), - [sym__expression_parenthesized] = STATE(5023), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5023), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(269), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [265] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5131), - [sym__expression_parenthesized] = STATE(5131), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5131), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [266] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [267] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [268] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(272), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [269] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [270] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [271] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5019), - [sym_block] = STATE(5173), - [sym__expression_parenthesized] = STATE(5173), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5173), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [272] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5029), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5140), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [273] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [274] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [275] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5137), - [sym_block] = STATE(5006), - [sym__expression_parenthesized] = STATE(5006), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5006), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [276] = { - [sym_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_POUND_BANG] = ACTIONS(1288), - [anon_sym_export] = ACTIONS(1484), - [anon_sym_alias] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_let_DASHenv] = ACTIONS(1484), - [anon_sym_mut] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [aux_sym_cmd_identifier_token1] = ACTIONS(1484), - [aux_sym_cmd_identifier_token2] = ACTIONS(1292), - [aux_sym_cmd_identifier_token3] = ACTIONS(1292), - [aux_sym_cmd_identifier_token4] = ACTIONS(1292), - [aux_sym_cmd_identifier_token5] = ACTIONS(1292), - [aux_sym_cmd_identifier_token6] = ACTIONS(1292), - [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1292), - [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1484), - [aux_sym_cmd_identifier_token13] = ACTIONS(1484), - [aux_sym_cmd_identifier_token14] = ACTIONS(1484), - [aux_sym_cmd_identifier_token15] = ACTIONS(1484), - [aux_sym_cmd_identifier_token16] = ACTIONS(1292), - [aux_sym_cmd_identifier_token17] = ACTIONS(1292), - [aux_sym_cmd_identifier_token18] = ACTIONS(1292), - [aux_sym_cmd_identifier_token19] = ACTIONS(1292), - [aux_sym_cmd_identifier_token20] = ACTIONS(1292), - [aux_sym_cmd_identifier_token21] = ACTIONS(1292), - [aux_sym_cmd_identifier_token22] = ACTIONS(1292), - [aux_sym_cmd_identifier_token23] = ACTIONS(1292), - [aux_sym_cmd_identifier_token24] = ACTIONS(1292), - [aux_sym_cmd_identifier_token25] = ACTIONS(1292), - [aux_sym_cmd_identifier_token26] = ACTIONS(1292), - [aux_sym_cmd_identifier_token27] = ACTIONS(1292), - [aux_sym_cmd_identifier_token28] = ACTIONS(1292), - [aux_sym_cmd_identifier_token29] = ACTIONS(1292), - [aux_sym_cmd_identifier_token30] = ACTIONS(1292), - [aux_sym_cmd_identifier_token31] = ACTIONS(1292), - [aux_sym_cmd_identifier_token32] = ACTIONS(1292), - [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1292), - [aux_sym_cmd_identifier_token36] = ACTIONS(1292), - [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1292), - [aux_sym_cmd_identifier_token40] = ACTIONS(1292), - [sym__newline] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1484), - [anon_sym_export_DASHenv] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_module] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_error] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_where] = ACTIONS(1292), - [aux_sym_expr_unary_token1] = ACTIONS(1292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), - [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1292), - [aux_sym__val_number_decimal_token3] = ACTIONS(1292), - [aux_sym__val_number_decimal_token4] = ACTIONS(1292), - [aux_sym__val_number_token1] = ACTIONS(1292), - [aux_sym__val_number_token2] = ACTIONS(1292), - [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [anon_sym_0b] = ACTIONS(1484), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym__str_single_quotes] = ACTIONS(1292), - [sym__str_back_ticks] = ACTIONS(1292), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1292), - }, - [277] = { - [sym_comment] = STATE(277), - [aux_sym__block_body_repeat1] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [278] = { - [sym_comment] = STATE(278), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [aux_sym_cmd_identifier_token1] = ACTIONS(1282), - [aux_sym_cmd_identifier_token2] = ACTIONS(1285), - [aux_sym_cmd_identifier_token3] = ACTIONS(1285), - [aux_sym_cmd_identifier_token4] = ACTIONS(1285), - [aux_sym_cmd_identifier_token5] = ACTIONS(1285), - [aux_sym_cmd_identifier_token6] = ACTIONS(1285), - [aux_sym_cmd_identifier_token7] = ACTIONS(1285), - [aux_sym_cmd_identifier_token8] = ACTIONS(1282), - [aux_sym_cmd_identifier_token9] = ACTIONS(1282), - [aux_sym_cmd_identifier_token10] = ACTIONS(1285), - [aux_sym_cmd_identifier_token11] = ACTIONS(1285), - [aux_sym_cmd_identifier_token12] = ACTIONS(1282), - [aux_sym_cmd_identifier_token13] = ACTIONS(1282), - [aux_sym_cmd_identifier_token14] = ACTIONS(1282), - [aux_sym_cmd_identifier_token15] = ACTIONS(1282), - [aux_sym_cmd_identifier_token16] = ACTIONS(1285), - [aux_sym_cmd_identifier_token17] = ACTIONS(1285), - [aux_sym_cmd_identifier_token18] = ACTIONS(1285), - [aux_sym_cmd_identifier_token19] = ACTIONS(1285), - [aux_sym_cmd_identifier_token20] = ACTIONS(1285), - [aux_sym_cmd_identifier_token21] = ACTIONS(1285), - [aux_sym_cmd_identifier_token22] = ACTIONS(1285), - [aux_sym_cmd_identifier_token23] = ACTIONS(1285), - [aux_sym_cmd_identifier_token24] = ACTIONS(1285), - [aux_sym_cmd_identifier_token25] = ACTIONS(1285), - [aux_sym_cmd_identifier_token26] = ACTIONS(1285), - [aux_sym_cmd_identifier_token27] = ACTIONS(1285), - [aux_sym_cmd_identifier_token28] = ACTIONS(1285), - [aux_sym_cmd_identifier_token29] = ACTIONS(1285), - [aux_sym_cmd_identifier_token30] = ACTIONS(1285), - [aux_sym_cmd_identifier_token31] = ACTIONS(1285), - [aux_sym_cmd_identifier_token32] = ACTIONS(1285), - [aux_sym_cmd_identifier_token33] = ACTIONS(1285), - [aux_sym_cmd_identifier_token34] = ACTIONS(1282), - [aux_sym_cmd_identifier_token35] = ACTIONS(1285), - [aux_sym_cmd_identifier_token36] = ACTIONS(1285), - [aux_sym_cmd_identifier_token37] = ACTIONS(1285), - [aux_sym_cmd_identifier_token38] = ACTIONS(1282), - [aux_sym_cmd_identifier_token39] = ACTIONS(1285), - [aux_sym_cmd_identifier_token40] = ACTIONS(1285), - [sym__newline] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_DASH2] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_where] = ACTIONS(1285), - [aux_sym_expr_unary_token1] = ACTIONS(1285), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), - [anon_sym_DOT_DOT_LT] = ACTIONS(1285), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_decimal_token2] = ACTIONS(1285), - [aux_sym__val_number_decimal_token3] = ACTIONS(1285), - [aux_sym__val_number_decimal_token4] = ACTIONS(1285), - [aux_sym__val_number_token1] = ACTIONS(1285), - [aux_sym__val_number_token2] = ACTIONS(1285), - [aux_sym__val_number_token3] = ACTIONS(1285), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym__str_single_quotes] = ACTIONS(1285), - [sym__str_back_ticks] = ACTIONS(1285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), - [aux_sym_env_var_token1] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1285), - }, - [279] = { - [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(6852), - [aux_sym__parenthesized_body_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1507), - [aux_sym_cmd_identifier_token3] = ACTIONS(1507), - [aux_sym_cmd_identifier_token4] = ACTIONS(1507), - [aux_sym_cmd_identifier_token5] = ACTIONS(1507), - [aux_sym_cmd_identifier_token6] = ACTIONS(1507), - [aux_sym_cmd_identifier_token7] = ACTIONS(1507), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1507), - [aux_sym_cmd_identifier_token11] = ACTIONS(1507), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1507), - [aux_sym_cmd_identifier_token17] = ACTIONS(1507), - [aux_sym_cmd_identifier_token18] = ACTIONS(1507), - [aux_sym_cmd_identifier_token19] = ACTIONS(1507), - [aux_sym_cmd_identifier_token20] = ACTIONS(1507), - [aux_sym_cmd_identifier_token21] = ACTIONS(1507), - [aux_sym_cmd_identifier_token22] = ACTIONS(1507), - [aux_sym_cmd_identifier_token23] = ACTIONS(1507), - [aux_sym_cmd_identifier_token24] = ACTIONS(1507), - [aux_sym_cmd_identifier_token25] = ACTIONS(1507), - [aux_sym_cmd_identifier_token26] = ACTIONS(1507), - [aux_sym_cmd_identifier_token27] = ACTIONS(1507), - [aux_sym_cmd_identifier_token28] = ACTIONS(1507), - [aux_sym_cmd_identifier_token29] = ACTIONS(1507), - [aux_sym_cmd_identifier_token30] = ACTIONS(1507), - [aux_sym_cmd_identifier_token31] = ACTIONS(1507), - [aux_sym_cmd_identifier_token32] = ACTIONS(1507), - [aux_sym_cmd_identifier_token33] = ACTIONS(1507), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1507), - [aux_sym_cmd_identifier_token36] = ACTIONS(1507), - [aux_sym_cmd_identifier_token37] = ACTIONS(1507), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1507), - [aux_sym_cmd_identifier_token40] = ACTIONS(1507), - [sym__newline] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH2] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1507), - [aux_sym_expr_unary_token1] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_DOT_DOT_LT] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1507), - [aux_sym__val_number_decimal_token3] = ACTIONS(1507), - [aux_sym__val_number_decimal_token4] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1505), - [aux_sym__val_number_token5] = ACTIONS(1505), - [aux_sym__val_number_token6] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [aux_sym_env_var_token1] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1507), - }, - [280] = { - [sym_comment] = STATE(280), - [aux_sym__block_body_repeat1] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [281] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5105), - [sym_block] = STATE(5107), - [sym__expression_parenthesized] = STATE(5107), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5107), - [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(283), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [282] = { - [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(282), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1294), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1294), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1296), - [aux_sym_expr_unary_token1] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), - [aux_sym_env_var_token1] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), - }, - [283] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [284] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5066), - [sym_block] = STATE(5177), - [sym__expression_parenthesized] = STATE(5177), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5177), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(287), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [285] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5155), - [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(289), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [286] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5007), - [sym_block] = STATE(5009), - [sym__expression_parenthesized] = STATE(5009), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5009), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(291), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [287] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [288] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5106), - [sym__expression_parenthesized] = STATE(5106), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5106), - [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(294), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [289] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [290] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5015), - [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(295), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [291] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [292] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5047), - [sym_block] = STATE(5038), - [sym__expression_parenthesized] = STATE(5038), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5038), - [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(297), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [293] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5048), - [sym_block] = STATE(5023), - [sym__expression_parenthesized] = STATE(5023), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5023), - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(299), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [294] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5131), - [sym__expression_parenthesized] = STATE(5131), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5131), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [295] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [296] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5149), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5026), - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(301), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [297] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [298] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(302), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [299] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [300] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5095), - [sym_block] = STATE(5097), - [sym__expression_parenthesized] = STATE(5097), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5097), - [sym_comment] = STATE(300), - [aux_sym_shebang_repeat1] = STATE(303), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [301] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5019), - [sym_block] = STATE(5173), - [sym__expression_parenthesized] = STATE(5173), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5173), - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [302] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5029), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5140), - [sym_comment] = STATE(302), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [303] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(303), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [304] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5027), - [sym_block] = STATE(5051), - [sym__expression_parenthesized] = STATE(5051), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5051), - [sym_comment] = STATE(304), - [aux_sym_shebang_repeat1] = STATE(305), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [305] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5137), - [sym_block] = STATE(5006), - [sym__expression_parenthesized] = STATE(5006), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5006), - [sym_comment] = STATE(305), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [306] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if_parenthesized] = STATE(5057), - [sym_block] = STATE(5063), - [sym__expression_parenthesized] = STATE(5063), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3920), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(5063), - [sym_comment] = STATE(306), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [307] = { - [sym_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [aux_sym_cmd_identifier_token1] = ACTIONS(1528), - [aux_sym_cmd_identifier_token2] = ACTIONS(1526), - [aux_sym_cmd_identifier_token3] = ACTIONS(1526), - [aux_sym_cmd_identifier_token4] = ACTIONS(1526), - [aux_sym_cmd_identifier_token5] = ACTIONS(1526), - [aux_sym_cmd_identifier_token6] = ACTIONS(1526), - [aux_sym_cmd_identifier_token7] = ACTIONS(1526), - [aux_sym_cmd_identifier_token8] = ACTIONS(1528), - [aux_sym_cmd_identifier_token9] = ACTIONS(1528), - [aux_sym_cmd_identifier_token10] = ACTIONS(1526), - [aux_sym_cmd_identifier_token11] = ACTIONS(1526), - [aux_sym_cmd_identifier_token12] = ACTIONS(1528), - [aux_sym_cmd_identifier_token13] = ACTIONS(1528), - [aux_sym_cmd_identifier_token14] = ACTIONS(1528), - [aux_sym_cmd_identifier_token15] = ACTIONS(1528), - [aux_sym_cmd_identifier_token16] = ACTIONS(1526), - [aux_sym_cmd_identifier_token17] = ACTIONS(1526), - [aux_sym_cmd_identifier_token18] = ACTIONS(1526), - [aux_sym_cmd_identifier_token19] = ACTIONS(1526), - [aux_sym_cmd_identifier_token20] = ACTIONS(1526), - [aux_sym_cmd_identifier_token21] = ACTIONS(1526), - [aux_sym_cmd_identifier_token22] = ACTIONS(1526), - [aux_sym_cmd_identifier_token23] = ACTIONS(1526), - [aux_sym_cmd_identifier_token24] = ACTIONS(1526), - [aux_sym_cmd_identifier_token25] = ACTIONS(1526), - [aux_sym_cmd_identifier_token26] = ACTIONS(1526), - [aux_sym_cmd_identifier_token27] = ACTIONS(1526), - [aux_sym_cmd_identifier_token28] = ACTIONS(1526), - [aux_sym_cmd_identifier_token29] = ACTIONS(1526), - [aux_sym_cmd_identifier_token30] = ACTIONS(1526), - [aux_sym_cmd_identifier_token31] = ACTIONS(1526), - [aux_sym_cmd_identifier_token32] = ACTIONS(1526), - [aux_sym_cmd_identifier_token33] = ACTIONS(1526), - [aux_sym_cmd_identifier_token34] = ACTIONS(1528), - [aux_sym_cmd_identifier_token35] = ACTIONS(1526), - [aux_sym_cmd_identifier_token36] = ACTIONS(1526), - [aux_sym_cmd_identifier_token37] = ACTIONS(1526), - [aux_sym_cmd_identifier_token38] = ACTIONS(1528), - [aux_sym_cmd_identifier_token39] = ACTIONS(1526), - [aux_sym_cmd_identifier_token40] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_DASH2] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_where] = ACTIONS(1526), - [aux_sym_expr_unary_token1] = ACTIONS(1526), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT] = ACTIONS(1526), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1526), - [aux_sym__val_number_decimal_token4] = ACTIONS(1526), - [aux_sym__val_number_token1] = ACTIONS(1526), - [aux_sym__val_number_token2] = ACTIONS(1526), - [aux_sym__val_number_token3] = ACTIONS(1526), - [aux_sym__val_number_token4] = ACTIONS(1528), - [aux_sym__val_number_token5] = ACTIONS(1528), - [aux_sym__val_number_token6] = ACTIONS(1528), - [anon_sym_0b] = ACTIONS(1528), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [sym__str_single_quotes] = ACTIONS(1526), - [sym__str_back_ticks] = ACTIONS(1526), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1526), - [aux_sym_env_var_token1] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1526), - }, - [308] = { - [sym_comment] = STATE(308), - [aux_sym_shebang_repeat1] = STATE(282), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_alias] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_let_DASHenv] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [aux_sym_cmd_identifier_token1] = ACTIONS(1530), - [aux_sym_cmd_identifier_token2] = ACTIONS(1532), - [aux_sym_cmd_identifier_token3] = ACTIONS(1532), - [aux_sym_cmd_identifier_token4] = ACTIONS(1532), - [aux_sym_cmd_identifier_token5] = ACTIONS(1532), - [aux_sym_cmd_identifier_token6] = ACTIONS(1532), - [aux_sym_cmd_identifier_token7] = ACTIONS(1532), - [aux_sym_cmd_identifier_token8] = ACTIONS(1530), - [aux_sym_cmd_identifier_token9] = ACTIONS(1530), - [aux_sym_cmd_identifier_token10] = ACTIONS(1532), - [aux_sym_cmd_identifier_token11] = ACTIONS(1532), - [aux_sym_cmd_identifier_token12] = ACTIONS(1530), - [aux_sym_cmd_identifier_token13] = ACTIONS(1530), - [aux_sym_cmd_identifier_token14] = ACTIONS(1530), - [aux_sym_cmd_identifier_token15] = ACTIONS(1530), - [aux_sym_cmd_identifier_token16] = ACTIONS(1532), - [aux_sym_cmd_identifier_token17] = ACTIONS(1532), - [aux_sym_cmd_identifier_token18] = ACTIONS(1532), - [aux_sym_cmd_identifier_token19] = ACTIONS(1532), - [aux_sym_cmd_identifier_token20] = ACTIONS(1532), - [aux_sym_cmd_identifier_token21] = ACTIONS(1532), - [aux_sym_cmd_identifier_token22] = ACTIONS(1532), - [aux_sym_cmd_identifier_token23] = ACTIONS(1532), - [aux_sym_cmd_identifier_token24] = ACTIONS(1532), - [aux_sym_cmd_identifier_token25] = ACTIONS(1532), - [aux_sym_cmd_identifier_token26] = ACTIONS(1532), - [aux_sym_cmd_identifier_token27] = ACTIONS(1532), - [aux_sym_cmd_identifier_token28] = ACTIONS(1532), - [aux_sym_cmd_identifier_token29] = ACTIONS(1532), - [aux_sym_cmd_identifier_token30] = ACTIONS(1532), - [aux_sym_cmd_identifier_token31] = ACTIONS(1532), - [aux_sym_cmd_identifier_token32] = ACTIONS(1532), - [aux_sym_cmd_identifier_token33] = ACTIONS(1532), - [aux_sym_cmd_identifier_token34] = ACTIONS(1530), - [aux_sym_cmd_identifier_token35] = ACTIONS(1532), - [aux_sym_cmd_identifier_token36] = ACTIONS(1532), - [aux_sym_cmd_identifier_token37] = ACTIONS(1532), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1532), - [aux_sym_cmd_identifier_token40] = ACTIONS(1532), - [sym__newline] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_export_DASHenv] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_source] = ACTIONS(1530), - [anon_sym_source_DASHenv] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_hide] = ACTIONS(1530), - [anon_sym_hide_DASHenv] = ACTIONS(1530), - [anon_sym_overlay] = ACTIONS(1530), - [anon_sym_where] = ACTIONS(1532), - [aux_sym_expr_unary_token1] = ACTIONS(1532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), - [anon_sym_DOT_DOT_LT] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1532), - [aux_sym__val_number_decimal_token3] = ACTIONS(1532), - [aux_sym__val_number_decimal_token4] = ACTIONS(1532), - [aux_sym__val_number_token1] = ACTIONS(1532), - [aux_sym__val_number_token2] = ACTIONS(1532), - [aux_sym__val_number_token3] = ACTIONS(1532), - [aux_sym__val_number_token4] = ACTIONS(1530), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1530), - [anon_sym_0x] = ACTIONS(1530), - [sym_val_date] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym__str_single_quotes] = ACTIONS(1532), - [sym__str_back_ticks] = ACTIONS(1532), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), - [aux_sym_env_var_token1] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1532), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [309] = { - [sym_comment] = STATE(309), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), + [145] = { + [sym__block_body_statement] = STATE(7156), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1571), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(643), + [anon_sym_alias] = ACTIONS(646), + [anon_sym_let] = ACTIONS(649), + [anon_sym_let_DASHenv] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(652), + [anon_sym_const] = ACTIONS(655), + [aux_sym_cmd_identifier_token1] = ACTIONS(658), + [aux_sym_cmd_identifier_token2] = ACTIONS(661), + [aux_sym_cmd_identifier_token3] = ACTIONS(661), + [aux_sym_cmd_identifier_token4] = ACTIONS(661), + [aux_sym_cmd_identifier_token5] = ACTIONS(661), + [aux_sym_cmd_identifier_token6] = ACTIONS(661), + [aux_sym_cmd_identifier_token7] = ACTIONS(661), + [aux_sym_cmd_identifier_token8] = ACTIONS(658), + [aux_sym_cmd_identifier_token9] = ACTIONS(658), + [aux_sym_cmd_identifier_token10] = ACTIONS(661), + [aux_sym_cmd_identifier_token11] = ACTIONS(661), + [aux_sym_cmd_identifier_token12] = ACTIONS(658), + [aux_sym_cmd_identifier_token13] = ACTIONS(658), + [aux_sym_cmd_identifier_token14] = ACTIONS(658), + [aux_sym_cmd_identifier_token15] = ACTIONS(658), + [aux_sym_cmd_identifier_token16] = ACTIONS(661), + [aux_sym_cmd_identifier_token17] = ACTIONS(661), + [aux_sym_cmd_identifier_token18] = ACTIONS(658), + [aux_sym_cmd_identifier_token19] = ACTIONS(661), + [aux_sym_cmd_identifier_token20] = ACTIONS(661), + [aux_sym_cmd_identifier_token21] = ACTIONS(661), + [aux_sym_cmd_identifier_token22] = ACTIONS(661), + [aux_sym_cmd_identifier_token23] = ACTIONS(661), + [aux_sym_cmd_identifier_token24] = ACTIONS(661), + [aux_sym_cmd_identifier_token25] = ACTIONS(661), + [aux_sym_cmd_identifier_token26] = ACTIONS(661), + [aux_sym_cmd_identifier_token27] = ACTIONS(661), + [aux_sym_cmd_identifier_token28] = ACTIONS(661), + [aux_sym_cmd_identifier_token29] = ACTIONS(661), + [aux_sym_cmd_identifier_token30] = ACTIONS(661), + [aux_sym_cmd_identifier_token31] = ACTIONS(661), + [aux_sym_cmd_identifier_token32] = ACTIONS(658), + [aux_sym_cmd_identifier_token33] = ACTIONS(661), + [aux_sym_cmd_identifier_token34] = ACTIONS(658), + [aux_sym_cmd_identifier_token35] = ACTIONS(661), + [aux_sym_cmd_identifier_token36] = ACTIONS(661), + [aux_sym_cmd_identifier_token37] = ACTIONS(661), + [aux_sym_cmd_identifier_token38] = ACTIONS(658), + [aux_sym_cmd_identifier_token39] = ACTIONS(661), + [aux_sym_cmd_identifier_token40] = ACTIONS(661), + [anon_sym_def] = ACTIONS(664), + [anon_sym_export_DASHenv] = ACTIONS(667), + [anon_sym_extern] = ACTIONS(670), + [anon_sym_module] = ACTIONS(673), + [anon_sym_use] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(679), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_error] = ACTIONS(688), + [anon_sym_DASH2] = ACTIONS(691), + [anon_sym_break] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_for] = ACTIONS(700), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_while] = ACTIONS(706), + [anon_sym_do] = ACTIONS(709), + [anon_sym_if] = ACTIONS(712), + [anon_sym_match] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_try] = ACTIONS(724), + [anon_sym_return] = ACTIONS(727), + [anon_sym_source] = ACTIONS(730), + [anon_sym_source_DASHenv] = ACTIONS(730), + [anon_sym_register] = ACTIONS(733), + [anon_sym_hide] = ACTIONS(736), + [anon_sym_hide_DASHenv] = ACTIONS(739), + [anon_sym_overlay] = ACTIONS(742), + [anon_sym_where] = ACTIONS(745), + [aux_sym_expr_unary_token1] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(751), + [anon_sym_DOT_DOT_LT] = ACTIONS(751), + [anon_sym_null] = ACTIONS(754), + [anon_sym_true] = ACTIONS(757), + [anon_sym_false] = ACTIONS(757), + [aux_sym__val_number_decimal_token1] = ACTIONS(760), + [aux_sym__val_number_decimal_token2] = ACTIONS(763), + [aux_sym__val_number_decimal_token3] = ACTIONS(766), + [aux_sym__val_number_decimal_token4] = ACTIONS(769), + [aux_sym__val_number_token1] = ACTIONS(772), + [aux_sym__val_number_token2] = ACTIONS(772), + [aux_sym__val_number_token3] = ACTIONS(772), + [aux_sym__val_number_token4] = ACTIONS(775), + [aux_sym__val_number_token5] = ACTIONS(775), + [aux_sym__val_number_token6] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(778), + [anon_sym_0o] = ACTIONS(781), + [anon_sym_0x] = ACTIONS(781), + [sym_val_date] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(790), + [sym__str_back_ticks] = ACTIONS(790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [aux_sym_env_var_token1] = ACTIONS(799), + [anon_sym_CARET] = ACTIONS(802), + [anon_sym_ansigradient] = ACTIONS(805), + [anon_sym_ansilink] = ACTIONS(805), + [anon_sym_ansistrip] = ACTIONS(805), + [anon_sym_bitsand] = ACTIONS(805), + [anon_sym_bitsnot] = ACTIONS(805), + [anon_sym_bitsor] = ACTIONS(805), + [anon_sym_bitsrol] = ACTIONS(805), + [anon_sym_bitsror] = ACTIONS(805), + [anon_sym_bitsshl] = ACTIONS(805), + [anon_sym_bitsshr] = ACTIONS(805), + [anon_sym_bitsxor] = ACTIONS(805), + [anon_sym_bytesadd] = ACTIONS(805), + [anon_sym_bytesat] = ACTIONS(805), + [anon_sym_bytesbuild] = ACTIONS(805), + [anon_sym_bytescollect] = ACTIONS(805), + [anon_sym_bytesends_DASHwith] = ACTIONS(805), + [anon_sym_bytesindex_DASHof] = ACTIONS(805), + [anon_sym_byteslength] = ACTIONS(805), + [anon_sym_bytesremove] = ACTIONS(805), + [anon_sym_bytesreplace] = ACTIONS(805), + [anon_sym_bytesreverse] = ACTIONS(805), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(805), + [anon_sym_commandlineedit] = ACTIONS(805), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(805), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(805), + [anon_sym_configenv] = ACTIONS(805), + [anon_sym_confignu] = ACTIONS(805), + [anon_sym_configreset] = ACTIONS(805), + [anon_sym_dateformat] = ACTIONS(805), + [anon_sym_datehumanize] = ACTIONS(805), + [anon_sym_datelist_DASHtimezone] = ACTIONS(805), + [anon_sym_datenow] = ACTIONS(805), + [anon_sym_dateto_DASHrecord] = ACTIONS(805), + [anon_sym_dateto_DASHtable] = ACTIONS(805), + [anon_sym_dateto_DASHtimezone] = ACTIONS(805), + [anon_sym_debuginfo] = ACTIONS(805), + [anon_sym_debugprofile] = ACTIONS(805), + [anon_sym_decodebase32] = ACTIONS(808), + [anon_sym_decodebase32hex] = ACTIONS(805), + [anon_sym_decodebase64] = ACTIONS(805), + [anon_sym_decodehex] = ACTIONS(805), + [anon_sym_detectcolumns] = ACTIONS(805), + [anon_sym_dropcolumn] = ACTIONS(805), + [anon_sym_dropnth] = ACTIONS(805), + [anon_sym_dtadd] = ACTIONS(805), + [anon_sym_dtdiff] = ACTIONS(805), + [anon_sym_dtformat] = ACTIONS(805), + [anon_sym_dtnow] = ACTIONS(805), + [anon_sym_dtpart] = ACTIONS(805), + [anon_sym_dtto] = ACTIONS(805), + [anon_sym_dtutcnow] = ACTIONS(805), + [anon_sym_eachwhile] = ACTIONS(805), + [anon_sym_encodebase32] = ACTIONS(808), + [anon_sym_encodebase32hex] = ACTIONS(805), + [anon_sym_encodebase64] = ACTIONS(805), + [anon_sym_encodehex] = ACTIONS(805), + [anon_sym_errormake] = ACTIONS(805), + [anon_sym_exploreir] = ACTIONS(805), + [anon_sym_formatdate] = ACTIONS(805), + [anon_sym_formatduration] = ACTIONS(805), + [anon_sym_formatfilesize] = ACTIONS(805), + [anon_sym_formatpattern] = ACTIONS(805), + [anon_sym_frombz2] = ACTIONS(805), + [anon_sym_fromcsv] = ACTIONS(805), + [anon_sym_fromeml] = ACTIONS(805), + [anon_sym_fromgz] = ACTIONS(805), + [anon_sym_fromics] = ACTIONS(805), + [anon_sym_fromini] = ACTIONS(805), + [anon_sym_fromjson] = ACTIONS(805), + [anon_sym_frommsgpack] = ACTIONS(808), + [anon_sym_frommsgpackz] = ACTIONS(805), + [anon_sym_fromnuon] = ACTIONS(805), + [anon_sym_fromods] = ACTIONS(805), + [anon_sym_fromparquet] = ACTIONS(805), + [anon_sym_fromplist] = ACTIONS(805), + [anon_sym_frompng] = ACTIONS(805), + [anon_sym_fromssv] = ACTIONS(805), + [anon_sym_fromtoml] = ACTIONS(805), + [anon_sym_fromtsv] = ACTIONS(805), + [anon_sym_fromurl] = ACTIONS(805), + [anon_sym_fromvcf] = ACTIONS(805), + [anon_sym_fromxlsx] = ACTIONS(805), + [anon_sym_fromxml] = ACTIONS(805), + [anon_sym_fromxz] = ACTIONS(805), + [anon_sym_fromyaml] = ACTIONS(805), + [anon_sym_fromyml] = ACTIONS(805), + [anon_sym_fromzst] = ACTIONS(805), + [anon_sym_hashmd5] = ACTIONS(805), + [anon_sym_hashsha256] = ACTIONS(805), + [anon_sym_helpaliases] = ACTIONS(805), + [anon_sym_helpcommands] = ACTIONS(805), + [anon_sym_helpescapes] = ACTIONS(805), + [anon_sym_helpexterns] = ACTIONS(805), + [anon_sym_helpmodules] = ACTIONS(805), + [anon_sym_helpoperators] = ACTIONS(805), + [anon_sym_historyimport] = ACTIONS(805), + [anon_sym_historysession] = ACTIONS(805), + [anon_sym_httpdelete] = ACTIONS(805), + [anon_sym_httpget] = ACTIONS(805), + [anon_sym_httphead] = ACTIONS(805), + [anon_sym_httpoptions] = ACTIONS(805), + [anon_sym_httppatch] = ACTIONS(805), + [anon_sym_httppost] = ACTIONS(805), + [anon_sym_httpput] = ACTIONS(805), + [anon_sym_inputlist] = ACTIONS(808), + [anon_sym_inputlisten] = ACTIONS(805), + [anon_sym_intobinary] = ACTIONS(805), + [anon_sym_intobits] = ACTIONS(805), + [anon_sym_intobool] = ACTIONS(805), + [anon_sym_intocell_DASHpath] = ACTIONS(805), + [anon_sym_intodatetime] = ACTIONS(805), + [anon_sym_intoduration] = ACTIONS(805), + [anon_sym_intofilesize] = ACTIONS(805), + [anon_sym_intofloat] = ACTIONS(805), + [anon_sym_intoglob] = ACTIONS(805), + [anon_sym_intoint] = ACTIONS(805), + [anon_sym_intorecord] = ACTIONS(805), + [anon_sym_intosqlite] = ACTIONS(805), + [anon_sym_intostring] = ACTIONS(805), + [anon_sym_intovalue] = ACTIONS(805), + [anon_sym_jsonpath] = ACTIONS(805), + [anon_sym_keybindingsdefault] = ACTIONS(805), + [anon_sym_keybindingslist] = ACTIONS(808), + [anon_sym_keybindingslisten] = ACTIONS(805), + [anon_sym_mathabs] = ACTIONS(805), + [anon_sym_matharccos] = ACTIONS(808), + [anon_sym_matharccosh] = ACTIONS(805), + [anon_sym_matharcsin] = ACTIONS(808), + [anon_sym_matharcsinh] = ACTIONS(805), + [anon_sym_matharctan] = ACTIONS(808), + [anon_sym_matharctanh] = ACTIONS(805), + [anon_sym_mathavg] = ACTIONS(805), + [anon_sym_mathceil] = ACTIONS(805), + [anon_sym_mathcos] = ACTIONS(808), + [anon_sym_mathcosh] = ACTIONS(805), + [anon_sym_mathexp] = ACTIONS(805), + [anon_sym_mathfloor] = ACTIONS(805), + [anon_sym_mathln] = ACTIONS(805), + [anon_sym_mathlog] = ACTIONS(805), + [anon_sym_mathmax] = ACTIONS(805), + [anon_sym_mathmedian] = ACTIONS(805), + [anon_sym_mathmin] = ACTIONS(805), + [anon_sym_mathmode] = ACTIONS(805), + [anon_sym_mathproduct] = ACTIONS(805), + [anon_sym_mathround] = ACTIONS(805), + [anon_sym_mathsin] = ACTIONS(808), + [anon_sym_mathsinh] = ACTIONS(805), + [anon_sym_mathsqrt] = ACTIONS(805), + [anon_sym_mathstddev] = ACTIONS(805), + [anon_sym_mathsum] = ACTIONS(805), + [anon_sym_mathtan] = ACTIONS(808), + [anon_sym_mathtanh] = ACTIONS(805), + [anon_sym_mathvariance] = ACTIONS(805), + [anon_sym_metadataaccess] = ACTIONS(805), + [anon_sym_metadataset] = ACTIONS(805), + [anon_sym_pathbasename] = ACTIONS(805), + [anon_sym_pathdirname] = ACTIONS(805), + [anon_sym_pathexists] = ACTIONS(805), + [anon_sym_pathexpand] = ACTIONS(805), + [anon_sym_pathjoin] = ACTIONS(805), + [anon_sym_pathparse] = ACTIONS(805), + [anon_sym_pathrelative_DASHto] = ACTIONS(805), + [anon_sym_pathsplit] = ACTIONS(805), + [anon_sym_pathtype] = ACTIONS(805), + [anon_sym_pluginadd] = ACTIONS(805), + [anon_sym_pluginlist] = ACTIONS(805), + [anon_sym_pluginrm] = ACTIONS(805), + [anon_sym_pluginstop] = ACTIONS(805), + [anon_sym_polarsagg] = ACTIONS(808), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(805), + [anon_sym_polarsall_DASHfalse] = ACTIONS(805), + [anon_sym_polarsall_DASHtrue] = ACTIONS(805), + [anon_sym_polarsappend] = ACTIONS(805), + [anon_sym_polarsarg_DASHmax] = ACTIONS(805), + [anon_sym_polarsarg_DASHmin] = ACTIONS(805), + [anon_sym_polarsarg_DASHsort] = ACTIONS(805), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(805), + [anon_sym_polarsarg_DASHunique] = ACTIONS(805), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(805), + [anon_sym_polarsas] = ACTIONS(808), + [anon_sym_polarsas_DASHdate] = ACTIONS(808), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(805), + [anon_sym_polarscache] = ACTIONS(805), + [anon_sym_polarscast] = ACTIONS(805), + [anon_sym_polarscol] = ACTIONS(808), + [anon_sym_polarscollect] = ACTIONS(805), + [anon_sym_polarscolumns] = ACTIONS(805), + [anon_sym_polarsconcat] = ACTIONS(808), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(805), + [anon_sym_polarscontains] = ACTIONS(805), + [anon_sym_polarscount] = ACTIONS(808), + [anon_sym_polarscount_DASHnull] = ACTIONS(805), + [anon_sym_polarscumulative] = ACTIONS(805), + [anon_sym_polarsdatepart] = ACTIONS(805), + [anon_sym_polarsdecimal] = ACTIONS(805), + [anon_sym_polarsdrop] = ACTIONS(808), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(805), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(805), + [anon_sym_polarsdummies] = ACTIONS(805), + [anon_sym_polarsexplode] = ACTIONS(805), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(805), + [anon_sym_polarsfetch] = ACTIONS(805), + [anon_sym_polarsfill_DASHnan] = ACTIONS(805), + [anon_sym_polarsfill_DASHnull] = ACTIONS(805), + [anon_sym_polarsfilter] = ACTIONS(808), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(805), + [anon_sym_polarsfirst] = ACTIONS(805), + [anon_sym_polarsflatten] = ACTIONS(805), + [anon_sym_polarsget] = ACTIONS(808), + [anon_sym_polarsget_DASHday] = ACTIONS(805), + [anon_sym_polarsget_DASHhour] = ACTIONS(805), + [anon_sym_polarsget_DASHminute] = ACTIONS(805), + [anon_sym_polarsget_DASHmonth] = ACTIONS(805), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(805), + [anon_sym_polarsget_DASHordinal] = ACTIONS(805), + [anon_sym_polarsget_DASHsecond] = ACTIONS(805), + [anon_sym_polarsget_DASHweek] = ACTIONS(808), + [anon_sym_polarsget_DASHweekday] = ACTIONS(805), + [anon_sym_polarsget_DASHyear] = ACTIONS(805), + [anon_sym_polarsgroup_DASHby] = ACTIONS(805), + [anon_sym_polarsimplode] = ACTIONS(805), + [anon_sym_polarsinteger] = ACTIONS(805), + [anon_sym_polarsinto_DASHdf] = ACTIONS(805), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(805), + [anon_sym_polarsinto_DASHnu] = ACTIONS(805), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(805), + [anon_sym_polarsis_DASHin] = ACTIONS(805), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(805), + [anon_sym_polarsis_DASHnull] = ACTIONS(805), + [anon_sym_polarsis_DASHunique] = ACTIONS(805), + [anon_sym_polarsjoin] = ACTIONS(805), + [anon_sym_polarslast] = ACTIONS(805), + [anon_sym_polarslen] = ACTIONS(805), + [anon_sym_polarslit] = ACTIONS(805), + [anon_sym_polarslowercase] = ACTIONS(805), + [anon_sym_polarsmax] = ACTIONS(805), + [anon_sym_polarsmean] = ACTIONS(805), + [anon_sym_polarsmedian] = ACTIONS(805), + [anon_sym_polarsmin] = ACTIONS(805), + [anon_sym_polarsn_DASHunique] = ACTIONS(805), + [anon_sym_polarsnot] = ACTIONS(805), + [anon_sym_polarsopen] = ACTIONS(805), + [anon_sym_polarsotherwise] = ACTIONS(805), + [anon_sym_polarspivot] = ACTIONS(805), + [anon_sym_polarsprofile] = ACTIONS(805), + [anon_sym_polarsquantile] = ACTIONS(805), + [anon_sym_polarsquery] = ACTIONS(805), + [anon_sym_polarsrename] = ACTIONS(805), + [anon_sym_polarsreplace] = ACTIONS(808), + [anon_sym_polarsreplace_DASHall] = ACTIONS(805), + [anon_sym_polarsreverse] = ACTIONS(805), + [anon_sym_polarsrolling] = ACTIONS(805), + [anon_sym_polarssample] = ACTIONS(805), + [anon_sym_polarssave] = ACTIONS(805), + [anon_sym_polarsschema] = ACTIONS(805), + [anon_sym_polarsselect] = ACTIONS(805), + [anon_sym_polarsset] = ACTIONS(808), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(805), + [anon_sym_polarsshape] = ACTIONS(805), + [anon_sym_polarsshift] = ACTIONS(805), + [anon_sym_polarsslice] = ACTIONS(805), + [anon_sym_polarssort_DASHby] = ACTIONS(805), + [anon_sym_polarsstd] = ACTIONS(805), + [anon_sym_polarsstore_DASHget] = ACTIONS(805), + [anon_sym_polarsstore_DASHls] = ACTIONS(805), + [anon_sym_polarsstore_DASHrm] = ACTIONS(805), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(805), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(805), + [anon_sym_polarsstr_DASHslice] = ACTIONS(805), + [anon_sym_polarsstrftime] = ACTIONS(805), + [anon_sym_polarssum] = ACTIONS(808), + [anon_sym_polarssummary] = ACTIONS(805), + [anon_sym_polarstake] = ACTIONS(805), + [anon_sym_polarsunique] = ACTIONS(805), + [anon_sym_polarsunnest] = ACTIONS(805), + [anon_sym_polarsunpivot] = ACTIONS(805), + [anon_sym_polarsuppercase] = ACTIONS(805), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(805), + [anon_sym_polarsvar] = ACTIONS(805), + [anon_sym_polarswhen] = ACTIONS(805), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(805), + [anon_sym_querydb] = ACTIONS(805), + [anon_sym_querygit] = ACTIONS(805), + [anon_sym_queryjson] = ACTIONS(805), + [anon_sym_queryweb] = ACTIONS(808), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(805), + [anon_sym_queryxml] = ACTIONS(805), + [anon_sym_randombinary] = ACTIONS(805), + [anon_sym_randombool] = ACTIONS(805), + [anon_sym_randomchars] = ACTIONS(805), + [anon_sym_randomdice] = ACTIONS(805), + [anon_sym_randomfloat] = ACTIONS(805), + [anon_sym_randomint] = ACTIONS(805), + [anon_sym_randomuuid] = ACTIONS(805), + [anon_sym_rolldown] = ACTIONS(805), + [anon_sym_rollleft] = ACTIONS(805), + [anon_sym_rollright] = ACTIONS(805), + [anon_sym_rollup] = ACTIONS(805), + [anon_sym_scopealiases] = ACTIONS(805), + [anon_sym_scopecommands] = ACTIONS(805), + [anon_sym_scopeengine_DASHstats] = ACTIONS(805), + [anon_sym_scopeexterns] = ACTIONS(805), + [anon_sym_scopemodules] = ACTIONS(805), + [anon_sym_scopevariables] = ACTIONS(805), + [anon_sym_seqchar] = ACTIONS(805), + [anon_sym_seqdate] = ACTIONS(805), + [anon_sym_skipuntil] = ACTIONS(805), + [anon_sym_skipwhile] = ACTIONS(805), + [anon_sym_splitcell_DASHpath] = ACTIONS(805), + [anon_sym_splitchars] = ACTIONS(805), + [anon_sym_splitcolumn] = ACTIONS(805), + [anon_sym_splitlist] = ACTIONS(805), + [anon_sym_splitrow] = ACTIONS(805), + [anon_sym_splitwords] = ACTIONS(805), + [anon_sym_storcreate] = ACTIONS(805), + [anon_sym_stordelete] = ACTIONS(805), + [anon_sym_storexport] = ACTIONS(805), + [anon_sym_storimport] = ACTIONS(805), + [anon_sym_storinsert] = ACTIONS(805), + [anon_sym_storopen] = ACTIONS(805), + [anon_sym_storreset] = ACTIONS(805), + [anon_sym_storupdate] = ACTIONS(805), + [anon_sym_strbexpand] = ACTIONS(805), + [anon_sym_strcamel_DASHcase] = ACTIONS(805), + [anon_sym_strcapitalize] = ACTIONS(805), + [anon_sym_strcompress] = ACTIONS(805), + [anon_sym_strcontains] = ACTIONS(805), + [anon_sym_strdecompress] = ACTIONS(805), + [anon_sym_strdedent] = ACTIONS(805), + [anon_sym_strdeunicode] = ACTIONS(805), + [anon_sym_strdistance] = ACTIONS(805), + [anon_sym_strdowncase] = ACTIONS(805), + [anon_sym_strends_DASHwith] = ACTIONS(805), + [anon_sym_strexpand] = ACTIONS(805), + [anon_sym_strindent] = ACTIONS(805), + [anon_sym_strindex_DASHof] = ACTIONS(805), + [anon_sym_strjoin] = ACTIONS(805), + [anon_sym_strkebab_DASHcase] = ACTIONS(805), + [anon_sym_strlength] = ACTIONS(805), + [anon_sym_strpascal_DASHcase] = ACTIONS(805), + [anon_sym_strreplace] = ACTIONS(805), + [anon_sym_strreverse] = ACTIONS(805), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(805), + [anon_sym_strsimilarity] = ACTIONS(805), + [anon_sym_strsnake_DASHcase] = ACTIONS(805), + [anon_sym_strstarts_DASHwith] = ACTIONS(805), + [anon_sym_strstats] = ACTIONS(805), + [anon_sym_strsubstring] = ACTIONS(805), + [anon_sym_strtitle_DASHcase] = ACTIONS(805), + [anon_sym_strtrim] = ACTIONS(805), + [anon_sym_strupcase] = ACTIONS(805), + [anon_sym_strwrap] = ACTIONS(805), + [anon_sym_syscpu] = ACTIONS(805), + [anon_sym_sysdisks] = ACTIONS(805), + [anon_sym_syshost] = ACTIONS(805), + [anon_sym_sysmem] = ACTIONS(805), + [anon_sym_sysnet] = ACTIONS(805), + [anon_sym_systemp] = ACTIONS(805), + [anon_sym_sysusers] = ACTIONS(805), + [anon_sym_takeuntil] = ACTIONS(805), + [anon_sym_takewhile] = ACTIONS(805), + [anon_sym_termquery] = ACTIONS(805), + [anon_sym_termsize] = ACTIONS(805), + [anon_sym_tobz2] = ACTIONS(805), + [anon_sym_tocsv] = ACTIONS(805), + [anon_sym_togz] = ACTIONS(805), + [anon_sym_tohtml] = ACTIONS(805), + [anon_sym_tojson] = ACTIONS(805), + [anon_sym_tomd] = ACTIONS(805), + [anon_sym_tomsgpack] = ACTIONS(808), + [anon_sym_tomsgpackz] = ACTIONS(805), + [anon_sym_tonuon] = ACTIONS(805), + [anon_sym_toparquet] = ACTIONS(805), + [anon_sym_toplist] = ACTIONS(805), + [anon_sym_topng] = ACTIONS(805), + [anon_sym_totext] = ACTIONS(805), + [anon_sym_totoml] = ACTIONS(805), + [anon_sym_totsv] = ACTIONS(805), + [anon_sym_toxml] = ACTIONS(805), + [anon_sym_toxz] = ACTIONS(805), + [anon_sym_toyaml] = ACTIONS(805), + [anon_sym_tozst] = ACTIONS(805), + [anon_sym_updatecells] = ACTIONS(805), + [anon_sym_urlbuild_DASHquery] = ACTIONS(805), + [anon_sym_urldecode] = ACTIONS(805), + [anon_sym_urlencode] = ACTIONS(805), + [anon_sym_urljoin] = ACTIONS(805), + [anon_sym_urlparse] = ACTIONS(805), + [anon_sym_urlsplit_DASHquery] = ACTIONS(805), + [anon_sym_viewfiles] = ACTIONS(805), + [anon_sym_viewir] = ACTIONS(805), + [anon_sym_viewsource] = ACTIONS(805), + [anon_sym_viewspan] = ACTIONS(805), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(811), }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_alias] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_let_DASHenv] = ACTIONS(1290), - [anon_sym_mut] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [aux_sym_cmd_identifier_token1] = ACTIONS(1290), - [aux_sym_cmd_identifier_token2] = ACTIONS(1288), - [aux_sym_cmd_identifier_token3] = ACTIONS(1288), - [aux_sym_cmd_identifier_token4] = ACTIONS(1288), - [aux_sym_cmd_identifier_token5] = ACTIONS(1288), - [aux_sym_cmd_identifier_token6] = ACTIONS(1288), - [aux_sym_cmd_identifier_token7] = ACTIONS(1288), - [aux_sym_cmd_identifier_token8] = ACTIONS(1290), - [aux_sym_cmd_identifier_token9] = ACTIONS(1290), - [aux_sym_cmd_identifier_token10] = ACTIONS(1288), - [aux_sym_cmd_identifier_token11] = ACTIONS(1288), - [aux_sym_cmd_identifier_token12] = ACTIONS(1290), - [aux_sym_cmd_identifier_token13] = ACTIONS(1290), - [aux_sym_cmd_identifier_token14] = ACTIONS(1290), - [aux_sym_cmd_identifier_token15] = ACTIONS(1290), - [aux_sym_cmd_identifier_token16] = ACTIONS(1288), - [aux_sym_cmd_identifier_token17] = ACTIONS(1288), - [aux_sym_cmd_identifier_token18] = ACTIONS(1288), - [aux_sym_cmd_identifier_token19] = ACTIONS(1288), - [aux_sym_cmd_identifier_token20] = ACTIONS(1288), - [aux_sym_cmd_identifier_token21] = ACTIONS(1288), - [aux_sym_cmd_identifier_token22] = ACTIONS(1288), - [aux_sym_cmd_identifier_token23] = ACTIONS(1288), - [aux_sym_cmd_identifier_token24] = ACTIONS(1288), - [aux_sym_cmd_identifier_token25] = ACTIONS(1288), - [aux_sym_cmd_identifier_token26] = ACTIONS(1288), - [aux_sym_cmd_identifier_token27] = ACTIONS(1288), - [aux_sym_cmd_identifier_token28] = ACTIONS(1288), - [aux_sym_cmd_identifier_token29] = ACTIONS(1288), - [aux_sym_cmd_identifier_token30] = ACTIONS(1288), - [aux_sym_cmd_identifier_token31] = ACTIONS(1288), - [aux_sym_cmd_identifier_token32] = ACTIONS(1288), - [aux_sym_cmd_identifier_token33] = ACTIONS(1288), - [aux_sym_cmd_identifier_token34] = ACTIONS(1290), - [aux_sym_cmd_identifier_token35] = ACTIONS(1288), - [aux_sym_cmd_identifier_token36] = ACTIONS(1288), - [aux_sym_cmd_identifier_token37] = ACTIONS(1288), - [aux_sym_cmd_identifier_token38] = ACTIONS(1290), - [aux_sym_cmd_identifier_token39] = ACTIONS(1288), - [aux_sym_cmd_identifier_token40] = ACTIONS(1288), - [sym__newline] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1290), - [anon_sym_export_DASHenv] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_error] = ACTIONS(1290), - [anon_sym_DASH2] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_source] = ACTIONS(1290), - [anon_sym_source_DASHenv] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_hide] = ACTIONS(1290), - [anon_sym_hide_DASHenv] = ACTIONS(1290), - [anon_sym_overlay] = ACTIONS(1290), - [anon_sym_where] = ACTIONS(1288), - [aux_sym_expr_unary_token1] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [aux_sym__val_number_decimal_token1] = ACTIONS(1290), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1290), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1290), - [anon_sym_0b] = ACTIONS(1290), - [anon_sym_0o] = ACTIONS(1290), - [anon_sym_0x] = ACTIONS(1290), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [aux_sym_env_var_token1] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1288), + [146] = { + [sym__block_body_statement_parenthesized] = STATE(6370), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1633), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(146), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym__parenthesized_body_repeat2] = STATE(146), + [anon_sym_export] = ACTIONS(814), + [anon_sym_alias] = ACTIONS(817), + [anon_sym_let] = ACTIONS(820), + [anon_sym_let_DASHenv] = ACTIONS(820), + [anon_sym_mut] = ACTIONS(823), + [anon_sym_const] = ACTIONS(826), + [aux_sym_cmd_identifier_token1] = ACTIONS(829), + [aux_sym_cmd_identifier_token2] = ACTIONS(832), + [aux_sym_cmd_identifier_token3] = ACTIONS(832), + [aux_sym_cmd_identifier_token4] = ACTIONS(832), + [aux_sym_cmd_identifier_token5] = ACTIONS(832), + [aux_sym_cmd_identifier_token6] = ACTIONS(832), + [aux_sym_cmd_identifier_token7] = ACTIONS(832), + [aux_sym_cmd_identifier_token8] = ACTIONS(829), + [aux_sym_cmd_identifier_token9] = ACTIONS(829), + [aux_sym_cmd_identifier_token10] = ACTIONS(832), + [aux_sym_cmd_identifier_token11] = ACTIONS(832), + [aux_sym_cmd_identifier_token12] = ACTIONS(829), + [aux_sym_cmd_identifier_token13] = ACTIONS(829), + [aux_sym_cmd_identifier_token14] = ACTIONS(829), + [aux_sym_cmd_identifier_token15] = ACTIONS(829), + [aux_sym_cmd_identifier_token16] = ACTIONS(832), + [aux_sym_cmd_identifier_token17] = ACTIONS(832), + [aux_sym_cmd_identifier_token18] = ACTIONS(829), + [aux_sym_cmd_identifier_token19] = ACTIONS(832), + [aux_sym_cmd_identifier_token20] = ACTIONS(832), + [aux_sym_cmd_identifier_token21] = ACTIONS(832), + [aux_sym_cmd_identifier_token22] = ACTIONS(832), + [aux_sym_cmd_identifier_token23] = ACTIONS(832), + [aux_sym_cmd_identifier_token24] = ACTIONS(832), + [aux_sym_cmd_identifier_token25] = ACTIONS(832), + [aux_sym_cmd_identifier_token26] = ACTIONS(832), + [aux_sym_cmd_identifier_token27] = ACTIONS(832), + [aux_sym_cmd_identifier_token28] = ACTIONS(832), + [aux_sym_cmd_identifier_token29] = ACTIONS(832), + [aux_sym_cmd_identifier_token30] = ACTIONS(832), + [aux_sym_cmd_identifier_token31] = ACTIONS(832), + [aux_sym_cmd_identifier_token32] = ACTIONS(829), + [aux_sym_cmd_identifier_token33] = ACTIONS(832), + [aux_sym_cmd_identifier_token34] = ACTIONS(829), + [aux_sym_cmd_identifier_token35] = ACTIONS(832), + [aux_sym_cmd_identifier_token36] = ACTIONS(832), + [aux_sym_cmd_identifier_token37] = ACTIONS(832), + [aux_sym_cmd_identifier_token38] = ACTIONS(829), + [aux_sym_cmd_identifier_token39] = ACTIONS(832), + [aux_sym_cmd_identifier_token40] = ACTIONS(832), + [anon_sym_def] = ACTIONS(835), + [anon_sym_export_DASHenv] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(841), + [anon_sym_module] = ACTIONS(844), + [anon_sym_use] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_error] = ACTIONS(859), + [anon_sym_DASH2] = ACTIONS(862), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_for] = ACTIONS(871), + [anon_sym_loop] = ACTIONS(874), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(880), + [anon_sym_if] = ACTIONS(883), + [anon_sym_match] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_try] = ACTIONS(895), + [anon_sym_return] = ACTIONS(898), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(904), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_hide_DASHenv] = ACTIONS(910), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_where] = ACTIONS(916), + [aux_sym_expr_unary_token1] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_DOT_DOT_LT] = ACTIONS(922), + [anon_sym_null] = ACTIONS(925), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(934), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_0b] = ACTIONS(949), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(961), + [sym__str_back_ticks] = ACTIONS(961), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(967), + [aux_sym_env_var_token1] = ACTIONS(970), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_ansigradient] = ACTIONS(976), + [anon_sym_ansilink] = ACTIONS(976), + [anon_sym_ansistrip] = ACTIONS(976), + [anon_sym_bitsand] = ACTIONS(976), + [anon_sym_bitsnot] = ACTIONS(976), + [anon_sym_bitsor] = ACTIONS(976), + [anon_sym_bitsrol] = ACTIONS(976), + [anon_sym_bitsror] = ACTIONS(976), + [anon_sym_bitsshl] = ACTIONS(976), + [anon_sym_bitsshr] = ACTIONS(976), + [anon_sym_bitsxor] = ACTIONS(976), + [anon_sym_bytesadd] = ACTIONS(976), + [anon_sym_bytesat] = ACTIONS(976), + [anon_sym_bytesbuild] = ACTIONS(976), + [anon_sym_bytescollect] = ACTIONS(976), + [anon_sym_bytesends_DASHwith] = ACTIONS(976), + [anon_sym_bytesindex_DASHof] = ACTIONS(976), + [anon_sym_byteslength] = ACTIONS(976), + [anon_sym_bytesremove] = ACTIONS(976), + [anon_sym_bytesreplace] = ACTIONS(976), + [anon_sym_bytesreverse] = ACTIONS(976), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(976), + [anon_sym_commandlineedit] = ACTIONS(976), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(976), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(976), + [anon_sym_configenv] = ACTIONS(976), + [anon_sym_confignu] = ACTIONS(976), + [anon_sym_configreset] = ACTIONS(976), + [anon_sym_dateformat] = ACTIONS(976), + [anon_sym_datehumanize] = ACTIONS(976), + [anon_sym_datelist_DASHtimezone] = ACTIONS(976), + [anon_sym_datenow] = ACTIONS(976), + [anon_sym_dateto_DASHrecord] = ACTIONS(976), + [anon_sym_dateto_DASHtable] = ACTIONS(976), + [anon_sym_dateto_DASHtimezone] = ACTIONS(976), + [anon_sym_debuginfo] = ACTIONS(976), + [anon_sym_debugprofile] = ACTIONS(976), + [anon_sym_decodebase32] = ACTIONS(979), + [anon_sym_decodebase32hex] = ACTIONS(976), + [anon_sym_decodebase64] = ACTIONS(976), + [anon_sym_decodehex] = ACTIONS(976), + [anon_sym_detectcolumns] = ACTIONS(976), + [anon_sym_dropcolumn] = ACTIONS(976), + [anon_sym_dropnth] = ACTIONS(976), + [anon_sym_dtadd] = ACTIONS(976), + [anon_sym_dtdiff] = ACTIONS(976), + [anon_sym_dtformat] = ACTIONS(976), + [anon_sym_dtnow] = ACTIONS(976), + [anon_sym_dtpart] = ACTIONS(976), + [anon_sym_dtto] = ACTIONS(976), + [anon_sym_dtutcnow] = ACTIONS(976), + [anon_sym_eachwhile] = ACTIONS(976), + [anon_sym_encodebase32] = ACTIONS(979), + [anon_sym_encodebase32hex] = ACTIONS(976), + [anon_sym_encodebase64] = ACTIONS(976), + [anon_sym_encodehex] = ACTIONS(976), + [anon_sym_errormake] = ACTIONS(976), + [anon_sym_exploreir] = ACTIONS(976), + [anon_sym_formatdate] = ACTIONS(976), + [anon_sym_formatduration] = ACTIONS(976), + [anon_sym_formatfilesize] = ACTIONS(976), + [anon_sym_formatpattern] = ACTIONS(976), + [anon_sym_frombz2] = ACTIONS(976), + [anon_sym_fromcsv] = ACTIONS(976), + [anon_sym_fromeml] = ACTIONS(976), + [anon_sym_fromgz] = ACTIONS(976), + [anon_sym_fromics] = ACTIONS(976), + [anon_sym_fromini] = ACTIONS(976), + [anon_sym_fromjson] = ACTIONS(976), + [anon_sym_frommsgpack] = ACTIONS(979), + [anon_sym_frommsgpackz] = ACTIONS(976), + [anon_sym_fromnuon] = ACTIONS(976), + [anon_sym_fromods] = ACTIONS(976), + [anon_sym_fromparquet] = ACTIONS(976), + [anon_sym_fromplist] = ACTIONS(976), + [anon_sym_frompng] = ACTIONS(976), + [anon_sym_fromssv] = ACTIONS(976), + [anon_sym_fromtoml] = ACTIONS(976), + [anon_sym_fromtsv] = ACTIONS(976), + [anon_sym_fromurl] = ACTIONS(976), + [anon_sym_fromvcf] = ACTIONS(976), + [anon_sym_fromxlsx] = ACTIONS(976), + [anon_sym_fromxml] = ACTIONS(976), + [anon_sym_fromxz] = ACTIONS(976), + [anon_sym_fromyaml] = ACTIONS(976), + [anon_sym_fromyml] = ACTIONS(976), + [anon_sym_fromzst] = ACTIONS(976), + [anon_sym_hashmd5] = ACTIONS(976), + [anon_sym_hashsha256] = ACTIONS(976), + [anon_sym_helpaliases] = ACTIONS(976), + [anon_sym_helpcommands] = ACTIONS(976), + [anon_sym_helpescapes] = ACTIONS(976), + [anon_sym_helpexterns] = ACTIONS(976), + [anon_sym_helpmodules] = ACTIONS(976), + [anon_sym_helpoperators] = ACTIONS(976), + [anon_sym_historyimport] = ACTIONS(976), + [anon_sym_historysession] = ACTIONS(976), + [anon_sym_httpdelete] = ACTIONS(976), + [anon_sym_httpget] = ACTIONS(976), + [anon_sym_httphead] = ACTIONS(976), + [anon_sym_httpoptions] = ACTIONS(976), + [anon_sym_httppatch] = ACTIONS(976), + [anon_sym_httppost] = ACTIONS(976), + [anon_sym_httpput] = ACTIONS(976), + [anon_sym_inputlist] = ACTIONS(979), + [anon_sym_inputlisten] = ACTIONS(976), + [anon_sym_intobinary] = ACTIONS(976), + [anon_sym_intobits] = ACTIONS(976), + [anon_sym_intobool] = ACTIONS(976), + [anon_sym_intocell_DASHpath] = ACTIONS(976), + [anon_sym_intodatetime] = ACTIONS(976), + [anon_sym_intoduration] = ACTIONS(976), + [anon_sym_intofilesize] = ACTIONS(976), + [anon_sym_intofloat] = ACTIONS(976), + [anon_sym_intoglob] = ACTIONS(976), + [anon_sym_intoint] = ACTIONS(976), + [anon_sym_intorecord] = ACTIONS(976), + [anon_sym_intosqlite] = ACTIONS(976), + [anon_sym_intostring] = ACTIONS(976), + [anon_sym_intovalue] = ACTIONS(976), + [anon_sym_jsonpath] = ACTIONS(976), + [anon_sym_keybindingsdefault] = ACTIONS(976), + [anon_sym_keybindingslist] = ACTIONS(979), + [anon_sym_keybindingslisten] = ACTIONS(976), + [anon_sym_mathabs] = ACTIONS(976), + [anon_sym_matharccos] = ACTIONS(979), + [anon_sym_matharccosh] = ACTIONS(976), + [anon_sym_matharcsin] = ACTIONS(979), + [anon_sym_matharcsinh] = ACTIONS(976), + [anon_sym_matharctan] = ACTIONS(979), + [anon_sym_matharctanh] = ACTIONS(976), + [anon_sym_mathavg] = ACTIONS(976), + [anon_sym_mathceil] = ACTIONS(976), + [anon_sym_mathcos] = ACTIONS(979), + [anon_sym_mathcosh] = ACTIONS(976), + [anon_sym_mathexp] = ACTIONS(976), + [anon_sym_mathfloor] = ACTIONS(976), + [anon_sym_mathln] = ACTIONS(976), + [anon_sym_mathlog] = ACTIONS(976), + [anon_sym_mathmax] = ACTIONS(976), + [anon_sym_mathmedian] = ACTIONS(976), + [anon_sym_mathmin] = ACTIONS(976), + [anon_sym_mathmode] = ACTIONS(976), + [anon_sym_mathproduct] = ACTIONS(976), + [anon_sym_mathround] = ACTIONS(976), + [anon_sym_mathsin] = ACTIONS(979), + [anon_sym_mathsinh] = ACTIONS(976), + [anon_sym_mathsqrt] = ACTIONS(976), + [anon_sym_mathstddev] = ACTIONS(976), + [anon_sym_mathsum] = ACTIONS(976), + [anon_sym_mathtan] = ACTIONS(979), + [anon_sym_mathtanh] = ACTIONS(976), + [anon_sym_mathvariance] = ACTIONS(976), + [anon_sym_metadataaccess] = ACTIONS(976), + [anon_sym_metadataset] = ACTIONS(976), + [anon_sym_pathbasename] = ACTIONS(976), + [anon_sym_pathdirname] = ACTIONS(976), + [anon_sym_pathexists] = ACTIONS(976), + [anon_sym_pathexpand] = ACTIONS(976), + [anon_sym_pathjoin] = ACTIONS(976), + [anon_sym_pathparse] = ACTIONS(976), + [anon_sym_pathrelative_DASHto] = ACTIONS(976), + [anon_sym_pathsplit] = ACTIONS(976), + [anon_sym_pathtype] = ACTIONS(976), + [anon_sym_pluginadd] = ACTIONS(976), + [anon_sym_pluginlist] = ACTIONS(976), + [anon_sym_pluginrm] = ACTIONS(976), + [anon_sym_pluginstop] = ACTIONS(976), + [anon_sym_polarsagg] = ACTIONS(979), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(976), + [anon_sym_polarsall_DASHfalse] = ACTIONS(976), + [anon_sym_polarsall_DASHtrue] = ACTIONS(976), + [anon_sym_polarsappend] = ACTIONS(976), + [anon_sym_polarsarg_DASHmax] = ACTIONS(976), + [anon_sym_polarsarg_DASHmin] = ACTIONS(976), + [anon_sym_polarsarg_DASHsort] = ACTIONS(976), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(976), + [anon_sym_polarsarg_DASHunique] = ACTIONS(976), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(976), + [anon_sym_polarsas] = ACTIONS(979), + [anon_sym_polarsas_DASHdate] = ACTIONS(979), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(976), + [anon_sym_polarscache] = ACTIONS(976), + [anon_sym_polarscast] = ACTIONS(976), + [anon_sym_polarscol] = ACTIONS(979), + [anon_sym_polarscollect] = ACTIONS(976), + [anon_sym_polarscolumns] = ACTIONS(976), + [anon_sym_polarsconcat] = ACTIONS(979), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(976), + [anon_sym_polarscontains] = ACTIONS(976), + [anon_sym_polarscount] = ACTIONS(979), + [anon_sym_polarscount_DASHnull] = ACTIONS(976), + [anon_sym_polarscumulative] = ACTIONS(976), + [anon_sym_polarsdatepart] = ACTIONS(976), + [anon_sym_polarsdecimal] = ACTIONS(976), + [anon_sym_polarsdrop] = ACTIONS(979), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(976), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(976), + [anon_sym_polarsdummies] = ACTIONS(976), + [anon_sym_polarsexplode] = ACTIONS(976), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(976), + [anon_sym_polarsfetch] = ACTIONS(976), + [anon_sym_polarsfill_DASHnan] = ACTIONS(976), + [anon_sym_polarsfill_DASHnull] = ACTIONS(976), + [anon_sym_polarsfilter] = ACTIONS(979), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(976), + [anon_sym_polarsfirst] = ACTIONS(976), + [anon_sym_polarsflatten] = ACTIONS(976), + [anon_sym_polarsget] = ACTIONS(979), + [anon_sym_polarsget_DASHday] = ACTIONS(976), + [anon_sym_polarsget_DASHhour] = ACTIONS(976), + [anon_sym_polarsget_DASHminute] = ACTIONS(976), + [anon_sym_polarsget_DASHmonth] = ACTIONS(976), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(976), + [anon_sym_polarsget_DASHordinal] = ACTIONS(976), + [anon_sym_polarsget_DASHsecond] = ACTIONS(976), + [anon_sym_polarsget_DASHweek] = ACTIONS(979), + [anon_sym_polarsget_DASHweekday] = ACTIONS(976), + [anon_sym_polarsget_DASHyear] = ACTIONS(976), + [anon_sym_polarsgroup_DASHby] = ACTIONS(976), + [anon_sym_polarsimplode] = ACTIONS(976), + [anon_sym_polarsinteger] = ACTIONS(976), + [anon_sym_polarsinto_DASHdf] = ACTIONS(976), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(976), + [anon_sym_polarsinto_DASHnu] = ACTIONS(976), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(976), + [anon_sym_polarsis_DASHin] = ACTIONS(976), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(976), + [anon_sym_polarsis_DASHnull] = ACTIONS(976), + [anon_sym_polarsis_DASHunique] = ACTIONS(976), + [anon_sym_polarsjoin] = ACTIONS(976), + [anon_sym_polarslast] = ACTIONS(976), + [anon_sym_polarslen] = ACTIONS(976), + [anon_sym_polarslit] = ACTIONS(976), + [anon_sym_polarslowercase] = ACTIONS(976), + [anon_sym_polarsmax] = ACTIONS(976), + [anon_sym_polarsmean] = ACTIONS(976), + [anon_sym_polarsmedian] = ACTIONS(976), + [anon_sym_polarsmin] = ACTIONS(976), + [anon_sym_polarsn_DASHunique] = ACTIONS(976), + [anon_sym_polarsnot] = ACTIONS(976), + [anon_sym_polarsopen] = ACTIONS(976), + [anon_sym_polarsotherwise] = ACTIONS(976), + [anon_sym_polarspivot] = ACTIONS(976), + [anon_sym_polarsprofile] = ACTIONS(976), + [anon_sym_polarsquantile] = ACTIONS(976), + [anon_sym_polarsquery] = ACTIONS(976), + [anon_sym_polarsrename] = ACTIONS(976), + [anon_sym_polarsreplace] = ACTIONS(979), + [anon_sym_polarsreplace_DASHall] = ACTIONS(976), + [anon_sym_polarsreverse] = ACTIONS(976), + [anon_sym_polarsrolling] = ACTIONS(976), + [anon_sym_polarssample] = ACTIONS(976), + [anon_sym_polarssave] = ACTIONS(976), + [anon_sym_polarsschema] = ACTIONS(976), + [anon_sym_polarsselect] = ACTIONS(976), + [anon_sym_polarsset] = ACTIONS(979), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(976), + [anon_sym_polarsshape] = ACTIONS(976), + [anon_sym_polarsshift] = ACTIONS(976), + [anon_sym_polarsslice] = ACTIONS(976), + [anon_sym_polarssort_DASHby] = ACTIONS(976), + [anon_sym_polarsstd] = ACTIONS(976), + [anon_sym_polarsstore_DASHget] = ACTIONS(976), + [anon_sym_polarsstore_DASHls] = ACTIONS(976), + [anon_sym_polarsstore_DASHrm] = ACTIONS(976), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(976), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(976), + [anon_sym_polarsstr_DASHslice] = ACTIONS(976), + [anon_sym_polarsstrftime] = ACTIONS(976), + [anon_sym_polarssum] = ACTIONS(979), + [anon_sym_polarssummary] = ACTIONS(976), + [anon_sym_polarstake] = ACTIONS(976), + [anon_sym_polarsunique] = ACTIONS(976), + [anon_sym_polarsunnest] = ACTIONS(976), + [anon_sym_polarsunpivot] = ACTIONS(976), + [anon_sym_polarsuppercase] = ACTIONS(976), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(976), + [anon_sym_polarsvar] = ACTIONS(976), + [anon_sym_polarswhen] = ACTIONS(976), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(976), + [anon_sym_querydb] = ACTIONS(976), + [anon_sym_querygit] = ACTIONS(976), + [anon_sym_queryjson] = ACTIONS(976), + [anon_sym_queryweb] = ACTIONS(979), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(976), + [anon_sym_queryxml] = ACTIONS(976), + [anon_sym_randombinary] = ACTIONS(976), + [anon_sym_randombool] = ACTIONS(976), + [anon_sym_randomchars] = ACTIONS(976), + [anon_sym_randomdice] = ACTIONS(976), + [anon_sym_randomfloat] = ACTIONS(976), + [anon_sym_randomint] = ACTIONS(976), + [anon_sym_randomuuid] = ACTIONS(976), + [anon_sym_rolldown] = ACTIONS(976), + [anon_sym_rollleft] = ACTIONS(976), + [anon_sym_rollright] = ACTIONS(976), + [anon_sym_rollup] = ACTIONS(976), + [anon_sym_scopealiases] = ACTIONS(976), + [anon_sym_scopecommands] = ACTIONS(976), + [anon_sym_scopeengine_DASHstats] = ACTIONS(976), + [anon_sym_scopeexterns] = ACTIONS(976), + [anon_sym_scopemodules] = ACTIONS(976), + [anon_sym_scopevariables] = ACTIONS(976), + [anon_sym_seqchar] = ACTIONS(976), + [anon_sym_seqdate] = ACTIONS(976), + [anon_sym_skipuntil] = ACTIONS(976), + [anon_sym_skipwhile] = ACTIONS(976), + [anon_sym_splitcell_DASHpath] = ACTIONS(976), + [anon_sym_splitchars] = ACTIONS(976), + [anon_sym_splitcolumn] = ACTIONS(976), + [anon_sym_splitlist] = ACTIONS(976), + [anon_sym_splitrow] = ACTIONS(976), + [anon_sym_splitwords] = ACTIONS(976), + [anon_sym_storcreate] = ACTIONS(976), + [anon_sym_stordelete] = ACTIONS(976), + [anon_sym_storexport] = ACTIONS(976), + [anon_sym_storimport] = ACTIONS(976), + [anon_sym_storinsert] = ACTIONS(976), + [anon_sym_storopen] = ACTIONS(976), + [anon_sym_storreset] = ACTIONS(976), + [anon_sym_storupdate] = ACTIONS(976), + [anon_sym_strbexpand] = ACTIONS(976), + [anon_sym_strcamel_DASHcase] = ACTIONS(976), + [anon_sym_strcapitalize] = ACTIONS(976), + [anon_sym_strcompress] = ACTIONS(976), + [anon_sym_strcontains] = ACTIONS(976), + [anon_sym_strdecompress] = ACTIONS(976), + [anon_sym_strdedent] = ACTIONS(976), + [anon_sym_strdeunicode] = ACTIONS(976), + [anon_sym_strdistance] = ACTIONS(976), + [anon_sym_strdowncase] = ACTIONS(976), + [anon_sym_strends_DASHwith] = ACTIONS(976), + [anon_sym_strexpand] = ACTIONS(976), + [anon_sym_strindent] = ACTIONS(976), + [anon_sym_strindex_DASHof] = ACTIONS(976), + [anon_sym_strjoin] = ACTIONS(976), + [anon_sym_strkebab_DASHcase] = ACTIONS(976), + [anon_sym_strlength] = ACTIONS(976), + [anon_sym_strpascal_DASHcase] = ACTIONS(976), + [anon_sym_strreplace] = ACTIONS(976), + [anon_sym_strreverse] = ACTIONS(976), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(976), + [anon_sym_strsimilarity] = ACTIONS(976), + [anon_sym_strsnake_DASHcase] = ACTIONS(976), + [anon_sym_strstarts_DASHwith] = ACTIONS(976), + [anon_sym_strstats] = ACTIONS(976), + [anon_sym_strsubstring] = ACTIONS(976), + [anon_sym_strtitle_DASHcase] = ACTIONS(976), + [anon_sym_strtrim] = ACTIONS(976), + [anon_sym_strupcase] = ACTIONS(976), + [anon_sym_strwrap] = ACTIONS(976), + [anon_sym_syscpu] = ACTIONS(976), + [anon_sym_sysdisks] = ACTIONS(976), + [anon_sym_syshost] = ACTIONS(976), + [anon_sym_sysmem] = ACTIONS(976), + [anon_sym_sysnet] = ACTIONS(976), + [anon_sym_systemp] = ACTIONS(976), + [anon_sym_sysusers] = ACTIONS(976), + [anon_sym_takeuntil] = ACTIONS(976), + [anon_sym_takewhile] = ACTIONS(976), + [anon_sym_termquery] = ACTIONS(976), + [anon_sym_termsize] = ACTIONS(976), + [anon_sym_tobz2] = ACTIONS(976), + [anon_sym_tocsv] = ACTIONS(976), + [anon_sym_togz] = ACTIONS(976), + [anon_sym_tohtml] = ACTIONS(976), + [anon_sym_tojson] = ACTIONS(976), + [anon_sym_tomd] = ACTIONS(976), + [anon_sym_tomsgpack] = ACTIONS(979), + [anon_sym_tomsgpackz] = ACTIONS(976), + [anon_sym_tonuon] = ACTIONS(976), + [anon_sym_toparquet] = ACTIONS(976), + [anon_sym_toplist] = ACTIONS(976), + [anon_sym_topng] = ACTIONS(976), + [anon_sym_totext] = ACTIONS(976), + [anon_sym_totoml] = ACTIONS(976), + [anon_sym_totsv] = ACTIONS(976), + [anon_sym_toxml] = ACTIONS(976), + [anon_sym_toxz] = ACTIONS(976), + [anon_sym_toyaml] = ACTIONS(976), + [anon_sym_tozst] = ACTIONS(976), + [anon_sym_updatecells] = ACTIONS(976), + [anon_sym_urlbuild_DASHquery] = ACTIONS(976), + [anon_sym_urldecode] = ACTIONS(976), + [anon_sym_urlencode] = ACTIONS(976), + [anon_sym_urljoin] = ACTIONS(976), + [anon_sym_urlparse] = ACTIONS(976), + [anon_sym_urlsplit_DASHquery] = ACTIONS(976), + [anon_sym_viewfiles] = ACTIONS(976), + [anon_sym_viewir] = ACTIONS(976), + [anon_sym_viewsource] = ACTIONS(976), + [anon_sym_viewspan] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(982), }, - [311] = { - [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_export] = ACTIONS(1484), - [anon_sym_alias] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_let_DASHenv] = ACTIONS(1484), - [anon_sym_mut] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [aux_sym_cmd_identifier_token1] = ACTIONS(1484), - [aux_sym_cmd_identifier_token2] = ACTIONS(1292), - [aux_sym_cmd_identifier_token3] = ACTIONS(1292), - [aux_sym_cmd_identifier_token4] = ACTIONS(1292), - [aux_sym_cmd_identifier_token5] = ACTIONS(1292), - [aux_sym_cmd_identifier_token6] = ACTIONS(1292), - [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1292), - [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1484), - [aux_sym_cmd_identifier_token13] = ACTIONS(1484), - [aux_sym_cmd_identifier_token14] = ACTIONS(1484), - [aux_sym_cmd_identifier_token15] = ACTIONS(1484), - [aux_sym_cmd_identifier_token16] = ACTIONS(1292), - [aux_sym_cmd_identifier_token17] = ACTIONS(1292), - [aux_sym_cmd_identifier_token18] = ACTIONS(1292), - [aux_sym_cmd_identifier_token19] = ACTIONS(1292), - [aux_sym_cmd_identifier_token20] = ACTIONS(1292), - [aux_sym_cmd_identifier_token21] = ACTIONS(1292), - [aux_sym_cmd_identifier_token22] = ACTIONS(1292), - [aux_sym_cmd_identifier_token23] = ACTIONS(1292), - [aux_sym_cmd_identifier_token24] = ACTIONS(1292), - [aux_sym_cmd_identifier_token25] = ACTIONS(1292), - [aux_sym_cmd_identifier_token26] = ACTIONS(1292), - [aux_sym_cmd_identifier_token27] = ACTIONS(1292), - [aux_sym_cmd_identifier_token28] = ACTIONS(1292), - [aux_sym_cmd_identifier_token29] = ACTIONS(1292), - [aux_sym_cmd_identifier_token30] = ACTIONS(1292), - [aux_sym_cmd_identifier_token31] = ACTIONS(1292), - [aux_sym_cmd_identifier_token32] = ACTIONS(1292), - [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1292), - [aux_sym_cmd_identifier_token36] = ACTIONS(1292), - [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1292), - [aux_sym_cmd_identifier_token40] = ACTIONS(1292), - [sym__newline] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1484), - [anon_sym_export_DASHenv] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_module] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_error] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_where] = ACTIONS(1292), - [aux_sym_expr_unary_token1] = ACTIONS(1292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), - [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1292), - [aux_sym__val_number_decimal_token3] = ACTIONS(1292), - [aux_sym__val_number_decimal_token4] = ACTIONS(1292), - [aux_sym__val_number_token1] = ACTIONS(1292), - [aux_sym__val_number_token2] = ACTIONS(1292), - [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [anon_sym_0b] = ACTIONS(1484), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym__str_single_quotes] = ACTIONS(1292), - [sym__str_back_ticks] = ACTIONS(1292), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1292), + [147] = { + [sym__block_body_statement] = STATE(6254), + [sym__declaration] = STATE(6909), + [sym_decl_alias] = STATE(7077), + [sym_stmt_let] = STATE(7085), + [sym_stmt_mut] = STATE(7085), + [sym_stmt_const] = STATE(7085), + [sym_assignment] = STATE(7085), + [sym__mutable_assignment_pattern] = STATE(7069), + [sym__statement] = STATE(6909), + [sym_pipeline] = STATE(7085), + [sym_cmd_identifier] = STATE(4789), + [sym_decl_def] = STATE(7077), + [sym_decl_export] = STATE(7077), + [sym_decl_extern] = STATE(7077), + [sym_decl_module] = STATE(7077), + [sym_decl_use] = STATE(7077), + [sym__ctrl_statement] = STATE(7085), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_for] = STATE(7233), + [sym_ctrl_loop] = STATE(7233), + [sym_ctrl_error] = STATE(7233), + [sym_ctrl_while] = STATE(7233), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_stmt_source] = STATE(7085), + [sym_stmt_register] = STATE(7085), + [sym__stmt_hide] = STATE(7085), + [sym_hide_mod] = STATE(6934), + [sym_hide_env] = STATE(6934), + [sym__stmt_overlay] = STATE(7085), + [sym_overlay_list] = STATE(6834), + [sym_overlay_hide] = STATE(6834), + [sym_overlay_new] = STATE(6834), + [sym_overlay_use] = STATE(6834), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(1550), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(289), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [312] = { - [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1538), - [aux_sym_cmd_identifier_token3] = ACTIONS(1538), - [aux_sym_cmd_identifier_token4] = ACTIONS(1538), - [aux_sym_cmd_identifier_token5] = ACTIONS(1538), - [aux_sym_cmd_identifier_token6] = ACTIONS(1538), - [aux_sym_cmd_identifier_token7] = ACTIONS(1538), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1538), - [aux_sym_cmd_identifier_token11] = ACTIONS(1538), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1538), - [aux_sym_cmd_identifier_token17] = ACTIONS(1538), - [aux_sym_cmd_identifier_token18] = ACTIONS(1538), - [aux_sym_cmd_identifier_token19] = ACTIONS(1538), - [aux_sym_cmd_identifier_token20] = ACTIONS(1538), - [aux_sym_cmd_identifier_token21] = ACTIONS(1538), - [aux_sym_cmd_identifier_token22] = ACTIONS(1538), - [aux_sym_cmd_identifier_token23] = ACTIONS(1538), - [aux_sym_cmd_identifier_token24] = ACTIONS(1538), - [aux_sym_cmd_identifier_token25] = ACTIONS(1538), - [aux_sym_cmd_identifier_token26] = ACTIONS(1538), - [aux_sym_cmd_identifier_token27] = ACTIONS(1538), - [aux_sym_cmd_identifier_token28] = ACTIONS(1538), - [aux_sym_cmd_identifier_token29] = ACTIONS(1538), - [aux_sym_cmd_identifier_token30] = ACTIONS(1538), - [aux_sym_cmd_identifier_token31] = ACTIONS(1538), - [aux_sym_cmd_identifier_token32] = ACTIONS(1538), - [aux_sym_cmd_identifier_token33] = ACTIONS(1538), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1538), - [aux_sym_cmd_identifier_token36] = ACTIONS(1538), - [aux_sym_cmd_identifier_token37] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_where] = ACTIONS(1538), - [aux_sym_expr_unary_token1] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [aux_sym__val_number_token4] = ACTIONS(1536), - [aux_sym__val_number_token5] = ACTIONS(1536), - [aux_sym__val_number_token6] = ACTIONS(1536), - [anon_sym_0b] = ACTIONS(1536), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [aux_sym_env_var_token1] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1538), + [148] = { + [sym__block_body_statement] = STATE(6162), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1558), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(298), + [anon_sym_export] = ACTIONS(627), + [anon_sym_alias] = ACTIONS(629), + [anon_sym_let] = ACTIONS(631), + [anon_sym_let_DASHenv] = ACTIONS(631), + [anon_sym_mut] = ACTIONS(633), + [anon_sym_const] = ACTIONS(635), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [313] = { - [sym__expr_parenthesized_immediate] = STATE(487), - [sym__immediate_decimal] = STATE(380), - [sym_val_variable] = STATE(487), - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_alias] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_let_DASHenv] = ACTIONS(1543), - [anon_sym_mut] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [aux_sym_cmd_identifier_token1] = ACTIONS(1543), - [aux_sym_cmd_identifier_token2] = ACTIONS(1543), - [aux_sym_cmd_identifier_token3] = ACTIONS(1543), - [aux_sym_cmd_identifier_token4] = ACTIONS(1543), - [aux_sym_cmd_identifier_token5] = ACTIONS(1543), - [aux_sym_cmd_identifier_token6] = ACTIONS(1543), - [aux_sym_cmd_identifier_token7] = ACTIONS(1543), - [aux_sym_cmd_identifier_token8] = ACTIONS(1543), - [aux_sym_cmd_identifier_token9] = ACTIONS(1543), - [aux_sym_cmd_identifier_token10] = ACTIONS(1543), - [aux_sym_cmd_identifier_token11] = ACTIONS(1543), - [aux_sym_cmd_identifier_token12] = ACTIONS(1543), - [aux_sym_cmd_identifier_token13] = ACTIONS(1543), - [aux_sym_cmd_identifier_token14] = ACTIONS(1543), - [aux_sym_cmd_identifier_token15] = ACTIONS(1543), - [aux_sym_cmd_identifier_token16] = ACTIONS(1543), - [aux_sym_cmd_identifier_token17] = ACTIONS(1543), - [aux_sym_cmd_identifier_token18] = ACTIONS(1543), - [aux_sym_cmd_identifier_token19] = ACTIONS(1543), - [aux_sym_cmd_identifier_token20] = ACTIONS(1543), - [aux_sym_cmd_identifier_token21] = ACTIONS(1543), - [aux_sym_cmd_identifier_token22] = ACTIONS(1543), - [aux_sym_cmd_identifier_token23] = ACTIONS(1543), - [aux_sym_cmd_identifier_token24] = ACTIONS(1543), - [aux_sym_cmd_identifier_token25] = ACTIONS(1543), - [aux_sym_cmd_identifier_token26] = ACTIONS(1543), - [aux_sym_cmd_identifier_token27] = ACTIONS(1543), - [aux_sym_cmd_identifier_token28] = ACTIONS(1543), - [aux_sym_cmd_identifier_token29] = ACTIONS(1543), - [aux_sym_cmd_identifier_token30] = ACTIONS(1543), - [aux_sym_cmd_identifier_token31] = ACTIONS(1543), - [aux_sym_cmd_identifier_token32] = ACTIONS(1543), - [aux_sym_cmd_identifier_token33] = ACTIONS(1543), - [aux_sym_cmd_identifier_token34] = ACTIONS(1543), - [aux_sym_cmd_identifier_token35] = ACTIONS(1543), - [aux_sym_cmd_identifier_token36] = ACTIONS(1543), - [aux_sym_cmd_identifier_token37] = ACTIONS(1543), - [aux_sym_cmd_identifier_token38] = ACTIONS(1543), - [aux_sym_cmd_identifier_token39] = ACTIONS(1543), - [aux_sym_cmd_identifier_token40] = ACTIONS(1543), - [anon_sym_def] = ACTIONS(1543), - [anon_sym_export_DASHenv] = ACTIONS(1543), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_in2] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_make] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_source] = ACTIONS(1543), - [anon_sym_source_DASHenv] = ACTIONS(1543), - [anon_sym_register] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_hide_DASHenv] = ACTIONS(1543), - [anon_sym_overlay] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1549), - [aux_sym__immediate_decimal_token1] = ACTIONS(1551), - [aux_sym__immediate_decimal_token3] = ACTIONS(1551), - [aux_sym__immediate_decimal_token4] = ACTIONS(1553), - [aux_sym__immediate_decimal_token5] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1543), - [aux_sym__val_number_token2] = ACTIONS(1543), - [aux_sym__val_number_token3] = ACTIONS(1543), - [aux_sym__val_number_token4] = ACTIONS(1543), - [aux_sym__val_number_token5] = ACTIONS(1543), - [aux_sym__val_number_token6] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym__str_single_quotes] = ACTIONS(1543), - [sym__str_back_ticks] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), - [sym__entry_separator] = ACTIONS(1557), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1557), + [149] = { + [sym__block_body_statement_parenthesized] = STATE(5817), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(149), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(146), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [314] = { - [sym_comment] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), - [anon_sym_alias] = ACTIONS(1563), - [anon_sym_let] = ACTIONS(1563), - [anon_sym_let_DASHenv] = ACTIONS(1563), - [anon_sym_mut] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [aux_sym_cmd_identifier_token1] = ACTIONS(1563), - [aux_sym_cmd_identifier_token2] = ACTIONS(1561), - [aux_sym_cmd_identifier_token3] = ACTIONS(1561), - [aux_sym_cmd_identifier_token4] = ACTIONS(1561), - [aux_sym_cmd_identifier_token5] = ACTIONS(1561), - [aux_sym_cmd_identifier_token6] = ACTIONS(1561), - [aux_sym_cmd_identifier_token7] = ACTIONS(1561), - [aux_sym_cmd_identifier_token8] = ACTIONS(1563), - [aux_sym_cmd_identifier_token9] = ACTIONS(1563), - [aux_sym_cmd_identifier_token10] = ACTIONS(1561), - [aux_sym_cmd_identifier_token11] = ACTIONS(1561), - [aux_sym_cmd_identifier_token12] = ACTIONS(1563), - [aux_sym_cmd_identifier_token13] = ACTIONS(1563), - [aux_sym_cmd_identifier_token14] = ACTIONS(1563), - [aux_sym_cmd_identifier_token15] = ACTIONS(1563), - [aux_sym_cmd_identifier_token16] = ACTIONS(1561), - [aux_sym_cmd_identifier_token17] = ACTIONS(1561), - [aux_sym_cmd_identifier_token18] = ACTIONS(1561), - [aux_sym_cmd_identifier_token19] = ACTIONS(1561), - [aux_sym_cmd_identifier_token20] = ACTIONS(1561), - [aux_sym_cmd_identifier_token21] = ACTIONS(1561), - [aux_sym_cmd_identifier_token22] = ACTIONS(1561), - [aux_sym_cmd_identifier_token23] = ACTIONS(1561), - [aux_sym_cmd_identifier_token24] = ACTIONS(1561), - [aux_sym_cmd_identifier_token25] = ACTIONS(1561), - [aux_sym_cmd_identifier_token26] = ACTIONS(1561), - [aux_sym_cmd_identifier_token27] = ACTIONS(1561), - [aux_sym_cmd_identifier_token28] = ACTIONS(1561), - [aux_sym_cmd_identifier_token29] = ACTIONS(1561), - [aux_sym_cmd_identifier_token30] = ACTIONS(1561), - [aux_sym_cmd_identifier_token31] = ACTIONS(1561), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1563), - [aux_sym_cmd_identifier_token35] = ACTIONS(1561), - [aux_sym_cmd_identifier_token36] = ACTIONS(1561), - [aux_sym_cmd_identifier_token37] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1563), - [aux_sym_cmd_identifier_token39] = ACTIONS(1561), - [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_def] = ACTIONS(1563), - [anon_sym_export_DASHenv] = ACTIONS(1563), - [anon_sym_extern] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_use] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1563), - [anon_sym_error] = ACTIONS(1563), - [anon_sym_DASH2] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_loop] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_source] = ACTIONS(1563), - [anon_sym_source_DASHenv] = ACTIONS(1563), - [anon_sym_register] = ACTIONS(1563), - [anon_sym_hide] = ACTIONS(1563), - [anon_sym_hide_DASHenv] = ACTIONS(1563), - [anon_sym_overlay] = ACTIONS(1563), - [anon_sym_where] = ACTIONS(1561), - [aux_sym_expr_unary_token1] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [aux_sym__val_number_decimal_token1] = ACTIONS(1563), - [aux_sym__val_number_decimal_token2] = ACTIONS(1561), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1561), - [aux_sym__val_number_token1] = ACTIONS(1561), - [aux_sym__val_number_token2] = ACTIONS(1561), - [aux_sym__val_number_token3] = ACTIONS(1561), - [aux_sym__val_number_token4] = ACTIONS(1563), - [aux_sym__val_number_token5] = ACTIONS(1563), - [aux_sym__val_number_token6] = ACTIONS(1563), - [anon_sym_0b] = ACTIONS(1563), - [anon_sym_0o] = ACTIONS(1563), - [anon_sym_0x] = ACTIONS(1563), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [aux_sym_env_var_token1] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1561), + [150] = { + [sym__block_body_statement_parenthesized] = STATE(5736), + [sym__declaration_parenthesized] = STATE(7219), + [sym_decl_alias_parenthesized] = STATE(7229), + [sym_stmt_let_parenthesized] = STATE(7230), + [sym_stmt_mut_parenthesized] = STATE(7230), + [sym_stmt_const_parenthesized] = STATE(7230), + [sym_assignment_parenthesized] = STATE(7230), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), + [sym__statement_parenthesized] = STATE(7219), + [sym_pipeline_parenthesized] = STATE(7230), + [sym_cmd_identifier] = STATE(4751), + [sym_decl_def] = STATE(7229), + [sym_decl_export] = STATE(7229), + [sym_decl_extern] = STATE(7229), + [sym_decl_module] = STATE(7229), + [sym_decl_use] = STATE(7229), + [sym__ctrl_statement] = STATE(7230), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_stmt_source] = STATE(7230), + [sym_stmt_register] = STATE(7230), + [sym__stmt_hide] = STATE(7230), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(7230), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1506), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym__parenthesized_body_repeat2] = STATE(146), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_let_DASHenv] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [315] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if] = STATE(4871), - [sym_block] = STATE(4874), - [sym__expression] = STATE(4874), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(4874), - [sym_comment] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [151] = { + [sym__block_body_statement] = STATE(6162), + [sym__declaration] = STATE(6788), + [sym_decl_alias] = STATE(6790), + [sym_stmt_let] = STATE(6791), + [sym_stmt_mut] = STATE(6791), + [sym_stmt_const] = STATE(6791), + [sym_assignment] = STATE(6791), + [sym__mutable_assignment_pattern] = STATE(6794), + [sym__statement] = STATE(6788), + [sym_pipeline] = STATE(6791), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6790), + [sym_decl_export] = STATE(6790), + [sym_decl_extern] = STATE(6790), + [sym_decl_module] = STATE(6790), + [sym_decl_use] = STATE(6790), + [sym__ctrl_statement] = STATE(6791), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_for] = STATE(6807), + [sym_ctrl_loop] = STATE(6807), + [sym_ctrl_error] = STATE(6807), + [sym_ctrl_while] = STATE(6807), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_stmt_source] = STATE(6791), + [sym_stmt_register] = STATE(6791), + [sym__stmt_hide] = STATE(6791), + [sym_hide_mod] = STATE(6246), + [sym_hide_env] = STATE(6246), + [sym__stmt_overlay] = STATE(6791), + [sym_overlay_list] = STATE(6247), + [sym_overlay_hide] = STATE(6247), + [sym_overlay_new] = STATE(6247), + [sym_overlay_use] = STATE(6247), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(1557), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(151), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(300), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_def] = ACTIONS(377), + [anon_sym_export_DASHenv] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(381), + [anon_sym_module] = ACTIONS(383), + [anon_sym_use] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_error] = ACTIONS(391), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_for] = ACTIONS(399), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_source] = ACTIONS(417), + [anon_sym_source_DASHenv] = ACTIONS(417), + [anon_sym_register] = ACTIONS(419), + [anon_sym_hide] = ACTIONS(421), + [anon_sym_hide_DASHenv] = ACTIONS(423), + [anon_sym_overlay] = ACTIONS(425), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [316] = { - [sym_cmd_identifier] = STATE(4546), - [sym__expression] = STATE(3867), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4804), - [sym_comment] = STATE(316), - [aux_sym_pipe_element_repeat2] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [152] = { + [sym_pipeline] = STATE(6669), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(152), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [317] = { - [sym_comment] = STATE(317), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1573), - [aux_sym_cmd_identifier_token3] = ACTIONS(1573), - [aux_sym_cmd_identifier_token4] = ACTIONS(1573), - [aux_sym_cmd_identifier_token5] = ACTIONS(1573), - [aux_sym_cmd_identifier_token6] = ACTIONS(1573), - [aux_sym_cmd_identifier_token7] = ACTIONS(1573), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1573), - [aux_sym_cmd_identifier_token11] = ACTIONS(1573), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1573), - [aux_sym_cmd_identifier_token17] = ACTIONS(1573), - [aux_sym_cmd_identifier_token18] = ACTIONS(1573), - [aux_sym_cmd_identifier_token19] = ACTIONS(1573), - [aux_sym_cmd_identifier_token20] = ACTIONS(1573), - [aux_sym_cmd_identifier_token21] = ACTIONS(1573), - [aux_sym_cmd_identifier_token22] = ACTIONS(1573), - [aux_sym_cmd_identifier_token23] = ACTIONS(1573), - [aux_sym_cmd_identifier_token24] = ACTIONS(1573), - [aux_sym_cmd_identifier_token25] = ACTIONS(1573), - [aux_sym_cmd_identifier_token26] = ACTIONS(1573), - [aux_sym_cmd_identifier_token27] = ACTIONS(1573), - [aux_sym_cmd_identifier_token28] = ACTIONS(1573), - [aux_sym_cmd_identifier_token29] = ACTIONS(1573), - [aux_sym_cmd_identifier_token30] = ACTIONS(1573), - [aux_sym_cmd_identifier_token31] = ACTIONS(1573), - [aux_sym_cmd_identifier_token32] = ACTIONS(1573), - [aux_sym_cmd_identifier_token33] = ACTIONS(1573), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1573), - [aux_sym_cmd_identifier_token36] = ACTIONS(1573), - [aux_sym_cmd_identifier_token37] = ACTIONS(1573), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1573), - [aux_sym_cmd_identifier_token40] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1573), - [aux_sym__val_number_decimal_token3] = ACTIONS(1573), - [aux_sym__val_number_decimal_token4] = ACTIONS(1573), - [aux_sym__val_number_token1] = ACTIONS(1573), - [aux_sym__val_number_token2] = ACTIONS(1573), - [aux_sym__val_number_token3] = ACTIONS(1573), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym__str_single_quotes] = ACTIONS(1573), - [sym__str_back_ticks] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), - [sym__entry_separator] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1575), + [153] = { + [sym_pipeline_parenthesized] = STATE(6911), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(153), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [318] = { - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1581), - [anon_sym_alias] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), - [anon_sym_let_DASHenv] = ACTIONS(1581), - [anon_sym_mut] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [aux_sym_cmd_identifier_token1] = ACTIONS(1581), - [aux_sym_cmd_identifier_token2] = ACTIONS(1583), - [aux_sym_cmd_identifier_token3] = ACTIONS(1583), - [aux_sym_cmd_identifier_token4] = ACTIONS(1583), - [aux_sym_cmd_identifier_token5] = ACTIONS(1583), - [aux_sym_cmd_identifier_token6] = ACTIONS(1583), - [aux_sym_cmd_identifier_token7] = ACTIONS(1583), - [aux_sym_cmd_identifier_token8] = ACTIONS(1581), - [aux_sym_cmd_identifier_token9] = ACTIONS(1581), - [aux_sym_cmd_identifier_token10] = ACTIONS(1583), - [aux_sym_cmd_identifier_token11] = ACTIONS(1583), - [aux_sym_cmd_identifier_token12] = ACTIONS(1581), - [aux_sym_cmd_identifier_token13] = ACTIONS(1581), - [aux_sym_cmd_identifier_token14] = ACTIONS(1581), - [aux_sym_cmd_identifier_token15] = ACTIONS(1581), - [aux_sym_cmd_identifier_token16] = ACTIONS(1583), - [aux_sym_cmd_identifier_token17] = ACTIONS(1583), - [aux_sym_cmd_identifier_token18] = ACTIONS(1583), - [aux_sym_cmd_identifier_token19] = ACTIONS(1583), - [aux_sym_cmd_identifier_token20] = ACTIONS(1583), - [aux_sym_cmd_identifier_token21] = ACTIONS(1583), - [aux_sym_cmd_identifier_token22] = ACTIONS(1583), - [aux_sym_cmd_identifier_token23] = ACTIONS(1583), - [aux_sym_cmd_identifier_token24] = ACTIONS(1583), - [aux_sym_cmd_identifier_token25] = ACTIONS(1583), - [aux_sym_cmd_identifier_token26] = ACTIONS(1583), - [aux_sym_cmd_identifier_token27] = ACTIONS(1583), - [aux_sym_cmd_identifier_token28] = ACTIONS(1583), - [aux_sym_cmd_identifier_token29] = ACTIONS(1583), - [aux_sym_cmd_identifier_token30] = ACTIONS(1583), - [aux_sym_cmd_identifier_token31] = ACTIONS(1583), - [aux_sym_cmd_identifier_token32] = ACTIONS(1583), - [aux_sym_cmd_identifier_token33] = ACTIONS(1583), - [aux_sym_cmd_identifier_token34] = ACTIONS(1581), - [aux_sym_cmd_identifier_token35] = ACTIONS(1583), - [aux_sym_cmd_identifier_token36] = ACTIONS(1583), - [aux_sym_cmd_identifier_token37] = ACTIONS(1583), - [aux_sym_cmd_identifier_token38] = ACTIONS(1581), - [aux_sym_cmd_identifier_token39] = ACTIONS(1583), - [aux_sym_cmd_identifier_token40] = ACTIONS(1583), - [sym__newline] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_def] = ACTIONS(1581), - [anon_sym_export_DASHenv] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_use] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_DOLLAR] = ACTIONS(1581), - [anon_sym_error] = ACTIONS(1581), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_loop] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_source] = ACTIONS(1581), - [anon_sym_source_DASHenv] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_hide] = ACTIONS(1581), - [anon_sym_hide_DASHenv] = ACTIONS(1581), - [anon_sym_overlay] = ACTIONS(1581), - [anon_sym_where] = ACTIONS(1583), - [aux_sym_expr_unary_token1] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), - [anon_sym_DOT_DOT_LT] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1583), - [aux_sym__val_number_decimal_token3] = ACTIONS(1583), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), - [aux_sym__val_number_token1] = ACTIONS(1583), - [aux_sym__val_number_token2] = ACTIONS(1583), - [aux_sym__val_number_token3] = ACTIONS(1583), - [aux_sym__val_number_token4] = ACTIONS(1581), - [aux_sym__val_number_token5] = ACTIONS(1581), - [aux_sym__val_number_token6] = ACTIONS(1581), - [anon_sym_0b] = ACTIONS(1581), - [anon_sym_0o] = ACTIONS(1581), - [anon_sym_0x] = ACTIONS(1581), - [sym_val_date] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym__str_single_quotes] = ACTIONS(1583), - [sym__str_back_ticks] = ACTIONS(1583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), - [aux_sym_env_var_token1] = ACTIONS(1581), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1583), + [154] = { + [sym_pipeline] = STATE(6286), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1585), - [aux_sym_cmd_identifier_token3] = ACTIONS(1585), - [aux_sym_cmd_identifier_token4] = ACTIONS(1585), - [aux_sym_cmd_identifier_token5] = ACTIONS(1585), - [aux_sym_cmd_identifier_token6] = ACTIONS(1585), - [aux_sym_cmd_identifier_token7] = ACTIONS(1585), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1585), - [aux_sym_cmd_identifier_token11] = ACTIONS(1585), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1585), - [aux_sym_cmd_identifier_token17] = ACTIONS(1585), - [aux_sym_cmd_identifier_token18] = ACTIONS(1585), - [aux_sym_cmd_identifier_token19] = ACTIONS(1585), - [aux_sym_cmd_identifier_token20] = ACTIONS(1585), - [aux_sym_cmd_identifier_token21] = ACTIONS(1585), - [aux_sym_cmd_identifier_token22] = ACTIONS(1585), - [aux_sym_cmd_identifier_token23] = ACTIONS(1585), - [aux_sym_cmd_identifier_token24] = ACTIONS(1585), - [aux_sym_cmd_identifier_token25] = ACTIONS(1585), - [aux_sym_cmd_identifier_token26] = ACTIONS(1585), - [aux_sym_cmd_identifier_token27] = ACTIONS(1585), - [aux_sym_cmd_identifier_token28] = ACTIONS(1585), - [aux_sym_cmd_identifier_token29] = ACTIONS(1585), - [aux_sym_cmd_identifier_token30] = ACTIONS(1585), - [aux_sym_cmd_identifier_token31] = ACTIONS(1585), - [aux_sym_cmd_identifier_token32] = ACTIONS(1585), - [aux_sym_cmd_identifier_token33] = ACTIONS(1585), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1585), - [aux_sym_cmd_identifier_token36] = ACTIONS(1585), - [aux_sym_cmd_identifier_token37] = ACTIONS(1585), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1585), - [aux_sym_cmd_identifier_token40] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1585), - [aux_sym__val_number_decimal_token3] = ACTIONS(1585), - [aux_sym__val_number_decimal_token4] = ACTIONS(1585), - [aux_sym__val_number_token1] = ACTIONS(1585), - [aux_sym__val_number_token2] = ACTIONS(1585), - [aux_sym__val_number_token3] = ACTIONS(1585), - [aux_sym__val_number_token4] = ACTIONS(1585), - [aux_sym__val_number_token5] = ACTIONS(1585), - [aux_sym__val_number_token6] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym__str_single_quotes] = ACTIONS(1585), - [sym__str_back_ticks] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), - [sym__entry_separator] = ACTIONS(1587), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1587), + [155] = { + [sym_pipeline] = STATE(6369), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [320] = { - [sym__expr_parenthesized_immediate] = STATE(482), - [sym__immediate_decimal] = STATE(483), - [sym_val_variable] = STATE(482), - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_alias] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_let_DASHenv] = ACTIONS(1593), - [anon_sym_mut] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [aux_sym_cmd_identifier_token1] = ACTIONS(1593), - [aux_sym_cmd_identifier_token2] = ACTIONS(1593), - [aux_sym_cmd_identifier_token3] = ACTIONS(1593), - [aux_sym_cmd_identifier_token4] = ACTIONS(1593), - [aux_sym_cmd_identifier_token5] = ACTIONS(1593), - [aux_sym_cmd_identifier_token6] = ACTIONS(1593), - [aux_sym_cmd_identifier_token7] = ACTIONS(1593), - [aux_sym_cmd_identifier_token8] = ACTIONS(1593), - [aux_sym_cmd_identifier_token9] = ACTIONS(1593), - [aux_sym_cmd_identifier_token10] = ACTIONS(1593), - [aux_sym_cmd_identifier_token11] = ACTIONS(1593), - [aux_sym_cmd_identifier_token12] = ACTIONS(1593), - [aux_sym_cmd_identifier_token13] = ACTIONS(1593), - [aux_sym_cmd_identifier_token14] = ACTIONS(1593), - [aux_sym_cmd_identifier_token15] = ACTIONS(1593), - [aux_sym_cmd_identifier_token16] = ACTIONS(1593), - [aux_sym_cmd_identifier_token17] = ACTIONS(1593), - [aux_sym_cmd_identifier_token18] = ACTIONS(1593), - [aux_sym_cmd_identifier_token19] = ACTIONS(1593), - [aux_sym_cmd_identifier_token20] = ACTIONS(1593), - [aux_sym_cmd_identifier_token21] = ACTIONS(1593), - [aux_sym_cmd_identifier_token22] = ACTIONS(1593), - [aux_sym_cmd_identifier_token23] = ACTIONS(1593), - [aux_sym_cmd_identifier_token24] = ACTIONS(1593), - [aux_sym_cmd_identifier_token25] = ACTIONS(1593), - [aux_sym_cmd_identifier_token26] = ACTIONS(1593), - [aux_sym_cmd_identifier_token27] = ACTIONS(1593), - [aux_sym_cmd_identifier_token28] = ACTIONS(1593), - [aux_sym_cmd_identifier_token29] = ACTIONS(1593), - [aux_sym_cmd_identifier_token30] = ACTIONS(1593), - [aux_sym_cmd_identifier_token31] = ACTIONS(1593), - [aux_sym_cmd_identifier_token32] = ACTIONS(1593), - [aux_sym_cmd_identifier_token33] = ACTIONS(1593), - [aux_sym_cmd_identifier_token34] = ACTIONS(1593), - [aux_sym_cmd_identifier_token35] = ACTIONS(1593), - [aux_sym_cmd_identifier_token36] = ACTIONS(1593), - [aux_sym_cmd_identifier_token37] = ACTIONS(1593), - [aux_sym_cmd_identifier_token38] = ACTIONS(1593), - [aux_sym_cmd_identifier_token39] = ACTIONS(1593), - [aux_sym_cmd_identifier_token40] = ACTIONS(1593), - [anon_sym_def] = ACTIONS(1593), - [anon_sym_export_DASHenv] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_error] = ACTIONS(1593), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_in2] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_make] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_source] = ACTIONS(1593), - [anon_sym_source_DASHenv] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_hide_DASHenv] = ACTIONS(1593), - [anon_sym_overlay] = ACTIONS(1593), - [anon_sym_as] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_PLUS2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1593), - [anon_sym_DOT] = ACTIONS(1595), - [aux_sym__immediate_decimal_token1] = ACTIONS(1597), - [aux_sym__immediate_decimal_token3] = ACTIONS(1597), - [aux_sym__immediate_decimal_token4] = ACTIONS(1599), - [aux_sym__immediate_decimal_token5] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1593), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1593), - [aux_sym__val_number_token2] = ACTIONS(1593), - [aux_sym__val_number_token3] = ACTIONS(1593), - [aux_sym__val_number_token4] = ACTIONS(1593), - [aux_sym__val_number_token5] = ACTIONS(1593), - [aux_sym__val_number_token6] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [sym__str_single_quotes] = ACTIONS(1593), - [sym__str_back_ticks] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1593), - [sym__entry_separator] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1603), + [156] = { + [sym_pipeline_parenthesized] = STATE(7165), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [321] = { - [sym_cmd_identifier] = STATE(4653), - [sym_ctrl_if] = STATE(5054), - [sym_block] = STATE(5102), - [sym__expression] = STATE(5102), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3992), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1209), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_command] = STATE(5102), - [sym_comment] = STATE(321), + [157] = { + [sym_pipeline] = STATE(7028), + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(289), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -111277,7 +164586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -111291,7 +164600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -111302,21 +164611,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(999), [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), [anon_sym_DOT_DOT_LT] = ACTIONS(85), [anon_sym_null] = ACTIONS(87), [anon_sym_true] = ACTIONS(89), [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1611), - [aux_sym__val_number_decimal_token4] = ACTIONS(1613), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -111332,370 +164648,1487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [322] = { - [sym_cmd_identifier] = STATE(4794), - [sym__expression_parenthesized] = STATE(3940), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5163), - [sym_comment] = STATE(322), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [158] = { + [sym_pipeline] = STATE(6671), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [323] = { - [sym_cmd_identifier] = STATE(4546), - [sym__expression] = STATE(3867), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(837), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4804), - [sym_comment] = STATE(323), - [aux_sym_pipe_element_repeat2] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [159] = { + [sym_pipeline] = STATE(6669), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [324] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if] = STATE(4871), - [sym_block] = STATE(4874), - [sym__expression] = STATE(4874), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1214), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(4874), - [sym_comment] = STATE(324), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [325] = { - [sym_cmd_identifier] = STATE(4653), - [sym__expression] = STATE(3958), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3982), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(5014), - [sym_comment] = STATE(325), - [aux_sym_pipe_element_repeat2] = STATE(1173), + [160] = { + [sym_pipeline] = STATE(7158), + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(289), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -111713,7 +166146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token15] = ACTIONS(19), [aux_sym_cmd_identifier_token16] = ACTIONS(21), [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), [aux_sym_cmd_identifier_token19] = ACTIONS(21), [aux_sym_cmd_identifier_token20] = ACTIONS(21), [aux_sym_cmd_identifier_token21] = ACTIONS(21), @@ -111727,7 +166160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(21), [aux_sym_cmd_identifier_token30] = ACTIONS(21), [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), [aux_sym_cmd_identifier_token33] = ACTIONS(21), [aux_sym_cmd_identifier_token34] = ACTIONS(19), [aux_sym_cmd_identifier_token35] = ACTIONS(21), @@ -111738,10 +166171,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(999), [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), [anon_sym_LBRACE] = ACTIONS(63), [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), [anon_sym_DOT_DOT_LT] = ACTIONS(85), @@ -111769,20624 +166210,88560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [326] = { - [sym__expr_parenthesized_immediate] = STATE(517), - [sym__immediate_decimal] = STATE(439), - [sym_val_variable] = STATE(517), - [sym_comment] = STATE(326), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_alias] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_let_DASHenv] = ACTIONS(1543), - [anon_sym_mut] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [aux_sym_cmd_identifier_token1] = ACTIONS(1543), - [aux_sym_cmd_identifier_token2] = ACTIONS(1557), - [aux_sym_cmd_identifier_token3] = ACTIONS(1557), - [aux_sym_cmd_identifier_token4] = ACTIONS(1557), - [aux_sym_cmd_identifier_token5] = ACTIONS(1557), - [aux_sym_cmd_identifier_token6] = ACTIONS(1557), - [aux_sym_cmd_identifier_token7] = ACTIONS(1557), - [aux_sym_cmd_identifier_token8] = ACTIONS(1543), - [aux_sym_cmd_identifier_token9] = ACTIONS(1543), - [aux_sym_cmd_identifier_token10] = ACTIONS(1557), - [aux_sym_cmd_identifier_token11] = ACTIONS(1557), - [aux_sym_cmd_identifier_token12] = ACTIONS(1543), - [aux_sym_cmd_identifier_token13] = ACTIONS(1543), - [aux_sym_cmd_identifier_token14] = ACTIONS(1543), - [aux_sym_cmd_identifier_token15] = ACTIONS(1543), - [aux_sym_cmd_identifier_token16] = ACTIONS(1557), - [aux_sym_cmd_identifier_token17] = ACTIONS(1557), - [aux_sym_cmd_identifier_token18] = ACTIONS(1557), - [aux_sym_cmd_identifier_token19] = ACTIONS(1557), - [aux_sym_cmd_identifier_token20] = ACTIONS(1557), - [aux_sym_cmd_identifier_token21] = ACTIONS(1557), - [aux_sym_cmd_identifier_token22] = ACTIONS(1557), - [aux_sym_cmd_identifier_token23] = ACTIONS(1557), - [aux_sym_cmd_identifier_token24] = ACTIONS(1557), - [aux_sym_cmd_identifier_token25] = ACTIONS(1557), - [aux_sym_cmd_identifier_token26] = ACTIONS(1557), - [aux_sym_cmd_identifier_token27] = ACTIONS(1557), - [aux_sym_cmd_identifier_token28] = ACTIONS(1557), - [aux_sym_cmd_identifier_token29] = ACTIONS(1557), - [aux_sym_cmd_identifier_token30] = ACTIONS(1557), - [aux_sym_cmd_identifier_token31] = ACTIONS(1557), - [aux_sym_cmd_identifier_token32] = ACTIONS(1557), - [aux_sym_cmd_identifier_token33] = ACTIONS(1557), - [aux_sym_cmd_identifier_token34] = ACTIONS(1543), - [aux_sym_cmd_identifier_token35] = ACTIONS(1557), - [aux_sym_cmd_identifier_token36] = ACTIONS(1557), - [aux_sym_cmd_identifier_token37] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1543), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [anon_sym_def] = ACTIONS(1543), - [anon_sym_export_DASHenv] = ACTIONS(1543), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_error] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_in2] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_make] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_source] = ACTIONS(1543), - [anon_sym_source_DASHenv] = ACTIONS(1543), - [anon_sym_register] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_hide_DASHenv] = ACTIONS(1543), - [anon_sym_overlay] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), - [anon_sym_DOT] = ACTIONS(1619), - [aux_sym__immediate_decimal_token1] = ACTIONS(1621), - [aux_sym__immediate_decimal_token3] = ACTIONS(1623), - [aux_sym__immediate_decimal_token4] = ACTIONS(1625), - [aux_sym__immediate_decimal_token5] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1543), - [aux_sym__val_number_token5] = ACTIONS(1543), - [aux_sym__val_number_token6] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), - }, - [327] = { - [sym_cmd_identifier] = STATE(4794), - [sym__expression_parenthesized] = STATE(3940), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5163), - [sym_comment] = STATE(327), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [161] = { + [sym_pipeline_parenthesized] = STATE(7442), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(161), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [328] = { - [sym_comment] = STATE(328), - [anon_sym_export] = ACTIONS(1629), - [anon_sym_alias] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1629), - [anon_sym_let_DASHenv] = ACTIONS(1629), - [anon_sym_mut] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [aux_sym_cmd_identifier_token1] = ACTIONS(1629), - [aux_sym_cmd_identifier_token2] = ACTIONS(1631), - [aux_sym_cmd_identifier_token3] = ACTIONS(1631), - [aux_sym_cmd_identifier_token4] = ACTIONS(1631), - [aux_sym_cmd_identifier_token5] = ACTIONS(1631), - [aux_sym_cmd_identifier_token6] = ACTIONS(1631), - [aux_sym_cmd_identifier_token7] = ACTIONS(1631), - [aux_sym_cmd_identifier_token8] = ACTIONS(1629), - [aux_sym_cmd_identifier_token9] = ACTIONS(1629), - [aux_sym_cmd_identifier_token10] = ACTIONS(1631), - [aux_sym_cmd_identifier_token11] = ACTIONS(1631), - [aux_sym_cmd_identifier_token12] = ACTIONS(1629), - [aux_sym_cmd_identifier_token13] = ACTIONS(1629), - [aux_sym_cmd_identifier_token14] = ACTIONS(1629), - [aux_sym_cmd_identifier_token15] = ACTIONS(1629), - [aux_sym_cmd_identifier_token16] = ACTIONS(1631), - [aux_sym_cmd_identifier_token17] = ACTIONS(1631), - [aux_sym_cmd_identifier_token18] = ACTIONS(1631), - [aux_sym_cmd_identifier_token19] = ACTIONS(1631), - [aux_sym_cmd_identifier_token20] = ACTIONS(1631), - [aux_sym_cmd_identifier_token21] = ACTIONS(1631), - [aux_sym_cmd_identifier_token22] = ACTIONS(1631), - [aux_sym_cmd_identifier_token23] = ACTIONS(1631), - [aux_sym_cmd_identifier_token24] = ACTIONS(1631), - [aux_sym_cmd_identifier_token25] = ACTIONS(1631), - [aux_sym_cmd_identifier_token26] = ACTIONS(1631), - [aux_sym_cmd_identifier_token27] = ACTIONS(1631), - [aux_sym_cmd_identifier_token28] = ACTIONS(1631), - [aux_sym_cmd_identifier_token29] = ACTIONS(1631), - [aux_sym_cmd_identifier_token30] = ACTIONS(1631), - [aux_sym_cmd_identifier_token31] = ACTIONS(1631), - [aux_sym_cmd_identifier_token32] = ACTIONS(1631), - [aux_sym_cmd_identifier_token33] = ACTIONS(1631), - [aux_sym_cmd_identifier_token34] = ACTIONS(1629), - [aux_sym_cmd_identifier_token35] = ACTIONS(1631), - [aux_sym_cmd_identifier_token36] = ACTIONS(1631), - [aux_sym_cmd_identifier_token37] = ACTIONS(1631), - [aux_sym_cmd_identifier_token38] = ACTIONS(1629), - [aux_sym_cmd_identifier_token39] = ACTIONS(1631), - [aux_sym_cmd_identifier_token40] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1629), - [anon_sym_export_DASHenv] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym_module] = ACTIONS(1629), - [anon_sym_use] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1629), - [anon_sym_error] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_loop] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_source] = ACTIONS(1629), - [anon_sym_source_DASHenv] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_hide] = ACTIONS(1629), - [anon_sym_hide_DASHenv] = ACTIONS(1629), - [anon_sym_overlay] = ACTIONS(1629), - [anon_sym_where] = ACTIONS(1631), - [aux_sym_expr_unary_token1] = ACTIONS(1631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), - [anon_sym_DOT_DOT_LT] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1629), - [aux_sym__val_number_decimal_token2] = ACTIONS(1631), - [aux_sym__val_number_decimal_token3] = ACTIONS(1631), - [aux_sym__val_number_decimal_token4] = ACTIONS(1631), - [aux_sym__val_number_token1] = ACTIONS(1631), - [aux_sym__val_number_token2] = ACTIONS(1631), - [aux_sym__val_number_token3] = ACTIONS(1631), - [aux_sym__val_number_token4] = ACTIONS(1629), - [aux_sym__val_number_token5] = ACTIONS(1629), - [aux_sym__val_number_token6] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1629), - [anon_sym_0o] = ACTIONS(1629), - [anon_sym_0x] = ACTIONS(1629), - [sym_val_date] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__str_single_quotes] = ACTIONS(1631), - [sym__str_back_ticks] = ACTIONS(1631), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1631), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1631), - [aux_sym_env_var_token1] = ACTIONS(1629), - [anon_sym_CARET] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [329] = { - [sym_cmd_identifier] = STATE(4794), - [sym__expression_parenthesized] = STATE(3940), - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2460), - [sym__expr_binary_expression_parenthesized] = STATE(3868), - [sym_expr_parenthesized] = STATE(2173), - [sym_val_range] = STATE(3942), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(857), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7174), - [sym__command_parenthesized] = STATE(5163), - [sym_comment] = STATE(329), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1635), - [aux_sym__val_number_decimal_token3] = ACTIONS(1637), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [162] = { + [sym_pipeline_parenthesized] = STATE(7443), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(162), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [330] = { - [sym_cmd_identifier] = STATE(4546), - [sym__expression] = STATE(3867), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(857), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4804), - [sym_comment] = STATE(330), - [aux_sym_pipe_element_repeat2] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1635), - [aux_sym__val_number_decimal_token3] = ACTIONS(1637), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [163] = { + [sym_pipeline] = STATE(6286), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [331] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if] = STATE(4871), - [sym_block] = STATE(4874), - [sym__expression] = STATE(4874), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(4874), - [sym_comment] = STATE(331), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1476), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1480), - [aux_sym__val_number_decimal_token4] = ACTIONS(1482), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [332] = { - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1643), - [anon_sym_alias] = ACTIONS(1643), - [anon_sym_let] = ACTIONS(1643), - [anon_sym_let_DASHenv] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [aux_sym_cmd_identifier_token1] = ACTIONS(1643), - [aux_sym_cmd_identifier_token2] = ACTIONS(1645), - [aux_sym_cmd_identifier_token3] = ACTIONS(1645), - [aux_sym_cmd_identifier_token4] = ACTIONS(1645), - [aux_sym_cmd_identifier_token5] = ACTIONS(1645), - [aux_sym_cmd_identifier_token6] = ACTIONS(1645), - [aux_sym_cmd_identifier_token7] = ACTIONS(1645), - [aux_sym_cmd_identifier_token8] = ACTIONS(1643), - [aux_sym_cmd_identifier_token9] = ACTIONS(1643), - [aux_sym_cmd_identifier_token10] = ACTIONS(1645), - [aux_sym_cmd_identifier_token11] = ACTIONS(1645), - [aux_sym_cmd_identifier_token12] = ACTIONS(1643), - [aux_sym_cmd_identifier_token13] = ACTIONS(1643), - [aux_sym_cmd_identifier_token14] = ACTIONS(1643), - [aux_sym_cmd_identifier_token15] = ACTIONS(1643), - [aux_sym_cmd_identifier_token16] = ACTIONS(1645), - [aux_sym_cmd_identifier_token17] = ACTIONS(1645), - [aux_sym_cmd_identifier_token18] = ACTIONS(1645), - [aux_sym_cmd_identifier_token19] = ACTIONS(1645), - [aux_sym_cmd_identifier_token20] = ACTIONS(1645), - [aux_sym_cmd_identifier_token21] = ACTIONS(1645), - [aux_sym_cmd_identifier_token22] = ACTIONS(1645), - [aux_sym_cmd_identifier_token23] = ACTIONS(1645), - [aux_sym_cmd_identifier_token24] = ACTIONS(1645), - [aux_sym_cmd_identifier_token25] = ACTIONS(1645), - [aux_sym_cmd_identifier_token26] = ACTIONS(1645), - [aux_sym_cmd_identifier_token27] = ACTIONS(1645), - [aux_sym_cmd_identifier_token28] = ACTIONS(1645), - [aux_sym_cmd_identifier_token29] = ACTIONS(1645), - [aux_sym_cmd_identifier_token30] = ACTIONS(1645), - [aux_sym_cmd_identifier_token31] = ACTIONS(1645), - [aux_sym_cmd_identifier_token32] = ACTIONS(1645), - [aux_sym_cmd_identifier_token33] = ACTIONS(1645), - [aux_sym_cmd_identifier_token34] = ACTIONS(1643), - [aux_sym_cmd_identifier_token35] = ACTIONS(1645), - [aux_sym_cmd_identifier_token36] = ACTIONS(1645), - [aux_sym_cmd_identifier_token37] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1643), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_export_DASHenv] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1643), - [anon_sym_module] = ACTIONS(1643), - [anon_sym_use] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_error] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_loop] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_source] = ACTIONS(1643), - [anon_sym_source_DASHenv] = ACTIONS(1643), - [anon_sym_register] = ACTIONS(1643), - [anon_sym_hide] = ACTIONS(1643), - [anon_sym_hide_DASHenv] = ACTIONS(1643), - [anon_sym_overlay] = ACTIONS(1643), - [anon_sym_where] = ACTIONS(1645), - [aux_sym_expr_unary_token1] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1643), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1643), - [anon_sym_0o] = ACTIONS(1643), - [anon_sym_0x] = ACTIONS(1643), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [aux_sym_env_var_token1] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [333] = { - [sym_cmd_identifier] = STATE(4546), - [sym__expression] = STATE(3867), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3983), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(839), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_env_var] = STATE(7604), - [sym_command] = STATE(4804), - [sym_comment] = STATE(333), - [aux_sym_pipe_element_repeat2] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [164] = { + [sym_pipeline_parenthesized] = STATE(6911), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(164), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [334] = { - [sym_cmd_identifier] = STATE(4546), - [sym_ctrl_if] = STATE(4871), - [sym_block] = STATE(4874), - [sym__expression] = STATE(4874), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1245), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_command] = STATE(4874), - [sym_comment] = STATE(334), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [335] = { - [sym__expr_parenthesized_immediate] = STATE(659), - [sym__immediate_decimal] = STATE(541), - [sym_val_variable] = STATE(659), - [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_alias] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_let_DASHenv] = ACTIONS(1543), - [anon_sym_mut] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [aux_sym_cmd_identifier_token1] = ACTIONS(1543), - [aux_sym_cmd_identifier_token2] = ACTIONS(1543), - [aux_sym_cmd_identifier_token3] = ACTIONS(1543), - [aux_sym_cmd_identifier_token4] = ACTIONS(1543), - [aux_sym_cmd_identifier_token5] = ACTIONS(1543), - [aux_sym_cmd_identifier_token6] = ACTIONS(1543), - [aux_sym_cmd_identifier_token7] = ACTIONS(1543), - [aux_sym_cmd_identifier_token8] = ACTIONS(1543), - [aux_sym_cmd_identifier_token9] = ACTIONS(1543), - [aux_sym_cmd_identifier_token10] = ACTIONS(1543), - [aux_sym_cmd_identifier_token11] = ACTIONS(1543), - [aux_sym_cmd_identifier_token12] = ACTIONS(1543), - [aux_sym_cmd_identifier_token13] = ACTIONS(1543), - [aux_sym_cmd_identifier_token14] = ACTIONS(1543), - [aux_sym_cmd_identifier_token15] = ACTIONS(1543), - [aux_sym_cmd_identifier_token16] = ACTIONS(1543), - [aux_sym_cmd_identifier_token17] = ACTIONS(1543), - [aux_sym_cmd_identifier_token18] = ACTIONS(1543), - [aux_sym_cmd_identifier_token19] = ACTIONS(1543), - [aux_sym_cmd_identifier_token20] = ACTIONS(1543), - [aux_sym_cmd_identifier_token21] = ACTIONS(1543), - [aux_sym_cmd_identifier_token22] = ACTIONS(1543), - [aux_sym_cmd_identifier_token23] = ACTIONS(1543), - [aux_sym_cmd_identifier_token24] = ACTIONS(1543), - [aux_sym_cmd_identifier_token25] = ACTIONS(1543), - [aux_sym_cmd_identifier_token26] = ACTIONS(1543), - [aux_sym_cmd_identifier_token27] = ACTIONS(1543), - [aux_sym_cmd_identifier_token28] = ACTIONS(1543), - [aux_sym_cmd_identifier_token29] = ACTIONS(1543), - [aux_sym_cmd_identifier_token30] = ACTIONS(1543), - [aux_sym_cmd_identifier_token31] = ACTIONS(1543), - [aux_sym_cmd_identifier_token32] = ACTIONS(1543), - [aux_sym_cmd_identifier_token33] = ACTIONS(1543), - [aux_sym_cmd_identifier_token34] = ACTIONS(1543), - [aux_sym_cmd_identifier_token35] = ACTIONS(1543), - [aux_sym_cmd_identifier_token36] = ACTIONS(1543), - [aux_sym_cmd_identifier_token37] = ACTIONS(1543), - [aux_sym_cmd_identifier_token38] = ACTIONS(1543), - [aux_sym_cmd_identifier_token39] = ACTIONS(1543), - [aux_sym_cmd_identifier_token40] = ACTIONS(1543), - [anon_sym_def] = ACTIONS(1543), - [anon_sym_export_DASHenv] = ACTIONS(1543), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_in2] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_make] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_source] = ACTIONS(1543), - [anon_sym_source_DASHenv] = ACTIONS(1543), - [anon_sym_register] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_hide_DASHenv] = ACTIONS(1543), - [anon_sym_overlay] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), - [aux_sym__immediate_decimal_token1] = ACTIONS(1651), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1543), - [aux_sym__val_number_token2] = ACTIONS(1543), - [aux_sym__val_number_token3] = ACTIONS(1543), - [aux_sym__val_number_token4] = ACTIONS(1543), - [aux_sym__val_number_token5] = ACTIONS(1543), - [aux_sym__val_number_token6] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym__str_single_quotes] = ACTIONS(1543), - [sym__str_back_ticks] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), - [sym__entry_separator] = ACTIONS(1557), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1557), - }, - [336] = { - [sym__expr_parenthesized_immediate] = STATE(619), - [sym__immediate_decimal] = STATE(548), - [sym_val_variable] = STATE(619), - [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1657), - [aux_sym_cmd_identifier_token3] = ACTIONS(1657), - [aux_sym_cmd_identifier_token4] = ACTIONS(1657), - [aux_sym_cmd_identifier_token5] = ACTIONS(1657), - [aux_sym_cmd_identifier_token6] = ACTIONS(1657), - [aux_sym_cmd_identifier_token7] = ACTIONS(1657), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1657), - [aux_sym_cmd_identifier_token11] = ACTIONS(1657), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1657), - [aux_sym_cmd_identifier_token17] = ACTIONS(1657), - [aux_sym_cmd_identifier_token18] = ACTIONS(1657), - [aux_sym_cmd_identifier_token19] = ACTIONS(1657), - [aux_sym_cmd_identifier_token20] = ACTIONS(1657), - [aux_sym_cmd_identifier_token21] = ACTIONS(1657), - [aux_sym_cmd_identifier_token22] = ACTIONS(1657), - [aux_sym_cmd_identifier_token23] = ACTIONS(1657), - [aux_sym_cmd_identifier_token24] = ACTIONS(1657), - [aux_sym_cmd_identifier_token25] = ACTIONS(1657), - [aux_sym_cmd_identifier_token26] = ACTIONS(1657), - [aux_sym_cmd_identifier_token27] = ACTIONS(1657), - [aux_sym_cmd_identifier_token28] = ACTIONS(1657), - [aux_sym_cmd_identifier_token29] = ACTIONS(1657), - [aux_sym_cmd_identifier_token30] = ACTIONS(1657), - [aux_sym_cmd_identifier_token31] = ACTIONS(1657), - [aux_sym_cmd_identifier_token32] = ACTIONS(1657), - [aux_sym_cmd_identifier_token33] = ACTIONS(1657), - [aux_sym_cmd_identifier_token34] = ACTIONS(1657), - [aux_sym_cmd_identifier_token35] = ACTIONS(1657), - [aux_sym_cmd_identifier_token36] = ACTIONS(1657), - [aux_sym_cmd_identifier_token37] = ACTIONS(1657), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), - [aux_sym_cmd_identifier_token39] = ACTIONS(1657), - [aux_sym_cmd_identifier_token40] = ACTIONS(1657), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_make] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_as] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(1651), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1657), - [aux_sym__val_number_token2] = ACTIONS(1657), - [aux_sym__val_number_token3] = ACTIONS(1657), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym__str_single_quotes] = ACTIONS(1657), - [sym__str_back_ticks] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1657), - [sym__entry_separator] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1659), - }, - [337] = { - [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1538), - [aux_sym_cmd_identifier_token3] = ACTIONS(1538), - [aux_sym_cmd_identifier_token4] = ACTIONS(1538), - [aux_sym_cmd_identifier_token5] = ACTIONS(1538), - [aux_sym_cmd_identifier_token6] = ACTIONS(1538), - [aux_sym_cmd_identifier_token7] = ACTIONS(1538), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1538), - [aux_sym_cmd_identifier_token11] = ACTIONS(1538), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1538), - [aux_sym_cmd_identifier_token17] = ACTIONS(1538), - [aux_sym_cmd_identifier_token18] = ACTIONS(1538), - [aux_sym_cmd_identifier_token19] = ACTIONS(1538), - [aux_sym_cmd_identifier_token20] = ACTIONS(1538), - [aux_sym_cmd_identifier_token21] = ACTIONS(1538), - [aux_sym_cmd_identifier_token22] = ACTIONS(1538), - [aux_sym_cmd_identifier_token23] = ACTIONS(1538), - [aux_sym_cmd_identifier_token24] = ACTIONS(1538), - [aux_sym_cmd_identifier_token25] = ACTIONS(1538), - [aux_sym_cmd_identifier_token26] = ACTIONS(1538), - [aux_sym_cmd_identifier_token27] = ACTIONS(1538), - [aux_sym_cmd_identifier_token28] = ACTIONS(1538), - [aux_sym_cmd_identifier_token29] = ACTIONS(1538), - [aux_sym_cmd_identifier_token30] = ACTIONS(1538), - [aux_sym_cmd_identifier_token31] = ACTIONS(1538), - [aux_sym_cmd_identifier_token32] = ACTIONS(1538), - [aux_sym_cmd_identifier_token33] = ACTIONS(1538), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1538), - [aux_sym_cmd_identifier_token36] = ACTIONS(1538), - [aux_sym_cmd_identifier_token37] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_DASH2] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_where] = ACTIONS(1538), - [aux_sym_expr_unary_token1] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [aux_sym__val_number_token4] = ACTIONS(1536), - [aux_sym__val_number_token5] = ACTIONS(1536), - [aux_sym__val_number_token6] = ACTIONS(1536), - [anon_sym_0b] = ACTIONS(1536), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [aux_sym_env_var_token1] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1538), - }, - [338] = { - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_alias] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_let_DASHenv] = ACTIONS(1505), - [anon_sym_mut] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [aux_sym_cmd_identifier_token1] = ACTIONS(1505), - [aux_sym_cmd_identifier_token2] = ACTIONS(1507), - [aux_sym_cmd_identifier_token3] = ACTIONS(1507), - [aux_sym_cmd_identifier_token4] = ACTIONS(1507), - [aux_sym_cmd_identifier_token5] = ACTIONS(1507), - [aux_sym_cmd_identifier_token6] = ACTIONS(1507), - [aux_sym_cmd_identifier_token7] = ACTIONS(1507), - [aux_sym_cmd_identifier_token8] = ACTIONS(1505), - [aux_sym_cmd_identifier_token9] = ACTIONS(1505), - [aux_sym_cmd_identifier_token10] = ACTIONS(1507), - [aux_sym_cmd_identifier_token11] = ACTIONS(1507), - [aux_sym_cmd_identifier_token12] = ACTIONS(1505), - [aux_sym_cmd_identifier_token13] = ACTIONS(1505), - [aux_sym_cmd_identifier_token14] = ACTIONS(1505), - [aux_sym_cmd_identifier_token15] = ACTIONS(1505), - [aux_sym_cmd_identifier_token16] = ACTIONS(1507), - [aux_sym_cmd_identifier_token17] = ACTIONS(1507), - [aux_sym_cmd_identifier_token18] = ACTIONS(1507), - [aux_sym_cmd_identifier_token19] = ACTIONS(1507), - [aux_sym_cmd_identifier_token20] = ACTIONS(1507), - [aux_sym_cmd_identifier_token21] = ACTIONS(1507), - [aux_sym_cmd_identifier_token22] = ACTIONS(1507), - [aux_sym_cmd_identifier_token23] = ACTIONS(1507), - [aux_sym_cmd_identifier_token24] = ACTIONS(1507), - [aux_sym_cmd_identifier_token25] = ACTIONS(1507), - [aux_sym_cmd_identifier_token26] = ACTIONS(1507), - [aux_sym_cmd_identifier_token27] = ACTIONS(1507), - [aux_sym_cmd_identifier_token28] = ACTIONS(1507), - [aux_sym_cmd_identifier_token29] = ACTIONS(1507), - [aux_sym_cmd_identifier_token30] = ACTIONS(1507), - [aux_sym_cmd_identifier_token31] = ACTIONS(1507), - [aux_sym_cmd_identifier_token32] = ACTIONS(1507), - [aux_sym_cmd_identifier_token33] = ACTIONS(1507), - [aux_sym_cmd_identifier_token34] = ACTIONS(1505), - [aux_sym_cmd_identifier_token35] = ACTIONS(1507), - [aux_sym_cmd_identifier_token36] = ACTIONS(1507), - [aux_sym_cmd_identifier_token37] = ACTIONS(1507), - [aux_sym_cmd_identifier_token38] = ACTIONS(1505), - [aux_sym_cmd_identifier_token39] = ACTIONS(1507), - [aux_sym_cmd_identifier_token40] = ACTIONS(1507), - [sym__newline] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_export_DASHenv] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_DOLLAR] = ACTIONS(1505), - [anon_sym_error] = ACTIONS(1505), - [anon_sym_DASH2] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_source] = ACTIONS(1505), - [anon_sym_source_DASHenv] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_hide] = ACTIONS(1505), - [anon_sym_hide_DASHenv] = ACTIONS(1505), - [anon_sym_overlay] = ACTIONS(1505), - [anon_sym_where] = ACTIONS(1507), - [aux_sym_expr_unary_token1] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_DOT_DOT_LT] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1505), - [aux_sym__val_number_decimal_token2] = ACTIONS(1507), - [aux_sym__val_number_decimal_token3] = ACTIONS(1507), - [aux_sym__val_number_decimal_token4] = ACTIONS(1507), - [aux_sym__val_number_token1] = ACTIONS(1507), - [aux_sym__val_number_token2] = ACTIONS(1507), - [aux_sym__val_number_token3] = ACTIONS(1507), - [aux_sym__val_number_token4] = ACTIONS(1505), - [aux_sym__val_number_token5] = ACTIONS(1505), - [aux_sym__val_number_token6] = ACTIONS(1505), - [anon_sym_0b] = ACTIONS(1505), - [anon_sym_0o] = ACTIONS(1505), - [anon_sym_0x] = ACTIONS(1505), - [sym_val_date] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym__str_single_quotes] = ACTIONS(1507), - [sym__str_back_ticks] = ACTIONS(1507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [aux_sym_env_var_token1] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1507), - }, - [339] = { - [sym__expr_parenthesized_immediate] = STATE(688), - [sym__immediate_decimal] = STATE(689), - [sym_val_variable] = STATE(688), - [sym_comment] = STATE(339), - [anon_sym_export] = ACTIONS(1663), - [anon_sym_alias] = ACTIONS(1663), - [anon_sym_let] = ACTIONS(1663), - [anon_sym_let_DASHenv] = ACTIONS(1663), - [anon_sym_mut] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [aux_sym_cmd_identifier_token1] = ACTIONS(1663), - [aux_sym_cmd_identifier_token2] = ACTIONS(1663), - [aux_sym_cmd_identifier_token3] = ACTIONS(1663), - [aux_sym_cmd_identifier_token4] = ACTIONS(1663), - [aux_sym_cmd_identifier_token5] = ACTIONS(1663), - [aux_sym_cmd_identifier_token6] = ACTIONS(1663), - [aux_sym_cmd_identifier_token7] = ACTIONS(1663), - [aux_sym_cmd_identifier_token8] = ACTIONS(1663), - [aux_sym_cmd_identifier_token9] = ACTIONS(1663), - [aux_sym_cmd_identifier_token10] = ACTIONS(1663), - [aux_sym_cmd_identifier_token11] = ACTIONS(1663), - [aux_sym_cmd_identifier_token12] = ACTIONS(1663), - [aux_sym_cmd_identifier_token13] = ACTIONS(1663), - [aux_sym_cmd_identifier_token14] = ACTIONS(1663), - [aux_sym_cmd_identifier_token15] = ACTIONS(1663), - [aux_sym_cmd_identifier_token16] = ACTIONS(1663), - [aux_sym_cmd_identifier_token17] = ACTIONS(1663), - [aux_sym_cmd_identifier_token18] = ACTIONS(1663), - [aux_sym_cmd_identifier_token19] = ACTIONS(1663), - [aux_sym_cmd_identifier_token20] = ACTIONS(1663), - [aux_sym_cmd_identifier_token21] = ACTIONS(1663), - [aux_sym_cmd_identifier_token22] = ACTIONS(1663), - [aux_sym_cmd_identifier_token23] = ACTIONS(1663), - [aux_sym_cmd_identifier_token24] = ACTIONS(1663), - [aux_sym_cmd_identifier_token25] = ACTIONS(1663), - [aux_sym_cmd_identifier_token26] = ACTIONS(1663), - [aux_sym_cmd_identifier_token27] = ACTIONS(1663), - [aux_sym_cmd_identifier_token28] = ACTIONS(1663), - [aux_sym_cmd_identifier_token29] = ACTIONS(1663), - [aux_sym_cmd_identifier_token30] = ACTIONS(1663), - [aux_sym_cmd_identifier_token31] = ACTIONS(1663), - [aux_sym_cmd_identifier_token32] = ACTIONS(1663), - [aux_sym_cmd_identifier_token33] = ACTIONS(1663), - [aux_sym_cmd_identifier_token34] = ACTIONS(1663), - [aux_sym_cmd_identifier_token35] = ACTIONS(1663), - [aux_sym_cmd_identifier_token36] = ACTIONS(1663), - [aux_sym_cmd_identifier_token37] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1663), - [aux_sym_cmd_identifier_token39] = ACTIONS(1663), - [aux_sym_cmd_identifier_token40] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1663), - [anon_sym_export_DASHenv] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_module] = ACTIONS(1663), - [anon_sym_use] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_loop] = ACTIONS(1663), - [anon_sym_make] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_catch] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_source] = ACTIONS(1663), - [anon_sym_source_DASHenv] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_hide] = ACTIONS(1663), - [anon_sym_hide_DASHenv] = ACTIONS(1663), - [anon_sym_overlay] = ACTIONS(1663), - [anon_sym_as] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1665), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1663), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), - [sym__entry_separator] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1671), - }, - [340] = { - [sym__expr_parenthesized_immediate] = STATE(693), - [sym__immediate_decimal] = STATE(614), - [sym_val_variable] = STATE(693), - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1673), - [anon_sym_alias] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_let_DASHenv] = ACTIONS(1673), - [anon_sym_mut] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(1673), - [aux_sym_cmd_identifier_token2] = ACTIONS(1673), - [aux_sym_cmd_identifier_token3] = ACTIONS(1673), - [aux_sym_cmd_identifier_token4] = ACTIONS(1673), - [aux_sym_cmd_identifier_token5] = ACTIONS(1673), - [aux_sym_cmd_identifier_token6] = ACTIONS(1673), - [aux_sym_cmd_identifier_token7] = ACTIONS(1673), - [aux_sym_cmd_identifier_token8] = ACTIONS(1673), - [aux_sym_cmd_identifier_token9] = ACTIONS(1673), - [aux_sym_cmd_identifier_token10] = ACTIONS(1673), - [aux_sym_cmd_identifier_token11] = ACTIONS(1673), - [aux_sym_cmd_identifier_token12] = ACTIONS(1673), - [aux_sym_cmd_identifier_token13] = ACTIONS(1673), - [aux_sym_cmd_identifier_token14] = ACTIONS(1673), - [aux_sym_cmd_identifier_token15] = ACTIONS(1673), - [aux_sym_cmd_identifier_token16] = ACTIONS(1673), - [aux_sym_cmd_identifier_token17] = ACTIONS(1673), - [aux_sym_cmd_identifier_token18] = ACTIONS(1673), - [aux_sym_cmd_identifier_token19] = ACTIONS(1673), - [aux_sym_cmd_identifier_token20] = ACTIONS(1673), - [aux_sym_cmd_identifier_token21] = ACTIONS(1673), - [aux_sym_cmd_identifier_token22] = ACTIONS(1673), - [aux_sym_cmd_identifier_token23] = ACTIONS(1673), - [aux_sym_cmd_identifier_token24] = ACTIONS(1673), - [aux_sym_cmd_identifier_token25] = ACTIONS(1673), - [aux_sym_cmd_identifier_token26] = ACTIONS(1673), - [aux_sym_cmd_identifier_token27] = ACTIONS(1673), - [aux_sym_cmd_identifier_token28] = ACTIONS(1673), - [aux_sym_cmd_identifier_token29] = ACTIONS(1673), - [aux_sym_cmd_identifier_token30] = ACTIONS(1673), - [aux_sym_cmd_identifier_token31] = ACTIONS(1673), - [aux_sym_cmd_identifier_token32] = ACTIONS(1673), - [aux_sym_cmd_identifier_token33] = ACTIONS(1673), - [aux_sym_cmd_identifier_token34] = ACTIONS(1673), - [aux_sym_cmd_identifier_token35] = ACTIONS(1673), - [aux_sym_cmd_identifier_token36] = ACTIONS(1673), - [aux_sym_cmd_identifier_token37] = ACTIONS(1673), - [aux_sym_cmd_identifier_token38] = ACTIONS(1673), - [aux_sym_cmd_identifier_token39] = ACTIONS(1673), - [aux_sym_cmd_identifier_token40] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_export_DASHenv] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_module] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_make] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_source] = ACTIONS(1673), - [anon_sym_source_DASHenv] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_hide_DASHenv] = ACTIONS(1673), - [anon_sym_overlay] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1665), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1673), - [aux_sym__val_number_decimal_token3] = ACTIONS(1673), - [aux_sym__val_number_decimal_token4] = ACTIONS(1673), - [aux_sym__val_number_token1] = ACTIONS(1673), - [aux_sym__val_number_token2] = ACTIONS(1673), - [aux_sym__val_number_token3] = ACTIONS(1673), - [aux_sym__val_number_token4] = ACTIONS(1673), - [aux_sym__val_number_token5] = ACTIONS(1673), - [aux_sym__val_number_token6] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), - [sym__entry_separator] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [341] = { - [sym__expr_parenthesized_immediate] = STATE(617), - [sym__immediate_decimal] = STATE(618), - [sym_val_variable] = STATE(617), - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1677), - [anon_sym_alias] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_let_DASHenv] = ACTIONS(1677), - [anon_sym_mut] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [aux_sym_cmd_identifier_token1] = ACTIONS(1677), - [aux_sym_cmd_identifier_token2] = ACTIONS(1677), - [aux_sym_cmd_identifier_token3] = ACTIONS(1677), - [aux_sym_cmd_identifier_token4] = ACTIONS(1677), - [aux_sym_cmd_identifier_token5] = ACTIONS(1677), - [aux_sym_cmd_identifier_token6] = ACTIONS(1677), - [aux_sym_cmd_identifier_token7] = ACTIONS(1677), - [aux_sym_cmd_identifier_token8] = ACTIONS(1677), - [aux_sym_cmd_identifier_token9] = ACTIONS(1677), - [aux_sym_cmd_identifier_token10] = ACTIONS(1677), - [aux_sym_cmd_identifier_token11] = ACTIONS(1677), - [aux_sym_cmd_identifier_token12] = ACTIONS(1677), - [aux_sym_cmd_identifier_token13] = ACTIONS(1677), - [aux_sym_cmd_identifier_token14] = ACTIONS(1677), - [aux_sym_cmd_identifier_token15] = ACTIONS(1677), - [aux_sym_cmd_identifier_token16] = ACTIONS(1677), - [aux_sym_cmd_identifier_token17] = ACTIONS(1677), - [aux_sym_cmd_identifier_token18] = ACTIONS(1677), - [aux_sym_cmd_identifier_token19] = ACTIONS(1677), - [aux_sym_cmd_identifier_token20] = ACTIONS(1677), - [aux_sym_cmd_identifier_token21] = ACTIONS(1677), - [aux_sym_cmd_identifier_token22] = ACTIONS(1677), - [aux_sym_cmd_identifier_token23] = ACTIONS(1677), - [aux_sym_cmd_identifier_token24] = ACTIONS(1677), - [aux_sym_cmd_identifier_token25] = ACTIONS(1677), - [aux_sym_cmd_identifier_token26] = ACTIONS(1677), - [aux_sym_cmd_identifier_token27] = ACTIONS(1677), - [aux_sym_cmd_identifier_token28] = ACTIONS(1677), - [aux_sym_cmd_identifier_token29] = ACTIONS(1677), - [aux_sym_cmd_identifier_token30] = ACTIONS(1677), - [aux_sym_cmd_identifier_token31] = ACTIONS(1677), - [aux_sym_cmd_identifier_token32] = ACTIONS(1677), - [aux_sym_cmd_identifier_token33] = ACTIONS(1677), - [aux_sym_cmd_identifier_token34] = ACTIONS(1677), - [aux_sym_cmd_identifier_token35] = ACTIONS(1677), - [aux_sym_cmd_identifier_token36] = ACTIONS(1677), - [aux_sym_cmd_identifier_token37] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [anon_sym_def] = ACTIONS(1677), - [anon_sym_export_DASHenv] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_module] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_make] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_source] = ACTIONS(1677), - [anon_sym_source_DASHenv] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_hide_DASHenv] = ACTIONS(1677), - [anon_sym_overlay] = ACTIONS(1677), - [anon_sym_as] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1665), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), - [sym__entry_separator] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1679), - }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1681), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1681), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1681), - [aux_sym_cmd_identifier_token32] = ACTIONS(1681), - [aux_sym_cmd_identifier_token33] = ACTIONS(1681), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1681), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [aux_sym_cmd_identifier_token37] = ACTIONS(1681), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1681), - [aux_sym_cmd_identifier_token40] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1681), - [aux_sym__val_number_decimal_token3] = ACTIONS(1681), - [aux_sym__val_number_decimal_token4] = ACTIONS(1681), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym__str_single_quotes] = ACTIONS(1681), - [sym__str_back_ticks] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), - [sym__entry_separator] = ACTIONS(1683), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1683), - }, - [343] = { - [sym__expr_parenthesized_immediate] = STATE(634), - [sym__immediate_decimal] = STATE(665), - [sym_val_variable] = STATE(634), - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_alias] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_let_DASHenv] = ACTIONS(1593), - [anon_sym_mut] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [aux_sym_cmd_identifier_token1] = ACTIONS(1593), - [aux_sym_cmd_identifier_token2] = ACTIONS(1593), - [aux_sym_cmd_identifier_token3] = ACTIONS(1593), - [aux_sym_cmd_identifier_token4] = ACTIONS(1593), - [aux_sym_cmd_identifier_token5] = ACTIONS(1593), - [aux_sym_cmd_identifier_token6] = ACTIONS(1593), - [aux_sym_cmd_identifier_token7] = ACTIONS(1593), - [aux_sym_cmd_identifier_token8] = ACTIONS(1593), - [aux_sym_cmd_identifier_token9] = ACTIONS(1593), - [aux_sym_cmd_identifier_token10] = ACTIONS(1593), - [aux_sym_cmd_identifier_token11] = ACTIONS(1593), - [aux_sym_cmd_identifier_token12] = ACTIONS(1593), - [aux_sym_cmd_identifier_token13] = ACTIONS(1593), - [aux_sym_cmd_identifier_token14] = ACTIONS(1593), - [aux_sym_cmd_identifier_token15] = ACTIONS(1593), - [aux_sym_cmd_identifier_token16] = ACTIONS(1593), - [aux_sym_cmd_identifier_token17] = ACTIONS(1593), - [aux_sym_cmd_identifier_token18] = ACTIONS(1593), - [aux_sym_cmd_identifier_token19] = ACTIONS(1593), - [aux_sym_cmd_identifier_token20] = ACTIONS(1593), - [aux_sym_cmd_identifier_token21] = ACTIONS(1593), - [aux_sym_cmd_identifier_token22] = ACTIONS(1593), - [aux_sym_cmd_identifier_token23] = ACTIONS(1593), - [aux_sym_cmd_identifier_token24] = ACTIONS(1593), - [aux_sym_cmd_identifier_token25] = ACTIONS(1593), - [aux_sym_cmd_identifier_token26] = ACTIONS(1593), - [aux_sym_cmd_identifier_token27] = ACTIONS(1593), - [aux_sym_cmd_identifier_token28] = ACTIONS(1593), - [aux_sym_cmd_identifier_token29] = ACTIONS(1593), - [aux_sym_cmd_identifier_token30] = ACTIONS(1593), - [aux_sym_cmd_identifier_token31] = ACTIONS(1593), - [aux_sym_cmd_identifier_token32] = ACTIONS(1593), - [aux_sym_cmd_identifier_token33] = ACTIONS(1593), - [aux_sym_cmd_identifier_token34] = ACTIONS(1593), - [aux_sym_cmd_identifier_token35] = ACTIONS(1593), - [aux_sym_cmd_identifier_token36] = ACTIONS(1593), - [aux_sym_cmd_identifier_token37] = ACTIONS(1593), - [aux_sym_cmd_identifier_token38] = ACTIONS(1593), - [aux_sym_cmd_identifier_token39] = ACTIONS(1593), - [aux_sym_cmd_identifier_token40] = ACTIONS(1593), - [anon_sym_def] = ACTIONS(1593), - [anon_sym_export_DASHenv] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1593), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_in2] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_make] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_source] = ACTIONS(1593), - [anon_sym_source_DASHenv] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_hide_DASHenv] = ACTIONS(1593), - [anon_sym_overlay] = ACTIONS(1593), - [anon_sym_as] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1593), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1665), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1593), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1593), - [aux_sym__val_number_token2] = ACTIONS(1593), - [aux_sym__val_number_token3] = ACTIONS(1593), - [aux_sym__val_number_token4] = ACTIONS(1593), - [aux_sym__val_number_token5] = ACTIONS(1593), - [aux_sym__val_number_token6] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [sym__str_single_quotes] = ACTIONS(1593), - [sym__str_back_ticks] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1593), - [sym__entry_separator] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1603), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [aux_sym_cmd_identifier_token37] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(1687), - [aux_sym__immediate_decimal_token2] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1585), - [aux_sym__val_number_token5] = ACTIONS(1585), - [aux_sym__val_number_token6] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), - }, - [345] = { - [sym__expr_parenthesized_immediate] = STATE(708), - [sym__immediate_decimal] = STATE(588), - [sym_val_variable] = STATE(708), - [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_alias] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_let_DASHenv] = ACTIONS(1543), - [anon_sym_mut] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [aux_sym_cmd_identifier_token1] = ACTIONS(1543), - [aux_sym_cmd_identifier_token2] = ACTIONS(1557), - [aux_sym_cmd_identifier_token3] = ACTIONS(1557), - [aux_sym_cmd_identifier_token4] = ACTIONS(1557), - [aux_sym_cmd_identifier_token5] = ACTIONS(1557), - [aux_sym_cmd_identifier_token6] = ACTIONS(1557), - [aux_sym_cmd_identifier_token7] = ACTIONS(1557), - [aux_sym_cmd_identifier_token8] = ACTIONS(1543), - [aux_sym_cmd_identifier_token9] = ACTIONS(1543), - [aux_sym_cmd_identifier_token10] = ACTIONS(1557), - [aux_sym_cmd_identifier_token11] = ACTIONS(1557), - [aux_sym_cmd_identifier_token12] = ACTIONS(1543), - [aux_sym_cmd_identifier_token13] = ACTIONS(1543), - [aux_sym_cmd_identifier_token14] = ACTIONS(1543), - [aux_sym_cmd_identifier_token15] = ACTIONS(1543), - [aux_sym_cmd_identifier_token16] = ACTIONS(1557), - [aux_sym_cmd_identifier_token17] = ACTIONS(1557), - [aux_sym_cmd_identifier_token18] = ACTIONS(1557), - [aux_sym_cmd_identifier_token19] = ACTIONS(1557), - [aux_sym_cmd_identifier_token20] = ACTIONS(1557), - [aux_sym_cmd_identifier_token21] = ACTIONS(1557), - [aux_sym_cmd_identifier_token22] = ACTIONS(1557), - [aux_sym_cmd_identifier_token23] = ACTIONS(1557), - [aux_sym_cmd_identifier_token24] = ACTIONS(1557), - [aux_sym_cmd_identifier_token25] = ACTIONS(1557), - [aux_sym_cmd_identifier_token26] = ACTIONS(1557), - [aux_sym_cmd_identifier_token27] = ACTIONS(1557), - [aux_sym_cmd_identifier_token28] = ACTIONS(1557), - [aux_sym_cmd_identifier_token29] = ACTIONS(1557), - [aux_sym_cmd_identifier_token30] = ACTIONS(1557), - [aux_sym_cmd_identifier_token31] = ACTIONS(1557), - [aux_sym_cmd_identifier_token32] = ACTIONS(1557), - [aux_sym_cmd_identifier_token33] = ACTIONS(1557), - [aux_sym_cmd_identifier_token34] = ACTIONS(1543), - [aux_sym_cmd_identifier_token35] = ACTIONS(1557), - [aux_sym_cmd_identifier_token36] = ACTIONS(1557), - [aux_sym_cmd_identifier_token37] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1543), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [anon_sym_def] = ACTIONS(1543), - [anon_sym_export_DASHenv] = ACTIONS(1543), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_in2] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_make] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_catch] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_source] = ACTIONS(1543), - [anon_sym_source_DASHenv] = ACTIONS(1543), - [anon_sym_register] = ACTIONS(1543), - [anon_sym_hide] = ACTIONS(1543), - [anon_sym_hide_DASHenv] = ACTIONS(1543), - [anon_sym_overlay] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(1695), - [aux_sym__immediate_decimal_token3] = ACTIONS(1697), - [aux_sym__immediate_decimal_token4] = ACTIONS(1699), - [aux_sym__immediate_decimal_token5] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1543), - [aux_sym__val_number_token5] = ACTIONS(1543), - [aux_sym__val_number_token6] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), - }, - [346] = { - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1573), - [aux_sym_cmd_identifier_token3] = ACTIONS(1573), - [aux_sym_cmd_identifier_token4] = ACTIONS(1573), - [aux_sym_cmd_identifier_token5] = ACTIONS(1573), - [aux_sym_cmd_identifier_token6] = ACTIONS(1573), - [aux_sym_cmd_identifier_token7] = ACTIONS(1573), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1573), - [aux_sym_cmd_identifier_token11] = ACTIONS(1573), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1573), - [aux_sym_cmd_identifier_token17] = ACTIONS(1573), - [aux_sym_cmd_identifier_token18] = ACTIONS(1573), - [aux_sym_cmd_identifier_token19] = ACTIONS(1573), - [aux_sym_cmd_identifier_token20] = ACTIONS(1573), - [aux_sym_cmd_identifier_token21] = ACTIONS(1573), - [aux_sym_cmd_identifier_token22] = ACTIONS(1573), - [aux_sym_cmd_identifier_token23] = ACTIONS(1573), - [aux_sym_cmd_identifier_token24] = ACTIONS(1573), - [aux_sym_cmd_identifier_token25] = ACTIONS(1573), - [aux_sym_cmd_identifier_token26] = ACTIONS(1573), - [aux_sym_cmd_identifier_token27] = ACTIONS(1573), - [aux_sym_cmd_identifier_token28] = ACTIONS(1573), - [aux_sym_cmd_identifier_token29] = ACTIONS(1573), - [aux_sym_cmd_identifier_token30] = ACTIONS(1573), - [aux_sym_cmd_identifier_token31] = ACTIONS(1573), - [aux_sym_cmd_identifier_token32] = ACTIONS(1573), - [aux_sym_cmd_identifier_token33] = ACTIONS(1573), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1573), - [aux_sym_cmd_identifier_token36] = ACTIONS(1573), - [aux_sym_cmd_identifier_token37] = ACTIONS(1573), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1573), - [aux_sym_cmd_identifier_token40] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1573), - [aux_sym__val_number_decimal_token3] = ACTIONS(1573), - [aux_sym__val_number_decimal_token4] = ACTIONS(1573), - [aux_sym__val_number_token1] = ACTIONS(1573), - [aux_sym__val_number_token2] = ACTIONS(1573), - [aux_sym__val_number_token3] = ACTIONS(1573), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym__str_single_quotes] = ACTIONS(1573), - [sym__str_back_ticks] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), - [sym__entry_separator] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1575), - }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [aux_sym_cmd_identifier_token37] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), - }, - [348] = { - [sym__expr_parenthesized_immediate] = STATE(7504), - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1707), - [aux_sym_cmd_identifier_token3] = ACTIONS(1707), - [aux_sym_cmd_identifier_token4] = ACTIONS(1707), - [aux_sym_cmd_identifier_token5] = ACTIONS(1707), - [aux_sym_cmd_identifier_token6] = ACTIONS(1707), - [aux_sym_cmd_identifier_token7] = ACTIONS(1707), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1707), - [aux_sym_cmd_identifier_token17] = ACTIONS(1707), - [aux_sym_cmd_identifier_token18] = ACTIONS(1707), - [aux_sym_cmd_identifier_token19] = ACTIONS(1707), - [aux_sym_cmd_identifier_token20] = ACTIONS(1707), - [aux_sym_cmd_identifier_token21] = ACTIONS(1707), - [aux_sym_cmd_identifier_token22] = ACTIONS(1707), - [aux_sym_cmd_identifier_token23] = ACTIONS(1707), - [aux_sym_cmd_identifier_token24] = ACTIONS(1707), - [aux_sym_cmd_identifier_token25] = ACTIONS(1707), - [aux_sym_cmd_identifier_token26] = ACTIONS(1707), - [aux_sym_cmd_identifier_token27] = ACTIONS(1707), - [aux_sym_cmd_identifier_token28] = ACTIONS(1707), - [aux_sym_cmd_identifier_token29] = ACTIONS(1707), - [aux_sym_cmd_identifier_token30] = ACTIONS(1707), - [aux_sym_cmd_identifier_token31] = ACTIONS(1707), - [aux_sym_cmd_identifier_token32] = ACTIONS(1707), - [aux_sym_cmd_identifier_token33] = ACTIONS(1707), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1707), - [aux_sym_cmd_identifier_token36] = ACTIONS(1707), - [aux_sym_cmd_identifier_token37] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [sym__entry_separator] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1719), - }, - [349] = { - [sym__expr_parenthesized_immediate] = STATE(718), - [sym__immediate_decimal] = STATE(582), - [sym_val_variable] = STATE(718), - [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1657), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [aux_sym_cmd_identifier_token37] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_make] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_as] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(1695), - [aux_sym__immediate_decimal_token3] = ACTIONS(1697), - [aux_sym__immediate_decimal_token4] = ACTIONS(1699), - [aux_sym__immediate_decimal_token5] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1659), - }, - [350] = { - [sym__expr_parenthesized_immediate] = STATE(515), - [sym__immediate_decimal] = STATE(516), - [sym_val_variable] = STATE(515), - [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_alias] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_let_DASHenv] = ACTIONS(1593), - [anon_sym_mut] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [aux_sym_cmd_identifier_token1] = ACTIONS(1593), - [aux_sym_cmd_identifier_token2] = ACTIONS(1603), - [aux_sym_cmd_identifier_token3] = ACTIONS(1603), - [aux_sym_cmd_identifier_token4] = ACTIONS(1603), - [aux_sym_cmd_identifier_token5] = ACTIONS(1603), - [aux_sym_cmd_identifier_token6] = ACTIONS(1603), - [aux_sym_cmd_identifier_token7] = ACTIONS(1603), - [aux_sym_cmd_identifier_token8] = ACTIONS(1593), - [aux_sym_cmd_identifier_token9] = ACTIONS(1593), - [aux_sym_cmd_identifier_token10] = ACTIONS(1603), - [aux_sym_cmd_identifier_token11] = ACTIONS(1603), - [aux_sym_cmd_identifier_token12] = ACTIONS(1593), - [aux_sym_cmd_identifier_token13] = ACTIONS(1593), - [aux_sym_cmd_identifier_token14] = ACTIONS(1593), - [aux_sym_cmd_identifier_token15] = ACTIONS(1593), - [aux_sym_cmd_identifier_token16] = ACTIONS(1603), - [aux_sym_cmd_identifier_token17] = ACTIONS(1603), - [aux_sym_cmd_identifier_token18] = ACTIONS(1603), - [aux_sym_cmd_identifier_token19] = ACTIONS(1603), - [aux_sym_cmd_identifier_token20] = ACTIONS(1603), - [aux_sym_cmd_identifier_token21] = ACTIONS(1603), - [aux_sym_cmd_identifier_token22] = ACTIONS(1603), - [aux_sym_cmd_identifier_token23] = ACTIONS(1603), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1603), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1603), - [aux_sym_cmd_identifier_token28] = ACTIONS(1603), - [aux_sym_cmd_identifier_token29] = ACTIONS(1603), - [aux_sym_cmd_identifier_token30] = ACTIONS(1603), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1593), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1603), - [aux_sym_cmd_identifier_token37] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1593), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1593), - [anon_sym_export_DASHenv] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_error] = ACTIONS(1593), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_in2] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_make] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_source] = ACTIONS(1593), - [anon_sym_source_DASHenv] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_hide_DASHenv] = ACTIONS(1593), - [anon_sym_overlay] = ACTIONS(1593), - [anon_sym_as] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), - [anon_sym_DOT] = ACTIONS(1723), - [aux_sym__immediate_decimal_token1] = ACTIONS(1725), - [aux_sym__immediate_decimal_token3] = ACTIONS(1727), - [aux_sym__immediate_decimal_token4] = ACTIONS(1729), - [aux_sym__immediate_decimal_token5] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1593), - [aux_sym__val_number_token5] = ACTIONS(1593), - [aux_sym__val_number_token6] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), - }, - [351] = { - [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [aux_sym_cmd_identifier_token37] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), - }, - [352] = { - [sym_cell_path] = STATE(454), - [sym_path] = STATE(442), - [sym_comment] = STATE(352), - [aux_sym_cell_path_repeat1] = STATE(379), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [aux_sym_cmd_identifier_token37] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1743), - [aux_sym__immediate_decimal_token2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [354] = { - [sym_cell_path] = STATE(479), - [sym_path] = STATE(442), - [sym_comment] = STATE(354), - [aux_sym_cell_path_repeat1] = STATE(379), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [aux_sym_cmd_identifier_token37] = ACTIONS(1747), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1747), - [aux_sym_cmd_identifier_token40] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), - [sym__entry_separator] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1749), - }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [aux_sym_cmd_identifier_token37] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1751), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), - }, - [356] = { - [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1573), - [aux_sym_cmd_identifier_token3] = ACTIONS(1573), - [aux_sym_cmd_identifier_token4] = ACTIONS(1573), - [aux_sym_cmd_identifier_token5] = ACTIONS(1573), - [aux_sym_cmd_identifier_token6] = ACTIONS(1573), - [aux_sym_cmd_identifier_token7] = ACTIONS(1573), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1573), - [aux_sym_cmd_identifier_token11] = ACTIONS(1573), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1573), - [aux_sym_cmd_identifier_token17] = ACTIONS(1573), - [aux_sym_cmd_identifier_token18] = ACTIONS(1573), - [aux_sym_cmd_identifier_token19] = ACTIONS(1573), - [aux_sym_cmd_identifier_token20] = ACTIONS(1573), - [aux_sym_cmd_identifier_token21] = ACTIONS(1573), - [aux_sym_cmd_identifier_token22] = ACTIONS(1573), - [aux_sym_cmd_identifier_token23] = ACTIONS(1573), - [aux_sym_cmd_identifier_token24] = ACTIONS(1573), - [aux_sym_cmd_identifier_token25] = ACTIONS(1573), - [aux_sym_cmd_identifier_token26] = ACTIONS(1573), - [aux_sym_cmd_identifier_token27] = ACTIONS(1573), - [aux_sym_cmd_identifier_token28] = ACTIONS(1573), - [aux_sym_cmd_identifier_token29] = ACTIONS(1573), - [aux_sym_cmd_identifier_token30] = ACTIONS(1573), - [aux_sym_cmd_identifier_token31] = ACTIONS(1573), - [aux_sym_cmd_identifier_token32] = ACTIONS(1573), - [aux_sym_cmd_identifier_token33] = ACTIONS(1573), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1573), - [aux_sym_cmd_identifier_token36] = ACTIONS(1573), - [aux_sym_cmd_identifier_token37] = ACTIONS(1573), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1573), - [aux_sym_cmd_identifier_token40] = ACTIONS(1573), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1573), - [aux_sym__val_number_decimal_token3] = ACTIONS(1573), - [aux_sym__val_number_decimal_token4] = ACTIONS(1573), - [aux_sym__val_number_token1] = ACTIONS(1573), - [aux_sym__val_number_token2] = ACTIONS(1573), - [aux_sym__val_number_token3] = ACTIONS(1573), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym__str_single_quotes] = ACTIONS(1573), - [sym__str_back_ticks] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), - [sym__entry_separator] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [357] = { - [sym__expr_parenthesized_immediate] = STATE(706), - [sym__immediate_decimal] = STATE(707), - [sym_val_variable] = STATE(706), - [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1593), - [anon_sym_alias] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_let_DASHenv] = ACTIONS(1593), - [anon_sym_mut] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [aux_sym_cmd_identifier_token1] = ACTIONS(1593), - [aux_sym_cmd_identifier_token2] = ACTIONS(1603), - [aux_sym_cmd_identifier_token3] = ACTIONS(1603), - [aux_sym_cmd_identifier_token4] = ACTIONS(1603), - [aux_sym_cmd_identifier_token5] = ACTIONS(1603), - [aux_sym_cmd_identifier_token6] = ACTIONS(1603), - [aux_sym_cmd_identifier_token7] = ACTIONS(1603), - [aux_sym_cmd_identifier_token8] = ACTIONS(1593), - [aux_sym_cmd_identifier_token9] = ACTIONS(1593), - [aux_sym_cmd_identifier_token10] = ACTIONS(1603), - [aux_sym_cmd_identifier_token11] = ACTIONS(1603), - [aux_sym_cmd_identifier_token12] = ACTIONS(1593), - [aux_sym_cmd_identifier_token13] = ACTIONS(1593), - [aux_sym_cmd_identifier_token14] = ACTIONS(1593), - [aux_sym_cmd_identifier_token15] = ACTIONS(1593), - [aux_sym_cmd_identifier_token16] = ACTIONS(1603), - [aux_sym_cmd_identifier_token17] = ACTIONS(1603), - [aux_sym_cmd_identifier_token18] = ACTIONS(1603), - [aux_sym_cmd_identifier_token19] = ACTIONS(1603), - [aux_sym_cmd_identifier_token20] = ACTIONS(1603), - [aux_sym_cmd_identifier_token21] = ACTIONS(1603), - [aux_sym_cmd_identifier_token22] = ACTIONS(1603), - [aux_sym_cmd_identifier_token23] = ACTIONS(1603), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1603), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1603), - [aux_sym_cmd_identifier_token28] = ACTIONS(1603), - [aux_sym_cmd_identifier_token29] = ACTIONS(1603), - [aux_sym_cmd_identifier_token30] = ACTIONS(1603), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1593), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1603), - [aux_sym_cmd_identifier_token37] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1593), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1593), - [anon_sym_export_DASHenv] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_module] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1593), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_in2] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_make] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1593), - [anon_sym_catch] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_source] = ACTIONS(1593), - [anon_sym_source_DASHenv] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_hide] = ACTIONS(1593), - [anon_sym_hide_DASHenv] = ACTIONS(1593), - [anon_sym_overlay] = ACTIONS(1593), - [anon_sym_as] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(1753), - [aux_sym__immediate_decimal_token3] = ACTIONS(1755), - [aux_sym__immediate_decimal_token4] = ACTIONS(1757), - [aux_sym__immediate_decimal_token5] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1593), - [aux_sym__val_number_token5] = ACTIONS(1593), - [aux_sym__val_number_token6] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), + [165] = { + [sym_pipeline] = STATE(6369), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [358] = { - [sym_comment] = STATE(358), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1585), - [aux_sym_cmd_identifier_token3] = ACTIONS(1585), - [aux_sym_cmd_identifier_token4] = ACTIONS(1585), - [aux_sym_cmd_identifier_token5] = ACTIONS(1585), - [aux_sym_cmd_identifier_token6] = ACTIONS(1585), - [aux_sym_cmd_identifier_token7] = ACTIONS(1585), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1585), - [aux_sym_cmd_identifier_token11] = ACTIONS(1585), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1585), - [aux_sym_cmd_identifier_token17] = ACTIONS(1585), - [aux_sym_cmd_identifier_token18] = ACTIONS(1585), - [aux_sym_cmd_identifier_token19] = ACTIONS(1585), - [aux_sym_cmd_identifier_token20] = ACTIONS(1585), - [aux_sym_cmd_identifier_token21] = ACTIONS(1585), - [aux_sym_cmd_identifier_token22] = ACTIONS(1585), - [aux_sym_cmd_identifier_token23] = ACTIONS(1585), - [aux_sym_cmd_identifier_token24] = ACTIONS(1585), - [aux_sym_cmd_identifier_token25] = ACTIONS(1585), - [aux_sym_cmd_identifier_token26] = ACTIONS(1585), - [aux_sym_cmd_identifier_token27] = ACTIONS(1585), - [aux_sym_cmd_identifier_token28] = ACTIONS(1585), - [aux_sym_cmd_identifier_token29] = ACTIONS(1585), - [aux_sym_cmd_identifier_token30] = ACTIONS(1585), - [aux_sym_cmd_identifier_token31] = ACTIONS(1585), - [aux_sym_cmd_identifier_token32] = ACTIONS(1585), - [aux_sym_cmd_identifier_token33] = ACTIONS(1585), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1585), - [aux_sym_cmd_identifier_token36] = ACTIONS(1585), - [aux_sym_cmd_identifier_token37] = ACTIONS(1585), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1585), - [aux_sym_cmd_identifier_token40] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1585), - [aux_sym__val_number_decimal_token3] = ACTIONS(1585), - [aux_sym__val_number_decimal_token4] = ACTIONS(1585), - [aux_sym__val_number_token1] = ACTIONS(1585), - [aux_sym__val_number_token2] = ACTIONS(1585), - [aux_sym__val_number_token3] = ACTIONS(1585), - [aux_sym__val_number_token4] = ACTIONS(1585), - [aux_sym__val_number_token5] = ACTIONS(1585), - [aux_sym__val_number_token6] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym__str_single_quotes] = ACTIONS(1585), - [sym__str_back_ticks] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), - [sym__entry_separator] = ACTIONS(1587), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1587), + [166] = { + [sym_pipeline_parenthesized] = STATE(6965), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(166), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [359] = { - [sym_cell_path] = STATE(488), - [sym_path] = STATE(442), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(379), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(961), - [aux_sym_cmd_identifier_token3] = ACTIONS(961), - [aux_sym_cmd_identifier_token4] = ACTIONS(961), - [aux_sym_cmd_identifier_token5] = ACTIONS(961), - [aux_sym_cmd_identifier_token6] = ACTIONS(961), - [aux_sym_cmd_identifier_token7] = ACTIONS(961), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(961), - [aux_sym_cmd_identifier_token11] = ACTIONS(961), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(961), - [aux_sym_cmd_identifier_token17] = ACTIONS(961), - [aux_sym_cmd_identifier_token18] = ACTIONS(961), - [aux_sym_cmd_identifier_token19] = ACTIONS(961), - [aux_sym_cmd_identifier_token20] = ACTIONS(961), - [aux_sym_cmd_identifier_token21] = ACTIONS(961), - [aux_sym_cmd_identifier_token22] = ACTIONS(961), - [aux_sym_cmd_identifier_token23] = ACTIONS(961), - [aux_sym_cmd_identifier_token24] = ACTIONS(961), - [aux_sym_cmd_identifier_token25] = ACTIONS(961), - [aux_sym_cmd_identifier_token26] = ACTIONS(961), - [aux_sym_cmd_identifier_token27] = ACTIONS(961), - [aux_sym_cmd_identifier_token28] = ACTIONS(961), - [aux_sym_cmd_identifier_token29] = ACTIONS(961), - [aux_sym_cmd_identifier_token30] = ACTIONS(961), - [aux_sym_cmd_identifier_token31] = ACTIONS(961), - [aux_sym_cmd_identifier_token32] = ACTIONS(961), - [aux_sym_cmd_identifier_token33] = ACTIONS(961), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(961), - [aux_sym_cmd_identifier_token36] = ACTIONS(961), - [aux_sym_cmd_identifier_token37] = ACTIONS(961), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(961), - [aux_sym_cmd_identifier_token40] = ACTIONS(961), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_decimal_token4] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), - [sym__entry_separator] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(963), + [167] = { + [sym_pipeline] = STATE(6669), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1681), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1681), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1681), - [aux_sym_cmd_identifier_token32] = ACTIONS(1681), - [aux_sym_cmd_identifier_token33] = ACTIONS(1681), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1681), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [aux_sym_cmd_identifier_token37] = ACTIONS(1681), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1681), - [aux_sym_cmd_identifier_token40] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1681), - [aux_sym__val_number_decimal_token3] = ACTIONS(1681), - [aux_sym__val_number_decimal_token4] = ACTIONS(1681), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym__str_single_quotes] = ACTIONS(1681), - [sym__str_back_ticks] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), - [sym__entry_separator] = ACTIONS(1683), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1683), + [168] = { + [sym_pipeline] = STATE(7178), + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1761), - [anon_sym_alias] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_let_DASHenv] = ACTIONS(1761), - [anon_sym_mut] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [aux_sym_cmd_identifier_token1] = ACTIONS(1761), - [aux_sym_cmd_identifier_token2] = ACTIONS(1761), - [aux_sym_cmd_identifier_token3] = ACTIONS(1761), - [aux_sym_cmd_identifier_token4] = ACTIONS(1761), - [aux_sym_cmd_identifier_token5] = ACTIONS(1761), - [aux_sym_cmd_identifier_token6] = ACTIONS(1761), - [aux_sym_cmd_identifier_token7] = ACTIONS(1761), - [aux_sym_cmd_identifier_token8] = ACTIONS(1761), - [aux_sym_cmd_identifier_token9] = ACTIONS(1761), - [aux_sym_cmd_identifier_token10] = ACTIONS(1761), - [aux_sym_cmd_identifier_token11] = ACTIONS(1761), - [aux_sym_cmd_identifier_token12] = ACTIONS(1761), - [aux_sym_cmd_identifier_token13] = ACTIONS(1761), - [aux_sym_cmd_identifier_token14] = ACTIONS(1761), - [aux_sym_cmd_identifier_token15] = ACTIONS(1761), - [aux_sym_cmd_identifier_token16] = ACTIONS(1761), - [aux_sym_cmd_identifier_token17] = ACTIONS(1761), - [aux_sym_cmd_identifier_token18] = ACTIONS(1761), - [aux_sym_cmd_identifier_token19] = ACTIONS(1761), - [aux_sym_cmd_identifier_token20] = ACTIONS(1761), - [aux_sym_cmd_identifier_token21] = ACTIONS(1761), - [aux_sym_cmd_identifier_token22] = ACTIONS(1761), - [aux_sym_cmd_identifier_token23] = ACTIONS(1761), - [aux_sym_cmd_identifier_token24] = ACTIONS(1761), - [aux_sym_cmd_identifier_token25] = ACTIONS(1761), - [aux_sym_cmd_identifier_token26] = ACTIONS(1761), - [aux_sym_cmd_identifier_token27] = ACTIONS(1761), - [aux_sym_cmd_identifier_token28] = ACTIONS(1761), - [aux_sym_cmd_identifier_token29] = ACTIONS(1761), - [aux_sym_cmd_identifier_token30] = ACTIONS(1761), - [aux_sym_cmd_identifier_token31] = ACTIONS(1761), - [aux_sym_cmd_identifier_token32] = ACTIONS(1761), - [aux_sym_cmd_identifier_token33] = ACTIONS(1761), - [aux_sym_cmd_identifier_token34] = ACTIONS(1761), - [aux_sym_cmd_identifier_token35] = ACTIONS(1761), - [aux_sym_cmd_identifier_token36] = ACTIONS(1761), - [aux_sym_cmd_identifier_token37] = ACTIONS(1761), - [aux_sym_cmd_identifier_token38] = ACTIONS(1761), - [aux_sym_cmd_identifier_token39] = ACTIONS(1761), - [aux_sym_cmd_identifier_token40] = ACTIONS(1761), - [anon_sym_def] = ACTIONS(1761), - [anon_sym_export_DASHenv] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_module] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_error] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_make] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_do] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_catch] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_source] = ACTIONS(1761), - [anon_sym_source_DASHenv] = ACTIONS(1761), - [anon_sym_register] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_hide_DASHenv] = ACTIONS(1761), - [anon_sym_overlay] = ACTIONS(1761), - [anon_sym_as] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1761), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1761), - [aux_sym__val_number_decimal_token3] = ACTIONS(1761), - [aux_sym__val_number_decimal_token4] = ACTIONS(1761), - [aux_sym__val_number_token1] = ACTIONS(1761), - [aux_sym__val_number_token2] = ACTIONS(1761), - [aux_sym__val_number_token3] = ACTIONS(1761), - [aux_sym__val_number_token4] = ACTIONS(1761), - [aux_sym__val_number_token5] = ACTIONS(1761), - [aux_sym__val_number_token6] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym__str_single_quotes] = ACTIONS(1761), - [sym__str_back_ticks] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1761), - [sym__entry_separator] = ACTIONS(1763), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1763), + [169] = { + [sym_pipeline] = STATE(6671), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [362] = { - [sym__expr_parenthesized_immediate] = STATE(712), - [sym__immediate_decimal] = STATE(713), - [sym_val_variable] = STATE(712), - [sym_comment] = STATE(362), - [anon_sym_export] = ACTIONS(1663), - [anon_sym_alias] = ACTIONS(1663), - [anon_sym_let] = ACTIONS(1663), - [anon_sym_let_DASHenv] = ACTIONS(1663), - [anon_sym_mut] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [aux_sym_cmd_identifier_token1] = ACTIONS(1663), - [aux_sym_cmd_identifier_token2] = ACTIONS(1671), - [aux_sym_cmd_identifier_token3] = ACTIONS(1671), - [aux_sym_cmd_identifier_token4] = ACTIONS(1671), - [aux_sym_cmd_identifier_token5] = ACTIONS(1671), - [aux_sym_cmd_identifier_token6] = ACTIONS(1671), - [aux_sym_cmd_identifier_token7] = ACTIONS(1671), - [aux_sym_cmd_identifier_token8] = ACTIONS(1663), - [aux_sym_cmd_identifier_token9] = ACTIONS(1663), - [aux_sym_cmd_identifier_token10] = ACTIONS(1671), - [aux_sym_cmd_identifier_token11] = ACTIONS(1671), - [aux_sym_cmd_identifier_token12] = ACTIONS(1663), - [aux_sym_cmd_identifier_token13] = ACTIONS(1663), - [aux_sym_cmd_identifier_token14] = ACTIONS(1663), - [aux_sym_cmd_identifier_token15] = ACTIONS(1663), - [aux_sym_cmd_identifier_token16] = ACTIONS(1671), - [aux_sym_cmd_identifier_token17] = ACTIONS(1671), - [aux_sym_cmd_identifier_token18] = ACTIONS(1671), - [aux_sym_cmd_identifier_token19] = ACTIONS(1671), - [aux_sym_cmd_identifier_token20] = ACTIONS(1671), - [aux_sym_cmd_identifier_token21] = ACTIONS(1671), - [aux_sym_cmd_identifier_token22] = ACTIONS(1671), - [aux_sym_cmd_identifier_token23] = ACTIONS(1671), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1671), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1671), - [aux_sym_cmd_identifier_token28] = ACTIONS(1671), - [aux_sym_cmd_identifier_token29] = ACTIONS(1671), - [aux_sym_cmd_identifier_token30] = ACTIONS(1671), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1663), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1671), - [aux_sym_cmd_identifier_token37] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1663), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1663), - [anon_sym_export_DASHenv] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_module] = ACTIONS(1663), - [anon_sym_use] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_loop] = ACTIONS(1663), - [anon_sym_make] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_catch] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_source] = ACTIONS(1663), - [anon_sym_source_DASHenv] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_hide] = ACTIONS(1663), - [anon_sym_hide_DASHenv] = ACTIONS(1663), - [anon_sym_overlay] = ACTIONS(1663), - [anon_sym_as] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1753), - [aux_sym__immediate_decimal_token3] = ACTIONS(1755), - [aux_sym__immediate_decimal_token4] = ACTIONS(1757), - [aux_sym__immediate_decimal_token5] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1663), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1671), + [170] = { + [sym_pipeline] = STATE(6286), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [363] = { - [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [171] = { + [sym_pipeline] = STATE(6369), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [364] = { - [sym__expr_parenthesized_immediate] = STATE(714), - [sym__immediate_decimal] = STATE(715), - [sym_val_variable] = STATE(714), - [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(1673), - [anon_sym_alias] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_let_DASHenv] = ACTIONS(1673), - [anon_sym_mut] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(1673), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1673), - [aux_sym_cmd_identifier_token9] = ACTIONS(1673), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1673), - [aux_sym_cmd_identifier_token13] = ACTIONS(1673), - [aux_sym_cmd_identifier_token14] = ACTIONS(1673), - [aux_sym_cmd_identifier_token15] = ACTIONS(1673), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1673), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [aux_sym_cmd_identifier_token37] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1673), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_export_DASHenv] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_module] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_make] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_source] = ACTIONS(1673), - [anon_sym_source_DASHenv] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_hide_DASHenv] = ACTIONS(1673), - [anon_sym_overlay] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1753), - [aux_sym__immediate_decimal_token3] = ACTIONS(1755), - [aux_sym__immediate_decimal_token4] = ACTIONS(1757), - [aux_sym__immediate_decimal_token5] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1673), - [aux_sym__val_number_decimal_token3] = ACTIONS(1673), - [aux_sym__val_number_decimal_token4] = ACTIONS(1673), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1673), - [aux_sym__val_number_token5] = ACTIONS(1673), - [aux_sym__val_number_token6] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [172] = { + [sym_pipeline] = STATE(6671), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [365] = { - [sym__expr_parenthesized_immediate] = STATE(716), - [sym__immediate_decimal] = STATE(717), - [sym_val_variable] = STATE(716), - [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1677), - [anon_sym_alias] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_let_DASHenv] = ACTIONS(1677), - [anon_sym_mut] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [aux_sym_cmd_identifier_token1] = ACTIONS(1677), - [aux_sym_cmd_identifier_token2] = ACTIONS(1679), - [aux_sym_cmd_identifier_token3] = ACTIONS(1679), - [aux_sym_cmd_identifier_token4] = ACTIONS(1679), - [aux_sym_cmd_identifier_token5] = ACTIONS(1679), - [aux_sym_cmd_identifier_token6] = ACTIONS(1679), - [aux_sym_cmd_identifier_token7] = ACTIONS(1679), - [aux_sym_cmd_identifier_token8] = ACTIONS(1677), - [aux_sym_cmd_identifier_token9] = ACTIONS(1677), - [aux_sym_cmd_identifier_token10] = ACTIONS(1679), - [aux_sym_cmd_identifier_token11] = ACTIONS(1679), - [aux_sym_cmd_identifier_token12] = ACTIONS(1677), - [aux_sym_cmd_identifier_token13] = ACTIONS(1677), - [aux_sym_cmd_identifier_token14] = ACTIONS(1677), - [aux_sym_cmd_identifier_token15] = ACTIONS(1677), - [aux_sym_cmd_identifier_token16] = ACTIONS(1679), - [aux_sym_cmd_identifier_token17] = ACTIONS(1679), - [aux_sym_cmd_identifier_token18] = ACTIONS(1679), - [aux_sym_cmd_identifier_token19] = ACTIONS(1679), - [aux_sym_cmd_identifier_token20] = ACTIONS(1679), - [aux_sym_cmd_identifier_token21] = ACTIONS(1679), - [aux_sym_cmd_identifier_token22] = ACTIONS(1679), - [aux_sym_cmd_identifier_token23] = ACTIONS(1679), - [aux_sym_cmd_identifier_token24] = ACTIONS(1679), - [aux_sym_cmd_identifier_token25] = ACTIONS(1679), - [aux_sym_cmd_identifier_token26] = ACTIONS(1679), - [aux_sym_cmd_identifier_token27] = ACTIONS(1679), - [aux_sym_cmd_identifier_token28] = ACTIONS(1679), - [aux_sym_cmd_identifier_token29] = ACTIONS(1679), - [aux_sym_cmd_identifier_token30] = ACTIONS(1679), - [aux_sym_cmd_identifier_token31] = ACTIONS(1679), - [aux_sym_cmd_identifier_token32] = ACTIONS(1679), - [aux_sym_cmd_identifier_token33] = ACTIONS(1679), - [aux_sym_cmd_identifier_token34] = ACTIONS(1677), - [aux_sym_cmd_identifier_token35] = ACTIONS(1679), - [aux_sym_cmd_identifier_token36] = ACTIONS(1679), - [aux_sym_cmd_identifier_token37] = ACTIONS(1679), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1679), - [aux_sym_cmd_identifier_token40] = ACTIONS(1679), - [anon_sym_def] = ACTIONS(1677), - [anon_sym_export_DASHenv] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_module] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_make] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_source] = ACTIONS(1677), - [anon_sym_source_DASHenv] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_hide_DASHenv] = ACTIONS(1677), - [anon_sym_overlay] = ACTIONS(1677), - [anon_sym_as] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1679), - [aux_sym__immediate_decimal_token1] = ACTIONS(1753), - [aux_sym__immediate_decimal_token3] = ACTIONS(1755), - [aux_sym__immediate_decimal_token4] = ACTIONS(1757), - [aux_sym__immediate_decimal_token5] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1679), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1679), - [aux_sym__val_number_token2] = ACTIONS(1679), - [aux_sym__val_number_token3] = ACTIONS(1679), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym__str_single_quotes] = ACTIONS(1679), - [sym__str_back_ticks] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1679), + [173] = { + [sym_pipeline] = STATE(7189), + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [366] = { - [sym__expr_parenthesized_immediate] = STATE(7536), - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(1777), - [sym_duration_unit] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [174] = { + [sym_pipeline_parenthesized] = STATE(6965), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1683), - [aux_sym_cmd_identifier_token3] = ACTIONS(1683), - [aux_sym_cmd_identifier_token4] = ACTIONS(1683), - [aux_sym_cmd_identifier_token5] = ACTIONS(1683), - [aux_sym_cmd_identifier_token6] = ACTIONS(1683), - [aux_sym_cmd_identifier_token7] = ACTIONS(1683), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1683), - [aux_sym_cmd_identifier_token11] = ACTIONS(1683), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1683), - [aux_sym_cmd_identifier_token17] = ACTIONS(1683), - [aux_sym_cmd_identifier_token18] = ACTIONS(1683), - [aux_sym_cmd_identifier_token19] = ACTIONS(1683), - [aux_sym_cmd_identifier_token20] = ACTIONS(1683), - [aux_sym_cmd_identifier_token21] = ACTIONS(1683), - [aux_sym_cmd_identifier_token22] = ACTIONS(1683), - [aux_sym_cmd_identifier_token23] = ACTIONS(1683), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1683), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1683), - [aux_sym_cmd_identifier_token28] = ACTIONS(1683), - [aux_sym_cmd_identifier_token29] = ACTIONS(1683), - [aux_sym_cmd_identifier_token30] = ACTIONS(1683), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1683), - [aux_sym_cmd_identifier_token37] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1683), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [175] = { + [sym_pipeline_parenthesized] = STATE(7443), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [aux_sym_cmd_identifier_token37] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_make] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_else] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_catch] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_as] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [176] = { + [sym_pipeline] = STATE(7040), + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4728), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [369] = { - [sym_cell_path] = STATE(557), - [sym_path] = STATE(497), - [sym_comment] = STATE(369), - [aux_sym_cell_path_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1749), - [aux_sym_cmd_identifier_token3] = ACTIONS(1749), - [aux_sym_cmd_identifier_token4] = ACTIONS(1749), - [aux_sym_cmd_identifier_token5] = ACTIONS(1749), - [aux_sym_cmd_identifier_token6] = ACTIONS(1749), - [aux_sym_cmd_identifier_token7] = ACTIONS(1749), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1749), - [aux_sym_cmd_identifier_token11] = ACTIONS(1749), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1749), - [aux_sym_cmd_identifier_token17] = ACTIONS(1749), - [aux_sym_cmd_identifier_token18] = ACTIONS(1749), - [aux_sym_cmd_identifier_token19] = ACTIONS(1749), - [aux_sym_cmd_identifier_token20] = ACTIONS(1749), - [aux_sym_cmd_identifier_token21] = ACTIONS(1749), - [aux_sym_cmd_identifier_token22] = ACTIONS(1749), - [aux_sym_cmd_identifier_token23] = ACTIONS(1749), - [aux_sym_cmd_identifier_token24] = ACTIONS(1749), - [aux_sym_cmd_identifier_token25] = ACTIONS(1749), - [aux_sym_cmd_identifier_token26] = ACTIONS(1749), - [aux_sym_cmd_identifier_token27] = ACTIONS(1749), - [aux_sym_cmd_identifier_token28] = ACTIONS(1749), - [aux_sym_cmd_identifier_token29] = ACTIONS(1749), - [aux_sym_cmd_identifier_token30] = ACTIONS(1749), - [aux_sym_cmd_identifier_token31] = ACTIONS(1749), - [aux_sym_cmd_identifier_token32] = ACTIONS(1749), - [aux_sym_cmd_identifier_token33] = ACTIONS(1749), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1749), - [aux_sym_cmd_identifier_token36] = ACTIONS(1749), - [aux_sym_cmd_identifier_token37] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1749), + [177] = { + [sym_pipeline_parenthesized] = STATE(7165), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [178] = { + [sym_pipeline] = STATE(6285), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [371] = { - [sym_cell_path] = STATE(561), - [sym_path] = STATE(497), - [sym_comment] = STATE(371), - [aux_sym_cell_path_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1737), - [aux_sym_cmd_identifier_token3] = ACTIONS(1737), - [aux_sym_cmd_identifier_token4] = ACTIONS(1737), - [aux_sym_cmd_identifier_token5] = ACTIONS(1737), - [aux_sym_cmd_identifier_token6] = ACTIONS(1737), - [aux_sym_cmd_identifier_token7] = ACTIONS(1737), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1737), - [aux_sym_cmd_identifier_token11] = ACTIONS(1737), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1737), - [aux_sym_cmd_identifier_token17] = ACTIONS(1737), - [aux_sym_cmd_identifier_token18] = ACTIONS(1737), - [aux_sym_cmd_identifier_token19] = ACTIONS(1737), - [aux_sym_cmd_identifier_token20] = ACTIONS(1737), - [aux_sym_cmd_identifier_token21] = ACTIONS(1737), - [aux_sym_cmd_identifier_token22] = ACTIONS(1737), - [aux_sym_cmd_identifier_token23] = ACTIONS(1737), - [aux_sym_cmd_identifier_token24] = ACTIONS(1737), - [aux_sym_cmd_identifier_token25] = ACTIONS(1737), - [aux_sym_cmd_identifier_token26] = ACTIONS(1737), - [aux_sym_cmd_identifier_token27] = ACTIONS(1737), - [aux_sym_cmd_identifier_token28] = ACTIONS(1737), - [aux_sym_cmd_identifier_token29] = ACTIONS(1737), - [aux_sym_cmd_identifier_token30] = ACTIONS(1737), - [aux_sym_cmd_identifier_token31] = ACTIONS(1737), - [aux_sym_cmd_identifier_token32] = ACTIONS(1737), - [aux_sym_cmd_identifier_token33] = ACTIONS(1737), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1737), - [aux_sym_cmd_identifier_token36] = ACTIONS(1737), - [aux_sym_cmd_identifier_token37] = ACTIONS(1737), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), + [179] = { + [sym_pipeline_parenthesized] = STATE(7442), + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4761), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [372] = { - [sym_comment] = STATE(372), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [aux_sym_cmd_identifier_token37] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1585), - [aux_sym__val_number_token5] = ACTIONS(1585), - [aux_sym__val_number_token6] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [180] = { + [sym_pipeline] = STATE(6285), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1789), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [181] = { + [sym_pipeline] = STATE(6285), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4559), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [374] = { - [sym_comment] = STATE(374), - [anon_sym_export] = ACTIONS(1761), - [anon_sym_alias] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_let_DASHenv] = ACTIONS(1761), - [anon_sym_mut] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [aux_sym_cmd_identifier_token1] = ACTIONS(1761), - [aux_sym_cmd_identifier_token2] = ACTIONS(1763), - [aux_sym_cmd_identifier_token3] = ACTIONS(1763), - [aux_sym_cmd_identifier_token4] = ACTIONS(1763), - [aux_sym_cmd_identifier_token5] = ACTIONS(1763), - [aux_sym_cmd_identifier_token6] = ACTIONS(1763), - [aux_sym_cmd_identifier_token7] = ACTIONS(1763), - [aux_sym_cmd_identifier_token8] = ACTIONS(1761), - [aux_sym_cmd_identifier_token9] = ACTIONS(1761), - [aux_sym_cmd_identifier_token10] = ACTIONS(1763), - [aux_sym_cmd_identifier_token11] = ACTIONS(1763), - [aux_sym_cmd_identifier_token12] = ACTIONS(1761), - [aux_sym_cmd_identifier_token13] = ACTIONS(1761), - [aux_sym_cmd_identifier_token14] = ACTIONS(1761), - [aux_sym_cmd_identifier_token15] = ACTIONS(1761), - [aux_sym_cmd_identifier_token16] = ACTIONS(1763), - [aux_sym_cmd_identifier_token17] = ACTIONS(1763), - [aux_sym_cmd_identifier_token18] = ACTIONS(1763), - [aux_sym_cmd_identifier_token19] = ACTIONS(1763), - [aux_sym_cmd_identifier_token20] = ACTIONS(1763), - [aux_sym_cmd_identifier_token21] = ACTIONS(1763), - [aux_sym_cmd_identifier_token22] = ACTIONS(1763), - [aux_sym_cmd_identifier_token23] = ACTIONS(1763), - [aux_sym_cmd_identifier_token24] = ACTIONS(1763), - [aux_sym_cmd_identifier_token25] = ACTIONS(1763), - [aux_sym_cmd_identifier_token26] = ACTIONS(1763), - [aux_sym_cmd_identifier_token27] = ACTIONS(1763), - [aux_sym_cmd_identifier_token28] = ACTIONS(1763), - [aux_sym_cmd_identifier_token29] = ACTIONS(1763), - [aux_sym_cmd_identifier_token30] = ACTIONS(1763), - [aux_sym_cmd_identifier_token31] = ACTIONS(1763), - [aux_sym_cmd_identifier_token32] = ACTIONS(1763), - [aux_sym_cmd_identifier_token33] = ACTIONS(1763), - [aux_sym_cmd_identifier_token34] = ACTIONS(1761), - [aux_sym_cmd_identifier_token35] = ACTIONS(1763), - [aux_sym_cmd_identifier_token36] = ACTIONS(1763), - [aux_sym_cmd_identifier_token37] = ACTIONS(1763), - [aux_sym_cmd_identifier_token38] = ACTIONS(1761), - [aux_sym_cmd_identifier_token39] = ACTIONS(1763), - [aux_sym_cmd_identifier_token40] = ACTIONS(1763), - [anon_sym_def] = ACTIONS(1761), - [anon_sym_export_DASHenv] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_module] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_error] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_make] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_do] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_catch] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_source] = ACTIONS(1761), - [anon_sym_source_DASHenv] = ACTIONS(1761), - [anon_sym_register] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_hide_DASHenv] = ACTIONS(1761), - [anon_sym_overlay] = ACTIONS(1761), - [anon_sym_as] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1761), - [aux_sym__val_number_token5] = ACTIONS(1761), - [aux_sym__val_number_token6] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1763), + [182] = { + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4742), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(293), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(469), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [375] = { - [sym_path] = STATE(442), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [sym__entry_separator] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(973), + [183] = { + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(5133), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(860), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(295), + [aux_sym_cmd_identifier_token1] = ACTIONS(1003), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1003), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1003), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1003), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1003), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1003), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1003), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [aux_sym_cmd_identifier_token37] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1003), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_where] = ACTIONS(1048), + [aux_sym_expr_unary_token1] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1063), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1069), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1075), + [aux_sym__val_number_token2] = ACTIONS(1075), + [aux_sym__val_number_token3] = ACTIONS(1075), + [aux_sym__val_number_token4] = ACTIONS(1078), + [aux_sym__val_number_token5] = ACTIONS(1078), + [aux_sym__val_number_token6] = ACTIONS(1078), + [anon_sym_0b] = ACTIONS(1081), + [anon_sym_0o] = ACTIONS(1084), + [anon_sym_0x] = ACTIONS(1084), + [sym_val_date] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym__str_single_quotes] = ACTIONS(1093), + [sym__str_back_ticks] = ACTIONS(1093), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1096), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1099), + [aux_sym_env_var_token1] = ACTIONS(1102), + [anon_sym_CARET] = ACTIONS(1105), + [anon_sym_ansigradient] = ACTIONS(1108), + [anon_sym_ansilink] = ACTIONS(1108), + [anon_sym_ansistrip] = ACTIONS(1108), + [anon_sym_bitsand] = ACTIONS(1108), + [anon_sym_bitsnot] = ACTIONS(1108), + [anon_sym_bitsor] = ACTIONS(1108), + [anon_sym_bitsrol] = ACTIONS(1108), + [anon_sym_bitsror] = ACTIONS(1108), + [anon_sym_bitsshl] = ACTIONS(1108), + [anon_sym_bitsshr] = ACTIONS(1108), + [anon_sym_bitsxor] = ACTIONS(1108), + [anon_sym_bytesadd] = ACTIONS(1108), + [anon_sym_bytesat] = ACTIONS(1108), + [anon_sym_bytesbuild] = ACTIONS(1108), + [anon_sym_bytescollect] = ACTIONS(1108), + [anon_sym_bytesends_DASHwith] = ACTIONS(1108), + [anon_sym_bytesindex_DASHof] = ACTIONS(1108), + [anon_sym_byteslength] = ACTIONS(1108), + [anon_sym_bytesremove] = ACTIONS(1108), + [anon_sym_bytesreplace] = ACTIONS(1108), + [anon_sym_bytesreverse] = ACTIONS(1108), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1108), + [anon_sym_commandlineedit] = ACTIONS(1108), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1108), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1108), + [anon_sym_configenv] = ACTIONS(1108), + [anon_sym_confignu] = ACTIONS(1108), + [anon_sym_configreset] = ACTIONS(1108), + [anon_sym_dateformat] = ACTIONS(1108), + [anon_sym_datehumanize] = ACTIONS(1108), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1108), + [anon_sym_datenow] = ACTIONS(1108), + [anon_sym_dateto_DASHrecord] = ACTIONS(1108), + [anon_sym_dateto_DASHtable] = ACTIONS(1108), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1108), + [anon_sym_debuginfo] = ACTIONS(1108), + [anon_sym_debugprofile] = ACTIONS(1108), + [anon_sym_decodebase32] = ACTIONS(1111), + [anon_sym_decodebase32hex] = ACTIONS(1108), + [anon_sym_decodebase64] = ACTIONS(1108), + [anon_sym_decodehex] = ACTIONS(1108), + [anon_sym_detectcolumns] = ACTIONS(1108), + [anon_sym_dropcolumn] = ACTIONS(1108), + [anon_sym_dropnth] = ACTIONS(1108), + [anon_sym_dtadd] = ACTIONS(1108), + [anon_sym_dtdiff] = ACTIONS(1108), + [anon_sym_dtformat] = ACTIONS(1108), + [anon_sym_dtnow] = ACTIONS(1108), + [anon_sym_dtpart] = ACTIONS(1108), + [anon_sym_dtto] = ACTIONS(1108), + [anon_sym_dtutcnow] = ACTIONS(1108), + [anon_sym_eachwhile] = ACTIONS(1108), + [anon_sym_encodebase32] = ACTIONS(1111), + [anon_sym_encodebase32hex] = ACTIONS(1108), + [anon_sym_encodebase64] = ACTIONS(1108), + [anon_sym_encodehex] = ACTIONS(1108), + [anon_sym_errormake] = ACTIONS(1108), + [anon_sym_exploreir] = ACTIONS(1108), + [anon_sym_formatdate] = ACTIONS(1108), + [anon_sym_formatduration] = ACTIONS(1108), + [anon_sym_formatfilesize] = ACTIONS(1108), + [anon_sym_formatpattern] = ACTIONS(1108), + [anon_sym_frombz2] = ACTIONS(1108), + [anon_sym_fromcsv] = ACTIONS(1108), + [anon_sym_fromeml] = ACTIONS(1108), + [anon_sym_fromgz] = ACTIONS(1108), + [anon_sym_fromics] = ACTIONS(1108), + [anon_sym_fromini] = ACTIONS(1108), + [anon_sym_fromjson] = ACTIONS(1108), + [anon_sym_frommsgpack] = ACTIONS(1111), + [anon_sym_frommsgpackz] = ACTIONS(1108), + [anon_sym_fromnuon] = ACTIONS(1108), + [anon_sym_fromods] = ACTIONS(1108), + [anon_sym_fromparquet] = ACTIONS(1108), + [anon_sym_fromplist] = ACTIONS(1108), + [anon_sym_frompng] = ACTIONS(1108), + [anon_sym_fromssv] = ACTIONS(1108), + [anon_sym_fromtoml] = ACTIONS(1108), + [anon_sym_fromtsv] = ACTIONS(1108), + [anon_sym_fromurl] = ACTIONS(1108), + [anon_sym_fromvcf] = ACTIONS(1108), + [anon_sym_fromxlsx] = ACTIONS(1108), + [anon_sym_fromxml] = ACTIONS(1108), + [anon_sym_fromxz] = ACTIONS(1108), + [anon_sym_fromyaml] = ACTIONS(1108), + [anon_sym_fromyml] = ACTIONS(1108), + [anon_sym_fromzst] = ACTIONS(1108), + [anon_sym_hashmd5] = ACTIONS(1108), + [anon_sym_hashsha256] = ACTIONS(1108), + [anon_sym_helpaliases] = ACTIONS(1108), + [anon_sym_helpcommands] = ACTIONS(1108), + [anon_sym_helpescapes] = ACTIONS(1108), + [anon_sym_helpexterns] = ACTIONS(1108), + [anon_sym_helpmodules] = ACTIONS(1108), + [anon_sym_helpoperators] = ACTIONS(1108), + [anon_sym_historyimport] = ACTIONS(1108), + [anon_sym_historysession] = ACTIONS(1108), + [anon_sym_httpdelete] = ACTIONS(1108), + [anon_sym_httpget] = ACTIONS(1108), + [anon_sym_httphead] = ACTIONS(1108), + [anon_sym_httpoptions] = ACTIONS(1108), + [anon_sym_httppatch] = ACTIONS(1108), + [anon_sym_httppost] = ACTIONS(1108), + [anon_sym_httpput] = ACTIONS(1108), + [anon_sym_inputlist] = ACTIONS(1111), + [anon_sym_inputlisten] = ACTIONS(1108), + [anon_sym_intobinary] = ACTIONS(1108), + [anon_sym_intobits] = ACTIONS(1108), + [anon_sym_intobool] = ACTIONS(1108), + [anon_sym_intocell_DASHpath] = ACTIONS(1108), + [anon_sym_intodatetime] = ACTIONS(1108), + [anon_sym_intoduration] = ACTIONS(1108), + [anon_sym_intofilesize] = ACTIONS(1108), + [anon_sym_intofloat] = ACTIONS(1108), + [anon_sym_intoglob] = ACTIONS(1108), + [anon_sym_intoint] = ACTIONS(1108), + [anon_sym_intorecord] = ACTIONS(1108), + [anon_sym_intosqlite] = ACTIONS(1108), + [anon_sym_intostring] = ACTIONS(1108), + [anon_sym_intovalue] = ACTIONS(1108), + [anon_sym_jsonpath] = ACTIONS(1108), + [anon_sym_keybindingsdefault] = ACTIONS(1108), + [anon_sym_keybindingslist] = ACTIONS(1111), + [anon_sym_keybindingslisten] = ACTIONS(1108), + [anon_sym_mathabs] = ACTIONS(1108), + [anon_sym_matharccos] = ACTIONS(1111), + [anon_sym_matharccosh] = ACTIONS(1108), + [anon_sym_matharcsin] = ACTIONS(1111), + [anon_sym_matharcsinh] = ACTIONS(1108), + [anon_sym_matharctan] = ACTIONS(1111), + [anon_sym_matharctanh] = ACTIONS(1108), + [anon_sym_mathavg] = ACTIONS(1108), + [anon_sym_mathceil] = ACTIONS(1108), + [anon_sym_mathcos] = ACTIONS(1111), + [anon_sym_mathcosh] = ACTIONS(1108), + [anon_sym_mathexp] = ACTIONS(1108), + [anon_sym_mathfloor] = ACTIONS(1108), + [anon_sym_mathln] = ACTIONS(1108), + [anon_sym_mathlog] = ACTIONS(1108), + [anon_sym_mathmax] = ACTIONS(1108), + [anon_sym_mathmedian] = ACTIONS(1108), + [anon_sym_mathmin] = ACTIONS(1108), + [anon_sym_mathmode] = ACTIONS(1108), + [anon_sym_mathproduct] = ACTIONS(1108), + [anon_sym_mathround] = ACTIONS(1108), + [anon_sym_mathsin] = ACTIONS(1111), + [anon_sym_mathsinh] = ACTIONS(1108), + [anon_sym_mathsqrt] = ACTIONS(1108), + [anon_sym_mathstddev] = ACTIONS(1108), + [anon_sym_mathsum] = ACTIONS(1108), + [anon_sym_mathtan] = ACTIONS(1111), + [anon_sym_mathtanh] = ACTIONS(1108), + [anon_sym_mathvariance] = ACTIONS(1108), + [anon_sym_metadataaccess] = ACTIONS(1108), + [anon_sym_metadataset] = ACTIONS(1108), + [anon_sym_pathbasename] = ACTIONS(1108), + [anon_sym_pathdirname] = ACTIONS(1108), + [anon_sym_pathexists] = ACTIONS(1108), + [anon_sym_pathexpand] = ACTIONS(1108), + [anon_sym_pathjoin] = ACTIONS(1108), + [anon_sym_pathparse] = ACTIONS(1108), + [anon_sym_pathrelative_DASHto] = ACTIONS(1108), + [anon_sym_pathsplit] = ACTIONS(1108), + [anon_sym_pathtype] = ACTIONS(1108), + [anon_sym_pluginadd] = ACTIONS(1108), + [anon_sym_pluginlist] = ACTIONS(1108), + [anon_sym_pluginrm] = ACTIONS(1108), + [anon_sym_pluginstop] = ACTIONS(1108), + [anon_sym_polarsagg] = ACTIONS(1111), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1108), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1108), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1108), + [anon_sym_polarsappend] = ACTIONS(1108), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1108), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1108), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1108), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1108), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1108), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1108), + [anon_sym_polarsas] = ACTIONS(1111), + [anon_sym_polarsas_DASHdate] = ACTIONS(1111), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1108), + [anon_sym_polarscache] = ACTIONS(1108), + [anon_sym_polarscast] = ACTIONS(1108), + [anon_sym_polarscol] = ACTIONS(1111), + [anon_sym_polarscollect] = ACTIONS(1108), + [anon_sym_polarscolumns] = ACTIONS(1108), + [anon_sym_polarsconcat] = ACTIONS(1111), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1108), + [anon_sym_polarscontains] = ACTIONS(1108), + [anon_sym_polarscount] = ACTIONS(1111), + [anon_sym_polarscount_DASHnull] = ACTIONS(1108), + [anon_sym_polarscumulative] = ACTIONS(1108), + [anon_sym_polarsdatepart] = ACTIONS(1108), + [anon_sym_polarsdecimal] = ACTIONS(1108), + [anon_sym_polarsdrop] = ACTIONS(1111), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1108), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1108), + [anon_sym_polarsdummies] = ACTIONS(1108), + [anon_sym_polarsexplode] = ACTIONS(1108), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1108), + [anon_sym_polarsfetch] = ACTIONS(1108), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1108), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1108), + [anon_sym_polarsfilter] = ACTIONS(1111), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1108), + [anon_sym_polarsfirst] = ACTIONS(1108), + [anon_sym_polarsflatten] = ACTIONS(1108), + [anon_sym_polarsget] = ACTIONS(1111), + [anon_sym_polarsget_DASHday] = ACTIONS(1108), + [anon_sym_polarsget_DASHhour] = ACTIONS(1108), + [anon_sym_polarsget_DASHminute] = ACTIONS(1108), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1108), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1108), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1108), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1108), + [anon_sym_polarsget_DASHweek] = ACTIONS(1111), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1108), + [anon_sym_polarsget_DASHyear] = ACTIONS(1108), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1108), + [anon_sym_polarsimplode] = ACTIONS(1108), + [anon_sym_polarsinteger] = ACTIONS(1108), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1108), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1108), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1108), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1108), + [anon_sym_polarsis_DASHin] = ACTIONS(1108), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1108), + [anon_sym_polarsis_DASHnull] = ACTIONS(1108), + [anon_sym_polarsis_DASHunique] = ACTIONS(1108), + [anon_sym_polarsjoin] = ACTIONS(1108), + [anon_sym_polarslast] = ACTIONS(1108), + [anon_sym_polarslen] = ACTIONS(1108), + [anon_sym_polarslit] = ACTIONS(1108), + [anon_sym_polarslowercase] = ACTIONS(1108), + [anon_sym_polarsmax] = ACTIONS(1108), + [anon_sym_polarsmean] = ACTIONS(1108), + [anon_sym_polarsmedian] = ACTIONS(1108), + [anon_sym_polarsmin] = ACTIONS(1108), + [anon_sym_polarsn_DASHunique] = ACTIONS(1108), + [anon_sym_polarsnot] = ACTIONS(1108), + [anon_sym_polarsopen] = ACTIONS(1108), + [anon_sym_polarsotherwise] = ACTIONS(1108), + [anon_sym_polarspivot] = ACTIONS(1108), + [anon_sym_polarsprofile] = ACTIONS(1108), + [anon_sym_polarsquantile] = ACTIONS(1108), + [anon_sym_polarsquery] = ACTIONS(1108), + [anon_sym_polarsrename] = ACTIONS(1108), + [anon_sym_polarsreplace] = ACTIONS(1111), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1108), + [anon_sym_polarsreverse] = ACTIONS(1108), + [anon_sym_polarsrolling] = ACTIONS(1108), + [anon_sym_polarssample] = ACTIONS(1108), + [anon_sym_polarssave] = ACTIONS(1108), + [anon_sym_polarsschema] = ACTIONS(1108), + [anon_sym_polarsselect] = ACTIONS(1108), + [anon_sym_polarsset] = ACTIONS(1111), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1108), + [anon_sym_polarsshape] = ACTIONS(1108), + [anon_sym_polarsshift] = ACTIONS(1108), + [anon_sym_polarsslice] = ACTIONS(1108), + [anon_sym_polarssort_DASHby] = ACTIONS(1108), + [anon_sym_polarsstd] = ACTIONS(1108), + [anon_sym_polarsstore_DASHget] = ACTIONS(1108), + [anon_sym_polarsstore_DASHls] = ACTIONS(1108), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1108), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1108), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1108), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1108), + [anon_sym_polarsstrftime] = ACTIONS(1108), + [anon_sym_polarssum] = ACTIONS(1111), + [anon_sym_polarssummary] = ACTIONS(1108), + [anon_sym_polarstake] = ACTIONS(1108), + [anon_sym_polarsunique] = ACTIONS(1108), + [anon_sym_polarsunnest] = ACTIONS(1108), + [anon_sym_polarsunpivot] = ACTIONS(1108), + [anon_sym_polarsuppercase] = ACTIONS(1108), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1108), + [anon_sym_polarsvar] = ACTIONS(1108), + [anon_sym_polarswhen] = ACTIONS(1108), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1108), + [anon_sym_querydb] = ACTIONS(1108), + [anon_sym_querygit] = ACTIONS(1108), + [anon_sym_queryjson] = ACTIONS(1108), + [anon_sym_queryweb] = ACTIONS(1111), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1108), + [anon_sym_queryxml] = ACTIONS(1108), + [anon_sym_randombinary] = ACTIONS(1108), + [anon_sym_randombool] = ACTIONS(1108), + [anon_sym_randomchars] = ACTIONS(1108), + [anon_sym_randomdice] = ACTIONS(1108), + [anon_sym_randomfloat] = ACTIONS(1108), + [anon_sym_randomint] = ACTIONS(1108), + [anon_sym_randomuuid] = ACTIONS(1108), + [anon_sym_rolldown] = ACTIONS(1108), + [anon_sym_rollleft] = ACTIONS(1108), + [anon_sym_rollright] = ACTIONS(1108), + [anon_sym_rollup] = ACTIONS(1108), + [anon_sym_scopealiases] = ACTIONS(1108), + [anon_sym_scopecommands] = ACTIONS(1108), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1108), + [anon_sym_scopeexterns] = ACTIONS(1108), + [anon_sym_scopemodules] = ACTIONS(1108), + [anon_sym_scopevariables] = ACTIONS(1108), + [anon_sym_seqchar] = ACTIONS(1108), + [anon_sym_seqdate] = ACTIONS(1108), + [anon_sym_skipuntil] = ACTIONS(1108), + [anon_sym_skipwhile] = ACTIONS(1108), + [anon_sym_splitcell_DASHpath] = ACTIONS(1108), + [anon_sym_splitchars] = ACTIONS(1108), + [anon_sym_splitcolumn] = ACTIONS(1108), + [anon_sym_splitlist] = ACTIONS(1108), + [anon_sym_splitrow] = ACTIONS(1108), + [anon_sym_splitwords] = ACTIONS(1108), + [anon_sym_storcreate] = ACTIONS(1108), + [anon_sym_stordelete] = ACTIONS(1108), + [anon_sym_storexport] = ACTIONS(1108), + [anon_sym_storimport] = ACTIONS(1108), + [anon_sym_storinsert] = ACTIONS(1108), + [anon_sym_storopen] = ACTIONS(1108), + [anon_sym_storreset] = ACTIONS(1108), + [anon_sym_storupdate] = ACTIONS(1108), + [anon_sym_strbexpand] = ACTIONS(1108), + [anon_sym_strcamel_DASHcase] = ACTIONS(1108), + [anon_sym_strcapitalize] = ACTIONS(1108), + [anon_sym_strcompress] = ACTIONS(1108), + [anon_sym_strcontains] = ACTIONS(1108), + [anon_sym_strdecompress] = ACTIONS(1108), + [anon_sym_strdedent] = ACTIONS(1108), + [anon_sym_strdeunicode] = ACTIONS(1108), + [anon_sym_strdistance] = ACTIONS(1108), + [anon_sym_strdowncase] = ACTIONS(1108), + [anon_sym_strends_DASHwith] = ACTIONS(1108), + [anon_sym_strexpand] = ACTIONS(1108), + [anon_sym_strindent] = ACTIONS(1108), + [anon_sym_strindex_DASHof] = ACTIONS(1108), + [anon_sym_strjoin] = ACTIONS(1108), + [anon_sym_strkebab_DASHcase] = ACTIONS(1108), + [anon_sym_strlength] = ACTIONS(1108), + [anon_sym_strpascal_DASHcase] = ACTIONS(1108), + [anon_sym_strreplace] = ACTIONS(1108), + [anon_sym_strreverse] = ACTIONS(1108), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1108), + [anon_sym_strsimilarity] = ACTIONS(1108), + [anon_sym_strsnake_DASHcase] = ACTIONS(1108), + [anon_sym_strstarts_DASHwith] = ACTIONS(1108), + [anon_sym_strstats] = ACTIONS(1108), + [anon_sym_strsubstring] = ACTIONS(1108), + [anon_sym_strtitle_DASHcase] = ACTIONS(1108), + [anon_sym_strtrim] = ACTIONS(1108), + [anon_sym_strupcase] = ACTIONS(1108), + [anon_sym_strwrap] = ACTIONS(1108), + [anon_sym_syscpu] = ACTIONS(1108), + [anon_sym_sysdisks] = ACTIONS(1108), + [anon_sym_syshost] = ACTIONS(1108), + [anon_sym_sysmem] = ACTIONS(1108), + [anon_sym_sysnet] = ACTIONS(1108), + [anon_sym_systemp] = ACTIONS(1108), + [anon_sym_sysusers] = ACTIONS(1108), + [anon_sym_takeuntil] = ACTIONS(1108), + [anon_sym_takewhile] = ACTIONS(1108), + [anon_sym_termquery] = ACTIONS(1108), + [anon_sym_termsize] = ACTIONS(1108), + [anon_sym_tobz2] = ACTIONS(1108), + [anon_sym_tocsv] = ACTIONS(1108), + [anon_sym_togz] = ACTIONS(1108), + [anon_sym_tohtml] = ACTIONS(1108), + [anon_sym_tojson] = ACTIONS(1108), + [anon_sym_tomd] = ACTIONS(1108), + [anon_sym_tomsgpack] = ACTIONS(1111), + [anon_sym_tomsgpackz] = ACTIONS(1108), + [anon_sym_tonuon] = ACTIONS(1108), + [anon_sym_toparquet] = ACTIONS(1108), + [anon_sym_toplist] = ACTIONS(1108), + [anon_sym_topng] = ACTIONS(1108), + [anon_sym_totext] = ACTIONS(1108), + [anon_sym_totoml] = ACTIONS(1108), + [anon_sym_totsv] = ACTIONS(1108), + [anon_sym_toxml] = ACTIONS(1108), + [anon_sym_toxz] = ACTIONS(1108), + [anon_sym_toyaml] = ACTIONS(1108), + [anon_sym_tozst] = ACTIONS(1108), + [anon_sym_updatecells] = ACTIONS(1108), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1108), + [anon_sym_urldecode] = ACTIONS(1108), + [anon_sym_urlencode] = ACTIONS(1108), + [anon_sym_urljoin] = ACTIONS(1108), + [anon_sym_urlparse] = ACTIONS(1108), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1108), + [anon_sym_viewfiles] = ACTIONS(1108), + [anon_sym_viewir] = ACTIONS(1108), + [anon_sym_viewsource] = ACTIONS(1108), + [anon_sym_viewspan] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1114), }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1794), - [aux_sym__immediate_decimal_token2] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [184] = { + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4570), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(415), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [377] = { - [sym_cell_path] = STATE(528), - [sym_path] = STATE(497), - [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [185] = { + [sym_cmd_identifier] = STATE(4789), + [sym__ctrl_expression] = STATE(5058), + [sym_ctrl_do] = STATE(5085), + [sym_ctrl_if] = STATE(5085), + [sym_ctrl_match] = STATE(5085), + [sym_ctrl_try] = STATE(5085), + [sym_ctrl_return] = STATE(5085), + [sym_pipe_element] = STATE(4756), + [sym_where_command] = STATE(5095), + [sym__expression] = STATE(3937), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5095), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [186] = { + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4570), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(639), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(473), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [379] = { - [sym_path] = STATE(442), - [sym_comment] = STATE(379), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(967), - [aux_sym_cmd_identifier_token3] = ACTIONS(967), - [aux_sym_cmd_identifier_token4] = ACTIONS(967), - [aux_sym_cmd_identifier_token5] = ACTIONS(967), - [aux_sym_cmd_identifier_token6] = ACTIONS(967), - [aux_sym_cmd_identifier_token7] = ACTIONS(967), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(967), - [aux_sym_cmd_identifier_token11] = ACTIONS(967), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(967), - [aux_sym_cmd_identifier_token17] = ACTIONS(967), - [aux_sym_cmd_identifier_token18] = ACTIONS(967), - [aux_sym_cmd_identifier_token19] = ACTIONS(967), - [aux_sym_cmd_identifier_token20] = ACTIONS(967), - [aux_sym_cmd_identifier_token21] = ACTIONS(967), - [aux_sym_cmd_identifier_token22] = ACTIONS(967), - [aux_sym_cmd_identifier_token23] = ACTIONS(967), - [aux_sym_cmd_identifier_token24] = ACTIONS(967), - [aux_sym_cmd_identifier_token25] = ACTIONS(967), - [aux_sym_cmd_identifier_token26] = ACTIONS(967), - [aux_sym_cmd_identifier_token27] = ACTIONS(967), - [aux_sym_cmd_identifier_token28] = ACTIONS(967), - [aux_sym_cmd_identifier_token29] = ACTIONS(967), - [aux_sym_cmd_identifier_token30] = ACTIONS(967), - [aux_sym_cmd_identifier_token31] = ACTIONS(967), - [aux_sym_cmd_identifier_token32] = ACTIONS(967), - [aux_sym_cmd_identifier_token33] = ACTIONS(967), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(967), - [aux_sym_cmd_identifier_token36] = ACTIONS(967), - [aux_sym_cmd_identifier_token37] = ACTIONS(967), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(967), - [aux_sym_cmd_identifier_token40] = ACTIONS(967), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(967), - [aux_sym__val_number_decimal_token3] = ACTIONS(967), - [aux_sym__val_number_decimal_token4] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), - [sym__entry_separator] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(969), + [187] = { + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(5017), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(860), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(187), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(291), + [aux_sym_cmd_identifier_token1] = ACTIONS(1117), + [aux_sym_cmd_identifier_token2] = ACTIONS(1120), + [aux_sym_cmd_identifier_token3] = ACTIONS(1120), + [aux_sym_cmd_identifier_token4] = ACTIONS(1120), + [aux_sym_cmd_identifier_token5] = ACTIONS(1120), + [aux_sym_cmd_identifier_token6] = ACTIONS(1120), + [aux_sym_cmd_identifier_token7] = ACTIONS(1120), + [aux_sym_cmd_identifier_token8] = ACTIONS(1120), + [aux_sym_cmd_identifier_token9] = ACTIONS(1117), + [aux_sym_cmd_identifier_token10] = ACTIONS(1120), + [aux_sym_cmd_identifier_token11] = ACTIONS(1120), + [aux_sym_cmd_identifier_token12] = ACTIONS(1120), + [aux_sym_cmd_identifier_token13] = ACTIONS(1117), + [aux_sym_cmd_identifier_token14] = ACTIONS(1120), + [aux_sym_cmd_identifier_token15] = ACTIONS(1117), + [aux_sym_cmd_identifier_token16] = ACTIONS(1120), + [aux_sym_cmd_identifier_token17] = ACTIONS(1120), + [aux_sym_cmd_identifier_token18] = ACTIONS(1117), + [aux_sym_cmd_identifier_token19] = ACTIONS(1120), + [aux_sym_cmd_identifier_token20] = ACTIONS(1120), + [aux_sym_cmd_identifier_token21] = ACTIONS(1120), + [aux_sym_cmd_identifier_token22] = ACTIONS(1120), + [aux_sym_cmd_identifier_token23] = ACTIONS(1120), + [aux_sym_cmd_identifier_token24] = ACTIONS(1120), + [aux_sym_cmd_identifier_token25] = ACTIONS(1120), + [aux_sym_cmd_identifier_token26] = ACTIONS(1120), + [aux_sym_cmd_identifier_token27] = ACTIONS(1120), + [aux_sym_cmd_identifier_token28] = ACTIONS(1120), + [aux_sym_cmd_identifier_token29] = ACTIONS(1120), + [aux_sym_cmd_identifier_token30] = ACTIONS(1120), + [aux_sym_cmd_identifier_token31] = ACTIONS(1120), + [aux_sym_cmd_identifier_token32] = ACTIONS(1117), + [aux_sym_cmd_identifier_token33] = ACTIONS(1120), + [aux_sym_cmd_identifier_token34] = ACTIONS(1117), + [aux_sym_cmd_identifier_token35] = ACTIONS(1120), + [aux_sym_cmd_identifier_token36] = ACTIONS(1120), + [aux_sym_cmd_identifier_token37] = ACTIONS(1120), + [aux_sym_cmd_identifier_token38] = ACTIONS(1117), + [aux_sym_cmd_identifier_token39] = ACTIONS(1120), + [aux_sym_cmd_identifier_token40] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_DASH2] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1153), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1162), + [aux_sym_expr_unary_token1] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), + [anon_sym_DOT_DOT_LT] = ACTIONS(1168), + [anon_sym_null] = ACTIONS(1171), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [aux_sym__val_number_decimal_token1] = ACTIONS(1177), + [aux_sym__val_number_decimal_token2] = ACTIONS(1180), + [aux_sym__val_number_decimal_token3] = ACTIONS(1183), + [aux_sym__val_number_decimal_token4] = ACTIONS(1186), + [aux_sym__val_number_token1] = ACTIONS(1189), + [aux_sym__val_number_token2] = ACTIONS(1189), + [aux_sym__val_number_token3] = ACTIONS(1189), + [aux_sym__val_number_token4] = ACTIONS(1192), + [aux_sym__val_number_token5] = ACTIONS(1192), + [aux_sym__val_number_token6] = ACTIONS(1192), + [anon_sym_0b] = ACTIONS(1195), + [anon_sym_0o] = ACTIONS(1198), + [anon_sym_0x] = ACTIONS(1198), + [sym_val_date] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1204), + [sym__str_single_quotes] = ACTIONS(1207), + [sym__str_back_ticks] = ACTIONS(1207), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1210), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1213), + [aux_sym_env_var_token1] = ACTIONS(1216), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_ansigradient] = ACTIONS(1222), + [anon_sym_ansilink] = ACTIONS(1222), + [anon_sym_ansistrip] = ACTIONS(1222), + [anon_sym_bitsand] = ACTIONS(1222), + [anon_sym_bitsnot] = ACTIONS(1222), + [anon_sym_bitsor] = ACTIONS(1222), + [anon_sym_bitsrol] = ACTIONS(1222), + [anon_sym_bitsror] = ACTIONS(1222), + [anon_sym_bitsshl] = ACTIONS(1222), + [anon_sym_bitsshr] = ACTIONS(1222), + [anon_sym_bitsxor] = ACTIONS(1222), + [anon_sym_bytesadd] = ACTIONS(1222), + [anon_sym_bytesat] = ACTIONS(1222), + [anon_sym_bytesbuild] = ACTIONS(1222), + [anon_sym_bytescollect] = ACTIONS(1222), + [anon_sym_bytesends_DASHwith] = ACTIONS(1222), + [anon_sym_bytesindex_DASHof] = ACTIONS(1222), + [anon_sym_byteslength] = ACTIONS(1222), + [anon_sym_bytesremove] = ACTIONS(1222), + [anon_sym_bytesreplace] = ACTIONS(1222), + [anon_sym_bytesreverse] = ACTIONS(1222), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1222), + [anon_sym_commandlineedit] = ACTIONS(1222), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1222), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1222), + [anon_sym_configenv] = ACTIONS(1222), + [anon_sym_confignu] = ACTIONS(1222), + [anon_sym_configreset] = ACTIONS(1222), + [anon_sym_dateformat] = ACTIONS(1222), + [anon_sym_datehumanize] = ACTIONS(1222), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1222), + [anon_sym_datenow] = ACTIONS(1222), + [anon_sym_dateto_DASHrecord] = ACTIONS(1222), + [anon_sym_dateto_DASHtable] = ACTIONS(1222), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1222), + [anon_sym_debuginfo] = ACTIONS(1222), + [anon_sym_debugprofile] = ACTIONS(1222), + [anon_sym_decodebase32] = ACTIONS(1225), + [anon_sym_decodebase32hex] = ACTIONS(1222), + [anon_sym_decodebase64] = ACTIONS(1222), + [anon_sym_decodehex] = ACTIONS(1222), + [anon_sym_detectcolumns] = ACTIONS(1222), + [anon_sym_dropcolumn] = ACTIONS(1222), + [anon_sym_dropnth] = ACTIONS(1222), + [anon_sym_dtadd] = ACTIONS(1222), + [anon_sym_dtdiff] = ACTIONS(1222), + [anon_sym_dtformat] = ACTIONS(1222), + [anon_sym_dtnow] = ACTIONS(1222), + [anon_sym_dtpart] = ACTIONS(1222), + [anon_sym_dtto] = ACTIONS(1222), + [anon_sym_dtutcnow] = ACTIONS(1222), + [anon_sym_eachwhile] = ACTIONS(1222), + [anon_sym_encodebase32] = ACTIONS(1225), + [anon_sym_encodebase32hex] = ACTIONS(1222), + [anon_sym_encodebase64] = ACTIONS(1222), + [anon_sym_encodehex] = ACTIONS(1222), + [anon_sym_errormake] = ACTIONS(1222), + [anon_sym_exploreir] = ACTIONS(1222), + [anon_sym_formatdate] = ACTIONS(1222), + [anon_sym_formatduration] = ACTIONS(1222), + [anon_sym_formatfilesize] = ACTIONS(1222), + [anon_sym_formatpattern] = ACTIONS(1222), + [anon_sym_frombz2] = ACTIONS(1222), + [anon_sym_fromcsv] = ACTIONS(1222), + [anon_sym_fromeml] = ACTIONS(1222), + [anon_sym_fromgz] = ACTIONS(1222), + [anon_sym_fromics] = ACTIONS(1222), + [anon_sym_fromini] = ACTIONS(1222), + [anon_sym_fromjson] = ACTIONS(1222), + [anon_sym_frommsgpack] = ACTIONS(1225), + [anon_sym_frommsgpackz] = ACTIONS(1222), + [anon_sym_fromnuon] = ACTIONS(1222), + [anon_sym_fromods] = ACTIONS(1222), + [anon_sym_fromparquet] = ACTIONS(1222), + [anon_sym_fromplist] = ACTIONS(1222), + [anon_sym_frompng] = ACTIONS(1222), + [anon_sym_fromssv] = ACTIONS(1222), + [anon_sym_fromtoml] = ACTIONS(1222), + [anon_sym_fromtsv] = ACTIONS(1222), + [anon_sym_fromurl] = ACTIONS(1222), + [anon_sym_fromvcf] = ACTIONS(1222), + [anon_sym_fromxlsx] = ACTIONS(1222), + [anon_sym_fromxml] = ACTIONS(1222), + [anon_sym_fromxz] = ACTIONS(1222), + [anon_sym_fromyaml] = ACTIONS(1222), + [anon_sym_fromyml] = ACTIONS(1222), + [anon_sym_fromzst] = ACTIONS(1222), + [anon_sym_hashmd5] = ACTIONS(1222), + [anon_sym_hashsha256] = ACTIONS(1222), + [anon_sym_helpaliases] = ACTIONS(1222), + [anon_sym_helpcommands] = ACTIONS(1222), + [anon_sym_helpescapes] = ACTIONS(1222), + [anon_sym_helpexterns] = ACTIONS(1222), + [anon_sym_helpmodules] = ACTIONS(1222), + [anon_sym_helpoperators] = ACTIONS(1222), + [anon_sym_historyimport] = ACTIONS(1222), + [anon_sym_historysession] = ACTIONS(1222), + [anon_sym_httpdelete] = ACTIONS(1222), + [anon_sym_httpget] = ACTIONS(1222), + [anon_sym_httphead] = ACTIONS(1222), + [anon_sym_httpoptions] = ACTIONS(1222), + [anon_sym_httppatch] = ACTIONS(1222), + [anon_sym_httppost] = ACTIONS(1222), + [anon_sym_httpput] = ACTIONS(1222), + [anon_sym_inputlist] = ACTIONS(1225), + [anon_sym_inputlisten] = ACTIONS(1222), + [anon_sym_intobinary] = ACTIONS(1222), + [anon_sym_intobits] = ACTIONS(1222), + [anon_sym_intobool] = ACTIONS(1222), + [anon_sym_intocell_DASHpath] = ACTIONS(1222), + [anon_sym_intodatetime] = ACTIONS(1222), + [anon_sym_intoduration] = ACTIONS(1222), + [anon_sym_intofilesize] = ACTIONS(1222), + [anon_sym_intofloat] = ACTIONS(1222), + [anon_sym_intoglob] = ACTIONS(1222), + [anon_sym_intoint] = ACTIONS(1222), + [anon_sym_intorecord] = ACTIONS(1222), + [anon_sym_intosqlite] = ACTIONS(1222), + [anon_sym_intostring] = ACTIONS(1222), + [anon_sym_intovalue] = ACTIONS(1222), + [anon_sym_jsonpath] = ACTIONS(1222), + [anon_sym_keybindingsdefault] = ACTIONS(1222), + [anon_sym_keybindingslist] = ACTIONS(1225), + [anon_sym_keybindingslisten] = ACTIONS(1222), + [anon_sym_mathabs] = ACTIONS(1222), + [anon_sym_matharccos] = ACTIONS(1225), + [anon_sym_matharccosh] = ACTIONS(1222), + [anon_sym_matharcsin] = ACTIONS(1225), + [anon_sym_matharcsinh] = ACTIONS(1222), + [anon_sym_matharctan] = ACTIONS(1225), + [anon_sym_matharctanh] = ACTIONS(1222), + [anon_sym_mathavg] = ACTIONS(1222), + [anon_sym_mathceil] = ACTIONS(1222), + [anon_sym_mathcos] = ACTIONS(1225), + [anon_sym_mathcosh] = ACTIONS(1222), + [anon_sym_mathexp] = ACTIONS(1222), + [anon_sym_mathfloor] = ACTIONS(1222), + [anon_sym_mathln] = ACTIONS(1222), + [anon_sym_mathlog] = ACTIONS(1222), + [anon_sym_mathmax] = ACTIONS(1222), + [anon_sym_mathmedian] = ACTIONS(1222), + [anon_sym_mathmin] = ACTIONS(1222), + [anon_sym_mathmode] = ACTIONS(1222), + [anon_sym_mathproduct] = ACTIONS(1222), + [anon_sym_mathround] = ACTIONS(1222), + [anon_sym_mathsin] = ACTIONS(1225), + [anon_sym_mathsinh] = ACTIONS(1222), + [anon_sym_mathsqrt] = ACTIONS(1222), + [anon_sym_mathstddev] = ACTIONS(1222), + [anon_sym_mathsum] = ACTIONS(1222), + [anon_sym_mathtan] = ACTIONS(1225), + [anon_sym_mathtanh] = ACTIONS(1222), + [anon_sym_mathvariance] = ACTIONS(1222), + [anon_sym_metadataaccess] = ACTIONS(1222), + [anon_sym_metadataset] = ACTIONS(1222), + [anon_sym_pathbasename] = ACTIONS(1222), + [anon_sym_pathdirname] = ACTIONS(1222), + [anon_sym_pathexists] = ACTIONS(1222), + [anon_sym_pathexpand] = ACTIONS(1222), + [anon_sym_pathjoin] = ACTIONS(1222), + [anon_sym_pathparse] = ACTIONS(1222), + [anon_sym_pathrelative_DASHto] = ACTIONS(1222), + [anon_sym_pathsplit] = ACTIONS(1222), + [anon_sym_pathtype] = ACTIONS(1222), + [anon_sym_pluginadd] = ACTIONS(1222), + [anon_sym_pluginlist] = ACTIONS(1222), + [anon_sym_pluginrm] = ACTIONS(1222), + [anon_sym_pluginstop] = ACTIONS(1222), + [anon_sym_polarsagg] = ACTIONS(1225), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1222), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1222), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1222), + [anon_sym_polarsappend] = ACTIONS(1222), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1222), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1222), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1222), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1222), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1222), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1222), + [anon_sym_polarsas] = ACTIONS(1225), + [anon_sym_polarsas_DASHdate] = ACTIONS(1225), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1222), + [anon_sym_polarscache] = ACTIONS(1222), + [anon_sym_polarscast] = ACTIONS(1222), + [anon_sym_polarscol] = ACTIONS(1225), + [anon_sym_polarscollect] = ACTIONS(1222), + [anon_sym_polarscolumns] = ACTIONS(1222), + [anon_sym_polarsconcat] = ACTIONS(1225), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1222), + [anon_sym_polarscontains] = ACTIONS(1222), + [anon_sym_polarscount] = ACTIONS(1225), + [anon_sym_polarscount_DASHnull] = ACTIONS(1222), + [anon_sym_polarscumulative] = ACTIONS(1222), + [anon_sym_polarsdatepart] = ACTIONS(1222), + [anon_sym_polarsdecimal] = ACTIONS(1222), + [anon_sym_polarsdrop] = ACTIONS(1225), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1222), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1222), + [anon_sym_polarsdummies] = ACTIONS(1222), + [anon_sym_polarsexplode] = ACTIONS(1222), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1222), + [anon_sym_polarsfetch] = ACTIONS(1222), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1222), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1222), + [anon_sym_polarsfilter] = ACTIONS(1225), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1222), + [anon_sym_polarsfirst] = ACTIONS(1222), + [anon_sym_polarsflatten] = ACTIONS(1222), + [anon_sym_polarsget] = ACTIONS(1225), + [anon_sym_polarsget_DASHday] = ACTIONS(1222), + [anon_sym_polarsget_DASHhour] = ACTIONS(1222), + [anon_sym_polarsget_DASHminute] = ACTIONS(1222), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1222), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1222), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1222), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1222), + [anon_sym_polarsget_DASHweek] = ACTIONS(1225), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1222), + [anon_sym_polarsget_DASHyear] = ACTIONS(1222), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1222), + [anon_sym_polarsimplode] = ACTIONS(1222), + [anon_sym_polarsinteger] = ACTIONS(1222), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1222), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1222), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1222), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1222), + [anon_sym_polarsis_DASHin] = ACTIONS(1222), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1222), + [anon_sym_polarsis_DASHnull] = ACTIONS(1222), + [anon_sym_polarsis_DASHunique] = ACTIONS(1222), + [anon_sym_polarsjoin] = ACTIONS(1222), + [anon_sym_polarslast] = ACTIONS(1222), + [anon_sym_polarslen] = ACTIONS(1222), + [anon_sym_polarslit] = ACTIONS(1222), + [anon_sym_polarslowercase] = ACTIONS(1222), + [anon_sym_polarsmax] = ACTIONS(1222), + [anon_sym_polarsmean] = ACTIONS(1222), + [anon_sym_polarsmedian] = ACTIONS(1222), + [anon_sym_polarsmin] = ACTIONS(1222), + [anon_sym_polarsn_DASHunique] = ACTIONS(1222), + [anon_sym_polarsnot] = ACTIONS(1222), + [anon_sym_polarsopen] = ACTIONS(1222), + [anon_sym_polarsotherwise] = ACTIONS(1222), + [anon_sym_polarspivot] = ACTIONS(1222), + [anon_sym_polarsprofile] = ACTIONS(1222), + [anon_sym_polarsquantile] = ACTIONS(1222), + [anon_sym_polarsquery] = ACTIONS(1222), + [anon_sym_polarsrename] = ACTIONS(1222), + [anon_sym_polarsreplace] = ACTIONS(1225), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1222), + [anon_sym_polarsreverse] = ACTIONS(1222), + [anon_sym_polarsrolling] = ACTIONS(1222), + [anon_sym_polarssample] = ACTIONS(1222), + [anon_sym_polarssave] = ACTIONS(1222), + [anon_sym_polarsschema] = ACTIONS(1222), + [anon_sym_polarsselect] = ACTIONS(1222), + [anon_sym_polarsset] = ACTIONS(1225), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1222), + [anon_sym_polarsshape] = ACTIONS(1222), + [anon_sym_polarsshift] = ACTIONS(1222), + [anon_sym_polarsslice] = ACTIONS(1222), + [anon_sym_polarssort_DASHby] = ACTIONS(1222), + [anon_sym_polarsstd] = ACTIONS(1222), + [anon_sym_polarsstore_DASHget] = ACTIONS(1222), + [anon_sym_polarsstore_DASHls] = ACTIONS(1222), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1222), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1222), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1222), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1222), + [anon_sym_polarsstrftime] = ACTIONS(1222), + [anon_sym_polarssum] = ACTIONS(1225), + [anon_sym_polarssummary] = ACTIONS(1222), + [anon_sym_polarstake] = ACTIONS(1222), + [anon_sym_polarsunique] = ACTIONS(1222), + [anon_sym_polarsunnest] = ACTIONS(1222), + [anon_sym_polarsunpivot] = ACTIONS(1222), + [anon_sym_polarsuppercase] = ACTIONS(1222), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1222), + [anon_sym_polarsvar] = ACTIONS(1222), + [anon_sym_polarswhen] = ACTIONS(1222), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1222), + [anon_sym_querydb] = ACTIONS(1222), + [anon_sym_querygit] = ACTIONS(1222), + [anon_sym_queryjson] = ACTIONS(1222), + [anon_sym_queryweb] = ACTIONS(1225), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1222), + [anon_sym_queryxml] = ACTIONS(1222), + [anon_sym_randombinary] = ACTIONS(1222), + [anon_sym_randombool] = ACTIONS(1222), + [anon_sym_randomchars] = ACTIONS(1222), + [anon_sym_randomdice] = ACTIONS(1222), + [anon_sym_randomfloat] = ACTIONS(1222), + [anon_sym_randomint] = ACTIONS(1222), + [anon_sym_randomuuid] = ACTIONS(1222), + [anon_sym_rolldown] = ACTIONS(1222), + [anon_sym_rollleft] = ACTIONS(1222), + [anon_sym_rollright] = ACTIONS(1222), + [anon_sym_rollup] = ACTIONS(1222), + [anon_sym_scopealiases] = ACTIONS(1222), + [anon_sym_scopecommands] = ACTIONS(1222), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1222), + [anon_sym_scopeexterns] = ACTIONS(1222), + [anon_sym_scopemodules] = ACTIONS(1222), + [anon_sym_scopevariables] = ACTIONS(1222), + [anon_sym_seqchar] = ACTIONS(1222), + [anon_sym_seqdate] = ACTIONS(1222), + [anon_sym_skipuntil] = ACTIONS(1222), + [anon_sym_skipwhile] = ACTIONS(1222), + [anon_sym_splitcell_DASHpath] = ACTIONS(1222), + [anon_sym_splitchars] = ACTIONS(1222), + [anon_sym_splitcolumn] = ACTIONS(1222), + [anon_sym_splitlist] = ACTIONS(1222), + [anon_sym_splitrow] = ACTIONS(1222), + [anon_sym_splitwords] = ACTIONS(1222), + [anon_sym_storcreate] = ACTIONS(1222), + [anon_sym_stordelete] = ACTIONS(1222), + [anon_sym_storexport] = ACTIONS(1222), + [anon_sym_storimport] = ACTIONS(1222), + [anon_sym_storinsert] = ACTIONS(1222), + [anon_sym_storopen] = ACTIONS(1222), + [anon_sym_storreset] = ACTIONS(1222), + [anon_sym_storupdate] = ACTIONS(1222), + [anon_sym_strbexpand] = ACTIONS(1222), + [anon_sym_strcamel_DASHcase] = ACTIONS(1222), + [anon_sym_strcapitalize] = ACTIONS(1222), + [anon_sym_strcompress] = ACTIONS(1222), + [anon_sym_strcontains] = ACTIONS(1222), + [anon_sym_strdecompress] = ACTIONS(1222), + [anon_sym_strdedent] = ACTIONS(1222), + [anon_sym_strdeunicode] = ACTIONS(1222), + [anon_sym_strdistance] = ACTIONS(1222), + [anon_sym_strdowncase] = ACTIONS(1222), + [anon_sym_strends_DASHwith] = ACTIONS(1222), + [anon_sym_strexpand] = ACTIONS(1222), + [anon_sym_strindent] = ACTIONS(1222), + [anon_sym_strindex_DASHof] = ACTIONS(1222), + [anon_sym_strjoin] = ACTIONS(1222), + [anon_sym_strkebab_DASHcase] = ACTIONS(1222), + [anon_sym_strlength] = ACTIONS(1222), + [anon_sym_strpascal_DASHcase] = ACTIONS(1222), + [anon_sym_strreplace] = ACTIONS(1222), + [anon_sym_strreverse] = ACTIONS(1222), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1222), + [anon_sym_strsimilarity] = ACTIONS(1222), + [anon_sym_strsnake_DASHcase] = ACTIONS(1222), + [anon_sym_strstarts_DASHwith] = ACTIONS(1222), + [anon_sym_strstats] = ACTIONS(1222), + [anon_sym_strsubstring] = ACTIONS(1222), + [anon_sym_strtitle_DASHcase] = ACTIONS(1222), + [anon_sym_strtrim] = ACTIONS(1222), + [anon_sym_strupcase] = ACTIONS(1222), + [anon_sym_strwrap] = ACTIONS(1222), + [anon_sym_syscpu] = ACTIONS(1222), + [anon_sym_sysdisks] = ACTIONS(1222), + [anon_sym_syshost] = ACTIONS(1222), + [anon_sym_sysmem] = ACTIONS(1222), + [anon_sym_sysnet] = ACTIONS(1222), + [anon_sym_systemp] = ACTIONS(1222), + [anon_sym_sysusers] = ACTIONS(1222), + [anon_sym_takeuntil] = ACTIONS(1222), + [anon_sym_takewhile] = ACTIONS(1222), + [anon_sym_termquery] = ACTIONS(1222), + [anon_sym_termsize] = ACTIONS(1222), + [anon_sym_tobz2] = ACTIONS(1222), + [anon_sym_tocsv] = ACTIONS(1222), + [anon_sym_togz] = ACTIONS(1222), + [anon_sym_tohtml] = ACTIONS(1222), + [anon_sym_tojson] = ACTIONS(1222), + [anon_sym_tomd] = ACTIONS(1222), + [anon_sym_tomsgpack] = ACTIONS(1225), + [anon_sym_tomsgpackz] = ACTIONS(1222), + [anon_sym_tonuon] = ACTIONS(1222), + [anon_sym_toparquet] = ACTIONS(1222), + [anon_sym_toplist] = ACTIONS(1222), + [anon_sym_topng] = ACTIONS(1222), + [anon_sym_totext] = ACTIONS(1222), + [anon_sym_totoml] = ACTIONS(1222), + [anon_sym_totsv] = ACTIONS(1222), + [anon_sym_toxml] = ACTIONS(1222), + [anon_sym_toxz] = ACTIONS(1222), + [anon_sym_toyaml] = ACTIONS(1222), + [anon_sym_tozst] = ACTIONS(1222), + [anon_sym_updatecells] = ACTIONS(1222), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1222), + [anon_sym_urldecode] = ACTIONS(1222), + [anon_sym_urlencode] = ACTIONS(1222), + [anon_sym_urljoin] = ACTIONS(1222), + [anon_sym_urlparse] = ACTIONS(1222), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1222), + [anon_sym_viewfiles] = ACTIONS(1222), + [anon_sym_viewir] = ACTIONS(1222), + [anon_sym_viewsource] = ACTIONS(1222), + [anon_sym_viewspan] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1228), }, - [380] = { - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [aux_sym_cmd_identifier_token31] = ACTIONS(1802), - [aux_sym_cmd_identifier_token32] = ACTIONS(1802), - [aux_sym_cmd_identifier_token33] = ACTIONS(1802), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1802), - [aux_sym_cmd_identifier_token36] = ACTIONS(1802), - [aux_sym_cmd_identifier_token37] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1806), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1808), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_decimal_token4] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), - [sym__entry_separator] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1810), + [188] = { + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(4987), + [sym_ctrl_do] = STATE(4809), + [sym_ctrl_if] = STATE(4809), + [sym_ctrl_match] = STATE(4809), + [sym_ctrl_try] = STATE(4809), + [sym_ctrl_return] = STATE(4809), + [sym_pipe_element] = STATE(4570), + [sym_where_command] = STATE(4977), + [sym__expression] = STATE(3888), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4977), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_do] = ACTIONS(405), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(413), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(205), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), + [189] = { + [sym_cmd_identifier] = STATE(4751), + [sym__ctrl_expression_parenthesized] = STATE(5100), + [sym_ctrl_do_parenthesized] = STATE(5103), + [sym_ctrl_if_parenthesized] = STATE(5103), + [sym_ctrl_match] = STATE(5103), + [sym_ctrl_try_parenthesized] = STATE(5103), + [sym_ctrl_return] = STATE(5103), + [sym_pipe_element_parenthesized] = STATE(4742), + [sym_where_command_parenthesized] = STATE(5106), + [sym__expression_parenthesized] = STATE(3935), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5111), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(290), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_if] = ACTIONS(987), + [anon_sym_match] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(471), + [anon_sym_return] = ACTIONS(989), + [anon_sym_where] = ACTIONS(475), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [190] = { + [sym_comment] = STATE(190), + [aux_sym_shebang_repeat1] = STATE(190), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_alias] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_let_DASHenv] = ACTIONS(1231), + [anon_sym_mut] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [aux_sym_cmd_identifier_token1] = ACTIONS(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(1233), + [aux_sym_cmd_identifier_token3] = ACTIONS(1233), + [aux_sym_cmd_identifier_token4] = ACTIONS(1233), + [aux_sym_cmd_identifier_token5] = ACTIONS(1233), + [aux_sym_cmd_identifier_token6] = ACTIONS(1233), + [aux_sym_cmd_identifier_token7] = ACTIONS(1233), + [aux_sym_cmd_identifier_token8] = ACTIONS(1231), + [aux_sym_cmd_identifier_token9] = ACTIONS(1231), + [aux_sym_cmd_identifier_token10] = ACTIONS(1233), + [aux_sym_cmd_identifier_token11] = ACTIONS(1233), + [aux_sym_cmd_identifier_token12] = ACTIONS(1231), + [aux_sym_cmd_identifier_token13] = ACTIONS(1231), + [aux_sym_cmd_identifier_token14] = ACTIONS(1231), + [aux_sym_cmd_identifier_token15] = ACTIONS(1231), + [aux_sym_cmd_identifier_token16] = ACTIONS(1233), + [aux_sym_cmd_identifier_token17] = ACTIONS(1233), + [aux_sym_cmd_identifier_token18] = ACTIONS(1231), + [aux_sym_cmd_identifier_token19] = ACTIONS(1233), + [aux_sym_cmd_identifier_token20] = ACTIONS(1233), + [aux_sym_cmd_identifier_token21] = ACTIONS(1233), + [aux_sym_cmd_identifier_token22] = ACTIONS(1233), + [aux_sym_cmd_identifier_token23] = ACTIONS(1233), + [aux_sym_cmd_identifier_token24] = ACTIONS(1233), + [aux_sym_cmd_identifier_token25] = ACTIONS(1233), + [aux_sym_cmd_identifier_token26] = ACTIONS(1233), + [aux_sym_cmd_identifier_token27] = ACTIONS(1233), + [aux_sym_cmd_identifier_token28] = ACTIONS(1233), + [aux_sym_cmd_identifier_token29] = ACTIONS(1233), + [aux_sym_cmd_identifier_token30] = ACTIONS(1233), + [aux_sym_cmd_identifier_token31] = ACTIONS(1233), + [aux_sym_cmd_identifier_token32] = ACTIONS(1231), + [aux_sym_cmd_identifier_token33] = ACTIONS(1233), + [aux_sym_cmd_identifier_token34] = ACTIONS(1231), + [aux_sym_cmd_identifier_token35] = ACTIONS(1233), + [aux_sym_cmd_identifier_token36] = ACTIONS(1233), + [aux_sym_cmd_identifier_token37] = ACTIONS(1233), + [aux_sym_cmd_identifier_token38] = ACTIONS(1231), + [aux_sym_cmd_identifier_token39] = ACTIONS(1233), + [aux_sym_cmd_identifier_token40] = ACTIONS(1233), + [sym__newline] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1231), + [anon_sym_export_DASHenv] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_error] = ACTIONS(1231), + [anon_sym_DASH2] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_in2] = ACTIONS(1231), + [anon_sym_loop] = ACTIONS(1231), + [anon_sym_make] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_catch] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_source] = ACTIONS(1231), + [anon_sym_source_DASHenv] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_hide_DASHenv] = ACTIONS(1231), + [anon_sym_overlay] = ACTIONS(1231), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1233), + [aux_sym_expr_unary_token1] = ACTIONS(1233), + [anon_sym_PLUS2] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1231), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_decimal_token4] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1233), + [aux_sym_env_var_token1] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_ansigradient] = ACTIONS(1233), + [anon_sym_ansilink] = ACTIONS(1233), + [anon_sym_ansistrip] = ACTIONS(1233), + [anon_sym_bitsand] = ACTIONS(1233), + [anon_sym_bitsnot] = ACTIONS(1233), + [anon_sym_bitsor] = ACTIONS(1233), + [anon_sym_bitsrol] = ACTIONS(1233), + [anon_sym_bitsror] = ACTIONS(1233), + [anon_sym_bitsshl] = ACTIONS(1233), + [anon_sym_bitsshr] = ACTIONS(1233), + [anon_sym_bitsxor] = ACTIONS(1233), + [anon_sym_bytesadd] = ACTIONS(1233), + [anon_sym_bytesat] = ACTIONS(1233), + [anon_sym_bytesbuild] = ACTIONS(1233), + [anon_sym_bytescollect] = ACTIONS(1233), + [anon_sym_bytesends_DASHwith] = ACTIONS(1233), + [anon_sym_bytesindex_DASHof] = ACTIONS(1233), + [anon_sym_byteslength] = ACTIONS(1233), + [anon_sym_bytesremove] = ACTIONS(1233), + [anon_sym_bytesreplace] = ACTIONS(1233), + [anon_sym_bytesreverse] = ACTIONS(1233), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1233), + [anon_sym_commandlineedit] = ACTIONS(1233), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1233), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1233), + [anon_sym_configenv] = ACTIONS(1233), + [anon_sym_confignu] = ACTIONS(1233), + [anon_sym_configreset] = ACTIONS(1233), + [anon_sym_dateformat] = ACTIONS(1233), + [anon_sym_datehumanize] = ACTIONS(1233), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1233), + [anon_sym_datenow] = ACTIONS(1233), + [anon_sym_dateto_DASHrecord] = ACTIONS(1233), + [anon_sym_dateto_DASHtable] = ACTIONS(1233), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1233), + [anon_sym_debuginfo] = ACTIONS(1233), + [anon_sym_debugprofile] = ACTIONS(1233), + [anon_sym_decodebase32] = ACTIONS(1231), + [anon_sym_decodebase32hex] = ACTIONS(1233), + [anon_sym_decodebase64] = ACTIONS(1233), + [anon_sym_decodehex] = ACTIONS(1233), + [anon_sym_detectcolumns] = ACTIONS(1233), + [anon_sym_dropcolumn] = ACTIONS(1233), + [anon_sym_dropnth] = ACTIONS(1233), + [anon_sym_dtadd] = ACTIONS(1233), + [anon_sym_dtdiff] = ACTIONS(1233), + [anon_sym_dtformat] = ACTIONS(1233), + [anon_sym_dtnow] = ACTIONS(1233), + [anon_sym_dtpart] = ACTIONS(1233), + [anon_sym_dtto] = ACTIONS(1233), + [anon_sym_dtutcnow] = ACTIONS(1233), + [anon_sym_eachwhile] = ACTIONS(1233), + [anon_sym_encodebase32] = ACTIONS(1231), + [anon_sym_encodebase32hex] = ACTIONS(1233), + [anon_sym_encodebase64] = ACTIONS(1233), + [anon_sym_encodehex] = ACTIONS(1233), + [anon_sym_errormake] = ACTIONS(1233), + [anon_sym_exploreir] = ACTIONS(1233), + [anon_sym_formatdate] = ACTIONS(1233), + [anon_sym_formatduration] = ACTIONS(1233), + [anon_sym_formatfilesize] = ACTIONS(1233), + [anon_sym_formatpattern] = ACTIONS(1233), + [anon_sym_frombz2] = ACTIONS(1233), + [anon_sym_fromcsv] = ACTIONS(1233), + [anon_sym_fromeml] = ACTIONS(1233), + [anon_sym_fromgz] = ACTIONS(1233), + [anon_sym_fromics] = ACTIONS(1233), + [anon_sym_fromini] = ACTIONS(1233), + [anon_sym_fromjson] = ACTIONS(1233), + [anon_sym_frommsgpack] = ACTIONS(1231), + [anon_sym_frommsgpackz] = ACTIONS(1233), + [anon_sym_fromnuon] = ACTIONS(1233), + [anon_sym_fromods] = ACTIONS(1233), + [anon_sym_fromparquet] = ACTIONS(1233), + [anon_sym_fromplist] = ACTIONS(1233), + [anon_sym_frompng] = ACTIONS(1233), + [anon_sym_fromssv] = ACTIONS(1233), + [anon_sym_fromtoml] = ACTIONS(1233), + [anon_sym_fromtsv] = ACTIONS(1233), + [anon_sym_fromurl] = ACTIONS(1233), + [anon_sym_fromvcf] = ACTIONS(1233), + [anon_sym_fromxlsx] = ACTIONS(1233), + [anon_sym_fromxml] = ACTIONS(1233), + [anon_sym_fromxz] = ACTIONS(1233), + [anon_sym_fromyaml] = ACTIONS(1233), + [anon_sym_fromyml] = ACTIONS(1233), + [anon_sym_fromzst] = ACTIONS(1233), + [anon_sym_hashmd5] = ACTIONS(1233), + [anon_sym_hashsha256] = ACTIONS(1233), + [anon_sym_helpaliases] = ACTIONS(1233), + [anon_sym_helpcommands] = ACTIONS(1233), + [anon_sym_helpescapes] = ACTIONS(1233), + [anon_sym_helpexterns] = ACTIONS(1233), + [anon_sym_helpmodules] = ACTIONS(1233), + [anon_sym_helpoperators] = ACTIONS(1233), + [anon_sym_historyimport] = ACTIONS(1233), + [anon_sym_historysession] = ACTIONS(1233), + [anon_sym_httpdelete] = ACTIONS(1233), + [anon_sym_httpget] = ACTIONS(1233), + [anon_sym_httphead] = ACTIONS(1233), + [anon_sym_httpoptions] = ACTIONS(1233), + [anon_sym_httppatch] = ACTIONS(1233), + [anon_sym_httppost] = ACTIONS(1233), + [anon_sym_httpput] = ACTIONS(1233), + [anon_sym_inputlist] = ACTIONS(1231), + [anon_sym_inputlisten] = ACTIONS(1233), + [anon_sym_intobinary] = ACTIONS(1233), + [anon_sym_intobits] = ACTIONS(1233), + [anon_sym_intobool] = ACTIONS(1233), + [anon_sym_intocell_DASHpath] = ACTIONS(1233), + [anon_sym_intodatetime] = ACTIONS(1233), + [anon_sym_intoduration] = ACTIONS(1233), + [anon_sym_intofilesize] = ACTIONS(1233), + [anon_sym_intofloat] = ACTIONS(1233), + [anon_sym_intoglob] = ACTIONS(1233), + [anon_sym_intoint] = ACTIONS(1233), + [anon_sym_intorecord] = ACTIONS(1233), + [anon_sym_intosqlite] = ACTIONS(1233), + [anon_sym_intostring] = ACTIONS(1233), + [anon_sym_intovalue] = ACTIONS(1233), + [anon_sym_jsonpath] = ACTIONS(1233), + [anon_sym_keybindingsdefault] = ACTIONS(1233), + [anon_sym_keybindingslist] = ACTIONS(1231), + [anon_sym_keybindingslisten] = ACTIONS(1233), + [anon_sym_mathabs] = ACTIONS(1233), + [anon_sym_matharccos] = ACTIONS(1231), + [anon_sym_matharccosh] = ACTIONS(1233), + [anon_sym_matharcsin] = ACTIONS(1231), + [anon_sym_matharcsinh] = ACTIONS(1233), + [anon_sym_matharctan] = ACTIONS(1231), + [anon_sym_matharctanh] = ACTIONS(1233), + [anon_sym_mathavg] = ACTIONS(1233), + [anon_sym_mathceil] = ACTIONS(1233), + [anon_sym_mathcos] = ACTIONS(1231), + [anon_sym_mathcosh] = ACTIONS(1233), + [anon_sym_mathexp] = ACTIONS(1233), + [anon_sym_mathfloor] = ACTIONS(1233), + [anon_sym_mathln] = ACTIONS(1233), + [anon_sym_mathlog] = ACTIONS(1233), + [anon_sym_mathmax] = ACTIONS(1233), + [anon_sym_mathmedian] = ACTIONS(1233), + [anon_sym_mathmin] = ACTIONS(1233), + [anon_sym_mathmode] = ACTIONS(1233), + [anon_sym_mathproduct] = ACTIONS(1233), + [anon_sym_mathround] = ACTIONS(1233), + [anon_sym_mathsin] = ACTIONS(1231), + [anon_sym_mathsinh] = ACTIONS(1233), + [anon_sym_mathsqrt] = ACTIONS(1233), + [anon_sym_mathstddev] = ACTIONS(1233), + [anon_sym_mathsum] = ACTIONS(1233), + [anon_sym_mathtan] = ACTIONS(1231), + [anon_sym_mathtanh] = ACTIONS(1233), + [anon_sym_mathvariance] = ACTIONS(1233), + [anon_sym_metadataaccess] = ACTIONS(1233), + [anon_sym_metadataset] = ACTIONS(1233), + [anon_sym_pathbasename] = ACTIONS(1233), + [anon_sym_pathdirname] = ACTIONS(1233), + [anon_sym_pathexists] = ACTIONS(1233), + [anon_sym_pathexpand] = ACTIONS(1233), + [anon_sym_pathjoin] = ACTIONS(1233), + [anon_sym_pathparse] = ACTIONS(1233), + [anon_sym_pathrelative_DASHto] = ACTIONS(1233), + [anon_sym_pathsplit] = ACTIONS(1233), + [anon_sym_pathtype] = ACTIONS(1233), + [anon_sym_pluginadd] = ACTIONS(1233), + [anon_sym_pluginlist] = ACTIONS(1233), + [anon_sym_pluginrm] = ACTIONS(1233), + [anon_sym_pluginstop] = ACTIONS(1233), + [anon_sym_polarsagg] = ACTIONS(1231), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1233), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1233), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsappend] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1233), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1233), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1233), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1233), + [anon_sym_polarsas] = ACTIONS(1231), + [anon_sym_polarsas_DASHdate] = ACTIONS(1231), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1233), + [anon_sym_polarscache] = ACTIONS(1233), + [anon_sym_polarscast] = ACTIONS(1233), + [anon_sym_polarscol] = ACTIONS(1231), + [anon_sym_polarscollect] = ACTIONS(1233), + [anon_sym_polarscolumns] = ACTIONS(1233), + [anon_sym_polarsconcat] = ACTIONS(1231), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1233), + [anon_sym_polarscontains] = ACTIONS(1233), + [anon_sym_polarscount] = ACTIONS(1231), + [anon_sym_polarscount_DASHnull] = ACTIONS(1233), + [anon_sym_polarscumulative] = ACTIONS(1233), + [anon_sym_polarsdatepart] = ACTIONS(1233), + [anon_sym_polarsdecimal] = ACTIONS(1233), + [anon_sym_polarsdrop] = ACTIONS(1231), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1233), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1233), + [anon_sym_polarsdummies] = ACTIONS(1233), + [anon_sym_polarsexplode] = ACTIONS(1233), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1233), + [anon_sym_polarsfetch] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1233), + [anon_sym_polarsfilter] = ACTIONS(1231), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1233), + [anon_sym_polarsfirst] = ACTIONS(1233), + [anon_sym_polarsflatten] = ACTIONS(1233), + [anon_sym_polarsget] = ACTIONS(1231), + [anon_sym_polarsget_DASHday] = ACTIONS(1233), + [anon_sym_polarsget_DASHhour] = ACTIONS(1233), + [anon_sym_polarsget_DASHminute] = ACTIONS(1233), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1233), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1233), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHweek] = ACTIONS(1231), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1233), + [anon_sym_polarsget_DASHyear] = ACTIONS(1233), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1233), + [anon_sym_polarsimplode] = ACTIONS(1233), + [anon_sym_polarsinteger] = ACTIONS(1233), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1233), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1233), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1233), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1233), + [anon_sym_polarsis_DASHin] = ACTIONS(1233), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHunique] = ACTIONS(1233), + [anon_sym_polarsjoin] = ACTIONS(1233), + [anon_sym_polarslast] = ACTIONS(1233), + [anon_sym_polarslen] = ACTIONS(1233), + [anon_sym_polarslit] = ACTIONS(1233), + [anon_sym_polarslowercase] = ACTIONS(1233), + [anon_sym_polarsmax] = ACTIONS(1233), + [anon_sym_polarsmean] = ACTIONS(1233), + [anon_sym_polarsmedian] = ACTIONS(1233), + [anon_sym_polarsmin] = ACTIONS(1233), + [anon_sym_polarsn_DASHunique] = ACTIONS(1233), + [anon_sym_polarsnot] = ACTIONS(1233), + [anon_sym_polarsopen] = ACTIONS(1233), + [anon_sym_polarsotherwise] = ACTIONS(1233), + [anon_sym_polarspivot] = ACTIONS(1233), + [anon_sym_polarsprofile] = ACTIONS(1233), + [anon_sym_polarsquantile] = ACTIONS(1233), + [anon_sym_polarsquery] = ACTIONS(1233), + [anon_sym_polarsrename] = ACTIONS(1233), + [anon_sym_polarsreplace] = ACTIONS(1231), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1233), + [anon_sym_polarsreverse] = ACTIONS(1233), + [anon_sym_polarsrolling] = ACTIONS(1233), + [anon_sym_polarssample] = ACTIONS(1233), + [anon_sym_polarssave] = ACTIONS(1233), + [anon_sym_polarsschema] = ACTIONS(1233), + [anon_sym_polarsselect] = ACTIONS(1233), + [anon_sym_polarsset] = ACTIONS(1231), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1233), + [anon_sym_polarsshape] = ACTIONS(1233), + [anon_sym_polarsshift] = ACTIONS(1233), + [anon_sym_polarsslice] = ACTIONS(1233), + [anon_sym_polarssort_DASHby] = ACTIONS(1233), + [anon_sym_polarsstd] = ACTIONS(1233), + [anon_sym_polarsstore_DASHget] = ACTIONS(1233), + [anon_sym_polarsstore_DASHls] = ACTIONS(1233), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1233), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1233), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1233), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1233), + [anon_sym_polarsstrftime] = ACTIONS(1233), + [anon_sym_polarssum] = ACTIONS(1231), + [anon_sym_polarssummary] = ACTIONS(1233), + [anon_sym_polarstake] = ACTIONS(1233), + [anon_sym_polarsunique] = ACTIONS(1233), + [anon_sym_polarsunnest] = ACTIONS(1233), + [anon_sym_polarsunpivot] = ACTIONS(1233), + [anon_sym_polarsuppercase] = ACTIONS(1233), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1233), + [anon_sym_polarsvar] = ACTIONS(1233), + [anon_sym_polarswhen] = ACTIONS(1233), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1233), + [anon_sym_querydb] = ACTIONS(1233), + [anon_sym_querygit] = ACTIONS(1233), + [anon_sym_queryjson] = ACTIONS(1233), + [anon_sym_queryweb] = ACTIONS(1231), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1233), + [anon_sym_queryxml] = ACTIONS(1233), + [anon_sym_randombinary] = ACTIONS(1233), + [anon_sym_randombool] = ACTIONS(1233), + [anon_sym_randomchars] = ACTIONS(1233), + [anon_sym_randomdice] = ACTIONS(1233), + [anon_sym_randomfloat] = ACTIONS(1233), + [anon_sym_randomint] = ACTIONS(1233), + [anon_sym_randomuuid] = ACTIONS(1233), + [anon_sym_rolldown] = ACTIONS(1233), + [anon_sym_rollleft] = ACTIONS(1233), + [anon_sym_rollright] = ACTIONS(1233), + [anon_sym_rollup] = ACTIONS(1233), + [anon_sym_scopealiases] = ACTIONS(1233), + [anon_sym_scopecommands] = ACTIONS(1233), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1233), + [anon_sym_scopeexterns] = ACTIONS(1233), + [anon_sym_scopemodules] = ACTIONS(1233), + [anon_sym_scopevariables] = ACTIONS(1233), + [anon_sym_seqchar] = ACTIONS(1233), + [anon_sym_seqdate] = ACTIONS(1233), + [anon_sym_skipuntil] = ACTIONS(1233), + [anon_sym_skipwhile] = ACTIONS(1233), + [anon_sym_splitcell_DASHpath] = ACTIONS(1233), + [anon_sym_splitchars] = ACTIONS(1233), + [anon_sym_splitcolumn] = ACTIONS(1233), + [anon_sym_splitlist] = ACTIONS(1233), + [anon_sym_splitrow] = ACTIONS(1233), + [anon_sym_splitwords] = ACTIONS(1233), + [anon_sym_storcreate] = ACTIONS(1233), + [anon_sym_stordelete] = ACTIONS(1233), + [anon_sym_storexport] = ACTIONS(1233), + [anon_sym_storimport] = ACTIONS(1233), + [anon_sym_storinsert] = ACTIONS(1233), + [anon_sym_storopen] = ACTIONS(1233), + [anon_sym_storreset] = ACTIONS(1233), + [anon_sym_storupdate] = ACTIONS(1233), + [anon_sym_strbexpand] = ACTIONS(1233), + [anon_sym_strcamel_DASHcase] = ACTIONS(1233), + [anon_sym_strcapitalize] = ACTIONS(1233), + [anon_sym_strcompress] = ACTIONS(1233), + [anon_sym_strcontains] = ACTIONS(1233), + [anon_sym_strdecompress] = ACTIONS(1233), + [anon_sym_strdedent] = ACTIONS(1233), + [anon_sym_strdeunicode] = ACTIONS(1233), + [anon_sym_strdistance] = ACTIONS(1233), + [anon_sym_strdowncase] = ACTIONS(1233), + [anon_sym_strends_DASHwith] = ACTIONS(1233), + [anon_sym_strexpand] = ACTIONS(1233), + [anon_sym_strindent] = ACTIONS(1233), + [anon_sym_strindex_DASHof] = ACTIONS(1233), + [anon_sym_strjoin] = ACTIONS(1233), + [anon_sym_strkebab_DASHcase] = ACTIONS(1233), + [anon_sym_strlength] = ACTIONS(1233), + [anon_sym_strpascal_DASHcase] = ACTIONS(1233), + [anon_sym_strreplace] = ACTIONS(1233), + [anon_sym_strreverse] = ACTIONS(1233), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strsimilarity] = ACTIONS(1233), + [anon_sym_strsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strstarts_DASHwith] = ACTIONS(1233), + [anon_sym_strstats] = ACTIONS(1233), + [anon_sym_strsubstring] = ACTIONS(1233), + [anon_sym_strtitle_DASHcase] = ACTIONS(1233), + [anon_sym_strtrim] = ACTIONS(1233), + [anon_sym_strupcase] = ACTIONS(1233), + [anon_sym_strwrap] = ACTIONS(1233), + [anon_sym_syscpu] = ACTIONS(1233), + [anon_sym_sysdisks] = ACTIONS(1233), + [anon_sym_syshost] = ACTIONS(1233), + [anon_sym_sysmem] = ACTIONS(1233), + [anon_sym_sysnet] = ACTIONS(1233), + [anon_sym_systemp] = ACTIONS(1233), + [anon_sym_sysusers] = ACTIONS(1233), + [anon_sym_takeuntil] = ACTIONS(1233), + [anon_sym_takewhile] = ACTIONS(1233), + [anon_sym_termquery] = ACTIONS(1233), + [anon_sym_termsize] = ACTIONS(1233), + [anon_sym_tobz2] = ACTIONS(1233), + [anon_sym_tocsv] = ACTIONS(1233), + [anon_sym_togz] = ACTIONS(1233), + [anon_sym_tohtml] = ACTIONS(1233), + [anon_sym_tojson] = ACTIONS(1233), + [anon_sym_tomd] = ACTIONS(1233), + [anon_sym_tomsgpack] = ACTIONS(1231), + [anon_sym_tomsgpackz] = ACTIONS(1233), + [anon_sym_tonuon] = ACTIONS(1233), + [anon_sym_toparquet] = ACTIONS(1233), + [anon_sym_toplist] = ACTIONS(1233), + [anon_sym_topng] = ACTIONS(1233), + [anon_sym_totext] = ACTIONS(1233), + [anon_sym_totoml] = ACTIONS(1233), + [anon_sym_totsv] = ACTIONS(1233), + [anon_sym_toxml] = ACTIONS(1233), + [anon_sym_toxz] = ACTIONS(1233), + [anon_sym_toyaml] = ACTIONS(1233), + [anon_sym_tozst] = ACTIONS(1233), + [anon_sym_updatecells] = ACTIONS(1233), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1233), + [anon_sym_urldecode] = ACTIONS(1233), + [anon_sym_urlencode] = ACTIONS(1233), + [anon_sym_urljoin] = ACTIONS(1233), + [anon_sym_urlparse] = ACTIONS(1233), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1233), + [anon_sym_viewfiles] = ACTIONS(1233), + [anon_sym_viewir] = ACTIONS(1233), + [anon_sym_viewsource] = ACTIONS(1233), + [anon_sym_viewspan] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1233), }, - [383] = { - [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [191] = { + [sym_comment] = STATE(191), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_alias] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_let_DASHenv] = ACTIONS(1238), + [anon_sym_mut] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [aux_sym_cmd_identifier_token1] = ACTIONS(1238), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1238), + [aux_sym_cmd_identifier_token9] = ACTIONS(1238), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1238), + [aux_sym_cmd_identifier_token13] = ACTIONS(1238), + [aux_sym_cmd_identifier_token14] = ACTIONS(1238), + [aux_sym_cmd_identifier_token15] = ACTIONS(1238), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1238), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1238), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1238), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [aux_sym_cmd_identifier_token37] = ACTIONS(1241), + [aux_sym_cmd_identifier_token38] = ACTIONS(1238), + [aux_sym_cmd_identifier_token39] = ACTIONS(1241), + [aux_sym_cmd_identifier_token40] = ACTIONS(1241), + [sym__newline] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_def] = ACTIONS(1238), + [anon_sym_export_DASHenv] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1238), + [anon_sym_error] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_in2] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_make] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_catch] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_source] = ACTIONS(1238), + [anon_sym_source_DASHenv] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_hide] = ACTIONS(1238), + [anon_sym_hide_DASHenv] = ACTIONS(1238), + [anon_sym_overlay] = ACTIONS(1238), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_where] = ACTIONS(1241), + [aux_sym_expr_unary_token1] = ACTIONS(1241), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1244), + [aux_sym__val_number_decimal_token1] = ACTIONS(1238), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_decimal_token4] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1238), + [aux_sym__val_number_token5] = ACTIONS(1238), + [aux_sym__val_number_token6] = ACTIONS(1238), + [anon_sym_0b] = ACTIONS(1238), + [anon_sym_0o] = ACTIONS(1238), + [anon_sym_0x] = ACTIONS(1238), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1244), + [aux_sym_env_var_token1] = ACTIONS(1238), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_ansigradient] = ACTIONS(1241), + [anon_sym_ansilink] = ACTIONS(1241), + [anon_sym_ansistrip] = ACTIONS(1241), + [anon_sym_bitsand] = ACTIONS(1241), + [anon_sym_bitsnot] = ACTIONS(1241), + [anon_sym_bitsor] = ACTIONS(1241), + [anon_sym_bitsrol] = ACTIONS(1241), + [anon_sym_bitsror] = ACTIONS(1241), + [anon_sym_bitsshl] = ACTIONS(1241), + [anon_sym_bitsshr] = ACTIONS(1241), + [anon_sym_bitsxor] = ACTIONS(1241), + [anon_sym_bytesadd] = ACTIONS(1241), + [anon_sym_bytesat] = ACTIONS(1241), + [anon_sym_bytesbuild] = ACTIONS(1241), + [anon_sym_bytescollect] = ACTIONS(1241), + [anon_sym_bytesends_DASHwith] = ACTIONS(1241), + [anon_sym_bytesindex_DASHof] = ACTIONS(1241), + [anon_sym_byteslength] = ACTIONS(1241), + [anon_sym_bytesremove] = ACTIONS(1241), + [anon_sym_bytesreplace] = ACTIONS(1241), + [anon_sym_bytesreverse] = ACTIONS(1241), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1241), + [anon_sym_commandlineedit] = ACTIONS(1241), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1241), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1241), + [anon_sym_configenv] = ACTIONS(1241), + [anon_sym_confignu] = ACTIONS(1241), + [anon_sym_configreset] = ACTIONS(1241), + [anon_sym_dateformat] = ACTIONS(1241), + [anon_sym_datehumanize] = ACTIONS(1241), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1241), + [anon_sym_datenow] = ACTIONS(1241), + [anon_sym_dateto_DASHrecord] = ACTIONS(1241), + [anon_sym_dateto_DASHtable] = ACTIONS(1241), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1241), + [anon_sym_debuginfo] = ACTIONS(1241), + [anon_sym_debugprofile] = ACTIONS(1241), + [anon_sym_decodebase32] = ACTIONS(1238), + [anon_sym_decodebase32hex] = ACTIONS(1241), + [anon_sym_decodebase64] = ACTIONS(1241), + [anon_sym_decodehex] = ACTIONS(1241), + [anon_sym_detectcolumns] = ACTIONS(1241), + [anon_sym_dropcolumn] = ACTIONS(1241), + [anon_sym_dropnth] = ACTIONS(1241), + [anon_sym_dtadd] = ACTIONS(1241), + [anon_sym_dtdiff] = ACTIONS(1241), + [anon_sym_dtformat] = ACTIONS(1241), + [anon_sym_dtnow] = ACTIONS(1241), + [anon_sym_dtpart] = ACTIONS(1241), + [anon_sym_dtto] = ACTIONS(1241), + [anon_sym_dtutcnow] = ACTIONS(1241), + [anon_sym_eachwhile] = ACTIONS(1241), + [anon_sym_encodebase32] = ACTIONS(1238), + [anon_sym_encodebase32hex] = ACTIONS(1241), + [anon_sym_encodebase64] = ACTIONS(1241), + [anon_sym_encodehex] = ACTIONS(1241), + [anon_sym_errormake] = ACTIONS(1241), + [anon_sym_exploreir] = ACTIONS(1241), + [anon_sym_formatdate] = ACTIONS(1241), + [anon_sym_formatduration] = ACTIONS(1241), + [anon_sym_formatfilesize] = ACTIONS(1241), + [anon_sym_formatpattern] = ACTIONS(1241), + [anon_sym_frombz2] = ACTIONS(1241), + [anon_sym_fromcsv] = ACTIONS(1241), + [anon_sym_fromeml] = ACTIONS(1241), + [anon_sym_fromgz] = ACTIONS(1241), + [anon_sym_fromics] = ACTIONS(1241), + [anon_sym_fromini] = ACTIONS(1241), + [anon_sym_fromjson] = ACTIONS(1241), + [anon_sym_frommsgpack] = ACTIONS(1238), + [anon_sym_frommsgpackz] = ACTIONS(1241), + [anon_sym_fromnuon] = ACTIONS(1241), + [anon_sym_fromods] = ACTIONS(1241), + [anon_sym_fromparquet] = ACTIONS(1241), + [anon_sym_fromplist] = ACTIONS(1241), + [anon_sym_frompng] = ACTIONS(1241), + [anon_sym_fromssv] = ACTIONS(1241), + [anon_sym_fromtoml] = ACTIONS(1241), + [anon_sym_fromtsv] = ACTIONS(1241), + [anon_sym_fromurl] = ACTIONS(1241), + [anon_sym_fromvcf] = ACTIONS(1241), + [anon_sym_fromxlsx] = ACTIONS(1241), + [anon_sym_fromxml] = ACTIONS(1241), + [anon_sym_fromxz] = ACTIONS(1241), + [anon_sym_fromyaml] = ACTIONS(1241), + [anon_sym_fromyml] = ACTIONS(1241), + [anon_sym_fromzst] = ACTIONS(1241), + [anon_sym_hashmd5] = ACTIONS(1241), + [anon_sym_hashsha256] = ACTIONS(1241), + [anon_sym_helpaliases] = ACTIONS(1241), + [anon_sym_helpcommands] = ACTIONS(1241), + [anon_sym_helpescapes] = ACTIONS(1241), + [anon_sym_helpexterns] = ACTIONS(1241), + [anon_sym_helpmodules] = ACTIONS(1241), + [anon_sym_helpoperators] = ACTIONS(1241), + [anon_sym_historyimport] = ACTIONS(1241), + [anon_sym_historysession] = ACTIONS(1241), + [anon_sym_httpdelete] = ACTIONS(1241), + [anon_sym_httpget] = ACTIONS(1241), + [anon_sym_httphead] = ACTIONS(1241), + [anon_sym_httpoptions] = ACTIONS(1241), + [anon_sym_httppatch] = ACTIONS(1241), + [anon_sym_httppost] = ACTIONS(1241), + [anon_sym_httpput] = ACTIONS(1241), + [anon_sym_inputlist] = ACTIONS(1238), + [anon_sym_inputlisten] = ACTIONS(1241), + [anon_sym_intobinary] = ACTIONS(1241), + [anon_sym_intobits] = ACTIONS(1241), + [anon_sym_intobool] = ACTIONS(1241), + [anon_sym_intocell_DASHpath] = ACTIONS(1241), + [anon_sym_intodatetime] = ACTIONS(1241), + [anon_sym_intoduration] = ACTIONS(1241), + [anon_sym_intofilesize] = ACTIONS(1241), + [anon_sym_intofloat] = ACTIONS(1241), + [anon_sym_intoglob] = ACTIONS(1241), + [anon_sym_intoint] = ACTIONS(1241), + [anon_sym_intorecord] = ACTIONS(1241), + [anon_sym_intosqlite] = ACTIONS(1241), + [anon_sym_intostring] = ACTIONS(1241), + [anon_sym_intovalue] = ACTIONS(1241), + [anon_sym_jsonpath] = ACTIONS(1241), + [anon_sym_keybindingsdefault] = ACTIONS(1241), + [anon_sym_keybindingslist] = ACTIONS(1238), + [anon_sym_keybindingslisten] = ACTIONS(1241), + [anon_sym_mathabs] = ACTIONS(1241), + [anon_sym_matharccos] = ACTIONS(1238), + [anon_sym_matharccosh] = ACTIONS(1241), + [anon_sym_matharcsin] = ACTIONS(1238), + [anon_sym_matharcsinh] = ACTIONS(1241), + [anon_sym_matharctan] = ACTIONS(1238), + [anon_sym_matharctanh] = ACTIONS(1241), + [anon_sym_mathavg] = ACTIONS(1241), + [anon_sym_mathceil] = ACTIONS(1241), + [anon_sym_mathcos] = ACTIONS(1238), + [anon_sym_mathcosh] = ACTIONS(1241), + [anon_sym_mathexp] = ACTIONS(1241), + [anon_sym_mathfloor] = ACTIONS(1241), + [anon_sym_mathln] = ACTIONS(1241), + [anon_sym_mathlog] = ACTIONS(1241), + [anon_sym_mathmax] = ACTIONS(1241), + [anon_sym_mathmedian] = ACTIONS(1241), + [anon_sym_mathmin] = ACTIONS(1241), + [anon_sym_mathmode] = ACTIONS(1241), + [anon_sym_mathproduct] = ACTIONS(1241), + [anon_sym_mathround] = ACTIONS(1241), + [anon_sym_mathsin] = ACTIONS(1238), + [anon_sym_mathsinh] = ACTIONS(1241), + [anon_sym_mathsqrt] = ACTIONS(1241), + [anon_sym_mathstddev] = ACTIONS(1241), + [anon_sym_mathsum] = ACTIONS(1241), + [anon_sym_mathtan] = ACTIONS(1238), + [anon_sym_mathtanh] = ACTIONS(1241), + [anon_sym_mathvariance] = ACTIONS(1241), + [anon_sym_metadataaccess] = ACTIONS(1241), + [anon_sym_metadataset] = ACTIONS(1241), + [anon_sym_pathbasename] = ACTIONS(1241), + [anon_sym_pathdirname] = ACTIONS(1241), + [anon_sym_pathexists] = ACTIONS(1241), + [anon_sym_pathexpand] = ACTIONS(1241), + [anon_sym_pathjoin] = ACTIONS(1241), + [anon_sym_pathparse] = ACTIONS(1241), + [anon_sym_pathrelative_DASHto] = ACTIONS(1241), + [anon_sym_pathsplit] = ACTIONS(1241), + [anon_sym_pathtype] = ACTIONS(1241), + [anon_sym_pluginadd] = ACTIONS(1241), + [anon_sym_pluginlist] = ACTIONS(1241), + [anon_sym_pluginrm] = ACTIONS(1241), + [anon_sym_pluginstop] = ACTIONS(1241), + [anon_sym_polarsagg] = ACTIONS(1238), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1241), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1241), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1241), + [anon_sym_polarsappend] = ACTIONS(1241), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1241), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1241), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1241), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1241), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1241), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1241), + [anon_sym_polarsas] = ACTIONS(1238), + [anon_sym_polarsas_DASHdate] = ACTIONS(1238), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1241), + [anon_sym_polarscache] = ACTIONS(1241), + [anon_sym_polarscast] = ACTIONS(1241), + [anon_sym_polarscol] = ACTIONS(1238), + [anon_sym_polarscollect] = ACTIONS(1241), + [anon_sym_polarscolumns] = ACTIONS(1241), + [anon_sym_polarsconcat] = ACTIONS(1238), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1241), + [anon_sym_polarscontains] = ACTIONS(1241), + [anon_sym_polarscount] = ACTIONS(1238), + [anon_sym_polarscount_DASHnull] = ACTIONS(1241), + [anon_sym_polarscumulative] = ACTIONS(1241), + [anon_sym_polarsdatepart] = ACTIONS(1241), + [anon_sym_polarsdecimal] = ACTIONS(1241), + [anon_sym_polarsdrop] = ACTIONS(1238), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1241), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1241), + [anon_sym_polarsdummies] = ACTIONS(1241), + [anon_sym_polarsexplode] = ACTIONS(1241), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1241), + [anon_sym_polarsfetch] = ACTIONS(1241), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1241), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1241), + [anon_sym_polarsfilter] = ACTIONS(1238), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1241), + [anon_sym_polarsfirst] = ACTIONS(1241), + [anon_sym_polarsflatten] = ACTIONS(1241), + [anon_sym_polarsget] = ACTIONS(1238), + [anon_sym_polarsget_DASHday] = ACTIONS(1241), + [anon_sym_polarsget_DASHhour] = ACTIONS(1241), + [anon_sym_polarsget_DASHminute] = ACTIONS(1241), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1241), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1241), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1241), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1241), + [anon_sym_polarsget_DASHweek] = ACTIONS(1238), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1241), + [anon_sym_polarsget_DASHyear] = ACTIONS(1241), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1241), + [anon_sym_polarsimplode] = ACTIONS(1241), + [anon_sym_polarsinteger] = ACTIONS(1241), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1241), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1241), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1241), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1241), + [anon_sym_polarsis_DASHin] = ACTIONS(1241), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1241), + [anon_sym_polarsis_DASHnull] = ACTIONS(1241), + [anon_sym_polarsis_DASHunique] = ACTIONS(1241), + [anon_sym_polarsjoin] = ACTIONS(1241), + [anon_sym_polarslast] = ACTIONS(1241), + [anon_sym_polarslen] = ACTIONS(1241), + [anon_sym_polarslit] = ACTIONS(1241), + [anon_sym_polarslowercase] = ACTIONS(1241), + [anon_sym_polarsmax] = ACTIONS(1241), + [anon_sym_polarsmean] = ACTIONS(1241), + [anon_sym_polarsmedian] = ACTIONS(1241), + [anon_sym_polarsmin] = ACTIONS(1241), + [anon_sym_polarsn_DASHunique] = ACTIONS(1241), + [anon_sym_polarsnot] = ACTIONS(1241), + [anon_sym_polarsopen] = ACTIONS(1241), + [anon_sym_polarsotherwise] = ACTIONS(1241), + [anon_sym_polarspivot] = ACTIONS(1241), + [anon_sym_polarsprofile] = ACTIONS(1241), + [anon_sym_polarsquantile] = ACTIONS(1241), + [anon_sym_polarsquery] = ACTIONS(1241), + [anon_sym_polarsrename] = ACTIONS(1241), + [anon_sym_polarsreplace] = ACTIONS(1238), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1241), + [anon_sym_polarsreverse] = ACTIONS(1241), + [anon_sym_polarsrolling] = ACTIONS(1241), + [anon_sym_polarssample] = ACTIONS(1241), + [anon_sym_polarssave] = ACTIONS(1241), + [anon_sym_polarsschema] = ACTIONS(1241), + [anon_sym_polarsselect] = ACTIONS(1241), + [anon_sym_polarsset] = ACTIONS(1238), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1241), + [anon_sym_polarsshape] = ACTIONS(1241), + [anon_sym_polarsshift] = ACTIONS(1241), + [anon_sym_polarsslice] = ACTIONS(1241), + [anon_sym_polarssort_DASHby] = ACTIONS(1241), + [anon_sym_polarsstd] = ACTIONS(1241), + [anon_sym_polarsstore_DASHget] = ACTIONS(1241), + [anon_sym_polarsstore_DASHls] = ACTIONS(1241), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1241), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1241), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1241), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1241), + [anon_sym_polarsstrftime] = ACTIONS(1241), + [anon_sym_polarssum] = ACTIONS(1238), + [anon_sym_polarssummary] = ACTIONS(1241), + [anon_sym_polarstake] = ACTIONS(1241), + [anon_sym_polarsunique] = ACTIONS(1241), + [anon_sym_polarsunnest] = ACTIONS(1241), + [anon_sym_polarsunpivot] = ACTIONS(1241), + [anon_sym_polarsuppercase] = ACTIONS(1241), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1241), + [anon_sym_polarsvar] = ACTIONS(1241), + [anon_sym_polarswhen] = ACTIONS(1241), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1241), + [anon_sym_querydb] = ACTIONS(1241), + [anon_sym_querygit] = ACTIONS(1241), + [anon_sym_queryjson] = ACTIONS(1241), + [anon_sym_queryweb] = ACTIONS(1238), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1241), + [anon_sym_queryxml] = ACTIONS(1241), + [anon_sym_randombinary] = ACTIONS(1241), + [anon_sym_randombool] = ACTIONS(1241), + [anon_sym_randomchars] = ACTIONS(1241), + [anon_sym_randomdice] = ACTIONS(1241), + [anon_sym_randomfloat] = ACTIONS(1241), + [anon_sym_randomint] = ACTIONS(1241), + [anon_sym_randomuuid] = ACTIONS(1241), + [anon_sym_rolldown] = ACTIONS(1241), + [anon_sym_rollleft] = ACTIONS(1241), + [anon_sym_rollright] = ACTIONS(1241), + [anon_sym_rollup] = ACTIONS(1241), + [anon_sym_scopealiases] = ACTIONS(1241), + [anon_sym_scopecommands] = ACTIONS(1241), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1241), + [anon_sym_scopeexterns] = ACTIONS(1241), + [anon_sym_scopemodules] = ACTIONS(1241), + [anon_sym_scopevariables] = ACTIONS(1241), + [anon_sym_seqchar] = ACTIONS(1241), + [anon_sym_seqdate] = ACTIONS(1241), + [anon_sym_skipuntil] = ACTIONS(1241), + [anon_sym_skipwhile] = ACTIONS(1241), + [anon_sym_splitcell_DASHpath] = ACTIONS(1241), + [anon_sym_splitchars] = ACTIONS(1241), + [anon_sym_splitcolumn] = ACTIONS(1241), + [anon_sym_splitlist] = ACTIONS(1241), + [anon_sym_splitrow] = ACTIONS(1241), + [anon_sym_splitwords] = ACTIONS(1241), + [anon_sym_storcreate] = ACTIONS(1241), + [anon_sym_stordelete] = ACTIONS(1241), + [anon_sym_storexport] = ACTIONS(1241), + [anon_sym_storimport] = ACTIONS(1241), + [anon_sym_storinsert] = ACTIONS(1241), + [anon_sym_storopen] = ACTIONS(1241), + [anon_sym_storreset] = ACTIONS(1241), + [anon_sym_storupdate] = ACTIONS(1241), + [anon_sym_strbexpand] = ACTIONS(1241), + [anon_sym_strcamel_DASHcase] = ACTIONS(1241), + [anon_sym_strcapitalize] = ACTIONS(1241), + [anon_sym_strcompress] = ACTIONS(1241), + [anon_sym_strcontains] = ACTIONS(1241), + [anon_sym_strdecompress] = ACTIONS(1241), + [anon_sym_strdedent] = ACTIONS(1241), + [anon_sym_strdeunicode] = ACTIONS(1241), + [anon_sym_strdistance] = ACTIONS(1241), + [anon_sym_strdowncase] = ACTIONS(1241), + [anon_sym_strends_DASHwith] = ACTIONS(1241), + [anon_sym_strexpand] = ACTIONS(1241), + [anon_sym_strindent] = ACTIONS(1241), + [anon_sym_strindex_DASHof] = ACTIONS(1241), + [anon_sym_strjoin] = ACTIONS(1241), + [anon_sym_strkebab_DASHcase] = ACTIONS(1241), + [anon_sym_strlength] = ACTIONS(1241), + [anon_sym_strpascal_DASHcase] = ACTIONS(1241), + [anon_sym_strreplace] = ACTIONS(1241), + [anon_sym_strreverse] = ACTIONS(1241), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1241), + [anon_sym_strsimilarity] = ACTIONS(1241), + [anon_sym_strsnake_DASHcase] = ACTIONS(1241), + [anon_sym_strstarts_DASHwith] = ACTIONS(1241), + [anon_sym_strstats] = ACTIONS(1241), + [anon_sym_strsubstring] = ACTIONS(1241), + [anon_sym_strtitle_DASHcase] = ACTIONS(1241), + [anon_sym_strtrim] = ACTIONS(1241), + [anon_sym_strupcase] = ACTIONS(1241), + [anon_sym_strwrap] = ACTIONS(1241), + [anon_sym_syscpu] = ACTIONS(1241), + [anon_sym_sysdisks] = ACTIONS(1241), + [anon_sym_syshost] = ACTIONS(1241), + [anon_sym_sysmem] = ACTIONS(1241), + [anon_sym_sysnet] = ACTIONS(1241), + [anon_sym_systemp] = ACTIONS(1241), + [anon_sym_sysusers] = ACTIONS(1241), + [anon_sym_takeuntil] = ACTIONS(1241), + [anon_sym_takewhile] = ACTIONS(1241), + [anon_sym_termquery] = ACTIONS(1241), + [anon_sym_termsize] = ACTIONS(1241), + [anon_sym_tobz2] = ACTIONS(1241), + [anon_sym_tocsv] = ACTIONS(1241), + [anon_sym_togz] = ACTIONS(1241), + [anon_sym_tohtml] = ACTIONS(1241), + [anon_sym_tojson] = ACTIONS(1241), + [anon_sym_tomd] = ACTIONS(1241), + [anon_sym_tomsgpack] = ACTIONS(1238), + [anon_sym_tomsgpackz] = ACTIONS(1241), + [anon_sym_tonuon] = ACTIONS(1241), + [anon_sym_toparquet] = ACTIONS(1241), + [anon_sym_toplist] = ACTIONS(1241), + [anon_sym_topng] = ACTIONS(1241), + [anon_sym_totext] = ACTIONS(1241), + [anon_sym_totoml] = ACTIONS(1241), + [anon_sym_totsv] = ACTIONS(1241), + [anon_sym_toxml] = ACTIONS(1241), + [anon_sym_toxz] = ACTIONS(1241), + [anon_sym_toyaml] = ACTIONS(1241), + [anon_sym_tozst] = ACTIONS(1241), + [anon_sym_updatecells] = ACTIONS(1241), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1241), + [anon_sym_urldecode] = ACTIONS(1241), + [anon_sym_urlencode] = ACTIONS(1241), + [anon_sym_urljoin] = ACTIONS(1241), + [anon_sym_urlparse] = ACTIONS(1241), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1241), + [anon_sym_viewfiles] = ACTIONS(1241), + [anon_sym_viewir] = ACTIONS(1241), + [anon_sym_viewsource] = ACTIONS(1241), + [anon_sym_viewspan] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1241), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [192] = { + [sym_comment] = STATE(192), + [anon_sym_export] = ACTIONS(1246), + [anon_sym_alias] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_let_DASHenv] = ACTIONS(1246), + [anon_sym_mut] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [aux_sym_cmd_identifier_token1] = ACTIONS(1246), + [aux_sym_cmd_identifier_token2] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1244), + [aux_sym_cmd_identifier_token4] = ACTIONS(1244), + [aux_sym_cmd_identifier_token5] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [aux_sym_cmd_identifier_token7] = ACTIONS(1244), + [aux_sym_cmd_identifier_token8] = ACTIONS(1246), + [aux_sym_cmd_identifier_token9] = ACTIONS(1246), + [aux_sym_cmd_identifier_token10] = ACTIONS(1244), + [aux_sym_cmd_identifier_token11] = ACTIONS(1244), + [aux_sym_cmd_identifier_token12] = ACTIONS(1246), + [aux_sym_cmd_identifier_token13] = ACTIONS(1246), + [aux_sym_cmd_identifier_token14] = ACTIONS(1246), + [aux_sym_cmd_identifier_token15] = ACTIONS(1246), + [aux_sym_cmd_identifier_token16] = ACTIONS(1244), + [aux_sym_cmd_identifier_token17] = ACTIONS(1244), + [aux_sym_cmd_identifier_token18] = ACTIONS(1246), + [aux_sym_cmd_identifier_token19] = ACTIONS(1244), + [aux_sym_cmd_identifier_token20] = ACTIONS(1244), + [aux_sym_cmd_identifier_token21] = ACTIONS(1244), + [aux_sym_cmd_identifier_token22] = ACTIONS(1244), + [aux_sym_cmd_identifier_token23] = ACTIONS(1244), + [aux_sym_cmd_identifier_token24] = ACTIONS(1244), + [aux_sym_cmd_identifier_token25] = ACTIONS(1244), + [aux_sym_cmd_identifier_token26] = ACTIONS(1244), + [aux_sym_cmd_identifier_token27] = ACTIONS(1244), + [aux_sym_cmd_identifier_token28] = ACTIONS(1244), + [aux_sym_cmd_identifier_token29] = ACTIONS(1244), + [aux_sym_cmd_identifier_token30] = ACTIONS(1244), + [aux_sym_cmd_identifier_token31] = ACTIONS(1244), + [aux_sym_cmd_identifier_token32] = ACTIONS(1246), + [aux_sym_cmd_identifier_token33] = ACTIONS(1244), + [aux_sym_cmd_identifier_token34] = ACTIONS(1246), + [aux_sym_cmd_identifier_token35] = ACTIONS(1244), + [aux_sym_cmd_identifier_token36] = ACTIONS(1244), + [aux_sym_cmd_identifier_token37] = ACTIONS(1244), + [aux_sym_cmd_identifier_token38] = ACTIONS(1246), + [aux_sym_cmd_identifier_token39] = ACTIONS(1244), + [aux_sym_cmd_identifier_token40] = ACTIONS(1244), + [sym__newline] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_def] = ACTIONS(1246), + [anon_sym_export_DASHenv] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_module] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1246), + [anon_sym_error] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_in2] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_make] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_catch] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_source] = ACTIONS(1246), + [anon_sym_source_DASHenv] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_hide] = ACTIONS(1246), + [anon_sym_hide_DASHenv] = ACTIONS(1246), + [anon_sym_overlay] = ACTIONS(1246), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_where] = ACTIONS(1244), + [aux_sym_expr_unary_token1] = ACTIONS(1244), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_DOT_DOT_LT] = ACTIONS(1244), + [anon_sym_null] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1244), + [aux_sym__val_number_decimal_token1] = ACTIONS(1246), + [aux_sym__val_number_decimal_token2] = ACTIONS(1244), + [aux_sym__val_number_decimal_token3] = ACTIONS(1244), + [aux_sym__val_number_decimal_token4] = ACTIONS(1244), + [aux_sym__val_number_token1] = ACTIONS(1244), + [aux_sym__val_number_token2] = ACTIONS(1244), + [aux_sym__val_number_token3] = ACTIONS(1244), + [aux_sym__val_number_token4] = ACTIONS(1246), + [aux_sym__val_number_token5] = ACTIONS(1246), + [aux_sym__val_number_token6] = ACTIONS(1246), + [anon_sym_0b] = ACTIONS(1246), + [anon_sym_0o] = ACTIONS(1246), + [anon_sym_0x] = ACTIONS(1246), + [sym_val_date] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym__str_single_quotes] = ACTIONS(1244), + [sym__str_back_ticks] = ACTIONS(1244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1244), + [aux_sym_env_var_token1] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1244), + [anon_sym_ansigradient] = ACTIONS(1244), + [anon_sym_ansilink] = ACTIONS(1244), + [anon_sym_ansistrip] = ACTIONS(1244), + [anon_sym_bitsand] = ACTIONS(1244), + [anon_sym_bitsnot] = ACTIONS(1244), + [anon_sym_bitsor] = ACTIONS(1244), + [anon_sym_bitsrol] = ACTIONS(1244), + [anon_sym_bitsror] = ACTIONS(1244), + [anon_sym_bitsshl] = ACTIONS(1244), + [anon_sym_bitsshr] = ACTIONS(1244), + [anon_sym_bitsxor] = ACTIONS(1244), + [anon_sym_bytesadd] = ACTIONS(1244), + [anon_sym_bytesat] = ACTIONS(1244), + [anon_sym_bytesbuild] = ACTIONS(1244), + [anon_sym_bytescollect] = ACTIONS(1244), + [anon_sym_bytesends_DASHwith] = ACTIONS(1244), + [anon_sym_bytesindex_DASHof] = ACTIONS(1244), + [anon_sym_byteslength] = ACTIONS(1244), + [anon_sym_bytesremove] = ACTIONS(1244), + [anon_sym_bytesreplace] = ACTIONS(1244), + [anon_sym_bytesreverse] = ACTIONS(1244), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1244), + [anon_sym_commandlineedit] = ACTIONS(1244), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1244), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1244), + [anon_sym_configenv] = ACTIONS(1244), + [anon_sym_confignu] = ACTIONS(1244), + [anon_sym_configreset] = ACTIONS(1244), + [anon_sym_dateformat] = ACTIONS(1244), + [anon_sym_datehumanize] = ACTIONS(1244), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1244), + [anon_sym_datenow] = ACTIONS(1244), + [anon_sym_dateto_DASHrecord] = ACTIONS(1244), + [anon_sym_dateto_DASHtable] = ACTIONS(1244), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1244), + [anon_sym_debuginfo] = ACTIONS(1244), + [anon_sym_debugprofile] = ACTIONS(1244), + [anon_sym_decodebase32] = ACTIONS(1246), + [anon_sym_decodebase32hex] = ACTIONS(1244), + [anon_sym_decodebase64] = ACTIONS(1244), + [anon_sym_decodehex] = ACTIONS(1244), + [anon_sym_detectcolumns] = ACTIONS(1244), + [anon_sym_dropcolumn] = ACTIONS(1244), + [anon_sym_dropnth] = ACTIONS(1244), + [anon_sym_dtadd] = ACTIONS(1244), + [anon_sym_dtdiff] = ACTIONS(1244), + [anon_sym_dtformat] = ACTIONS(1244), + [anon_sym_dtnow] = ACTIONS(1244), + [anon_sym_dtpart] = ACTIONS(1244), + [anon_sym_dtto] = ACTIONS(1244), + [anon_sym_dtutcnow] = ACTIONS(1244), + [anon_sym_eachwhile] = ACTIONS(1244), + [anon_sym_encodebase32] = ACTIONS(1246), + [anon_sym_encodebase32hex] = ACTIONS(1244), + [anon_sym_encodebase64] = ACTIONS(1244), + [anon_sym_encodehex] = ACTIONS(1244), + [anon_sym_errormake] = ACTIONS(1244), + [anon_sym_exploreir] = ACTIONS(1244), + [anon_sym_formatdate] = ACTIONS(1244), + [anon_sym_formatduration] = ACTIONS(1244), + [anon_sym_formatfilesize] = ACTIONS(1244), + [anon_sym_formatpattern] = ACTIONS(1244), + [anon_sym_frombz2] = ACTIONS(1244), + [anon_sym_fromcsv] = ACTIONS(1244), + [anon_sym_fromeml] = ACTIONS(1244), + [anon_sym_fromgz] = ACTIONS(1244), + [anon_sym_fromics] = ACTIONS(1244), + [anon_sym_fromini] = ACTIONS(1244), + [anon_sym_fromjson] = ACTIONS(1244), + [anon_sym_frommsgpack] = ACTIONS(1246), + [anon_sym_frommsgpackz] = ACTIONS(1244), + [anon_sym_fromnuon] = ACTIONS(1244), + [anon_sym_fromods] = ACTIONS(1244), + [anon_sym_fromparquet] = ACTIONS(1244), + [anon_sym_fromplist] = ACTIONS(1244), + [anon_sym_frompng] = ACTIONS(1244), + [anon_sym_fromssv] = ACTIONS(1244), + [anon_sym_fromtoml] = ACTIONS(1244), + [anon_sym_fromtsv] = ACTIONS(1244), + [anon_sym_fromurl] = ACTIONS(1244), + [anon_sym_fromvcf] = ACTIONS(1244), + [anon_sym_fromxlsx] = ACTIONS(1244), + [anon_sym_fromxml] = ACTIONS(1244), + [anon_sym_fromxz] = ACTIONS(1244), + [anon_sym_fromyaml] = ACTIONS(1244), + [anon_sym_fromyml] = ACTIONS(1244), + [anon_sym_fromzst] = ACTIONS(1244), + [anon_sym_hashmd5] = ACTIONS(1244), + [anon_sym_hashsha256] = ACTIONS(1244), + [anon_sym_helpaliases] = ACTIONS(1244), + [anon_sym_helpcommands] = ACTIONS(1244), + [anon_sym_helpescapes] = ACTIONS(1244), + [anon_sym_helpexterns] = ACTIONS(1244), + [anon_sym_helpmodules] = ACTIONS(1244), + [anon_sym_helpoperators] = ACTIONS(1244), + [anon_sym_historyimport] = ACTIONS(1244), + [anon_sym_historysession] = ACTIONS(1244), + [anon_sym_httpdelete] = ACTIONS(1244), + [anon_sym_httpget] = ACTIONS(1244), + [anon_sym_httphead] = ACTIONS(1244), + [anon_sym_httpoptions] = ACTIONS(1244), + [anon_sym_httppatch] = ACTIONS(1244), + [anon_sym_httppost] = ACTIONS(1244), + [anon_sym_httpput] = ACTIONS(1244), + [anon_sym_inputlist] = ACTIONS(1246), + [anon_sym_inputlisten] = ACTIONS(1244), + [anon_sym_intobinary] = ACTIONS(1244), + [anon_sym_intobits] = ACTIONS(1244), + [anon_sym_intobool] = ACTIONS(1244), + [anon_sym_intocell_DASHpath] = ACTIONS(1244), + [anon_sym_intodatetime] = ACTIONS(1244), + [anon_sym_intoduration] = ACTIONS(1244), + [anon_sym_intofilesize] = ACTIONS(1244), + [anon_sym_intofloat] = ACTIONS(1244), + [anon_sym_intoglob] = ACTIONS(1244), + [anon_sym_intoint] = ACTIONS(1244), + [anon_sym_intorecord] = ACTIONS(1244), + [anon_sym_intosqlite] = ACTIONS(1244), + [anon_sym_intostring] = ACTIONS(1244), + [anon_sym_intovalue] = ACTIONS(1244), + [anon_sym_jsonpath] = ACTIONS(1244), + [anon_sym_keybindingsdefault] = ACTIONS(1244), + [anon_sym_keybindingslist] = ACTIONS(1246), + [anon_sym_keybindingslisten] = ACTIONS(1244), + [anon_sym_mathabs] = ACTIONS(1244), + [anon_sym_matharccos] = ACTIONS(1246), + [anon_sym_matharccosh] = ACTIONS(1244), + [anon_sym_matharcsin] = ACTIONS(1246), + [anon_sym_matharcsinh] = ACTIONS(1244), + [anon_sym_matharctan] = ACTIONS(1246), + [anon_sym_matharctanh] = ACTIONS(1244), + [anon_sym_mathavg] = ACTIONS(1244), + [anon_sym_mathceil] = ACTIONS(1244), + [anon_sym_mathcos] = ACTIONS(1246), + [anon_sym_mathcosh] = ACTIONS(1244), + [anon_sym_mathexp] = ACTIONS(1244), + [anon_sym_mathfloor] = ACTIONS(1244), + [anon_sym_mathln] = ACTIONS(1244), + [anon_sym_mathlog] = ACTIONS(1244), + [anon_sym_mathmax] = ACTIONS(1244), + [anon_sym_mathmedian] = ACTIONS(1244), + [anon_sym_mathmin] = ACTIONS(1244), + [anon_sym_mathmode] = ACTIONS(1244), + [anon_sym_mathproduct] = ACTIONS(1244), + [anon_sym_mathround] = ACTIONS(1244), + [anon_sym_mathsin] = ACTIONS(1246), + [anon_sym_mathsinh] = ACTIONS(1244), + [anon_sym_mathsqrt] = ACTIONS(1244), + [anon_sym_mathstddev] = ACTIONS(1244), + [anon_sym_mathsum] = ACTIONS(1244), + [anon_sym_mathtan] = ACTIONS(1246), + [anon_sym_mathtanh] = ACTIONS(1244), + [anon_sym_mathvariance] = ACTIONS(1244), + [anon_sym_metadataaccess] = ACTIONS(1244), + [anon_sym_metadataset] = ACTIONS(1244), + [anon_sym_pathbasename] = ACTIONS(1244), + [anon_sym_pathdirname] = ACTIONS(1244), + [anon_sym_pathexists] = ACTIONS(1244), + [anon_sym_pathexpand] = ACTIONS(1244), + [anon_sym_pathjoin] = ACTIONS(1244), + [anon_sym_pathparse] = ACTIONS(1244), + [anon_sym_pathrelative_DASHto] = ACTIONS(1244), + [anon_sym_pathsplit] = ACTIONS(1244), + [anon_sym_pathtype] = ACTIONS(1244), + [anon_sym_pluginadd] = ACTIONS(1244), + [anon_sym_pluginlist] = ACTIONS(1244), + [anon_sym_pluginrm] = ACTIONS(1244), + [anon_sym_pluginstop] = ACTIONS(1244), + [anon_sym_polarsagg] = ACTIONS(1246), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1244), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1244), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsappend] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1244), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1244), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1244), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1244), + [anon_sym_polarsas] = ACTIONS(1246), + [anon_sym_polarsas_DASHdate] = ACTIONS(1246), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1244), + [anon_sym_polarscache] = ACTIONS(1244), + [anon_sym_polarscast] = ACTIONS(1244), + [anon_sym_polarscol] = ACTIONS(1246), + [anon_sym_polarscollect] = ACTIONS(1244), + [anon_sym_polarscolumns] = ACTIONS(1244), + [anon_sym_polarsconcat] = ACTIONS(1246), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1244), + [anon_sym_polarscontains] = ACTIONS(1244), + [anon_sym_polarscount] = ACTIONS(1246), + [anon_sym_polarscount_DASHnull] = ACTIONS(1244), + [anon_sym_polarscumulative] = ACTIONS(1244), + [anon_sym_polarsdatepart] = ACTIONS(1244), + [anon_sym_polarsdecimal] = ACTIONS(1244), + [anon_sym_polarsdrop] = ACTIONS(1246), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1244), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1244), + [anon_sym_polarsdummies] = ACTIONS(1244), + [anon_sym_polarsexplode] = ACTIONS(1244), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1244), + [anon_sym_polarsfetch] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1244), + [anon_sym_polarsfilter] = ACTIONS(1246), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1244), + [anon_sym_polarsfirst] = ACTIONS(1244), + [anon_sym_polarsflatten] = ACTIONS(1244), + [anon_sym_polarsget] = ACTIONS(1246), + [anon_sym_polarsget_DASHday] = ACTIONS(1244), + [anon_sym_polarsget_DASHhour] = ACTIONS(1244), + [anon_sym_polarsget_DASHminute] = ACTIONS(1244), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1244), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1244), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHweek] = ACTIONS(1246), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1244), + [anon_sym_polarsget_DASHyear] = ACTIONS(1244), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1244), + [anon_sym_polarsimplode] = ACTIONS(1244), + [anon_sym_polarsinteger] = ACTIONS(1244), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1244), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1244), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1244), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1244), + [anon_sym_polarsis_DASHin] = ACTIONS(1244), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHunique] = ACTIONS(1244), + [anon_sym_polarsjoin] = ACTIONS(1244), + [anon_sym_polarslast] = ACTIONS(1244), + [anon_sym_polarslen] = ACTIONS(1244), + [anon_sym_polarslit] = ACTIONS(1244), + [anon_sym_polarslowercase] = ACTIONS(1244), + [anon_sym_polarsmax] = ACTIONS(1244), + [anon_sym_polarsmean] = ACTIONS(1244), + [anon_sym_polarsmedian] = ACTIONS(1244), + [anon_sym_polarsmin] = ACTIONS(1244), + [anon_sym_polarsn_DASHunique] = ACTIONS(1244), + [anon_sym_polarsnot] = ACTIONS(1244), + [anon_sym_polarsopen] = ACTIONS(1244), + [anon_sym_polarsotherwise] = ACTIONS(1244), + [anon_sym_polarspivot] = ACTIONS(1244), + [anon_sym_polarsprofile] = ACTIONS(1244), + [anon_sym_polarsquantile] = ACTIONS(1244), + [anon_sym_polarsquery] = ACTIONS(1244), + [anon_sym_polarsrename] = ACTIONS(1244), + [anon_sym_polarsreplace] = ACTIONS(1246), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1244), + [anon_sym_polarsreverse] = ACTIONS(1244), + [anon_sym_polarsrolling] = ACTIONS(1244), + [anon_sym_polarssample] = ACTIONS(1244), + [anon_sym_polarssave] = ACTIONS(1244), + [anon_sym_polarsschema] = ACTIONS(1244), + [anon_sym_polarsselect] = ACTIONS(1244), + [anon_sym_polarsset] = ACTIONS(1246), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1244), + [anon_sym_polarsshape] = ACTIONS(1244), + [anon_sym_polarsshift] = ACTIONS(1244), + [anon_sym_polarsslice] = ACTIONS(1244), + [anon_sym_polarssort_DASHby] = ACTIONS(1244), + [anon_sym_polarsstd] = ACTIONS(1244), + [anon_sym_polarsstore_DASHget] = ACTIONS(1244), + [anon_sym_polarsstore_DASHls] = ACTIONS(1244), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1244), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1244), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1244), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1244), + [anon_sym_polarsstrftime] = ACTIONS(1244), + [anon_sym_polarssum] = ACTIONS(1246), + [anon_sym_polarssummary] = ACTIONS(1244), + [anon_sym_polarstake] = ACTIONS(1244), + [anon_sym_polarsunique] = ACTIONS(1244), + [anon_sym_polarsunnest] = ACTIONS(1244), + [anon_sym_polarsunpivot] = ACTIONS(1244), + [anon_sym_polarsuppercase] = ACTIONS(1244), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1244), + [anon_sym_polarsvar] = ACTIONS(1244), + [anon_sym_polarswhen] = ACTIONS(1244), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1244), + [anon_sym_querydb] = ACTIONS(1244), + [anon_sym_querygit] = ACTIONS(1244), + [anon_sym_queryjson] = ACTIONS(1244), + [anon_sym_queryweb] = ACTIONS(1246), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1244), + [anon_sym_queryxml] = ACTIONS(1244), + [anon_sym_randombinary] = ACTIONS(1244), + [anon_sym_randombool] = ACTIONS(1244), + [anon_sym_randomchars] = ACTIONS(1244), + [anon_sym_randomdice] = ACTIONS(1244), + [anon_sym_randomfloat] = ACTIONS(1244), + [anon_sym_randomint] = ACTIONS(1244), + [anon_sym_randomuuid] = ACTIONS(1244), + [anon_sym_rolldown] = ACTIONS(1244), + [anon_sym_rollleft] = ACTIONS(1244), + [anon_sym_rollright] = ACTIONS(1244), + [anon_sym_rollup] = ACTIONS(1244), + [anon_sym_scopealiases] = ACTIONS(1244), + [anon_sym_scopecommands] = ACTIONS(1244), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1244), + [anon_sym_scopeexterns] = ACTIONS(1244), + [anon_sym_scopemodules] = ACTIONS(1244), + [anon_sym_scopevariables] = ACTIONS(1244), + [anon_sym_seqchar] = ACTIONS(1244), + [anon_sym_seqdate] = ACTIONS(1244), + [anon_sym_skipuntil] = ACTIONS(1244), + [anon_sym_skipwhile] = ACTIONS(1244), + [anon_sym_splitcell_DASHpath] = ACTIONS(1244), + [anon_sym_splitchars] = ACTIONS(1244), + [anon_sym_splitcolumn] = ACTIONS(1244), + [anon_sym_splitlist] = ACTIONS(1244), + [anon_sym_splitrow] = ACTIONS(1244), + [anon_sym_splitwords] = ACTIONS(1244), + [anon_sym_storcreate] = ACTIONS(1244), + [anon_sym_stordelete] = ACTIONS(1244), + [anon_sym_storexport] = ACTIONS(1244), + [anon_sym_storimport] = ACTIONS(1244), + [anon_sym_storinsert] = ACTIONS(1244), + [anon_sym_storopen] = ACTIONS(1244), + [anon_sym_storreset] = ACTIONS(1244), + [anon_sym_storupdate] = ACTIONS(1244), + [anon_sym_strbexpand] = ACTIONS(1244), + [anon_sym_strcamel_DASHcase] = ACTIONS(1244), + [anon_sym_strcapitalize] = ACTIONS(1244), + [anon_sym_strcompress] = ACTIONS(1244), + [anon_sym_strcontains] = ACTIONS(1244), + [anon_sym_strdecompress] = ACTIONS(1244), + [anon_sym_strdedent] = ACTIONS(1244), + [anon_sym_strdeunicode] = ACTIONS(1244), + [anon_sym_strdistance] = ACTIONS(1244), + [anon_sym_strdowncase] = ACTIONS(1244), + [anon_sym_strends_DASHwith] = ACTIONS(1244), + [anon_sym_strexpand] = ACTIONS(1244), + [anon_sym_strindent] = ACTIONS(1244), + [anon_sym_strindex_DASHof] = ACTIONS(1244), + [anon_sym_strjoin] = ACTIONS(1244), + [anon_sym_strkebab_DASHcase] = ACTIONS(1244), + [anon_sym_strlength] = ACTIONS(1244), + [anon_sym_strpascal_DASHcase] = ACTIONS(1244), + [anon_sym_strreplace] = ACTIONS(1244), + [anon_sym_strreverse] = ACTIONS(1244), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strsimilarity] = ACTIONS(1244), + [anon_sym_strsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strstarts_DASHwith] = ACTIONS(1244), + [anon_sym_strstats] = ACTIONS(1244), + [anon_sym_strsubstring] = ACTIONS(1244), + [anon_sym_strtitle_DASHcase] = ACTIONS(1244), + [anon_sym_strtrim] = ACTIONS(1244), + [anon_sym_strupcase] = ACTIONS(1244), + [anon_sym_strwrap] = ACTIONS(1244), + [anon_sym_syscpu] = ACTIONS(1244), + [anon_sym_sysdisks] = ACTIONS(1244), + [anon_sym_syshost] = ACTIONS(1244), + [anon_sym_sysmem] = ACTIONS(1244), + [anon_sym_sysnet] = ACTIONS(1244), + [anon_sym_systemp] = ACTIONS(1244), + [anon_sym_sysusers] = ACTIONS(1244), + [anon_sym_takeuntil] = ACTIONS(1244), + [anon_sym_takewhile] = ACTIONS(1244), + [anon_sym_termquery] = ACTIONS(1244), + [anon_sym_termsize] = ACTIONS(1244), + [anon_sym_tobz2] = ACTIONS(1244), + [anon_sym_tocsv] = ACTIONS(1244), + [anon_sym_togz] = ACTIONS(1244), + [anon_sym_tohtml] = ACTIONS(1244), + [anon_sym_tojson] = ACTIONS(1244), + [anon_sym_tomd] = ACTIONS(1244), + [anon_sym_tomsgpack] = ACTIONS(1246), + [anon_sym_tomsgpackz] = ACTIONS(1244), + [anon_sym_tonuon] = ACTIONS(1244), + [anon_sym_toparquet] = ACTIONS(1244), + [anon_sym_toplist] = ACTIONS(1244), + [anon_sym_topng] = ACTIONS(1244), + [anon_sym_totext] = ACTIONS(1244), + [anon_sym_totoml] = ACTIONS(1244), + [anon_sym_totsv] = ACTIONS(1244), + [anon_sym_toxml] = ACTIONS(1244), + [anon_sym_toxz] = ACTIONS(1244), + [anon_sym_toyaml] = ACTIONS(1244), + [anon_sym_tozst] = ACTIONS(1244), + [anon_sym_updatecells] = ACTIONS(1244), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1244), + [anon_sym_urldecode] = ACTIONS(1244), + [anon_sym_urlencode] = ACTIONS(1244), + [anon_sym_urljoin] = ACTIONS(1244), + [anon_sym_urlparse] = ACTIONS(1244), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1244), + [anon_sym_viewfiles] = ACTIONS(1244), + [anon_sym_viewir] = ACTIONS(1244), + [anon_sym_viewsource] = ACTIONS(1244), + [anon_sym_viewspan] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1244), }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in2] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [sym__entry_separator] = ACTIONS(1828), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), + [193] = { + [sym_comment] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(196), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), + [194] = { + [sym_comment] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(196), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [195] = { + [sym_comment] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(196), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [388] = { - [sym_path] = STATE(497), - [sym_comment] = STATE(388), - [aux_sym_cell_path_repeat1] = STATE(390), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [196] = { + [sym_comment] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(196), + [anon_sym_export] = ACTIONS(1260), + [anon_sym_alias] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_let_DASHenv] = ACTIONS(1260), + [anon_sym_mut] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [aux_sym_cmd_identifier_token1] = ACTIONS(1260), + [aux_sym_cmd_identifier_token2] = ACTIONS(1262), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [aux_sym_cmd_identifier_token6] = ACTIONS(1262), + [aux_sym_cmd_identifier_token7] = ACTIONS(1262), + [aux_sym_cmd_identifier_token8] = ACTIONS(1260), + [aux_sym_cmd_identifier_token9] = ACTIONS(1260), + [aux_sym_cmd_identifier_token10] = ACTIONS(1262), + [aux_sym_cmd_identifier_token11] = ACTIONS(1262), + [aux_sym_cmd_identifier_token12] = ACTIONS(1260), + [aux_sym_cmd_identifier_token13] = ACTIONS(1260), + [aux_sym_cmd_identifier_token14] = ACTIONS(1260), + [aux_sym_cmd_identifier_token15] = ACTIONS(1260), + [aux_sym_cmd_identifier_token16] = ACTIONS(1262), + [aux_sym_cmd_identifier_token17] = ACTIONS(1262), + [aux_sym_cmd_identifier_token18] = ACTIONS(1260), + [aux_sym_cmd_identifier_token19] = ACTIONS(1262), + [aux_sym_cmd_identifier_token20] = ACTIONS(1262), + [aux_sym_cmd_identifier_token21] = ACTIONS(1262), + [aux_sym_cmd_identifier_token22] = ACTIONS(1262), + [aux_sym_cmd_identifier_token23] = ACTIONS(1262), + [aux_sym_cmd_identifier_token24] = ACTIONS(1262), + [aux_sym_cmd_identifier_token25] = ACTIONS(1262), + [aux_sym_cmd_identifier_token26] = ACTIONS(1262), + [aux_sym_cmd_identifier_token27] = ACTIONS(1262), + [aux_sym_cmd_identifier_token28] = ACTIONS(1262), + [aux_sym_cmd_identifier_token29] = ACTIONS(1262), + [aux_sym_cmd_identifier_token30] = ACTIONS(1262), + [aux_sym_cmd_identifier_token31] = ACTIONS(1262), + [aux_sym_cmd_identifier_token32] = ACTIONS(1260), + [aux_sym_cmd_identifier_token33] = ACTIONS(1262), + [aux_sym_cmd_identifier_token34] = ACTIONS(1260), + [aux_sym_cmd_identifier_token35] = ACTIONS(1262), + [aux_sym_cmd_identifier_token36] = ACTIONS(1262), + [aux_sym_cmd_identifier_token37] = ACTIONS(1262), + [aux_sym_cmd_identifier_token38] = ACTIONS(1260), + [aux_sym_cmd_identifier_token39] = ACTIONS(1262), + [aux_sym_cmd_identifier_token40] = ACTIONS(1262), + [sym__newline] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_def] = ACTIONS(1260), + [anon_sym_export_DASHenv] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(1260), + [anon_sym_DASH2] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_try] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_source] = ACTIONS(1260), + [anon_sym_source_DASHenv] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_hide] = ACTIONS(1260), + [anon_sym_hide_DASHenv] = ACTIONS(1260), + [anon_sym_overlay] = ACTIONS(1260), + [anon_sym_where] = ACTIONS(1262), + [aux_sym_expr_unary_token1] = ACTIONS(1262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1262), + [anon_sym_DOT_DOT_LT] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1260), + [aux_sym__val_number_decimal_token2] = ACTIONS(1262), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(1262), + [aux_sym__val_number_token2] = ACTIONS(1262), + [aux_sym__val_number_token3] = ACTIONS(1262), + [aux_sym__val_number_token4] = ACTIONS(1260), + [aux_sym__val_number_token5] = ACTIONS(1260), + [aux_sym__val_number_token6] = ACTIONS(1260), + [anon_sym_0b] = ACTIONS(1260), + [anon_sym_0o] = ACTIONS(1260), + [anon_sym_0x] = ACTIONS(1260), + [sym_val_date] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1262), + [sym__str_back_ticks] = ACTIONS(1262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1262), + [aux_sym_env_var_token1] = ACTIONS(1260), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_ansigradient] = ACTIONS(1262), + [anon_sym_ansilink] = ACTIONS(1262), + [anon_sym_ansistrip] = ACTIONS(1262), + [anon_sym_bitsand] = ACTIONS(1262), + [anon_sym_bitsnot] = ACTIONS(1262), + [anon_sym_bitsor] = ACTIONS(1262), + [anon_sym_bitsrol] = ACTIONS(1262), + [anon_sym_bitsror] = ACTIONS(1262), + [anon_sym_bitsshl] = ACTIONS(1262), + [anon_sym_bitsshr] = ACTIONS(1262), + [anon_sym_bitsxor] = ACTIONS(1262), + [anon_sym_bytesadd] = ACTIONS(1262), + [anon_sym_bytesat] = ACTIONS(1262), + [anon_sym_bytesbuild] = ACTIONS(1262), + [anon_sym_bytescollect] = ACTIONS(1262), + [anon_sym_bytesends_DASHwith] = ACTIONS(1262), + [anon_sym_bytesindex_DASHof] = ACTIONS(1262), + [anon_sym_byteslength] = ACTIONS(1262), + [anon_sym_bytesremove] = ACTIONS(1262), + [anon_sym_bytesreplace] = ACTIONS(1262), + [anon_sym_bytesreverse] = ACTIONS(1262), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1262), + [anon_sym_commandlineedit] = ACTIONS(1262), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1262), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1262), + [anon_sym_configenv] = ACTIONS(1262), + [anon_sym_confignu] = ACTIONS(1262), + [anon_sym_configreset] = ACTIONS(1262), + [anon_sym_dateformat] = ACTIONS(1262), + [anon_sym_datehumanize] = ACTIONS(1262), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1262), + [anon_sym_datenow] = ACTIONS(1262), + [anon_sym_dateto_DASHrecord] = ACTIONS(1262), + [anon_sym_dateto_DASHtable] = ACTIONS(1262), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1262), + [anon_sym_debuginfo] = ACTIONS(1262), + [anon_sym_debugprofile] = ACTIONS(1262), + [anon_sym_decodebase32] = ACTIONS(1260), + [anon_sym_decodebase32hex] = ACTIONS(1262), + [anon_sym_decodebase64] = ACTIONS(1262), + [anon_sym_decodehex] = ACTIONS(1262), + [anon_sym_detectcolumns] = ACTIONS(1262), + [anon_sym_dropcolumn] = ACTIONS(1262), + [anon_sym_dropnth] = ACTIONS(1262), + [anon_sym_dtadd] = ACTIONS(1262), + [anon_sym_dtdiff] = ACTIONS(1262), + [anon_sym_dtformat] = ACTIONS(1262), + [anon_sym_dtnow] = ACTIONS(1262), + [anon_sym_dtpart] = ACTIONS(1262), + [anon_sym_dtto] = ACTIONS(1262), + [anon_sym_dtutcnow] = ACTIONS(1262), + [anon_sym_eachwhile] = ACTIONS(1262), + [anon_sym_encodebase32] = ACTIONS(1260), + [anon_sym_encodebase32hex] = ACTIONS(1262), + [anon_sym_encodebase64] = ACTIONS(1262), + [anon_sym_encodehex] = ACTIONS(1262), + [anon_sym_errormake] = ACTIONS(1262), + [anon_sym_exploreir] = ACTIONS(1262), + [anon_sym_formatdate] = ACTIONS(1262), + [anon_sym_formatduration] = ACTIONS(1262), + [anon_sym_formatfilesize] = ACTIONS(1262), + [anon_sym_formatpattern] = ACTIONS(1262), + [anon_sym_frombz2] = ACTIONS(1262), + [anon_sym_fromcsv] = ACTIONS(1262), + [anon_sym_fromeml] = ACTIONS(1262), + [anon_sym_fromgz] = ACTIONS(1262), + [anon_sym_fromics] = ACTIONS(1262), + [anon_sym_fromini] = ACTIONS(1262), + [anon_sym_fromjson] = ACTIONS(1262), + [anon_sym_frommsgpack] = ACTIONS(1260), + [anon_sym_frommsgpackz] = ACTIONS(1262), + [anon_sym_fromnuon] = ACTIONS(1262), + [anon_sym_fromods] = ACTIONS(1262), + [anon_sym_fromparquet] = ACTIONS(1262), + [anon_sym_fromplist] = ACTIONS(1262), + [anon_sym_frompng] = ACTIONS(1262), + [anon_sym_fromssv] = ACTIONS(1262), + [anon_sym_fromtoml] = ACTIONS(1262), + [anon_sym_fromtsv] = ACTIONS(1262), + [anon_sym_fromurl] = ACTIONS(1262), + [anon_sym_fromvcf] = ACTIONS(1262), + [anon_sym_fromxlsx] = ACTIONS(1262), + [anon_sym_fromxml] = ACTIONS(1262), + [anon_sym_fromxz] = ACTIONS(1262), + [anon_sym_fromyaml] = ACTIONS(1262), + [anon_sym_fromyml] = ACTIONS(1262), + [anon_sym_fromzst] = ACTIONS(1262), + [anon_sym_hashmd5] = ACTIONS(1262), + [anon_sym_hashsha256] = ACTIONS(1262), + [anon_sym_helpaliases] = ACTIONS(1262), + [anon_sym_helpcommands] = ACTIONS(1262), + [anon_sym_helpescapes] = ACTIONS(1262), + [anon_sym_helpexterns] = ACTIONS(1262), + [anon_sym_helpmodules] = ACTIONS(1262), + [anon_sym_helpoperators] = ACTIONS(1262), + [anon_sym_historyimport] = ACTIONS(1262), + [anon_sym_historysession] = ACTIONS(1262), + [anon_sym_httpdelete] = ACTIONS(1262), + [anon_sym_httpget] = ACTIONS(1262), + [anon_sym_httphead] = ACTIONS(1262), + [anon_sym_httpoptions] = ACTIONS(1262), + [anon_sym_httppatch] = ACTIONS(1262), + [anon_sym_httppost] = ACTIONS(1262), + [anon_sym_httpput] = ACTIONS(1262), + [anon_sym_inputlist] = ACTIONS(1260), + [anon_sym_inputlisten] = ACTIONS(1262), + [anon_sym_intobinary] = ACTIONS(1262), + [anon_sym_intobits] = ACTIONS(1262), + [anon_sym_intobool] = ACTIONS(1262), + [anon_sym_intocell_DASHpath] = ACTIONS(1262), + [anon_sym_intodatetime] = ACTIONS(1262), + [anon_sym_intoduration] = ACTIONS(1262), + [anon_sym_intofilesize] = ACTIONS(1262), + [anon_sym_intofloat] = ACTIONS(1262), + [anon_sym_intoglob] = ACTIONS(1262), + [anon_sym_intoint] = ACTIONS(1262), + [anon_sym_intorecord] = ACTIONS(1262), + [anon_sym_intosqlite] = ACTIONS(1262), + [anon_sym_intostring] = ACTIONS(1262), + [anon_sym_intovalue] = ACTIONS(1262), + [anon_sym_jsonpath] = ACTIONS(1262), + [anon_sym_keybindingsdefault] = ACTIONS(1262), + [anon_sym_keybindingslist] = ACTIONS(1260), + [anon_sym_keybindingslisten] = ACTIONS(1262), + [anon_sym_mathabs] = ACTIONS(1262), + [anon_sym_matharccos] = ACTIONS(1260), + [anon_sym_matharccosh] = ACTIONS(1262), + [anon_sym_matharcsin] = ACTIONS(1260), + [anon_sym_matharcsinh] = ACTIONS(1262), + [anon_sym_matharctan] = ACTIONS(1260), + [anon_sym_matharctanh] = ACTIONS(1262), + [anon_sym_mathavg] = ACTIONS(1262), + [anon_sym_mathceil] = ACTIONS(1262), + [anon_sym_mathcos] = ACTIONS(1260), + [anon_sym_mathcosh] = ACTIONS(1262), + [anon_sym_mathexp] = ACTIONS(1262), + [anon_sym_mathfloor] = ACTIONS(1262), + [anon_sym_mathln] = ACTIONS(1262), + [anon_sym_mathlog] = ACTIONS(1262), + [anon_sym_mathmax] = ACTIONS(1262), + [anon_sym_mathmedian] = ACTIONS(1262), + [anon_sym_mathmin] = ACTIONS(1262), + [anon_sym_mathmode] = ACTIONS(1262), + [anon_sym_mathproduct] = ACTIONS(1262), + [anon_sym_mathround] = ACTIONS(1262), + [anon_sym_mathsin] = ACTIONS(1260), + [anon_sym_mathsinh] = ACTIONS(1262), + [anon_sym_mathsqrt] = ACTIONS(1262), + [anon_sym_mathstddev] = ACTIONS(1262), + [anon_sym_mathsum] = ACTIONS(1262), + [anon_sym_mathtan] = ACTIONS(1260), + [anon_sym_mathtanh] = ACTIONS(1262), + [anon_sym_mathvariance] = ACTIONS(1262), + [anon_sym_metadataaccess] = ACTIONS(1262), + [anon_sym_metadataset] = ACTIONS(1262), + [anon_sym_pathbasename] = ACTIONS(1262), + [anon_sym_pathdirname] = ACTIONS(1262), + [anon_sym_pathexists] = ACTIONS(1262), + [anon_sym_pathexpand] = ACTIONS(1262), + [anon_sym_pathjoin] = ACTIONS(1262), + [anon_sym_pathparse] = ACTIONS(1262), + [anon_sym_pathrelative_DASHto] = ACTIONS(1262), + [anon_sym_pathsplit] = ACTIONS(1262), + [anon_sym_pathtype] = ACTIONS(1262), + [anon_sym_pluginadd] = ACTIONS(1262), + [anon_sym_pluginlist] = ACTIONS(1262), + [anon_sym_pluginrm] = ACTIONS(1262), + [anon_sym_pluginstop] = ACTIONS(1262), + [anon_sym_polarsagg] = ACTIONS(1260), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1262), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1262), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1262), + [anon_sym_polarsappend] = ACTIONS(1262), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1262), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1262), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1262), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1262), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1262), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1262), + [anon_sym_polarsas] = ACTIONS(1260), + [anon_sym_polarsas_DASHdate] = ACTIONS(1260), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1262), + [anon_sym_polarscache] = ACTIONS(1262), + [anon_sym_polarscast] = ACTIONS(1262), + [anon_sym_polarscol] = ACTIONS(1260), + [anon_sym_polarscollect] = ACTIONS(1262), + [anon_sym_polarscolumns] = ACTIONS(1262), + [anon_sym_polarsconcat] = ACTIONS(1260), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1262), + [anon_sym_polarscontains] = ACTIONS(1262), + [anon_sym_polarscount] = ACTIONS(1260), + [anon_sym_polarscount_DASHnull] = ACTIONS(1262), + [anon_sym_polarscumulative] = ACTIONS(1262), + [anon_sym_polarsdatepart] = ACTIONS(1262), + [anon_sym_polarsdecimal] = ACTIONS(1262), + [anon_sym_polarsdrop] = ACTIONS(1260), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1262), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1262), + [anon_sym_polarsdummies] = ACTIONS(1262), + [anon_sym_polarsexplode] = ACTIONS(1262), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1262), + [anon_sym_polarsfetch] = ACTIONS(1262), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1262), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1262), + [anon_sym_polarsfilter] = ACTIONS(1260), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1262), + [anon_sym_polarsfirst] = ACTIONS(1262), + [anon_sym_polarsflatten] = ACTIONS(1262), + [anon_sym_polarsget] = ACTIONS(1260), + [anon_sym_polarsget_DASHday] = ACTIONS(1262), + [anon_sym_polarsget_DASHhour] = ACTIONS(1262), + [anon_sym_polarsget_DASHminute] = ACTIONS(1262), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1262), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1262), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1262), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1262), + [anon_sym_polarsget_DASHweek] = ACTIONS(1260), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1262), + [anon_sym_polarsget_DASHyear] = ACTIONS(1262), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1262), + [anon_sym_polarsimplode] = ACTIONS(1262), + [anon_sym_polarsinteger] = ACTIONS(1262), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1262), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1262), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1262), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1262), + [anon_sym_polarsis_DASHin] = ACTIONS(1262), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1262), + [anon_sym_polarsis_DASHnull] = ACTIONS(1262), + [anon_sym_polarsis_DASHunique] = ACTIONS(1262), + [anon_sym_polarsjoin] = ACTIONS(1262), + [anon_sym_polarslast] = ACTIONS(1262), + [anon_sym_polarslen] = ACTIONS(1262), + [anon_sym_polarslit] = ACTIONS(1262), + [anon_sym_polarslowercase] = ACTIONS(1262), + [anon_sym_polarsmax] = ACTIONS(1262), + [anon_sym_polarsmean] = ACTIONS(1262), + [anon_sym_polarsmedian] = ACTIONS(1262), + [anon_sym_polarsmin] = ACTIONS(1262), + [anon_sym_polarsn_DASHunique] = ACTIONS(1262), + [anon_sym_polarsnot] = ACTIONS(1262), + [anon_sym_polarsopen] = ACTIONS(1262), + [anon_sym_polarsotherwise] = ACTIONS(1262), + [anon_sym_polarspivot] = ACTIONS(1262), + [anon_sym_polarsprofile] = ACTIONS(1262), + [anon_sym_polarsquantile] = ACTIONS(1262), + [anon_sym_polarsquery] = ACTIONS(1262), + [anon_sym_polarsrename] = ACTIONS(1262), + [anon_sym_polarsreplace] = ACTIONS(1260), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1262), + [anon_sym_polarsreverse] = ACTIONS(1262), + [anon_sym_polarsrolling] = ACTIONS(1262), + [anon_sym_polarssample] = ACTIONS(1262), + [anon_sym_polarssave] = ACTIONS(1262), + [anon_sym_polarsschema] = ACTIONS(1262), + [anon_sym_polarsselect] = ACTIONS(1262), + [anon_sym_polarsset] = ACTIONS(1260), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1262), + [anon_sym_polarsshape] = ACTIONS(1262), + [anon_sym_polarsshift] = ACTIONS(1262), + [anon_sym_polarsslice] = ACTIONS(1262), + [anon_sym_polarssort_DASHby] = ACTIONS(1262), + [anon_sym_polarsstd] = ACTIONS(1262), + [anon_sym_polarsstore_DASHget] = ACTIONS(1262), + [anon_sym_polarsstore_DASHls] = ACTIONS(1262), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1262), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1262), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1262), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1262), + [anon_sym_polarsstrftime] = ACTIONS(1262), + [anon_sym_polarssum] = ACTIONS(1260), + [anon_sym_polarssummary] = ACTIONS(1262), + [anon_sym_polarstake] = ACTIONS(1262), + [anon_sym_polarsunique] = ACTIONS(1262), + [anon_sym_polarsunnest] = ACTIONS(1262), + [anon_sym_polarsunpivot] = ACTIONS(1262), + [anon_sym_polarsuppercase] = ACTIONS(1262), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1262), + [anon_sym_polarsvar] = ACTIONS(1262), + [anon_sym_polarswhen] = ACTIONS(1262), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1262), + [anon_sym_querydb] = ACTIONS(1262), + [anon_sym_querygit] = ACTIONS(1262), + [anon_sym_queryjson] = ACTIONS(1262), + [anon_sym_queryweb] = ACTIONS(1260), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1262), + [anon_sym_queryxml] = ACTIONS(1262), + [anon_sym_randombinary] = ACTIONS(1262), + [anon_sym_randombool] = ACTIONS(1262), + [anon_sym_randomchars] = ACTIONS(1262), + [anon_sym_randomdice] = ACTIONS(1262), + [anon_sym_randomfloat] = ACTIONS(1262), + [anon_sym_randomint] = ACTIONS(1262), + [anon_sym_randomuuid] = ACTIONS(1262), + [anon_sym_rolldown] = ACTIONS(1262), + [anon_sym_rollleft] = ACTIONS(1262), + [anon_sym_rollright] = ACTIONS(1262), + [anon_sym_rollup] = ACTIONS(1262), + [anon_sym_scopealiases] = ACTIONS(1262), + [anon_sym_scopecommands] = ACTIONS(1262), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1262), + [anon_sym_scopeexterns] = ACTIONS(1262), + [anon_sym_scopemodules] = ACTIONS(1262), + [anon_sym_scopevariables] = ACTIONS(1262), + [anon_sym_seqchar] = ACTIONS(1262), + [anon_sym_seqdate] = ACTIONS(1262), + [anon_sym_skipuntil] = ACTIONS(1262), + [anon_sym_skipwhile] = ACTIONS(1262), + [anon_sym_splitcell_DASHpath] = ACTIONS(1262), + [anon_sym_splitchars] = ACTIONS(1262), + [anon_sym_splitcolumn] = ACTIONS(1262), + [anon_sym_splitlist] = ACTIONS(1262), + [anon_sym_splitrow] = ACTIONS(1262), + [anon_sym_splitwords] = ACTIONS(1262), + [anon_sym_storcreate] = ACTIONS(1262), + [anon_sym_stordelete] = ACTIONS(1262), + [anon_sym_storexport] = ACTIONS(1262), + [anon_sym_storimport] = ACTIONS(1262), + [anon_sym_storinsert] = ACTIONS(1262), + [anon_sym_storopen] = ACTIONS(1262), + [anon_sym_storreset] = ACTIONS(1262), + [anon_sym_storupdate] = ACTIONS(1262), + [anon_sym_strbexpand] = ACTIONS(1262), + [anon_sym_strcamel_DASHcase] = ACTIONS(1262), + [anon_sym_strcapitalize] = ACTIONS(1262), + [anon_sym_strcompress] = ACTIONS(1262), + [anon_sym_strcontains] = ACTIONS(1262), + [anon_sym_strdecompress] = ACTIONS(1262), + [anon_sym_strdedent] = ACTIONS(1262), + [anon_sym_strdeunicode] = ACTIONS(1262), + [anon_sym_strdistance] = ACTIONS(1262), + [anon_sym_strdowncase] = ACTIONS(1262), + [anon_sym_strends_DASHwith] = ACTIONS(1262), + [anon_sym_strexpand] = ACTIONS(1262), + [anon_sym_strindent] = ACTIONS(1262), + [anon_sym_strindex_DASHof] = ACTIONS(1262), + [anon_sym_strjoin] = ACTIONS(1262), + [anon_sym_strkebab_DASHcase] = ACTIONS(1262), + [anon_sym_strlength] = ACTIONS(1262), + [anon_sym_strpascal_DASHcase] = ACTIONS(1262), + [anon_sym_strreplace] = ACTIONS(1262), + [anon_sym_strreverse] = ACTIONS(1262), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1262), + [anon_sym_strsimilarity] = ACTIONS(1262), + [anon_sym_strsnake_DASHcase] = ACTIONS(1262), + [anon_sym_strstarts_DASHwith] = ACTIONS(1262), + [anon_sym_strstats] = ACTIONS(1262), + [anon_sym_strsubstring] = ACTIONS(1262), + [anon_sym_strtitle_DASHcase] = ACTIONS(1262), + [anon_sym_strtrim] = ACTIONS(1262), + [anon_sym_strupcase] = ACTIONS(1262), + [anon_sym_strwrap] = ACTIONS(1262), + [anon_sym_syscpu] = ACTIONS(1262), + [anon_sym_sysdisks] = ACTIONS(1262), + [anon_sym_syshost] = ACTIONS(1262), + [anon_sym_sysmem] = ACTIONS(1262), + [anon_sym_sysnet] = ACTIONS(1262), + [anon_sym_systemp] = ACTIONS(1262), + [anon_sym_sysusers] = ACTIONS(1262), + [anon_sym_takeuntil] = ACTIONS(1262), + [anon_sym_takewhile] = ACTIONS(1262), + [anon_sym_termquery] = ACTIONS(1262), + [anon_sym_termsize] = ACTIONS(1262), + [anon_sym_tobz2] = ACTIONS(1262), + [anon_sym_tocsv] = ACTIONS(1262), + [anon_sym_togz] = ACTIONS(1262), + [anon_sym_tohtml] = ACTIONS(1262), + [anon_sym_tojson] = ACTIONS(1262), + [anon_sym_tomd] = ACTIONS(1262), + [anon_sym_tomsgpack] = ACTIONS(1260), + [anon_sym_tomsgpackz] = ACTIONS(1262), + [anon_sym_tonuon] = ACTIONS(1262), + [anon_sym_toparquet] = ACTIONS(1262), + [anon_sym_toplist] = ACTIONS(1262), + [anon_sym_topng] = ACTIONS(1262), + [anon_sym_totext] = ACTIONS(1262), + [anon_sym_totoml] = ACTIONS(1262), + [anon_sym_totsv] = ACTIONS(1262), + [anon_sym_toxml] = ACTIONS(1262), + [anon_sym_toxz] = ACTIONS(1262), + [anon_sym_toyaml] = ACTIONS(1262), + [anon_sym_tozst] = ACTIONS(1262), + [anon_sym_updatecells] = ACTIONS(1262), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1262), + [anon_sym_urldecode] = ACTIONS(1262), + [anon_sym_urlencode] = ACTIONS(1262), + [anon_sym_urljoin] = ACTIONS(1262), + [anon_sym_urlparse] = ACTIONS(1262), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1262), + [anon_sym_viewfiles] = ACTIONS(1262), + [anon_sym_viewir] = ACTIONS(1262), + [anon_sym_viewsource] = ACTIONS(1262), + [anon_sym_viewspan] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1262), }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), + [197] = { + [sym_comment] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(1248), + [anon_sym_POUND_BANG] = ACTIONS(1244), + [anon_sym_export] = ACTIONS(1267), + [anon_sym_alias] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_let_DASHenv] = ACTIONS(1267), + [anon_sym_mut] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [aux_sym_cmd_identifier_token1] = ACTIONS(1267), + [aux_sym_cmd_identifier_token2] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1248), + [aux_sym_cmd_identifier_token4] = ACTIONS(1248), + [aux_sym_cmd_identifier_token5] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1248), + [aux_sym_cmd_identifier_token7] = ACTIONS(1248), + [aux_sym_cmd_identifier_token8] = ACTIONS(1267), + [aux_sym_cmd_identifier_token9] = ACTIONS(1267), + [aux_sym_cmd_identifier_token10] = ACTIONS(1248), + [aux_sym_cmd_identifier_token11] = ACTIONS(1248), + [aux_sym_cmd_identifier_token12] = ACTIONS(1267), + [aux_sym_cmd_identifier_token13] = ACTIONS(1267), + [aux_sym_cmd_identifier_token14] = ACTIONS(1267), + [aux_sym_cmd_identifier_token15] = ACTIONS(1267), + [aux_sym_cmd_identifier_token16] = ACTIONS(1248), + [aux_sym_cmd_identifier_token17] = ACTIONS(1248), + [aux_sym_cmd_identifier_token18] = ACTIONS(1267), + [aux_sym_cmd_identifier_token19] = ACTIONS(1248), + [aux_sym_cmd_identifier_token20] = ACTIONS(1248), + [aux_sym_cmd_identifier_token21] = ACTIONS(1248), + [aux_sym_cmd_identifier_token22] = ACTIONS(1248), + [aux_sym_cmd_identifier_token23] = ACTIONS(1248), + [aux_sym_cmd_identifier_token24] = ACTIONS(1248), + [aux_sym_cmd_identifier_token25] = ACTIONS(1248), + [aux_sym_cmd_identifier_token26] = ACTIONS(1248), + [aux_sym_cmd_identifier_token27] = ACTIONS(1248), + [aux_sym_cmd_identifier_token28] = ACTIONS(1248), + [aux_sym_cmd_identifier_token29] = ACTIONS(1248), + [aux_sym_cmd_identifier_token30] = ACTIONS(1248), + [aux_sym_cmd_identifier_token31] = ACTIONS(1248), + [aux_sym_cmd_identifier_token32] = ACTIONS(1267), + [aux_sym_cmd_identifier_token33] = ACTIONS(1248), + [aux_sym_cmd_identifier_token34] = ACTIONS(1267), + [aux_sym_cmd_identifier_token35] = ACTIONS(1248), + [aux_sym_cmd_identifier_token36] = ACTIONS(1248), + [aux_sym_cmd_identifier_token37] = ACTIONS(1248), + [aux_sym_cmd_identifier_token38] = ACTIONS(1267), + [aux_sym_cmd_identifier_token39] = ACTIONS(1248), + [aux_sym_cmd_identifier_token40] = ACTIONS(1248), + [sym__newline] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_def] = ACTIONS(1267), + [anon_sym_export_DASHenv] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_module] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_error] = ACTIONS(1267), + [anon_sym_DASH2] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_source] = ACTIONS(1267), + [anon_sym_source_DASHenv] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_hide] = ACTIONS(1267), + [anon_sym_hide_DASHenv] = ACTIONS(1267), + [anon_sym_overlay] = ACTIONS(1267), + [anon_sym_where] = ACTIONS(1248), + [aux_sym_expr_unary_token1] = ACTIONS(1248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), + [anon_sym_DOT_DOT_LT] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1267), + [aux_sym__val_number_decimal_token2] = ACTIONS(1248), + [aux_sym__val_number_decimal_token3] = ACTIONS(1248), + [aux_sym__val_number_decimal_token4] = ACTIONS(1248), + [aux_sym__val_number_token1] = ACTIONS(1248), + [aux_sym__val_number_token2] = ACTIONS(1248), + [aux_sym__val_number_token3] = ACTIONS(1248), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1267), + [anon_sym_0o] = ACTIONS(1267), + [anon_sym_0x] = ACTIONS(1267), + [sym_val_date] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym__str_single_quotes] = ACTIONS(1248), + [sym__str_back_ticks] = ACTIONS(1248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1248), + [aux_sym_env_var_token1] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym_ansigradient] = ACTIONS(1248), + [anon_sym_ansilink] = ACTIONS(1248), + [anon_sym_ansistrip] = ACTIONS(1248), + [anon_sym_bitsand] = ACTIONS(1248), + [anon_sym_bitsnot] = ACTIONS(1248), + [anon_sym_bitsor] = ACTIONS(1248), + [anon_sym_bitsrol] = ACTIONS(1248), + [anon_sym_bitsror] = ACTIONS(1248), + [anon_sym_bitsshl] = ACTIONS(1248), + [anon_sym_bitsshr] = ACTIONS(1248), + [anon_sym_bitsxor] = ACTIONS(1248), + [anon_sym_bytesadd] = ACTIONS(1248), + [anon_sym_bytesat] = ACTIONS(1248), + [anon_sym_bytesbuild] = ACTIONS(1248), + [anon_sym_bytescollect] = ACTIONS(1248), + [anon_sym_bytesends_DASHwith] = ACTIONS(1248), + [anon_sym_bytesindex_DASHof] = ACTIONS(1248), + [anon_sym_byteslength] = ACTIONS(1248), + [anon_sym_bytesremove] = ACTIONS(1248), + [anon_sym_bytesreplace] = ACTIONS(1248), + [anon_sym_bytesreverse] = ACTIONS(1248), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1248), + [anon_sym_commandlineedit] = ACTIONS(1248), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1248), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1248), + [anon_sym_configenv] = ACTIONS(1248), + [anon_sym_confignu] = ACTIONS(1248), + [anon_sym_configreset] = ACTIONS(1248), + [anon_sym_dateformat] = ACTIONS(1248), + [anon_sym_datehumanize] = ACTIONS(1248), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1248), + [anon_sym_datenow] = ACTIONS(1248), + [anon_sym_dateto_DASHrecord] = ACTIONS(1248), + [anon_sym_dateto_DASHtable] = ACTIONS(1248), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1248), + [anon_sym_debuginfo] = ACTIONS(1248), + [anon_sym_debugprofile] = ACTIONS(1248), + [anon_sym_decodebase32] = ACTIONS(1267), + [anon_sym_decodebase32hex] = ACTIONS(1248), + [anon_sym_decodebase64] = ACTIONS(1248), + [anon_sym_decodehex] = ACTIONS(1248), + [anon_sym_detectcolumns] = ACTIONS(1248), + [anon_sym_dropcolumn] = ACTIONS(1248), + [anon_sym_dropnth] = ACTIONS(1248), + [anon_sym_dtadd] = ACTIONS(1248), + [anon_sym_dtdiff] = ACTIONS(1248), + [anon_sym_dtformat] = ACTIONS(1248), + [anon_sym_dtnow] = ACTIONS(1248), + [anon_sym_dtpart] = ACTIONS(1248), + [anon_sym_dtto] = ACTIONS(1248), + [anon_sym_dtutcnow] = ACTIONS(1248), + [anon_sym_eachwhile] = ACTIONS(1248), + [anon_sym_encodebase32] = ACTIONS(1267), + [anon_sym_encodebase32hex] = ACTIONS(1248), + [anon_sym_encodebase64] = ACTIONS(1248), + [anon_sym_encodehex] = ACTIONS(1248), + [anon_sym_errormake] = ACTIONS(1248), + [anon_sym_exploreir] = ACTIONS(1248), + [anon_sym_formatdate] = ACTIONS(1248), + [anon_sym_formatduration] = ACTIONS(1248), + [anon_sym_formatfilesize] = ACTIONS(1248), + [anon_sym_formatpattern] = ACTIONS(1248), + [anon_sym_frombz2] = ACTIONS(1248), + [anon_sym_fromcsv] = ACTIONS(1248), + [anon_sym_fromeml] = ACTIONS(1248), + [anon_sym_fromgz] = ACTIONS(1248), + [anon_sym_fromics] = ACTIONS(1248), + [anon_sym_fromini] = ACTIONS(1248), + [anon_sym_fromjson] = ACTIONS(1248), + [anon_sym_frommsgpack] = ACTIONS(1267), + [anon_sym_frommsgpackz] = ACTIONS(1248), + [anon_sym_fromnuon] = ACTIONS(1248), + [anon_sym_fromods] = ACTIONS(1248), + [anon_sym_fromparquet] = ACTIONS(1248), + [anon_sym_fromplist] = ACTIONS(1248), + [anon_sym_frompng] = ACTIONS(1248), + [anon_sym_fromssv] = ACTIONS(1248), + [anon_sym_fromtoml] = ACTIONS(1248), + [anon_sym_fromtsv] = ACTIONS(1248), + [anon_sym_fromurl] = ACTIONS(1248), + [anon_sym_fromvcf] = ACTIONS(1248), + [anon_sym_fromxlsx] = ACTIONS(1248), + [anon_sym_fromxml] = ACTIONS(1248), + [anon_sym_fromxz] = ACTIONS(1248), + [anon_sym_fromyaml] = ACTIONS(1248), + [anon_sym_fromyml] = ACTIONS(1248), + [anon_sym_fromzst] = ACTIONS(1248), + [anon_sym_hashmd5] = ACTIONS(1248), + [anon_sym_hashsha256] = ACTIONS(1248), + [anon_sym_helpaliases] = ACTIONS(1248), + [anon_sym_helpcommands] = ACTIONS(1248), + [anon_sym_helpescapes] = ACTIONS(1248), + [anon_sym_helpexterns] = ACTIONS(1248), + [anon_sym_helpmodules] = ACTIONS(1248), + [anon_sym_helpoperators] = ACTIONS(1248), + [anon_sym_historyimport] = ACTIONS(1248), + [anon_sym_historysession] = ACTIONS(1248), + [anon_sym_httpdelete] = ACTIONS(1248), + [anon_sym_httpget] = ACTIONS(1248), + [anon_sym_httphead] = ACTIONS(1248), + [anon_sym_httpoptions] = ACTIONS(1248), + [anon_sym_httppatch] = ACTIONS(1248), + [anon_sym_httppost] = ACTIONS(1248), + [anon_sym_httpput] = ACTIONS(1248), + [anon_sym_inputlist] = ACTIONS(1267), + [anon_sym_inputlisten] = ACTIONS(1248), + [anon_sym_intobinary] = ACTIONS(1248), + [anon_sym_intobits] = ACTIONS(1248), + [anon_sym_intobool] = ACTIONS(1248), + [anon_sym_intocell_DASHpath] = ACTIONS(1248), + [anon_sym_intodatetime] = ACTIONS(1248), + [anon_sym_intoduration] = ACTIONS(1248), + [anon_sym_intofilesize] = ACTIONS(1248), + [anon_sym_intofloat] = ACTIONS(1248), + [anon_sym_intoglob] = ACTIONS(1248), + [anon_sym_intoint] = ACTIONS(1248), + [anon_sym_intorecord] = ACTIONS(1248), + [anon_sym_intosqlite] = ACTIONS(1248), + [anon_sym_intostring] = ACTIONS(1248), + [anon_sym_intovalue] = ACTIONS(1248), + [anon_sym_jsonpath] = ACTIONS(1248), + [anon_sym_keybindingsdefault] = ACTIONS(1248), + [anon_sym_keybindingslist] = ACTIONS(1267), + [anon_sym_keybindingslisten] = ACTIONS(1248), + [anon_sym_mathabs] = ACTIONS(1248), + [anon_sym_matharccos] = ACTIONS(1267), + [anon_sym_matharccosh] = ACTIONS(1248), + [anon_sym_matharcsin] = ACTIONS(1267), + [anon_sym_matharcsinh] = ACTIONS(1248), + [anon_sym_matharctan] = ACTIONS(1267), + [anon_sym_matharctanh] = ACTIONS(1248), + [anon_sym_mathavg] = ACTIONS(1248), + [anon_sym_mathceil] = ACTIONS(1248), + [anon_sym_mathcos] = ACTIONS(1267), + [anon_sym_mathcosh] = ACTIONS(1248), + [anon_sym_mathexp] = ACTIONS(1248), + [anon_sym_mathfloor] = ACTIONS(1248), + [anon_sym_mathln] = ACTIONS(1248), + [anon_sym_mathlog] = ACTIONS(1248), + [anon_sym_mathmax] = ACTIONS(1248), + [anon_sym_mathmedian] = ACTIONS(1248), + [anon_sym_mathmin] = ACTIONS(1248), + [anon_sym_mathmode] = ACTIONS(1248), + [anon_sym_mathproduct] = ACTIONS(1248), + [anon_sym_mathround] = ACTIONS(1248), + [anon_sym_mathsin] = ACTIONS(1267), + [anon_sym_mathsinh] = ACTIONS(1248), + [anon_sym_mathsqrt] = ACTIONS(1248), + [anon_sym_mathstddev] = ACTIONS(1248), + [anon_sym_mathsum] = ACTIONS(1248), + [anon_sym_mathtan] = ACTIONS(1267), + [anon_sym_mathtanh] = ACTIONS(1248), + [anon_sym_mathvariance] = ACTIONS(1248), + [anon_sym_metadataaccess] = ACTIONS(1248), + [anon_sym_metadataset] = ACTIONS(1248), + [anon_sym_pathbasename] = ACTIONS(1248), + [anon_sym_pathdirname] = ACTIONS(1248), + [anon_sym_pathexists] = ACTIONS(1248), + [anon_sym_pathexpand] = ACTIONS(1248), + [anon_sym_pathjoin] = ACTIONS(1248), + [anon_sym_pathparse] = ACTIONS(1248), + [anon_sym_pathrelative_DASHto] = ACTIONS(1248), + [anon_sym_pathsplit] = ACTIONS(1248), + [anon_sym_pathtype] = ACTIONS(1248), + [anon_sym_pluginadd] = ACTIONS(1248), + [anon_sym_pluginlist] = ACTIONS(1248), + [anon_sym_pluginrm] = ACTIONS(1248), + [anon_sym_pluginstop] = ACTIONS(1248), + [anon_sym_polarsagg] = ACTIONS(1267), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1248), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1248), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsappend] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1248), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1248), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1248), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1248), + [anon_sym_polarsas] = ACTIONS(1267), + [anon_sym_polarsas_DASHdate] = ACTIONS(1267), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1248), + [anon_sym_polarscache] = ACTIONS(1248), + [anon_sym_polarscast] = ACTIONS(1248), + [anon_sym_polarscol] = ACTIONS(1267), + [anon_sym_polarscollect] = ACTIONS(1248), + [anon_sym_polarscolumns] = ACTIONS(1248), + [anon_sym_polarsconcat] = ACTIONS(1267), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1248), + [anon_sym_polarscontains] = ACTIONS(1248), + [anon_sym_polarscount] = ACTIONS(1267), + [anon_sym_polarscount_DASHnull] = ACTIONS(1248), + [anon_sym_polarscumulative] = ACTIONS(1248), + [anon_sym_polarsdatepart] = ACTIONS(1248), + [anon_sym_polarsdecimal] = ACTIONS(1248), + [anon_sym_polarsdrop] = ACTIONS(1267), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1248), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1248), + [anon_sym_polarsdummies] = ACTIONS(1248), + [anon_sym_polarsexplode] = ACTIONS(1248), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1248), + [anon_sym_polarsfetch] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1248), + [anon_sym_polarsfilter] = ACTIONS(1267), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1248), + [anon_sym_polarsfirst] = ACTIONS(1248), + [anon_sym_polarsflatten] = ACTIONS(1248), + [anon_sym_polarsget] = ACTIONS(1267), + [anon_sym_polarsget_DASHday] = ACTIONS(1248), + [anon_sym_polarsget_DASHhour] = ACTIONS(1248), + [anon_sym_polarsget_DASHminute] = ACTIONS(1248), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1248), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1248), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHweek] = ACTIONS(1267), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1248), + [anon_sym_polarsget_DASHyear] = ACTIONS(1248), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1248), + [anon_sym_polarsimplode] = ACTIONS(1248), + [anon_sym_polarsinteger] = ACTIONS(1248), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1248), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1248), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1248), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1248), + [anon_sym_polarsis_DASHin] = ACTIONS(1248), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHunique] = ACTIONS(1248), + [anon_sym_polarsjoin] = ACTIONS(1248), + [anon_sym_polarslast] = ACTIONS(1248), + [anon_sym_polarslen] = ACTIONS(1248), + [anon_sym_polarslit] = ACTIONS(1248), + [anon_sym_polarslowercase] = ACTIONS(1248), + [anon_sym_polarsmax] = ACTIONS(1248), + [anon_sym_polarsmean] = ACTIONS(1248), + [anon_sym_polarsmedian] = ACTIONS(1248), + [anon_sym_polarsmin] = ACTIONS(1248), + [anon_sym_polarsn_DASHunique] = ACTIONS(1248), + [anon_sym_polarsnot] = ACTIONS(1248), + [anon_sym_polarsopen] = ACTIONS(1248), + [anon_sym_polarsotherwise] = ACTIONS(1248), + [anon_sym_polarspivot] = ACTIONS(1248), + [anon_sym_polarsprofile] = ACTIONS(1248), + [anon_sym_polarsquantile] = ACTIONS(1248), + [anon_sym_polarsquery] = ACTIONS(1248), + [anon_sym_polarsrename] = ACTIONS(1248), + [anon_sym_polarsreplace] = ACTIONS(1267), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1248), + [anon_sym_polarsreverse] = ACTIONS(1248), + [anon_sym_polarsrolling] = ACTIONS(1248), + [anon_sym_polarssample] = ACTIONS(1248), + [anon_sym_polarssave] = ACTIONS(1248), + [anon_sym_polarsschema] = ACTIONS(1248), + [anon_sym_polarsselect] = ACTIONS(1248), + [anon_sym_polarsset] = ACTIONS(1267), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1248), + [anon_sym_polarsshape] = ACTIONS(1248), + [anon_sym_polarsshift] = ACTIONS(1248), + [anon_sym_polarsslice] = ACTIONS(1248), + [anon_sym_polarssort_DASHby] = ACTIONS(1248), + [anon_sym_polarsstd] = ACTIONS(1248), + [anon_sym_polarsstore_DASHget] = ACTIONS(1248), + [anon_sym_polarsstore_DASHls] = ACTIONS(1248), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1248), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1248), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1248), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1248), + [anon_sym_polarsstrftime] = ACTIONS(1248), + [anon_sym_polarssum] = ACTIONS(1267), + [anon_sym_polarssummary] = ACTIONS(1248), + [anon_sym_polarstake] = ACTIONS(1248), + [anon_sym_polarsunique] = ACTIONS(1248), + [anon_sym_polarsunnest] = ACTIONS(1248), + [anon_sym_polarsunpivot] = ACTIONS(1248), + [anon_sym_polarsuppercase] = ACTIONS(1248), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1248), + [anon_sym_polarsvar] = ACTIONS(1248), + [anon_sym_polarswhen] = ACTIONS(1248), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1248), + [anon_sym_querydb] = ACTIONS(1248), + [anon_sym_querygit] = ACTIONS(1248), + [anon_sym_queryjson] = ACTIONS(1248), + [anon_sym_queryweb] = ACTIONS(1267), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1248), + [anon_sym_queryxml] = ACTIONS(1248), + [anon_sym_randombinary] = ACTIONS(1248), + [anon_sym_randombool] = ACTIONS(1248), + [anon_sym_randomchars] = ACTIONS(1248), + [anon_sym_randomdice] = ACTIONS(1248), + [anon_sym_randomfloat] = ACTIONS(1248), + [anon_sym_randomint] = ACTIONS(1248), + [anon_sym_randomuuid] = ACTIONS(1248), + [anon_sym_rolldown] = ACTIONS(1248), + [anon_sym_rollleft] = ACTIONS(1248), + [anon_sym_rollright] = ACTIONS(1248), + [anon_sym_rollup] = ACTIONS(1248), + [anon_sym_scopealiases] = ACTIONS(1248), + [anon_sym_scopecommands] = ACTIONS(1248), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1248), + [anon_sym_scopeexterns] = ACTIONS(1248), + [anon_sym_scopemodules] = ACTIONS(1248), + [anon_sym_scopevariables] = ACTIONS(1248), + [anon_sym_seqchar] = ACTIONS(1248), + [anon_sym_seqdate] = ACTIONS(1248), + [anon_sym_skipuntil] = ACTIONS(1248), + [anon_sym_skipwhile] = ACTIONS(1248), + [anon_sym_splitcell_DASHpath] = ACTIONS(1248), + [anon_sym_splitchars] = ACTIONS(1248), + [anon_sym_splitcolumn] = ACTIONS(1248), + [anon_sym_splitlist] = ACTIONS(1248), + [anon_sym_splitrow] = ACTIONS(1248), + [anon_sym_splitwords] = ACTIONS(1248), + [anon_sym_storcreate] = ACTIONS(1248), + [anon_sym_stordelete] = ACTIONS(1248), + [anon_sym_storexport] = ACTIONS(1248), + [anon_sym_storimport] = ACTIONS(1248), + [anon_sym_storinsert] = ACTIONS(1248), + [anon_sym_storopen] = ACTIONS(1248), + [anon_sym_storreset] = ACTIONS(1248), + [anon_sym_storupdate] = ACTIONS(1248), + [anon_sym_strbexpand] = ACTIONS(1248), + [anon_sym_strcamel_DASHcase] = ACTIONS(1248), + [anon_sym_strcapitalize] = ACTIONS(1248), + [anon_sym_strcompress] = ACTIONS(1248), + [anon_sym_strcontains] = ACTIONS(1248), + [anon_sym_strdecompress] = ACTIONS(1248), + [anon_sym_strdedent] = ACTIONS(1248), + [anon_sym_strdeunicode] = ACTIONS(1248), + [anon_sym_strdistance] = ACTIONS(1248), + [anon_sym_strdowncase] = ACTIONS(1248), + [anon_sym_strends_DASHwith] = ACTIONS(1248), + [anon_sym_strexpand] = ACTIONS(1248), + [anon_sym_strindent] = ACTIONS(1248), + [anon_sym_strindex_DASHof] = ACTIONS(1248), + [anon_sym_strjoin] = ACTIONS(1248), + [anon_sym_strkebab_DASHcase] = ACTIONS(1248), + [anon_sym_strlength] = ACTIONS(1248), + [anon_sym_strpascal_DASHcase] = ACTIONS(1248), + [anon_sym_strreplace] = ACTIONS(1248), + [anon_sym_strreverse] = ACTIONS(1248), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strsimilarity] = ACTIONS(1248), + [anon_sym_strsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strstarts_DASHwith] = ACTIONS(1248), + [anon_sym_strstats] = ACTIONS(1248), + [anon_sym_strsubstring] = ACTIONS(1248), + [anon_sym_strtitle_DASHcase] = ACTIONS(1248), + [anon_sym_strtrim] = ACTIONS(1248), + [anon_sym_strupcase] = ACTIONS(1248), + [anon_sym_strwrap] = ACTIONS(1248), + [anon_sym_syscpu] = ACTIONS(1248), + [anon_sym_sysdisks] = ACTIONS(1248), + [anon_sym_syshost] = ACTIONS(1248), + [anon_sym_sysmem] = ACTIONS(1248), + [anon_sym_sysnet] = ACTIONS(1248), + [anon_sym_systemp] = ACTIONS(1248), + [anon_sym_sysusers] = ACTIONS(1248), + [anon_sym_takeuntil] = ACTIONS(1248), + [anon_sym_takewhile] = ACTIONS(1248), + [anon_sym_termquery] = ACTIONS(1248), + [anon_sym_termsize] = ACTIONS(1248), + [anon_sym_tobz2] = ACTIONS(1248), + [anon_sym_tocsv] = ACTIONS(1248), + [anon_sym_togz] = ACTIONS(1248), + [anon_sym_tohtml] = ACTIONS(1248), + [anon_sym_tojson] = ACTIONS(1248), + [anon_sym_tomd] = ACTIONS(1248), + [anon_sym_tomsgpack] = ACTIONS(1267), + [anon_sym_tomsgpackz] = ACTIONS(1248), + [anon_sym_tonuon] = ACTIONS(1248), + [anon_sym_toparquet] = ACTIONS(1248), + [anon_sym_toplist] = ACTIONS(1248), + [anon_sym_topng] = ACTIONS(1248), + [anon_sym_totext] = ACTIONS(1248), + [anon_sym_totoml] = ACTIONS(1248), + [anon_sym_totsv] = ACTIONS(1248), + [anon_sym_toxml] = ACTIONS(1248), + [anon_sym_toxz] = ACTIONS(1248), + [anon_sym_toyaml] = ACTIONS(1248), + [anon_sym_tozst] = ACTIONS(1248), + [anon_sym_updatecells] = ACTIONS(1248), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1248), + [anon_sym_urldecode] = ACTIONS(1248), + [anon_sym_urlencode] = ACTIONS(1248), + [anon_sym_urljoin] = ACTIONS(1248), + [anon_sym_urlparse] = ACTIONS(1248), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1248), + [anon_sym_viewfiles] = ACTIONS(1248), + [anon_sym_viewir] = ACTIONS(1248), + [anon_sym_viewsource] = ACTIONS(1248), + [anon_sym_viewspan] = ACTIONS(1248), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), + [sym_raw_string_begin] = ACTIONS(1248), }, - [390] = { - [sym_path] = STATE(497), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(390), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(973), - [aux_sym_cmd_identifier_token23] = ACTIONS(973), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(973), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(973), - [aux_sym_cmd_identifier_token28] = ACTIONS(973), - [aux_sym_cmd_identifier_token29] = ACTIONS(973), - [aux_sym_cmd_identifier_token30] = ACTIONS(973), - [aux_sym_cmd_identifier_token31] = ACTIONS(973), - [aux_sym_cmd_identifier_token32] = ACTIONS(973), - [aux_sym_cmd_identifier_token33] = ACTIONS(973), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(973), - [aux_sym_cmd_identifier_token36] = ACTIONS(973), - [aux_sym_cmd_identifier_token37] = ACTIONS(973), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [198] = { + [sym_comment] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1258), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [391] = { - [sym_cell_path] = STATE(593), - [sym_path] = STATE(529), - [sym_comment] = STATE(391), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [aux_sym_record_entry_token1] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [199] = { + [sym_comment] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1256), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [392] = { - [sym_comment] = STATE(392), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1835), - [aux_sym__immediate_decimal_token2] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [200] = { + [sym_comment] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1262), + [anon_sym_export] = ACTIONS(1260), + [anon_sym_alias] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_let_DASHenv] = ACTIONS(1260), + [anon_sym_mut] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [aux_sym_cmd_identifier_token1] = ACTIONS(1260), + [aux_sym_cmd_identifier_token2] = ACTIONS(1262), + [aux_sym_cmd_identifier_token3] = ACTIONS(1262), + [aux_sym_cmd_identifier_token4] = ACTIONS(1262), + [aux_sym_cmd_identifier_token5] = ACTIONS(1262), + [aux_sym_cmd_identifier_token6] = ACTIONS(1262), + [aux_sym_cmd_identifier_token7] = ACTIONS(1262), + [aux_sym_cmd_identifier_token8] = ACTIONS(1260), + [aux_sym_cmd_identifier_token9] = ACTIONS(1260), + [aux_sym_cmd_identifier_token10] = ACTIONS(1262), + [aux_sym_cmd_identifier_token11] = ACTIONS(1262), + [aux_sym_cmd_identifier_token12] = ACTIONS(1260), + [aux_sym_cmd_identifier_token13] = ACTIONS(1260), + [aux_sym_cmd_identifier_token14] = ACTIONS(1260), + [aux_sym_cmd_identifier_token15] = ACTIONS(1260), + [aux_sym_cmd_identifier_token16] = ACTIONS(1262), + [aux_sym_cmd_identifier_token17] = ACTIONS(1262), + [aux_sym_cmd_identifier_token18] = ACTIONS(1260), + [aux_sym_cmd_identifier_token19] = ACTIONS(1262), + [aux_sym_cmd_identifier_token20] = ACTIONS(1262), + [aux_sym_cmd_identifier_token21] = ACTIONS(1262), + [aux_sym_cmd_identifier_token22] = ACTIONS(1262), + [aux_sym_cmd_identifier_token23] = ACTIONS(1262), + [aux_sym_cmd_identifier_token24] = ACTIONS(1262), + [aux_sym_cmd_identifier_token25] = ACTIONS(1262), + [aux_sym_cmd_identifier_token26] = ACTIONS(1262), + [aux_sym_cmd_identifier_token27] = ACTIONS(1262), + [aux_sym_cmd_identifier_token28] = ACTIONS(1262), + [aux_sym_cmd_identifier_token29] = ACTIONS(1262), + [aux_sym_cmd_identifier_token30] = ACTIONS(1262), + [aux_sym_cmd_identifier_token31] = ACTIONS(1262), + [aux_sym_cmd_identifier_token32] = ACTIONS(1260), + [aux_sym_cmd_identifier_token33] = ACTIONS(1262), + [aux_sym_cmd_identifier_token34] = ACTIONS(1260), + [aux_sym_cmd_identifier_token35] = ACTIONS(1262), + [aux_sym_cmd_identifier_token36] = ACTIONS(1262), + [aux_sym_cmd_identifier_token37] = ACTIONS(1262), + [aux_sym_cmd_identifier_token38] = ACTIONS(1260), + [aux_sym_cmd_identifier_token39] = ACTIONS(1262), + [aux_sym_cmd_identifier_token40] = ACTIONS(1262), + [sym__newline] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_def] = ACTIONS(1260), + [anon_sym_export_DASHenv] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_module] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1260), + [anon_sym_error] = ACTIONS(1260), + [anon_sym_DASH2] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_try] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_source] = ACTIONS(1260), + [anon_sym_source_DASHenv] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_hide] = ACTIONS(1260), + [anon_sym_hide_DASHenv] = ACTIONS(1260), + [anon_sym_overlay] = ACTIONS(1260), + [anon_sym_where] = ACTIONS(1262), + [aux_sym_expr_unary_token1] = ACTIONS(1262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1262), + [anon_sym_DOT_DOT_LT] = ACTIONS(1262), + [anon_sym_null] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1260), + [aux_sym__val_number_decimal_token2] = ACTIONS(1262), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), + [aux_sym__val_number_token1] = ACTIONS(1262), + [aux_sym__val_number_token2] = ACTIONS(1262), + [aux_sym__val_number_token3] = ACTIONS(1262), + [aux_sym__val_number_token4] = ACTIONS(1260), + [aux_sym__val_number_token5] = ACTIONS(1260), + [aux_sym__val_number_token6] = ACTIONS(1260), + [anon_sym_0b] = ACTIONS(1260), + [anon_sym_0o] = ACTIONS(1260), + [anon_sym_0x] = ACTIONS(1260), + [sym_val_date] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1262), + [sym__str_back_ticks] = ACTIONS(1262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1262), + [aux_sym_env_var_token1] = ACTIONS(1260), + [anon_sym_CARET] = ACTIONS(1262), + [anon_sym_ansigradient] = ACTIONS(1262), + [anon_sym_ansilink] = ACTIONS(1262), + [anon_sym_ansistrip] = ACTIONS(1262), + [anon_sym_bitsand] = ACTIONS(1262), + [anon_sym_bitsnot] = ACTIONS(1262), + [anon_sym_bitsor] = ACTIONS(1262), + [anon_sym_bitsrol] = ACTIONS(1262), + [anon_sym_bitsror] = ACTIONS(1262), + [anon_sym_bitsshl] = ACTIONS(1262), + [anon_sym_bitsshr] = ACTIONS(1262), + [anon_sym_bitsxor] = ACTIONS(1262), + [anon_sym_bytesadd] = ACTIONS(1262), + [anon_sym_bytesat] = ACTIONS(1262), + [anon_sym_bytesbuild] = ACTIONS(1262), + [anon_sym_bytescollect] = ACTIONS(1262), + [anon_sym_bytesends_DASHwith] = ACTIONS(1262), + [anon_sym_bytesindex_DASHof] = ACTIONS(1262), + [anon_sym_byteslength] = ACTIONS(1262), + [anon_sym_bytesremove] = ACTIONS(1262), + [anon_sym_bytesreplace] = ACTIONS(1262), + [anon_sym_bytesreverse] = ACTIONS(1262), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1262), + [anon_sym_commandlineedit] = ACTIONS(1262), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1262), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1262), + [anon_sym_configenv] = ACTIONS(1262), + [anon_sym_confignu] = ACTIONS(1262), + [anon_sym_configreset] = ACTIONS(1262), + [anon_sym_dateformat] = ACTIONS(1262), + [anon_sym_datehumanize] = ACTIONS(1262), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1262), + [anon_sym_datenow] = ACTIONS(1262), + [anon_sym_dateto_DASHrecord] = ACTIONS(1262), + [anon_sym_dateto_DASHtable] = ACTIONS(1262), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1262), + [anon_sym_debuginfo] = ACTIONS(1262), + [anon_sym_debugprofile] = ACTIONS(1262), + [anon_sym_decodebase32] = ACTIONS(1260), + [anon_sym_decodebase32hex] = ACTIONS(1262), + [anon_sym_decodebase64] = ACTIONS(1262), + [anon_sym_decodehex] = ACTIONS(1262), + [anon_sym_detectcolumns] = ACTIONS(1262), + [anon_sym_dropcolumn] = ACTIONS(1262), + [anon_sym_dropnth] = ACTIONS(1262), + [anon_sym_dtadd] = ACTIONS(1262), + [anon_sym_dtdiff] = ACTIONS(1262), + [anon_sym_dtformat] = ACTIONS(1262), + [anon_sym_dtnow] = ACTIONS(1262), + [anon_sym_dtpart] = ACTIONS(1262), + [anon_sym_dtto] = ACTIONS(1262), + [anon_sym_dtutcnow] = ACTIONS(1262), + [anon_sym_eachwhile] = ACTIONS(1262), + [anon_sym_encodebase32] = ACTIONS(1260), + [anon_sym_encodebase32hex] = ACTIONS(1262), + [anon_sym_encodebase64] = ACTIONS(1262), + [anon_sym_encodehex] = ACTIONS(1262), + [anon_sym_errormake] = ACTIONS(1262), + [anon_sym_exploreir] = ACTIONS(1262), + [anon_sym_formatdate] = ACTIONS(1262), + [anon_sym_formatduration] = ACTIONS(1262), + [anon_sym_formatfilesize] = ACTIONS(1262), + [anon_sym_formatpattern] = ACTIONS(1262), + [anon_sym_frombz2] = ACTIONS(1262), + [anon_sym_fromcsv] = ACTIONS(1262), + [anon_sym_fromeml] = ACTIONS(1262), + [anon_sym_fromgz] = ACTIONS(1262), + [anon_sym_fromics] = ACTIONS(1262), + [anon_sym_fromini] = ACTIONS(1262), + [anon_sym_fromjson] = ACTIONS(1262), + [anon_sym_frommsgpack] = ACTIONS(1260), + [anon_sym_frommsgpackz] = ACTIONS(1262), + [anon_sym_fromnuon] = ACTIONS(1262), + [anon_sym_fromods] = ACTIONS(1262), + [anon_sym_fromparquet] = ACTIONS(1262), + [anon_sym_fromplist] = ACTIONS(1262), + [anon_sym_frompng] = ACTIONS(1262), + [anon_sym_fromssv] = ACTIONS(1262), + [anon_sym_fromtoml] = ACTIONS(1262), + [anon_sym_fromtsv] = ACTIONS(1262), + [anon_sym_fromurl] = ACTIONS(1262), + [anon_sym_fromvcf] = ACTIONS(1262), + [anon_sym_fromxlsx] = ACTIONS(1262), + [anon_sym_fromxml] = ACTIONS(1262), + [anon_sym_fromxz] = ACTIONS(1262), + [anon_sym_fromyaml] = ACTIONS(1262), + [anon_sym_fromyml] = ACTIONS(1262), + [anon_sym_fromzst] = ACTIONS(1262), + [anon_sym_hashmd5] = ACTIONS(1262), + [anon_sym_hashsha256] = ACTIONS(1262), + [anon_sym_helpaliases] = ACTIONS(1262), + [anon_sym_helpcommands] = ACTIONS(1262), + [anon_sym_helpescapes] = ACTIONS(1262), + [anon_sym_helpexterns] = ACTIONS(1262), + [anon_sym_helpmodules] = ACTIONS(1262), + [anon_sym_helpoperators] = ACTIONS(1262), + [anon_sym_historyimport] = ACTIONS(1262), + [anon_sym_historysession] = ACTIONS(1262), + [anon_sym_httpdelete] = ACTIONS(1262), + [anon_sym_httpget] = ACTIONS(1262), + [anon_sym_httphead] = ACTIONS(1262), + [anon_sym_httpoptions] = ACTIONS(1262), + [anon_sym_httppatch] = ACTIONS(1262), + [anon_sym_httppost] = ACTIONS(1262), + [anon_sym_httpput] = ACTIONS(1262), + [anon_sym_inputlist] = ACTIONS(1260), + [anon_sym_inputlisten] = ACTIONS(1262), + [anon_sym_intobinary] = ACTIONS(1262), + [anon_sym_intobits] = ACTIONS(1262), + [anon_sym_intobool] = ACTIONS(1262), + [anon_sym_intocell_DASHpath] = ACTIONS(1262), + [anon_sym_intodatetime] = ACTIONS(1262), + [anon_sym_intoduration] = ACTIONS(1262), + [anon_sym_intofilesize] = ACTIONS(1262), + [anon_sym_intofloat] = ACTIONS(1262), + [anon_sym_intoglob] = ACTIONS(1262), + [anon_sym_intoint] = ACTIONS(1262), + [anon_sym_intorecord] = ACTIONS(1262), + [anon_sym_intosqlite] = ACTIONS(1262), + [anon_sym_intostring] = ACTIONS(1262), + [anon_sym_intovalue] = ACTIONS(1262), + [anon_sym_jsonpath] = ACTIONS(1262), + [anon_sym_keybindingsdefault] = ACTIONS(1262), + [anon_sym_keybindingslist] = ACTIONS(1260), + [anon_sym_keybindingslisten] = ACTIONS(1262), + [anon_sym_mathabs] = ACTIONS(1262), + [anon_sym_matharccos] = ACTIONS(1260), + [anon_sym_matharccosh] = ACTIONS(1262), + [anon_sym_matharcsin] = ACTIONS(1260), + [anon_sym_matharcsinh] = ACTIONS(1262), + [anon_sym_matharctan] = ACTIONS(1260), + [anon_sym_matharctanh] = ACTIONS(1262), + [anon_sym_mathavg] = ACTIONS(1262), + [anon_sym_mathceil] = ACTIONS(1262), + [anon_sym_mathcos] = ACTIONS(1260), + [anon_sym_mathcosh] = ACTIONS(1262), + [anon_sym_mathexp] = ACTIONS(1262), + [anon_sym_mathfloor] = ACTIONS(1262), + [anon_sym_mathln] = ACTIONS(1262), + [anon_sym_mathlog] = ACTIONS(1262), + [anon_sym_mathmax] = ACTIONS(1262), + [anon_sym_mathmedian] = ACTIONS(1262), + [anon_sym_mathmin] = ACTIONS(1262), + [anon_sym_mathmode] = ACTIONS(1262), + [anon_sym_mathproduct] = ACTIONS(1262), + [anon_sym_mathround] = ACTIONS(1262), + [anon_sym_mathsin] = ACTIONS(1260), + [anon_sym_mathsinh] = ACTIONS(1262), + [anon_sym_mathsqrt] = ACTIONS(1262), + [anon_sym_mathstddev] = ACTIONS(1262), + [anon_sym_mathsum] = ACTIONS(1262), + [anon_sym_mathtan] = ACTIONS(1260), + [anon_sym_mathtanh] = ACTIONS(1262), + [anon_sym_mathvariance] = ACTIONS(1262), + [anon_sym_metadataaccess] = ACTIONS(1262), + [anon_sym_metadataset] = ACTIONS(1262), + [anon_sym_pathbasename] = ACTIONS(1262), + [anon_sym_pathdirname] = ACTIONS(1262), + [anon_sym_pathexists] = ACTIONS(1262), + [anon_sym_pathexpand] = ACTIONS(1262), + [anon_sym_pathjoin] = ACTIONS(1262), + [anon_sym_pathparse] = ACTIONS(1262), + [anon_sym_pathrelative_DASHto] = ACTIONS(1262), + [anon_sym_pathsplit] = ACTIONS(1262), + [anon_sym_pathtype] = ACTIONS(1262), + [anon_sym_pluginadd] = ACTIONS(1262), + [anon_sym_pluginlist] = ACTIONS(1262), + [anon_sym_pluginrm] = ACTIONS(1262), + [anon_sym_pluginstop] = ACTIONS(1262), + [anon_sym_polarsagg] = ACTIONS(1260), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1262), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1262), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1262), + [anon_sym_polarsappend] = ACTIONS(1262), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1262), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1262), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1262), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1262), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1262), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1262), + [anon_sym_polarsas] = ACTIONS(1260), + [anon_sym_polarsas_DASHdate] = ACTIONS(1260), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1262), + [anon_sym_polarscache] = ACTIONS(1262), + [anon_sym_polarscast] = ACTIONS(1262), + [anon_sym_polarscol] = ACTIONS(1260), + [anon_sym_polarscollect] = ACTIONS(1262), + [anon_sym_polarscolumns] = ACTIONS(1262), + [anon_sym_polarsconcat] = ACTIONS(1260), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1262), + [anon_sym_polarscontains] = ACTIONS(1262), + [anon_sym_polarscount] = ACTIONS(1260), + [anon_sym_polarscount_DASHnull] = ACTIONS(1262), + [anon_sym_polarscumulative] = ACTIONS(1262), + [anon_sym_polarsdatepart] = ACTIONS(1262), + [anon_sym_polarsdecimal] = ACTIONS(1262), + [anon_sym_polarsdrop] = ACTIONS(1260), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1262), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1262), + [anon_sym_polarsdummies] = ACTIONS(1262), + [anon_sym_polarsexplode] = ACTIONS(1262), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1262), + [anon_sym_polarsfetch] = ACTIONS(1262), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1262), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1262), + [anon_sym_polarsfilter] = ACTIONS(1260), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1262), + [anon_sym_polarsfirst] = ACTIONS(1262), + [anon_sym_polarsflatten] = ACTIONS(1262), + [anon_sym_polarsget] = ACTIONS(1260), + [anon_sym_polarsget_DASHday] = ACTIONS(1262), + [anon_sym_polarsget_DASHhour] = ACTIONS(1262), + [anon_sym_polarsget_DASHminute] = ACTIONS(1262), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1262), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1262), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1262), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1262), + [anon_sym_polarsget_DASHweek] = ACTIONS(1260), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1262), + [anon_sym_polarsget_DASHyear] = ACTIONS(1262), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1262), + [anon_sym_polarsimplode] = ACTIONS(1262), + [anon_sym_polarsinteger] = ACTIONS(1262), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1262), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1262), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1262), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1262), + [anon_sym_polarsis_DASHin] = ACTIONS(1262), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1262), + [anon_sym_polarsis_DASHnull] = ACTIONS(1262), + [anon_sym_polarsis_DASHunique] = ACTIONS(1262), + [anon_sym_polarsjoin] = ACTIONS(1262), + [anon_sym_polarslast] = ACTIONS(1262), + [anon_sym_polarslen] = ACTIONS(1262), + [anon_sym_polarslit] = ACTIONS(1262), + [anon_sym_polarslowercase] = ACTIONS(1262), + [anon_sym_polarsmax] = ACTIONS(1262), + [anon_sym_polarsmean] = ACTIONS(1262), + [anon_sym_polarsmedian] = ACTIONS(1262), + [anon_sym_polarsmin] = ACTIONS(1262), + [anon_sym_polarsn_DASHunique] = ACTIONS(1262), + [anon_sym_polarsnot] = ACTIONS(1262), + [anon_sym_polarsopen] = ACTIONS(1262), + [anon_sym_polarsotherwise] = ACTIONS(1262), + [anon_sym_polarspivot] = ACTIONS(1262), + [anon_sym_polarsprofile] = ACTIONS(1262), + [anon_sym_polarsquantile] = ACTIONS(1262), + [anon_sym_polarsquery] = ACTIONS(1262), + [anon_sym_polarsrename] = ACTIONS(1262), + [anon_sym_polarsreplace] = ACTIONS(1260), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1262), + [anon_sym_polarsreverse] = ACTIONS(1262), + [anon_sym_polarsrolling] = ACTIONS(1262), + [anon_sym_polarssample] = ACTIONS(1262), + [anon_sym_polarssave] = ACTIONS(1262), + [anon_sym_polarsschema] = ACTIONS(1262), + [anon_sym_polarsselect] = ACTIONS(1262), + [anon_sym_polarsset] = ACTIONS(1260), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1262), + [anon_sym_polarsshape] = ACTIONS(1262), + [anon_sym_polarsshift] = ACTIONS(1262), + [anon_sym_polarsslice] = ACTIONS(1262), + [anon_sym_polarssort_DASHby] = ACTIONS(1262), + [anon_sym_polarsstd] = ACTIONS(1262), + [anon_sym_polarsstore_DASHget] = ACTIONS(1262), + [anon_sym_polarsstore_DASHls] = ACTIONS(1262), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1262), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1262), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1262), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1262), + [anon_sym_polarsstrftime] = ACTIONS(1262), + [anon_sym_polarssum] = ACTIONS(1260), + [anon_sym_polarssummary] = ACTIONS(1262), + [anon_sym_polarstake] = ACTIONS(1262), + [anon_sym_polarsunique] = ACTIONS(1262), + [anon_sym_polarsunnest] = ACTIONS(1262), + [anon_sym_polarsunpivot] = ACTIONS(1262), + [anon_sym_polarsuppercase] = ACTIONS(1262), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1262), + [anon_sym_polarsvar] = ACTIONS(1262), + [anon_sym_polarswhen] = ACTIONS(1262), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1262), + [anon_sym_querydb] = ACTIONS(1262), + [anon_sym_querygit] = ACTIONS(1262), + [anon_sym_queryjson] = ACTIONS(1262), + [anon_sym_queryweb] = ACTIONS(1260), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1262), + [anon_sym_queryxml] = ACTIONS(1262), + [anon_sym_randombinary] = ACTIONS(1262), + [anon_sym_randombool] = ACTIONS(1262), + [anon_sym_randomchars] = ACTIONS(1262), + [anon_sym_randomdice] = ACTIONS(1262), + [anon_sym_randomfloat] = ACTIONS(1262), + [anon_sym_randomint] = ACTIONS(1262), + [anon_sym_randomuuid] = ACTIONS(1262), + [anon_sym_rolldown] = ACTIONS(1262), + [anon_sym_rollleft] = ACTIONS(1262), + [anon_sym_rollright] = ACTIONS(1262), + [anon_sym_rollup] = ACTIONS(1262), + [anon_sym_scopealiases] = ACTIONS(1262), + [anon_sym_scopecommands] = ACTIONS(1262), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1262), + [anon_sym_scopeexterns] = ACTIONS(1262), + [anon_sym_scopemodules] = ACTIONS(1262), + [anon_sym_scopevariables] = ACTIONS(1262), + [anon_sym_seqchar] = ACTIONS(1262), + [anon_sym_seqdate] = ACTIONS(1262), + [anon_sym_skipuntil] = ACTIONS(1262), + [anon_sym_skipwhile] = ACTIONS(1262), + [anon_sym_splitcell_DASHpath] = ACTIONS(1262), + [anon_sym_splitchars] = ACTIONS(1262), + [anon_sym_splitcolumn] = ACTIONS(1262), + [anon_sym_splitlist] = ACTIONS(1262), + [anon_sym_splitrow] = ACTIONS(1262), + [anon_sym_splitwords] = ACTIONS(1262), + [anon_sym_storcreate] = ACTIONS(1262), + [anon_sym_stordelete] = ACTIONS(1262), + [anon_sym_storexport] = ACTIONS(1262), + [anon_sym_storimport] = ACTIONS(1262), + [anon_sym_storinsert] = ACTIONS(1262), + [anon_sym_storopen] = ACTIONS(1262), + [anon_sym_storreset] = ACTIONS(1262), + [anon_sym_storupdate] = ACTIONS(1262), + [anon_sym_strbexpand] = ACTIONS(1262), + [anon_sym_strcamel_DASHcase] = ACTIONS(1262), + [anon_sym_strcapitalize] = ACTIONS(1262), + [anon_sym_strcompress] = ACTIONS(1262), + [anon_sym_strcontains] = ACTIONS(1262), + [anon_sym_strdecompress] = ACTIONS(1262), + [anon_sym_strdedent] = ACTIONS(1262), + [anon_sym_strdeunicode] = ACTIONS(1262), + [anon_sym_strdistance] = ACTIONS(1262), + [anon_sym_strdowncase] = ACTIONS(1262), + [anon_sym_strends_DASHwith] = ACTIONS(1262), + [anon_sym_strexpand] = ACTIONS(1262), + [anon_sym_strindent] = ACTIONS(1262), + [anon_sym_strindex_DASHof] = ACTIONS(1262), + [anon_sym_strjoin] = ACTIONS(1262), + [anon_sym_strkebab_DASHcase] = ACTIONS(1262), + [anon_sym_strlength] = ACTIONS(1262), + [anon_sym_strpascal_DASHcase] = ACTIONS(1262), + [anon_sym_strreplace] = ACTIONS(1262), + [anon_sym_strreverse] = ACTIONS(1262), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1262), + [anon_sym_strsimilarity] = ACTIONS(1262), + [anon_sym_strsnake_DASHcase] = ACTIONS(1262), + [anon_sym_strstarts_DASHwith] = ACTIONS(1262), + [anon_sym_strstats] = ACTIONS(1262), + [anon_sym_strsubstring] = ACTIONS(1262), + [anon_sym_strtitle_DASHcase] = ACTIONS(1262), + [anon_sym_strtrim] = ACTIONS(1262), + [anon_sym_strupcase] = ACTIONS(1262), + [anon_sym_strwrap] = ACTIONS(1262), + [anon_sym_syscpu] = ACTIONS(1262), + [anon_sym_sysdisks] = ACTIONS(1262), + [anon_sym_syshost] = ACTIONS(1262), + [anon_sym_sysmem] = ACTIONS(1262), + [anon_sym_sysnet] = ACTIONS(1262), + [anon_sym_systemp] = ACTIONS(1262), + [anon_sym_sysusers] = ACTIONS(1262), + [anon_sym_takeuntil] = ACTIONS(1262), + [anon_sym_takewhile] = ACTIONS(1262), + [anon_sym_termquery] = ACTIONS(1262), + [anon_sym_termsize] = ACTIONS(1262), + [anon_sym_tobz2] = ACTIONS(1262), + [anon_sym_tocsv] = ACTIONS(1262), + [anon_sym_togz] = ACTIONS(1262), + [anon_sym_tohtml] = ACTIONS(1262), + [anon_sym_tojson] = ACTIONS(1262), + [anon_sym_tomd] = ACTIONS(1262), + [anon_sym_tomsgpack] = ACTIONS(1260), + [anon_sym_tomsgpackz] = ACTIONS(1262), + [anon_sym_tonuon] = ACTIONS(1262), + [anon_sym_toparquet] = ACTIONS(1262), + [anon_sym_toplist] = ACTIONS(1262), + [anon_sym_topng] = ACTIONS(1262), + [anon_sym_totext] = ACTIONS(1262), + [anon_sym_totoml] = ACTIONS(1262), + [anon_sym_totsv] = ACTIONS(1262), + [anon_sym_toxml] = ACTIONS(1262), + [anon_sym_toxz] = ACTIONS(1262), + [anon_sym_toyaml] = ACTIONS(1262), + [anon_sym_tozst] = ACTIONS(1262), + [anon_sym_updatecells] = ACTIONS(1262), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1262), + [anon_sym_urldecode] = ACTIONS(1262), + [anon_sym_urlencode] = ACTIONS(1262), + [anon_sym_urljoin] = ACTIONS(1262), + [anon_sym_urlparse] = ACTIONS(1262), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1262), + [anon_sym_viewfiles] = ACTIONS(1262), + [anon_sym_viewir] = ACTIONS(1262), + [anon_sym_viewsource] = ACTIONS(1262), + [anon_sym_viewspan] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1262), }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [201] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5014), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5015), + [sym_comment] = STATE(201), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(1839), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [sym__entry_separator] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(980), + [202] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(202), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1841), - [aux_sym_cmd_identifier_token3] = ACTIONS(1841), - [aux_sym_cmd_identifier_token4] = ACTIONS(1841), - [aux_sym_cmd_identifier_token5] = ACTIONS(1841), - [aux_sym_cmd_identifier_token6] = ACTIONS(1841), - [aux_sym_cmd_identifier_token7] = ACTIONS(1841), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1841), - [aux_sym_cmd_identifier_token11] = ACTIONS(1841), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1841), - [aux_sym_cmd_identifier_token17] = ACTIONS(1841), - [aux_sym_cmd_identifier_token18] = ACTIONS(1841), - [aux_sym_cmd_identifier_token19] = ACTIONS(1841), - [aux_sym_cmd_identifier_token20] = ACTIONS(1841), - [aux_sym_cmd_identifier_token21] = ACTIONS(1841), - [aux_sym_cmd_identifier_token22] = ACTIONS(1841), - [aux_sym_cmd_identifier_token23] = ACTIONS(1841), - [aux_sym_cmd_identifier_token24] = ACTIONS(1841), - [aux_sym_cmd_identifier_token25] = ACTIONS(1841), - [aux_sym_cmd_identifier_token26] = ACTIONS(1841), - [aux_sym_cmd_identifier_token27] = ACTIONS(1841), - [aux_sym_cmd_identifier_token28] = ACTIONS(1841), - [aux_sym_cmd_identifier_token29] = ACTIONS(1841), - [aux_sym_cmd_identifier_token30] = ACTIONS(1841), - [aux_sym_cmd_identifier_token31] = ACTIONS(1841), - [aux_sym_cmd_identifier_token32] = ACTIONS(1841), - [aux_sym_cmd_identifier_token33] = ACTIONS(1841), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1841), - [aux_sym_cmd_identifier_token36] = ACTIONS(1841), - [aux_sym_cmd_identifier_token37] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [sym__entry_separator] = ACTIONS(1843), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1843), + [203] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(203), + [aux_sym_shebang_repeat1] = STATE(206), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [396] = { - [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1800), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [204] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5075), + [sym_block] = STATE(5076), + [sym__expression_parenthesized] = STATE(5076), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5076), + [sym_comment] = STATE(204), + [aux_sym_shebang_repeat1] = STATE(208), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [397] = { - [sym_comment] = STATE(397), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), + [205] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5077), + [sym_block] = STATE(5078), + [sym__expression_parenthesized] = STATE(5078), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5078), + [sym_comment] = STATE(205), + [aux_sym_shebang_repeat1] = STATE(210), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [206] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(206), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [399] = { - [sym_cell_path] = STATE(664), - [sym_path] = STATE(567), - [sym_comment] = STATE(399), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1847), - [aux_sym_cmd_identifier_token3] = ACTIONS(1847), - [aux_sym_cmd_identifier_token4] = ACTIONS(1847), - [aux_sym_cmd_identifier_token5] = ACTIONS(1847), - [aux_sym_cmd_identifier_token6] = ACTIONS(1847), - [aux_sym_cmd_identifier_token7] = ACTIONS(1847), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1847), - [aux_sym_cmd_identifier_token17] = ACTIONS(1847), - [aux_sym_cmd_identifier_token18] = ACTIONS(1847), - [aux_sym_cmd_identifier_token19] = ACTIONS(1847), - [aux_sym_cmd_identifier_token20] = ACTIONS(1847), - [aux_sym_cmd_identifier_token21] = ACTIONS(1847), - [aux_sym_cmd_identifier_token22] = ACTIONS(1847), - [aux_sym_cmd_identifier_token23] = ACTIONS(1847), - [aux_sym_cmd_identifier_token24] = ACTIONS(1847), - [aux_sym_cmd_identifier_token25] = ACTIONS(1847), - [aux_sym_cmd_identifier_token26] = ACTIONS(1847), - [aux_sym_cmd_identifier_token27] = ACTIONS(1847), - [aux_sym_cmd_identifier_token28] = ACTIONS(1847), - [aux_sym_cmd_identifier_token29] = ACTIONS(1847), - [aux_sym_cmd_identifier_token30] = ACTIONS(1847), - [aux_sym_cmd_identifier_token31] = ACTIONS(1847), - [aux_sym_cmd_identifier_token32] = ACTIONS(1847), - [aux_sym_cmd_identifier_token33] = ACTIONS(1847), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [aux_sym_cmd_identifier_token37] = ACTIONS(1847), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1847), - [aux_sym_cmd_identifier_token40] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in2] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1847), - [aux_sym__val_number_decimal_token3] = ACTIONS(1847), - [aux_sym__val_number_decimal_token4] = ACTIONS(1847), - [aux_sym__val_number_token1] = ACTIONS(1847), - [aux_sym__val_number_token2] = ACTIONS(1847), - [aux_sym__val_number_token3] = ACTIONS(1847), - [aux_sym__val_number_token4] = ACTIONS(1847), - [aux_sym__val_number_token5] = ACTIONS(1847), - [aux_sym__val_number_token6] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym__str_single_quotes] = ACTIONS(1847), - [sym__str_back_ticks] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), - [sym__entry_separator] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1851), + [207] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(207), + [aux_sym_shebang_repeat1] = STATE(213), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [400] = { - [sym_cell_path] = STATE(624), - [sym_path] = STATE(567), - [sym_comment] = STATE(400), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_alias] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_let_DASHenv] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [aux_sym_cmd_identifier_token1] = ACTIONS(1853), - [aux_sym_cmd_identifier_token2] = ACTIONS(1853), - [aux_sym_cmd_identifier_token3] = ACTIONS(1853), - [aux_sym_cmd_identifier_token4] = ACTIONS(1853), - [aux_sym_cmd_identifier_token5] = ACTIONS(1853), - [aux_sym_cmd_identifier_token6] = ACTIONS(1853), - [aux_sym_cmd_identifier_token7] = ACTIONS(1853), - [aux_sym_cmd_identifier_token8] = ACTIONS(1853), - [aux_sym_cmd_identifier_token9] = ACTIONS(1853), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1853), - [aux_sym_cmd_identifier_token13] = ACTIONS(1853), - [aux_sym_cmd_identifier_token14] = ACTIONS(1853), - [aux_sym_cmd_identifier_token15] = ACTIONS(1853), - [aux_sym_cmd_identifier_token16] = ACTIONS(1853), - [aux_sym_cmd_identifier_token17] = ACTIONS(1853), - [aux_sym_cmd_identifier_token18] = ACTIONS(1853), - [aux_sym_cmd_identifier_token19] = ACTIONS(1853), - [aux_sym_cmd_identifier_token20] = ACTIONS(1853), - [aux_sym_cmd_identifier_token21] = ACTIONS(1853), - [aux_sym_cmd_identifier_token22] = ACTIONS(1853), - [aux_sym_cmd_identifier_token23] = ACTIONS(1853), - [aux_sym_cmd_identifier_token24] = ACTIONS(1853), - [aux_sym_cmd_identifier_token25] = ACTIONS(1853), - [aux_sym_cmd_identifier_token26] = ACTIONS(1853), - [aux_sym_cmd_identifier_token27] = ACTIONS(1853), - [aux_sym_cmd_identifier_token28] = ACTIONS(1853), - [aux_sym_cmd_identifier_token29] = ACTIONS(1853), - [aux_sym_cmd_identifier_token30] = ACTIONS(1853), - [aux_sym_cmd_identifier_token31] = ACTIONS(1853), - [aux_sym_cmd_identifier_token32] = ACTIONS(1853), - [aux_sym_cmd_identifier_token33] = ACTIONS(1853), - [aux_sym_cmd_identifier_token34] = ACTIONS(1853), - [aux_sym_cmd_identifier_token35] = ACTIONS(1853), - [aux_sym_cmd_identifier_token36] = ACTIONS(1853), - [aux_sym_cmd_identifier_token37] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1853), - [anon_sym_export_DASHenv] = ACTIONS(1853), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1853), - [anon_sym_error] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_in2] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_make] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_source] = ACTIONS(1853), - [anon_sym_source_DASHenv] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_hide_DASHenv] = ACTIONS(1853), - [anon_sym_overlay] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1853), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [aux_sym__val_number_token4] = ACTIONS(1853), - [aux_sym__val_number_token5] = ACTIONS(1853), - [aux_sym__val_number_token6] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [sym__entry_separator] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1855), + [208] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [209] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(214), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [402] = { - [sym_cell_path] = STATE(635), - [sym_path] = STATE(567), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [aux_sym_cmd_identifier_token37] = ACTIONS(1859), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1859), - [aux_sym_cmd_identifier_token40] = ACTIONS(1859), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in2] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_PLUS2] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1859), - [aux_sym__val_number_decimal_token3] = ACTIONS(1859), - [aux_sym__val_number_decimal_token4] = ACTIONS(1859), - [aux_sym__val_number_token1] = ACTIONS(1859), - [aux_sym__val_number_token2] = ACTIONS(1859), - [aux_sym__val_number_token3] = ACTIONS(1859), - [aux_sym__val_number_token4] = ACTIONS(1859), - [aux_sym__val_number_token5] = ACTIONS(1859), - [aux_sym__val_number_token6] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [sym__str_single_quotes] = ACTIONS(1859), - [sym__str_back_ticks] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), - [sym__entry_separator] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1861), + [210] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(210), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [403] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(567), - [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in2] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [sym__entry_separator] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1865), + [211] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(211), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [404] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(567), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [aux_sym_cmd_identifier_token37] = ACTIONS(1867), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1867), - [aux_sym_cmd_identifier_token40] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_DASH2] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in2] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1867), - [aux_sym__val_number_decimal_token3] = ACTIONS(1867), - [aux_sym__val_number_decimal_token4] = ACTIONS(1867), - [aux_sym__val_number_token1] = ACTIONS(1867), - [aux_sym__val_number_token2] = ACTIONS(1867), - [aux_sym__val_number_token3] = ACTIONS(1867), - [aux_sym__val_number_token4] = ACTIONS(1867), - [aux_sym__val_number_token5] = ACTIONS(1867), - [aux_sym__val_number_token6] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym__str_single_quotes] = ACTIONS(1867), - [sym__str_back_ticks] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), - [sym__entry_separator] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1869), + [212] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5107), + [sym_block] = STATE(5108), + [sym__expression_parenthesized] = STATE(5108), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5108), + [sym_comment] = STATE(212), + [aux_sym_shebang_repeat1] = STATE(218), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [213] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5119), + [sym__expression_parenthesized] = STATE(5119), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5119), + [sym_comment] = STATE(213), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [406] = { - [sym_comment] = STATE(406), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), + [214] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(214), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [407] = { - [sym_cell_path] = STATE(638), - [sym_path] = STATE(567), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [aux_sym_cmd_identifier_token37] = ACTIONS(1871), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1871), - [aux_sym_cmd_identifier_token40] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in2] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1871), - [aux_sym__val_number_decimal_token4] = ACTIONS(1871), - [aux_sym__val_number_token1] = ACTIONS(1871), - [aux_sym__val_number_token2] = ACTIONS(1871), - [aux_sym__val_number_token3] = ACTIONS(1871), - [aux_sym__val_number_token4] = ACTIONS(1871), - [aux_sym__val_number_token5] = ACTIONS(1871), - [aux_sym__val_number_token6] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [sym__str_single_quotes] = ACTIONS(1871), - [sym__str_back_ticks] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), - [sym__entry_separator] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1873), + [215] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(215), + [aux_sym_shebang_repeat1] = STATE(220), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [aux_sym_cmd_identifier_token37] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in2] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), + [216] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [409] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(567), - [sym_comment] = STATE(409), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [aux_sym_cmd_identifier_token37] = ACTIONS(1879), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1879), - [aux_sym_cmd_identifier_token40] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in2] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1879), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(1879), - [aux_sym__val_number_token2] = ACTIONS(1879), - [aux_sym__val_number_token3] = ACTIONS(1879), - [aux_sym__val_number_token4] = ACTIONS(1879), - [aux_sym__val_number_token5] = ACTIONS(1879), - [aux_sym__val_number_token6] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [sym__str_single_quotes] = ACTIONS(1879), - [sym__str_back_ticks] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1881), + [217] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(217), + [aux_sym_shebang_repeat1] = STATE(221), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [410] = { - [sym_cell_path] = STATE(612), - [sym_path] = STATE(567), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [aux_sym_cmd_identifier_token37] = ACTIONS(1883), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1883), - [aux_sym__val_number_decimal_token3] = ACTIONS(1883), - [aux_sym__val_number_decimal_token4] = ACTIONS(1883), - [aux_sym__val_number_token1] = ACTIONS(1883), - [aux_sym__val_number_token2] = ACTIONS(1883), - [aux_sym__val_number_token3] = ACTIONS(1883), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1885), + [218] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [411] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(567), - [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1887), - [aux_sym_cmd_identifier_token3] = ACTIONS(1887), - [aux_sym_cmd_identifier_token4] = ACTIONS(1887), - [aux_sym_cmd_identifier_token5] = ACTIONS(1887), - [aux_sym_cmd_identifier_token6] = ACTIONS(1887), - [aux_sym_cmd_identifier_token7] = ACTIONS(1887), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1887), - [aux_sym_cmd_identifier_token11] = ACTIONS(1887), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1887), - [aux_sym_cmd_identifier_token17] = ACTIONS(1887), - [aux_sym_cmd_identifier_token18] = ACTIONS(1887), - [aux_sym_cmd_identifier_token19] = ACTIONS(1887), - [aux_sym_cmd_identifier_token20] = ACTIONS(1887), - [aux_sym_cmd_identifier_token21] = ACTIONS(1887), - [aux_sym_cmd_identifier_token22] = ACTIONS(1887), - [aux_sym_cmd_identifier_token23] = ACTIONS(1887), - [aux_sym_cmd_identifier_token24] = ACTIONS(1887), - [aux_sym_cmd_identifier_token25] = ACTIONS(1887), - [aux_sym_cmd_identifier_token26] = ACTIONS(1887), - [aux_sym_cmd_identifier_token27] = ACTIONS(1887), - [aux_sym_cmd_identifier_token28] = ACTIONS(1887), - [aux_sym_cmd_identifier_token29] = ACTIONS(1887), - [aux_sym_cmd_identifier_token30] = ACTIONS(1887), - [aux_sym_cmd_identifier_token31] = ACTIONS(1887), - [aux_sym_cmd_identifier_token32] = ACTIONS(1887), - [aux_sym_cmd_identifier_token33] = ACTIONS(1887), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1887), - [aux_sym_cmd_identifier_token36] = ACTIONS(1887), - [aux_sym_cmd_identifier_token37] = ACTIONS(1887), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1887), - [aux_sym_cmd_identifier_token40] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), - [sym__entry_separator] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1889), + [219] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(219), + [aux_sym_shebang_repeat1] = STATE(222), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [412] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(567), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [aux_sym_cmd_identifier_token37] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), + [220] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5127), + [sym_block] = STATE(5128), + [sym__expression_parenthesized] = STATE(5128), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5128), + [sym_comment] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [413] = { - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [221] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5129), + [sym_block] = STATE(5130), + [sym__expression_parenthesized] = STATE(5130), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5130), + [sym_comment] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [414] = { - [sym_cell_path] = STATE(678), - [sym_path] = STATE(567), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [aux_sym_cmd_identifier_token37] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1897), + [222] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(222), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [415] = { - [sym_cell_path] = STATE(670), - [sym_path] = STATE(567), - [sym_comment] = STATE(415), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_alias] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_let_DASHenv] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [aux_sym_cmd_identifier_token37] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1899), - [anon_sym_export_DASHenv] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in2] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_source] = ACTIONS(1899), - [anon_sym_source_DASHenv] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_hide_DASHenv] = ACTIONS(1899), - [anon_sym_overlay] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [sym__entry_separator] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1901), + [223] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(223), + [aux_sym_shebang_repeat1] = STATE(224), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [416] = { - [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [224] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5134), + [sym_block] = STATE(5135), + [sym__expression_parenthesized] = STATE(5135), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5135), + [sym_comment] = STATE(224), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [417] = { - [sym_cell_path] = STATE(681), - [sym_path] = STATE(567), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1907), - [aux_sym_cmd_identifier_token3] = ACTIONS(1907), - [aux_sym_cmd_identifier_token4] = ACTIONS(1907), - [aux_sym_cmd_identifier_token5] = ACTIONS(1907), - [aux_sym_cmd_identifier_token6] = ACTIONS(1907), - [aux_sym_cmd_identifier_token7] = ACTIONS(1907), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1907), - [aux_sym_cmd_identifier_token11] = ACTIONS(1907), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1907), - [aux_sym_cmd_identifier_token17] = ACTIONS(1907), - [aux_sym_cmd_identifier_token18] = ACTIONS(1907), - [aux_sym_cmd_identifier_token19] = ACTIONS(1907), - [aux_sym_cmd_identifier_token20] = ACTIONS(1907), - [aux_sym_cmd_identifier_token21] = ACTIONS(1907), - [aux_sym_cmd_identifier_token22] = ACTIONS(1907), - [aux_sym_cmd_identifier_token23] = ACTIONS(1907), - [aux_sym_cmd_identifier_token24] = ACTIONS(1907), - [aux_sym_cmd_identifier_token25] = ACTIONS(1907), - [aux_sym_cmd_identifier_token26] = ACTIONS(1907), - [aux_sym_cmd_identifier_token27] = ACTIONS(1907), - [aux_sym_cmd_identifier_token28] = ACTIONS(1907), - [aux_sym_cmd_identifier_token29] = ACTIONS(1907), - [aux_sym_cmd_identifier_token30] = ACTIONS(1907), - [aux_sym_cmd_identifier_token31] = ACTIONS(1907), - [aux_sym_cmd_identifier_token32] = ACTIONS(1907), - [aux_sym_cmd_identifier_token33] = ACTIONS(1907), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1907), - [aux_sym_cmd_identifier_token36] = ACTIONS(1907), - [aux_sym_cmd_identifier_token37] = ACTIONS(1907), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [sym__entry_separator] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1909), + [225] = { + [sym_comment] = STATE(225), + [aux_sym_shebang_repeat1] = STATE(7385), + [aux_sym__parenthesized_body_repeat1] = STATE(225), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_alias] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_let_DASHenv] = ACTIONS(1286), + [anon_sym_mut] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [aux_sym_cmd_identifier_token1] = ACTIONS(1286), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1286), + [aux_sym_cmd_identifier_token9] = ACTIONS(1286), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1286), + [aux_sym_cmd_identifier_token13] = ACTIONS(1286), + [aux_sym_cmd_identifier_token14] = ACTIONS(1286), + [aux_sym_cmd_identifier_token15] = ACTIONS(1286), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1286), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1286), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1286), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1286), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_def] = ACTIONS(1286), + [anon_sym_export_DASHenv] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1286), + [anon_sym_error] = ACTIONS(1286), + [anon_sym_DASH2] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_source] = ACTIONS(1286), + [anon_sym_source_DASHenv] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_hide] = ACTIONS(1286), + [anon_sym_hide_DASHenv] = ACTIONS(1286), + [anon_sym_overlay] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1286), + [aux_sym__val_number_token5] = ACTIONS(1286), + [aux_sym__val_number_token6] = ACTIONS(1286), + [anon_sym_0b] = ACTIONS(1286), + [anon_sym_0o] = ACTIONS(1286), + [anon_sym_0x] = ACTIONS(1286), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_ansigradient] = ACTIONS(1288), + [anon_sym_ansilink] = ACTIONS(1288), + [anon_sym_ansistrip] = ACTIONS(1288), + [anon_sym_bitsand] = ACTIONS(1288), + [anon_sym_bitsnot] = ACTIONS(1288), + [anon_sym_bitsor] = ACTIONS(1288), + [anon_sym_bitsrol] = ACTIONS(1288), + [anon_sym_bitsror] = ACTIONS(1288), + [anon_sym_bitsshl] = ACTIONS(1288), + [anon_sym_bitsshr] = ACTIONS(1288), + [anon_sym_bitsxor] = ACTIONS(1288), + [anon_sym_bytesadd] = ACTIONS(1288), + [anon_sym_bytesat] = ACTIONS(1288), + [anon_sym_bytesbuild] = ACTIONS(1288), + [anon_sym_bytescollect] = ACTIONS(1288), + [anon_sym_bytesends_DASHwith] = ACTIONS(1288), + [anon_sym_bytesindex_DASHof] = ACTIONS(1288), + [anon_sym_byteslength] = ACTIONS(1288), + [anon_sym_bytesremove] = ACTIONS(1288), + [anon_sym_bytesreplace] = ACTIONS(1288), + [anon_sym_bytesreverse] = ACTIONS(1288), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1288), + [anon_sym_commandlineedit] = ACTIONS(1288), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1288), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1288), + [anon_sym_configenv] = ACTIONS(1288), + [anon_sym_confignu] = ACTIONS(1288), + [anon_sym_configreset] = ACTIONS(1288), + [anon_sym_dateformat] = ACTIONS(1288), + [anon_sym_datehumanize] = ACTIONS(1288), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1288), + [anon_sym_datenow] = ACTIONS(1288), + [anon_sym_dateto_DASHrecord] = ACTIONS(1288), + [anon_sym_dateto_DASHtable] = ACTIONS(1288), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1288), + [anon_sym_debuginfo] = ACTIONS(1288), + [anon_sym_debugprofile] = ACTIONS(1288), + [anon_sym_decodebase32] = ACTIONS(1286), + [anon_sym_decodebase32hex] = ACTIONS(1288), + [anon_sym_decodebase64] = ACTIONS(1288), + [anon_sym_decodehex] = ACTIONS(1288), + [anon_sym_detectcolumns] = ACTIONS(1288), + [anon_sym_dropcolumn] = ACTIONS(1288), + [anon_sym_dropnth] = ACTIONS(1288), + [anon_sym_dtadd] = ACTIONS(1288), + [anon_sym_dtdiff] = ACTIONS(1288), + [anon_sym_dtformat] = ACTIONS(1288), + [anon_sym_dtnow] = ACTIONS(1288), + [anon_sym_dtpart] = ACTIONS(1288), + [anon_sym_dtto] = ACTIONS(1288), + [anon_sym_dtutcnow] = ACTIONS(1288), + [anon_sym_eachwhile] = ACTIONS(1288), + [anon_sym_encodebase32] = ACTIONS(1286), + [anon_sym_encodebase32hex] = ACTIONS(1288), + [anon_sym_encodebase64] = ACTIONS(1288), + [anon_sym_encodehex] = ACTIONS(1288), + [anon_sym_errormake] = ACTIONS(1288), + [anon_sym_exploreir] = ACTIONS(1288), + [anon_sym_formatdate] = ACTIONS(1288), + [anon_sym_formatduration] = ACTIONS(1288), + [anon_sym_formatfilesize] = ACTIONS(1288), + [anon_sym_formatpattern] = ACTIONS(1288), + [anon_sym_frombz2] = ACTIONS(1288), + [anon_sym_fromcsv] = ACTIONS(1288), + [anon_sym_fromeml] = ACTIONS(1288), + [anon_sym_fromgz] = ACTIONS(1288), + [anon_sym_fromics] = ACTIONS(1288), + [anon_sym_fromini] = ACTIONS(1288), + [anon_sym_fromjson] = ACTIONS(1288), + [anon_sym_frommsgpack] = ACTIONS(1286), + [anon_sym_frommsgpackz] = ACTIONS(1288), + [anon_sym_fromnuon] = ACTIONS(1288), + [anon_sym_fromods] = ACTIONS(1288), + [anon_sym_fromparquet] = ACTIONS(1288), + [anon_sym_fromplist] = ACTIONS(1288), + [anon_sym_frompng] = ACTIONS(1288), + [anon_sym_fromssv] = ACTIONS(1288), + [anon_sym_fromtoml] = ACTIONS(1288), + [anon_sym_fromtsv] = ACTIONS(1288), + [anon_sym_fromurl] = ACTIONS(1288), + [anon_sym_fromvcf] = ACTIONS(1288), + [anon_sym_fromxlsx] = ACTIONS(1288), + [anon_sym_fromxml] = ACTIONS(1288), + [anon_sym_fromxz] = ACTIONS(1288), + [anon_sym_fromyaml] = ACTIONS(1288), + [anon_sym_fromyml] = ACTIONS(1288), + [anon_sym_fromzst] = ACTIONS(1288), + [anon_sym_hashmd5] = ACTIONS(1288), + [anon_sym_hashsha256] = ACTIONS(1288), + [anon_sym_helpaliases] = ACTIONS(1288), + [anon_sym_helpcommands] = ACTIONS(1288), + [anon_sym_helpescapes] = ACTIONS(1288), + [anon_sym_helpexterns] = ACTIONS(1288), + [anon_sym_helpmodules] = ACTIONS(1288), + [anon_sym_helpoperators] = ACTIONS(1288), + [anon_sym_historyimport] = ACTIONS(1288), + [anon_sym_historysession] = ACTIONS(1288), + [anon_sym_httpdelete] = ACTIONS(1288), + [anon_sym_httpget] = ACTIONS(1288), + [anon_sym_httphead] = ACTIONS(1288), + [anon_sym_httpoptions] = ACTIONS(1288), + [anon_sym_httppatch] = ACTIONS(1288), + [anon_sym_httppost] = ACTIONS(1288), + [anon_sym_httpput] = ACTIONS(1288), + [anon_sym_inputlist] = ACTIONS(1286), + [anon_sym_inputlisten] = ACTIONS(1288), + [anon_sym_intobinary] = ACTIONS(1288), + [anon_sym_intobits] = ACTIONS(1288), + [anon_sym_intobool] = ACTIONS(1288), + [anon_sym_intocell_DASHpath] = ACTIONS(1288), + [anon_sym_intodatetime] = ACTIONS(1288), + [anon_sym_intoduration] = ACTIONS(1288), + [anon_sym_intofilesize] = ACTIONS(1288), + [anon_sym_intofloat] = ACTIONS(1288), + [anon_sym_intoglob] = ACTIONS(1288), + [anon_sym_intoint] = ACTIONS(1288), + [anon_sym_intorecord] = ACTIONS(1288), + [anon_sym_intosqlite] = ACTIONS(1288), + [anon_sym_intostring] = ACTIONS(1288), + [anon_sym_intovalue] = ACTIONS(1288), + [anon_sym_jsonpath] = ACTIONS(1288), + [anon_sym_keybindingsdefault] = ACTIONS(1288), + [anon_sym_keybindingslist] = ACTIONS(1286), + [anon_sym_keybindingslisten] = ACTIONS(1288), + [anon_sym_mathabs] = ACTIONS(1288), + [anon_sym_matharccos] = ACTIONS(1286), + [anon_sym_matharccosh] = ACTIONS(1288), + [anon_sym_matharcsin] = ACTIONS(1286), + [anon_sym_matharcsinh] = ACTIONS(1288), + [anon_sym_matharctan] = ACTIONS(1286), + [anon_sym_matharctanh] = ACTIONS(1288), + [anon_sym_mathavg] = ACTIONS(1288), + [anon_sym_mathceil] = ACTIONS(1288), + [anon_sym_mathcos] = ACTIONS(1286), + [anon_sym_mathcosh] = ACTIONS(1288), + [anon_sym_mathexp] = ACTIONS(1288), + [anon_sym_mathfloor] = ACTIONS(1288), + [anon_sym_mathln] = ACTIONS(1288), + [anon_sym_mathlog] = ACTIONS(1288), + [anon_sym_mathmax] = ACTIONS(1288), + [anon_sym_mathmedian] = ACTIONS(1288), + [anon_sym_mathmin] = ACTIONS(1288), + [anon_sym_mathmode] = ACTIONS(1288), + [anon_sym_mathproduct] = ACTIONS(1288), + [anon_sym_mathround] = ACTIONS(1288), + [anon_sym_mathsin] = ACTIONS(1286), + [anon_sym_mathsinh] = ACTIONS(1288), + [anon_sym_mathsqrt] = ACTIONS(1288), + [anon_sym_mathstddev] = ACTIONS(1288), + [anon_sym_mathsum] = ACTIONS(1288), + [anon_sym_mathtan] = ACTIONS(1286), + [anon_sym_mathtanh] = ACTIONS(1288), + [anon_sym_mathvariance] = ACTIONS(1288), + [anon_sym_metadataaccess] = ACTIONS(1288), + [anon_sym_metadataset] = ACTIONS(1288), + [anon_sym_pathbasename] = ACTIONS(1288), + [anon_sym_pathdirname] = ACTIONS(1288), + [anon_sym_pathexists] = ACTIONS(1288), + [anon_sym_pathexpand] = ACTIONS(1288), + [anon_sym_pathjoin] = ACTIONS(1288), + [anon_sym_pathparse] = ACTIONS(1288), + [anon_sym_pathrelative_DASHto] = ACTIONS(1288), + [anon_sym_pathsplit] = ACTIONS(1288), + [anon_sym_pathtype] = ACTIONS(1288), + [anon_sym_pluginadd] = ACTIONS(1288), + [anon_sym_pluginlist] = ACTIONS(1288), + [anon_sym_pluginrm] = ACTIONS(1288), + [anon_sym_pluginstop] = ACTIONS(1288), + [anon_sym_polarsagg] = ACTIONS(1286), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1288), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1288), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1288), + [anon_sym_polarsappend] = ACTIONS(1288), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1288), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1288), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1288), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1288), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1288), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1288), + [anon_sym_polarsas] = ACTIONS(1286), + [anon_sym_polarsas_DASHdate] = ACTIONS(1286), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1288), + [anon_sym_polarscache] = ACTIONS(1288), + [anon_sym_polarscast] = ACTIONS(1288), + [anon_sym_polarscol] = ACTIONS(1286), + [anon_sym_polarscollect] = ACTIONS(1288), + [anon_sym_polarscolumns] = ACTIONS(1288), + [anon_sym_polarsconcat] = ACTIONS(1286), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1288), + [anon_sym_polarscontains] = ACTIONS(1288), + [anon_sym_polarscount] = ACTIONS(1286), + [anon_sym_polarscount_DASHnull] = ACTIONS(1288), + [anon_sym_polarscumulative] = ACTIONS(1288), + [anon_sym_polarsdatepart] = ACTIONS(1288), + [anon_sym_polarsdecimal] = ACTIONS(1288), + [anon_sym_polarsdrop] = ACTIONS(1286), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1288), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1288), + [anon_sym_polarsdummies] = ACTIONS(1288), + [anon_sym_polarsexplode] = ACTIONS(1288), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1288), + [anon_sym_polarsfetch] = ACTIONS(1288), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1288), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1288), + [anon_sym_polarsfilter] = ACTIONS(1286), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1288), + [anon_sym_polarsfirst] = ACTIONS(1288), + [anon_sym_polarsflatten] = ACTIONS(1288), + [anon_sym_polarsget] = ACTIONS(1286), + [anon_sym_polarsget_DASHday] = ACTIONS(1288), + [anon_sym_polarsget_DASHhour] = ACTIONS(1288), + [anon_sym_polarsget_DASHminute] = ACTIONS(1288), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1288), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1288), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1288), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1288), + [anon_sym_polarsget_DASHweek] = ACTIONS(1286), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1288), + [anon_sym_polarsget_DASHyear] = ACTIONS(1288), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1288), + [anon_sym_polarsimplode] = ACTIONS(1288), + [anon_sym_polarsinteger] = ACTIONS(1288), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1288), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1288), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1288), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1288), + [anon_sym_polarsis_DASHin] = ACTIONS(1288), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1288), + [anon_sym_polarsis_DASHnull] = ACTIONS(1288), + [anon_sym_polarsis_DASHunique] = ACTIONS(1288), + [anon_sym_polarsjoin] = ACTIONS(1288), + [anon_sym_polarslast] = ACTIONS(1288), + [anon_sym_polarslen] = ACTIONS(1288), + [anon_sym_polarslit] = ACTIONS(1288), + [anon_sym_polarslowercase] = ACTIONS(1288), + [anon_sym_polarsmax] = ACTIONS(1288), + [anon_sym_polarsmean] = ACTIONS(1288), + [anon_sym_polarsmedian] = ACTIONS(1288), + [anon_sym_polarsmin] = ACTIONS(1288), + [anon_sym_polarsn_DASHunique] = ACTIONS(1288), + [anon_sym_polarsnot] = ACTIONS(1288), + [anon_sym_polarsopen] = ACTIONS(1288), + [anon_sym_polarsotherwise] = ACTIONS(1288), + [anon_sym_polarspivot] = ACTIONS(1288), + [anon_sym_polarsprofile] = ACTIONS(1288), + [anon_sym_polarsquantile] = ACTIONS(1288), + [anon_sym_polarsquery] = ACTIONS(1288), + [anon_sym_polarsrename] = ACTIONS(1288), + [anon_sym_polarsreplace] = ACTIONS(1286), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1288), + [anon_sym_polarsreverse] = ACTIONS(1288), + [anon_sym_polarsrolling] = ACTIONS(1288), + [anon_sym_polarssample] = ACTIONS(1288), + [anon_sym_polarssave] = ACTIONS(1288), + [anon_sym_polarsschema] = ACTIONS(1288), + [anon_sym_polarsselect] = ACTIONS(1288), + [anon_sym_polarsset] = ACTIONS(1286), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1288), + [anon_sym_polarsshape] = ACTIONS(1288), + [anon_sym_polarsshift] = ACTIONS(1288), + [anon_sym_polarsslice] = ACTIONS(1288), + [anon_sym_polarssort_DASHby] = ACTIONS(1288), + [anon_sym_polarsstd] = ACTIONS(1288), + [anon_sym_polarsstore_DASHget] = ACTIONS(1288), + [anon_sym_polarsstore_DASHls] = ACTIONS(1288), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1288), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1288), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1288), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1288), + [anon_sym_polarsstrftime] = ACTIONS(1288), + [anon_sym_polarssum] = ACTIONS(1286), + [anon_sym_polarssummary] = ACTIONS(1288), + [anon_sym_polarstake] = ACTIONS(1288), + [anon_sym_polarsunique] = ACTIONS(1288), + [anon_sym_polarsunnest] = ACTIONS(1288), + [anon_sym_polarsunpivot] = ACTIONS(1288), + [anon_sym_polarsuppercase] = ACTIONS(1288), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1288), + [anon_sym_polarsvar] = ACTIONS(1288), + [anon_sym_polarswhen] = ACTIONS(1288), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1288), + [anon_sym_querydb] = ACTIONS(1288), + [anon_sym_querygit] = ACTIONS(1288), + [anon_sym_queryjson] = ACTIONS(1288), + [anon_sym_queryweb] = ACTIONS(1286), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1288), + [anon_sym_queryxml] = ACTIONS(1288), + [anon_sym_randombinary] = ACTIONS(1288), + [anon_sym_randombool] = ACTIONS(1288), + [anon_sym_randomchars] = ACTIONS(1288), + [anon_sym_randomdice] = ACTIONS(1288), + [anon_sym_randomfloat] = ACTIONS(1288), + [anon_sym_randomint] = ACTIONS(1288), + [anon_sym_randomuuid] = ACTIONS(1288), + [anon_sym_rolldown] = ACTIONS(1288), + [anon_sym_rollleft] = ACTIONS(1288), + [anon_sym_rollright] = ACTIONS(1288), + [anon_sym_rollup] = ACTIONS(1288), + [anon_sym_scopealiases] = ACTIONS(1288), + [anon_sym_scopecommands] = ACTIONS(1288), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1288), + [anon_sym_scopeexterns] = ACTIONS(1288), + [anon_sym_scopemodules] = ACTIONS(1288), + [anon_sym_scopevariables] = ACTIONS(1288), + [anon_sym_seqchar] = ACTIONS(1288), + [anon_sym_seqdate] = ACTIONS(1288), + [anon_sym_skipuntil] = ACTIONS(1288), + [anon_sym_skipwhile] = ACTIONS(1288), + [anon_sym_splitcell_DASHpath] = ACTIONS(1288), + [anon_sym_splitchars] = ACTIONS(1288), + [anon_sym_splitcolumn] = ACTIONS(1288), + [anon_sym_splitlist] = ACTIONS(1288), + [anon_sym_splitrow] = ACTIONS(1288), + [anon_sym_splitwords] = ACTIONS(1288), + [anon_sym_storcreate] = ACTIONS(1288), + [anon_sym_stordelete] = ACTIONS(1288), + [anon_sym_storexport] = ACTIONS(1288), + [anon_sym_storimport] = ACTIONS(1288), + [anon_sym_storinsert] = ACTIONS(1288), + [anon_sym_storopen] = ACTIONS(1288), + [anon_sym_storreset] = ACTIONS(1288), + [anon_sym_storupdate] = ACTIONS(1288), + [anon_sym_strbexpand] = ACTIONS(1288), + [anon_sym_strcamel_DASHcase] = ACTIONS(1288), + [anon_sym_strcapitalize] = ACTIONS(1288), + [anon_sym_strcompress] = ACTIONS(1288), + [anon_sym_strcontains] = ACTIONS(1288), + [anon_sym_strdecompress] = ACTIONS(1288), + [anon_sym_strdedent] = ACTIONS(1288), + [anon_sym_strdeunicode] = ACTIONS(1288), + [anon_sym_strdistance] = ACTIONS(1288), + [anon_sym_strdowncase] = ACTIONS(1288), + [anon_sym_strends_DASHwith] = ACTIONS(1288), + [anon_sym_strexpand] = ACTIONS(1288), + [anon_sym_strindent] = ACTIONS(1288), + [anon_sym_strindex_DASHof] = ACTIONS(1288), + [anon_sym_strjoin] = ACTIONS(1288), + [anon_sym_strkebab_DASHcase] = ACTIONS(1288), + [anon_sym_strlength] = ACTIONS(1288), + [anon_sym_strpascal_DASHcase] = ACTIONS(1288), + [anon_sym_strreplace] = ACTIONS(1288), + [anon_sym_strreverse] = ACTIONS(1288), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1288), + [anon_sym_strsimilarity] = ACTIONS(1288), + [anon_sym_strsnake_DASHcase] = ACTIONS(1288), + [anon_sym_strstarts_DASHwith] = ACTIONS(1288), + [anon_sym_strstats] = ACTIONS(1288), + [anon_sym_strsubstring] = ACTIONS(1288), + [anon_sym_strtitle_DASHcase] = ACTIONS(1288), + [anon_sym_strtrim] = ACTIONS(1288), + [anon_sym_strupcase] = ACTIONS(1288), + [anon_sym_strwrap] = ACTIONS(1288), + [anon_sym_syscpu] = ACTIONS(1288), + [anon_sym_sysdisks] = ACTIONS(1288), + [anon_sym_syshost] = ACTIONS(1288), + [anon_sym_sysmem] = ACTIONS(1288), + [anon_sym_sysnet] = ACTIONS(1288), + [anon_sym_systemp] = ACTIONS(1288), + [anon_sym_sysusers] = ACTIONS(1288), + [anon_sym_takeuntil] = ACTIONS(1288), + [anon_sym_takewhile] = ACTIONS(1288), + [anon_sym_termquery] = ACTIONS(1288), + [anon_sym_termsize] = ACTIONS(1288), + [anon_sym_tobz2] = ACTIONS(1288), + [anon_sym_tocsv] = ACTIONS(1288), + [anon_sym_togz] = ACTIONS(1288), + [anon_sym_tohtml] = ACTIONS(1288), + [anon_sym_tojson] = ACTIONS(1288), + [anon_sym_tomd] = ACTIONS(1288), + [anon_sym_tomsgpack] = ACTIONS(1286), + [anon_sym_tomsgpackz] = ACTIONS(1288), + [anon_sym_tonuon] = ACTIONS(1288), + [anon_sym_toparquet] = ACTIONS(1288), + [anon_sym_toplist] = ACTIONS(1288), + [anon_sym_topng] = ACTIONS(1288), + [anon_sym_totext] = ACTIONS(1288), + [anon_sym_totoml] = ACTIONS(1288), + [anon_sym_totsv] = ACTIONS(1288), + [anon_sym_toxml] = ACTIONS(1288), + [anon_sym_toxz] = ACTIONS(1288), + [anon_sym_toyaml] = ACTIONS(1288), + [anon_sym_tozst] = ACTIONS(1288), + [anon_sym_updatecells] = ACTIONS(1288), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1288), + [anon_sym_urldecode] = ACTIONS(1288), + [anon_sym_urlencode] = ACTIONS(1288), + [anon_sym_urljoin] = ACTIONS(1288), + [anon_sym_urlparse] = ACTIONS(1288), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1288), + [anon_sym_viewfiles] = ACTIONS(1288), + [anon_sym_viewir] = ACTIONS(1288), + [anon_sym_viewsource] = ACTIONS(1288), + [anon_sym_viewspan] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1288), }, - [418] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(567), - [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_alias] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_let_DASHenv] = ACTIONS(1911), - [anon_sym_mut] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [aux_sym_cmd_identifier_token1] = ACTIONS(1911), - [aux_sym_cmd_identifier_token2] = ACTIONS(1911), - [aux_sym_cmd_identifier_token3] = ACTIONS(1911), - [aux_sym_cmd_identifier_token4] = ACTIONS(1911), - [aux_sym_cmd_identifier_token5] = ACTIONS(1911), - [aux_sym_cmd_identifier_token6] = ACTIONS(1911), - [aux_sym_cmd_identifier_token7] = ACTIONS(1911), - [aux_sym_cmd_identifier_token8] = ACTIONS(1911), - [aux_sym_cmd_identifier_token9] = ACTIONS(1911), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [aux_sym_cmd_identifier_token12] = ACTIONS(1911), - [aux_sym_cmd_identifier_token13] = ACTIONS(1911), - [aux_sym_cmd_identifier_token14] = ACTIONS(1911), - [aux_sym_cmd_identifier_token15] = ACTIONS(1911), - [aux_sym_cmd_identifier_token16] = ACTIONS(1911), - [aux_sym_cmd_identifier_token17] = ACTIONS(1911), - [aux_sym_cmd_identifier_token18] = ACTIONS(1911), - [aux_sym_cmd_identifier_token19] = ACTIONS(1911), - [aux_sym_cmd_identifier_token20] = ACTIONS(1911), - [aux_sym_cmd_identifier_token21] = ACTIONS(1911), - [aux_sym_cmd_identifier_token22] = ACTIONS(1911), - [aux_sym_cmd_identifier_token23] = ACTIONS(1911), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1911), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1911), - [aux_sym_cmd_identifier_token28] = ACTIONS(1911), - [aux_sym_cmd_identifier_token29] = ACTIONS(1911), - [aux_sym_cmd_identifier_token30] = ACTIONS(1911), - [aux_sym_cmd_identifier_token31] = ACTIONS(1911), - [aux_sym_cmd_identifier_token32] = ACTIONS(1911), - [aux_sym_cmd_identifier_token33] = ACTIONS(1911), - [aux_sym_cmd_identifier_token34] = ACTIONS(1911), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1911), - [aux_sym_cmd_identifier_token37] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1911), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1911), - [anon_sym_export_DASHenv] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_use] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_in2] = ACTIONS(1911), - [anon_sym_loop] = ACTIONS(1911), - [anon_sym_make] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_catch] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_source] = ACTIONS(1911), - [anon_sym_source_DASHenv] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1911), - [anon_sym_hide] = ACTIONS(1911), - [anon_sym_hide_DASHenv] = ACTIONS(1911), - [anon_sym_overlay] = ACTIONS(1911), - [anon_sym_as] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1911), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [sym__entry_separator] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1913), + [226] = { + [sym_comment] = STATE(226), + [aux_sym__block_body_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1254), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [419] = { - [sym_cell_path] = STATE(686), - [sym_path] = STATE(567), - [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_alias] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_let_DASHenv] = ACTIONS(1915), - [anon_sym_mut] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [aux_sym_cmd_identifier_token1] = ACTIONS(1915), - [aux_sym_cmd_identifier_token2] = ACTIONS(1915), - [aux_sym_cmd_identifier_token3] = ACTIONS(1915), - [aux_sym_cmd_identifier_token4] = ACTIONS(1915), - [aux_sym_cmd_identifier_token5] = ACTIONS(1915), - [aux_sym_cmd_identifier_token6] = ACTIONS(1915), - [aux_sym_cmd_identifier_token7] = ACTIONS(1915), - [aux_sym_cmd_identifier_token8] = ACTIONS(1915), - [aux_sym_cmd_identifier_token9] = ACTIONS(1915), - [aux_sym_cmd_identifier_token10] = ACTIONS(1915), - [aux_sym_cmd_identifier_token11] = ACTIONS(1915), - [aux_sym_cmd_identifier_token12] = ACTIONS(1915), - [aux_sym_cmd_identifier_token13] = ACTIONS(1915), - [aux_sym_cmd_identifier_token14] = ACTIONS(1915), - [aux_sym_cmd_identifier_token15] = ACTIONS(1915), - [aux_sym_cmd_identifier_token16] = ACTIONS(1915), - [aux_sym_cmd_identifier_token17] = ACTIONS(1915), - [aux_sym_cmd_identifier_token18] = ACTIONS(1915), - [aux_sym_cmd_identifier_token19] = ACTIONS(1915), - [aux_sym_cmd_identifier_token20] = ACTIONS(1915), - [aux_sym_cmd_identifier_token21] = ACTIONS(1915), - [aux_sym_cmd_identifier_token22] = ACTIONS(1915), - [aux_sym_cmd_identifier_token23] = ACTIONS(1915), - [aux_sym_cmd_identifier_token24] = ACTIONS(1915), - [aux_sym_cmd_identifier_token25] = ACTIONS(1915), - [aux_sym_cmd_identifier_token26] = ACTIONS(1915), - [aux_sym_cmd_identifier_token27] = ACTIONS(1915), - [aux_sym_cmd_identifier_token28] = ACTIONS(1915), - [aux_sym_cmd_identifier_token29] = ACTIONS(1915), - [aux_sym_cmd_identifier_token30] = ACTIONS(1915), - [aux_sym_cmd_identifier_token31] = ACTIONS(1915), - [aux_sym_cmd_identifier_token32] = ACTIONS(1915), - [aux_sym_cmd_identifier_token33] = ACTIONS(1915), - [aux_sym_cmd_identifier_token34] = ACTIONS(1915), - [aux_sym_cmd_identifier_token35] = ACTIONS(1915), - [aux_sym_cmd_identifier_token36] = ACTIONS(1915), - [aux_sym_cmd_identifier_token37] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1915), - [anon_sym_export_DASHenv] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_make] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_source] = ACTIONS(1915), - [anon_sym_source_DASHenv] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_hide_DASHenv] = ACTIONS(1915), - [anon_sym_overlay] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [sym__entry_separator] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1917), + [227] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5014), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5015), + [sym_comment] = STATE(227), + [aux_sym_shebang_repeat1] = STATE(252), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [420] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(567), - [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1919), - [anon_sym_alias] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_let_DASHenv] = ACTIONS(1919), - [anon_sym_mut] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [aux_sym_cmd_identifier_token1] = ACTIONS(1919), - [aux_sym_cmd_identifier_token2] = ACTIONS(1919), - [aux_sym_cmd_identifier_token3] = ACTIONS(1919), - [aux_sym_cmd_identifier_token4] = ACTIONS(1919), - [aux_sym_cmd_identifier_token5] = ACTIONS(1919), - [aux_sym_cmd_identifier_token6] = ACTIONS(1919), - [aux_sym_cmd_identifier_token7] = ACTIONS(1919), - [aux_sym_cmd_identifier_token8] = ACTIONS(1919), - [aux_sym_cmd_identifier_token9] = ACTIONS(1919), - [aux_sym_cmd_identifier_token10] = ACTIONS(1919), - [aux_sym_cmd_identifier_token11] = ACTIONS(1919), - [aux_sym_cmd_identifier_token12] = ACTIONS(1919), - [aux_sym_cmd_identifier_token13] = ACTIONS(1919), - [aux_sym_cmd_identifier_token14] = ACTIONS(1919), - [aux_sym_cmd_identifier_token15] = ACTIONS(1919), - [aux_sym_cmd_identifier_token16] = ACTIONS(1919), - [aux_sym_cmd_identifier_token17] = ACTIONS(1919), - [aux_sym_cmd_identifier_token18] = ACTIONS(1919), - [aux_sym_cmd_identifier_token19] = ACTIONS(1919), - [aux_sym_cmd_identifier_token20] = ACTIONS(1919), - [aux_sym_cmd_identifier_token21] = ACTIONS(1919), - [aux_sym_cmd_identifier_token22] = ACTIONS(1919), - [aux_sym_cmd_identifier_token23] = ACTIONS(1919), - [aux_sym_cmd_identifier_token24] = ACTIONS(1919), - [aux_sym_cmd_identifier_token25] = ACTIONS(1919), - [aux_sym_cmd_identifier_token26] = ACTIONS(1919), - [aux_sym_cmd_identifier_token27] = ACTIONS(1919), - [aux_sym_cmd_identifier_token28] = ACTIONS(1919), - [aux_sym_cmd_identifier_token29] = ACTIONS(1919), - [aux_sym_cmd_identifier_token30] = ACTIONS(1919), - [aux_sym_cmd_identifier_token31] = ACTIONS(1919), - [aux_sym_cmd_identifier_token32] = ACTIONS(1919), - [aux_sym_cmd_identifier_token33] = ACTIONS(1919), - [aux_sym_cmd_identifier_token34] = ACTIONS(1919), - [aux_sym_cmd_identifier_token35] = ACTIONS(1919), - [aux_sym_cmd_identifier_token36] = ACTIONS(1919), - [aux_sym_cmd_identifier_token37] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1919), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1919), - [anon_sym_export_DASHenv] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_module] = ACTIONS(1919), - [anon_sym_use] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_in2] = ACTIONS(1919), - [anon_sym_loop] = ACTIONS(1919), - [anon_sym_make] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_catch] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_source] = ACTIONS(1919), - [anon_sym_source_DASHenv] = ACTIONS(1919), - [anon_sym_register] = ACTIONS(1919), - [anon_sym_hide] = ACTIONS(1919), - [anon_sym_hide_DASHenv] = ACTIONS(1919), - [anon_sym_overlay] = ACTIONS(1919), - [anon_sym_as] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1919), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [sym__entry_separator] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1921), + [228] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5014), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5015), + [sym_comment] = STATE(228), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [421] = { - [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1923), - [aux_sym__immediate_decimal_token2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [229] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [422] = { - [sym_cell_path] = STATE(621), - [sym_path] = STATE(567), - [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [sym__entry_separator] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1929), + [230] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(230), + [aux_sym_shebang_repeat1] = STATE(233), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [423] = { - [sym_cell_path] = STATE(660), - [sym_path] = STATE(567), - [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [aux_sym_cmd_identifier_token37] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in2] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS2] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1933), + [231] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5075), + [sym_block] = STATE(5076), + [sym__expression_parenthesized] = STATE(5076), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5076), + [sym_comment] = STATE(231), + [aux_sym_shebang_repeat1] = STATE(235), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [424] = { - [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [232] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5077), + [sym_block] = STATE(5078), + [sym__expression_parenthesized] = STATE(5078), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5078), + [sym_comment] = STATE(232), + [aux_sym_shebang_repeat1] = STATE(237), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [425] = { - [sym_path] = STATE(529), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(427), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [aux_sym_record_entry_token1] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [233] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [426] = { - [sym_comment] = STATE(426), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [234] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(234), + [aux_sym_shebang_repeat1] = STATE(240), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [427] = { - [sym_path] = STATE(529), - [sym_comment] = STATE(427), - [aux_sym_cell_path_repeat1] = STATE(427), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(973), - [aux_sym_cmd_identifier_token23] = ACTIONS(973), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(973), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(973), - [aux_sym_cmd_identifier_token28] = ACTIONS(973), - [aux_sym_cmd_identifier_token29] = ACTIONS(973), - [aux_sym_cmd_identifier_token30] = ACTIONS(973), - [aux_sym_cmd_identifier_token31] = ACTIONS(973), - [aux_sym_cmd_identifier_token32] = ACTIONS(973), - [aux_sym_cmd_identifier_token33] = ACTIONS(973), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(973), - [aux_sym_cmd_identifier_token36] = ACTIONS(973), - [aux_sym_cmd_identifier_token37] = ACTIONS(973), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [aux_sym_record_entry_token1] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [235] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(235), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [428] = { - [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [236] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(236), + [aux_sym_shebang_repeat1] = STATE(241), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [429] = { - [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [237] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(237), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [430] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(567), - [sym_comment] = STATE(430), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1938), - [anon_sym_alias] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_let_DASHenv] = ACTIONS(1938), - [anon_sym_mut] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [aux_sym_cmd_identifier_token1] = ACTIONS(1938), - [aux_sym_cmd_identifier_token2] = ACTIONS(1938), - [aux_sym_cmd_identifier_token3] = ACTIONS(1938), - [aux_sym_cmd_identifier_token4] = ACTIONS(1938), - [aux_sym_cmd_identifier_token5] = ACTIONS(1938), - [aux_sym_cmd_identifier_token6] = ACTIONS(1938), - [aux_sym_cmd_identifier_token7] = ACTIONS(1938), - [aux_sym_cmd_identifier_token8] = ACTIONS(1938), - [aux_sym_cmd_identifier_token9] = ACTIONS(1938), - [aux_sym_cmd_identifier_token10] = ACTIONS(1938), - [aux_sym_cmd_identifier_token11] = ACTIONS(1938), - [aux_sym_cmd_identifier_token12] = ACTIONS(1938), - [aux_sym_cmd_identifier_token13] = ACTIONS(1938), - [aux_sym_cmd_identifier_token14] = ACTIONS(1938), - [aux_sym_cmd_identifier_token15] = ACTIONS(1938), - [aux_sym_cmd_identifier_token16] = ACTIONS(1938), - [aux_sym_cmd_identifier_token17] = ACTIONS(1938), - [aux_sym_cmd_identifier_token18] = ACTIONS(1938), - [aux_sym_cmd_identifier_token19] = ACTIONS(1938), - [aux_sym_cmd_identifier_token20] = ACTIONS(1938), - [aux_sym_cmd_identifier_token21] = ACTIONS(1938), - [aux_sym_cmd_identifier_token22] = ACTIONS(1938), - [aux_sym_cmd_identifier_token23] = ACTIONS(1938), - [aux_sym_cmd_identifier_token24] = ACTIONS(1938), - [aux_sym_cmd_identifier_token25] = ACTIONS(1938), - [aux_sym_cmd_identifier_token26] = ACTIONS(1938), - [aux_sym_cmd_identifier_token27] = ACTIONS(1938), - [aux_sym_cmd_identifier_token28] = ACTIONS(1938), - [aux_sym_cmd_identifier_token29] = ACTIONS(1938), - [aux_sym_cmd_identifier_token30] = ACTIONS(1938), - [aux_sym_cmd_identifier_token31] = ACTIONS(1938), - [aux_sym_cmd_identifier_token32] = ACTIONS(1938), - [aux_sym_cmd_identifier_token33] = ACTIONS(1938), - [aux_sym_cmd_identifier_token34] = ACTIONS(1938), - [aux_sym_cmd_identifier_token35] = ACTIONS(1938), - [aux_sym_cmd_identifier_token36] = ACTIONS(1938), - [aux_sym_cmd_identifier_token37] = ACTIONS(1938), - [aux_sym_cmd_identifier_token38] = ACTIONS(1938), - [aux_sym_cmd_identifier_token39] = ACTIONS(1938), - [aux_sym_cmd_identifier_token40] = ACTIONS(1938), - [anon_sym_def] = ACTIONS(1938), - [anon_sym_export_DASHenv] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_module] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1938), - [anon_sym_error] = ACTIONS(1938), - [anon_sym_DASH2] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_in2] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_make] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_source] = ACTIONS(1938), - [anon_sym_source_DASHenv] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_hide] = ACTIONS(1938), - [anon_sym_hide_DASHenv] = ACTIONS(1938), - [anon_sym_overlay] = ACTIONS(1938), - [anon_sym_as] = ACTIONS(1938), - [anon_sym_PLUS2] = ACTIONS(1938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1938), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1938), - [aux_sym__val_number_decimal_token1] = ACTIONS(1938), - [aux_sym__val_number_decimal_token2] = ACTIONS(1938), - [aux_sym__val_number_decimal_token3] = ACTIONS(1938), - [aux_sym__val_number_decimal_token4] = ACTIONS(1938), - [aux_sym__val_number_token1] = ACTIONS(1938), - [aux_sym__val_number_token2] = ACTIONS(1938), - [aux_sym__val_number_token3] = ACTIONS(1938), - [aux_sym__val_number_token4] = ACTIONS(1938), - [aux_sym__val_number_token5] = ACTIONS(1938), - [aux_sym__val_number_token6] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [sym__str_single_quotes] = ACTIONS(1938), - [sym__str_back_ticks] = ACTIONS(1938), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1938), - [sym__entry_separator] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1940), + [238] = { + [sym_comment] = STATE(238), + [aux_sym_shebang_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_alias] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_let_DASHenv] = ACTIONS(1231), + [anon_sym_mut] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [aux_sym_cmd_identifier_token1] = ACTIONS(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(1233), + [aux_sym_cmd_identifier_token3] = ACTIONS(1233), + [aux_sym_cmd_identifier_token4] = ACTIONS(1233), + [aux_sym_cmd_identifier_token5] = ACTIONS(1233), + [aux_sym_cmd_identifier_token6] = ACTIONS(1233), + [aux_sym_cmd_identifier_token7] = ACTIONS(1233), + [aux_sym_cmd_identifier_token8] = ACTIONS(1231), + [aux_sym_cmd_identifier_token9] = ACTIONS(1231), + [aux_sym_cmd_identifier_token10] = ACTIONS(1233), + [aux_sym_cmd_identifier_token11] = ACTIONS(1233), + [aux_sym_cmd_identifier_token12] = ACTIONS(1231), + [aux_sym_cmd_identifier_token13] = ACTIONS(1231), + [aux_sym_cmd_identifier_token14] = ACTIONS(1231), + [aux_sym_cmd_identifier_token15] = ACTIONS(1231), + [aux_sym_cmd_identifier_token16] = ACTIONS(1233), + [aux_sym_cmd_identifier_token17] = ACTIONS(1233), + [aux_sym_cmd_identifier_token18] = ACTIONS(1231), + [aux_sym_cmd_identifier_token19] = ACTIONS(1233), + [aux_sym_cmd_identifier_token20] = ACTIONS(1233), + [aux_sym_cmd_identifier_token21] = ACTIONS(1233), + [aux_sym_cmd_identifier_token22] = ACTIONS(1233), + [aux_sym_cmd_identifier_token23] = ACTIONS(1233), + [aux_sym_cmd_identifier_token24] = ACTIONS(1233), + [aux_sym_cmd_identifier_token25] = ACTIONS(1233), + [aux_sym_cmd_identifier_token26] = ACTIONS(1233), + [aux_sym_cmd_identifier_token27] = ACTIONS(1233), + [aux_sym_cmd_identifier_token28] = ACTIONS(1233), + [aux_sym_cmd_identifier_token29] = ACTIONS(1233), + [aux_sym_cmd_identifier_token30] = ACTIONS(1233), + [aux_sym_cmd_identifier_token31] = ACTIONS(1233), + [aux_sym_cmd_identifier_token32] = ACTIONS(1231), + [aux_sym_cmd_identifier_token33] = ACTIONS(1233), + [aux_sym_cmd_identifier_token34] = ACTIONS(1231), + [aux_sym_cmd_identifier_token35] = ACTIONS(1233), + [aux_sym_cmd_identifier_token36] = ACTIONS(1233), + [aux_sym_cmd_identifier_token37] = ACTIONS(1233), + [aux_sym_cmd_identifier_token38] = ACTIONS(1231), + [aux_sym_cmd_identifier_token39] = ACTIONS(1233), + [aux_sym_cmd_identifier_token40] = ACTIONS(1233), + [sym__newline] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_def] = ACTIONS(1231), + [anon_sym_export_DASHenv] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_error] = ACTIONS(1231), + [anon_sym_DASH2] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_loop] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_source] = ACTIONS(1231), + [anon_sym_source_DASHenv] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_hide_DASHenv] = ACTIONS(1231), + [anon_sym_overlay] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1233), + [aux_sym_expr_unary_token1] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1231), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_decimal_token4] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [aux_sym_env_var_token1] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_ansigradient] = ACTIONS(1233), + [anon_sym_ansilink] = ACTIONS(1233), + [anon_sym_ansistrip] = ACTIONS(1233), + [anon_sym_bitsand] = ACTIONS(1233), + [anon_sym_bitsnot] = ACTIONS(1233), + [anon_sym_bitsor] = ACTIONS(1233), + [anon_sym_bitsrol] = ACTIONS(1233), + [anon_sym_bitsror] = ACTIONS(1233), + [anon_sym_bitsshl] = ACTIONS(1233), + [anon_sym_bitsshr] = ACTIONS(1233), + [anon_sym_bitsxor] = ACTIONS(1233), + [anon_sym_bytesadd] = ACTIONS(1233), + [anon_sym_bytesat] = ACTIONS(1233), + [anon_sym_bytesbuild] = ACTIONS(1233), + [anon_sym_bytescollect] = ACTIONS(1233), + [anon_sym_bytesends_DASHwith] = ACTIONS(1233), + [anon_sym_bytesindex_DASHof] = ACTIONS(1233), + [anon_sym_byteslength] = ACTIONS(1233), + [anon_sym_bytesremove] = ACTIONS(1233), + [anon_sym_bytesreplace] = ACTIONS(1233), + [anon_sym_bytesreverse] = ACTIONS(1233), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1233), + [anon_sym_commandlineedit] = ACTIONS(1233), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1233), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1233), + [anon_sym_configenv] = ACTIONS(1233), + [anon_sym_confignu] = ACTIONS(1233), + [anon_sym_configreset] = ACTIONS(1233), + [anon_sym_dateformat] = ACTIONS(1233), + [anon_sym_datehumanize] = ACTIONS(1233), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1233), + [anon_sym_datenow] = ACTIONS(1233), + [anon_sym_dateto_DASHrecord] = ACTIONS(1233), + [anon_sym_dateto_DASHtable] = ACTIONS(1233), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1233), + [anon_sym_debuginfo] = ACTIONS(1233), + [anon_sym_debugprofile] = ACTIONS(1233), + [anon_sym_decodebase32] = ACTIONS(1231), + [anon_sym_decodebase32hex] = ACTIONS(1233), + [anon_sym_decodebase64] = ACTIONS(1233), + [anon_sym_decodehex] = ACTIONS(1233), + [anon_sym_detectcolumns] = ACTIONS(1233), + [anon_sym_dropcolumn] = ACTIONS(1233), + [anon_sym_dropnth] = ACTIONS(1233), + [anon_sym_dtadd] = ACTIONS(1233), + [anon_sym_dtdiff] = ACTIONS(1233), + [anon_sym_dtformat] = ACTIONS(1233), + [anon_sym_dtnow] = ACTIONS(1233), + [anon_sym_dtpart] = ACTIONS(1233), + [anon_sym_dtto] = ACTIONS(1233), + [anon_sym_dtutcnow] = ACTIONS(1233), + [anon_sym_eachwhile] = ACTIONS(1233), + [anon_sym_encodebase32] = ACTIONS(1231), + [anon_sym_encodebase32hex] = ACTIONS(1233), + [anon_sym_encodebase64] = ACTIONS(1233), + [anon_sym_encodehex] = ACTIONS(1233), + [anon_sym_errormake] = ACTIONS(1233), + [anon_sym_exploreir] = ACTIONS(1233), + [anon_sym_formatdate] = ACTIONS(1233), + [anon_sym_formatduration] = ACTIONS(1233), + [anon_sym_formatfilesize] = ACTIONS(1233), + [anon_sym_formatpattern] = ACTIONS(1233), + [anon_sym_frombz2] = ACTIONS(1233), + [anon_sym_fromcsv] = ACTIONS(1233), + [anon_sym_fromeml] = ACTIONS(1233), + [anon_sym_fromgz] = ACTIONS(1233), + [anon_sym_fromics] = ACTIONS(1233), + [anon_sym_fromini] = ACTIONS(1233), + [anon_sym_fromjson] = ACTIONS(1233), + [anon_sym_frommsgpack] = ACTIONS(1231), + [anon_sym_frommsgpackz] = ACTIONS(1233), + [anon_sym_fromnuon] = ACTIONS(1233), + [anon_sym_fromods] = ACTIONS(1233), + [anon_sym_fromparquet] = ACTIONS(1233), + [anon_sym_fromplist] = ACTIONS(1233), + [anon_sym_frompng] = ACTIONS(1233), + [anon_sym_fromssv] = ACTIONS(1233), + [anon_sym_fromtoml] = ACTIONS(1233), + [anon_sym_fromtsv] = ACTIONS(1233), + [anon_sym_fromurl] = ACTIONS(1233), + [anon_sym_fromvcf] = ACTIONS(1233), + [anon_sym_fromxlsx] = ACTIONS(1233), + [anon_sym_fromxml] = ACTIONS(1233), + [anon_sym_fromxz] = ACTIONS(1233), + [anon_sym_fromyaml] = ACTIONS(1233), + [anon_sym_fromyml] = ACTIONS(1233), + [anon_sym_fromzst] = ACTIONS(1233), + [anon_sym_hashmd5] = ACTIONS(1233), + [anon_sym_hashsha256] = ACTIONS(1233), + [anon_sym_helpaliases] = ACTIONS(1233), + [anon_sym_helpcommands] = ACTIONS(1233), + [anon_sym_helpescapes] = ACTIONS(1233), + [anon_sym_helpexterns] = ACTIONS(1233), + [anon_sym_helpmodules] = ACTIONS(1233), + [anon_sym_helpoperators] = ACTIONS(1233), + [anon_sym_historyimport] = ACTIONS(1233), + [anon_sym_historysession] = ACTIONS(1233), + [anon_sym_httpdelete] = ACTIONS(1233), + [anon_sym_httpget] = ACTIONS(1233), + [anon_sym_httphead] = ACTIONS(1233), + [anon_sym_httpoptions] = ACTIONS(1233), + [anon_sym_httppatch] = ACTIONS(1233), + [anon_sym_httppost] = ACTIONS(1233), + [anon_sym_httpput] = ACTIONS(1233), + [anon_sym_inputlist] = ACTIONS(1231), + [anon_sym_inputlisten] = ACTIONS(1233), + [anon_sym_intobinary] = ACTIONS(1233), + [anon_sym_intobits] = ACTIONS(1233), + [anon_sym_intobool] = ACTIONS(1233), + [anon_sym_intocell_DASHpath] = ACTIONS(1233), + [anon_sym_intodatetime] = ACTIONS(1233), + [anon_sym_intoduration] = ACTIONS(1233), + [anon_sym_intofilesize] = ACTIONS(1233), + [anon_sym_intofloat] = ACTIONS(1233), + [anon_sym_intoglob] = ACTIONS(1233), + [anon_sym_intoint] = ACTIONS(1233), + [anon_sym_intorecord] = ACTIONS(1233), + [anon_sym_intosqlite] = ACTIONS(1233), + [anon_sym_intostring] = ACTIONS(1233), + [anon_sym_intovalue] = ACTIONS(1233), + [anon_sym_jsonpath] = ACTIONS(1233), + [anon_sym_keybindingsdefault] = ACTIONS(1233), + [anon_sym_keybindingslist] = ACTIONS(1231), + [anon_sym_keybindingslisten] = ACTIONS(1233), + [anon_sym_mathabs] = ACTIONS(1233), + [anon_sym_matharccos] = ACTIONS(1231), + [anon_sym_matharccosh] = ACTIONS(1233), + [anon_sym_matharcsin] = ACTIONS(1231), + [anon_sym_matharcsinh] = ACTIONS(1233), + [anon_sym_matharctan] = ACTIONS(1231), + [anon_sym_matharctanh] = ACTIONS(1233), + [anon_sym_mathavg] = ACTIONS(1233), + [anon_sym_mathceil] = ACTIONS(1233), + [anon_sym_mathcos] = ACTIONS(1231), + [anon_sym_mathcosh] = ACTIONS(1233), + [anon_sym_mathexp] = ACTIONS(1233), + [anon_sym_mathfloor] = ACTIONS(1233), + [anon_sym_mathln] = ACTIONS(1233), + [anon_sym_mathlog] = ACTIONS(1233), + [anon_sym_mathmax] = ACTIONS(1233), + [anon_sym_mathmedian] = ACTIONS(1233), + [anon_sym_mathmin] = ACTIONS(1233), + [anon_sym_mathmode] = ACTIONS(1233), + [anon_sym_mathproduct] = ACTIONS(1233), + [anon_sym_mathround] = ACTIONS(1233), + [anon_sym_mathsin] = ACTIONS(1231), + [anon_sym_mathsinh] = ACTIONS(1233), + [anon_sym_mathsqrt] = ACTIONS(1233), + [anon_sym_mathstddev] = ACTIONS(1233), + [anon_sym_mathsum] = ACTIONS(1233), + [anon_sym_mathtan] = ACTIONS(1231), + [anon_sym_mathtanh] = ACTIONS(1233), + [anon_sym_mathvariance] = ACTIONS(1233), + [anon_sym_metadataaccess] = ACTIONS(1233), + [anon_sym_metadataset] = ACTIONS(1233), + [anon_sym_pathbasename] = ACTIONS(1233), + [anon_sym_pathdirname] = ACTIONS(1233), + [anon_sym_pathexists] = ACTIONS(1233), + [anon_sym_pathexpand] = ACTIONS(1233), + [anon_sym_pathjoin] = ACTIONS(1233), + [anon_sym_pathparse] = ACTIONS(1233), + [anon_sym_pathrelative_DASHto] = ACTIONS(1233), + [anon_sym_pathsplit] = ACTIONS(1233), + [anon_sym_pathtype] = ACTIONS(1233), + [anon_sym_pluginadd] = ACTIONS(1233), + [anon_sym_pluginlist] = ACTIONS(1233), + [anon_sym_pluginrm] = ACTIONS(1233), + [anon_sym_pluginstop] = ACTIONS(1233), + [anon_sym_polarsagg] = ACTIONS(1231), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1233), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1233), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsappend] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1233), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1233), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1233), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1233), + [anon_sym_polarsas] = ACTIONS(1231), + [anon_sym_polarsas_DASHdate] = ACTIONS(1231), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1233), + [anon_sym_polarscache] = ACTIONS(1233), + [anon_sym_polarscast] = ACTIONS(1233), + [anon_sym_polarscol] = ACTIONS(1231), + [anon_sym_polarscollect] = ACTIONS(1233), + [anon_sym_polarscolumns] = ACTIONS(1233), + [anon_sym_polarsconcat] = ACTIONS(1231), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1233), + [anon_sym_polarscontains] = ACTIONS(1233), + [anon_sym_polarscount] = ACTIONS(1231), + [anon_sym_polarscount_DASHnull] = ACTIONS(1233), + [anon_sym_polarscumulative] = ACTIONS(1233), + [anon_sym_polarsdatepart] = ACTIONS(1233), + [anon_sym_polarsdecimal] = ACTIONS(1233), + [anon_sym_polarsdrop] = ACTIONS(1231), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1233), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1233), + [anon_sym_polarsdummies] = ACTIONS(1233), + [anon_sym_polarsexplode] = ACTIONS(1233), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1233), + [anon_sym_polarsfetch] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1233), + [anon_sym_polarsfilter] = ACTIONS(1231), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1233), + [anon_sym_polarsfirst] = ACTIONS(1233), + [anon_sym_polarsflatten] = ACTIONS(1233), + [anon_sym_polarsget] = ACTIONS(1231), + [anon_sym_polarsget_DASHday] = ACTIONS(1233), + [anon_sym_polarsget_DASHhour] = ACTIONS(1233), + [anon_sym_polarsget_DASHminute] = ACTIONS(1233), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1233), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1233), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHweek] = ACTIONS(1231), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1233), + [anon_sym_polarsget_DASHyear] = ACTIONS(1233), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1233), + [anon_sym_polarsimplode] = ACTIONS(1233), + [anon_sym_polarsinteger] = ACTIONS(1233), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1233), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1233), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1233), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1233), + [anon_sym_polarsis_DASHin] = ACTIONS(1233), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHunique] = ACTIONS(1233), + [anon_sym_polarsjoin] = ACTIONS(1233), + [anon_sym_polarslast] = ACTIONS(1233), + [anon_sym_polarslen] = ACTIONS(1233), + [anon_sym_polarslit] = ACTIONS(1233), + [anon_sym_polarslowercase] = ACTIONS(1233), + [anon_sym_polarsmax] = ACTIONS(1233), + [anon_sym_polarsmean] = ACTIONS(1233), + [anon_sym_polarsmedian] = ACTIONS(1233), + [anon_sym_polarsmin] = ACTIONS(1233), + [anon_sym_polarsn_DASHunique] = ACTIONS(1233), + [anon_sym_polarsnot] = ACTIONS(1233), + [anon_sym_polarsopen] = ACTIONS(1233), + [anon_sym_polarsotherwise] = ACTIONS(1233), + [anon_sym_polarspivot] = ACTIONS(1233), + [anon_sym_polarsprofile] = ACTIONS(1233), + [anon_sym_polarsquantile] = ACTIONS(1233), + [anon_sym_polarsquery] = ACTIONS(1233), + [anon_sym_polarsrename] = ACTIONS(1233), + [anon_sym_polarsreplace] = ACTIONS(1231), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1233), + [anon_sym_polarsreverse] = ACTIONS(1233), + [anon_sym_polarsrolling] = ACTIONS(1233), + [anon_sym_polarssample] = ACTIONS(1233), + [anon_sym_polarssave] = ACTIONS(1233), + [anon_sym_polarsschema] = ACTIONS(1233), + [anon_sym_polarsselect] = ACTIONS(1233), + [anon_sym_polarsset] = ACTIONS(1231), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1233), + [anon_sym_polarsshape] = ACTIONS(1233), + [anon_sym_polarsshift] = ACTIONS(1233), + [anon_sym_polarsslice] = ACTIONS(1233), + [anon_sym_polarssort_DASHby] = ACTIONS(1233), + [anon_sym_polarsstd] = ACTIONS(1233), + [anon_sym_polarsstore_DASHget] = ACTIONS(1233), + [anon_sym_polarsstore_DASHls] = ACTIONS(1233), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1233), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1233), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1233), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1233), + [anon_sym_polarsstrftime] = ACTIONS(1233), + [anon_sym_polarssum] = ACTIONS(1231), + [anon_sym_polarssummary] = ACTIONS(1233), + [anon_sym_polarstake] = ACTIONS(1233), + [anon_sym_polarsunique] = ACTIONS(1233), + [anon_sym_polarsunnest] = ACTIONS(1233), + [anon_sym_polarsunpivot] = ACTIONS(1233), + [anon_sym_polarsuppercase] = ACTIONS(1233), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1233), + [anon_sym_polarsvar] = ACTIONS(1233), + [anon_sym_polarswhen] = ACTIONS(1233), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1233), + [anon_sym_querydb] = ACTIONS(1233), + [anon_sym_querygit] = ACTIONS(1233), + [anon_sym_queryjson] = ACTIONS(1233), + [anon_sym_queryweb] = ACTIONS(1231), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1233), + [anon_sym_queryxml] = ACTIONS(1233), + [anon_sym_randombinary] = ACTIONS(1233), + [anon_sym_randombool] = ACTIONS(1233), + [anon_sym_randomchars] = ACTIONS(1233), + [anon_sym_randomdice] = ACTIONS(1233), + [anon_sym_randomfloat] = ACTIONS(1233), + [anon_sym_randomint] = ACTIONS(1233), + [anon_sym_randomuuid] = ACTIONS(1233), + [anon_sym_rolldown] = ACTIONS(1233), + [anon_sym_rollleft] = ACTIONS(1233), + [anon_sym_rollright] = ACTIONS(1233), + [anon_sym_rollup] = ACTIONS(1233), + [anon_sym_scopealiases] = ACTIONS(1233), + [anon_sym_scopecommands] = ACTIONS(1233), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1233), + [anon_sym_scopeexterns] = ACTIONS(1233), + [anon_sym_scopemodules] = ACTIONS(1233), + [anon_sym_scopevariables] = ACTIONS(1233), + [anon_sym_seqchar] = ACTIONS(1233), + [anon_sym_seqdate] = ACTIONS(1233), + [anon_sym_skipuntil] = ACTIONS(1233), + [anon_sym_skipwhile] = ACTIONS(1233), + [anon_sym_splitcell_DASHpath] = ACTIONS(1233), + [anon_sym_splitchars] = ACTIONS(1233), + [anon_sym_splitcolumn] = ACTIONS(1233), + [anon_sym_splitlist] = ACTIONS(1233), + [anon_sym_splitrow] = ACTIONS(1233), + [anon_sym_splitwords] = ACTIONS(1233), + [anon_sym_storcreate] = ACTIONS(1233), + [anon_sym_stordelete] = ACTIONS(1233), + [anon_sym_storexport] = ACTIONS(1233), + [anon_sym_storimport] = ACTIONS(1233), + [anon_sym_storinsert] = ACTIONS(1233), + [anon_sym_storopen] = ACTIONS(1233), + [anon_sym_storreset] = ACTIONS(1233), + [anon_sym_storupdate] = ACTIONS(1233), + [anon_sym_strbexpand] = ACTIONS(1233), + [anon_sym_strcamel_DASHcase] = ACTIONS(1233), + [anon_sym_strcapitalize] = ACTIONS(1233), + [anon_sym_strcompress] = ACTIONS(1233), + [anon_sym_strcontains] = ACTIONS(1233), + [anon_sym_strdecompress] = ACTIONS(1233), + [anon_sym_strdedent] = ACTIONS(1233), + [anon_sym_strdeunicode] = ACTIONS(1233), + [anon_sym_strdistance] = ACTIONS(1233), + [anon_sym_strdowncase] = ACTIONS(1233), + [anon_sym_strends_DASHwith] = ACTIONS(1233), + [anon_sym_strexpand] = ACTIONS(1233), + [anon_sym_strindent] = ACTIONS(1233), + [anon_sym_strindex_DASHof] = ACTIONS(1233), + [anon_sym_strjoin] = ACTIONS(1233), + [anon_sym_strkebab_DASHcase] = ACTIONS(1233), + [anon_sym_strlength] = ACTIONS(1233), + [anon_sym_strpascal_DASHcase] = ACTIONS(1233), + [anon_sym_strreplace] = ACTIONS(1233), + [anon_sym_strreverse] = ACTIONS(1233), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strsimilarity] = ACTIONS(1233), + [anon_sym_strsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strstarts_DASHwith] = ACTIONS(1233), + [anon_sym_strstats] = ACTIONS(1233), + [anon_sym_strsubstring] = ACTIONS(1233), + [anon_sym_strtitle_DASHcase] = ACTIONS(1233), + [anon_sym_strtrim] = ACTIONS(1233), + [anon_sym_strupcase] = ACTIONS(1233), + [anon_sym_strwrap] = ACTIONS(1233), + [anon_sym_syscpu] = ACTIONS(1233), + [anon_sym_sysdisks] = ACTIONS(1233), + [anon_sym_syshost] = ACTIONS(1233), + [anon_sym_sysmem] = ACTIONS(1233), + [anon_sym_sysnet] = ACTIONS(1233), + [anon_sym_systemp] = ACTIONS(1233), + [anon_sym_sysusers] = ACTIONS(1233), + [anon_sym_takeuntil] = ACTIONS(1233), + [anon_sym_takewhile] = ACTIONS(1233), + [anon_sym_termquery] = ACTIONS(1233), + [anon_sym_termsize] = ACTIONS(1233), + [anon_sym_tobz2] = ACTIONS(1233), + [anon_sym_tocsv] = ACTIONS(1233), + [anon_sym_togz] = ACTIONS(1233), + [anon_sym_tohtml] = ACTIONS(1233), + [anon_sym_tojson] = ACTIONS(1233), + [anon_sym_tomd] = ACTIONS(1233), + [anon_sym_tomsgpack] = ACTIONS(1231), + [anon_sym_tomsgpackz] = ACTIONS(1233), + [anon_sym_tonuon] = ACTIONS(1233), + [anon_sym_toparquet] = ACTIONS(1233), + [anon_sym_toplist] = ACTIONS(1233), + [anon_sym_topng] = ACTIONS(1233), + [anon_sym_totext] = ACTIONS(1233), + [anon_sym_totoml] = ACTIONS(1233), + [anon_sym_totsv] = ACTIONS(1233), + [anon_sym_toxml] = ACTIONS(1233), + [anon_sym_toxz] = ACTIONS(1233), + [anon_sym_toyaml] = ACTIONS(1233), + [anon_sym_tozst] = ACTIONS(1233), + [anon_sym_updatecells] = ACTIONS(1233), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1233), + [anon_sym_urldecode] = ACTIONS(1233), + [anon_sym_urlencode] = ACTIONS(1233), + [anon_sym_urljoin] = ACTIONS(1233), + [anon_sym_urlparse] = ACTIONS(1233), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1233), + [anon_sym_viewfiles] = ACTIONS(1233), + [anon_sym_viewir] = ACTIONS(1233), + [anon_sym_viewsource] = ACTIONS(1233), + [anon_sym_viewspan] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1233), }, - [431] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(567), - [sym_comment] = STATE(431), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(961), - [aux_sym_cmd_identifier_token3] = ACTIONS(961), - [aux_sym_cmd_identifier_token4] = ACTIONS(961), - [aux_sym_cmd_identifier_token5] = ACTIONS(961), - [aux_sym_cmd_identifier_token6] = ACTIONS(961), - [aux_sym_cmd_identifier_token7] = ACTIONS(961), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(961), - [aux_sym_cmd_identifier_token11] = ACTIONS(961), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(961), - [aux_sym_cmd_identifier_token17] = ACTIONS(961), - [aux_sym_cmd_identifier_token18] = ACTIONS(961), - [aux_sym_cmd_identifier_token19] = ACTIONS(961), - [aux_sym_cmd_identifier_token20] = ACTIONS(961), - [aux_sym_cmd_identifier_token21] = ACTIONS(961), - [aux_sym_cmd_identifier_token22] = ACTIONS(961), - [aux_sym_cmd_identifier_token23] = ACTIONS(961), - [aux_sym_cmd_identifier_token24] = ACTIONS(961), - [aux_sym_cmd_identifier_token25] = ACTIONS(961), - [aux_sym_cmd_identifier_token26] = ACTIONS(961), - [aux_sym_cmd_identifier_token27] = ACTIONS(961), - [aux_sym_cmd_identifier_token28] = ACTIONS(961), - [aux_sym_cmd_identifier_token29] = ACTIONS(961), - [aux_sym_cmd_identifier_token30] = ACTIONS(961), - [aux_sym_cmd_identifier_token31] = ACTIONS(961), - [aux_sym_cmd_identifier_token32] = ACTIONS(961), - [aux_sym_cmd_identifier_token33] = ACTIONS(961), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(961), - [aux_sym_cmd_identifier_token36] = ACTIONS(961), - [aux_sym_cmd_identifier_token37] = ACTIONS(961), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(961), - [aux_sym_cmd_identifier_token40] = ACTIONS(961), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_decimal_token4] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), - [sym__entry_separator] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(963), + [239] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5107), + [sym_block] = STATE(5108), + [sym__expression_parenthesized] = STATE(5108), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5108), + [sym_comment] = STATE(239), + [aux_sym_shebang_repeat1] = STATE(245), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [432] = { - [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1014), - [aux_sym_cmd_identifier_token3] = ACTIONS(1014), - [aux_sym_cmd_identifier_token4] = ACTIONS(1014), - [aux_sym_cmd_identifier_token5] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [aux_sym_cmd_identifier_token7] = ACTIONS(1014), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1014), - [aux_sym_cmd_identifier_token17] = ACTIONS(1014), - [aux_sym_cmd_identifier_token18] = ACTIONS(1014), - [aux_sym_cmd_identifier_token19] = ACTIONS(1014), - [aux_sym_cmd_identifier_token20] = ACTIONS(1014), - [aux_sym_cmd_identifier_token21] = ACTIONS(1014), - [aux_sym_cmd_identifier_token22] = ACTIONS(1014), - [aux_sym_cmd_identifier_token23] = ACTIONS(1014), - [aux_sym_cmd_identifier_token24] = ACTIONS(1014), - [aux_sym_cmd_identifier_token25] = ACTIONS(1014), - [aux_sym_cmd_identifier_token26] = ACTIONS(1014), - [aux_sym_cmd_identifier_token27] = ACTIONS(1014), - [aux_sym_cmd_identifier_token28] = ACTIONS(1014), - [aux_sym_cmd_identifier_token29] = ACTIONS(1014), - [aux_sym_cmd_identifier_token30] = ACTIONS(1014), - [aux_sym_cmd_identifier_token31] = ACTIONS(1014), - [aux_sym_cmd_identifier_token32] = ACTIONS(1014), - [aux_sym_cmd_identifier_token33] = ACTIONS(1014), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1014), - [aux_sym_cmd_identifier_token36] = ACTIONS(1014), - [aux_sym_cmd_identifier_token37] = ACTIONS(1014), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1014), - [aux_sym__val_number_decimal_token4] = ACTIONS(1014), - [aux_sym__val_number_token1] = ACTIONS(1014), - [aux_sym__val_number_token2] = ACTIONS(1014), - [aux_sym__val_number_token3] = ACTIONS(1014), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), - [sym__entry_separator] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1016), + [240] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5119), + [sym__expression_parenthesized] = STATE(5119), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5119), + [sym_comment] = STATE(240), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [433] = { - [sym_cell_path] = STATE(625), - [sym_path] = STATE(567), - [sym_comment] = STATE(433), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_alias] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_let_DASHenv] = ACTIONS(1942), - [anon_sym_mut] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [aux_sym_cmd_identifier_token1] = ACTIONS(1942), - [aux_sym_cmd_identifier_token2] = ACTIONS(1942), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [aux_sym_cmd_identifier_token6] = ACTIONS(1942), - [aux_sym_cmd_identifier_token7] = ACTIONS(1942), - [aux_sym_cmd_identifier_token8] = ACTIONS(1942), - [aux_sym_cmd_identifier_token9] = ACTIONS(1942), - [aux_sym_cmd_identifier_token10] = ACTIONS(1942), - [aux_sym_cmd_identifier_token11] = ACTIONS(1942), - [aux_sym_cmd_identifier_token12] = ACTIONS(1942), - [aux_sym_cmd_identifier_token13] = ACTIONS(1942), - [aux_sym_cmd_identifier_token14] = ACTIONS(1942), - [aux_sym_cmd_identifier_token15] = ACTIONS(1942), - [aux_sym_cmd_identifier_token16] = ACTIONS(1942), - [aux_sym_cmd_identifier_token17] = ACTIONS(1942), - [aux_sym_cmd_identifier_token18] = ACTIONS(1942), - [aux_sym_cmd_identifier_token19] = ACTIONS(1942), - [aux_sym_cmd_identifier_token20] = ACTIONS(1942), - [aux_sym_cmd_identifier_token21] = ACTIONS(1942), - [aux_sym_cmd_identifier_token22] = ACTIONS(1942), - [aux_sym_cmd_identifier_token23] = ACTIONS(1942), - [aux_sym_cmd_identifier_token24] = ACTIONS(1942), - [aux_sym_cmd_identifier_token25] = ACTIONS(1942), - [aux_sym_cmd_identifier_token26] = ACTIONS(1942), - [aux_sym_cmd_identifier_token27] = ACTIONS(1942), - [aux_sym_cmd_identifier_token28] = ACTIONS(1942), - [aux_sym_cmd_identifier_token29] = ACTIONS(1942), - [aux_sym_cmd_identifier_token30] = ACTIONS(1942), - [aux_sym_cmd_identifier_token31] = ACTIONS(1942), - [aux_sym_cmd_identifier_token32] = ACTIONS(1942), - [aux_sym_cmd_identifier_token33] = ACTIONS(1942), - [aux_sym_cmd_identifier_token34] = ACTIONS(1942), - [aux_sym_cmd_identifier_token35] = ACTIONS(1942), - [aux_sym_cmd_identifier_token36] = ACTIONS(1942), - [aux_sym_cmd_identifier_token37] = ACTIONS(1942), - [aux_sym_cmd_identifier_token38] = ACTIONS(1942), - [aux_sym_cmd_identifier_token39] = ACTIONS(1942), - [aux_sym_cmd_identifier_token40] = ACTIONS(1942), - [anon_sym_def] = ACTIONS(1942), - [anon_sym_export_DASHenv] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_error] = ACTIONS(1942), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_in2] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_make] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_source] = ACTIONS(1942), - [anon_sym_source_DASHenv] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_hide] = ACTIONS(1942), - [anon_sym_hide_DASHenv] = ACTIONS(1942), - [anon_sym_overlay] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1942), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1942), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1942), - [aux_sym__val_number_decimal_token3] = ACTIONS(1942), - [aux_sym__val_number_decimal_token4] = ACTIONS(1942), - [aux_sym__val_number_token1] = ACTIONS(1942), - [aux_sym__val_number_token2] = ACTIONS(1942), - [aux_sym__val_number_token3] = ACTIONS(1942), - [aux_sym__val_number_token4] = ACTIONS(1942), - [aux_sym__val_number_token5] = ACTIONS(1942), - [aux_sym__val_number_token6] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym__str_single_quotes] = ACTIONS(1942), - [sym__str_back_ticks] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1942), - [sym__entry_separator] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1944), + [241] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [434] = { - [sym_cell_path] = STATE(687), - [sym_path] = STATE(567), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(1946), - [anon_sym_alias] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_let_DASHenv] = ACTIONS(1946), - [anon_sym_mut] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [aux_sym_cmd_identifier_token1] = ACTIONS(1946), - [aux_sym_cmd_identifier_token2] = ACTIONS(1946), - [aux_sym_cmd_identifier_token3] = ACTIONS(1946), - [aux_sym_cmd_identifier_token4] = ACTIONS(1946), - [aux_sym_cmd_identifier_token5] = ACTIONS(1946), - [aux_sym_cmd_identifier_token6] = ACTIONS(1946), - [aux_sym_cmd_identifier_token7] = ACTIONS(1946), - [aux_sym_cmd_identifier_token8] = ACTIONS(1946), - [aux_sym_cmd_identifier_token9] = ACTIONS(1946), - [aux_sym_cmd_identifier_token10] = ACTIONS(1946), - [aux_sym_cmd_identifier_token11] = ACTIONS(1946), - [aux_sym_cmd_identifier_token12] = ACTIONS(1946), - [aux_sym_cmd_identifier_token13] = ACTIONS(1946), - [aux_sym_cmd_identifier_token14] = ACTIONS(1946), - [aux_sym_cmd_identifier_token15] = ACTIONS(1946), - [aux_sym_cmd_identifier_token16] = ACTIONS(1946), - [aux_sym_cmd_identifier_token17] = ACTIONS(1946), - [aux_sym_cmd_identifier_token18] = ACTIONS(1946), - [aux_sym_cmd_identifier_token19] = ACTIONS(1946), - [aux_sym_cmd_identifier_token20] = ACTIONS(1946), - [aux_sym_cmd_identifier_token21] = ACTIONS(1946), - [aux_sym_cmd_identifier_token22] = ACTIONS(1946), - [aux_sym_cmd_identifier_token23] = ACTIONS(1946), - [aux_sym_cmd_identifier_token24] = ACTIONS(1946), - [aux_sym_cmd_identifier_token25] = ACTIONS(1946), - [aux_sym_cmd_identifier_token26] = ACTIONS(1946), - [aux_sym_cmd_identifier_token27] = ACTIONS(1946), - [aux_sym_cmd_identifier_token28] = ACTIONS(1946), - [aux_sym_cmd_identifier_token29] = ACTIONS(1946), - [aux_sym_cmd_identifier_token30] = ACTIONS(1946), - [aux_sym_cmd_identifier_token31] = ACTIONS(1946), - [aux_sym_cmd_identifier_token32] = ACTIONS(1946), - [aux_sym_cmd_identifier_token33] = ACTIONS(1946), - [aux_sym_cmd_identifier_token34] = ACTIONS(1946), - [aux_sym_cmd_identifier_token35] = ACTIONS(1946), - [aux_sym_cmd_identifier_token36] = ACTIONS(1946), - [aux_sym_cmd_identifier_token37] = ACTIONS(1946), - [aux_sym_cmd_identifier_token38] = ACTIONS(1946), - [aux_sym_cmd_identifier_token39] = ACTIONS(1946), - [aux_sym_cmd_identifier_token40] = ACTIONS(1946), - [anon_sym_def] = ACTIONS(1946), - [anon_sym_export_DASHenv] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_module] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1946), - [anon_sym_error] = ACTIONS(1946), - [anon_sym_DASH2] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_in2] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_make] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_else] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_try] = ACTIONS(1946), - [anon_sym_catch] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_source] = ACTIONS(1946), - [anon_sym_source_DASHenv] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_hide] = ACTIONS(1946), - [anon_sym_hide_DASHenv] = ACTIONS(1946), - [anon_sym_overlay] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1946), - [anon_sym_PLUS2] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1946), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1946), - [aux_sym__val_number_decimal_token2] = ACTIONS(1946), - [aux_sym__val_number_decimal_token3] = ACTIONS(1946), - [aux_sym__val_number_decimal_token4] = ACTIONS(1946), - [aux_sym__val_number_token1] = ACTIONS(1946), - [aux_sym__val_number_token2] = ACTIONS(1946), - [aux_sym__val_number_token3] = ACTIONS(1946), - [aux_sym__val_number_token4] = ACTIONS(1946), - [aux_sym__val_number_token5] = ACTIONS(1946), - [aux_sym__val_number_token6] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1946), - [sym__str_single_quotes] = ACTIONS(1946), - [sym__str_back_ticks] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1946), - [sym__entry_separator] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1948), + [242] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [435] = { - [sym_comment] = STATE(435), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(1950), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [243] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [436] = { - [sym_expr_parenthesized] = STATE(4270), - [sym__spread_parenthesized] = STATE(4636), - [sym_val_range] = STATE(4637), - [sym__val_range] = STATE(8054), - [sym__val_range_with_end] = STATE(7607), - [sym__value] = STATE(4637), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym__spread_variable] = STATE(4638), - [sym_val_variable] = STATE(4308), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4053), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym__spread_list] = STATE(4636), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym__cmd_arg] = STATE(4641), - [sym_redirection] = STATE(4642), - [sym_short_flag] = STATE(4644), - [sym_long_flag] = STATE(4644), - [sym_unquoted] = STATE(4395), - [sym__unquoted_with_expr] = STATE(4646), - [sym__unquoted_anonymous_prefix] = STATE(7186), - [sym_comment] = STATE(436), - [sym__newline] = ACTIONS(1952), - [sym__space] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT] = ACTIONS(1972), - [anon_sym_null] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(1980), - [aux_sym__val_number_decimal_token3] = ACTIONS(1982), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1986), - [aux_sym__val_number_token2] = ACTIONS(1986), - [aux_sym__val_number_token3] = ACTIONS(1986), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym__str_single_quotes] = ACTIONS(1998), - [sym__str_back_ticks] = ACTIONS(1998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2004), - [anon_sym_err_GT] = ACTIONS(2006), - [anon_sym_out_GT] = ACTIONS(2006), - [anon_sym_e_GT] = ACTIONS(2006), - [anon_sym_o_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT] = ACTIONS(2006), - [anon_sym_err_GT_GT] = ACTIONS(2006), - [anon_sym_out_GT_GT] = ACTIONS(2006), - [anon_sym_e_GT_GT] = ACTIONS(2006), - [anon_sym_o_GT_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2010), + [244] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(248), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [437] = { - [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2012), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [245] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [438] = { - [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [246] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [439] = { - [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1810), - [aux_sym_cmd_identifier_token3] = ACTIONS(1810), - [aux_sym_cmd_identifier_token4] = ACTIONS(1810), - [aux_sym_cmd_identifier_token5] = ACTIONS(1810), - [aux_sym_cmd_identifier_token6] = ACTIONS(1810), - [aux_sym_cmd_identifier_token7] = ACTIONS(1810), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1810), - [aux_sym_cmd_identifier_token11] = ACTIONS(1810), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1810), - [aux_sym_cmd_identifier_token17] = ACTIONS(1810), - [aux_sym_cmd_identifier_token18] = ACTIONS(1810), - [aux_sym_cmd_identifier_token19] = ACTIONS(1810), - [aux_sym_cmd_identifier_token20] = ACTIONS(1810), - [aux_sym_cmd_identifier_token21] = ACTIONS(1810), - [aux_sym_cmd_identifier_token22] = ACTIONS(1810), - [aux_sym_cmd_identifier_token23] = ACTIONS(1810), - [aux_sym_cmd_identifier_token24] = ACTIONS(1810), - [aux_sym_cmd_identifier_token25] = ACTIONS(1810), - [aux_sym_cmd_identifier_token26] = ACTIONS(1810), - [aux_sym_cmd_identifier_token27] = ACTIONS(1810), - [aux_sym_cmd_identifier_token28] = ACTIONS(1810), - [aux_sym_cmd_identifier_token29] = ACTIONS(1810), - [aux_sym_cmd_identifier_token30] = ACTIONS(1810), - [aux_sym_cmd_identifier_token31] = ACTIONS(1810), - [aux_sym_cmd_identifier_token32] = ACTIONS(1810), - [aux_sym_cmd_identifier_token33] = ACTIONS(1810), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1810), - [aux_sym_cmd_identifier_token36] = ACTIONS(1810), - [aux_sym_cmd_identifier_token37] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT_DOT2] = ACTIONS(2014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), + [247] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5127), + [sym_block] = STATE(5128), + [sym__expression_parenthesized] = STATE(5128), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5128), + [sym_comment] = STATE(247), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [440] = { - [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1816), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [248] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5129), + [sym_block] = STATE(5130), + [sym__expression_parenthesized] = STATE(5130), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5130), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [441] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(567), - [sym_comment] = STATE(441), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2018), - [anon_sym_alias] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_let_DASHenv] = ACTIONS(2018), - [anon_sym_mut] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [aux_sym_cmd_identifier_token1] = ACTIONS(2018), - [aux_sym_cmd_identifier_token2] = ACTIONS(2018), - [aux_sym_cmd_identifier_token3] = ACTIONS(2018), - [aux_sym_cmd_identifier_token4] = ACTIONS(2018), - [aux_sym_cmd_identifier_token5] = ACTIONS(2018), - [aux_sym_cmd_identifier_token6] = ACTIONS(2018), - [aux_sym_cmd_identifier_token7] = ACTIONS(2018), - [aux_sym_cmd_identifier_token8] = ACTIONS(2018), - [aux_sym_cmd_identifier_token9] = ACTIONS(2018), - [aux_sym_cmd_identifier_token10] = ACTIONS(2018), - [aux_sym_cmd_identifier_token11] = ACTIONS(2018), - [aux_sym_cmd_identifier_token12] = ACTIONS(2018), - [aux_sym_cmd_identifier_token13] = ACTIONS(2018), - [aux_sym_cmd_identifier_token14] = ACTIONS(2018), - [aux_sym_cmd_identifier_token15] = ACTIONS(2018), - [aux_sym_cmd_identifier_token16] = ACTIONS(2018), - [aux_sym_cmd_identifier_token17] = ACTIONS(2018), - [aux_sym_cmd_identifier_token18] = ACTIONS(2018), - [aux_sym_cmd_identifier_token19] = ACTIONS(2018), - [aux_sym_cmd_identifier_token20] = ACTIONS(2018), - [aux_sym_cmd_identifier_token21] = ACTIONS(2018), - [aux_sym_cmd_identifier_token22] = ACTIONS(2018), - [aux_sym_cmd_identifier_token23] = ACTIONS(2018), - [aux_sym_cmd_identifier_token24] = ACTIONS(2018), - [aux_sym_cmd_identifier_token25] = ACTIONS(2018), - [aux_sym_cmd_identifier_token26] = ACTIONS(2018), - [aux_sym_cmd_identifier_token27] = ACTIONS(2018), - [aux_sym_cmd_identifier_token28] = ACTIONS(2018), - [aux_sym_cmd_identifier_token29] = ACTIONS(2018), - [aux_sym_cmd_identifier_token30] = ACTIONS(2018), - [aux_sym_cmd_identifier_token31] = ACTIONS(2018), - [aux_sym_cmd_identifier_token32] = ACTIONS(2018), - [aux_sym_cmd_identifier_token33] = ACTIONS(2018), - [aux_sym_cmd_identifier_token34] = ACTIONS(2018), - [aux_sym_cmd_identifier_token35] = ACTIONS(2018), - [aux_sym_cmd_identifier_token36] = ACTIONS(2018), - [aux_sym_cmd_identifier_token37] = ACTIONS(2018), - [aux_sym_cmd_identifier_token38] = ACTIONS(2018), - [aux_sym_cmd_identifier_token39] = ACTIONS(2018), - [aux_sym_cmd_identifier_token40] = ACTIONS(2018), - [anon_sym_def] = ACTIONS(2018), - [anon_sym_export_DASHenv] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_error] = ACTIONS(2018), - [anon_sym_DASH2] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_in2] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_make] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_source] = ACTIONS(2018), - [anon_sym_source_DASHenv] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_hide] = ACTIONS(2018), - [anon_sym_hide_DASHenv] = ACTIONS(2018), - [anon_sym_overlay] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_PLUS2] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), - [aux_sym__val_number_decimal_token1] = ACTIONS(2018), - [aux_sym__val_number_decimal_token2] = ACTIONS(2018), - [aux_sym__val_number_decimal_token3] = ACTIONS(2018), - [aux_sym__val_number_decimal_token4] = ACTIONS(2018), - [aux_sym__val_number_token1] = ACTIONS(2018), - [aux_sym__val_number_token2] = ACTIONS(2018), - [aux_sym__val_number_token3] = ACTIONS(2018), - [aux_sym__val_number_token4] = ACTIONS(2018), - [aux_sym__val_number_token5] = ACTIONS(2018), - [aux_sym__val_number_token6] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [sym__str_single_quotes] = ACTIONS(2018), - [sym__str_back_ticks] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), - [sym__entry_separator] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2020), + [249] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1008), + [250] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2022), - [aux_sym__immediate_decimal_token2] = ACTIONS(2024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [251] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5134), + [sym_block] = STATE(5135), + [sym__expression_parenthesized] = STATE(5135), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5135), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [444] = { - [sym_cell_path] = STATE(628), - [sym_path] = STATE(567), - [sym_comment] = STATE(444), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2026), - [anon_sym_alias] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_let_DASHenv] = ACTIONS(2026), - [anon_sym_mut] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [aux_sym_cmd_identifier_token1] = ACTIONS(2026), - [aux_sym_cmd_identifier_token2] = ACTIONS(2026), - [aux_sym_cmd_identifier_token3] = ACTIONS(2026), - [aux_sym_cmd_identifier_token4] = ACTIONS(2026), - [aux_sym_cmd_identifier_token5] = ACTIONS(2026), - [aux_sym_cmd_identifier_token6] = ACTIONS(2026), - [aux_sym_cmd_identifier_token7] = ACTIONS(2026), - [aux_sym_cmd_identifier_token8] = ACTIONS(2026), - [aux_sym_cmd_identifier_token9] = ACTIONS(2026), - [aux_sym_cmd_identifier_token10] = ACTIONS(2026), - [aux_sym_cmd_identifier_token11] = ACTIONS(2026), - [aux_sym_cmd_identifier_token12] = ACTIONS(2026), - [aux_sym_cmd_identifier_token13] = ACTIONS(2026), - [aux_sym_cmd_identifier_token14] = ACTIONS(2026), - [aux_sym_cmd_identifier_token15] = ACTIONS(2026), - [aux_sym_cmd_identifier_token16] = ACTIONS(2026), - [aux_sym_cmd_identifier_token17] = ACTIONS(2026), - [aux_sym_cmd_identifier_token18] = ACTIONS(2026), - [aux_sym_cmd_identifier_token19] = ACTIONS(2026), - [aux_sym_cmd_identifier_token20] = ACTIONS(2026), - [aux_sym_cmd_identifier_token21] = ACTIONS(2026), - [aux_sym_cmd_identifier_token22] = ACTIONS(2026), - [aux_sym_cmd_identifier_token23] = ACTIONS(2026), - [aux_sym_cmd_identifier_token24] = ACTIONS(2026), - [aux_sym_cmd_identifier_token25] = ACTIONS(2026), - [aux_sym_cmd_identifier_token26] = ACTIONS(2026), - [aux_sym_cmd_identifier_token27] = ACTIONS(2026), - [aux_sym_cmd_identifier_token28] = ACTIONS(2026), - [aux_sym_cmd_identifier_token29] = ACTIONS(2026), - [aux_sym_cmd_identifier_token30] = ACTIONS(2026), - [aux_sym_cmd_identifier_token31] = ACTIONS(2026), - [aux_sym_cmd_identifier_token32] = ACTIONS(2026), - [aux_sym_cmd_identifier_token33] = ACTIONS(2026), - [aux_sym_cmd_identifier_token34] = ACTIONS(2026), - [aux_sym_cmd_identifier_token35] = ACTIONS(2026), - [aux_sym_cmd_identifier_token36] = ACTIONS(2026), - [aux_sym_cmd_identifier_token37] = ACTIONS(2026), - [aux_sym_cmd_identifier_token38] = ACTIONS(2026), - [aux_sym_cmd_identifier_token39] = ACTIONS(2026), - [aux_sym_cmd_identifier_token40] = ACTIONS(2026), - [anon_sym_def] = ACTIONS(2026), - [anon_sym_export_DASHenv] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym_module] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2026), - [anon_sym_error] = ACTIONS(2026), - [anon_sym_DASH2] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_in2] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_make] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_else] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_try] = ACTIONS(2026), - [anon_sym_catch] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_source] = ACTIONS(2026), - [anon_sym_source_DASHenv] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_hide] = ACTIONS(2026), - [anon_sym_hide_DASHenv] = ACTIONS(2026), - [anon_sym_overlay] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_PLUS2] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), - [aux_sym__val_number_decimal_token1] = ACTIONS(2026), - [aux_sym__val_number_decimal_token2] = ACTIONS(2026), - [aux_sym__val_number_decimal_token3] = ACTIONS(2026), - [aux_sym__val_number_decimal_token4] = ACTIONS(2026), - [aux_sym__val_number_token1] = ACTIONS(2026), - [aux_sym__val_number_token2] = ACTIONS(2026), - [aux_sym__val_number_token3] = ACTIONS(2026), - [aux_sym__val_number_token4] = ACTIONS(2026), - [aux_sym__val_number_token5] = ACTIONS(2026), - [aux_sym__val_number_token6] = ACTIONS(2026), - [anon_sym_DQUOTE] = ACTIONS(2026), - [sym__str_single_quotes] = ACTIONS(2026), - [sym__str_back_ticks] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), - [sym__entry_separator] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2028), + [252] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [253] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5073), + [sym_block] = STATE(5074), + [sym__expression_parenthesized] = STATE(5074), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5074), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(256), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [254] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5075), + [sym_block] = STATE(5076), + [sym__expression_parenthesized] = STATE(5076), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5076), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(258), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [255] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5077), + [sym_block] = STATE(5078), + [sym__expression_parenthesized] = STATE(5078), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5078), + [sym_comment] = STATE(255), + [aux_sym_shebang_repeat1] = STATE(260), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [256] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(256), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [257] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5098), + [sym_block] = STATE(5099), + [sym__expression_parenthesized] = STATE(5099), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5099), + [sym_comment] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(263), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [258] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [259] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5101), + [sym_block] = STATE(5102), + [sym__expression_parenthesized] = STATE(5102), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5102), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(264), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [260] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [261] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(266), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [262] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5107), + [sym_block] = STATE(5108), + [sym__expression_parenthesized] = STATE(5108), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5108), + [sym_comment] = STATE(262), + [aux_sym_shebang_repeat1] = STATE(268), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [263] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5119), + [sym__expression_parenthesized] = STATE(5119), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5119), + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [264] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(264), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [265] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5121), + [sym__expression_parenthesized] = STATE(5121), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5121), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(270), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [266] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [267] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5123), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [268] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [269] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5125), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [445] = { - [sym_cell_path] = STATE(647), - [sym_path] = STATE(567), - [sym_comment] = STATE(445), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2030), - [anon_sym_alias] = ACTIONS(2030), - [anon_sym_let] = ACTIONS(2030), - [anon_sym_let_DASHenv] = ACTIONS(2030), - [anon_sym_mut] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [aux_sym_cmd_identifier_token1] = ACTIONS(2030), - [aux_sym_cmd_identifier_token2] = ACTIONS(2030), - [aux_sym_cmd_identifier_token3] = ACTIONS(2030), - [aux_sym_cmd_identifier_token4] = ACTIONS(2030), - [aux_sym_cmd_identifier_token5] = ACTIONS(2030), - [aux_sym_cmd_identifier_token6] = ACTIONS(2030), - [aux_sym_cmd_identifier_token7] = ACTIONS(2030), - [aux_sym_cmd_identifier_token8] = ACTIONS(2030), - [aux_sym_cmd_identifier_token9] = ACTIONS(2030), - [aux_sym_cmd_identifier_token10] = ACTIONS(2030), - [aux_sym_cmd_identifier_token11] = ACTIONS(2030), - [aux_sym_cmd_identifier_token12] = ACTIONS(2030), - [aux_sym_cmd_identifier_token13] = ACTIONS(2030), - [aux_sym_cmd_identifier_token14] = ACTIONS(2030), - [aux_sym_cmd_identifier_token15] = ACTIONS(2030), - [aux_sym_cmd_identifier_token16] = ACTIONS(2030), - [aux_sym_cmd_identifier_token17] = ACTIONS(2030), - [aux_sym_cmd_identifier_token18] = ACTIONS(2030), - [aux_sym_cmd_identifier_token19] = ACTIONS(2030), - [aux_sym_cmd_identifier_token20] = ACTIONS(2030), - [aux_sym_cmd_identifier_token21] = ACTIONS(2030), - [aux_sym_cmd_identifier_token22] = ACTIONS(2030), - [aux_sym_cmd_identifier_token23] = ACTIONS(2030), - [aux_sym_cmd_identifier_token24] = ACTIONS(2030), - [aux_sym_cmd_identifier_token25] = ACTIONS(2030), - [aux_sym_cmd_identifier_token26] = ACTIONS(2030), - [aux_sym_cmd_identifier_token27] = ACTIONS(2030), - [aux_sym_cmd_identifier_token28] = ACTIONS(2030), - [aux_sym_cmd_identifier_token29] = ACTIONS(2030), - [aux_sym_cmd_identifier_token30] = ACTIONS(2030), - [aux_sym_cmd_identifier_token31] = ACTIONS(2030), - [aux_sym_cmd_identifier_token32] = ACTIONS(2030), - [aux_sym_cmd_identifier_token33] = ACTIONS(2030), - [aux_sym_cmd_identifier_token34] = ACTIONS(2030), - [aux_sym_cmd_identifier_token35] = ACTIONS(2030), - [aux_sym_cmd_identifier_token36] = ACTIONS(2030), - [aux_sym_cmd_identifier_token37] = ACTIONS(2030), - [aux_sym_cmd_identifier_token38] = ACTIONS(2030), - [aux_sym_cmd_identifier_token39] = ACTIONS(2030), - [aux_sym_cmd_identifier_token40] = ACTIONS(2030), - [anon_sym_def] = ACTIONS(2030), - [anon_sym_export_DASHenv] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym_module] = ACTIONS(2030), - [anon_sym_use] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2030), - [anon_sym_error] = ACTIONS(2030), - [anon_sym_DASH2] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_in2] = ACTIONS(2030), - [anon_sym_loop] = ACTIONS(2030), - [anon_sym_make] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_else] = ACTIONS(2030), - [anon_sym_match] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_try] = ACTIONS(2030), - [anon_sym_catch] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_source] = ACTIONS(2030), - [anon_sym_source_DASHenv] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_hide] = ACTIONS(2030), - [anon_sym_hide_DASHenv] = ACTIONS(2030), - [anon_sym_overlay] = ACTIONS(2030), - [anon_sym_as] = ACTIONS(2030), - [anon_sym_PLUS2] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), - [aux_sym__val_number_decimal_token1] = ACTIONS(2030), - [aux_sym__val_number_decimal_token2] = ACTIONS(2030), - [aux_sym__val_number_decimal_token3] = ACTIONS(2030), - [aux_sym__val_number_decimal_token4] = ACTIONS(2030), - [aux_sym__val_number_token1] = ACTIONS(2030), - [aux_sym__val_number_token2] = ACTIONS(2030), - [aux_sym__val_number_token3] = ACTIONS(2030), - [aux_sym__val_number_token4] = ACTIONS(2030), - [aux_sym__val_number_token5] = ACTIONS(2030), - [aux_sym__val_number_token6] = ACTIONS(2030), - [anon_sym_DQUOTE] = ACTIONS(2030), - [sym__str_single_quotes] = ACTIONS(2030), - [sym__str_back_ticks] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), - [sym__entry_separator] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2032), + [270] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5127), + [sym_block] = STATE(5128), + [sym__expression_parenthesized] = STATE(5128), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5128), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [446] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(567), - [sym_comment] = STATE(446), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_alias] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_let_DASHenv] = ACTIONS(2034), - [anon_sym_mut] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [aux_sym_cmd_identifier_token1] = ACTIONS(2034), - [aux_sym_cmd_identifier_token2] = ACTIONS(2034), - [aux_sym_cmd_identifier_token3] = ACTIONS(2034), - [aux_sym_cmd_identifier_token4] = ACTIONS(2034), - [aux_sym_cmd_identifier_token5] = ACTIONS(2034), - [aux_sym_cmd_identifier_token6] = ACTIONS(2034), - [aux_sym_cmd_identifier_token7] = ACTIONS(2034), - [aux_sym_cmd_identifier_token8] = ACTIONS(2034), - [aux_sym_cmd_identifier_token9] = ACTIONS(2034), - [aux_sym_cmd_identifier_token10] = ACTIONS(2034), - [aux_sym_cmd_identifier_token11] = ACTIONS(2034), - [aux_sym_cmd_identifier_token12] = ACTIONS(2034), - [aux_sym_cmd_identifier_token13] = ACTIONS(2034), - [aux_sym_cmd_identifier_token14] = ACTIONS(2034), - [aux_sym_cmd_identifier_token15] = ACTIONS(2034), - [aux_sym_cmd_identifier_token16] = ACTIONS(2034), - [aux_sym_cmd_identifier_token17] = ACTIONS(2034), - [aux_sym_cmd_identifier_token18] = ACTIONS(2034), - [aux_sym_cmd_identifier_token19] = ACTIONS(2034), - [aux_sym_cmd_identifier_token20] = ACTIONS(2034), - [aux_sym_cmd_identifier_token21] = ACTIONS(2034), - [aux_sym_cmd_identifier_token22] = ACTIONS(2034), - [aux_sym_cmd_identifier_token23] = ACTIONS(2034), - [aux_sym_cmd_identifier_token24] = ACTIONS(2034), - [aux_sym_cmd_identifier_token25] = ACTIONS(2034), - [aux_sym_cmd_identifier_token26] = ACTIONS(2034), - [aux_sym_cmd_identifier_token27] = ACTIONS(2034), - [aux_sym_cmd_identifier_token28] = ACTIONS(2034), - [aux_sym_cmd_identifier_token29] = ACTIONS(2034), - [aux_sym_cmd_identifier_token30] = ACTIONS(2034), - [aux_sym_cmd_identifier_token31] = ACTIONS(2034), - [aux_sym_cmd_identifier_token32] = ACTIONS(2034), - [aux_sym_cmd_identifier_token33] = ACTIONS(2034), - [aux_sym_cmd_identifier_token34] = ACTIONS(2034), - [aux_sym_cmd_identifier_token35] = ACTIONS(2034), - [aux_sym_cmd_identifier_token36] = ACTIONS(2034), - [aux_sym_cmd_identifier_token37] = ACTIONS(2034), - [aux_sym_cmd_identifier_token38] = ACTIONS(2034), - [aux_sym_cmd_identifier_token39] = ACTIONS(2034), - [aux_sym_cmd_identifier_token40] = ACTIONS(2034), - [anon_sym_def] = ACTIONS(2034), - [anon_sym_export_DASHenv] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_use] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(2034), - [anon_sym_error] = ACTIONS(2034), - [anon_sym_DASH2] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_in2] = ACTIONS(2034), - [anon_sym_loop] = ACTIONS(2034), - [anon_sym_make] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_match] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_catch] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_source] = ACTIONS(2034), - [anon_sym_source_DASHenv] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_hide] = ACTIONS(2034), - [anon_sym_hide_DASHenv] = ACTIONS(2034), - [anon_sym_overlay] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_PLUS2] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2034), - [aux_sym__val_number_decimal_token3] = ACTIONS(2034), - [aux_sym__val_number_decimal_token4] = ACTIONS(2034), - [aux_sym__val_number_token1] = ACTIONS(2034), - [aux_sym__val_number_token2] = ACTIONS(2034), - [aux_sym__val_number_token3] = ACTIONS(2034), - [aux_sym__val_number_token4] = ACTIONS(2034), - [aux_sym__val_number_token5] = ACTIONS(2034), - [aux_sym__val_number_token6] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2034), - [sym__str_single_quotes] = ACTIONS(2034), - [sym__str_back_ticks] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), - [sym__entry_separator] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2036), + [271] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5129), + [sym_block] = STATE(5130), + [sym__expression_parenthesized] = STATE(5130), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5130), + [sym_comment] = STATE(271), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [272] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [448] = { - [sym_cell_path] = STATE(657), - [sym_path] = STATE(567), - [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2038), - [anon_sym_alias] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_let_DASHenv] = ACTIONS(2038), - [anon_sym_mut] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [aux_sym_cmd_identifier_token1] = ACTIONS(2038), - [aux_sym_cmd_identifier_token2] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2038), - [aux_sym_cmd_identifier_token4] = ACTIONS(2038), - [aux_sym_cmd_identifier_token5] = ACTIONS(2038), - [aux_sym_cmd_identifier_token6] = ACTIONS(2038), - [aux_sym_cmd_identifier_token7] = ACTIONS(2038), - [aux_sym_cmd_identifier_token8] = ACTIONS(2038), - [aux_sym_cmd_identifier_token9] = ACTIONS(2038), - [aux_sym_cmd_identifier_token10] = ACTIONS(2038), - [aux_sym_cmd_identifier_token11] = ACTIONS(2038), - [aux_sym_cmd_identifier_token12] = ACTIONS(2038), - [aux_sym_cmd_identifier_token13] = ACTIONS(2038), - [aux_sym_cmd_identifier_token14] = ACTIONS(2038), - [aux_sym_cmd_identifier_token15] = ACTIONS(2038), - [aux_sym_cmd_identifier_token16] = ACTIONS(2038), - [aux_sym_cmd_identifier_token17] = ACTIONS(2038), - [aux_sym_cmd_identifier_token18] = ACTIONS(2038), - [aux_sym_cmd_identifier_token19] = ACTIONS(2038), - [aux_sym_cmd_identifier_token20] = ACTIONS(2038), - [aux_sym_cmd_identifier_token21] = ACTIONS(2038), - [aux_sym_cmd_identifier_token22] = ACTIONS(2038), - [aux_sym_cmd_identifier_token23] = ACTIONS(2038), - [aux_sym_cmd_identifier_token24] = ACTIONS(2038), - [aux_sym_cmd_identifier_token25] = ACTIONS(2038), - [aux_sym_cmd_identifier_token26] = ACTIONS(2038), - [aux_sym_cmd_identifier_token27] = ACTIONS(2038), - [aux_sym_cmd_identifier_token28] = ACTIONS(2038), - [aux_sym_cmd_identifier_token29] = ACTIONS(2038), - [aux_sym_cmd_identifier_token30] = ACTIONS(2038), - [aux_sym_cmd_identifier_token31] = ACTIONS(2038), - [aux_sym_cmd_identifier_token32] = ACTIONS(2038), - [aux_sym_cmd_identifier_token33] = ACTIONS(2038), - [aux_sym_cmd_identifier_token34] = ACTIONS(2038), - [aux_sym_cmd_identifier_token35] = ACTIONS(2038), - [aux_sym_cmd_identifier_token36] = ACTIONS(2038), - [aux_sym_cmd_identifier_token37] = ACTIONS(2038), - [aux_sym_cmd_identifier_token38] = ACTIONS(2038), - [aux_sym_cmd_identifier_token39] = ACTIONS(2038), - [aux_sym_cmd_identifier_token40] = ACTIONS(2038), - [anon_sym_def] = ACTIONS(2038), - [anon_sym_export_DASHenv] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_module] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_DOLLAR] = ACTIONS(2038), - [anon_sym_error] = ACTIONS(2038), - [anon_sym_DASH2] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_in2] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_make] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_try] = ACTIONS(2038), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_source] = ACTIONS(2038), - [anon_sym_source_DASHenv] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_hide] = ACTIONS(2038), - [anon_sym_hide_DASHenv] = ACTIONS(2038), - [anon_sym_overlay] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_PLUS2] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), - [aux_sym__val_number_decimal_token1] = ACTIONS(2038), - [aux_sym__val_number_decimal_token2] = ACTIONS(2038), - [aux_sym__val_number_decimal_token3] = ACTIONS(2038), - [aux_sym__val_number_decimal_token4] = ACTIONS(2038), - [aux_sym__val_number_token1] = ACTIONS(2038), - [aux_sym__val_number_token2] = ACTIONS(2038), - [aux_sym__val_number_token3] = ACTIONS(2038), - [aux_sym__val_number_token4] = ACTIONS(2038), - [aux_sym__val_number_token5] = ACTIONS(2038), - [aux_sym__val_number_token6] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(2038), - [sym__str_single_quotes] = ACTIONS(2038), - [sym__str_back_ticks] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), - [sym__entry_separator] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2040), + [273] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5131), + [sym_block] = STATE(5132), + [sym__expression_parenthesized] = STATE(5132), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5132), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(274), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [449] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(567), - [sym_comment] = STATE(449), - [aux_sym_cell_path_repeat1] = STATE(495), - [anon_sym_export] = ACTIONS(2042), - [anon_sym_alias] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_let_DASHenv] = ACTIONS(2042), - [anon_sym_mut] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [aux_sym_cmd_identifier_token1] = ACTIONS(2042), - [aux_sym_cmd_identifier_token2] = ACTIONS(2042), - [aux_sym_cmd_identifier_token3] = ACTIONS(2042), - [aux_sym_cmd_identifier_token4] = ACTIONS(2042), - [aux_sym_cmd_identifier_token5] = ACTIONS(2042), - [aux_sym_cmd_identifier_token6] = ACTIONS(2042), - [aux_sym_cmd_identifier_token7] = ACTIONS(2042), - [aux_sym_cmd_identifier_token8] = ACTIONS(2042), - [aux_sym_cmd_identifier_token9] = ACTIONS(2042), - [aux_sym_cmd_identifier_token10] = ACTIONS(2042), - [aux_sym_cmd_identifier_token11] = ACTIONS(2042), - [aux_sym_cmd_identifier_token12] = ACTIONS(2042), - [aux_sym_cmd_identifier_token13] = ACTIONS(2042), - [aux_sym_cmd_identifier_token14] = ACTIONS(2042), - [aux_sym_cmd_identifier_token15] = ACTIONS(2042), - [aux_sym_cmd_identifier_token16] = ACTIONS(2042), - [aux_sym_cmd_identifier_token17] = ACTIONS(2042), - [aux_sym_cmd_identifier_token18] = ACTIONS(2042), - [aux_sym_cmd_identifier_token19] = ACTIONS(2042), - [aux_sym_cmd_identifier_token20] = ACTIONS(2042), - [aux_sym_cmd_identifier_token21] = ACTIONS(2042), - [aux_sym_cmd_identifier_token22] = ACTIONS(2042), - [aux_sym_cmd_identifier_token23] = ACTIONS(2042), - [aux_sym_cmd_identifier_token24] = ACTIONS(2042), - [aux_sym_cmd_identifier_token25] = ACTIONS(2042), - [aux_sym_cmd_identifier_token26] = ACTIONS(2042), - [aux_sym_cmd_identifier_token27] = ACTIONS(2042), - [aux_sym_cmd_identifier_token28] = ACTIONS(2042), - [aux_sym_cmd_identifier_token29] = ACTIONS(2042), - [aux_sym_cmd_identifier_token30] = ACTIONS(2042), - [aux_sym_cmd_identifier_token31] = ACTIONS(2042), - [aux_sym_cmd_identifier_token32] = ACTIONS(2042), - [aux_sym_cmd_identifier_token33] = ACTIONS(2042), - [aux_sym_cmd_identifier_token34] = ACTIONS(2042), - [aux_sym_cmd_identifier_token35] = ACTIONS(2042), - [aux_sym_cmd_identifier_token36] = ACTIONS(2042), - [aux_sym_cmd_identifier_token37] = ACTIONS(2042), - [aux_sym_cmd_identifier_token38] = ACTIONS(2042), - [aux_sym_cmd_identifier_token39] = ACTIONS(2042), - [aux_sym_cmd_identifier_token40] = ACTIONS(2042), - [anon_sym_def] = ACTIONS(2042), - [anon_sym_export_DASHenv] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_module] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2042), - [anon_sym_error] = ACTIONS(2042), - [anon_sym_DASH2] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_in2] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_make] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_try] = ACTIONS(2042), - [anon_sym_catch] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_source] = ACTIONS(2042), - [anon_sym_source_DASHenv] = ACTIONS(2042), - [anon_sym_register] = ACTIONS(2042), - [anon_sym_hide] = ACTIONS(2042), - [anon_sym_hide_DASHenv] = ACTIONS(2042), - [anon_sym_overlay] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_PLUS2] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2042), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2042), - [aux_sym__val_number_decimal_token1] = ACTIONS(2042), - [aux_sym__val_number_decimal_token2] = ACTIONS(2042), - [aux_sym__val_number_decimal_token3] = ACTIONS(2042), - [aux_sym__val_number_decimal_token4] = ACTIONS(2042), - [aux_sym__val_number_token1] = ACTIONS(2042), - [aux_sym__val_number_token2] = ACTIONS(2042), - [aux_sym__val_number_token3] = ACTIONS(2042), - [aux_sym__val_number_token4] = ACTIONS(2042), - [aux_sym__val_number_token5] = ACTIONS(2042), - [aux_sym__val_number_token6] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(2042), - [sym__str_single_quotes] = ACTIONS(2042), - [sym__str_back_ticks] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2042), - [sym__entry_separator] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2044), + [274] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5134), + [sym_block] = STATE(5135), + [sym__expression_parenthesized] = STATE(5135), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5135), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [450] = { - [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(2046), - [aux_sym__immediate_decimal_token2] = ACTIONS(2048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [275] = { + [sym_comment] = STATE(275), + [anon_sym_export] = ACTIONS(1267), + [anon_sym_alias] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_let_DASHenv] = ACTIONS(1267), + [anon_sym_mut] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [aux_sym_cmd_identifier_token1] = ACTIONS(1267), + [aux_sym_cmd_identifier_token2] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1248), + [aux_sym_cmd_identifier_token4] = ACTIONS(1248), + [aux_sym_cmd_identifier_token5] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1248), + [aux_sym_cmd_identifier_token7] = ACTIONS(1248), + [aux_sym_cmd_identifier_token8] = ACTIONS(1267), + [aux_sym_cmd_identifier_token9] = ACTIONS(1267), + [aux_sym_cmd_identifier_token10] = ACTIONS(1248), + [aux_sym_cmd_identifier_token11] = ACTIONS(1248), + [aux_sym_cmd_identifier_token12] = ACTIONS(1267), + [aux_sym_cmd_identifier_token13] = ACTIONS(1267), + [aux_sym_cmd_identifier_token14] = ACTIONS(1267), + [aux_sym_cmd_identifier_token15] = ACTIONS(1267), + [aux_sym_cmd_identifier_token16] = ACTIONS(1248), + [aux_sym_cmd_identifier_token17] = ACTIONS(1248), + [aux_sym_cmd_identifier_token18] = ACTIONS(1267), + [aux_sym_cmd_identifier_token19] = ACTIONS(1248), + [aux_sym_cmd_identifier_token20] = ACTIONS(1248), + [aux_sym_cmd_identifier_token21] = ACTIONS(1248), + [aux_sym_cmd_identifier_token22] = ACTIONS(1248), + [aux_sym_cmd_identifier_token23] = ACTIONS(1248), + [aux_sym_cmd_identifier_token24] = ACTIONS(1248), + [aux_sym_cmd_identifier_token25] = ACTIONS(1248), + [aux_sym_cmd_identifier_token26] = ACTIONS(1248), + [aux_sym_cmd_identifier_token27] = ACTIONS(1248), + [aux_sym_cmd_identifier_token28] = ACTIONS(1248), + [aux_sym_cmd_identifier_token29] = ACTIONS(1248), + [aux_sym_cmd_identifier_token30] = ACTIONS(1248), + [aux_sym_cmd_identifier_token31] = ACTIONS(1248), + [aux_sym_cmd_identifier_token32] = ACTIONS(1267), + [aux_sym_cmd_identifier_token33] = ACTIONS(1248), + [aux_sym_cmd_identifier_token34] = ACTIONS(1267), + [aux_sym_cmd_identifier_token35] = ACTIONS(1248), + [aux_sym_cmd_identifier_token36] = ACTIONS(1248), + [aux_sym_cmd_identifier_token37] = ACTIONS(1248), + [aux_sym_cmd_identifier_token38] = ACTIONS(1267), + [aux_sym_cmd_identifier_token39] = ACTIONS(1248), + [aux_sym_cmd_identifier_token40] = ACTIONS(1248), + [sym__newline] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_def] = ACTIONS(1267), + [anon_sym_export_DASHenv] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_module] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_error] = ACTIONS(1267), + [anon_sym_DASH2] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_source] = ACTIONS(1267), + [anon_sym_source_DASHenv] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_hide] = ACTIONS(1267), + [anon_sym_hide_DASHenv] = ACTIONS(1267), + [anon_sym_overlay] = ACTIONS(1267), + [anon_sym_where] = ACTIONS(1248), + [aux_sym_expr_unary_token1] = ACTIONS(1248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), + [anon_sym_DOT_DOT_LT] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1267), + [aux_sym__val_number_decimal_token2] = ACTIONS(1248), + [aux_sym__val_number_decimal_token3] = ACTIONS(1248), + [aux_sym__val_number_decimal_token4] = ACTIONS(1248), + [aux_sym__val_number_token1] = ACTIONS(1248), + [aux_sym__val_number_token2] = ACTIONS(1248), + [aux_sym__val_number_token3] = ACTIONS(1248), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1267), + [anon_sym_0o] = ACTIONS(1267), + [anon_sym_0x] = ACTIONS(1267), + [sym_val_date] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym__str_single_quotes] = ACTIONS(1248), + [sym__str_back_ticks] = ACTIONS(1248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1248), + [aux_sym_env_var_token1] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym_ansigradient] = ACTIONS(1248), + [anon_sym_ansilink] = ACTIONS(1248), + [anon_sym_ansistrip] = ACTIONS(1248), + [anon_sym_bitsand] = ACTIONS(1248), + [anon_sym_bitsnot] = ACTIONS(1248), + [anon_sym_bitsor] = ACTIONS(1248), + [anon_sym_bitsrol] = ACTIONS(1248), + [anon_sym_bitsror] = ACTIONS(1248), + [anon_sym_bitsshl] = ACTIONS(1248), + [anon_sym_bitsshr] = ACTIONS(1248), + [anon_sym_bitsxor] = ACTIONS(1248), + [anon_sym_bytesadd] = ACTIONS(1248), + [anon_sym_bytesat] = ACTIONS(1248), + [anon_sym_bytesbuild] = ACTIONS(1248), + [anon_sym_bytescollect] = ACTIONS(1248), + [anon_sym_bytesends_DASHwith] = ACTIONS(1248), + [anon_sym_bytesindex_DASHof] = ACTIONS(1248), + [anon_sym_byteslength] = ACTIONS(1248), + [anon_sym_bytesremove] = ACTIONS(1248), + [anon_sym_bytesreplace] = ACTIONS(1248), + [anon_sym_bytesreverse] = ACTIONS(1248), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1248), + [anon_sym_commandlineedit] = ACTIONS(1248), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1248), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1248), + [anon_sym_configenv] = ACTIONS(1248), + [anon_sym_confignu] = ACTIONS(1248), + [anon_sym_configreset] = ACTIONS(1248), + [anon_sym_dateformat] = ACTIONS(1248), + [anon_sym_datehumanize] = ACTIONS(1248), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1248), + [anon_sym_datenow] = ACTIONS(1248), + [anon_sym_dateto_DASHrecord] = ACTIONS(1248), + [anon_sym_dateto_DASHtable] = ACTIONS(1248), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1248), + [anon_sym_debuginfo] = ACTIONS(1248), + [anon_sym_debugprofile] = ACTIONS(1248), + [anon_sym_decodebase32] = ACTIONS(1267), + [anon_sym_decodebase32hex] = ACTIONS(1248), + [anon_sym_decodebase64] = ACTIONS(1248), + [anon_sym_decodehex] = ACTIONS(1248), + [anon_sym_detectcolumns] = ACTIONS(1248), + [anon_sym_dropcolumn] = ACTIONS(1248), + [anon_sym_dropnth] = ACTIONS(1248), + [anon_sym_dtadd] = ACTIONS(1248), + [anon_sym_dtdiff] = ACTIONS(1248), + [anon_sym_dtformat] = ACTIONS(1248), + [anon_sym_dtnow] = ACTIONS(1248), + [anon_sym_dtpart] = ACTIONS(1248), + [anon_sym_dtto] = ACTIONS(1248), + [anon_sym_dtutcnow] = ACTIONS(1248), + [anon_sym_eachwhile] = ACTIONS(1248), + [anon_sym_encodebase32] = ACTIONS(1267), + [anon_sym_encodebase32hex] = ACTIONS(1248), + [anon_sym_encodebase64] = ACTIONS(1248), + [anon_sym_encodehex] = ACTIONS(1248), + [anon_sym_errormake] = ACTIONS(1248), + [anon_sym_exploreir] = ACTIONS(1248), + [anon_sym_formatdate] = ACTIONS(1248), + [anon_sym_formatduration] = ACTIONS(1248), + [anon_sym_formatfilesize] = ACTIONS(1248), + [anon_sym_formatpattern] = ACTIONS(1248), + [anon_sym_frombz2] = ACTIONS(1248), + [anon_sym_fromcsv] = ACTIONS(1248), + [anon_sym_fromeml] = ACTIONS(1248), + [anon_sym_fromgz] = ACTIONS(1248), + [anon_sym_fromics] = ACTIONS(1248), + [anon_sym_fromini] = ACTIONS(1248), + [anon_sym_fromjson] = ACTIONS(1248), + [anon_sym_frommsgpack] = ACTIONS(1267), + [anon_sym_frommsgpackz] = ACTIONS(1248), + [anon_sym_fromnuon] = ACTIONS(1248), + [anon_sym_fromods] = ACTIONS(1248), + [anon_sym_fromparquet] = ACTIONS(1248), + [anon_sym_fromplist] = ACTIONS(1248), + [anon_sym_frompng] = ACTIONS(1248), + [anon_sym_fromssv] = ACTIONS(1248), + [anon_sym_fromtoml] = ACTIONS(1248), + [anon_sym_fromtsv] = ACTIONS(1248), + [anon_sym_fromurl] = ACTIONS(1248), + [anon_sym_fromvcf] = ACTIONS(1248), + [anon_sym_fromxlsx] = ACTIONS(1248), + [anon_sym_fromxml] = ACTIONS(1248), + [anon_sym_fromxz] = ACTIONS(1248), + [anon_sym_fromyaml] = ACTIONS(1248), + [anon_sym_fromyml] = ACTIONS(1248), + [anon_sym_fromzst] = ACTIONS(1248), + [anon_sym_hashmd5] = ACTIONS(1248), + [anon_sym_hashsha256] = ACTIONS(1248), + [anon_sym_helpaliases] = ACTIONS(1248), + [anon_sym_helpcommands] = ACTIONS(1248), + [anon_sym_helpescapes] = ACTIONS(1248), + [anon_sym_helpexterns] = ACTIONS(1248), + [anon_sym_helpmodules] = ACTIONS(1248), + [anon_sym_helpoperators] = ACTIONS(1248), + [anon_sym_historyimport] = ACTIONS(1248), + [anon_sym_historysession] = ACTIONS(1248), + [anon_sym_httpdelete] = ACTIONS(1248), + [anon_sym_httpget] = ACTIONS(1248), + [anon_sym_httphead] = ACTIONS(1248), + [anon_sym_httpoptions] = ACTIONS(1248), + [anon_sym_httppatch] = ACTIONS(1248), + [anon_sym_httppost] = ACTIONS(1248), + [anon_sym_httpput] = ACTIONS(1248), + [anon_sym_inputlist] = ACTIONS(1267), + [anon_sym_inputlisten] = ACTIONS(1248), + [anon_sym_intobinary] = ACTIONS(1248), + [anon_sym_intobits] = ACTIONS(1248), + [anon_sym_intobool] = ACTIONS(1248), + [anon_sym_intocell_DASHpath] = ACTIONS(1248), + [anon_sym_intodatetime] = ACTIONS(1248), + [anon_sym_intoduration] = ACTIONS(1248), + [anon_sym_intofilesize] = ACTIONS(1248), + [anon_sym_intofloat] = ACTIONS(1248), + [anon_sym_intoglob] = ACTIONS(1248), + [anon_sym_intoint] = ACTIONS(1248), + [anon_sym_intorecord] = ACTIONS(1248), + [anon_sym_intosqlite] = ACTIONS(1248), + [anon_sym_intostring] = ACTIONS(1248), + [anon_sym_intovalue] = ACTIONS(1248), + [anon_sym_jsonpath] = ACTIONS(1248), + [anon_sym_keybindingsdefault] = ACTIONS(1248), + [anon_sym_keybindingslist] = ACTIONS(1267), + [anon_sym_keybindingslisten] = ACTIONS(1248), + [anon_sym_mathabs] = ACTIONS(1248), + [anon_sym_matharccos] = ACTIONS(1267), + [anon_sym_matharccosh] = ACTIONS(1248), + [anon_sym_matharcsin] = ACTIONS(1267), + [anon_sym_matharcsinh] = ACTIONS(1248), + [anon_sym_matharctan] = ACTIONS(1267), + [anon_sym_matharctanh] = ACTIONS(1248), + [anon_sym_mathavg] = ACTIONS(1248), + [anon_sym_mathceil] = ACTIONS(1248), + [anon_sym_mathcos] = ACTIONS(1267), + [anon_sym_mathcosh] = ACTIONS(1248), + [anon_sym_mathexp] = ACTIONS(1248), + [anon_sym_mathfloor] = ACTIONS(1248), + [anon_sym_mathln] = ACTIONS(1248), + [anon_sym_mathlog] = ACTIONS(1248), + [anon_sym_mathmax] = ACTIONS(1248), + [anon_sym_mathmedian] = ACTIONS(1248), + [anon_sym_mathmin] = ACTIONS(1248), + [anon_sym_mathmode] = ACTIONS(1248), + [anon_sym_mathproduct] = ACTIONS(1248), + [anon_sym_mathround] = ACTIONS(1248), + [anon_sym_mathsin] = ACTIONS(1267), + [anon_sym_mathsinh] = ACTIONS(1248), + [anon_sym_mathsqrt] = ACTIONS(1248), + [anon_sym_mathstddev] = ACTIONS(1248), + [anon_sym_mathsum] = ACTIONS(1248), + [anon_sym_mathtan] = ACTIONS(1267), + [anon_sym_mathtanh] = ACTIONS(1248), + [anon_sym_mathvariance] = ACTIONS(1248), + [anon_sym_metadataaccess] = ACTIONS(1248), + [anon_sym_metadataset] = ACTIONS(1248), + [anon_sym_pathbasename] = ACTIONS(1248), + [anon_sym_pathdirname] = ACTIONS(1248), + [anon_sym_pathexists] = ACTIONS(1248), + [anon_sym_pathexpand] = ACTIONS(1248), + [anon_sym_pathjoin] = ACTIONS(1248), + [anon_sym_pathparse] = ACTIONS(1248), + [anon_sym_pathrelative_DASHto] = ACTIONS(1248), + [anon_sym_pathsplit] = ACTIONS(1248), + [anon_sym_pathtype] = ACTIONS(1248), + [anon_sym_pluginadd] = ACTIONS(1248), + [anon_sym_pluginlist] = ACTIONS(1248), + [anon_sym_pluginrm] = ACTIONS(1248), + [anon_sym_pluginstop] = ACTIONS(1248), + [anon_sym_polarsagg] = ACTIONS(1267), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1248), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1248), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsappend] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1248), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1248), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1248), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1248), + [anon_sym_polarsas] = ACTIONS(1267), + [anon_sym_polarsas_DASHdate] = ACTIONS(1267), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1248), + [anon_sym_polarscache] = ACTIONS(1248), + [anon_sym_polarscast] = ACTIONS(1248), + [anon_sym_polarscol] = ACTIONS(1267), + [anon_sym_polarscollect] = ACTIONS(1248), + [anon_sym_polarscolumns] = ACTIONS(1248), + [anon_sym_polarsconcat] = ACTIONS(1267), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1248), + [anon_sym_polarscontains] = ACTIONS(1248), + [anon_sym_polarscount] = ACTIONS(1267), + [anon_sym_polarscount_DASHnull] = ACTIONS(1248), + [anon_sym_polarscumulative] = ACTIONS(1248), + [anon_sym_polarsdatepart] = ACTIONS(1248), + [anon_sym_polarsdecimal] = ACTIONS(1248), + [anon_sym_polarsdrop] = ACTIONS(1267), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1248), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1248), + [anon_sym_polarsdummies] = ACTIONS(1248), + [anon_sym_polarsexplode] = ACTIONS(1248), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1248), + [anon_sym_polarsfetch] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1248), + [anon_sym_polarsfilter] = ACTIONS(1267), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1248), + [anon_sym_polarsfirst] = ACTIONS(1248), + [anon_sym_polarsflatten] = ACTIONS(1248), + [anon_sym_polarsget] = ACTIONS(1267), + [anon_sym_polarsget_DASHday] = ACTIONS(1248), + [anon_sym_polarsget_DASHhour] = ACTIONS(1248), + [anon_sym_polarsget_DASHminute] = ACTIONS(1248), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1248), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1248), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHweek] = ACTIONS(1267), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1248), + [anon_sym_polarsget_DASHyear] = ACTIONS(1248), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1248), + [anon_sym_polarsimplode] = ACTIONS(1248), + [anon_sym_polarsinteger] = ACTIONS(1248), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1248), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1248), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1248), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1248), + [anon_sym_polarsis_DASHin] = ACTIONS(1248), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHunique] = ACTIONS(1248), + [anon_sym_polarsjoin] = ACTIONS(1248), + [anon_sym_polarslast] = ACTIONS(1248), + [anon_sym_polarslen] = ACTIONS(1248), + [anon_sym_polarslit] = ACTIONS(1248), + [anon_sym_polarslowercase] = ACTIONS(1248), + [anon_sym_polarsmax] = ACTIONS(1248), + [anon_sym_polarsmean] = ACTIONS(1248), + [anon_sym_polarsmedian] = ACTIONS(1248), + [anon_sym_polarsmin] = ACTIONS(1248), + [anon_sym_polarsn_DASHunique] = ACTIONS(1248), + [anon_sym_polarsnot] = ACTIONS(1248), + [anon_sym_polarsopen] = ACTIONS(1248), + [anon_sym_polarsotherwise] = ACTIONS(1248), + [anon_sym_polarspivot] = ACTIONS(1248), + [anon_sym_polarsprofile] = ACTIONS(1248), + [anon_sym_polarsquantile] = ACTIONS(1248), + [anon_sym_polarsquery] = ACTIONS(1248), + [anon_sym_polarsrename] = ACTIONS(1248), + [anon_sym_polarsreplace] = ACTIONS(1267), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1248), + [anon_sym_polarsreverse] = ACTIONS(1248), + [anon_sym_polarsrolling] = ACTIONS(1248), + [anon_sym_polarssample] = ACTIONS(1248), + [anon_sym_polarssave] = ACTIONS(1248), + [anon_sym_polarsschema] = ACTIONS(1248), + [anon_sym_polarsselect] = ACTIONS(1248), + [anon_sym_polarsset] = ACTIONS(1267), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1248), + [anon_sym_polarsshape] = ACTIONS(1248), + [anon_sym_polarsshift] = ACTIONS(1248), + [anon_sym_polarsslice] = ACTIONS(1248), + [anon_sym_polarssort_DASHby] = ACTIONS(1248), + [anon_sym_polarsstd] = ACTIONS(1248), + [anon_sym_polarsstore_DASHget] = ACTIONS(1248), + [anon_sym_polarsstore_DASHls] = ACTIONS(1248), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1248), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1248), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1248), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1248), + [anon_sym_polarsstrftime] = ACTIONS(1248), + [anon_sym_polarssum] = ACTIONS(1267), + [anon_sym_polarssummary] = ACTIONS(1248), + [anon_sym_polarstake] = ACTIONS(1248), + [anon_sym_polarsunique] = ACTIONS(1248), + [anon_sym_polarsunnest] = ACTIONS(1248), + [anon_sym_polarsunpivot] = ACTIONS(1248), + [anon_sym_polarsuppercase] = ACTIONS(1248), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1248), + [anon_sym_polarsvar] = ACTIONS(1248), + [anon_sym_polarswhen] = ACTIONS(1248), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1248), + [anon_sym_querydb] = ACTIONS(1248), + [anon_sym_querygit] = ACTIONS(1248), + [anon_sym_queryjson] = ACTIONS(1248), + [anon_sym_queryweb] = ACTIONS(1267), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1248), + [anon_sym_queryxml] = ACTIONS(1248), + [anon_sym_randombinary] = ACTIONS(1248), + [anon_sym_randombool] = ACTIONS(1248), + [anon_sym_randomchars] = ACTIONS(1248), + [anon_sym_randomdice] = ACTIONS(1248), + [anon_sym_randomfloat] = ACTIONS(1248), + [anon_sym_randomint] = ACTIONS(1248), + [anon_sym_randomuuid] = ACTIONS(1248), + [anon_sym_rolldown] = ACTIONS(1248), + [anon_sym_rollleft] = ACTIONS(1248), + [anon_sym_rollright] = ACTIONS(1248), + [anon_sym_rollup] = ACTIONS(1248), + [anon_sym_scopealiases] = ACTIONS(1248), + [anon_sym_scopecommands] = ACTIONS(1248), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1248), + [anon_sym_scopeexterns] = ACTIONS(1248), + [anon_sym_scopemodules] = ACTIONS(1248), + [anon_sym_scopevariables] = ACTIONS(1248), + [anon_sym_seqchar] = ACTIONS(1248), + [anon_sym_seqdate] = ACTIONS(1248), + [anon_sym_skipuntil] = ACTIONS(1248), + [anon_sym_skipwhile] = ACTIONS(1248), + [anon_sym_splitcell_DASHpath] = ACTIONS(1248), + [anon_sym_splitchars] = ACTIONS(1248), + [anon_sym_splitcolumn] = ACTIONS(1248), + [anon_sym_splitlist] = ACTIONS(1248), + [anon_sym_splitrow] = ACTIONS(1248), + [anon_sym_splitwords] = ACTIONS(1248), + [anon_sym_storcreate] = ACTIONS(1248), + [anon_sym_stordelete] = ACTIONS(1248), + [anon_sym_storexport] = ACTIONS(1248), + [anon_sym_storimport] = ACTIONS(1248), + [anon_sym_storinsert] = ACTIONS(1248), + [anon_sym_storopen] = ACTIONS(1248), + [anon_sym_storreset] = ACTIONS(1248), + [anon_sym_storupdate] = ACTIONS(1248), + [anon_sym_strbexpand] = ACTIONS(1248), + [anon_sym_strcamel_DASHcase] = ACTIONS(1248), + [anon_sym_strcapitalize] = ACTIONS(1248), + [anon_sym_strcompress] = ACTIONS(1248), + [anon_sym_strcontains] = ACTIONS(1248), + [anon_sym_strdecompress] = ACTIONS(1248), + [anon_sym_strdedent] = ACTIONS(1248), + [anon_sym_strdeunicode] = ACTIONS(1248), + [anon_sym_strdistance] = ACTIONS(1248), + [anon_sym_strdowncase] = ACTIONS(1248), + [anon_sym_strends_DASHwith] = ACTIONS(1248), + [anon_sym_strexpand] = ACTIONS(1248), + [anon_sym_strindent] = ACTIONS(1248), + [anon_sym_strindex_DASHof] = ACTIONS(1248), + [anon_sym_strjoin] = ACTIONS(1248), + [anon_sym_strkebab_DASHcase] = ACTIONS(1248), + [anon_sym_strlength] = ACTIONS(1248), + [anon_sym_strpascal_DASHcase] = ACTIONS(1248), + [anon_sym_strreplace] = ACTIONS(1248), + [anon_sym_strreverse] = ACTIONS(1248), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strsimilarity] = ACTIONS(1248), + [anon_sym_strsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strstarts_DASHwith] = ACTIONS(1248), + [anon_sym_strstats] = ACTIONS(1248), + [anon_sym_strsubstring] = ACTIONS(1248), + [anon_sym_strtitle_DASHcase] = ACTIONS(1248), + [anon_sym_strtrim] = ACTIONS(1248), + [anon_sym_strupcase] = ACTIONS(1248), + [anon_sym_strwrap] = ACTIONS(1248), + [anon_sym_syscpu] = ACTIONS(1248), + [anon_sym_sysdisks] = ACTIONS(1248), + [anon_sym_syshost] = ACTIONS(1248), + [anon_sym_sysmem] = ACTIONS(1248), + [anon_sym_sysnet] = ACTIONS(1248), + [anon_sym_systemp] = ACTIONS(1248), + [anon_sym_sysusers] = ACTIONS(1248), + [anon_sym_takeuntil] = ACTIONS(1248), + [anon_sym_takewhile] = ACTIONS(1248), + [anon_sym_termquery] = ACTIONS(1248), + [anon_sym_termsize] = ACTIONS(1248), + [anon_sym_tobz2] = ACTIONS(1248), + [anon_sym_tocsv] = ACTIONS(1248), + [anon_sym_togz] = ACTIONS(1248), + [anon_sym_tohtml] = ACTIONS(1248), + [anon_sym_tojson] = ACTIONS(1248), + [anon_sym_tomd] = ACTIONS(1248), + [anon_sym_tomsgpack] = ACTIONS(1267), + [anon_sym_tomsgpackz] = ACTIONS(1248), + [anon_sym_tonuon] = ACTIONS(1248), + [anon_sym_toparquet] = ACTIONS(1248), + [anon_sym_toplist] = ACTIONS(1248), + [anon_sym_topng] = ACTIONS(1248), + [anon_sym_totext] = ACTIONS(1248), + [anon_sym_totoml] = ACTIONS(1248), + [anon_sym_totsv] = ACTIONS(1248), + [anon_sym_toxml] = ACTIONS(1248), + [anon_sym_toxz] = ACTIONS(1248), + [anon_sym_toyaml] = ACTIONS(1248), + [anon_sym_tozst] = ACTIONS(1248), + [anon_sym_updatecells] = ACTIONS(1248), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1248), + [anon_sym_urldecode] = ACTIONS(1248), + [anon_sym_urlencode] = ACTIONS(1248), + [anon_sym_urljoin] = ACTIONS(1248), + [anon_sym_urlparse] = ACTIONS(1248), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1248), + [anon_sym_viewfiles] = ACTIONS(1248), + [anon_sym_viewir] = ACTIONS(1248), + [anon_sym_viewsource] = ACTIONS(1248), + [anon_sym_viewspan] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1248), }, - [451] = { - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1841), - [aux_sym_cmd_identifier_token3] = ACTIONS(1841), - [aux_sym_cmd_identifier_token4] = ACTIONS(1841), - [aux_sym_cmd_identifier_token5] = ACTIONS(1841), - [aux_sym_cmd_identifier_token6] = ACTIONS(1841), - [aux_sym_cmd_identifier_token7] = ACTIONS(1841), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1841), - [aux_sym_cmd_identifier_token11] = ACTIONS(1841), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1841), - [aux_sym_cmd_identifier_token17] = ACTIONS(1841), - [aux_sym_cmd_identifier_token18] = ACTIONS(1841), - [aux_sym_cmd_identifier_token19] = ACTIONS(1841), - [aux_sym_cmd_identifier_token20] = ACTIONS(1841), - [aux_sym_cmd_identifier_token21] = ACTIONS(1841), - [aux_sym_cmd_identifier_token22] = ACTIONS(1841), - [aux_sym_cmd_identifier_token23] = ACTIONS(1841), - [aux_sym_cmd_identifier_token24] = ACTIONS(1841), - [aux_sym_cmd_identifier_token25] = ACTIONS(1841), - [aux_sym_cmd_identifier_token26] = ACTIONS(1841), - [aux_sym_cmd_identifier_token27] = ACTIONS(1841), - [aux_sym_cmd_identifier_token28] = ACTIONS(1841), - [aux_sym_cmd_identifier_token29] = ACTIONS(1841), - [aux_sym_cmd_identifier_token30] = ACTIONS(1841), - [aux_sym_cmd_identifier_token31] = ACTIONS(1841), - [aux_sym_cmd_identifier_token32] = ACTIONS(1841), - [aux_sym_cmd_identifier_token33] = ACTIONS(1841), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1841), - [aux_sym_cmd_identifier_token36] = ACTIONS(1841), - [aux_sym_cmd_identifier_token37] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [sym__entry_separator] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1843), + [276] = { + [sym_comment] = STATE(276), + [aux_sym_shebang_repeat1] = STATE(279), + [aux_sym__parenthesized_body_repeat1] = STATE(225), + [anon_sym_export] = ACTIONS(1315), + [anon_sym_alias] = ACTIONS(1315), + [anon_sym_let] = ACTIONS(1315), + [anon_sym_let_DASHenv] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1315), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1315), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_def] = ACTIONS(1315), + [anon_sym_export_DASHenv] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_module] = ACTIONS(1315), + [anon_sym_use] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1315), + [anon_sym_error] = ACTIONS(1315), + [anon_sym_DASH2] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_loop] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_source] = ACTIONS(1315), + [anon_sym_source_DASHenv] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_hide] = ACTIONS(1315), + [anon_sym_hide_DASHenv] = ACTIONS(1315), + [anon_sym_overlay] = ACTIONS(1315), + [anon_sym_where] = ACTIONS(1317), + [aux_sym_expr_unary_token1] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_DOT_DOT_LT] = ACTIONS(1317), + [anon_sym_null] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1315), + [aux_sym__val_number_decimal_token2] = ACTIONS(1317), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(1317), + [aux_sym__val_number_token2] = ACTIONS(1317), + [aux_sym__val_number_token3] = ACTIONS(1317), + [aux_sym__val_number_token4] = ACTIONS(1315), + [aux_sym__val_number_token5] = ACTIONS(1315), + [aux_sym__val_number_token6] = ACTIONS(1315), + [anon_sym_0b] = ACTIONS(1315), + [anon_sym_0o] = ACTIONS(1315), + [anon_sym_0x] = ACTIONS(1315), + [sym_val_date] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym__str_single_quotes] = ACTIONS(1317), + [sym__str_back_ticks] = ACTIONS(1317), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1317), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1317), + [aux_sym_env_var_token1] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_ansigradient] = ACTIONS(1317), + [anon_sym_ansilink] = ACTIONS(1317), + [anon_sym_ansistrip] = ACTIONS(1317), + [anon_sym_bitsand] = ACTIONS(1317), + [anon_sym_bitsnot] = ACTIONS(1317), + [anon_sym_bitsor] = ACTIONS(1317), + [anon_sym_bitsrol] = ACTIONS(1317), + [anon_sym_bitsror] = ACTIONS(1317), + [anon_sym_bitsshl] = ACTIONS(1317), + [anon_sym_bitsshr] = ACTIONS(1317), + [anon_sym_bitsxor] = ACTIONS(1317), + [anon_sym_bytesadd] = ACTIONS(1317), + [anon_sym_bytesat] = ACTIONS(1317), + [anon_sym_bytesbuild] = ACTIONS(1317), + [anon_sym_bytescollect] = ACTIONS(1317), + [anon_sym_bytesends_DASHwith] = ACTIONS(1317), + [anon_sym_bytesindex_DASHof] = ACTIONS(1317), + [anon_sym_byteslength] = ACTIONS(1317), + [anon_sym_bytesremove] = ACTIONS(1317), + [anon_sym_bytesreplace] = ACTIONS(1317), + [anon_sym_bytesreverse] = ACTIONS(1317), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1317), + [anon_sym_commandlineedit] = ACTIONS(1317), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1317), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1317), + [anon_sym_configenv] = ACTIONS(1317), + [anon_sym_confignu] = ACTIONS(1317), + [anon_sym_configreset] = ACTIONS(1317), + [anon_sym_dateformat] = ACTIONS(1317), + [anon_sym_datehumanize] = ACTIONS(1317), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1317), + [anon_sym_datenow] = ACTIONS(1317), + [anon_sym_dateto_DASHrecord] = ACTIONS(1317), + [anon_sym_dateto_DASHtable] = ACTIONS(1317), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1317), + [anon_sym_debuginfo] = ACTIONS(1317), + [anon_sym_debugprofile] = ACTIONS(1317), + [anon_sym_decodebase32] = ACTIONS(1315), + [anon_sym_decodebase32hex] = ACTIONS(1317), + [anon_sym_decodebase64] = ACTIONS(1317), + [anon_sym_decodehex] = ACTIONS(1317), + [anon_sym_detectcolumns] = ACTIONS(1317), + [anon_sym_dropcolumn] = ACTIONS(1317), + [anon_sym_dropnth] = ACTIONS(1317), + [anon_sym_dtadd] = ACTIONS(1317), + [anon_sym_dtdiff] = ACTIONS(1317), + [anon_sym_dtformat] = ACTIONS(1317), + [anon_sym_dtnow] = ACTIONS(1317), + [anon_sym_dtpart] = ACTIONS(1317), + [anon_sym_dtto] = ACTIONS(1317), + [anon_sym_dtutcnow] = ACTIONS(1317), + [anon_sym_eachwhile] = ACTIONS(1317), + [anon_sym_encodebase32] = ACTIONS(1315), + [anon_sym_encodebase32hex] = ACTIONS(1317), + [anon_sym_encodebase64] = ACTIONS(1317), + [anon_sym_encodehex] = ACTIONS(1317), + [anon_sym_errormake] = ACTIONS(1317), + [anon_sym_exploreir] = ACTIONS(1317), + [anon_sym_formatdate] = ACTIONS(1317), + [anon_sym_formatduration] = ACTIONS(1317), + [anon_sym_formatfilesize] = ACTIONS(1317), + [anon_sym_formatpattern] = ACTIONS(1317), + [anon_sym_frombz2] = ACTIONS(1317), + [anon_sym_fromcsv] = ACTIONS(1317), + [anon_sym_fromeml] = ACTIONS(1317), + [anon_sym_fromgz] = ACTIONS(1317), + [anon_sym_fromics] = ACTIONS(1317), + [anon_sym_fromini] = ACTIONS(1317), + [anon_sym_fromjson] = ACTIONS(1317), + [anon_sym_frommsgpack] = ACTIONS(1315), + [anon_sym_frommsgpackz] = ACTIONS(1317), + [anon_sym_fromnuon] = ACTIONS(1317), + [anon_sym_fromods] = ACTIONS(1317), + [anon_sym_fromparquet] = ACTIONS(1317), + [anon_sym_fromplist] = ACTIONS(1317), + [anon_sym_frompng] = ACTIONS(1317), + [anon_sym_fromssv] = ACTIONS(1317), + [anon_sym_fromtoml] = ACTIONS(1317), + [anon_sym_fromtsv] = ACTIONS(1317), + [anon_sym_fromurl] = ACTIONS(1317), + [anon_sym_fromvcf] = ACTIONS(1317), + [anon_sym_fromxlsx] = ACTIONS(1317), + [anon_sym_fromxml] = ACTIONS(1317), + [anon_sym_fromxz] = ACTIONS(1317), + [anon_sym_fromyaml] = ACTIONS(1317), + [anon_sym_fromyml] = ACTIONS(1317), + [anon_sym_fromzst] = ACTIONS(1317), + [anon_sym_hashmd5] = ACTIONS(1317), + [anon_sym_hashsha256] = ACTIONS(1317), + [anon_sym_helpaliases] = ACTIONS(1317), + [anon_sym_helpcommands] = ACTIONS(1317), + [anon_sym_helpescapes] = ACTIONS(1317), + [anon_sym_helpexterns] = ACTIONS(1317), + [anon_sym_helpmodules] = ACTIONS(1317), + [anon_sym_helpoperators] = ACTIONS(1317), + [anon_sym_historyimport] = ACTIONS(1317), + [anon_sym_historysession] = ACTIONS(1317), + [anon_sym_httpdelete] = ACTIONS(1317), + [anon_sym_httpget] = ACTIONS(1317), + [anon_sym_httphead] = ACTIONS(1317), + [anon_sym_httpoptions] = ACTIONS(1317), + [anon_sym_httppatch] = ACTIONS(1317), + [anon_sym_httppost] = ACTIONS(1317), + [anon_sym_httpput] = ACTIONS(1317), + [anon_sym_inputlist] = ACTIONS(1315), + [anon_sym_inputlisten] = ACTIONS(1317), + [anon_sym_intobinary] = ACTIONS(1317), + [anon_sym_intobits] = ACTIONS(1317), + [anon_sym_intobool] = ACTIONS(1317), + [anon_sym_intocell_DASHpath] = ACTIONS(1317), + [anon_sym_intodatetime] = ACTIONS(1317), + [anon_sym_intoduration] = ACTIONS(1317), + [anon_sym_intofilesize] = ACTIONS(1317), + [anon_sym_intofloat] = ACTIONS(1317), + [anon_sym_intoglob] = ACTIONS(1317), + [anon_sym_intoint] = ACTIONS(1317), + [anon_sym_intorecord] = ACTIONS(1317), + [anon_sym_intosqlite] = ACTIONS(1317), + [anon_sym_intostring] = ACTIONS(1317), + [anon_sym_intovalue] = ACTIONS(1317), + [anon_sym_jsonpath] = ACTIONS(1317), + [anon_sym_keybindingsdefault] = ACTIONS(1317), + [anon_sym_keybindingslist] = ACTIONS(1315), + [anon_sym_keybindingslisten] = ACTIONS(1317), + [anon_sym_mathabs] = ACTIONS(1317), + [anon_sym_matharccos] = ACTIONS(1315), + [anon_sym_matharccosh] = ACTIONS(1317), + [anon_sym_matharcsin] = ACTIONS(1315), + [anon_sym_matharcsinh] = ACTIONS(1317), + [anon_sym_matharctan] = ACTIONS(1315), + [anon_sym_matharctanh] = ACTIONS(1317), + [anon_sym_mathavg] = ACTIONS(1317), + [anon_sym_mathceil] = ACTIONS(1317), + [anon_sym_mathcos] = ACTIONS(1315), + [anon_sym_mathcosh] = ACTIONS(1317), + [anon_sym_mathexp] = ACTIONS(1317), + [anon_sym_mathfloor] = ACTIONS(1317), + [anon_sym_mathln] = ACTIONS(1317), + [anon_sym_mathlog] = ACTIONS(1317), + [anon_sym_mathmax] = ACTIONS(1317), + [anon_sym_mathmedian] = ACTIONS(1317), + [anon_sym_mathmin] = ACTIONS(1317), + [anon_sym_mathmode] = ACTIONS(1317), + [anon_sym_mathproduct] = ACTIONS(1317), + [anon_sym_mathround] = ACTIONS(1317), + [anon_sym_mathsin] = ACTIONS(1315), + [anon_sym_mathsinh] = ACTIONS(1317), + [anon_sym_mathsqrt] = ACTIONS(1317), + [anon_sym_mathstddev] = ACTIONS(1317), + [anon_sym_mathsum] = ACTIONS(1317), + [anon_sym_mathtan] = ACTIONS(1315), + [anon_sym_mathtanh] = ACTIONS(1317), + [anon_sym_mathvariance] = ACTIONS(1317), + [anon_sym_metadataaccess] = ACTIONS(1317), + [anon_sym_metadataset] = ACTIONS(1317), + [anon_sym_pathbasename] = ACTIONS(1317), + [anon_sym_pathdirname] = ACTIONS(1317), + [anon_sym_pathexists] = ACTIONS(1317), + [anon_sym_pathexpand] = ACTIONS(1317), + [anon_sym_pathjoin] = ACTIONS(1317), + [anon_sym_pathparse] = ACTIONS(1317), + [anon_sym_pathrelative_DASHto] = ACTIONS(1317), + [anon_sym_pathsplit] = ACTIONS(1317), + [anon_sym_pathtype] = ACTIONS(1317), + [anon_sym_pluginadd] = ACTIONS(1317), + [anon_sym_pluginlist] = ACTIONS(1317), + [anon_sym_pluginrm] = ACTIONS(1317), + [anon_sym_pluginstop] = ACTIONS(1317), + [anon_sym_polarsagg] = ACTIONS(1315), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1317), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1317), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1317), + [anon_sym_polarsappend] = ACTIONS(1317), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1317), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1317), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1317), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1317), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1317), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1317), + [anon_sym_polarsas] = ACTIONS(1315), + [anon_sym_polarsas_DASHdate] = ACTIONS(1315), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1317), + [anon_sym_polarscache] = ACTIONS(1317), + [anon_sym_polarscast] = ACTIONS(1317), + [anon_sym_polarscol] = ACTIONS(1315), + [anon_sym_polarscollect] = ACTIONS(1317), + [anon_sym_polarscolumns] = ACTIONS(1317), + [anon_sym_polarsconcat] = ACTIONS(1315), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1317), + [anon_sym_polarscontains] = ACTIONS(1317), + [anon_sym_polarscount] = ACTIONS(1315), + [anon_sym_polarscount_DASHnull] = ACTIONS(1317), + [anon_sym_polarscumulative] = ACTIONS(1317), + [anon_sym_polarsdatepart] = ACTIONS(1317), + [anon_sym_polarsdecimal] = ACTIONS(1317), + [anon_sym_polarsdrop] = ACTIONS(1315), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1317), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1317), + [anon_sym_polarsdummies] = ACTIONS(1317), + [anon_sym_polarsexplode] = ACTIONS(1317), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1317), + [anon_sym_polarsfetch] = ACTIONS(1317), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1317), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1317), + [anon_sym_polarsfilter] = ACTIONS(1315), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1317), + [anon_sym_polarsfirst] = ACTIONS(1317), + [anon_sym_polarsflatten] = ACTIONS(1317), + [anon_sym_polarsget] = ACTIONS(1315), + [anon_sym_polarsget_DASHday] = ACTIONS(1317), + [anon_sym_polarsget_DASHhour] = ACTIONS(1317), + [anon_sym_polarsget_DASHminute] = ACTIONS(1317), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1317), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1317), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1317), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1317), + [anon_sym_polarsget_DASHweek] = ACTIONS(1315), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1317), + [anon_sym_polarsget_DASHyear] = ACTIONS(1317), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1317), + [anon_sym_polarsimplode] = ACTIONS(1317), + [anon_sym_polarsinteger] = ACTIONS(1317), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1317), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1317), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1317), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1317), + [anon_sym_polarsis_DASHin] = ACTIONS(1317), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1317), + [anon_sym_polarsis_DASHnull] = ACTIONS(1317), + [anon_sym_polarsis_DASHunique] = ACTIONS(1317), + [anon_sym_polarsjoin] = ACTIONS(1317), + [anon_sym_polarslast] = ACTIONS(1317), + [anon_sym_polarslen] = ACTIONS(1317), + [anon_sym_polarslit] = ACTIONS(1317), + [anon_sym_polarslowercase] = ACTIONS(1317), + [anon_sym_polarsmax] = ACTIONS(1317), + [anon_sym_polarsmean] = ACTIONS(1317), + [anon_sym_polarsmedian] = ACTIONS(1317), + [anon_sym_polarsmin] = ACTIONS(1317), + [anon_sym_polarsn_DASHunique] = ACTIONS(1317), + [anon_sym_polarsnot] = ACTIONS(1317), + [anon_sym_polarsopen] = ACTIONS(1317), + [anon_sym_polarsotherwise] = ACTIONS(1317), + [anon_sym_polarspivot] = ACTIONS(1317), + [anon_sym_polarsprofile] = ACTIONS(1317), + [anon_sym_polarsquantile] = ACTIONS(1317), + [anon_sym_polarsquery] = ACTIONS(1317), + [anon_sym_polarsrename] = ACTIONS(1317), + [anon_sym_polarsreplace] = ACTIONS(1315), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1317), + [anon_sym_polarsreverse] = ACTIONS(1317), + [anon_sym_polarsrolling] = ACTIONS(1317), + [anon_sym_polarssample] = ACTIONS(1317), + [anon_sym_polarssave] = ACTIONS(1317), + [anon_sym_polarsschema] = ACTIONS(1317), + [anon_sym_polarsselect] = ACTIONS(1317), + [anon_sym_polarsset] = ACTIONS(1315), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1317), + [anon_sym_polarsshape] = ACTIONS(1317), + [anon_sym_polarsshift] = ACTIONS(1317), + [anon_sym_polarsslice] = ACTIONS(1317), + [anon_sym_polarssort_DASHby] = ACTIONS(1317), + [anon_sym_polarsstd] = ACTIONS(1317), + [anon_sym_polarsstore_DASHget] = ACTIONS(1317), + [anon_sym_polarsstore_DASHls] = ACTIONS(1317), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1317), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1317), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1317), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1317), + [anon_sym_polarsstrftime] = ACTIONS(1317), + [anon_sym_polarssum] = ACTIONS(1315), + [anon_sym_polarssummary] = ACTIONS(1317), + [anon_sym_polarstake] = ACTIONS(1317), + [anon_sym_polarsunique] = ACTIONS(1317), + [anon_sym_polarsunnest] = ACTIONS(1317), + [anon_sym_polarsunpivot] = ACTIONS(1317), + [anon_sym_polarsuppercase] = ACTIONS(1317), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1317), + [anon_sym_polarsvar] = ACTIONS(1317), + [anon_sym_polarswhen] = ACTIONS(1317), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1317), + [anon_sym_querydb] = ACTIONS(1317), + [anon_sym_querygit] = ACTIONS(1317), + [anon_sym_queryjson] = ACTIONS(1317), + [anon_sym_queryweb] = ACTIONS(1315), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1317), + [anon_sym_queryxml] = ACTIONS(1317), + [anon_sym_randombinary] = ACTIONS(1317), + [anon_sym_randombool] = ACTIONS(1317), + [anon_sym_randomchars] = ACTIONS(1317), + [anon_sym_randomdice] = ACTIONS(1317), + [anon_sym_randomfloat] = ACTIONS(1317), + [anon_sym_randomint] = ACTIONS(1317), + [anon_sym_randomuuid] = ACTIONS(1317), + [anon_sym_rolldown] = ACTIONS(1317), + [anon_sym_rollleft] = ACTIONS(1317), + [anon_sym_rollright] = ACTIONS(1317), + [anon_sym_rollup] = ACTIONS(1317), + [anon_sym_scopealiases] = ACTIONS(1317), + [anon_sym_scopecommands] = ACTIONS(1317), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1317), + [anon_sym_scopeexterns] = ACTIONS(1317), + [anon_sym_scopemodules] = ACTIONS(1317), + [anon_sym_scopevariables] = ACTIONS(1317), + [anon_sym_seqchar] = ACTIONS(1317), + [anon_sym_seqdate] = ACTIONS(1317), + [anon_sym_skipuntil] = ACTIONS(1317), + [anon_sym_skipwhile] = ACTIONS(1317), + [anon_sym_splitcell_DASHpath] = ACTIONS(1317), + [anon_sym_splitchars] = ACTIONS(1317), + [anon_sym_splitcolumn] = ACTIONS(1317), + [anon_sym_splitlist] = ACTIONS(1317), + [anon_sym_splitrow] = ACTIONS(1317), + [anon_sym_splitwords] = ACTIONS(1317), + [anon_sym_storcreate] = ACTIONS(1317), + [anon_sym_stordelete] = ACTIONS(1317), + [anon_sym_storexport] = ACTIONS(1317), + [anon_sym_storimport] = ACTIONS(1317), + [anon_sym_storinsert] = ACTIONS(1317), + [anon_sym_storopen] = ACTIONS(1317), + [anon_sym_storreset] = ACTIONS(1317), + [anon_sym_storupdate] = ACTIONS(1317), + [anon_sym_strbexpand] = ACTIONS(1317), + [anon_sym_strcamel_DASHcase] = ACTIONS(1317), + [anon_sym_strcapitalize] = ACTIONS(1317), + [anon_sym_strcompress] = ACTIONS(1317), + [anon_sym_strcontains] = ACTIONS(1317), + [anon_sym_strdecompress] = ACTIONS(1317), + [anon_sym_strdedent] = ACTIONS(1317), + [anon_sym_strdeunicode] = ACTIONS(1317), + [anon_sym_strdistance] = ACTIONS(1317), + [anon_sym_strdowncase] = ACTIONS(1317), + [anon_sym_strends_DASHwith] = ACTIONS(1317), + [anon_sym_strexpand] = ACTIONS(1317), + [anon_sym_strindent] = ACTIONS(1317), + [anon_sym_strindex_DASHof] = ACTIONS(1317), + [anon_sym_strjoin] = ACTIONS(1317), + [anon_sym_strkebab_DASHcase] = ACTIONS(1317), + [anon_sym_strlength] = ACTIONS(1317), + [anon_sym_strpascal_DASHcase] = ACTIONS(1317), + [anon_sym_strreplace] = ACTIONS(1317), + [anon_sym_strreverse] = ACTIONS(1317), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1317), + [anon_sym_strsimilarity] = ACTIONS(1317), + [anon_sym_strsnake_DASHcase] = ACTIONS(1317), + [anon_sym_strstarts_DASHwith] = ACTIONS(1317), + [anon_sym_strstats] = ACTIONS(1317), + [anon_sym_strsubstring] = ACTIONS(1317), + [anon_sym_strtitle_DASHcase] = ACTIONS(1317), + [anon_sym_strtrim] = ACTIONS(1317), + [anon_sym_strupcase] = ACTIONS(1317), + [anon_sym_strwrap] = ACTIONS(1317), + [anon_sym_syscpu] = ACTIONS(1317), + [anon_sym_sysdisks] = ACTIONS(1317), + [anon_sym_syshost] = ACTIONS(1317), + [anon_sym_sysmem] = ACTIONS(1317), + [anon_sym_sysnet] = ACTIONS(1317), + [anon_sym_systemp] = ACTIONS(1317), + [anon_sym_sysusers] = ACTIONS(1317), + [anon_sym_takeuntil] = ACTIONS(1317), + [anon_sym_takewhile] = ACTIONS(1317), + [anon_sym_termquery] = ACTIONS(1317), + [anon_sym_termsize] = ACTIONS(1317), + [anon_sym_tobz2] = ACTIONS(1317), + [anon_sym_tocsv] = ACTIONS(1317), + [anon_sym_togz] = ACTIONS(1317), + [anon_sym_tohtml] = ACTIONS(1317), + [anon_sym_tojson] = ACTIONS(1317), + [anon_sym_tomd] = ACTIONS(1317), + [anon_sym_tomsgpack] = ACTIONS(1315), + [anon_sym_tomsgpackz] = ACTIONS(1317), + [anon_sym_tonuon] = ACTIONS(1317), + [anon_sym_toparquet] = ACTIONS(1317), + [anon_sym_toplist] = ACTIONS(1317), + [anon_sym_topng] = ACTIONS(1317), + [anon_sym_totext] = ACTIONS(1317), + [anon_sym_totoml] = ACTIONS(1317), + [anon_sym_totsv] = ACTIONS(1317), + [anon_sym_toxml] = ACTIONS(1317), + [anon_sym_toxz] = ACTIONS(1317), + [anon_sym_toyaml] = ACTIONS(1317), + [anon_sym_tozst] = ACTIONS(1317), + [anon_sym_updatecells] = ACTIONS(1317), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1317), + [anon_sym_urldecode] = ACTIONS(1317), + [anon_sym_urlencode] = ACTIONS(1317), + [anon_sym_urljoin] = ACTIONS(1317), + [anon_sym_urlparse] = ACTIONS(1317), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1317), + [anon_sym_viewfiles] = ACTIONS(1317), + [anon_sym_viewir] = ACTIONS(1317), + [anon_sym_viewsource] = ACTIONS(1317), + [anon_sym_viewspan] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1317), }, - [452] = { - [sym_cell_path] = STATE(736), - [sym_path] = STATE(623), - [sym_comment] = STATE(452), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1873), - [aux_sym_cmd_identifier_token3] = ACTIONS(1873), - [aux_sym_cmd_identifier_token4] = ACTIONS(1873), - [aux_sym_cmd_identifier_token5] = ACTIONS(1873), - [aux_sym_cmd_identifier_token6] = ACTIONS(1873), - [aux_sym_cmd_identifier_token7] = ACTIONS(1873), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1873), - [aux_sym_cmd_identifier_token11] = ACTIONS(1873), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1873), - [aux_sym_cmd_identifier_token17] = ACTIONS(1873), - [aux_sym_cmd_identifier_token18] = ACTIONS(1873), - [aux_sym_cmd_identifier_token19] = ACTIONS(1873), - [aux_sym_cmd_identifier_token20] = ACTIONS(1873), - [aux_sym_cmd_identifier_token21] = ACTIONS(1873), - [aux_sym_cmd_identifier_token22] = ACTIONS(1873), - [aux_sym_cmd_identifier_token23] = ACTIONS(1873), - [aux_sym_cmd_identifier_token24] = ACTIONS(1873), - [aux_sym_cmd_identifier_token25] = ACTIONS(1873), - [aux_sym_cmd_identifier_token26] = ACTIONS(1873), - [aux_sym_cmd_identifier_token27] = ACTIONS(1873), - [aux_sym_cmd_identifier_token28] = ACTIONS(1873), - [aux_sym_cmd_identifier_token29] = ACTIONS(1873), - [aux_sym_cmd_identifier_token30] = ACTIONS(1873), - [aux_sym_cmd_identifier_token31] = ACTIONS(1873), - [aux_sym_cmd_identifier_token32] = ACTIONS(1873), - [aux_sym_cmd_identifier_token33] = ACTIONS(1873), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1873), - [aux_sym_cmd_identifier_token36] = ACTIONS(1873), - [aux_sym_cmd_identifier_token37] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in2] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1871), - [aux_sym__val_number_token5] = ACTIONS(1871), - [aux_sym__val_number_token6] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1873), + [277] = { + [sym_comment] = STATE(277), + [anon_sym_export] = ACTIONS(1238), + [anon_sym_alias] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_let_DASHenv] = ACTIONS(1238), + [anon_sym_mut] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [aux_sym_cmd_identifier_token1] = ACTIONS(1238), + [aux_sym_cmd_identifier_token2] = ACTIONS(1241), + [aux_sym_cmd_identifier_token3] = ACTIONS(1241), + [aux_sym_cmd_identifier_token4] = ACTIONS(1241), + [aux_sym_cmd_identifier_token5] = ACTIONS(1241), + [aux_sym_cmd_identifier_token6] = ACTIONS(1241), + [aux_sym_cmd_identifier_token7] = ACTIONS(1241), + [aux_sym_cmd_identifier_token8] = ACTIONS(1238), + [aux_sym_cmd_identifier_token9] = ACTIONS(1238), + [aux_sym_cmd_identifier_token10] = ACTIONS(1241), + [aux_sym_cmd_identifier_token11] = ACTIONS(1241), + [aux_sym_cmd_identifier_token12] = ACTIONS(1238), + [aux_sym_cmd_identifier_token13] = ACTIONS(1238), + [aux_sym_cmd_identifier_token14] = ACTIONS(1238), + [aux_sym_cmd_identifier_token15] = ACTIONS(1238), + [aux_sym_cmd_identifier_token16] = ACTIONS(1241), + [aux_sym_cmd_identifier_token17] = ACTIONS(1241), + [aux_sym_cmd_identifier_token18] = ACTIONS(1238), + [aux_sym_cmd_identifier_token19] = ACTIONS(1241), + [aux_sym_cmd_identifier_token20] = ACTIONS(1241), + [aux_sym_cmd_identifier_token21] = ACTIONS(1241), + [aux_sym_cmd_identifier_token22] = ACTIONS(1241), + [aux_sym_cmd_identifier_token23] = ACTIONS(1241), + [aux_sym_cmd_identifier_token24] = ACTIONS(1241), + [aux_sym_cmd_identifier_token25] = ACTIONS(1241), + [aux_sym_cmd_identifier_token26] = ACTIONS(1241), + [aux_sym_cmd_identifier_token27] = ACTIONS(1241), + [aux_sym_cmd_identifier_token28] = ACTIONS(1241), + [aux_sym_cmd_identifier_token29] = ACTIONS(1241), + [aux_sym_cmd_identifier_token30] = ACTIONS(1241), + [aux_sym_cmd_identifier_token31] = ACTIONS(1241), + [aux_sym_cmd_identifier_token32] = ACTIONS(1238), + [aux_sym_cmd_identifier_token33] = ACTIONS(1241), + [aux_sym_cmd_identifier_token34] = ACTIONS(1238), + [aux_sym_cmd_identifier_token35] = ACTIONS(1241), + [aux_sym_cmd_identifier_token36] = ACTIONS(1241), + [aux_sym_cmd_identifier_token37] = ACTIONS(1241), + [aux_sym_cmd_identifier_token38] = ACTIONS(1238), + [aux_sym_cmd_identifier_token39] = ACTIONS(1241), + [aux_sym_cmd_identifier_token40] = ACTIONS(1241), + [sym__newline] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_def] = ACTIONS(1238), + [anon_sym_export_DASHenv] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1238), + [anon_sym_error] = ACTIONS(1238), + [anon_sym_DASH2] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_source] = ACTIONS(1238), + [anon_sym_source_DASHenv] = ACTIONS(1238), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_hide] = ACTIONS(1238), + [anon_sym_hide_DASHenv] = ACTIONS(1238), + [anon_sym_overlay] = ACTIONS(1238), + [anon_sym_where] = ACTIONS(1241), + [aux_sym_expr_unary_token1] = ACTIONS(1241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_DOT_DOT_LT] = ACTIONS(1241), + [anon_sym_null] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [aux_sym__val_number_decimal_token1] = ACTIONS(1238), + [aux_sym__val_number_decimal_token2] = ACTIONS(1241), + [aux_sym__val_number_decimal_token3] = ACTIONS(1241), + [aux_sym__val_number_decimal_token4] = ACTIONS(1241), + [aux_sym__val_number_token1] = ACTIONS(1241), + [aux_sym__val_number_token2] = ACTIONS(1241), + [aux_sym__val_number_token3] = ACTIONS(1241), + [aux_sym__val_number_token4] = ACTIONS(1238), + [aux_sym__val_number_token5] = ACTIONS(1238), + [aux_sym__val_number_token6] = ACTIONS(1238), + [anon_sym_0b] = ACTIONS(1238), + [anon_sym_0o] = ACTIONS(1238), + [anon_sym_0x] = ACTIONS(1238), + [sym_val_date] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1241), + [aux_sym_env_var_token1] = ACTIONS(1238), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_ansigradient] = ACTIONS(1241), + [anon_sym_ansilink] = ACTIONS(1241), + [anon_sym_ansistrip] = ACTIONS(1241), + [anon_sym_bitsand] = ACTIONS(1241), + [anon_sym_bitsnot] = ACTIONS(1241), + [anon_sym_bitsor] = ACTIONS(1241), + [anon_sym_bitsrol] = ACTIONS(1241), + [anon_sym_bitsror] = ACTIONS(1241), + [anon_sym_bitsshl] = ACTIONS(1241), + [anon_sym_bitsshr] = ACTIONS(1241), + [anon_sym_bitsxor] = ACTIONS(1241), + [anon_sym_bytesadd] = ACTIONS(1241), + [anon_sym_bytesat] = ACTIONS(1241), + [anon_sym_bytesbuild] = ACTIONS(1241), + [anon_sym_bytescollect] = ACTIONS(1241), + [anon_sym_bytesends_DASHwith] = ACTIONS(1241), + [anon_sym_bytesindex_DASHof] = ACTIONS(1241), + [anon_sym_byteslength] = ACTIONS(1241), + [anon_sym_bytesremove] = ACTIONS(1241), + [anon_sym_bytesreplace] = ACTIONS(1241), + [anon_sym_bytesreverse] = ACTIONS(1241), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1241), + [anon_sym_commandlineedit] = ACTIONS(1241), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1241), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1241), + [anon_sym_configenv] = ACTIONS(1241), + [anon_sym_confignu] = ACTIONS(1241), + [anon_sym_configreset] = ACTIONS(1241), + [anon_sym_dateformat] = ACTIONS(1241), + [anon_sym_datehumanize] = ACTIONS(1241), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1241), + [anon_sym_datenow] = ACTIONS(1241), + [anon_sym_dateto_DASHrecord] = ACTIONS(1241), + [anon_sym_dateto_DASHtable] = ACTIONS(1241), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1241), + [anon_sym_debuginfo] = ACTIONS(1241), + [anon_sym_debugprofile] = ACTIONS(1241), + [anon_sym_decodebase32] = ACTIONS(1238), + [anon_sym_decodebase32hex] = ACTIONS(1241), + [anon_sym_decodebase64] = ACTIONS(1241), + [anon_sym_decodehex] = ACTIONS(1241), + [anon_sym_detectcolumns] = ACTIONS(1241), + [anon_sym_dropcolumn] = ACTIONS(1241), + [anon_sym_dropnth] = ACTIONS(1241), + [anon_sym_dtadd] = ACTIONS(1241), + [anon_sym_dtdiff] = ACTIONS(1241), + [anon_sym_dtformat] = ACTIONS(1241), + [anon_sym_dtnow] = ACTIONS(1241), + [anon_sym_dtpart] = ACTIONS(1241), + [anon_sym_dtto] = ACTIONS(1241), + [anon_sym_dtutcnow] = ACTIONS(1241), + [anon_sym_eachwhile] = ACTIONS(1241), + [anon_sym_encodebase32] = ACTIONS(1238), + [anon_sym_encodebase32hex] = ACTIONS(1241), + [anon_sym_encodebase64] = ACTIONS(1241), + [anon_sym_encodehex] = ACTIONS(1241), + [anon_sym_errormake] = ACTIONS(1241), + [anon_sym_exploreir] = ACTIONS(1241), + [anon_sym_formatdate] = ACTIONS(1241), + [anon_sym_formatduration] = ACTIONS(1241), + [anon_sym_formatfilesize] = ACTIONS(1241), + [anon_sym_formatpattern] = ACTIONS(1241), + [anon_sym_frombz2] = ACTIONS(1241), + [anon_sym_fromcsv] = ACTIONS(1241), + [anon_sym_fromeml] = ACTIONS(1241), + [anon_sym_fromgz] = ACTIONS(1241), + [anon_sym_fromics] = ACTIONS(1241), + [anon_sym_fromini] = ACTIONS(1241), + [anon_sym_fromjson] = ACTIONS(1241), + [anon_sym_frommsgpack] = ACTIONS(1238), + [anon_sym_frommsgpackz] = ACTIONS(1241), + [anon_sym_fromnuon] = ACTIONS(1241), + [anon_sym_fromods] = ACTIONS(1241), + [anon_sym_fromparquet] = ACTIONS(1241), + [anon_sym_fromplist] = ACTIONS(1241), + [anon_sym_frompng] = ACTIONS(1241), + [anon_sym_fromssv] = ACTIONS(1241), + [anon_sym_fromtoml] = ACTIONS(1241), + [anon_sym_fromtsv] = ACTIONS(1241), + [anon_sym_fromurl] = ACTIONS(1241), + [anon_sym_fromvcf] = ACTIONS(1241), + [anon_sym_fromxlsx] = ACTIONS(1241), + [anon_sym_fromxml] = ACTIONS(1241), + [anon_sym_fromxz] = ACTIONS(1241), + [anon_sym_fromyaml] = ACTIONS(1241), + [anon_sym_fromyml] = ACTIONS(1241), + [anon_sym_fromzst] = ACTIONS(1241), + [anon_sym_hashmd5] = ACTIONS(1241), + [anon_sym_hashsha256] = ACTIONS(1241), + [anon_sym_helpaliases] = ACTIONS(1241), + [anon_sym_helpcommands] = ACTIONS(1241), + [anon_sym_helpescapes] = ACTIONS(1241), + [anon_sym_helpexterns] = ACTIONS(1241), + [anon_sym_helpmodules] = ACTIONS(1241), + [anon_sym_helpoperators] = ACTIONS(1241), + [anon_sym_historyimport] = ACTIONS(1241), + [anon_sym_historysession] = ACTIONS(1241), + [anon_sym_httpdelete] = ACTIONS(1241), + [anon_sym_httpget] = ACTIONS(1241), + [anon_sym_httphead] = ACTIONS(1241), + [anon_sym_httpoptions] = ACTIONS(1241), + [anon_sym_httppatch] = ACTIONS(1241), + [anon_sym_httppost] = ACTIONS(1241), + [anon_sym_httpput] = ACTIONS(1241), + [anon_sym_inputlist] = ACTIONS(1238), + [anon_sym_inputlisten] = ACTIONS(1241), + [anon_sym_intobinary] = ACTIONS(1241), + [anon_sym_intobits] = ACTIONS(1241), + [anon_sym_intobool] = ACTIONS(1241), + [anon_sym_intocell_DASHpath] = ACTIONS(1241), + [anon_sym_intodatetime] = ACTIONS(1241), + [anon_sym_intoduration] = ACTIONS(1241), + [anon_sym_intofilesize] = ACTIONS(1241), + [anon_sym_intofloat] = ACTIONS(1241), + [anon_sym_intoglob] = ACTIONS(1241), + [anon_sym_intoint] = ACTIONS(1241), + [anon_sym_intorecord] = ACTIONS(1241), + [anon_sym_intosqlite] = ACTIONS(1241), + [anon_sym_intostring] = ACTIONS(1241), + [anon_sym_intovalue] = ACTIONS(1241), + [anon_sym_jsonpath] = ACTIONS(1241), + [anon_sym_keybindingsdefault] = ACTIONS(1241), + [anon_sym_keybindingslist] = ACTIONS(1238), + [anon_sym_keybindingslisten] = ACTIONS(1241), + [anon_sym_mathabs] = ACTIONS(1241), + [anon_sym_matharccos] = ACTIONS(1238), + [anon_sym_matharccosh] = ACTIONS(1241), + [anon_sym_matharcsin] = ACTIONS(1238), + [anon_sym_matharcsinh] = ACTIONS(1241), + [anon_sym_matharctan] = ACTIONS(1238), + [anon_sym_matharctanh] = ACTIONS(1241), + [anon_sym_mathavg] = ACTIONS(1241), + [anon_sym_mathceil] = ACTIONS(1241), + [anon_sym_mathcos] = ACTIONS(1238), + [anon_sym_mathcosh] = ACTIONS(1241), + [anon_sym_mathexp] = ACTIONS(1241), + [anon_sym_mathfloor] = ACTIONS(1241), + [anon_sym_mathln] = ACTIONS(1241), + [anon_sym_mathlog] = ACTIONS(1241), + [anon_sym_mathmax] = ACTIONS(1241), + [anon_sym_mathmedian] = ACTIONS(1241), + [anon_sym_mathmin] = ACTIONS(1241), + [anon_sym_mathmode] = ACTIONS(1241), + [anon_sym_mathproduct] = ACTIONS(1241), + [anon_sym_mathround] = ACTIONS(1241), + [anon_sym_mathsin] = ACTIONS(1238), + [anon_sym_mathsinh] = ACTIONS(1241), + [anon_sym_mathsqrt] = ACTIONS(1241), + [anon_sym_mathstddev] = ACTIONS(1241), + [anon_sym_mathsum] = ACTIONS(1241), + [anon_sym_mathtan] = ACTIONS(1238), + [anon_sym_mathtanh] = ACTIONS(1241), + [anon_sym_mathvariance] = ACTIONS(1241), + [anon_sym_metadataaccess] = ACTIONS(1241), + [anon_sym_metadataset] = ACTIONS(1241), + [anon_sym_pathbasename] = ACTIONS(1241), + [anon_sym_pathdirname] = ACTIONS(1241), + [anon_sym_pathexists] = ACTIONS(1241), + [anon_sym_pathexpand] = ACTIONS(1241), + [anon_sym_pathjoin] = ACTIONS(1241), + [anon_sym_pathparse] = ACTIONS(1241), + [anon_sym_pathrelative_DASHto] = ACTIONS(1241), + [anon_sym_pathsplit] = ACTIONS(1241), + [anon_sym_pathtype] = ACTIONS(1241), + [anon_sym_pluginadd] = ACTIONS(1241), + [anon_sym_pluginlist] = ACTIONS(1241), + [anon_sym_pluginrm] = ACTIONS(1241), + [anon_sym_pluginstop] = ACTIONS(1241), + [anon_sym_polarsagg] = ACTIONS(1238), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1241), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1241), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1241), + [anon_sym_polarsappend] = ACTIONS(1241), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1241), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1241), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1241), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1241), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1241), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1241), + [anon_sym_polarsas] = ACTIONS(1238), + [anon_sym_polarsas_DASHdate] = ACTIONS(1238), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1241), + [anon_sym_polarscache] = ACTIONS(1241), + [anon_sym_polarscast] = ACTIONS(1241), + [anon_sym_polarscol] = ACTIONS(1238), + [anon_sym_polarscollect] = ACTIONS(1241), + [anon_sym_polarscolumns] = ACTIONS(1241), + [anon_sym_polarsconcat] = ACTIONS(1238), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1241), + [anon_sym_polarscontains] = ACTIONS(1241), + [anon_sym_polarscount] = ACTIONS(1238), + [anon_sym_polarscount_DASHnull] = ACTIONS(1241), + [anon_sym_polarscumulative] = ACTIONS(1241), + [anon_sym_polarsdatepart] = ACTIONS(1241), + [anon_sym_polarsdecimal] = ACTIONS(1241), + [anon_sym_polarsdrop] = ACTIONS(1238), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1241), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1241), + [anon_sym_polarsdummies] = ACTIONS(1241), + [anon_sym_polarsexplode] = ACTIONS(1241), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1241), + [anon_sym_polarsfetch] = ACTIONS(1241), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1241), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1241), + [anon_sym_polarsfilter] = ACTIONS(1238), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1241), + [anon_sym_polarsfirst] = ACTIONS(1241), + [anon_sym_polarsflatten] = ACTIONS(1241), + [anon_sym_polarsget] = ACTIONS(1238), + [anon_sym_polarsget_DASHday] = ACTIONS(1241), + [anon_sym_polarsget_DASHhour] = ACTIONS(1241), + [anon_sym_polarsget_DASHminute] = ACTIONS(1241), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1241), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1241), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1241), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1241), + [anon_sym_polarsget_DASHweek] = ACTIONS(1238), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1241), + [anon_sym_polarsget_DASHyear] = ACTIONS(1241), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1241), + [anon_sym_polarsimplode] = ACTIONS(1241), + [anon_sym_polarsinteger] = ACTIONS(1241), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1241), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1241), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1241), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1241), + [anon_sym_polarsis_DASHin] = ACTIONS(1241), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1241), + [anon_sym_polarsis_DASHnull] = ACTIONS(1241), + [anon_sym_polarsis_DASHunique] = ACTIONS(1241), + [anon_sym_polarsjoin] = ACTIONS(1241), + [anon_sym_polarslast] = ACTIONS(1241), + [anon_sym_polarslen] = ACTIONS(1241), + [anon_sym_polarslit] = ACTIONS(1241), + [anon_sym_polarslowercase] = ACTIONS(1241), + [anon_sym_polarsmax] = ACTIONS(1241), + [anon_sym_polarsmean] = ACTIONS(1241), + [anon_sym_polarsmedian] = ACTIONS(1241), + [anon_sym_polarsmin] = ACTIONS(1241), + [anon_sym_polarsn_DASHunique] = ACTIONS(1241), + [anon_sym_polarsnot] = ACTIONS(1241), + [anon_sym_polarsopen] = ACTIONS(1241), + [anon_sym_polarsotherwise] = ACTIONS(1241), + [anon_sym_polarspivot] = ACTIONS(1241), + [anon_sym_polarsprofile] = ACTIONS(1241), + [anon_sym_polarsquantile] = ACTIONS(1241), + [anon_sym_polarsquery] = ACTIONS(1241), + [anon_sym_polarsrename] = ACTIONS(1241), + [anon_sym_polarsreplace] = ACTIONS(1238), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1241), + [anon_sym_polarsreverse] = ACTIONS(1241), + [anon_sym_polarsrolling] = ACTIONS(1241), + [anon_sym_polarssample] = ACTIONS(1241), + [anon_sym_polarssave] = ACTIONS(1241), + [anon_sym_polarsschema] = ACTIONS(1241), + [anon_sym_polarsselect] = ACTIONS(1241), + [anon_sym_polarsset] = ACTIONS(1238), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1241), + [anon_sym_polarsshape] = ACTIONS(1241), + [anon_sym_polarsshift] = ACTIONS(1241), + [anon_sym_polarsslice] = ACTIONS(1241), + [anon_sym_polarssort_DASHby] = ACTIONS(1241), + [anon_sym_polarsstd] = ACTIONS(1241), + [anon_sym_polarsstore_DASHget] = ACTIONS(1241), + [anon_sym_polarsstore_DASHls] = ACTIONS(1241), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1241), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1241), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1241), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1241), + [anon_sym_polarsstrftime] = ACTIONS(1241), + [anon_sym_polarssum] = ACTIONS(1238), + [anon_sym_polarssummary] = ACTIONS(1241), + [anon_sym_polarstake] = ACTIONS(1241), + [anon_sym_polarsunique] = ACTIONS(1241), + [anon_sym_polarsunnest] = ACTIONS(1241), + [anon_sym_polarsunpivot] = ACTIONS(1241), + [anon_sym_polarsuppercase] = ACTIONS(1241), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1241), + [anon_sym_polarsvar] = ACTIONS(1241), + [anon_sym_polarswhen] = ACTIONS(1241), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1241), + [anon_sym_querydb] = ACTIONS(1241), + [anon_sym_querygit] = ACTIONS(1241), + [anon_sym_queryjson] = ACTIONS(1241), + [anon_sym_queryweb] = ACTIONS(1238), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1241), + [anon_sym_queryxml] = ACTIONS(1241), + [anon_sym_randombinary] = ACTIONS(1241), + [anon_sym_randombool] = ACTIONS(1241), + [anon_sym_randomchars] = ACTIONS(1241), + [anon_sym_randomdice] = ACTIONS(1241), + [anon_sym_randomfloat] = ACTIONS(1241), + [anon_sym_randomint] = ACTIONS(1241), + [anon_sym_randomuuid] = ACTIONS(1241), + [anon_sym_rolldown] = ACTIONS(1241), + [anon_sym_rollleft] = ACTIONS(1241), + [anon_sym_rollright] = ACTIONS(1241), + [anon_sym_rollup] = ACTIONS(1241), + [anon_sym_scopealiases] = ACTIONS(1241), + [anon_sym_scopecommands] = ACTIONS(1241), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1241), + [anon_sym_scopeexterns] = ACTIONS(1241), + [anon_sym_scopemodules] = ACTIONS(1241), + [anon_sym_scopevariables] = ACTIONS(1241), + [anon_sym_seqchar] = ACTIONS(1241), + [anon_sym_seqdate] = ACTIONS(1241), + [anon_sym_skipuntil] = ACTIONS(1241), + [anon_sym_skipwhile] = ACTIONS(1241), + [anon_sym_splitcell_DASHpath] = ACTIONS(1241), + [anon_sym_splitchars] = ACTIONS(1241), + [anon_sym_splitcolumn] = ACTIONS(1241), + [anon_sym_splitlist] = ACTIONS(1241), + [anon_sym_splitrow] = ACTIONS(1241), + [anon_sym_splitwords] = ACTIONS(1241), + [anon_sym_storcreate] = ACTIONS(1241), + [anon_sym_stordelete] = ACTIONS(1241), + [anon_sym_storexport] = ACTIONS(1241), + [anon_sym_storimport] = ACTIONS(1241), + [anon_sym_storinsert] = ACTIONS(1241), + [anon_sym_storopen] = ACTIONS(1241), + [anon_sym_storreset] = ACTIONS(1241), + [anon_sym_storupdate] = ACTIONS(1241), + [anon_sym_strbexpand] = ACTIONS(1241), + [anon_sym_strcamel_DASHcase] = ACTIONS(1241), + [anon_sym_strcapitalize] = ACTIONS(1241), + [anon_sym_strcompress] = ACTIONS(1241), + [anon_sym_strcontains] = ACTIONS(1241), + [anon_sym_strdecompress] = ACTIONS(1241), + [anon_sym_strdedent] = ACTIONS(1241), + [anon_sym_strdeunicode] = ACTIONS(1241), + [anon_sym_strdistance] = ACTIONS(1241), + [anon_sym_strdowncase] = ACTIONS(1241), + [anon_sym_strends_DASHwith] = ACTIONS(1241), + [anon_sym_strexpand] = ACTIONS(1241), + [anon_sym_strindent] = ACTIONS(1241), + [anon_sym_strindex_DASHof] = ACTIONS(1241), + [anon_sym_strjoin] = ACTIONS(1241), + [anon_sym_strkebab_DASHcase] = ACTIONS(1241), + [anon_sym_strlength] = ACTIONS(1241), + [anon_sym_strpascal_DASHcase] = ACTIONS(1241), + [anon_sym_strreplace] = ACTIONS(1241), + [anon_sym_strreverse] = ACTIONS(1241), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1241), + [anon_sym_strsimilarity] = ACTIONS(1241), + [anon_sym_strsnake_DASHcase] = ACTIONS(1241), + [anon_sym_strstarts_DASHwith] = ACTIONS(1241), + [anon_sym_strstats] = ACTIONS(1241), + [anon_sym_strsubstring] = ACTIONS(1241), + [anon_sym_strtitle_DASHcase] = ACTIONS(1241), + [anon_sym_strtrim] = ACTIONS(1241), + [anon_sym_strupcase] = ACTIONS(1241), + [anon_sym_strwrap] = ACTIONS(1241), + [anon_sym_syscpu] = ACTIONS(1241), + [anon_sym_sysdisks] = ACTIONS(1241), + [anon_sym_syshost] = ACTIONS(1241), + [anon_sym_sysmem] = ACTIONS(1241), + [anon_sym_sysnet] = ACTIONS(1241), + [anon_sym_systemp] = ACTIONS(1241), + [anon_sym_sysusers] = ACTIONS(1241), + [anon_sym_takeuntil] = ACTIONS(1241), + [anon_sym_takewhile] = ACTIONS(1241), + [anon_sym_termquery] = ACTIONS(1241), + [anon_sym_termsize] = ACTIONS(1241), + [anon_sym_tobz2] = ACTIONS(1241), + [anon_sym_tocsv] = ACTIONS(1241), + [anon_sym_togz] = ACTIONS(1241), + [anon_sym_tohtml] = ACTIONS(1241), + [anon_sym_tojson] = ACTIONS(1241), + [anon_sym_tomd] = ACTIONS(1241), + [anon_sym_tomsgpack] = ACTIONS(1238), + [anon_sym_tomsgpackz] = ACTIONS(1241), + [anon_sym_tonuon] = ACTIONS(1241), + [anon_sym_toparquet] = ACTIONS(1241), + [anon_sym_toplist] = ACTIONS(1241), + [anon_sym_topng] = ACTIONS(1241), + [anon_sym_totext] = ACTIONS(1241), + [anon_sym_totoml] = ACTIONS(1241), + [anon_sym_totsv] = ACTIONS(1241), + [anon_sym_toxml] = ACTIONS(1241), + [anon_sym_toxz] = ACTIONS(1241), + [anon_sym_toyaml] = ACTIONS(1241), + [anon_sym_tozst] = ACTIONS(1241), + [anon_sym_updatecells] = ACTIONS(1241), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1241), + [anon_sym_urldecode] = ACTIONS(1241), + [anon_sym_urlencode] = ACTIONS(1241), + [anon_sym_urljoin] = ACTIONS(1241), + [anon_sym_urlparse] = ACTIONS(1241), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1241), + [anon_sym_viewfiles] = ACTIONS(1241), + [anon_sym_viewir] = ACTIONS(1241), + [anon_sym_viewsource] = ACTIONS(1241), + [anon_sym_viewspan] = ACTIONS(1241), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1241), }, - [453] = { - [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [aux_sym__immediate_decimal_token2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [278] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3912), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(5105), + [sym_comment] = STATE(278), + [aux_sym_shebang_repeat1] = STATE(243), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [sym__newline] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [454] = { - [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(2052), - [anon_sym_alias] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_let_DASHenv] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [aux_sym_cmd_identifier_token1] = ACTIONS(2052), - [aux_sym_cmd_identifier_token2] = ACTIONS(2052), - [aux_sym_cmd_identifier_token3] = ACTIONS(2052), - [aux_sym_cmd_identifier_token4] = ACTIONS(2052), - [aux_sym_cmd_identifier_token5] = ACTIONS(2052), - [aux_sym_cmd_identifier_token6] = ACTIONS(2052), - [aux_sym_cmd_identifier_token7] = ACTIONS(2052), - [aux_sym_cmd_identifier_token8] = ACTIONS(2052), - [aux_sym_cmd_identifier_token9] = ACTIONS(2052), - [aux_sym_cmd_identifier_token10] = ACTIONS(2052), - [aux_sym_cmd_identifier_token11] = ACTIONS(2052), - [aux_sym_cmd_identifier_token12] = ACTIONS(2052), - [aux_sym_cmd_identifier_token13] = ACTIONS(2052), - [aux_sym_cmd_identifier_token14] = ACTIONS(2052), - [aux_sym_cmd_identifier_token15] = ACTIONS(2052), - [aux_sym_cmd_identifier_token16] = ACTIONS(2052), - [aux_sym_cmd_identifier_token17] = ACTIONS(2052), - [aux_sym_cmd_identifier_token18] = ACTIONS(2052), - [aux_sym_cmd_identifier_token19] = ACTIONS(2052), - [aux_sym_cmd_identifier_token20] = ACTIONS(2052), - [aux_sym_cmd_identifier_token21] = ACTIONS(2052), - [aux_sym_cmd_identifier_token22] = ACTIONS(2052), - [aux_sym_cmd_identifier_token23] = ACTIONS(2052), - [aux_sym_cmd_identifier_token24] = ACTIONS(2052), - [aux_sym_cmd_identifier_token25] = ACTIONS(2052), - [aux_sym_cmd_identifier_token26] = ACTIONS(2052), - [aux_sym_cmd_identifier_token27] = ACTIONS(2052), - [aux_sym_cmd_identifier_token28] = ACTIONS(2052), - [aux_sym_cmd_identifier_token29] = ACTIONS(2052), - [aux_sym_cmd_identifier_token30] = ACTIONS(2052), - [aux_sym_cmd_identifier_token31] = ACTIONS(2052), - [aux_sym_cmd_identifier_token32] = ACTIONS(2052), - [aux_sym_cmd_identifier_token33] = ACTIONS(2052), - [aux_sym_cmd_identifier_token34] = ACTIONS(2052), - [aux_sym_cmd_identifier_token35] = ACTIONS(2052), - [aux_sym_cmd_identifier_token36] = ACTIONS(2052), - [aux_sym_cmd_identifier_token37] = ACTIONS(2052), - [aux_sym_cmd_identifier_token38] = ACTIONS(2052), - [aux_sym_cmd_identifier_token39] = ACTIONS(2052), - [aux_sym_cmd_identifier_token40] = ACTIONS(2052), - [anon_sym_def] = ACTIONS(2052), - [anon_sym_export_DASHenv] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_module] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_error] = ACTIONS(2052), - [anon_sym_DASH2] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_in2] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_make] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_do] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_else] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [anon_sym_catch] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_source] = ACTIONS(2052), - [anon_sym_source_DASHenv] = ACTIONS(2052), - [anon_sym_register] = ACTIONS(2052), - [anon_sym_hide] = ACTIONS(2052), - [anon_sym_hide_DASHenv] = ACTIONS(2052), - [anon_sym_overlay] = ACTIONS(2052), - [anon_sym_as] = ACTIONS(2052), - [anon_sym_PLUS2] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2052), - [anon_sym_DOT_DOT2] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2052), - [aux_sym__val_number_decimal_token1] = ACTIONS(2052), - [aux_sym__val_number_decimal_token2] = ACTIONS(2052), - [aux_sym__val_number_decimal_token3] = ACTIONS(2052), - [aux_sym__val_number_decimal_token4] = ACTIONS(2052), - [aux_sym__val_number_token1] = ACTIONS(2052), - [aux_sym__val_number_token2] = ACTIONS(2052), - [aux_sym__val_number_token3] = ACTIONS(2052), - [aux_sym__val_number_token4] = ACTIONS(2052), - [aux_sym__val_number_token5] = ACTIONS(2052), - [aux_sym__val_number_token6] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym__str_single_quotes] = ACTIONS(2052), - [sym__str_back_ticks] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2052), - [sym__entry_separator] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2054), + [279] = { + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1323), + [anon_sym_alias] = ACTIONS(1323), + [anon_sym_let] = ACTIONS(1323), + [anon_sym_let_DASHenv] = ACTIONS(1323), + [anon_sym_mut] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1323), + [aux_sym_cmd_identifier_token2] = ACTIONS(1325), + [aux_sym_cmd_identifier_token3] = ACTIONS(1325), + [aux_sym_cmd_identifier_token4] = ACTIONS(1325), + [aux_sym_cmd_identifier_token5] = ACTIONS(1325), + [aux_sym_cmd_identifier_token6] = ACTIONS(1325), + [aux_sym_cmd_identifier_token7] = ACTIONS(1325), + [aux_sym_cmd_identifier_token8] = ACTIONS(1323), + [aux_sym_cmd_identifier_token9] = ACTIONS(1323), + [aux_sym_cmd_identifier_token10] = ACTIONS(1325), + [aux_sym_cmd_identifier_token11] = ACTIONS(1325), + [aux_sym_cmd_identifier_token12] = ACTIONS(1323), + [aux_sym_cmd_identifier_token13] = ACTIONS(1323), + [aux_sym_cmd_identifier_token14] = ACTIONS(1323), + [aux_sym_cmd_identifier_token15] = ACTIONS(1323), + [aux_sym_cmd_identifier_token16] = ACTIONS(1325), + [aux_sym_cmd_identifier_token17] = ACTIONS(1325), + [aux_sym_cmd_identifier_token18] = ACTIONS(1323), + [aux_sym_cmd_identifier_token19] = ACTIONS(1325), + [aux_sym_cmd_identifier_token20] = ACTIONS(1325), + [aux_sym_cmd_identifier_token21] = ACTIONS(1325), + [aux_sym_cmd_identifier_token22] = ACTIONS(1325), + [aux_sym_cmd_identifier_token23] = ACTIONS(1325), + [aux_sym_cmd_identifier_token24] = ACTIONS(1325), + [aux_sym_cmd_identifier_token25] = ACTIONS(1325), + [aux_sym_cmd_identifier_token26] = ACTIONS(1325), + [aux_sym_cmd_identifier_token27] = ACTIONS(1325), + [aux_sym_cmd_identifier_token28] = ACTIONS(1325), + [aux_sym_cmd_identifier_token29] = ACTIONS(1325), + [aux_sym_cmd_identifier_token30] = ACTIONS(1325), + [aux_sym_cmd_identifier_token31] = ACTIONS(1325), + [aux_sym_cmd_identifier_token32] = ACTIONS(1323), + [aux_sym_cmd_identifier_token33] = ACTIONS(1325), + [aux_sym_cmd_identifier_token34] = ACTIONS(1323), + [aux_sym_cmd_identifier_token35] = ACTIONS(1325), + [aux_sym_cmd_identifier_token36] = ACTIONS(1325), + [aux_sym_cmd_identifier_token37] = ACTIONS(1325), + [aux_sym_cmd_identifier_token38] = ACTIONS(1323), + [aux_sym_cmd_identifier_token39] = ACTIONS(1325), + [aux_sym_cmd_identifier_token40] = ACTIONS(1325), + [sym__newline] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_def] = ACTIONS(1323), + [anon_sym_export_DASHenv] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym_module] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_error] = ACTIONS(1323), + [anon_sym_DASH2] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_loop] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_source] = ACTIONS(1323), + [anon_sym_source_DASHenv] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_hide] = ACTIONS(1323), + [anon_sym_hide_DASHenv] = ACTIONS(1323), + [anon_sym_overlay] = ACTIONS(1323), + [anon_sym_where] = ACTIONS(1325), + [aux_sym_expr_unary_token1] = ACTIONS(1325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1325), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [aux_sym__val_number_decimal_token1] = ACTIONS(1323), + [aux_sym__val_number_decimal_token2] = ACTIONS(1325), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1325), + [aux_sym__val_number_token1] = ACTIONS(1325), + [aux_sym__val_number_token2] = ACTIONS(1325), + [aux_sym__val_number_token3] = ACTIONS(1325), + [aux_sym__val_number_token4] = ACTIONS(1323), + [aux_sym__val_number_token5] = ACTIONS(1323), + [aux_sym__val_number_token6] = ACTIONS(1323), + [anon_sym_0b] = ACTIONS(1323), + [anon_sym_0o] = ACTIONS(1323), + [anon_sym_0x] = ACTIONS(1323), + [sym_val_date] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym__str_single_quotes] = ACTIONS(1325), + [sym__str_back_ticks] = ACTIONS(1325), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1325), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1325), + [aux_sym_env_var_token1] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_ansigradient] = ACTIONS(1325), + [anon_sym_ansilink] = ACTIONS(1325), + [anon_sym_ansistrip] = ACTIONS(1325), + [anon_sym_bitsand] = ACTIONS(1325), + [anon_sym_bitsnot] = ACTIONS(1325), + [anon_sym_bitsor] = ACTIONS(1325), + [anon_sym_bitsrol] = ACTIONS(1325), + [anon_sym_bitsror] = ACTIONS(1325), + [anon_sym_bitsshl] = ACTIONS(1325), + [anon_sym_bitsshr] = ACTIONS(1325), + [anon_sym_bitsxor] = ACTIONS(1325), + [anon_sym_bytesadd] = ACTIONS(1325), + [anon_sym_bytesat] = ACTIONS(1325), + [anon_sym_bytesbuild] = ACTIONS(1325), + [anon_sym_bytescollect] = ACTIONS(1325), + [anon_sym_bytesends_DASHwith] = ACTIONS(1325), + [anon_sym_bytesindex_DASHof] = ACTIONS(1325), + [anon_sym_byteslength] = ACTIONS(1325), + [anon_sym_bytesremove] = ACTIONS(1325), + [anon_sym_bytesreplace] = ACTIONS(1325), + [anon_sym_bytesreverse] = ACTIONS(1325), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1325), + [anon_sym_commandlineedit] = ACTIONS(1325), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1325), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1325), + [anon_sym_configenv] = ACTIONS(1325), + [anon_sym_confignu] = ACTIONS(1325), + [anon_sym_configreset] = ACTIONS(1325), + [anon_sym_dateformat] = ACTIONS(1325), + [anon_sym_datehumanize] = ACTIONS(1325), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1325), + [anon_sym_datenow] = ACTIONS(1325), + [anon_sym_dateto_DASHrecord] = ACTIONS(1325), + [anon_sym_dateto_DASHtable] = ACTIONS(1325), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1325), + [anon_sym_debuginfo] = ACTIONS(1325), + [anon_sym_debugprofile] = ACTIONS(1325), + [anon_sym_decodebase32] = ACTIONS(1323), + [anon_sym_decodebase32hex] = ACTIONS(1325), + [anon_sym_decodebase64] = ACTIONS(1325), + [anon_sym_decodehex] = ACTIONS(1325), + [anon_sym_detectcolumns] = ACTIONS(1325), + [anon_sym_dropcolumn] = ACTIONS(1325), + [anon_sym_dropnth] = ACTIONS(1325), + [anon_sym_dtadd] = ACTIONS(1325), + [anon_sym_dtdiff] = ACTIONS(1325), + [anon_sym_dtformat] = ACTIONS(1325), + [anon_sym_dtnow] = ACTIONS(1325), + [anon_sym_dtpart] = ACTIONS(1325), + [anon_sym_dtto] = ACTIONS(1325), + [anon_sym_dtutcnow] = ACTIONS(1325), + [anon_sym_eachwhile] = ACTIONS(1325), + [anon_sym_encodebase32] = ACTIONS(1323), + [anon_sym_encodebase32hex] = ACTIONS(1325), + [anon_sym_encodebase64] = ACTIONS(1325), + [anon_sym_encodehex] = ACTIONS(1325), + [anon_sym_errormake] = ACTIONS(1325), + [anon_sym_exploreir] = ACTIONS(1325), + [anon_sym_formatdate] = ACTIONS(1325), + [anon_sym_formatduration] = ACTIONS(1325), + [anon_sym_formatfilesize] = ACTIONS(1325), + [anon_sym_formatpattern] = ACTIONS(1325), + [anon_sym_frombz2] = ACTIONS(1325), + [anon_sym_fromcsv] = ACTIONS(1325), + [anon_sym_fromeml] = ACTIONS(1325), + [anon_sym_fromgz] = ACTIONS(1325), + [anon_sym_fromics] = ACTIONS(1325), + [anon_sym_fromini] = ACTIONS(1325), + [anon_sym_fromjson] = ACTIONS(1325), + [anon_sym_frommsgpack] = ACTIONS(1323), + [anon_sym_frommsgpackz] = ACTIONS(1325), + [anon_sym_fromnuon] = ACTIONS(1325), + [anon_sym_fromods] = ACTIONS(1325), + [anon_sym_fromparquet] = ACTIONS(1325), + [anon_sym_fromplist] = ACTIONS(1325), + [anon_sym_frompng] = ACTIONS(1325), + [anon_sym_fromssv] = ACTIONS(1325), + [anon_sym_fromtoml] = ACTIONS(1325), + [anon_sym_fromtsv] = ACTIONS(1325), + [anon_sym_fromurl] = ACTIONS(1325), + [anon_sym_fromvcf] = ACTIONS(1325), + [anon_sym_fromxlsx] = ACTIONS(1325), + [anon_sym_fromxml] = ACTIONS(1325), + [anon_sym_fromxz] = ACTIONS(1325), + [anon_sym_fromyaml] = ACTIONS(1325), + [anon_sym_fromyml] = ACTIONS(1325), + [anon_sym_fromzst] = ACTIONS(1325), + [anon_sym_hashmd5] = ACTIONS(1325), + [anon_sym_hashsha256] = ACTIONS(1325), + [anon_sym_helpaliases] = ACTIONS(1325), + [anon_sym_helpcommands] = ACTIONS(1325), + [anon_sym_helpescapes] = ACTIONS(1325), + [anon_sym_helpexterns] = ACTIONS(1325), + [anon_sym_helpmodules] = ACTIONS(1325), + [anon_sym_helpoperators] = ACTIONS(1325), + [anon_sym_historyimport] = ACTIONS(1325), + [anon_sym_historysession] = ACTIONS(1325), + [anon_sym_httpdelete] = ACTIONS(1325), + [anon_sym_httpget] = ACTIONS(1325), + [anon_sym_httphead] = ACTIONS(1325), + [anon_sym_httpoptions] = ACTIONS(1325), + [anon_sym_httppatch] = ACTIONS(1325), + [anon_sym_httppost] = ACTIONS(1325), + [anon_sym_httpput] = ACTIONS(1325), + [anon_sym_inputlist] = ACTIONS(1323), + [anon_sym_inputlisten] = ACTIONS(1325), + [anon_sym_intobinary] = ACTIONS(1325), + [anon_sym_intobits] = ACTIONS(1325), + [anon_sym_intobool] = ACTIONS(1325), + [anon_sym_intocell_DASHpath] = ACTIONS(1325), + [anon_sym_intodatetime] = ACTIONS(1325), + [anon_sym_intoduration] = ACTIONS(1325), + [anon_sym_intofilesize] = ACTIONS(1325), + [anon_sym_intofloat] = ACTIONS(1325), + [anon_sym_intoglob] = ACTIONS(1325), + [anon_sym_intoint] = ACTIONS(1325), + [anon_sym_intorecord] = ACTIONS(1325), + [anon_sym_intosqlite] = ACTIONS(1325), + [anon_sym_intostring] = ACTIONS(1325), + [anon_sym_intovalue] = ACTIONS(1325), + [anon_sym_jsonpath] = ACTIONS(1325), + [anon_sym_keybindingsdefault] = ACTIONS(1325), + [anon_sym_keybindingslist] = ACTIONS(1323), + [anon_sym_keybindingslisten] = ACTIONS(1325), + [anon_sym_mathabs] = ACTIONS(1325), + [anon_sym_matharccos] = ACTIONS(1323), + [anon_sym_matharccosh] = ACTIONS(1325), + [anon_sym_matharcsin] = ACTIONS(1323), + [anon_sym_matharcsinh] = ACTIONS(1325), + [anon_sym_matharctan] = ACTIONS(1323), + [anon_sym_matharctanh] = ACTIONS(1325), + [anon_sym_mathavg] = ACTIONS(1325), + [anon_sym_mathceil] = ACTIONS(1325), + [anon_sym_mathcos] = ACTIONS(1323), + [anon_sym_mathcosh] = ACTIONS(1325), + [anon_sym_mathexp] = ACTIONS(1325), + [anon_sym_mathfloor] = ACTIONS(1325), + [anon_sym_mathln] = ACTIONS(1325), + [anon_sym_mathlog] = ACTIONS(1325), + [anon_sym_mathmax] = ACTIONS(1325), + [anon_sym_mathmedian] = ACTIONS(1325), + [anon_sym_mathmin] = ACTIONS(1325), + [anon_sym_mathmode] = ACTIONS(1325), + [anon_sym_mathproduct] = ACTIONS(1325), + [anon_sym_mathround] = ACTIONS(1325), + [anon_sym_mathsin] = ACTIONS(1323), + [anon_sym_mathsinh] = ACTIONS(1325), + [anon_sym_mathsqrt] = ACTIONS(1325), + [anon_sym_mathstddev] = ACTIONS(1325), + [anon_sym_mathsum] = ACTIONS(1325), + [anon_sym_mathtan] = ACTIONS(1323), + [anon_sym_mathtanh] = ACTIONS(1325), + [anon_sym_mathvariance] = ACTIONS(1325), + [anon_sym_metadataaccess] = ACTIONS(1325), + [anon_sym_metadataset] = ACTIONS(1325), + [anon_sym_pathbasename] = ACTIONS(1325), + [anon_sym_pathdirname] = ACTIONS(1325), + [anon_sym_pathexists] = ACTIONS(1325), + [anon_sym_pathexpand] = ACTIONS(1325), + [anon_sym_pathjoin] = ACTIONS(1325), + [anon_sym_pathparse] = ACTIONS(1325), + [anon_sym_pathrelative_DASHto] = ACTIONS(1325), + [anon_sym_pathsplit] = ACTIONS(1325), + [anon_sym_pathtype] = ACTIONS(1325), + [anon_sym_pluginadd] = ACTIONS(1325), + [anon_sym_pluginlist] = ACTIONS(1325), + [anon_sym_pluginrm] = ACTIONS(1325), + [anon_sym_pluginstop] = ACTIONS(1325), + [anon_sym_polarsagg] = ACTIONS(1323), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1325), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1325), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1325), + [anon_sym_polarsappend] = ACTIONS(1325), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1325), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1325), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1325), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1325), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1325), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1325), + [anon_sym_polarsas] = ACTIONS(1323), + [anon_sym_polarsas_DASHdate] = ACTIONS(1323), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1325), + [anon_sym_polarscache] = ACTIONS(1325), + [anon_sym_polarscast] = ACTIONS(1325), + [anon_sym_polarscol] = ACTIONS(1323), + [anon_sym_polarscollect] = ACTIONS(1325), + [anon_sym_polarscolumns] = ACTIONS(1325), + [anon_sym_polarsconcat] = ACTIONS(1323), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1325), + [anon_sym_polarscontains] = ACTIONS(1325), + [anon_sym_polarscount] = ACTIONS(1323), + [anon_sym_polarscount_DASHnull] = ACTIONS(1325), + [anon_sym_polarscumulative] = ACTIONS(1325), + [anon_sym_polarsdatepart] = ACTIONS(1325), + [anon_sym_polarsdecimal] = ACTIONS(1325), + [anon_sym_polarsdrop] = ACTIONS(1323), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1325), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1325), + [anon_sym_polarsdummies] = ACTIONS(1325), + [anon_sym_polarsexplode] = ACTIONS(1325), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1325), + [anon_sym_polarsfetch] = ACTIONS(1325), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1325), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1325), + [anon_sym_polarsfilter] = ACTIONS(1323), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1325), + [anon_sym_polarsfirst] = ACTIONS(1325), + [anon_sym_polarsflatten] = ACTIONS(1325), + [anon_sym_polarsget] = ACTIONS(1323), + [anon_sym_polarsget_DASHday] = ACTIONS(1325), + [anon_sym_polarsget_DASHhour] = ACTIONS(1325), + [anon_sym_polarsget_DASHminute] = ACTIONS(1325), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1325), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1325), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1325), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1325), + [anon_sym_polarsget_DASHweek] = ACTIONS(1323), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1325), + [anon_sym_polarsget_DASHyear] = ACTIONS(1325), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1325), + [anon_sym_polarsimplode] = ACTIONS(1325), + [anon_sym_polarsinteger] = ACTIONS(1325), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1325), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1325), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1325), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1325), + [anon_sym_polarsis_DASHin] = ACTIONS(1325), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1325), + [anon_sym_polarsis_DASHnull] = ACTIONS(1325), + [anon_sym_polarsis_DASHunique] = ACTIONS(1325), + [anon_sym_polarsjoin] = ACTIONS(1325), + [anon_sym_polarslast] = ACTIONS(1325), + [anon_sym_polarslen] = ACTIONS(1325), + [anon_sym_polarslit] = ACTIONS(1325), + [anon_sym_polarslowercase] = ACTIONS(1325), + [anon_sym_polarsmax] = ACTIONS(1325), + [anon_sym_polarsmean] = ACTIONS(1325), + [anon_sym_polarsmedian] = ACTIONS(1325), + [anon_sym_polarsmin] = ACTIONS(1325), + [anon_sym_polarsn_DASHunique] = ACTIONS(1325), + [anon_sym_polarsnot] = ACTIONS(1325), + [anon_sym_polarsopen] = ACTIONS(1325), + [anon_sym_polarsotherwise] = ACTIONS(1325), + [anon_sym_polarspivot] = ACTIONS(1325), + [anon_sym_polarsprofile] = ACTIONS(1325), + [anon_sym_polarsquantile] = ACTIONS(1325), + [anon_sym_polarsquery] = ACTIONS(1325), + [anon_sym_polarsrename] = ACTIONS(1325), + [anon_sym_polarsreplace] = ACTIONS(1323), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1325), + [anon_sym_polarsreverse] = ACTIONS(1325), + [anon_sym_polarsrolling] = ACTIONS(1325), + [anon_sym_polarssample] = ACTIONS(1325), + [anon_sym_polarssave] = ACTIONS(1325), + [anon_sym_polarsschema] = ACTIONS(1325), + [anon_sym_polarsselect] = ACTIONS(1325), + [anon_sym_polarsset] = ACTIONS(1323), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1325), + [anon_sym_polarsshape] = ACTIONS(1325), + [anon_sym_polarsshift] = ACTIONS(1325), + [anon_sym_polarsslice] = ACTIONS(1325), + [anon_sym_polarssort_DASHby] = ACTIONS(1325), + [anon_sym_polarsstd] = ACTIONS(1325), + [anon_sym_polarsstore_DASHget] = ACTIONS(1325), + [anon_sym_polarsstore_DASHls] = ACTIONS(1325), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1325), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1325), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1325), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1325), + [anon_sym_polarsstrftime] = ACTIONS(1325), + [anon_sym_polarssum] = ACTIONS(1323), + [anon_sym_polarssummary] = ACTIONS(1325), + [anon_sym_polarstake] = ACTIONS(1325), + [anon_sym_polarsunique] = ACTIONS(1325), + [anon_sym_polarsunnest] = ACTIONS(1325), + [anon_sym_polarsunpivot] = ACTIONS(1325), + [anon_sym_polarsuppercase] = ACTIONS(1325), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1325), + [anon_sym_polarsvar] = ACTIONS(1325), + [anon_sym_polarswhen] = ACTIONS(1325), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1325), + [anon_sym_querydb] = ACTIONS(1325), + [anon_sym_querygit] = ACTIONS(1325), + [anon_sym_queryjson] = ACTIONS(1325), + [anon_sym_queryweb] = ACTIONS(1323), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1325), + [anon_sym_queryxml] = ACTIONS(1325), + [anon_sym_randombinary] = ACTIONS(1325), + [anon_sym_randombool] = ACTIONS(1325), + [anon_sym_randomchars] = ACTIONS(1325), + [anon_sym_randomdice] = ACTIONS(1325), + [anon_sym_randomfloat] = ACTIONS(1325), + [anon_sym_randomint] = ACTIONS(1325), + [anon_sym_randomuuid] = ACTIONS(1325), + [anon_sym_rolldown] = ACTIONS(1325), + [anon_sym_rollleft] = ACTIONS(1325), + [anon_sym_rollright] = ACTIONS(1325), + [anon_sym_rollup] = ACTIONS(1325), + [anon_sym_scopealiases] = ACTIONS(1325), + [anon_sym_scopecommands] = ACTIONS(1325), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1325), + [anon_sym_scopeexterns] = ACTIONS(1325), + [anon_sym_scopemodules] = ACTIONS(1325), + [anon_sym_scopevariables] = ACTIONS(1325), + [anon_sym_seqchar] = ACTIONS(1325), + [anon_sym_seqdate] = ACTIONS(1325), + [anon_sym_skipuntil] = ACTIONS(1325), + [anon_sym_skipwhile] = ACTIONS(1325), + [anon_sym_splitcell_DASHpath] = ACTIONS(1325), + [anon_sym_splitchars] = ACTIONS(1325), + [anon_sym_splitcolumn] = ACTIONS(1325), + [anon_sym_splitlist] = ACTIONS(1325), + [anon_sym_splitrow] = ACTIONS(1325), + [anon_sym_splitwords] = ACTIONS(1325), + [anon_sym_storcreate] = ACTIONS(1325), + [anon_sym_stordelete] = ACTIONS(1325), + [anon_sym_storexport] = ACTIONS(1325), + [anon_sym_storimport] = ACTIONS(1325), + [anon_sym_storinsert] = ACTIONS(1325), + [anon_sym_storopen] = ACTIONS(1325), + [anon_sym_storreset] = ACTIONS(1325), + [anon_sym_storupdate] = ACTIONS(1325), + [anon_sym_strbexpand] = ACTIONS(1325), + [anon_sym_strcamel_DASHcase] = ACTIONS(1325), + [anon_sym_strcapitalize] = ACTIONS(1325), + [anon_sym_strcompress] = ACTIONS(1325), + [anon_sym_strcontains] = ACTIONS(1325), + [anon_sym_strdecompress] = ACTIONS(1325), + [anon_sym_strdedent] = ACTIONS(1325), + [anon_sym_strdeunicode] = ACTIONS(1325), + [anon_sym_strdistance] = ACTIONS(1325), + [anon_sym_strdowncase] = ACTIONS(1325), + [anon_sym_strends_DASHwith] = ACTIONS(1325), + [anon_sym_strexpand] = ACTIONS(1325), + [anon_sym_strindent] = ACTIONS(1325), + [anon_sym_strindex_DASHof] = ACTIONS(1325), + [anon_sym_strjoin] = ACTIONS(1325), + [anon_sym_strkebab_DASHcase] = ACTIONS(1325), + [anon_sym_strlength] = ACTIONS(1325), + [anon_sym_strpascal_DASHcase] = ACTIONS(1325), + [anon_sym_strreplace] = ACTIONS(1325), + [anon_sym_strreverse] = ACTIONS(1325), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1325), + [anon_sym_strsimilarity] = ACTIONS(1325), + [anon_sym_strsnake_DASHcase] = ACTIONS(1325), + [anon_sym_strstarts_DASHwith] = ACTIONS(1325), + [anon_sym_strstats] = ACTIONS(1325), + [anon_sym_strsubstring] = ACTIONS(1325), + [anon_sym_strtitle_DASHcase] = ACTIONS(1325), + [anon_sym_strtrim] = ACTIONS(1325), + [anon_sym_strupcase] = ACTIONS(1325), + [anon_sym_strwrap] = ACTIONS(1325), + [anon_sym_syscpu] = ACTIONS(1325), + [anon_sym_sysdisks] = ACTIONS(1325), + [anon_sym_syshost] = ACTIONS(1325), + [anon_sym_sysmem] = ACTIONS(1325), + [anon_sym_sysnet] = ACTIONS(1325), + [anon_sym_systemp] = ACTIONS(1325), + [anon_sym_sysusers] = ACTIONS(1325), + [anon_sym_takeuntil] = ACTIONS(1325), + [anon_sym_takewhile] = ACTIONS(1325), + [anon_sym_termquery] = ACTIONS(1325), + [anon_sym_termsize] = ACTIONS(1325), + [anon_sym_tobz2] = ACTIONS(1325), + [anon_sym_tocsv] = ACTIONS(1325), + [anon_sym_togz] = ACTIONS(1325), + [anon_sym_tohtml] = ACTIONS(1325), + [anon_sym_tojson] = ACTIONS(1325), + [anon_sym_tomd] = ACTIONS(1325), + [anon_sym_tomsgpack] = ACTIONS(1323), + [anon_sym_tomsgpackz] = ACTIONS(1325), + [anon_sym_tonuon] = ACTIONS(1325), + [anon_sym_toparquet] = ACTIONS(1325), + [anon_sym_toplist] = ACTIONS(1325), + [anon_sym_topng] = ACTIONS(1325), + [anon_sym_totext] = ACTIONS(1325), + [anon_sym_totoml] = ACTIONS(1325), + [anon_sym_totsv] = ACTIONS(1325), + [anon_sym_toxml] = ACTIONS(1325), + [anon_sym_toxz] = ACTIONS(1325), + [anon_sym_toyaml] = ACTIONS(1325), + [anon_sym_tozst] = ACTIONS(1325), + [anon_sym_updatecells] = ACTIONS(1325), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1325), + [anon_sym_urldecode] = ACTIONS(1325), + [anon_sym_urlencode] = ACTIONS(1325), + [anon_sym_urljoin] = ACTIONS(1325), + [anon_sym_urlparse] = ACTIONS(1325), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1325), + [anon_sym_viewfiles] = ACTIONS(1325), + [anon_sym_viewir] = ACTIONS(1325), + [anon_sym_viewsource] = ACTIONS(1325), + [anon_sym_viewspan] = ACTIONS(1325), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1325), }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [280] = { + [sym_comment] = STATE(280), + [aux_sym__block_body_repeat1] = STATE(196), + [anon_sym_export] = ACTIONS(1250), + [anon_sym_alias] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_let_DASHenv] = ACTIONS(1250), + [anon_sym_mut] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [aux_sym_cmd_identifier_token1] = ACTIONS(1250), + [aux_sym_cmd_identifier_token2] = ACTIONS(1252), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [aux_sym_cmd_identifier_token6] = ACTIONS(1252), + [aux_sym_cmd_identifier_token7] = ACTIONS(1252), + [aux_sym_cmd_identifier_token8] = ACTIONS(1250), + [aux_sym_cmd_identifier_token9] = ACTIONS(1250), + [aux_sym_cmd_identifier_token10] = ACTIONS(1252), + [aux_sym_cmd_identifier_token11] = ACTIONS(1252), + [aux_sym_cmd_identifier_token12] = ACTIONS(1250), + [aux_sym_cmd_identifier_token13] = ACTIONS(1250), + [aux_sym_cmd_identifier_token14] = ACTIONS(1250), + [aux_sym_cmd_identifier_token15] = ACTIONS(1250), + [aux_sym_cmd_identifier_token16] = ACTIONS(1252), + [aux_sym_cmd_identifier_token17] = ACTIONS(1252), + [aux_sym_cmd_identifier_token18] = ACTIONS(1250), + [aux_sym_cmd_identifier_token19] = ACTIONS(1252), + [aux_sym_cmd_identifier_token20] = ACTIONS(1252), + [aux_sym_cmd_identifier_token21] = ACTIONS(1252), + [aux_sym_cmd_identifier_token22] = ACTIONS(1252), + [aux_sym_cmd_identifier_token23] = ACTIONS(1252), + [aux_sym_cmd_identifier_token24] = ACTIONS(1252), + [aux_sym_cmd_identifier_token25] = ACTIONS(1252), + [aux_sym_cmd_identifier_token26] = ACTIONS(1252), + [aux_sym_cmd_identifier_token27] = ACTIONS(1252), + [aux_sym_cmd_identifier_token28] = ACTIONS(1252), + [aux_sym_cmd_identifier_token29] = ACTIONS(1252), + [aux_sym_cmd_identifier_token30] = ACTIONS(1252), + [aux_sym_cmd_identifier_token31] = ACTIONS(1252), + [aux_sym_cmd_identifier_token32] = ACTIONS(1250), + [aux_sym_cmd_identifier_token33] = ACTIONS(1252), + [aux_sym_cmd_identifier_token34] = ACTIONS(1250), + [aux_sym_cmd_identifier_token35] = ACTIONS(1252), + [aux_sym_cmd_identifier_token36] = ACTIONS(1252), + [aux_sym_cmd_identifier_token37] = ACTIONS(1252), + [aux_sym_cmd_identifier_token38] = ACTIONS(1250), + [aux_sym_cmd_identifier_token39] = ACTIONS(1252), + [aux_sym_cmd_identifier_token40] = ACTIONS(1252), + [sym__newline] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_def] = ACTIONS(1250), + [anon_sym_export_DASHenv] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(1250), + [anon_sym_DASH2] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_source] = ACTIONS(1250), + [anon_sym_source_DASHenv] = ACTIONS(1250), + [anon_sym_register] = ACTIONS(1250), + [anon_sym_hide] = ACTIONS(1250), + [anon_sym_hide_DASHenv] = ACTIONS(1250), + [anon_sym_overlay] = ACTIONS(1250), + [anon_sym_where] = ACTIONS(1252), + [aux_sym_expr_unary_token1] = ACTIONS(1252), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1252), + [anon_sym_DOT_DOT_LT] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym__val_number_decimal_token1] = ACTIONS(1250), + [aux_sym__val_number_decimal_token2] = ACTIONS(1252), + [aux_sym__val_number_decimal_token3] = ACTIONS(1252), + [aux_sym__val_number_decimal_token4] = ACTIONS(1252), + [aux_sym__val_number_token1] = ACTIONS(1252), + [aux_sym__val_number_token2] = ACTIONS(1252), + [aux_sym__val_number_token3] = ACTIONS(1252), + [aux_sym__val_number_token4] = ACTIONS(1250), + [aux_sym__val_number_token5] = ACTIONS(1250), + [aux_sym__val_number_token6] = ACTIONS(1250), + [anon_sym_0b] = ACTIONS(1250), + [anon_sym_0o] = ACTIONS(1250), + [anon_sym_0x] = ACTIONS(1250), + [sym_val_date] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym__str_single_quotes] = ACTIONS(1252), + [sym__str_back_ticks] = ACTIONS(1252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1252), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_ansigradient] = ACTIONS(1252), + [anon_sym_ansilink] = ACTIONS(1252), + [anon_sym_ansistrip] = ACTIONS(1252), + [anon_sym_bitsand] = ACTIONS(1252), + [anon_sym_bitsnot] = ACTIONS(1252), + [anon_sym_bitsor] = ACTIONS(1252), + [anon_sym_bitsrol] = ACTIONS(1252), + [anon_sym_bitsror] = ACTIONS(1252), + [anon_sym_bitsshl] = ACTIONS(1252), + [anon_sym_bitsshr] = ACTIONS(1252), + [anon_sym_bitsxor] = ACTIONS(1252), + [anon_sym_bytesadd] = ACTIONS(1252), + [anon_sym_bytesat] = ACTIONS(1252), + [anon_sym_bytesbuild] = ACTIONS(1252), + [anon_sym_bytescollect] = ACTIONS(1252), + [anon_sym_bytesends_DASHwith] = ACTIONS(1252), + [anon_sym_bytesindex_DASHof] = ACTIONS(1252), + [anon_sym_byteslength] = ACTIONS(1252), + [anon_sym_bytesremove] = ACTIONS(1252), + [anon_sym_bytesreplace] = ACTIONS(1252), + [anon_sym_bytesreverse] = ACTIONS(1252), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1252), + [anon_sym_commandlineedit] = ACTIONS(1252), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1252), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1252), + [anon_sym_configenv] = ACTIONS(1252), + [anon_sym_confignu] = ACTIONS(1252), + [anon_sym_configreset] = ACTIONS(1252), + [anon_sym_dateformat] = ACTIONS(1252), + [anon_sym_datehumanize] = ACTIONS(1252), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1252), + [anon_sym_datenow] = ACTIONS(1252), + [anon_sym_dateto_DASHrecord] = ACTIONS(1252), + [anon_sym_dateto_DASHtable] = ACTIONS(1252), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1252), + [anon_sym_debuginfo] = ACTIONS(1252), + [anon_sym_debugprofile] = ACTIONS(1252), + [anon_sym_decodebase32] = ACTIONS(1250), + [anon_sym_decodebase32hex] = ACTIONS(1252), + [anon_sym_decodebase64] = ACTIONS(1252), + [anon_sym_decodehex] = ACTIONS(1252), + [anon_sym_detectcolumns] = ACTIONS(1252), + [anon_sym_dropcolumn] = ACTIONS(1252), + [anon_sym_dropnth] = ACTIONS(1252), + [anon_sym_dtadd] = ACTIONS(1252), + [anon_sym_dtdiff] = ACTIONS(1252), + [anon_sym_dtformat] = ACTIONS(1252), + [anon_sym_dtnow] = ACTIONS(1252), + [anon_sym_dtpart] = ACTIONS(1252), + [anon_sym_dtto] = ACTIONS(1252), + [anon_sym_dtutcnow] = ACTIONS(1252), + [anon_sym_eachwhile] = ACTIONS(1252), + [anon_sym_encodebase32] = ACTIONS(1250), + [anon_sym_encodebase32hex] = ACTIONS(1252), + [anon_sym_encodebase64] = ACTIONS(1252), + [anon_sym_encodehex] = ACTIONS(1252), + [anon_sym_errormake] = ACTIONS(1252), + [anon_sym_exploreir] = ACTIONS(1252), + [anon_sym_formatdate] = ACTIONS(1252), + [anon_sym_formatduration] = ACTIONS(1252), + [anon_sym_formatfilesize] = ACTIONS(1252), + [anon_sym_formatpattern] = ACTIONS(1252), + [anon_sym_frombz2] = ACTIONS(1252), + [anon_sym_fromcsv] = ACTIONS(1252), + [anon_sym_fromeml] = ACTIONS(1252), + [anon_sym_fromgz] = ACTIONS(1252), + [anon_sym_fromics] = ACTIONS(1252), + [anon_sym_fromini] = ACTIONS(1252), + [anon_sym_fromjson] = ACTIONS(1252), + [anon_sym_frommsgpack] = ACTIONS(1250), + [anon_sym_frommsgpackz] = ACTIONS(1252), + [anon_sym_fromnuon] = ACTIONS(1252), + [anon_sym_fromods] = ACTIONS(1252), + [anon_sym_fromparquet] = ACTIONS(1252), + [anon_sym_fromplist] = ACTIONS(1252), + [anon_sym_frompng] = ACTIONS(1252), + [anon_sym_fromssv] = ACTIONS(1252), + [anon_sym_fromtoml] = ACTIONS(1252), + [anon_sym_fromtsv] = ACTIONS(1252), + [anon_sym_fromurl] = ACTIONS(1252), + [anon_sym_fromvcf] = ACTIONS(1252), + [anon_sym_fromxlsx] = ACTIONS(1252), + [anon_sym_fromxml] = ACTIONS(1252), + [anon_sym_fromxz] = ACTIONS(1252), + [anon_sym_fromyaml] = ACTIONS(1252), + [anon_sym_fromyml] = ACTIONS(1252), + [anon_sym_fromzst] = ACTIONS(1252), + [anon_sym_hashmd5] = ACTIONS(1252), + [anon_sym_hashsha256] = ACTIONS(1252), + [anon_sym_helpaliases] = ACTIONS(1252), + [anon_sym_helpcommands] = ACTIONS(1252), + [anon_sym_helpescapes] = ACTIONS(1252), + [anon_sym_helpexterns] = ACTIONS(1252), + [anon_sym_helpmodules] = ACTIONS(1252), + [anon_sym_helpoperators] = ACTIONS(1252), + [anon_sym_historyimport] = ACTIONS(1252), + [anon_sym_historysession] = ACTIONS(1252), + [anon_sym_httpdelete] = ACTIONS(1252), + [anon_sym_httpget] = ACTIONS(1252), + [anon_sym_httphead] = ACTIONS(1252), + [anon_sym_httpoptions] = ACTIONS(1252), + [anon_sym_httppatch] = ACTIONS(1252), + [anon_sym_httppost] = ACTIONS(1252), + [anon_sym_httpput] = ACTIONS(1252), + [anon_sym_inputlist] = ACTIONS(1250), + [anon_sym_inputlisten] = ACTIONS(1252), + [anon_sym_intobinary] = ACTIONS(1252), + [anon_sym_intobits] = ACTIONS(1252), + [anon_sym_intobool] = ACTIONS(1252), + [anon_sym_intocell_DASHpath] = ACTIONS(1252), + [anon_sym_intodatetime] = ACTIONS(1252), + [anon_sym_intoduration] = ACTIONS(1252), + [anon_sym_intofilesize] = ACTIONS(1252), + [anon_sym_intofloat] = ACTIONS(1252), + [anon_sym_intoglob] = ACTIONS(1252), + [anon_sym_intoint] = ACTIONS(1252), + [anon_sym_intorecord] = ACTIONS(1252), + [anon_sym_intosqlite] = ACTIONS(1252), + [anon_sym_intostring] = ACTIONS(1252), + [anon_sym_intovalue] = ACTIONS(1252), + [anon_sym_jsonpath] = ACTIONS(1252), + [anon_sym_keybindingsdefault] = ACTIONS(1252), + [anon_sym_keybindingslist] = ACTIONS(1250), + [anon_sym_keybindingslisten] = ACTIONS(1252), + [anon_sym_mathabs] = ACTIONS(1252), + [anon_sym_matharccos] = ACTIONS(1250), + [anon_sym_matharccosh] = ACTIONS(1252), + [anon_sym_matharcsin] = ACTIONS(1250), + [anon_sym_matharcsinh] = ACTIONS(1252), + [anon_sym_matharctan] = ACTIONS(1250), + [anon_sym_matharctanh] = ACTIONS(1252), + [anon_sym_mathavg] = ACTIONS(1252), + [anon_sym_mathceil] = ACTIONS(1252), + [anon_sym_mathcos] = ACTIONS(1250), + [anon_sym_mathcosh] = ACTIONS(1252), + [anon_sym_mathexp] = ACTIONS(1252), + [anon_sym_mathfloor] = ACTIONS(1252), + [anon_sym_mathln] = ACTIONS(1252), + [anon_sym_mathlog] = ACTIONS(1252), + [anon_sym_mathmax] = ACTIONS(1252), + [anon_sym_mathmedian] = ACTIONS(1252), + [anon_sym_mathmin] = ACTIONS(1252), + [anon_sym_mathmode] = ACTIONS(1252), + [anon_sym_mathproduct] = ACTIONS(1252), + [anon_sym_mathround] = ACTIONS(1252), + [anon_sym_mathsin] = ACTIONS(1250), + [anon_sym_mathsinh] = ACTIONS(1252), + [anon_sym_mathsqrt] = ACTIONS(1252), + [anon_sym_mathstddev] = ACTIONS(1252), + [anon_sym_mathsum] = ACTIONS(1252), + [anon_sym_mathtan] = ACTIONS(1250), + [anon_sym_mathtanh] = ACTIONS(1252), + [anon_sym_mathvariance] = ACTIONS(1252), + [anon_sym_metadataaccess] = ACTIONS(1252), + [anon_sym_metadataset] = ACTIONS(1252), + [anon_sym_pathbasename] = ACTIONS(1252), + [anon_sym_pathdirname] = ACTIONS(1252), + [anon_sym_pathexists] = ACTIONS(1252), + [anon_sym_pathexpand] = ACTIONS(1252), + [anon_sym_pathjoin] = ACTIONS(1252), + [anon_sym_pathparse] = ACTIONS(1252), + [anon_sym_pathrelative_DASHto] = ACTIONS(1252), + [anon_sym_pathsplit] = ACTIONS(1252), + [anon_sym_pathtype] = ACTIONS(1252), + [anon_sym_pluginadd] = ACTIONS(1252), + [anon_sym_pluginlist] = ACTIONS(1252), + [anon_sym_pluginrm] = ACTIONS(1252), + [anon_sym_pluginstop] = ACTIONS(1252), + [anon_sym_polarsagg] = ACTIONS(1250), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1252), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1252), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsappend] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1252), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1252), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1252), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1252), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1252), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1252), + [anon_sym_polarsas] = ACTIONS(1250), + [anon_sym_polarsas_DASHdate] = ACTIONS(1250), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1252), + [anon_sym_polarscache] = ACTIONS(1252), + [anon_sym_polarscast] = ACTIONS(1252), + [anon_sym_polarscol] = ACTIONS(1250), + [anon_sym_polarscollect] = ACTIONS(1252), + [anon_sym_polarscolumns] = ACTIONS(1252), + [anon_sym_polarsconcat] = ACTIONS(1250), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1252), + [anon_sym_polarscontains] = ACTIONS(1252), + [anon_sym_polarscount] = ACTIONS(1250), + [anon_sym_polarscount_DASHnull] = ACTIONS(1252), + [anon_sym_polarscumulative] = ACTIONS(1252), + [anon_sym_polarsdatepart] = ACTIONS(1252), + [anon_sym_polarsdecimal] = ACTIONS(1252), + [anon_sym_polarsdrop] = ACTIONS(1250), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1252), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1252), + [anon_sym_polarsdummies] = ACTIONS(1252), + [anon_sym_polarsexplode] = ACTIONS(1252), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1252), + [anon_sym_polarsfetch] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1252), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1252), + [anon_sym_polarsfilter] = ACTIONS(1250), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1252), + [anon_sym_polarsfirst] = ACTIONS(1252), + [anon_sym_polarsflatten] = ACTIONS(1252), + [anon_sym_polarsget] = ACTIONS(1250), + [anon_sym_polarsget_DASHday] = ACTIONS(1252), + [anon_sym_polarsget_DASHhour] = ACTIONS(1252), + [anon_sym_polarsget_DASHminute] = ACTIONS(1252), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1252), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1252), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1252), + [anon_sym_polarsget_DASHweek] = ACTIONS(1250), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1252), + [anon_sym_polarsget_DASHyear] = ACTIONS(1252), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1252), + [anon_sym_polarsimplode] = ACTIONS(1252), + [anon_sym_polarsinteger] = ACTIONS(1252), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1252), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1252), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1252), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1252), + [anon_sym_polarsis_DASHin] = ACTIONS(1252), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHnull] = ACTIONS(1252), + [anon_sym_polarsis_DASHunique] = ACTIONS(1252), + [anon_sym_polarsjoin] = ACTIONS(1252), + [anon_sym_polarslast] = ACTIONS(1252), + [anon_sym_polarslen] = ACTIONS(1252), + [anon_sym_polarslit] = ACTIONS(1252), + [anon_sym_polarslowercase] = ACTIONS(1252), + [anon_sym_polarsmax] = ACTIONS(1252), + [anon_sym_polarsmean] = ACTIONS(1252), + [anon_sym_polarsmedian] = ACTIONS(1252), + [anon_sym_polarsmin] = ACTIONS(1252), + [anon_sym_polarsn_DASHunique] = ACTIONS(1252), + [anon_sym_polarsnot] = ACTIONS(1252), + [anon_sym_polarsopen] = ACTIONS(1252), + [anon_sym_polarsotherwise] = ACTIONS(1252), + [anon_sym_polarspivot] = ACTIONS(1252), + [anon_sym_polarsprofile] = ACTIONS(1252), + [anon_sym_polarsquantile] = ACTIONS(1252), + [anon_sym_polarsquery] = ACTIONS(1252), + [anon_sym_polarsrename] = ACTIONS(1252), + [anon_sym_polarsreplace] = ACTIONS(1250), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1252), + [anon_sym_polarsreverse] = ACTIONS(1252), + [anon_sym_polarsrolling] = ACTIONS(1252), + [anon_sym_polarssample] = ACTIONS(1252), + [anon_sym_polarssave] = ACTIONS(1252), + [anon_sym_polarsschema] = ACTIONS(1252), + [anon_sym_polarsselect] = ACTIONS(1252), + [anon_sym_polarsset] = ACTIONS(1250), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1252), + [anon_sym_polarsshape] = ACTIONS(1252), + [anon_sym_polarsshift] = ACTIONS(1252), + [anon_sym_polarsslice] = ACTIONS(1252), + [anon_sym_polarssort_DASHby] = ACTIONS(1252), + [anon_sym_polarsstd] = ACTIONS(1252), + [anon_sym_polarsstore_DASHget] = ACTIONS(1252), + [anon_sym_polarsstore_DASHls] = ACTIONS(1252), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1252), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1252), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1252), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1252), + [anon_sym_polarsstrftime] = ACTIONS(1252), + [anon_sym_polarssum] = ACTIONS(1250), + [anon_sym_polarssummary] = ACTIONS(1252), + [anon_sym_polarstake] = ACTIONS(1252), + [anon_sym_polarsunique] = ACTIONS(1252), + [anon_sym_polarsunnest] = ACTIONS(1252), + [anon_sym_polarsunpivot] = ACTIONS(1252), + [anon_sym_polarsuppercase] = ACTIONS(1252), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1252), + [anon_sym_polarsvar] = ACTIONS(1252), + [anon_sym_polarswhen] = ACTIONS(1252), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1252), + [anon_sym_querydb] = ACTIONS(1252), + [anon_sym_querygit] = ACTIONS(1252), + [anon_sym_queryjson] = ACTIONS(1252), + [anon_sym_queryweb] = ACTIONS(1250), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1252), + [anon_sym_queryxml] = ACTIONS(1252), + [anon_sym_randombinary] = ACTIONS(1252), + [anon_sym_randombool] = ACTIONS(1252), + [anon_sym_randomchars] = ACTIONS(1252), + [anon_sym_randomdice] = ACTIONS(1252), + [anon_sym_randomfloat] = ACTIONS(1252), + [anon_sym_randomint] = ACTIONS(1252), + [anon_sym_randomuuid] = ACTIONS(1252), + [anon_sym_rolldown] = ACTIONS(1252), + [anon_sym_rollleft] = ACTIONS(1252), + [anon_sym_rollright] = ACTIONS(1252), + [anon_sym_rollup] = ACTIONS(1252), + [anon_sym_scopealiases] = ACTIONS(1252), + [anon_sym_scopecommands] = ACTIONS(1252), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1252), + [anon_sym_scopeexterns] = ACTIONS(1252), + [anon_sym_scopemodules] = ACTIONS(1252), + [anon_sym_scopevariables] = ACTIONS(1252), + [anon_sym_seqchar] = ACTIONS(1252), + [anon_sym_seqdate] = ACTIONS(1252), + [anon_sym_skipuntil] = ACTIONS(1252), + [anon_sym_skipwhile] = ACTIONS(1252), + [anon_sym_splitcell_DASHpath] = ACTIONS(1252), + [anon_sym_splitchars] = ACTIONS(1252), + [anon_sym_splitcolumn] = ACTIONS(1252), + [anon_sym_splitlist] = ACTIONS(1252), + [anon_sym_splitrow] = ACTIONS(1252), + [anon_sym_splitwords] = ACTIONS(1252), + [anon_sym_storcreate] = ACTIONS(1252), + [anon_sym_stordelete] = ACTIONS(1252), + [anon_sym_storexport] = ACTIONS(1252), + [anon_sym_storimport] = ACTIONS(1252), + [anon_sym_storinsert] = ACTIONS(1252), + [anon_sym_storopen] = ACTIONS(1252), + [anon_sym_storreset] = ACTIONS(1252), + [anon_sym_storupdate] = ACTIONS(1252), + [anon_sym_strbexpand] = ACTIONS(1252), + [anon_sym_strcamel_DASHcase] = ACTIONS(1252), + [anon_sym_strcapitalize] = ACTIONS(1252), + [anon_sym_strcompress] = ACTIONS(1252), + [anon_sym_strcontains] = ACTIONS(1252), + [anon_sym_strdecompress] = ACTIONS(1252), + [anon_sym_strdedent] = ACTIONS(1252), + [anon_sym_strdeunicode] = ACTIONS(1252), + [anon_sym_strdistance] = ACTIONS(1252), + [anon_sym_strdowncase] = ACTIONS(1252), + [anon_sym_strends_DASHwith] = ACTIONS(1252), + [anon_sym_strexpand] = ACTIONS(1252), + [anon_sym_strindent] = ACTIONS(1252), + [anon_sym_strindex_DASHof] = ACTIONS(1252), + [anon_sym_strjoin] = ACTIONS(1252), + [anon_sym_strkebab_DASHcase] = ACTIONS(1252), + [anon_sym_strlength] = ACTIONS(1252), + [anon_sym_strpascal_DASHcase] = ACTIONS(1252), + [anon_sym_strreplace] = ACTIONS(1252), + [anon_sym_strreverse] = ACTIONS(1252), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strsimilarity] = ACTIONS(1252), + [anon_sym_strsnake_DASHcase] = ACTIONS(1252), + [anon_sym_strstarts_DASHwith] = ACTIONS(1252), + [anon_sym_strstats] = ACTIONS(1252), + [anon_sym_strsubstring] = ACTIONS(1252), + [anon_sym_strtitle_DASHcase] = ACTIONS(1252), + [anon_sym_strtrim] = ACTIONS(1252), + [anon_sym_strupcase] = ACTIONS(1252), + [anon_sym_strwrap] = ACTIONS(1252), + [anon_sym_syscpu] = ACTIONS(1252), + [anon_sym_sysdisks] = ACTIONS(1252), + [anon_sym_syshost] = ACTIONS(1252), + [anon_sym_sysmem] = ACTIONS(1252), + [anon_sym_sysnet] = ACTIONS(1252), + [anon_sym_systemp] = ACTIONS(1252), + [anon_sym_sysusers] = ACTIONS(1252), + [anon_sym_takeuntil] = ACTIONS(1252), + [anon_sym_takewhile] = ACTIONS(1252), + [anon_sym_termquery] = ACTIONS(1252), + [anon_sym_termsize] = ACTIONS(1252), + [anon_sym_tobz2] = ACTIONS(1252), + [anon_sym_tocsv] = ACTIONS(1252), + [anon_sym_togz] = ACTIONS(1252), + [anon_sym_tohtml] = ACTIONS(1252), + [anon_sym_tojson] = ACTIONS(1252), + [anon_sym_tomd] = ACTIONS(1252), + [anon_sym_tomsgpack] = ACTIONS(1250), + [anon_sym_tomsgpackz] = ACTIONS(1252), + [anon_sym_tonuon] = ACTIONS(1252), + [anon_sym_toparquet] = ACTIONS(1252), + [anon_sym_toplist] = ACTIONS(1252), + [anon_sym_topng] = ACTIONS(1252), + [anon_sym_totext] = ACTIONS(1252), + [anon_sym_totoml] = ACTIONS(1252), + [anon_sym_totsv] = ACTIONS(1252), + [anon_sym_toxml] = ACTIONS(1252), + [anon_sym_toxz] = ACTIONS(1252), + [anon_sym_toyaml] = ACTIONS(1252), + [anon_sym_tozst] = ACTIONS(1252), + [anon_sym_updatecells] = ACTIONS(1252), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1252), + [anon_sym_urldecode] = ACTIONS(1252), + [anon_sym_urlencode] = ACTIONS(1252), + [anon_sym_urljoin] = ACTIONS(1252), + [anon_sym_urlparse] = ACTIONS(1252), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1252), + [anon_sym_viewfiles] = ACTIONS(1252), + [anon_sym_viewir] = ACTIONS(1252), + [anon_sym_viewsource] = ACTIONS(1252), + [anon_sym_viewspan] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1252), }, - [456] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(623), - [sym_comment] = STATE(456), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1881), - [aux_sym_cmd_identifier_token3] = ACTIONS(1881), - [aux_sym_cmd_identifier_token4] = ACTIONS(1881), - [aux_sym_cmd_identifier_token5] = ACTIONS(1881), - [aux_sym_cmd_identifier_token6] = ACTIONS(1881), - [aux_sym_cmd_identifier_token7] = ACTIONS(1881), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1881), - [aux_sym_cmd_identifier_token11] = ACTIONS(1881), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1881), - [aux_sym_cmd_identifier_token17] = ACTIONS(1881), - [aux_sym_cmd_identifier_token18] = ACTIONS(1881), - [aux_sym_cmd_identifier_token19] = ACTIONS(1881), - [aux_sym_cmd_identifier_token20] = ACTIONS(1881), - [aux_sym_cmd_identifier_token21] = ACTIONS(1881), - [aux_sym_cmd_identifier_token22] = ACTIONS(1881), - [aux_sym_cmd_identifier_token23] = ACTIONS(1881), - [aux_sym_cmd_identifier_token24] = ACTIONS(1881), - [aux_sym_cmd_identifier_token25] = ACTIONS(1881), - [aux_sym_cmd_identifier_token26] = ACTIONS(1881), - [aux_sym_cmd_identifier_token27] = ACTIONS(1881), - [aux_sym_cmd_identifier_token28] = ACTIONS(1881), - [aux_sym_cmd_identifier_token29] = ACTIONS(1881), - [aux_sym_cmd_identifier_token30] = ACTIONS(1881), - [aux_sym_cmd_identifier_token31] = ACTIONS(1881), - [aux_sym_cmd_identifier_token32] = ACTIONS(1881), - [aux_sym_cmd_identifier_token33] = ACTIONS(1881), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1881), - [aux_sym_cmd_identifier_token36] = ACTIONS(1881), - [aux_sym_cmd_identifier_token37] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in2] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1879), - [aux_sym__val_number_token5] = ACTIONS(1879), - [aux_sym__val_number_token6] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1881), + [281] = { + [sym_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(1329), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_alias] = ACTIONS(1331), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_let_DASHenv] = ACTIONS(1331), + [anon_sym_mut] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [aux_sym_cmd_identifier_token1] = ACTIONS(1331), + [aux_sym_cmd_identifier_token2] = ACTIONS(1329), + [aux_sym_cmd_identifier_token3] = ACTIONS(1329), + [aux_sym_cmd_identifier_token4] = ACTIONS(1329), + [aux_sym_cmd_identifier_token5] = ACTIONS(1329), + [aux_sym_cmd_identifier_token6] = ACTIONS(1329), + [aux_sym_cmd_identifier_token7] = ACTIONS(1329), + [aux_sym_cmd_identifier_token8] = ACTIONS(1331), + [aux_sym_cmd_identifier_token9] = ACTIONS(1331), + [aux_sym_cmd_identifier_token10] = ACTIONS(1329), + [aux_sym_cmd_identifier_token11] = ACTIONS(1329), + [aux_sym_cmd_identifier_token12] = ACTIONS(1331), + [aux_sym_cmd_identifier_token13] = ACTIONS(1331), + [aux_sym_cmd_identifier_token14] = ACTIONS(1331), + [aux_sym_cmd_identifier_token15] = ACTIONS(1331), + [aux_sym_cmd_identifier_token16] = ACTIONS(1329), + [aux_sym_cmd_identifier_token17] = ACTIONS(1329), + [aux_sym_cmd_identifier_token18] = ACTIONS(1331), + [aux_sym_cmd_identifier_token19] = ACTIONS(1329), + [aux_sym_cmd_identifier_token20] = ACTIONS(1329), + [aux_sym_cmd_identifier_token21] = ACTIONS(1329), + [aux_sym_cmd_identifier_token22] = ACTIONS(1329), + [aux_sym_cmd_identifier_token23] = ACTIONS(1329), + [aux_sym_cmd_identifier_token24] = ACTIONS(1329), + [aux_sym_cmd_identifier_token25] = ACTIONS(1329), + [aux_sym_cmd_identifier_token26] = ACTIONS(1329), + [aux_sym_cmd_identifier_token27] = ACTIONS(1329), + [aux_sym_cmd_identifier_token28] = ACTIONS(1329), + [aux_sym_cmd_identifier_token29] = ACTIONS(1329), + [aux_sym_cmd_identifier_token30] = ACTIONS(1329), + [aux_sym_cmd_identifier_token31] = ACTIONS(1329), + [aux_sym_cmd_identifier_token32] = ACTIONS(1331), + [aux_sym_cmd_identifier_token33] = ACTIONS(1329), + [aux_sym_cmd_identifier_token34] = ACTIONS(1331), + [aux_sym_cmd_identifier_token35] = ACTIONS(1329), + [aux_sym_cmd_identifier_token36] = ACTIONS(1329), + [aux_sym_cmd_identifier_token37] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1329), + [aux_sym_cmd_identifier_token40] = ACTIONS(1329), + [sym__newline] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_def] = ACTIONS(1331), + [anon_sym_export_DASHenv] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_use] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_error] = ACTIONS(1331), + [anon_sym_DASH2] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_loop] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_source] = ACTIONS(1331), + [anon_sym_source_DASHenv] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_hide] = ACTIONS(1331), + [anon_sym_hide_DASHenv] = ACTIONS(1331), + [anon_sym_overlay] = ACTIONS(1331), + [anon_sym_where] = ACTIONS(1329), + [aux_sym_expr_unary_token1] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_DOT_DOT_LT] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym__val_number_decimal_token1] = ACTIONS(1331), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1329), + [aux_sym__val_number_decimal_token4] = ACTIONS(1329), + [aux_sym__val_number_token1] = ACTIONS(1329), + [aux_sym__val_number_token2] = ACTIONS(1329), + [aux_sym__val_number_token3] = ACTIONS(1329), + [aux_sym__val_number_token4] = ACTIONS(1331), + [aux_sym__val_number_token5] = ACTIONS(1331), + [aux_sym__val_number_token6] = ACTIONS(1331), + [anon_sym_0b] = ACTIONS(1331), + [anon_sym_0o] = ACTIONS(1331), + [anon_sym_0x] = ACTIONS(1331), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym__str_single_quotes] = ACTIONS(1329), + [sym__str_back_ticks] = ACTIONS(1329), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1329), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1329), + [aux_sym_env_var_token1] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_ansigradient] = ACTIONS(1329), + [anon_sym_ansilink] = ACTIONS(1329), + [anon_sym_ansistrip] = ACTIONS(1329), + [anon_sym_bitsand] = ACTIONS(1329), + [anon_sym_bitsnot] = ACTIONS(1329), + [anon_sym_bitsor] = ACTIONS(1329), + [anon_sym_bitsrol] = ACTIONS(1329), + [anon_sym_bitsror] = ACTIONS(1329), + [anon_sym_bitsshl] = ACTIONS(1329), + [anon_sym_bitsshr] = ACTIONS(1329), + [anon_sym_bitsxor] = ACTIONS(1329), + [anon_sym_bytesadd] = ACTIONS(1329), + [anon_sym_bytesat] = ACTIONS(1329), + [anon_sym_bytesbuild] = ACTIONS(1329), + [anon_sym_bytescollect] = ACTIONS(1329), + [anon_sym_bytesends_DASHwith] = ACTIONS(1329), + [anon_sym_bytesindex_DASHof] = ACTIONS(1329), + [anon_sym_byteslength] = ACTIONS(1329), + [anon_sym_bytesremove] = ACTIONS(1329), + [anon_sym_bytesreplace] = ACTIONS(1329), + [anon_sym_bytesreverse] = ACTIONS(1329), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1329), + [anon_sym_commandlineedit] = ACTIONS(1329), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1329), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1329), + [anon_sym_configenv] = ACTIONS(1329), + [anon_sym_confignu] = ACTIONS(1329), + [anon_sym_configreset] = ACTIONS(1329), + [anon_sym_dateformat] = ACTIONS(1329), + [anon_sym_datehumanize] = ACTIONS(1329), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1329), + [anon_sym_datenow] = ACTIONS(1329), + [anon_sym_dateto_DASHrecord] = ACTIONS(1329), + [anon_sym_dateto_DASHtable] = ACTIONS(1329), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1329), + [anon_sym_debuginfo] = ACTIONS(1329), + [anon_sym_debugprofile] = ACTIONS(1329), + [anon_sym_decodebase32] = ACTIONS(1331), + [anon_sym_decodebase32hex] = ACTIONS(1329), + [anon_sym_decodebase64] = ACTIONS(1329), + [anon_sym_decodehex] = ACTIONS(1329), + [anon_sym_detectcolumns] = ACTIONS(1329), + [anon_sym_dropcolumn] = ACTIONS(1329), + [anon_sym_dropnth] = ACTIONS(1329), + [anon_sym_dtadd] = ACTIONS(1329), + [anon_sym_dtdiff] = ACTIONS(1329), + [anon_sym_dtformat] = ACTIONS(1329), + [anon_sym_dtnow] = ACTIONS(1329), + [anon_sym_dtpart] = ACTIONS(1329), + [anon_sym_dtto] = ACTIONS(1329), + [anon_sym_dtutcnow] = ACTIONS(1329), + [anon_sym_eachwhile] = ACTIONS(1329), + [anon_sym_encodebase32] = ACTIONS(1331), + [anon_sym_encodebase32hex] = ACTIONS(1329), + [anon_sym_encodebase64] = ACTIONS(1329), + [anon_sym_encodehex] = ACTIONS(1329), + [anon_sym_errormake] = ACTIONS(1329), + [anon_sym_exploreir] = ACTIONS(1329), + [anon_sym_formatdate] = ACTIONS(1329), + [anon_sym_formatduration] = ACTIONS(1329), + [anon_sym_formatfilesize] = ACTIONS(1329), + [anon_sym_formatpattern] = ACTIONS(1329), + [anon_sym_frombz2] = ACTIONS(1329), + [anon_sym_fromcsv] = ACTIONS(1329), + [anon_sym_fromeml] = ACTIONS(1329), + [anon_sym_fromgz] = ACTIONS(1329), + [anon_sym_fromics] = ACTIONS(1329), + [anon_sym_fromini] = ACTIONS(1329), + [anon_sym_fromjson] = ACTIONS(1329), + [anon_sym_frommsgpack] = ACTIONS(1331), + [anon_sym_frommsgpackz] = ACTIONS(1329), + [anon_sym_fromnuon] = ACTIONS(1329), + [anon_sym_fromods] = ACTIONS(1329), + [anon_sym_fromparquet] = ACTIONS(1329), + [anon_sym_fromplist] = ACTIONS(1329), + [anon_sym_frompng] = ACTIONS(1329), + [anon_sym_fromssv] = ACTIONS(1329), + [anon_sym_fromtoml] = ACTIONS(1329), + [anon_sym_fromtsv] = ACTIONS(1329), + [anon_sym_fromurl] = ACTIONS(1329), + [anon_sym_fromvcf] = ACTIONS(1329), + [anon_sym_fromxlsx] = ACTIONS(1329), + [anon_sym_fromxml] = ACTIONS(1329), + [anon_sym_fromxz] = ACTIONS(1329), + [anon_sym_fromyaml] = ACTIONS(1329), + [anon_sym_fromyml] = ACTIONS(1329), + [anon_sym_fromzst] = ACTIONS(1329), + [anon_sym_hashmd5] = ACTIONS(1329), + [anon_sym_hashsha256] = ACTIONS(1329), + [anon_sym_helpaliases] = ACTIONS(1329), + [anon_sym_helpcommands] = ACTIONS(1329), + [anon_sym_helpescapes] = ACTIONS(1329), + [anon_sym_helpexterns] = ACTIONS(1329), + [anon_sym_helpmodules] = ACTIONS(1329), + [anon_sym_helpoperators] = ACTIONS(1329), + [anon_sym_historyimport] = ACTIONS(1329), + [anon_sym_historysession] = ACTIONS(1329), + [anon_sym_httpdelete] = ACTIONS(1329), + [anon_sym_httpget] = ACTIONS(1329), + [anon_sym_httphead] = ACTIONS(1329), + [anon_sym_httpoptions] = ACTIONS(1329), + [anon_sym_httppatch] = ACTIONS(1329), + [anon_sym_httppost] = ACTIONS(1329), + [anon_sym_httpput] = ACTIONS(1329), + [anon_sym_inputlist] = ACTIONS(1331), + [anon_sym_inputlisten] = ACTIONS(1329), + [anon_sym_intobinary] = ACTIONS(1329), + [anon_sym_intobits] = ACTIONS(1329), + [anon_sym_intobool] = ACTIONS(1329), + [anon_sym_intocell_DASHpath] = ACTIONS(1329), + [anon_sym_intodatetime] = ACTIONS(1329), + [anon_sym_intoduration] = ACTIONS(1329), + [anon_sym_intofilesize] = ACTIONS(1329), + [anon_sym_intofloat] = ACTIONS(1329), + [anon_sym_intoglob] = ACTIONS(1329), + [anon_sym_intoint] = ACTIONS(1329), + [anon_sym_intorecord] = ACTIONS(1329), + [anon_sym_intosqlite] = ACTIONS(1329), + [anon_sym_intostring] = ACTIONS(1329), + [anon_sym_intovalue] = ACTIONS(1329), + [anon_sym_jsonpath] = ACTIONS(1329), + [anon_sym_keybindingsdefault] = ACTIONS(1329), + [anon_sym_keybindingslist] = ACTIONS(1331), + [anon_sym_keybindingslisten] = ACTIONS(1329), + [anon_sym_mathabs] = ACTIONS(1329), + [anon_sym_matharccos] = ACTIONS(1331), + [anon_sym_matharccosh] = ACTIONS(1329), + [anon_sym_matharcsin] = ACTIONS(1331), + [anon_sym_matharcsinh] = ACTIONS(1329), + [anon_sym_matharctan] = ACTIONS(1331), + [anon_sym_matharctanh] = ACTIONS(1329), + [anon_sym_mathavg] = ACTIONS(1329), + [anon_sym_mathceil] = ACTIONS(1329), + [anon_sym_mathcos] = ACTIONS(1331), + [anon_sym_mathcosh] = ACTIONS(1329), + [anon_sym_mathexp] = ACTIONS(1329), + [anon_sym_mathfloor] = ACTIONS(1329), + [anon_sym_mathln] = ACTIONS(1329), + [anon_sym_mathlog] = ACTIONS(1329), + [anon_sym_mathmax] = ACTIONS(1329), + [anon_sym_mathmedian] = ACTIONS(1329), + [anon_sym_mathmin] = ACTIONS(1329), + [anon_sym_mathmode] = ACTIONS(1329), + [anon_sym_mathproduct] = ACTIONS(1329), + [anon_sym_mathround] = ACTIONS(1329), + [anon_sym_mathsin] = ACTIONS(1331), + [anon_sym_mathsinh] = ACTIONS(1329), + [anon_sym_mathsqrt] = ACTIONS(1329), + [anon_sym_mathstddev] = ACTIONS(1329), + [anon_sym_mathsum] = ACTIONS(1329), + [anon_sym_mathtan] = ACTIONS(1331), + [anon_sym_mathtanh] = ACTIONS(1329), + [anon_sym_mathvariance] = ACTIONS(1329), + [anon_sym_metadataaccess] = ACTIONS(1329), + [anon_sym_metadataset] = ACTIONS(1329), + [anon_sym_pathbasename] = ACTIONS(1329), + [anon_sym_pathdirname] = ACTIONS(1329), + [anon_sym_pathexists] = ACTIONS(1329), + [anon_sym_pathexpand] = ACTIONS(1329), + [anon_sym_pathjoin] = ACTIONS(1329), + [anon_sym_pathparse] = ACTIONS(1329), + [anon_sym_pathrelative_DASHto] = ACTIONS(1329), + [anon_sym_pathsplit] = ACTIONS(1329), + [anon_sym_pathtype] = ACTIONS(1329), + [anon_sym_pluginadd] = ACTIONS(1329), + [anon_sym_pluginlist] = ACTIONS(1329), + [anon_sym_pluginrm] = ACTIONS(1329), + [anon_sym_pluginstop] = ACTIONS(1329), + [anon_sym_polarsagg] = ACTIONS(1331), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1329), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1329), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1329), + [anon_sym_polarsappend] = ACTIONS(1329), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1329), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1329), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1329), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1329), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1329), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1329), + [anon_sym_polarsas] = ACTIONS(1331), + [anon_sym_polarsas_DASHdate] = ACTIONS(1331), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1329), + [anon_sym_polarscache] = ACTIONS(1329), + [anon_sym_polarscast] = ACTIONS(1329), + [anon_sym_polarscol] = ACTIONS(1331), + [anon_sym_polarscollect] = ACTIONS(1329), + [anon_sym_polarscolumns] = ACTIONS(1329), + [anon_sym_polarsconcat] = ACTIONS(1331), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1329), + [anon_sym_polarscontains] = ACTIONS(1329), + [anon_sym_polarscount] = ACTIONS(1331), + [anon_sym_polarscount_DASHnull] = ACTIONS(1329), + [anon_sym_polarscumulative] = ACTIONS(1329), + [anon_sym_polarsdatepart] = ACTIONS(1329), + [anon_sym_polarsdecimal] = ACTIONS(1329), + [anon_sym_polarsdrop] = ACTIONS(1331), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1329), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1329), + [anon_sym_polarsdummies] = ACTIONS(1329), + [anon_sym_polarsexplode] = ACTIONS(1329), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1329), + [anon_sym_polarsfetch] = ACTIONS(1329), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1329), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1329), + [anon_sym_polarsfilter] = ACTIONS(1331), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1329), + [anon_sym_polarsfirst] = ACTIONS(1329), + [anon_sym_polarsflatten] = ACTIONS(1329), + [anon_sym_polarsget] = ACTIONS(1331), + [anon_sym_polarsget_DASHday] = ACTIONS(1329), + [anon_sym_polarsget_DASHhour] = ACTIONS(1329), + [anon_sym_polarsget_DASHminute] = ACTIONS(1329), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1329), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1329), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1329), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1329), + [anon_sym_polarsget_DASHweek] = ACTIONS(1331), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1329), + [anon_sym_polarsget_DASHyear] = ACTIONS(1329), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1329), + [anon_sym_polarsimplode] = ACTIONS(1329), + [anon_sym_polarsinteger] = ACTIONS(1329), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1329), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1329), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1329), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1329), + [anon_sym_polarsis_DASHin] = ACTIONS(1329), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1329), + [anon_sym_polarsis_DASHnull] = ACTIONS(1329), + [anon_sym_polarsis_DASHunique] = ACTIONS(1329), + [anon_sym_polarsjoin] = ACTIONS(1329), + [anon_sym_polarslast] = ACTIONS(1329), + [anon_sym_polarslen] = ACTIONS(1329), + [anon_sym_polarslit] = ACTIONS(1329), + [anon_sym_polarslowercase] = ACTIONS(1329), + [anon_sym_polarsmax] = ACTIONS(1329), + [anon_sym_polarsmean] = ACTIONS(1329), + [anon_sym_polarsmedian] = ACTIONS(1329), + [anon_sym_polarsmin] = ACTIONS(1329), + [anon_sym_polarsn_DASHunique] = ACTIONS(1329), + [anon_sym_polarsnot] = ACTIONS(1329), + [anon_sym_polarsopen] = ACTIONS(1329), + [anon_sym_polarsotherwise] = ACTIONS(1329), + [anon_sym_polarspivot] = ACTIONS(1329), + [anon_sym_polarsprofile] = ACTIONS(1329), + [anon_sym_polarsquantile] = ACTIONS(1329), + [anon_sym_polarsquery] = ACTIONS(1329), + [anon_sym_polarsrename] = ACTIONS(1329), + [anon_sym_polarsreplace] = ACTIONS(1331), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1329), + [anon_sym_polarsreverse] = ACTIONS(1329), + [anon_sym_polarsrolling] = ACTIONS(1329), + [anon_sym_polarssample] = ACTIONS(1329), + [anon_sym_polarssave] = ACTIONS(1329), + [anon_sym_polarsschema] = ACTIONS(1329), + [anon_sym_polarsselect] = ACTIONS(1329), + [anon_sym_polarsset] = ACTIONS(1331), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1329), + [anon_sym_polarsshape] = ACTIONS(1329), + [anon_sym_polarsshift] = ACTIONS(1329), + [anon_sym_polarsslice] = ACTIONS(1329), + [anon_sym_polarssort_DASHby] = ACTIONS(1329), + [anon_sym_polarsstd] = ACTIONS(1329), + [anon_sym_polarsstore_DASHget] = ACTIONS(1329), + [anon_sym_polarsstore_DASHls] = ACTIONS(1329), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1329), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1329), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1329), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1329), + [anon_sym_polarsstrftime] = ACTIONS(1329), + [anon_sym_polarssum] = ACTIONS(1331), + [anon_sym_polarssummary] = ACTIONS(1329), + [anon_sym_polarstake] = ACTIONS(1329), + [anon_sym_polarsunique] = ACTIONS(1329), + [anon_sym_polarsunnest] = ACTIONS(1329), + [anon_sym_polarsunpivot] = ACTIONS(1329), + [anon_sym_polarsuppercase] = ACTIONS(1329), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1329), + [anon_sym_polarsvar] = ACTIONS(1329), + [anon_sym_polarswhen] = ACTIONS(1329), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1329), + [anon_sym_querydb] = ACTIONS(1329), + [anon_sym_querygit] = ACTIONS(1329), + [anon_sym_queryjson] = ACTIONS(1329), + [anon_sym_queryweb] = ACTIONS(1331), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1329), + [anon_sym_queryxml] = ACTIONS(1329), + [anon_sym_randombinary] = ACTIONS(1329), + [anon_sym_randombool] = ACTIONS(1329), + [anon_sym_randomchars] = ACTIONS(1329), + [anon_sym_randomdice] = ACTIONS(1329), + [anon_sym_randomfloat] = ACTIONS(1329), + [anon_sym_randomint] = ACTIONS(1329), + [anon_sym_randomuuid] = ACTIONS(1329), + [anon_sym_rolldown] = ACTIONS(1329), + [anon_sym_rollleft] = ACTIONS(1329), + [anon_sym_rollright] = ACTIONS(1329), + [anon_sym_rollup] = ACTIONS(1329), + [anon_sym_scopealiases] = ACTIONS(1329), + [anon_sym_scopecommands] = ACTIONS(1329), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1329), + [anon_sym_scopeexterns] = ACTIONS(1329), + [anon_sym_scopemodules] = ACTIONS(1329), + [anon_sym_scopevariables] = ACTIONS(1329), + [anon_sym_seqchar] = ACTIONS(1329), + [anon_sym_seqdate] = ACTIONS(1329), + [anon_sym_skipuntil] = ACTIONS(1329), + [anon_sym_skipwhile] = ACTIONS(1329), + [anon_sym_splitcell_DASHpath] = ACTIONS(1329), + [anon_sym_splitchars] = ACTIONS(1329), + [anon_sym_splitcolumn] = ACTIONS(1329), + [anon_sym_splitlist] = ACTIONS(1329), + [anon_sym_splitrow] = ACTIONS(1329), + [anon_sym_splitwords] = ACTIONS(1329), + [anon_sym_storcreate] = ACTIONS(1329), + [anon_sym_stordelete] = ACTIONS(1329), + [anon_sym_storexport] = ACTIONS(1329), + [anon_sym_storimport] = ACTIONS(1329), + [anon_sym_storinsert] = ACTIONS(1329), + [anon_sym_storopen] = ACTIONS(1329), + [anon_sym_storreset] = ACTIONS(1329), + [anon_sym_storupdate] = ACTIONS(1329), + [anon_sym_strbexpand] = ACTIONS(1329), + [anon_sym_strcamel_DASHcase] = ACTIONS(1329), + [anon_sym_strcapitalize] = ACTIONS(1329), + [anon_sym_strcompress] = ACTIONS(1329), + [anon_sym_strcontains] = ACTIONS(1329), + [anon_sym_strdecompress] = ACTIONS(1329), + [anon_sym_strdedent] = ACTIONS(1329), + [anon_sym_strdeunicode] = ACTIONS(1329), + [anon_sym_strdistance] = ACTIONS(1329), + [anon_sym_strdowncase] = ACTIONS(1329), + [anon_sym_strends_DASHwith] = ACTIONS(1329), + [anon_sym_strexpand] = ACTIONS(1329), + [anon_sym_strindent] = ACTIONS(1329), + [anon_sym_strindex_DASHof] = ACTIONS(1329), + [anon_sym_strjoin] = ACTIONS(1329), + [anon_sym_strkebab_DASHcase] = ACTIONS(1329), + [anon_sym_strlength] = ACTIONS(1329), + [anon_sym_strpascal_DASHcase] = ACTIONS(1329), + [anon_sym_strreplace] = ACTIONS(1329), + [anon_sym_strreverse] = ACTIONS(1329), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1329), + [anon_sym_strsimilarity] = ACTIONS(1329), + [anon_sym_strsnake_DASHcase] = ACTIONS(1329), + [anon_sym_strstarts_DASHwith] = ACTIONS(1329), + [anon_sym_strstats] = ACTIONS(1329), + [anon_sym_strsubstring] = ACTIONS(1329), + [anon_sym_strtitle_DASHcase] = ACTIONS(1329), + [anon_sym_strtrim] = ACTIONS(1329), + [anon_sym_strupcase] = ACTIONS(1329), + [anon_sym_strwrap] = ACTIONS(1329), + [anon_sym_syscpu] = ACTIONS(1329), + [anon_sym_sysdisks] = ACTIONS(1329), + [anon_sym_syshost] = ACTIONS(1329), + [anon_sym_sysmem] = ACTIONS(1329), + [anon_sym_sysnet] = ACTIONS(1329), + [anon_sym_systemp] = ACTIONS(1329), + [anon_sym_sysusers] = ACTIONS(1329), + [anon_sym_takeuntil] = ACTIONS(1329), + [anon_sym_takewhile] = ACTIONS(1329), + [anon_sym_termquery] = ACTIONS(1329), + [anon_sym_termsize] = ACTIONS(1329), + [anon_sym_tobz2] = ACTIONS(1329), + [anon_sym_tocsv] = ACTIONS(1329), + [anon_sym_togz] = ACTIONS(1329), + [anon_sym_tohtml] = ACTIONS(1329), + [anon_sym_tojson] = ACTIONS(1329), + [anon_sym_tomd] = ACTIONS(1329), + [anon_sym_tomsgpack] = ACTIONS(1331), + [anon_sym_tomsgpackz] = ACTIONS(1329), + [anon_sym_tonuon] = ACTIONS(1329), + [anon_sym_toparquet] = ACTIONS(1329), + [anon_sym_toplist] = ACTIONS(1329), + [anon_sym_topng] = ACTIONS(1329), + [anon_sym_totext] = ACTIONS(1329), + [anon_sym_totoml] = ACTIONS(1329), + [anon_sym_totsv] = ACTIONS(1329), + [anon_sym_toxml] = ACTIONS(1329), + [anon_sym_toxz] = ACTIONS(1329), + [anon_sym_toyaml] = ACTIONS(1329), + [anon_sym_tozst] = ACTIONS(1329), + [anon_sym_updatecells] = ACTIONS(1329), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1329), + [anon_sym_urldecode] = ACTIONS(1329), + [anon_sym_urlencode] = ACTIONS(1329), + [anon_sym_urljoin] = ACTIONS(1329), + [anon_sym_urlparse] = ACTIONS(1329), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1329), + [anon_sym_viewfiles] = ACTIONS(1329), + [anon_sym_viewir] = ACTIONS(1329), + [anon_sym_viewsource] = ACTIONS(1329), + [anon_sym_viewspan] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1329), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [282] = { + [sym_comment] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(1333), + [anon_sym_export] = ACTIONS(1335), + [anon_sym_alias] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_let_DASHenv] = ACTIONS(1335), + [anon_sym_mut] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [aux_sym_cmd_identifier_token1] = ACTIONS(1335), + [aux_sym_cmd_identifier_token2] = ACTIONS(1333), + [aux_sym_cmd_identifier_token3] = ACTIONS(1333), + [aux_sym_cmd_identifier_token4] = ACTIONS(1333), + [aux_sym_cmd_identifier_token5] = ACTIONS(1333), + [aux_sym_cmd_identifier_token6] = ACTIONS(1333), + [aux_sym_cmd_identifier_token7] = ACTIONS(1333), + [aux_sym_cmd_identifier_token8] = ACTIONS(1335), + [aux_sym_cmd_identifier_token9] = ACTIONS(1335), + [aux_sym_cmd_identifier_token10] = ACTIONS(1333), + [aux_sym_cmd_identifier_token11] = ACTIONS(1333), + [aux_sym_cmd_identifier_token12] = ACTIONS(1335), + [aux_sym_cmd_identifier_token13] = ACTIONS(1335), + [aux_sym_cmd_identifier_token14] = ACTIONS(1335), + [aux_sym_cmd_identifier_token15] = ACTIONS(1335), + [aux_sym_cmd_identifier_token16] = ACTIONS(1333), + [aux_sym_cmd_identifier_token17] = ACTIONS(1333), + [aux_sym_cmd_identifier_token18] = ACTIONS(1335), + [aux_sym_cmd_identifier_token19] = ACTIONS(1333), + [aux_sym_cmd_identifier_token20] = ACTIONS(1333), + [aux_sym_cmd_identifier_token21] = ACTIONS(1333), + [aux_sym_cmd_identifier_token22] = ACTIONS(1333), + [aux_sym_cmd_identifier_token23] = ACTIONS(1333), + [aux_sym_cmd_identifier_token24] = ACTIONS(1333), + [aux_sym_cmd_identifier_token25] = ACTIONS(1333), + [aux_sym_cmd_identifier_token26] = ACTIONS(1333), + [aux_sym_cmd_identifier_token27] = ACTIONS(1333), + [aux_sym_cmd_identifier_token28] = ACTIONS(1333), + [aux_sym_cmd_identifier_token29] = ACTIONS(1333), + [aux_sym_cmd_identifier_token30] = ACTIONS(1333), + [aux_sym_cmd_identifier_token31] = ACTIONS(1333), + [aux_sym_cmd_identifier_token32] = ACTIONS(1335), + [aux_sym_cmd_identifier_token33] = ACTIONS(1333), + [aux_sym_cmd_identifier_token34] = ACTIONS(1335), + [aux_sym_cmd_identifier_token35] = ACTIONS(1333), + [aux_sym_cmd_identifier_token36] = ACTIONS(1333), + [aux_sym_cmd_identifier_token37] = ACTIONS(1333), + [aux_sym_cmd_identifier_token38] = ACTIONS(1335), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1335), + [anon_sym_export_DASHenv] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_module] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_DOLLAR] = ACTIONS(1335), + [anon_sym_error] = ACTIONS(1335), + [anon_sym_DASH2] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_loop] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_source] = ACTIONS(1335), + [anon_sym_source_DASHenv] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_hide] = ACTIONS(1335), + [anon_sym_hide_DASHenv] = ACTIONS(1335), + [anon_sym_overlay] = ACTIONS(1335), + [anon_sym_where] = ACTIONS(1333), + [aux_sym_expr_unary_token1] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_DOT_DOT_LT] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1335), + [aux_sym__val_number_decimal_token2] = ACTIONS(1333), + [aux_sym__val_number_decimal_token3] = ACTIONS(1333), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(1333), + [aux_sym__val_number_token2] = ACTIONS(1333), + [aux_sym__val_number_token3] = ACTIONS(1333), + [aux_sym__val_number_token4] = ACTIONS(1335), + [aux_sym__val_number_token5] = ACTIONS(1335), + [aux_sym__val_number_token6] = ACTIONS(1335), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym__str_single_quotes] = ACTIONS(1333), + [sym__str_back_ticks] = ACTIONS(1333), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1333), + [aux_sym_env_var_token1] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_ansigradient] = ACTIONS(1333), + [anon_sym_ansilink] = ACTIONS(1333), + [anon_sym_ansistrip] = ACTIONS(1333), + [anon_sym_bitsand] = ACTIONS(1333), + [anon_sym_bitsnot] = ACTIONS(1333), + [anon_sym_bitsor] = ACTIONS(1333), + [anon_sym_bitsrol] = ACTIONS(1333), + [anon_sym_bitsror] = ACTIONS(1333), + [anon_sym_bitsshl] = ACTIONS(1333), + [anon_sym_bitsshr] = ACTIONS(1333), + [anon_sym_bitsxor] = ACTIONS(1333), + [anon_sym_bytesadd] = ACTIONS(1333), + [anon_sym_bytesat] = ACTIONS(1333), + [anon_sym_bytesbuild] = ACTIONS(1333), + [anon_sym_bytescollect] = ACTIONS(1333), + [anon_sym_bytesends_DASHwith] = ACTIONS(1333), + [anon_sym_bytesindex_DASHof] = ACTIONS(1333), + [anon_sym_byteslength] = ACTIONS(1333), + [anon_sym_bytesremove] = ACTIONS(1333), + [anon_sym_bytesreplace] = ACTIONS(1333), + [anon_sym_bytesreverse] = ACTIONS(1333), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1333), + [anon_sym_commandlineedit] = ACTIONS(1333), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1333), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1333), + [anon_sym_configenv] = ACTIONS(1333), + [anon_sym_confignu] = ACTIONS(1333), + [anon_sym_configreset] = ACTIONS(1333), + [anon_sym_dateformat] = ACTIONS(1333), + [anon_sym_datehumanize] = ACTIONS(1333), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1333), + [anon_sym_datenow] = ACTIONS(1333), + [anon_sym_dateto_DASHrecord] = ACTIONS(1333), + [anon_sym_dateto_DASHtable] = ACTIONS(1333), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1333), + [anon_sym_debuginfo] = ACTIONS(1333), + [anon_sym_debugprofile] = ACTIONS(1333), + [anon_sym_decodebase32] = ACTIONS(1335), + [anon_sym_decodebase32hex] = ACTIONS(1333), + [anon_sym_decodebase64] = ACTIONS(1333), + [anon_sym_decodehex] = ACTIONS(1333), + [anon_sym_detectcolumns] = ACTIONS(1333), + [anon_sym_dropcolumn] = ACTIONS(1333), + [anon_sym_dropnth] = ACTIONS(1333), + [anon_sym_dtadd] = ACTIONS(1333), + [anon_sym_dtdiff] = ACTIONS(1333), + [anon_sym_dtformat] = ACTIONS(1333), + [anon_sym_dtnow] = ACTIONS(1333), + [anon_sym_dtpart] = ACTIONS(1333), + [anon_sym_dtto] = ACTIONS(1333), + [anon_sym_dtutcnow] = ACTIONS(1333), + [anon_sym_eachwhile] = ACTIONS(1333), + [anon_sym_encodebase32] = ACTIONS(1335), + [anon_sym_encodebase32hex] = ACTIONS(1333), + [anon_sym_encodebase64] = ACTIONS(1333), + [anon_sym_encodehex] = ACTIONS(1333), + [anon_sym_errormake] = ACTIONS(1333), + [anon_sym_exploreir] = ACTIONS(1333), + [anon_sym_formatdate] = ACTIONS(1333), + [anon_sym_formatduration] = ACTIONS(1333), + [anon_sym_formatfilesize] = ACTIONS(1333), + [anon_sym_formatpattern] = ACTIONS(1333), + [anon_sym_frombz2] = ACTIONS(1333), + [anon_sym_fromcsv] = ACTIONS(1333), + [anon_sym_fromeml] = ACTIONS(1333), + [anon_sym_fromgz] = ACTIONS(1333), + [anon_sym_fromics] = ACTIONS(1333), + [anon_sym_fromini] = ACTIONS(1333), + [anon_sym_fromjson] = ACTIONS(1333), + [anon_sym_frommsgpack] = ACTIONS(1335), + [anon_sym_frommsgpackz] = ACTIONS(1333), + [anon_sym_fromnuon] = ACTIONS(1333), + [anon_sym_fromods] = ACTIONS(1333), + [anon_sym_fromparquet] = ACTIONS(1333), + [anon_sym_fromplist] = ACTIONS(1333), + [anon_sym_frompng] = ACTIONS(1333), + [anon_sym_fromssv] = ACTIONS(1333), + [anon_sym_fromtoml] = ACTIONS(1333), + [anon_sym_fromtsv] = ACTIONS(1333), + [anon_sym_fromurl] = ACTIONS(1333), + [anon_sym_fromvcf] = ACTIONS(1333), + [anon_sym_fromxlsx] = ACTIONS(1333), + [anon_sym_fromxml] = ACTIONS(1333), + [anon_sym_fromxz] = ACTIONS(1333), + [anon_sym_fromyaml] = ACTIONS(1333), + [anon_sym_fromyml] = ACTIONS(1333), + [anon_sym_fromzst] = ACTIONS(1333), + [anon_sym_hashmd5] = ACTIONS(1333), + [anon_sym_hashsha256] = ACTIONS(1333), + [anon_sym_helpaliases] = ACTIONS(1333), + [anon_sym_helpcommands] = ACTIONS(1333), + [anon_sym_helpescapes] = ACTIONS(1333), + [anon_sym_helpexterns] = ACTIONS(1333), + [anon_sym_helpmodules] = ACTIONS(1333), + [anon_sym_helpoperators] = ACTIONS(1333), + [anon_sym_historyimport] = ACTIONS(1333), + [anon_sym_historysession] = ACTIONS(1333), + [anon_sym_httpdelete] = ACTIONS(1333), + [anon_sym_httpget] = ACTIONS(1333), + [anon_sym_httphead] = ACTIONS(1333), + [anon_sym_httpoptions] = ACTIONS(1333), + [anon_sym_httppatch] = ACTIONS(1333), + [anon_sym_httppost] = ACTIONS(1333), + [anon_sym_httpput] = ACTIONS(1333), + [anon_sym_inputlist] = ACTIONS(1335), + [anon_sym_inputlisten] = ACTIONS(1333), + [anon_sym_intobinary] = ACTIONS(1333), + [anon_sym_intobits] = ACTIONS(1333), + [anon_sym_intobool] = ACTIONS(1333), + [anon_sym_intocell_DASHpath] = ACTIONS(1333), + [anon_sym_intodatetime] = ACTIONS(1333), + [anon_sym_intoduration] = ACTIONS(1333), + [anon_sym_intofilesize] = ACTIONS(1333), + [anon_sym_intofloat] = ACTIONS(1333), + [anon_sym_intoglob] = ACTIONS(1333), + [anon_sym_intoint] = ACTIONS(1333), + [anon_sym_intorecord] = ACTIONS(1333), + [anon_sym_intosqlite] = ACTIONS(1333), + [anon_sym_intostring] = ACTIONS(1333), + [anon_sym_intovalue] = ACTIONS(1333), + [anon_sym_jsonpath] = ACTIONS(1333), + [anon_sym_keybindingsdefault] = ACTIONS(1333), + [anon_sym_keybindingslist] = ACTIONS(1335), + [anon_sym_keybindingslisten] = ACTIONS(1333), + [anon_sym_mathabs] = ACTIONS(1333), + [anon_sym_matharccos] = ACTIONS(1335), + [anon_sym_matharccosh] = ACTIONS(1333), + [anon_sym_matharcsin] = ACTIONS(1335), + [anon_sym_matharcsinh] = ACTIONS(1333), + [anon_sym_matharctan] = ACTIONS(1335), + [anon_sym_matharctanh] = ACTIONS(1333), + [anon_sym_mathavg] = ACTIONS(1333), + [anon_sym_mathceil] = ACTIONS(1333), + [anon_sym_mathcos] = ACTIONS(1335), + [anon_sym_mathcosh] = ACTIONS(1333), + [anon_sym_mathexp] = ACTIONS(1333), + [anon_sym_mathfloor] = ACTIONS(1333), + [anon_sym_mathln] = ACTIONS(1333), + [anon_sym_mathlog] = ACTIONS(1333), + [anon_sym_mathmax] = ACTIONS(1333), + [anon_sym_mathmedian] = ACTIONS(1333), + [anon_sym_mathmin] = ACTIONS(1333), + [anon_sym_mathmode] = ACTIONS(1333), + [anon_sym_mathproduct] = ACTIONS(1333), + [anon_sym_mathround] = ACTIONS(1333), + [anon_sym_mathsin] = ACTIONS(1335), + [anon_sym_mathsinh] = ACTIONS(1333), + [anon_sym_mathsqrt] = ACTIONS(1333), + [anon_sym_mathstddev] = ACTIONS(1333), + [anon_sym_mathsum] = ACTIONS(1333), + [anon_sym_mathtan] = ACTIONS(1335), + [anon_sym_mathtanh] = ACTIONS(1333), + [anon_sym_mathvariance] = ACTIONS(1333), + [anon_sym_metadataaccess] = ACTIONS(1333), + [anon_sym_metadataset] = ACTIONS(1333), + [anon_sym_pathbasename] = ACTIONS(1333), + [anon_sym_pathdirname] = ACTIONS(1333), + [anon_sym_pathexists] = ACTIONS(1333), + [anon_sym_pathexpand] = ACTIONS(1333), + [anon_sym_pathjoin] = ACTIONS(1333), + [anon_sym_pathparse] = ACTIONS(1333), + [anon_sym_pathrelative_DASHto] = ACTIONS(1333), + [anon_sym_pathsplit] = ACTIONS(1333), + [anon_sym_pathtype] = ACTIONS(1333), + [anon_sym_pluginadd] = ACTIONS(1333), + [anon_sym_pluginlist] = ACTIONS(1333), + [anon_sym_pluginrm] = ACTIONS(1333), + [anon_sym_pluginstop] = ACTIONS(1333), + [anon_sym_polarsagg] = ACTIONS(1335), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1333), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1333), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1333), + [anon_sym_polarsappend] = ACTIONS(1333), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1333), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1333), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1333), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1333), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1333), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1333), + [anon_sym_polarsas] = ACTIONS(1335), + [anon_sym_polarsas_DASHdate] = ACTIONS(1335), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1333), + [anon_sym_polarscache] = ACTIONS(1333), + [anon_sym_polarscast] = ACTIONS(1333), + [anon_sym_polarscol] = ACTIONS(1335), + [anon_sym_polarscollect] = ACTIONS(1333), + [anon_sym_polarscolumns] = ACTIONS(1333), + [anon_sym_polarsconcat] = ACTIONS(1335), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1333), + [anon_sym_polarscontains] = ACTIONS(1333), + [anon_sym_polarscount] = ACTIONS(1335), + [anon_sym_polarscount_DASHnull] = ACTIONS(1333), + [anon_sym_polarscumulative] = ACTIONS(1333), + [anon_sym_polarsdatepart] = ACTIONS(1333), + [anon_sym_polarsdecimal] = ACTIONS(1333), + [anon_sym_polarsdrop] = ACTIONS(1335), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1333), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1333), + [anon_sym_polarsdummies] = ACTIONS(1333), + [anon_sym_polarsexplode] = ACTIONS(1333), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1333), + [anon_sym_polarsfetch] = ACTIONS(1333), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1333), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1333), + [anon_sym_polarsfilter] = ACTIONS(1335), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1333), + [anon_sym_polarsfirst] = ACTIONS(1333), + [anon_sym_polarsflatten] = ACTIONS(1333), + [anon_sym_polarsget] = ACTIONS(1335), + [anon_sym_polarsget_DASHday] = ACTIONS(1333), + [anon_sym_polarsget_DASHhour] = ACTIONS(1333), + [anon_sym_polarsget_DASHminute] = ACTIONS(1333), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1333), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1333), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1333), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1333), + [anon_sym_polarsget_DASHweek] = ACTIONS(1335), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1333), + [anon_sym_polarsget_DASHyear] = ACTIONS(1333), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1333), + [anon_sym_polarsimplode] = ACTIONS(1333), + [anon_sym_polarsinteger] = ACTIONS(1333), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1333), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1333), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1333), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1333), + [anon_sym_polarsis_DASHin] = ACTIONS(1333), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1333), + [anon_sym_polarsis_DASHnull] = ACTIONS(1333), + [anon_sym_polarsis_DASHunique] = ACTIONS(1333), + [anon_sym_polarsjoin] = ACTIONS(1333), + [anon_sym_polarslast] = ACTIONS(1333), + [anon_sym_polarslen] = ACTIONS(1333), + [anon_sym_polarslit] = ACTIONS(1333), + [anon_sym_polarslowercase] = ACTIONS(1333), + [anon_sym_polarsmax] = ACTIONS(1333), + [anon_sym_polarsmean] = ACTIONS(1333), + [anon_sym_polarsmedian] = ACTIONS(1333), + [anon_sym_polarsmin] = ACTIONS(1333), + [anon_sym_polarsn_DASHunique] = ACTIONS(1333), + [anon_sym_polarsnot] = ACTIONS(1333), + [anon_sym_polarsopen] = ACTIONS(1333), + [anon_sym_polarsotherwise] = ACTIONS(1333), + [anon_sym_polarspivot] = ACTIONS(1333), + [anon_sym_polarsprofile] = ACTIONS(1333), + [anon_sym_polarsquantile] = ACTIONS(1333), + [anon_sym_polarsquery] = ACTIONS(1333), + [anon_sym_polarsrename] = ACTIONS(1333), + [anon_sym_polarsreplace] = ACTIONS(1335), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1333), + [anon_sym_polarsreverse] = ACTIONS(1333), + [anon_sym_polarsrolling] = ACTIONS(1333), + [anon_sym_polarssample] = ACTIONS(1333), + [anon_sym_polarssave] = ACTIONS(1333), + [anon_sym_polarsschema] = ACTIONS(1333), + [anon_sym_polarsselect] = ACTIONS(1333), + [anon_sym_polarsset] = ACTIONS(1335), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1333), + [anon_sym_polarsshape] = ACTIONS(1333), + [anon_sym_polarsshift] = ACTIONS(1333), + [anon_sym_polarsslice] = ACTIONS(1333), + [anon_sym_polarssort_DASHby] = ACTIONS(1333), + [anon_sym_polarsstd] = ACTIONS(1333), + [anon_sym_polarsstore_DASHget] = ACTIONS(1333), + [anon_sym_polarsstore_DASHls] = ACTIONS(1333), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1333), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1333), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1333), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1333), + [anon_sym_polarsstrftime] = ACTIONS(1333), + [anon_sym_polarssum] = ACTIONS(1335), + [anon_sym_polarssummary] = ACTIONS(1333), + [anon_sym_polarstake] = ACTIONS(1333), + [anon_sym_polarsunique] = ACTIONS(1333), + [anon_sym_polarsunnest] = ACTIONS(1333), + [anon_sym_polarsunpivot] = ACTIONS(1333), + [anon_sym_polarsuppercase] = ACTIONS(1333), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1333), + [anon_sym_polarsvar] = ACTIONS(1333), + [anon_sym_polarswhen] = ACTIONS(1333), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1333), + [anon_sym_querydb] = ACTIONS(1333), + [anon_sym_querygit] = ACTIONS(1333), + [anon_sym_queryjson] = ACTIONS(1333), + [anon_sym_queryweb] = ACTIONS(1335), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1333), + [anon_sym_queryxml] = ACTIONS(1333), + [anon_sym_randombinary] = ACTIONS(1333), + [anon_sym_randombool] = ACTIONS(1333), + [anon_sym_randomchars] = ACTIONS(1333), + [anon_sym_randomdice] = ACTIONS(1333), + [anon_sym_randomfloat] = ACTIONS(1333), + [anon_sym_randomint] = ACTIONS(1333), + [anon_sym_randomuuid] = ACTIONS(1333), + [anon_sym_rolldown] = ACTIONS(1333), + [anon_sym_rollleft] = ACTIONS(1333), + [anon_sym_rollright] = ACTIONS(1333), + [anon_sym_rollup] = ACTIONS(1333), + [anon_sym_scopealiases] = ACTIONS(1333), + [anon_sym_scopecommands] = ACTIONS(1333), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1333), + [anon_sym_scopeexterns] = ACTIONS(1333), + [anon_sym_scopemodules] = ACTIONS(1333), + [anon_sym_scopevariables] = ACTIONS(1333), + [anon_sym_seqchar] = ACTIONS(1333), + [anon_sym_seqdate] = ACTIONS(1333), + [anon_sym_skipuntil] = ACTIONS(1333), + [anon_sym_skipwhile] = ACTIONS(1333), + [anon_sym_splitcell_DASHpath] = ACTIONS(1333), + [anon_sym_splitchars] = ACTIONS(1333), + [anon_sym_splitcolumn] = ACTIONS(1333), + [anon_sym_splitlist] = ACTIONS(1333), + [anon_sym_splitrow] = ACTIONS(1333), + [anon_sym_splitwords] = ACTIONS(1333), + [anon_sym_storcreate] = ACTIONS(1333), + [anon_sym_stordelete] = ACTIONS(1333), + [anon_sym_storexport] = ACTIONS(1333), + [anon_sym_storimport] = ACTIONS(1333), + [anon_sym_storinsert] = ACTIONS(1333), + [anon_sym_storopen] = ACTIONS(1333), + [anon_sym_storreset] = ACTIONS(1333), + [anon_sym_storupdate] = ACTIONS(1333), + [anon_sym_strbexpand] = ACTIONS(1333), + [anon_sym_strcamel_DASHcase] = ACTIONS(1333), + [anon_sym_strcapitalize] = ACTIONS(1333), + [anon_sym_strcompress] = ACTIONS(1333), + [anon_sym_strcontains] = ACTIONS(1333), + [anon_sym_strdecompress] = ACTIONS(1333), + [anon_sym_strdedent] = ACTIONS(1333), + [anon_sym_strdeunicode] = ACTIONS(1333), + [anon_sym_strdistance] = ACTIONS(1333), + [anon_sym_strdowncase] = ACTIONS(1333), + [anon_sym_strends_DASHwith] = ACTIONS(1333), + [anon_sym_strexpand] = ACTIONS(1333), + [anon_sym_strindent] = ACTIONS(1333), + [anon_sym_strindex_DASHof] = ACTIONS(1333), + [anon_sym_strjoin] = ACTIONS(1333), + [anon_sym_strkebab_DASHcase] = ACTIONS(1333), + [anon_sym_strlength] = ACTIONS(1333), + [anon_sym_strpascal_DASHcase] = ACTIONS(1333), + [anon_sym_strreplace] = ACTIONS(1333), + [anon_sym_strreverse] = ACTIONS(1333), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1333), + [anon_sym_strsimilarity] = ACTIONS(1333), + [anon_sym_strsnake_DASHcase] = ACTIONS(1333), + [anon_sym_strstarts_DASHwith] = ACTIONS(1333), + [anon_sym_strstats] = ACTIONS(1333), + [anon_sym_strsubstring] = ACTIONS(1333), + [anon_sym_strtitle_DASHcase] = ACTIONS(1333), + [anon_sym_strtrim] = ACTIONS(1333), + [anon_sym_strupcase] = ACTIONS(1333), + [anon_sym_strwrap] = ACTIONS(1333), + [anon_sym_syscpu] = ACTIONS(1333), + [anon_sym_sysdisks] = ACTIONS(1333), + [anon_sym_syshost] = ACTIONS(1333), + [anon_sym_sysmem] = ACTIONS(1333), + [anon_sym_sysnet] = ACTIONS(1333), + [anon_sym_systemp] = ACTIONS(1333), + [anon_sym_sysusers] = ACTIONS(1333), + [anon_sym_takeuntil] = ACTIONS(1333), + [anon_sym_takewhile] = ACTIONS(1333), + [anon_sym_termquery] = ACTIONS(1333), + [anon_sym_termsize] = ACTIONS(1333), + [anon_sym_tobz2] = ACTIONS(1333), + [anon_sym_tocsv] = ACTIONS(1333), + [anon_sym_togz] = ACTIONS(1333), + [anon_sym_tohtml] = ACTIONS(1333), + [anon_sym_tojson] = ACTIONS(1333), + [anon_sym_tomd] = ACTIONS(1333), + [anon_sym_tomsgpack] = ACTIONS(1335), + [anon_sym_tomsgpackz] = ACTIONS(1333), + [anon_sym_tonuon] = ACTIONS(1333), + [anon_sym_toparquet] = ACTIONS(1333), + [anon_sym_toplist] = ACTIONS(1333), + [anon_sym_topng] = ACTIONS(1333), + [anon_sym_totext] = ACTIONS(1333), + [anon_sym_totoml] = ACTIONS(1333), + [anon_sym_totsv] = ACTIONS(1333), + [anon_sym_toxml] = ACTIONS(1333), + [anon_sym_toxz] = ACTIONS(1333), + [anon_sym_toyaml] = ACTIONS(1333), + [anon_sym_tozst] = ACTIONS(1333), + [anon_sym_updatecells] = ACTIONS(1333), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1333), + [anon_sym_urldecode] = ACTIONS(1333), + [anon_sym_urlencode] = ACTIONS(1333), + [anon_sym_urljoin] = ACTIONS(1333), + [anon_sym_urlparse] = ACTIONS(1333), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1333), + [anon_sym_viewfiles] = ACTIONS(1333), + [anon_sym_viewir] = ACTIONS(1333), + [anon_sym_viewsource] = ACTIONS(1333), + [anon_sym_viewspan] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1333), }, - [458] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(623), - [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1885), - [aux_sym_cmd_identifier_token3] = ACTIONS(1885), - [aux_sym_cmd_identifier_token4] = ACTIONS(1885), - [aux_sym_cmd_identifier_token5] = ACTIONS(1885), - [aux_sym_cmd_identifier_token6] = ACTIONS(1885), - [aux_sym_cmd_identifier_token7] = ACTIONS(1885), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1885), - [aux_sym_cmd_identifier_token11] = ACTIONS(1885), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1885), - [aux_sym_cmd_identifier_token17] = ACTIONS(1885), - [aux_sym_cmd_identifier_token18] = ACTIONS(1885), - [aux_sym_cmd_identifier_token19] = ACTIONS(1885), - [aux_sym_cmd_identifier_token20] = ACTIONS(1885), - [aux_sym_cmd_identifier_token21] = ACTIONS(1885), - [aux_sym_cmd_identifier_token22] = ACTIONS(1885), - [aux_sym_cmd_identifier_token23] = ACTIONS(1885), - [aux_sym_cmd_identifier_token24] = ACTIONS(1885), - [aux_sym_cmd_identifier_token25] = ACTIONS(1885), - [aux_sym_cmd_identifier_token26] = ACTIONS(1885), - [aux_sym_cmd_identifier_token27] = ACTIONS(1885), - [aux_sym_cmd_identifier_token28] = ACTIONS(1885), - [aux_sym_cmd_identifier_token29] = ACTIONS(1885), - [aux_sym_cmd_identifier_token30] = ACTIONS(1885), - [aux_sym_cmd_identifier_token31] = ACTIONS(1885), - [aux_sym_cmd_identifier_token32] = ACTIONS(1885), - [aux_sym_cmd_identifier_token33] = ACTIONS(1885), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1885), - [aux_sym_cmd_identifier_token36] = ACTIONS(1885), - [aux_sym_cmd_identifier_token37] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1885), + [283] = { + [sym_comment] = STATE(283), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [aux_sym_cmd_identifier_token1] = ACTIONS(1337), + [aux_sym_cmd_identifier_token2] = ACTIONS(1339), + [aux_sym_cmd_identifier_token3] = ACTIONS(1339), + [aux_sym_cmd_identifier_token4] = ACTIONS(1339), + [aux_sym_cmd_identifier_token5] = ACTIONS(1339), + [aux_sym_cmd_identifier_token6] = ACTIONS(1339), + [aux_sym_cmd_identifier_token7] = ACTIONS(1339), + [aux_sym_cmd_identifier_token8] = ACTIONS(1337), + [aux_sym_cmd_identifier_token9] = ACTIONS(1337), + [aux_sym_cmd_identifier_token10] = ACTIONS(1339), + [aux_sym_cmd_identifier_token11] = ACTIONS(1339), + [aux_sym_cmd_identifier_token12] = ACTIONS(1337), + [aux_sym_cmd_identifier_token13] = ACTIONS(1337), + [aux_sym_cmd_identifier_token14] = ACTIONS(1337), + [aux_sym_cmd_identifier_token15] = ACTIONS(1337), + [aux_sym_cmd_identifier_token16] = ACTIONS(1339), + [aux_sym_cmd_identifier_token17] = ACTIONS(1339), + [aux_sym_cmd_identifier_token18] = ACTIONS(1337), + [aux_sym_cmd_identifier_token19] = ACTIONS(1339), + [aux_sym_cmd_identifier_token20] = ACTIONS(1339), + [aux_sym_cmd_identifier_token21] = ACTIONS(1339), + [aux_sym_cmd_identifier_token22] = ACTIONS(1339), + [aux_sym_cmd_identifier_token23] = ACTIONS(1339), + [aux_sym_cmd_identifier_token24] = ACTIONS(1339), + [aux_sym_cmd_identifier_token25] = ACTIONS(1339), + [aux_sym_cmd_identifier_token26] = ACTIONS(1339), + [aux_sym_cmd_identifier_token27] = ACTIONS(1339), + [aux_sym_cmd_identifier_token28] = ACTIONS(1339), + [aux_sym_cmd_identifier_token29] = ACTIONS(1339), + [aux_sym_cmd_identifier_token30] = ACTIONS(1339), + [aux_sym_cmd_identifier_token31] = ACTIONS(1339), + [aux_sym_cmd_identifier_token32] = ACTIONS(1337), + [aux_sym_cmd_identifier_token33] = ACTIONS(1339), + [aux_sym_cmd_identifier_token34] = ACTIONS(1337), + [aux_sym_cmd_identifier_token35] = ACTIONS(1339), + [aux_sym_cmd_identifier_token36] = ACTIONS(1339), + [aux_sym_cmd_identifier_token37] = ACTIONS(1339), + [aux_sym_cmd_identifier_token38] = ACTIONS(1337), + [aux_sym_cmd_identifier_token39] = ACTIONS(1339), + [aux_sym_cmd_identifier_token40] = ACTIONS(1339), + [sym__newline] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH2] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1339), + [aux_sym_expr_unary_token1] = ACTIONS(1339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1339), + [anon_sym_DOT_DOT_LT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_decimal_token2] = ACTIONS(1339), + [aux_sym__val_number_decimal_token3] = ACTIONS(1339), + [aux_sym__val_number_decimal_token4] = ACTIONS(1339), + [aux_sym__val_number_token1] = ACTIONS(1339), + [aux_sym__val_number_token2] = ACTIONS(1339), + [aux_sym__val_number_token3] = ACTIONS(1339), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1339), + [aux_sym_env_var_token1] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_ansigradient] = ACTIONS(1339), + [anon_sym_ansilink] = ACTIONS(1339), + [anon_sym_ansistrip] = ACTIONS(1339), + [anon_sym_bitsand] = ACTIONS(1339), + [anon_sym_bitsnot] = ACTIONS(1339), + [anon_sym_bitsor] = ACTIONS(1339), + [anon_sym_bitsrol] = ACTIONS(1339), + [anon_sym_bitsror] = ACTIONS(1339), + [anon_sym_bitsshl] = ACTIONS(1339), + [anon_sym_bitsshr] = ACTIONS(1339), + [anon_sym_bitsxor] = ACTIONS(1339), + [anon_sym_bytesadd] = ACTIONS(1339), + [anon_sym_bytesat] = ACTIONS(1339), + [anon_sym_bytesbuild] = ACTIONS(1339), + [anon_sym_bytescollect] = ACTIONS(1339), + [anon_sym_bytesends_DASHwith] = ACTIONS(1339), + [anon_sym_bytesindex_DASHof] = ACTIONS(1339), + [anon_sym_byteslength] = ACTIONS(1339), + [anon_sym_bytesremove] = ACTIONS(1339), + [anon_sym_bytesreplace] = ACTIONS(1339), + [anon_sym_bytesreverse] = ACTIONS(1339), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1339), + [anon_sym_commandlineedit] = ACTIONS(1339), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1339), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1339), + [anon_sym_configenv] = ACTIONS(1339), + [anon_sym_confignu] = ACTIONS(1339), + [anon_sym_configreset] = ACTIONS(1339), + [anon_sym_dateformat] = ACTIONS(1339), + [anon_sym_datehumanize] = ACTIONS(1339), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1339), + [anon_sym_datenow] = ACTIONS(1339), + [anon_sym_dateto_DASHrecord] = ACTIONS(1339), + [anon_sym_dateto_DASHtable] = ACTIONS(1339), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1339), + [anon_sym_debuginfo] = ACTIONS(1339), + [anon_sym_debugprofile] = ACTIONS(1339), + [anon_sym_decodebase32] = ACTIONS(1337), + [anon_sym_decodebase32hex] = ACTIONS(1339), + [anon_sym_decodebase64] = ACTIONS(1339), + [anon_sym_decodehex] = ACTIONS(1339), + [anon_sym_detectcolumns] = ACTIONS(1339), + [anon_sym_dropcolumn] = ACTIONS(1339), + [anon_sym_dropnth] = ACTIONS(1339), + [anon_sym_dtadd] = ACTIONS(1339), + [anon_sym_dtdiff] = ACTIONS(1339), + [anon_sym_dtformat] = ACTIONS(1339), + [anon_sym_dtnow] = ACTIONS(1339), + [anon_sym_dtpart] = ACTIONS(1339), + [anon_sym_dtto] = ACTIONS(1339), + [anon_sym_dtutcnow] = ACTIONS(1339), + [anon_sym_eachwhile] = ACTIONS(1339), + [anon_sym_encodebase32] = ACTIONS(1337), + [anon_sym_encodebase32hex] = ACTIONS(1339), + [anon_sym_encodebase64] = ACTIONS(1339), + [anon_sym_encodehex] = ACTIONS(1339), + [anon_sym_errormake] = ACTIONS(1339), + [anon_sym_exploreir] = ACTIONS(1339), + [anon_sym_formatdate] = ACTIONS(1339), + [anon_sym_formatduration] = ACTIONS(1339), + [anon_sym_formatfilesize] = ACTIONS(1339), + [anon_sym_formatpattern] = ACTIONS(1339), + [anon_sym_frombz2] = ACTIONS(1339), + [anon_sym_fromcsv] = ACTIONS(1339), + [anon_sym_fromeml] = ACTIONS(1339), + [anon_sym_fromgz] = ACTIONS(1339), + [anon_sym_fromics] = ACTIONS(1339), + [anon_sym_fromini] = ACTIONS(1339), + [anon_sym_fromjson] = ACTIONS(1339), + [anon_sym_frommsgpack] = ACTIONS(1337), + [anon_sym_frommsgpackz] = ACTIONS(1339), + [anon_sym_fromnuon] = ACTIONS(1339), + [anon_sym_fromods] = ACTIONS(1339), + [anon_sym_fromparquet] = ACTIONS(1339), + [anon_sym_fromplist] = ACTIONS(1339), + [anon_sym_frompng] = ACTIONS(1339), + [anon_sym_fromssv] = ACTIONS(1339), + [anon_sym_fromtoml] = ACTIONS(1339), + [anon_sym_fromtsv] = ACTIONS(1339), + [anon_sym_fromurl] = ACTIONS(1339), + [anon_sym_fromvcf] = ACTIONS(1339), + [anon_sym_fromxlsx] = ACTIONS(1339), + [anon_sym_fromxml] = ACTIONS(1339), + [anon_sym_fromxz] = ACTIONS(1339), + [anon_sym_fromyaml] = ACTIONS(1339), + [anon_sym_fromyml] = ACTIONS(1339), + [anon_sym_fromzst] = ACTIONS(1339), + [anon_sym_hashmd5] = ACTIONS(1339), + [anon_sym_hashsha256] = ACTIONS(1339), + [anon_sym_helpaliases] = ACTIONS(1339), + [anon_sym_helpcommands] = ACTIONS(1339), + [anon_sym_helpescapes] = ACTIONS(1339), + [anon_sym_helpexterns] = ACTIONS(1339), + [anon_sym_helpmodules] = ACTIONS(1339), + [anon_sym_helpoperators] = ACTIONS(1339), + [anon_sym_historyimport] = ACTIONS(1339), + [anon_sym_historysession] = ACTIONS(1339), + [anon_sym_httpdelete] = ACTIONS(1339), + [anon_sym_httpget] = ACTIONS(1339), + [anon_sym_httphead] = ACTIONS(1339), + [anon_sym_httpoptions] = ACTIONS(1339), + [anon_sym_httppatch] = ACTIONS(1339), + [anon_sym_httppost] = ACTIONS(1339), + [anon_sym_httpput] = ACTIONS(1339), + [anon_sym_inputlist] = ACTIONS(1337), + [anon_sym_inputlisten] = ACTIONS(1339), + [anon_sym_intobinary] = ACTIONS(1339), + [anon_sym_intobits] = ACTIONS(1339), + [anon_sym_intobool] = ACTIONS(1339), + [anon_sym_intocell_DASHpath] = ACTIONS(1339), + [anon_sym_intodatetime] = ACTIONS(1339), + [anon_sym_intoduration] = ACTIONS(1339), + [anon_sym_intofilesize] = ACTIONS(1339), + [anon_sym_intofloat] = ACTIONS(1339), + [anon_sym_intoglob] = ACTIONS(1339), + [anon_sym_intoint] = ACTIONS(1339), + [anon_sym_intorecord] = ACTIONS(1339), + [anon_sym_intosqlite] = ACTIONS(1339), + [anon_sym_intostring] = ACTIONS(1339), + [anon_sym_intovalue] = ACTIONS(1339), + [anon_sym_jsonpath] = ACTIONS(1339), + [anon_sym_keybindingsdefault] = ACTIONS(1339), + [anon_sym_keybindingslist] = ACTIONS(1337), + [anon_sym_keybindingslisten] = ACTIONS(1339), + [anon_sym_mathabs] = ACTIONS(1339), + [anon_sym_matharccos] = ACTIONS(1337), + [anon_sym_matharccosh] = ACTIONS(1339), + [anon_sym_matharcsin] = ACTIONS(1337), + [anon_sym_matharcsinh] = ACTIONS(1339), + [anon_sym_matharctan] = ACTIONS(1337), + [anon_sym_matharctanh] = ACTIONS(1339), + [anon_sym_mathavg] = ACTIONS(1339), + [anon_sym_mathceil] = ACTIONS(1339), + [anon_sym_mathcos] = ACTIONS(1337), + [anon_sym_mathcosh] = ACTIONS(1339), + [anon_sym_mathexp] = ACTIONS(1339), + [anon_sym_mathfloor] = ACTIONS(1339), + [anon_sym_mathln] = ACTIONS(1339), + [anon_sym_mathlog] = ACTIONS(1339), + [anon_sym_mathmax] = ACTIONS(1339), + [anon_sym_mathmedian] = ACTIONS(1339), + [anon_sym_mathmin] = ACTIONS(1339), + [anon_sym_mathmode] = ACTIONS(1339), + [anon_sym_mathproduct] = ACTIONS(1339), + [anon_sym_mathround] = ACTIONS(1339), + [anon_sym_mathsin] = ACTIONS(1337), + [anon_sym_mathsinh] = ACTIONS(1339), + [anon_sym_mathsqrt] = ACTIONS(1339), + [anon_sym_mathstddev] = ACTIONS(1339), + [anon_sym_mathsum] = ACTIONS(1339), + [anon_sym_mathtan] = ACTIONS(1337), + [anon_sym_mathtanh] = ACTIONS(1339), + [anon_sym_mathvariance] = ACTIONS(1339), + [anon_sym_metadataaccess] = ACTIONS(1339), + [anon_sym_metadataset] = ACTIONS(1339), + [anon_sym_pathbasename] = ACTIONS(1339), + [anon_sym_pathdirname] = ACTIONS(1339), + [anon_sym_pathexists] = ACTIONS(1339), + [anon_sym_pathexpand] = ACTIONS(1339), + [anon_sym_pathjoin] = ACTIONS(1339), + [anon_sym_pathparse] = ACTIONS(1339), + [anon_sym_pathrelative_DASHto] = ACTIONS(1339), + [anon_sym_pathsplit] = ACTIONS(1339), + [anon_sym_pathtype] = ACTIONS(1339), + [anon_sym_pluginadd] = ACTIONS(1339), + [anon_sym_pluginlist] = ACTIONS(1339), + [anon_sym_pluginrm] = ACTIONS(1339), + [anon_sym_pluginstop] = ACTIONS(1339), + [anon_sym_polarsagg] = ACTIONS(1337), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1339), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1339), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1339), + [anon_sym_polarsappend] = ACTIONS(1339), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1339), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1339), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1339), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1339), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1339), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1339), + [anon_sym_polarsas] = ACTIONS(1337), + [anon_sym_polarsas_DASHdate] = ACTIONS(1337), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1339), + [anon_sym_polarscache] = ACTIONS(1339), + [anon_sym_polarscast] = ACTIONS(1339), + [anon_sym_polarscol] = ACTIONS(1337), + [anon_sym_polarscollect] = ACTIONS(1339), + [anon_sym_polarscolumns] = ACTIONS(1339), + [anon_sym_polarsconcat] = ACTIONS(1337), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1339), + [anon_sym_polarscontains] = ACTIONS(1339), + [anon_sym_polarscount] = ACTIONS(1337), + [anon_sym_polarscount_DASHnull] = ACTIONS(1339), + [anon_sym_polarscumulative] = ACTIONS(1339), + [anon_sym_polarsdatepart] = ACTIONS(1339), + [anon_sym_polarsdecimal] = ACTIONS(1339), + [anon_sym_polarsdrop] = ACTIONS(1337), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1339), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1339), + [anon_sym_polarsdummies] = ACTIONS(1339), + [anon_sym_polarsexplode] = ACTIONS(1339), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1339), + [anon_sym_polarsfetch] = ACTIONS(1339), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1339), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1339), + [anon_sym_polarsfilter] = ACTIONS(1337), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1339), + [anon_sym_polarsfirst] = ACTIONS(1339), + [anon_sym_polarsflatten] = ACTIONS(1339), + [anon_sym_polarsget] = ACTIONS(1337), + [anon_sym_polarsget_DASHday] = ACTIONS(1339), + [anon_sym_polarsget_DASHhour] = ACTIONS(1339), + [anon_sym_polarsget_DASHminute] = ACTIONS(1339), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1339), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1339), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1339), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1339), + [anon_sym_polarsget_DASHweek] = ACTIONS(1337), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1339), + [anon_sym_polarsget_DASHyear] = ACTIONS(1339), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1339), + [anon_sym_polarsimplode] = ACTIONS(1339), + [anon_sym_polarsinteger] = ACTIONS(1339), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1339), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1339), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1339), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1339), + [anon_sym_polarsis_DASHin] = ACTIONS(1339), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1339), + [anon_sym_polarsis_DASHnull] = ACTIONS(1339), + [anon_sym_polarsis_DASHunique] = ACTIONS(1339), + [anon_sym_polarsjoin] = ACTIONS(1339), + [anon_sym_polarslast] = ACTIONS(1339), + [anon_sym_polarslen] = ACTIONS(1339), + [anon_sym_polarslit] = ACTIONS(1339), + [anon_sym_polarslowercase] = ACTIONS(1339), + [anon_sym_polarsmax] = ACTIONS(1339), + [anon_sym_polarsmean] = ACTIONS(1339), + [anon_sym_polarsmedian] = ACTIONS(1339), + [anon_sym_polarsmin] = ACTIONS(1339), + [anon_sym_polarsn_DASHunique] = ACTIONS(1339), + [anon_sym_polarsnot] = ACTIONS(1339), + [anon_sym_polarsopen] = ACTIONS(1339), + [anon_sym_polarsotherwise] = ACTIONS(1339), + [anon_sym_polarspivot] = ACTIONS(1339), + [anon_sym_polarsprofile] = ACTIONS(1339), + [anon_sym_polarsquantile] = ACTIONS(1339), + [anon_sym_polarsquery] = ACTIONS(1339), + [anon_sym_polarsrename] = ACTIONS(1339), + [anon_sym_polarsreplace] = ACTIONS(1337), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1339), + [anon_sym_polarsreverse] = ACTIONS(1339), + [anon_sym_polarsrolling] = ACTIONS(1339), + [anon_sym_polarssample] = ACTIONS(1339), + [anon_sym_polarssave] = ACTIONS(1339), + [anon_sym_polarsschema] = ACTIONS(1339), + [anon_sym_polarsselect] = ACTIONS(1339), + [anon_sym_polarsset] = ACTIONS(1337), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1339), + [anon_sym_polarsshape] = ACTIONS(1339), + [anon_sym_polarsshift] = ACTIONS(1339), + [anon_sym_polarsslice] = ACTIONS(1339), + [anon_sym_polarssort_DASHby] = ACTIONS(1339), + [anon_sym_polarsstd] = ACTIONS(1339), + [anon_sym_polarsstore_DASHget] = ACTIONS(1339), + [anon_sym_polarsstore_DASHls] = ACTIONS(1339), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1339), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1339), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1339), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1339), + [anon_sym_polarsstrftime] = ACTIONS(1339), + [anon_sym_polarssum] = ACTIONS(1337), + [anon_sym_polarssummary] = ACTIONS(1339), + [anon_sym_polarstake] = ACTIONS(1339), + [anon_sym_polarsunique] = ACTIONS(1339), + [anon_sym_polarsunnest] = ACTIONS(1339), + [anon_sym_polarsunpivot] = ACTIONS(1339), + [anon_sym_polarsuppercase] = ACTIONS(1339), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1339), + [anon_sym_polarsvar] = ACTIONS(1339), + [anon_sym_polarswhen] = ACTIONS(1339), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1339), + [anon_sym_querydb] = ACTIONS(1339), + [anon_sym_querygit] = ACTIONS(1339), + [anon_sym_queryjson] = ACTIONS(1339), + [anon_sym_queryweb] = ACTIONS(1337), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1339), + [anon_sym_queryxml] = ACTIONS(1339), + [anon_sym_randombinary] = ACTIONS(1339), + [anon_sym_randombool] = ACTIONS(1339), + [anon_sym_randomchars] = ACTIONS(1339), + [anon_sym_randomdice] = ACTIONS(1339), + [anon_sym_randomfloat] = ACTIONS(1339), + [anon_sym_randomint] = ACTIONS(1339), + [anon_sym_randomuuid] = ACTIONS(1339), + [anon_sym_rolldown] = ACTIONS(1339), + [anon_sym_rollleft] = ACTIONS(1339), + [anon_sym_rollright] = ACTIONS(1339), + [anon_sym_rollup] = ACTIONS(1339), + [anon_sym_scopealiases] = ACTIONS(1339), + [anon_sym_scopecommands] = ACTIONS(1339), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1339), + [anon_sym_scopeexterns] = ACTIONS(1339), + [anon_sym_scopemodules] = ACTIONS(1339), + [anon_sym_scopevariables] = ACTIONS(1339), + [anon_sym_seqchar] = ACTIONS(1339), + [anon_sym_seqdate] = ACTIONS(1339), + [anon_sym_skipuntil] = ACTIONS(1339), + [anon_sym_skipwhile] = ACTIONS(1339), + [anon_sym_splitcell_DASHpath] = ACTIONS(1339), + [anon_sym_splitchars] = ACTIONS(1339), + [anon_sym_splitcolumn] = ACTIONS(1339), + [anon_sym_splitlist] = ACTIONS(1339), + [anon_sym_splitrow] = ACTIONS(1339), + [anon_sym_splitwords] = ACTIONS(1339), + [anon_sym_storcreate] = ACTIONS(1339), + [anon_sym_stordelete] = ACTIONS(1339), + [anon_sym_storexport] = ACTIONS(1339), + [anon_sym_storimport] = ACTIONS(1339), + [anon_sym_storinsert] = ACTIONS(1339), + [anon_sym_storopen] = ACTIONS(1339), + [anon_sym_storreset] = ACTIONS(1339), + [anon_sym_storupdate] = ACTIONS(1339), + [anon_sym_strbexpand] = ACTIONS(1339), + [anon_sym_strcamel_DASHcase] = ACTIONS(1339), + [anon_sym_strcapitalize] = ACTIONS(1339), + [anon_sym_strcompress] = ACTIONS(1339), + [anon_sym_strcontains] = ACTIONS(1339), + [anon_sym_strdecompress] = ACTIONS(1339), + [anon_sym_strdedent] = ACTIONS(1339), + [anon_sym_strdeunicode] = ACTIONS(1339), + [anon_sym_strdistance] = ACTIONS(1339), + [anon_sym_strdowncase] = ACTIONS(1339), + [anon_sym_strends_DASHwith] = ACTIONS(1339), + [anon_sym_strexpand] = ACTIONS(1339), + [anon_sym_strindent] = ACTIONS(1339), + [anon_sym_strindex_DASHof] = ACTIONS(1339), + [anon_sym_strjoin] = ACTIONS(1339), + [anon_sym_strkebab_DASHcase] = ACTIONS(1339), + [anon_sym_strlength] = ACTIONS(1339), + [anon_sym_strpascal_DASHcase] = ACTIONS(1339), + [anon_sym_strreplace] = ACTIONS(1339), + [anon_sym_strreverse] = ACTIONS(1339), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1339), + [anon_sym_strsimilarity] = ACTIONS(1339), + [anon_sym_strsnake_DASHcase] = ACTIONS(1339), + [anon_sym_strstarts_DASHwith] = ACTIONS(1339), + [anon_sym_strstats] = ACTIONS(1339), + [anon_sym_strsubstring] = ACTIONS(1339), + [anon_sym_strtitle_DASHcase] = ACTIONS(1339), + [anon_sym_strtrim] = ACTIONS(1339), + [anon_sym_strupcase] = ACTIONS(1339), + [anon_sym_strwrap] = ACTIONS(1339), + [anon_sym_syscpu] = ACTIONS(1339), + [anon_sym_sysdisks] = ACTIONS(1339), + [anon_sym_syshost] = ACTIONS(1339), + [anon_sym_sysmem] = ACTIONS(1339), + [anon_sym_sysnet] = ACTIONS(1339), + [anon_sym_systemp] = ACTIONS(1339), + [anon_sym_sysusers] = ACTIONS(1339), + [anon_sym_takeuntil] = ACTIONS(1339), + [anon_sym_takewhile] = ACTIONS(1339), + [anon_sym_termquery] = ACTIONS(1339), + [anon_sym_termsize] = ACTIONS(1339), + [anon_sym_tobz2] = ACTIONS(1339), + [anon_sym_tocsv] = ACTIONS(1339), + [anon_sym_togz] = ACTIONS(1339), + [anon_sym_tohtml] = ACTIONS(1339), + [anon_sym_tojson] = ACTIONS(1339), + [anon_sym_tomd] = ACTIONS(1339), + [anon_sym_tomsgpack] = ACTIONS(1337), + [anon_sym_tomsgpackz] = ACTIONS(1339), + [anon_sym_tonuon] = ACTIONS(1339), + [anon_sym_toparquet] = ACTIONS(1339), + [anon_sym_toplist] = ACTIONS(1339), + [anon_sym_topng] = ACTIONS(1339), + [anon_sym_totext] = ACTIONS(1339), + [anon_sym_totoml] = ACTIONS(1339), + [anon_sym_totsv] = ACTIONS(1339), + [anon_sym_toxml] = ACTIONS(1339), + [anon_sym_toxz] = ACTIONS(1339), + [anon_sym_toyaml] = ACTIONS(1339), + [anon_sym_tozst] = ACTIONS(1339), + [anon_sym_updatecells] = ACTIONS(1339), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1339), + [anon_sym_urldecode] = ACTIONS(1339), + [anon_sym_urlencode] = ACTIONS(1339), + [anon_sym_urljoin] = ACTIONS(1339), + [anon_sym_urlparse] = ACTIONS(1339), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1339), + [anon_sym_viewfiles] = ACTIONS(1339), + [anon_sym_viewir] = ACTIONS(1339), + [anon_sym_viewsource] = ACTIONS(1339), + [anon_sym_viewspan] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1339), }, - [459] = { - [sym_cell_path] = STATE(739), - [sym_path] = STATE(623), - [sym_comment] = STATE(459), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1889), - [aux_sym_cmd_identifier_token3] = ACTIONS(1889), - [aux_sym_cmd_identifier_token4] = ACTIONS(1889), - [aux_sym_cmd_identifier_token5] = ACTIONS(1889), - [aux_sym_cmd_identifier_token6] = ACTIONS(1889), - [aux_sym_cmd_identifier_token7] = ACTIONS(1889), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1889), - [aux_sym_cmd_identifier_token11] = ACTIONS(1889), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1889), - [aux_sym_cmd_identifier_token17] = ACTIONS(1889), - [aux_sym_cmd_identifier_token18] = ACTIONS(1889), - [aux_sym_cmd_identifier_token19] = ACTIONS(1889), - [aux_sym_cmd_identifier_token20] = ACTIONS(1889), - [aux_sym_cmd_identifier_token21] = ACTIONS(1889), - [aux_sym_cmd_identifier_token22] = ACTIONS(1889), - [aux_sym_cmd_identifier_token23] = ACTIONS(1889), - [aux_sym_cmd_identifier_token24] = ACTIONS(1889), - [aux_sym_cmd_identifier_token25] = ACTIONS(1889), - [aux_sym_cmd_identifier_token26] = ACTIONS(1889), - [aux_sym_cmd_identifier_token27] = ACTIONS(1889), - [aux_sym_cmd_identifier_token28] = ACTIONS(1889), - [aux_sym_cmd_identifier_token29] = ACTIONS(1889), - [aux_sym_cmd_identifier_token30] = ACTIONS(1889), - [aux_sym_cmd_identifier_token31] = ACTIONS(1889), - [aux_sym_cmd_identifier_token32] = ACTIONS(1889), - [aux_sym_cmd_identifier_token33] = ACTIONS(1889), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1889), - [aux_sym_cmd_identifier_token36] = ACTIONS(1889), - [aux_sym_cmd_identifier_token37] = ACTIONS(1889), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1889), - [aux_sym_cmd_identifier_token40] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1889), + [284] = { + [sym_comment] = STATE(284), + [anon_sym_export] = ACTIONS(1246), + [anon_sym_alias] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_let_DASHenv] = ACTIONS(1246), + [anon_sym_mut] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [aux_sym_cmd_identifier_token1] = ACTIONS(1246), + [aux_sym_cmd_identifier_token2] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1244), + [aux_sym_cmd_identifier_token4] = ACTIONS(1244), + [aux_sym_cmd_identifier_token5] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [aux_sym_cmd_identifier_token7] = ACTIONS(1244), + [aux_sym_cmd_identifier_token8] = ACTIONS(1246), + [aux_sym_cmd_identifier_token9] = ACTIONS(1246), + [aux_sym_cmd_identifier_token10] = ACTIONS(1244), + [aux_sym_cmd_identifier_token11] = ACTIONS(1244), + [aux_sym_cmd_identifier_token12] = ACTIONS(1246), + [aux_sym_cmd_identifier_token13] = ACTIONS(1246), + [aux_sym_cmd_identifier_token14] = ACTIONS(1246), + [aux_sym_cmd_identifier_token15] = ACTIONS(1246), + [aux_sym_cmd_identifier_token16] = ACTIONS(1244), + [aux_sym_cmd_identifier_token17] = ACTIONS(1244), + [aux_sym_cmd_identifier_token18] = ACTIONS(1246), + [aux_sym_cmd_identifier_token19] = ACTIONS(1244), + [aux_sym_cmd_identifier_token20] = ACTIONS(1244), + [aux_sym_cmd_identifier_token21] = ACTIONS(1244), + [aux_sym_cmd_identifier_token22] = ACTIONS(1244), + [aux_sym_cmd_identifier_token23] = ACTIONS(1244), + [aux_sym_cmd_identifier_token24] = ACTIONS(1244), + [aux_sym_cmd_identifier_token25] = ACTIONS(1244), + [aux_sym_cmd_identifier_token26] = ACTIONS(1244), + [aux_sym_cmd_identifier_token27] = ACTIONS(1244), + [aux_sym_cmd_identifier_token28] = ACTIONS(1244), + [aux_sym_cmd_identifier_token29] = ACTIONS(1244), + [aux_sym_cmd_identifier_token30] = ACTIONS(1244), + [aux_sym_cmd_identifier_token31] = ACTIONS(1244), + [aux_sym_cmd_identifier_token32] = ACTIONS(1246), + [aux_sym_cmd_identifier_token33] = ACTIONS(1244), + [aux_sym_cmd_identifier_token34] = ACTIONS(1246), + [aux_sym_cmd_identifier_token35] = ACTIONS(1244), + [aux_sym_cmd_identifier_token36] = ACTIONS(1244), + [aux_sym_cmd_identifier_token37] = ACTIONS(1244), + [aux_sym_cmd_identifier_token38] = ACTIONS(1246), + [aux_sym_cmd_identifier_token39] = ACTIONS(1244), + [aux_sym_cmd_identifier_token40] = ACTIONS(1244), + [sym__newline] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_def] = ACTIONS(1246), + [anon_sym_export_DASHenv] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_module] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1246), + [anon_sym_error] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_source] = ACTIONS(1246), + [anon_sym_source_DASHenv] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_hide] = ACTIONS(1246), + [anon_sym_hide_DASHenv] = ACTIONS(1246), + [anon_sym_overlay] = ACTIONS(1246), + [anon_sym_where] = ACTIONS(1244), + [aux_sym_expr_unary_token1] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_DOT_DOT_LT] = ACTIONS(1244), + [anon_sym_null] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [aux_sym__val_number_decimal_token1] = ACTIONS(1246), + [aux_sym__val_number_decimal_token2] = ACTIONS(1244), + [aux_sym__val_number_decimal_token3] = ACTIONS(1244), + [aux_sym__val_number_decimal_token4] = ACTIONS(1244), + [aux_sym__val_number_token1] = ACTIONS(1244), + [aux_sym__val_number_token2] = ACTIONS(1244), + [aux_sym__val_number_token3] = ACTIONS(1244), + [aux_sym__val_number_token4] = ACTIONS(1246), + [aux_sym__val_number_token5] = ACTIONS(1246), + [aux_sym__val_number_token6] = ACTIONS(1246), + [anon_sym_0b] = ACTIONS(1246), + [anon_sym_0o] = ACTIONS(1246), + [anon_sym_0x] = ACTIONS(1246), + [sym_val_date] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym__str_single_quotes] = ACTIONS(1244), + [sym__str_back_ticks] = ACTIONS(1244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1244), + [aux_sym_env_var_token1] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1244), + [anon_sym_ansigradient] = ACTIONS(1244), + [anon_sym_ansilink] = ACTIONS(1244), + [anon_sym_ansistrip] = ACTIONS(1244), + [anon_sym_bitsand] = ACTIONS(1244), + [anon_sym_bitsnot] = ACTIONS(1244), + [anon_sym_bitsor] = ACTIONS(1244), + [anon_sym_bitsrol] = ACTIONS(1244), + [anon_sym_bitsror] = ACTIONS(1244), + [anon_sym_bitsshl] = ACTIONS(1244), + [anon_sym_bitsshr] = ACTIONS(1244), + [anon_sym_bitsxor] = ACTIONS(1244), + [anon_sym_bytesadd] = ACTIONS(1244), + [anon_sym_bytesat] = ACTIONS(1244), + [anon_sym_bytesbuild] = ACTIONS(1244), + [anon_sym_bytescollect] = ACTIONS(1244), + [anon_sym_bytesends_DASHwith] = ACTIONS(1244), + [anon_sym_bytesindex_DASHof] = ACTIONS(1244), + [anon_sym_byteslength] = ACTIONS(1244), + [anon_sym_bytesremove] = ACTIONS(1244), + [anon_sym_bytesreplace] = ACTIONS(1244), + [anon_sym_bytesreverse] = ACTIONS(1244), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1244), + [anon_sym_commandlineedit] = ACTIONS(1244), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1244), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1244), + [anon_sym_configenv] = ACTIONS(1244), + [anon_sym_confignu] = ACTIONS(1244), + [anon_sym_configreset] = ACTIONS(1244), + [anon_sym_dateformat] = ACTIONS(1244), + [anon_sym_datehumanize] = ACTIONS(1244), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1244), + [anon_sym_datenow] = ACTIONS(1244), + [anon_sym_dateto_DASHrecord] = ACTIONS(1244), + [anon_sym_dateto_DASHtable] = ACTIONS(1244), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1244), + [anon_sym_debuginfo] = ACTIONS(1244), + [anon_sym_debugprofile] = ACTIONS(1244), + [anon_sym_decodebase32] = ACTIONS(1246), + [anon_sym_decodebase32hex] = ACTIONS(1244), + [anon_sym_decodebase64] = ACTIONS(1244), + [anon_sym_decodehex] = ACTIONS(1244), + [anon_sym_detectcolumns] = ACTIONS(1244), + [anon_sym_dropcolumn] = ACTIONS(1244), + [anon_sym_dropnth] = ACTIONS(1244), + [anon_sym_dtadd] = ACTIONS(1244), + [anon_sym_dtdiff] = ACTIONS(1244), + [anon_sym_dtformat] = ACTIONS(1244), + [anon_sym_dtnow] = ACTIONS(1244), + [anon_sym_dtpart] = ACTIONS(1244), + [anon_sym_dtto] = ACTIONS(1244), + [anon_sym_dtutcnow] = ACTIONS(1244), + [anon_sym_eachwhile] = ACTIONS(1244), + [anon_sym_encodebase32] = ACTIONS(1246), + [anon_sym_encodebase32hex] = ACTIONS(1244), + [anon_sym_encodebase64] = ACTIONS(1244), + [anon_sym_encodehex] = ACTIONS(1244), + [anon_sym_errormake] = ACTIONS(1244), + [anon_sym_exploreir] = ACTIONS(1244), + [anon_sym_formatdate] = ACTIONS(1244), + [anon_sym_formatduration] = ACTIONS(1244), + [anon_sym_formatfilesize] = ACTIONS(1244), + [anon_sym_formatpattern] = ACTIONS(1244), + [anon_sym_frombz2] = ACTIONS(1244), + [anon_sym_fromcsv] = ACTIONS(1244), + [anon_sym_fromeml] = ACTIONS(1244), + [anon_sym_fromgz] = ACTIONS(1244), + [anon_sym_fromics] = ACTIONS(1244), + [anon_sym_fromini] = ACTIONS(1244), + [anon_sym_fromjson] = ACTIONS(1244), + [anon_sym_frommsgpack] = ACTIONS(1246), + [anon_sym_frommsgpackz] = ACTIONS(1244), + [anon_sym_fromnuon] = ACTIONS(1244), + [anon_sym_fromods] = ACTIONS(1244), + [anon_sym_fromparquet] = ACTIONS(1244), + [anon_sym_fromplist] = ACTIONS(1244), + [anon_sym_frompng] = ACTIONS(1244), + [anon_sym_fromssv] = ACTIONS(1244), + [anon_sym_fromtoml] = ACTIONS(1244), + [anon_sym_fromtsv] = ACTIONS(1244), + [anon_sym_fromurl] = ACTIONS(1244), + [anon_sym_fromvcf] = ACTIONS(1244), + [anon_sym_fromxlsx] = ACTIONS(1244), + [anon_sym_fromxml] = ACTIONS(1244), + [anon_sym_fromxz] = ACTIONS(1244), + [anon_sym_fromyaml] = ACTIONS(1244), + [anon_sym_fromyml] = ACTIONS(1244), + [anon_sym_fromzst] = ACTIONS(1244), + [anon_sym_hashmd5] = ACTIONS(1244), + [anon_sym_hashsha256] = ACTIONS(1244), + [anon_sym_helpaliases] = ACTIONS(1244), + [anon_sym_helpcommands] = ACTIONS(1244), + [anon_sym_helpescapes] = ACTIONS(1244), + [anon_sym_helpexterns] = ACTIONS(1244), + [anon_sym_helpmodules] = ACTIONS(1244), + [anon_sym_helpoperators] = ACTIONS(1244), + [anon_sym_historyimport] = ACTIONS(1244), + [anon_sym_historysession] = ACTIONS(1244), + [anon_sym_httpdelete] = ACTIONS(1244), + [anon_sym_httpget] = ACTIONS(1244), + [anon_sym_httphead] = ACTIONS(1244), + [anon_sym_httpoptions] = ACTIONS(1244), + [anon_sym_httppatch] = ACTIONS(1244), + [anon_sym_httppost] = ACTIONS(1244), + [anon_sym_httpput] = ACTIONS(1244), + [anon_sym_inputlist] = ACTIONS(1246), + [anon_sym_inputlisten] = ACTIONS(1244), + [anon_sym_intobinary] = ACTIONS(1244), + [anon_sym_intobits] = ACTIONS(1244), + [anon_sym_intobool] = ACTIONS(1244), + [anon_sym_intocell_DASHpath] = ACTIONS(1244), + [anon_sym_intodatetime] = ACTIONS(1244), + [anon_sym_intoduration] = ACTIONS(1244), + [anon_sym_intofilesize] = ACTIONS(1244), + [anon_sym_intofloat] = ACTIONS(1244), + [anon_sym_intoglob] = ACTIONS(1244), + [anon_sym_intoint] = ACTIONS(1244), + [anon_sym_intorecord] = ACTIONS(1244), + [anon_sym_intosqlite] = ACTIONS(1244), + [anon_sym_intostring] = ACTIONS(1244), + [anon_sym_intovalue] = ACTIONS(1244), + [anon_sym_jsonpath] = ACTIONS(1244), + [anon_sym_keybindingsdefault] = ACTIONS(1244), + [anon_sym_keybindingslist] = ACTIONS(1246), + [anon_sym_keybindingslisten] = ACTIONS(1244), + [anon_sym_mathabs] = ACTIONS(1244), + [anon_sym_matharccos] = ACTIONS(1246), + [anon_sym_matharccosh] = ACTIONS(1244), + [anon_sym_matharcsin] = ACTIONS(1246), + [anon_sym_matharcsinh] = ACTIONS(1244), + [anon_sym_matharctan] = ACTIONS(1246), + [anon_sym_matharctanh] = ACTIONS(1244), + [anon_sym_mathavg] = ACTIONS(1244), + [anon_sym_mathceil] = ACTIONS(1244), + [anon_sym_mathcos] = ACTIONS(1246), + [anon_sym_mathcosh] = ACTIONS(1244), + [anon_sym_mathexp] = ACTIONS(1244), + [anon_sym_mathfloor] = ACTIONS(1244), + [anon_sym_mathln] = ACTIONS(1244), + [anon_sym_mathlog] = ACTIONS(1244), + [anon_sym_mathmax] = ACTIONS(1244), + [anon_sym_mathmedian] = ACTIONS(1244), + [anon_sym_mathmin] = ACTIONS(1244), + [anon_sym_mathmode] = ACTIONS(1244), + [anon_sym_mathproduct] = ACTIONS(1244), + [anon_sym_mathround] = ACTIONS(1244), + [anon_sym_mathsin] = ACTIONS(1246), + [anon_sym_mathsinh] = ACTIONS(1244), + [anon_sym_mathsqrt] = ACTIONS(1244), + [anon_sym_mathstddev] = ACTIONS(1244), + [anon_sym_mathsum] = ACTIONS(1244), + [anon_sym_mathtan] = ACTIONS(1246), + [anon_sym_mathtanh] = ACTIONS(1244), + [anon_sym_mathvariance] = ACTIONS(1244), + [anon_sym_metadataaccess] = ACTIONS(1244), + [anon_sym_metadataset] = ACTIONS(1244), + [anon_sym_pathbasename] = ACTIONS(1244), + [anon_sym_pathdirname] = ACTIONS(1244), + [anon_sym_pathexists] = ACTIONS(1244), + [anon_sym_pathexpand] = ACTIONS(1244), + [anon_sym_pathjoin] = ACTIONS(1244), + [anon_sym_pathparse] = ACTIONS(1244), + [anon_sym_pathrelative_DASHto] = ACTIONS(1244), + [anon_sym_pathsplit] = ACTIONS(1244), + [anon_sym_pathtype] = ACTIONS(1244), + [anon_sym_pluginadd] = ACTIONS(1244), + [anon_sym_pluginlist] = ACTIONS(1244), + [anon_sym_pluginrm] = ACTIONS(1244), + [anon_sym_pluginstop] = ACTIONS(1244), + [anon_sym_polarsagg] = ACTIONS(1246), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1244), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1244), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsappend] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1244), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1244), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1244), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1244), + [anon_sym_polarsas] = ACTIONS(1246), + [anon_sym_polarsas_DASHdate] = ACTIONS(1246), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1244), + [anon_sym_polarscache] = ACTIONS(1244), + [anon_sym_polarscast] = ACTIONS(1244), + [anon_sym_polarscol] = ACTIONS(1246), + [anon_sym_polarscollect] = ACTIONS(1244), + [anon_sym_polarscolumns] = ACTIONS(1244), + [anon_sym_polarsconcat] = ACTIONS(1246), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1244), + [anon_sym_polarscontains] = ACTIONS(1244), + [anon_sym_polarscount] = ACTIONS(1246), + [anon_sym_polarscount_DASHnull] = ACTIONS(1244), + [anon_sym_polarscumulative] = ACTIONS(1244), + [anon_sym_polarsdatepart] = ACTIONS(1244), + [anon_sym_polarsdecimal] = ACTIONS(1244), + [anon_sym_polarsdrop] = ACTIONS(1246), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1244), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1244), + [anon_sym_polarsdummies] = ACTIONS(1244), + [anon_sym_polarsexplode] = ACTIONS(1244), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1244), + [anon_sym_polarsfetch] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1244), + [anon_sym_polarsfilter] = ACTIONS(1246), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1244), + [anon_sym_polarsfirst] = ACTIONS(1244), + [anon_sym_polarsflatten] = ACTIONS(1244), + [anon_sym_polarsget] = ACTIONS(1246), + [anon_sym_polarsget_DASHday] = ACTIONS(1244), + [anon_sym_polarsget_DASHhour] = ACTIONS(1244), + [anon_sym_polarsget_DASHminute] = ACTIONS(1244), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1244), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1244), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHweek] = ACTIONS(1246), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1244), + [anon_sym_polarsget_DASHyear] = ACTIONS(1244), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1244), + [anon_sym_polarsimplode] = ACTIONS(1244), + [anon_sym_polarsinteger] = ACTIONS(1244), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1244), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1244), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1244), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1244), + [anon_sym_polarsis_DASHin] = ACTIONS(1244), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHunique] = ACTIONS(1244), + [anon_sym_polarsjoin] = ACTIONS(1244), + [anon_sym_polarslast] = ACTIONS(1244), + [anon_sym_polarslen] = ACTIONS(1244), + [anon_sym_polarslit] = ACTIONS(1244), + [anon_sym_polarslowercase] = ACTIONS(1244), + [anon_sym_polarsmax] = ACTIONS(1244), + [anon_sym_polarsmean] = ACTIONS(1244), + [anon_sym_polarsmedian] = ACTIONS(1244), + [anon_sym_polarsmin] = ACTIONS(1244), + [anon_sym_polarsn_DASHunique] = ACTIONS(1244), + [anon_sym_polarsnot] = ACTIONS(1244), + [anon_sym_polarsopen] = ACTIONS(1244), + [anon_sym_polarsotherwise] = ACTIONS(1244), + [anon_sym_polarspivot] = ACTIONS(1244), + [anon_sym_polarsprofile] = ACTIONS(1244), + [anon_sym_polarsquantile] = ACTIONS(1244), + [anon_sym_polarsquery] = ACTIONS(1244), + [anon_sym_polarsrename] = ACTIONS(1244), + [anon_sym_polarsreplace] = ACTIONS(1246), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1244), + [anon_sym_polarsreverse] = ACTIONS(1244), + [anon_sym_polarsrolling] = ACTIONS(1244), + [anon_sym_polarssample] = ACTIONS(1244), + [anon_sym_polarssave] = ACTIONS(1244), + [anon_sym_polarsschema] = ACTIONS(1244), + [anon_sym_polarsselect] = ACTIONS(1244), + [anon_sym_polarsset] = ACTIONS(1246), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1244), + [anon_sym_polarsshape] = ACTIONS(1244), + [anon_sym_polarsshift] = ACTIONS(1244), + [anon_sym_polarsslice] = ACTIONS(1244), + [anon_sym_polarssort_DASHby] = ACTIONS(1244), + [anon_sym_polarsstd] = ACTIONS(1244), + [anon_sym_polarsstore_DASHget] = ACTIONS(1244), + [anon_sym_polarsstore_DASHls] = ACTIONS(1244), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1244), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1244), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1244), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1244), + [anon_sym_polarsstrftime] = ACTIONS(1244), + [anon_sym_polarssum] = ACTIONS(1246), + [anon_sym_polarssummary] = ACTIONS(1244), + [anon_sym_polarstake] = ACTIONS(1244), + [anon_sym_polarsunique] = ACTIONS(1244), + [anon_sym_polarsunnest] = ACTIONS(1244), + [anon_sym_polarsunpivot] = ACTIONS(1244), + [anon_sym_polarsuppercase] = ACTIONS(1244), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1244), + [anon_sym_polarsvar] = ACTIONS(1244), + [anon_sym_polarswhen] = ACTIONS(1244), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1244), + [anon_sym_querydb] = ACTIONS(1244), + [anon_sym_querygit] = ACTIONS(1244), + [anon_sym_queryjson] = ACTIONS(1244), + [anon_sym_queryweb] = ACTIONS(1246), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1244), + [anon_sym_queryxml] = ACTIONS(1244), + [anon_sym_randombinary] = ACTIONS(1244), + [anon_sym_randombool] = ACTIONS(1244), + [anon_sym_randomchars] = ACTIONS(1244), + [anon_sym_randomdice] = ACTIONS(1244), + [anon_sym_randomfloat] = ACTIONS(1244), + [anon_sym_randomint] = ACTIONS(1244), + [anon_sym_randomuuid] = ACTIONS(1244), + [anon_sym_rolldown] = ACTIONS(1244), + [anon_sym_rollleft] = ACTIONS(1244), + [anon_sym_rollright] = ACTIONS(1244), + [anon_sym_rollup] = ACTIONS(1244), + [anon_sym_scopealiases] = ACTIONS(1244), + [anon_sym_scopecommands] = ACTIONS(1244), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1244), + [anon_sym_scopeexterns] = ACTIONS(1244), + [anon_sym_scopemodules] = ACTIONS(1244), + [anon_sym_scopevariables] = ACTIONS(1244), + [anon_sym_seqchar] = ACTIONS(1244), + [anon_sym_seqdate] = ACTIONS(1244), + [anon_sym_skipuntil] = ACTIONS(1244), + [anon_sym_skipwhile] = ACTIONS(1244), + [anon_sym_splitcell_DASHpath] = ACTIONS(1244), + [anon_sym_splitchars] = ACTIONS(1244), + [anon_sym_splitcolumn] = ACTIONS(1244), + [anon_sym_splitlist] = ACTIONS(1244), + [anon_sym_splitrow] = ACTIONS(1244), + [anon_sym_splitwords] = ACTIONS(1244), + [anon_sym_storcreate] = ACTIONS(1244), + [anon_sym_stordelete] = ACTIONS(1244), + [anon_sym_storexport] = ACTIONS(1244), + [anon_sym_storimport] = ACTIONS(1244), + [anon_sym_storinsert] = ACTIONS(1244), + [anon_sym_storopen] = ACTIONS(1244), + [anon_sym_storreset] = ACTIONS(1244), + [anon_sym_storupdate] = ACTIONS(1244), + [anon_sym_strbexpand] = ACTIONS(1244), + [anon_sym_strcamel_DASHcase] = ACTIONS(1244), + [anon_sym_strcapitalize] = ACTIONS(1244), + [anon_sym_strcompress] = ACTIONS(1244), + [anon_sym_strcontains] = ACTIONS(1244), + [anon_sym_strdecompress] = ACTIONS(1244), + [anon_sym_strdedent] = ACTIONS(1244), + [anon_sym_strdeunicode] = ACTIONS(1244), + [anon_sym_strdistance] = ACTIONS(1244), + [anon_sym_strdowncase] = ACTIONS(1244), + [anon_sym_strends_DASHwith] = ACTIONS(1244), + [anon_sym_strexpand] = ACTIONS(1244), + [anon_sym_strindent] = ACTIONS(1244), + [anon_sym_strindex_DASHof] = ACTIONS(1244), + [anon_sym_strjoin] = ACTIONS(1244), + [anon_sym_strkebab_DASHcase] = ACTIONS(1244), + [anon_sym_strlength] = ACTIONS(1244), + [anon_sym_strpascal_DASHcase] = ACTIONS(1244), + [anon_sym_strreplace] = ACTIONS(1244), + [anon_sym_strreverse] = ACTIONS(1244), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strsimilarity] = ACTIONS(1244), + [anon_sym_strsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strstarts_DASHwith] = ACTIONS(1244), + [anon_sym_strstats] = ACTIONS(1244), + [anon_sym_strsubstring] = ACTIONS(1244), + [anon_sym_strtitle_DASHcase] = ACTIONS(1244), + [anon_sym_strtrim] = ACTIONS(1244), + [anon_sym_strupcase] = ACTIONS(1244), + [anon_sym_strwrap] = ACTIONS(1244), + [anon_sym_syscpu] = ACTIONS(1244), + [anon_sym_sysdisks] = ACTIONS(1244), + [anon_sym_syshost] = ACTIONS(1244), + [anon_sym_sysmem] = ACTIONS(1244), + [anon_sym_sysnet] = ACTIONS(1244), + [anon_sym_systemp] = ACTIONS(1244), + [anon_sym_sysusers] = ACTIONS(1244), + [anon_sym_takeuntil] = ACTIONS(1244), + [anon_sym_takewhile] = ACTIONS(1244), + [anon_sym_termquery] = ACTIONS(1244), + [anon_sym_termsize] = ACTIONS(1244), + [anon_sym_tobz2] = ACTIONS(1244), + [anon_sym_tocsv] = ACTIONS(1244), + [anon_sym_togz] = ACTIONS(1244), + [anon_sym_tohtml] = ACTIONS(1244), + [anon_sym_tojson] = ACTIONS(1244), + [anon_sym_tomd] = ACTIONS(1244), + [anon_sym_tomsgpack] = ACTIONS(1246), + [anon_sym_tomsgpackz] = ACTIONS(1244), + [anon_sym_tonuon] = ACTIONS(1244), + [anon_sym_toparquet] = ACTIONS(1244), + [anon_sym_toplist] = ACTIONS(1244), + [anon_sym_topng] = ACTIONS(1244), + [anon_sym_totext] = ACTIONS(1244), + [anon_sym_totoml] = ACTIONS(1244), + [anon_sym_totsv] = ACTIONS(1244), + [anon_sym_toxml] = ACTIONS(1244), + [anon_sym_toxz] = ACTIONS(1244), + [anon_sym_toyaml] = ACTIONS(1244), + [anon_sym_tozst] = ACTIONS(1244), + [anon_sym_updatecells] = ACTIONS(1244), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1244), + [anon_sym_urldecode] = ACTIONS(1244), + [anon_sym_urlencode] = ACTIONS(1244), + [anon_sym_urljoin] = ACTIONS(1244), + [anon_sym_urlparse] = ACTIONS(1244), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1244), + [anon_sym_viewfiles] = ACTIONS(1244), + [anon_sym_viewir] = ACTIONS(1244), + [anon_sym_viewsource] = ACTIONS(1244), + [anon_sym_viewspan] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1244), }, - [460] = { - [sym_cell_path] = STATE(740), - [sym_path] = STATE(623), - [sym_comment] = STATE(460), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [aux_sym_cmd_identifier_token37] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1893), + [285] = { + [sym_comment] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(1267), + [anon_sym_alias] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_let_DASHenv] = ACTIONS(1267), + [anon_sym_mut] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [aux_sym_cmd_identifier_token1] = ACTIONS(1267), + [aux_sym_cmd_identifier_token2] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1248), + [aux_sym_cmd_identifier_token4] = ACTIONS(1248), + [aux_sym_cmd_identifier_token5] = ACTIONS(1248), + [aux_sym_cmd_identifier_token6] = ACTIONS(1248), + [aux_sym_cmd_identifier_token7] = ACTIONS(1248), + [aux_sym_cmd_identifier_token8] = ACTIONS(1267), + [aux_sym_cmd_identifier_token9] = ACTIONS(1267), + [aux_sym_cmd_identifier_token10] = ACTIONS(1248), + [aux_sym_cmd_identifier_token11] = ACTIONS(1248), + [aux_sym_cmd_identifier_token12] = ACTIONS(1267), + [aux_sym_cmd_identifier_token13] = ACTIONS(1267), + [aux_sym_cmd_identifier_token14] = ACTIONS(1267), + [aux_sym_cmd_identifier_token15] = ACTIONS(1267), + [aux_sym_cmd_identifier_token16] = ACTIONS(1248), + [aux_sym_cmd_identifier_token17] = ACTIONS(1248), + [aux_sym_cmd_identifier_token18] = ACTIONS(1267), + [aux_sym_cmd_identifier_token19] = ACTIONS(1248), + [aux_sym_cmd_identifier_token20] = ACTIONS(1248), + [aux_sym_cmd_identifier_token21] = ACTIONS(1248), + [aux_sym_cmd_identifier_token22] = ACTIONS(1248), + [aux_sym_cmd_identifier_token23] = ACTIONS(1248), + [aux_sym_cmd_identifier_token24] = ACTIONS(1248), + [aux_sym_cmd_identifier_token25] = ACTIONS(1248), + [aux_sym_cmd_identifier_token26] = ACTIONS(1248), + [aux_sym_cmd_identifier_token27] = ACTIONS(1248), + [aux_sym_cmd_identifier_token28] = ACTIONS(1248), + [aux_sym_cmd_identifier_token29] = ACTIONS(1248), + [aux_sym_cmd_identifier_token30] = ACTIONS(1248), + [aux_sym_cmd_identifier_token31] = ACTIONS(1248), + [aux_sym_cmd_identifier_token32] = ACTIONS(1267), + [aux_sym_cmd_identifier_token33] = ACTIONS(1248), + [aux_sym_cmd_identifier_token34] = ACTIONS(1267), + [aux_sym_cmd_identifier_token35] = ACTIONS(1248), + [aux_sym_cmd_identifier_token36] = ACTIONS(1248), + [aux_sym_cmd_identifier_token37] = ACTIONS(1248), + [aux_sym_cmd_identifier_token38] = ACTIONS(1267), + [aux_sym_cmd_identifier_token39] = ACTIONS(1248), + [aux_sym_cmd_identifier_token40] = ACTIONS(1248), + [sym__newline] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_def] = ACTIONS(1267), + [anon_sym_export_DASHenv] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_module] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_error] = ACTIONS(1267), + [anon_sym_DASH2] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_source] = ACTIONS(1267), + [anon_sym_source_DASHenv] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_hide] = ACTIONS(1267), + [anon_sym_hide_DASHenv] = ACTIONS(1267), + [anon_sym_overlay] = ACTIONS(1267), + [anon_sym_where] = ACTIONS(1248), + [aux_sym_expr_unary_token1] = ACTIONS(1248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), + [anon_sym_DOT_DOT_LT] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [aux_sym__val_number_decimal_token1] = ACTIONS(1267), + [aux_sym__val_number_decimal_token2] = ACTIONS(1248), + [aux_sym__val_number_decimal_token3] = ACTIONS(1248), + [aux_sym__val_number_decimal_token4] = ACTIONS(1248), + [aux_sym__val_number_token1] = ACTIONS(1248), + [aux_sym__val_number_token2] = ACTIONS(1248), + [aux_sym__val_number_token3] = ACTIONS(1248), + [aux_sym__val_number_token4] = ACTIONS(1267), + [aux_sym__val_number_token5] = ACTIONS(1267), + [aux_sym__val_number_token6] = ACTIONS(1267), + [anon_sym_0b] = ACTIONS(1267), + [anon_sym_0o] = ACTIONS(1267), + [anon_sym_0x] = ACTIONS(1267), + [sym_val_date] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [sym__str_single_quotes] = ACTIONS(1248), + [sym__str_back_ticks] = ACTIONS(1248), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1248), + [aux_sym_env_var_token1] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym_ansigradient] = ACTIONS(1248), + [anon_sym_ansilink] = ACTIONS(1248), + [anon_sym_ansistrip] = ACTIONS(1248), + [anon_sym_bitsand] = ACTIONS(1248), + [anon_sym_bitsnot] = ACTIONS(1248), + [anon_sym_bitsor] = ACTIONS(1248), + [anon_sym_bitsrol] = ACTIONS(1248), + [anon_sym_bitsror] = ACTIONS(1248), + [anon_sym_bitsshl] = ACTIONS(1248), + [anon_sym_bitsshr] = ACTIONS(1248), + [anon_sym_bitsxor] = ACTIONS(1248), + [anon_sym_bytesadd] = ACTIONS(1248), + [anon_sym_bytesat] = ACTIONS(1248), + [anon_sym_bytesbuild] = ACTIONS(1248), + [anon_sym_bytescollect] = ACTIONS(1248), + [anon_sym_bytesends_DASHwith] = ACTIONS(1248), + [anon_sym_bytesindex_DASHof] = ACTIONS(1248), + [anon_sym_byteslength] = ACTIONS(1248), + [anon_sym_bytesremove] = ACTIONS(1248), + [anon_sym_bytesreplace] = ACTIONS(1248), + [anon_sym_bytesreverse] = ACTIONS(1248), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1248), + [anon_sym_commandlineedit] = ACTIONS(1248), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1248), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1248), + [anon_sym_configenv] = ACTIONS(1248), + [anon_sym_confignu] = ACTIONS(1248), + [anon_sym_configreset] = ACTIONS(1248), + [anon_sym_dateformat] = ACTIONS(1248), + [anon_sym_datehumanize] = ACTIONS(1248), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1248), + [anon_sym_datenow] = ACTIONS(1248), + [anon_sym_dateto_DASHrecord] = ACTIONS(1248), + [anon_sym_dateto_DASHtable] = ACTIONS(1248), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1248), + [anon_sym_debuginfo] = ACTIONS(1248), + [anon_sym_debugprofile] = ACTIONS(1248), + [anon_sym_decodebase32] = ACTIONS(1267), + [anon_sym_decodebase32hex] = ACTIONS(1248), + [anon_sym_decodebase64] = ACTIONS(1248), + [anon_sym_decodehex] = ACTIONS(1248), + [anon_sym_detectcolumns] = ACTIONS(1248), + [anon_sym_dropcolumn] = ACTIONS(1248), + [anon_sym_dropnth] = ACTIONS(1248), + [anon_sym_dtadd] = ACTIONS(1248), + [anon_sym_dtdiff] = ACTIONS(1248), + [anon_sym_dtformat] = ACTIONS(1248), + [anon_sym_dtnow] = ACTIONS(1248), + [anon_sym_dtpart] = ACTIONS(1248), + [anon_sym_dtto] = ACTIONS(1248), + [anon_sym_dtutcnow] = ACTIONS(1248), + [anon_sym_eachwhile] = ACTIONS(1248), + [anon_sym_encodebase32] = ACTIONS(1267), + [anon_sym_encodebase32hex] = ACTIONS(1248), + [anon_sym_encodebase64] = ACTIONS(1248), + [anon_sym_encodehex] = ACTIONS(1248), + [anon_sym_errormake] = ACTIONS(1248), + [anon_sym_exploreir] = ACTIONS(1248), + [anon_sym_formatdate] = ACTIONS(1248), + [anon_sym_formatduration] = ACTIONS(1248), + [anon_sym_formatfilesize] = ACTIONS(1248), + [anon_sym_formatpattern] = ACTIONS(1248), + [anon_sym_frombz2] = ACTIONS(1248), + [anon_sym_fromcsv] = ACTIONS(1248), + [anon_sym_fromeml] = ACTIONS(1248), + [anon_sym_fromgz] = ACTIONS(1248), + [anon_sym_fromics] = ACTIONS(1248), + [anon_sym_fromini] = ACTIONS(1248), + [anon_sym_fromjson] = ACTIONS(1248), + [anon_sym_frommsgpack] = ACTIONS(1267), + [anon_sym_frommsgpackz] = ACTIONS(1248), + [anon_sym_fromnuon] = ACTIONS(1248), + [anon_sym_fromods] = ACTIONS(1248), + [anon_sym_fromparquet] = ACTIONS(1248), + [anon_sym_fromplist] = ACTIONS(1248), + [anon_sym_frompng] = ACTIONS(1248), + [anon_sym_fromssv] = ACTIONS(1248), + [anon_sym_fromtoml] = ACTIONS(1248), + [anon_sym_fromtsv] = ACTIONS(1248), + [anon_sym_fromurl] = ACTIONS(1248), + [anon_sym_fromvcf] = ACTIONS(1248), + [anon_sym_fromxlsx] = ACTIONS(1248), + [anon_sym_fromxml] = ACTIONS(1248), + [anon_sym_fromxz] = ACTIONS(1248), + [anon_sym_fromyaml] = ACTIONS(1248), + [anon_sym_fromyml] = ACTIONS(1248), + [anon_sym_fromzst] = ACTIONS(1248), + [anon_sym_hashmd5] = ACTIONS(1248), + [anon_sym_hashsha256] = ACTIONS(1248), + [anon_sym_helpaliases] = ACTIONS(1248), + [anon_sym_helpcommands] = ACTIONS(1248), + [anon_sym_helpescapes] = ACTIONS(1248), + [anon_sym_helpexterns] = ACTIONS(1248), + [anon_sym_helpmodules] = ACTIONS(1248), + [anon_sym_helpoperators] = ACTIONS(1248), + [anon_sym_historyimport] = ACTIONS(1248), + [anon_sym_historysession] = ACTIONS(1248), + [anon_sym_httpdelete] = ACTIONS(1248), + [anon_sym_httpget] = ACTIONS(1248), + [anon_sym_httphead] = ACTIONS(1248), + [anon_sym_httpoptions] = ACTIONS(1248), + [anon_sym_httppatch] = ACTIONS(1248), + [anon_sym_httppost] = ACTIONS(1248), + [anon_sym_httpput] = ACTIONS(1248), + [anon_sym_inputlist] = ACTIONS(1267), + [anon_sym_inputlisten] = ACTIONS(1248), + [anon_sym_intobinary] = ACTIONS(1248), + [anon_sym_intobits] = ACTIONS(1248), + [anon_sym_intobool] = ACTIONS(1248), + [anon_sym_intocell_DASHpath] = ACTIONS(1248), + [anon_sym_intodatetime] = ACTIONS(1248), + [anon_sym_intoduration] = ACTIONS(1248), + [anon_sym_intofilesize] = ACTIONS(1248), + [anon_sym_intofloat] = ACTIONS(1248), + [anon_sym_intoglob] = ACTIONS(1248), + [anon_sym_intoint] = ACTIONS(1248), + [anon_sym_intorecord] = ACTIONS(1248), + [anon_sym_intosqlite] = ACTIONS(1248), + [anon_sym_intostring] = ACTIONS(1248), + [anon_sym_intovalue] = ACTIONS(1248), + [anon_sym_jsonpath] = ACTIONS(1248), + [anon_sym_keybindingsdefault] = ACTIONS(1248), + [anon_sym_keybindingslist] = ACTIONS(1267), + [anon_sym_keybindingslisten] = ACTIONS(1248), + [anon_sym_mathabs] = ACTIONS(1248), + [anon_sym_matharccos] = ACTIONS(1267), + [anon_sym_matharccosh] = ACTIONS(1248), + [anon_sym_matharcsin] = ACTIONS(1267), + [anon_sym_matharcsinh] = ACTIONS(1248), + [anon_sym_matharctan] = ACTIONS(1267), + [anon_sym_matharctanh] = ACTIONS(1248), + [anon_sym_mathavg] = ACTIONS(1248), + [anon_sym_mathceil] = ACTIONS(1248), + [anon_sym_mathcos] = ACTIONS(1267), + [anon_sym_mathcosh] = ACTIONS(1248), + [anon_sym_mathexp] = ACTIONS(1248), + [anon_sym_mathfloor] = ACTIONS(1248), + [anon_sym_mathln] = ACTIONS(1248), + [anon_sym_mathlog] = ACTIONS(1248), + [anon_sym_mathmax] = ACTIONS(1248), + [anon_sym_mathmedian] = ACTIONS(1248), + [anon_sym_mathmin] = ACTIONS(1248), + [anon_sym_mathmode] = ACTIONS(1248), + [anon_sym_mathproduct] = ACTIONS(1248), + [anon_sym_mathround] = ACTIONS(1248), + [anon_sym_mathsin] = ACTIONS(1267), + [anon_sym_mathsinh] = ACTIONS(1248), + [anon_sym_mathsqrt] = ACTIONS(1248), + [anon_sym_mathstddev] = ACTIONS(1248), + [anon_sym_mathsum] = ACTIONS(1248), + [anon_sym_mathtan] = ACTIONS(1267), + [anon_sym_mathtanh] = ACTIONS(1248), + [anon_sym_mathvariance] = ACTIONS(1248), + [anon_sym_metadataaccess] = ACTIONS(1248), + [anon_sym_metadataset] = ACTIONS(1248), + [anon_sym_pathbasename] = ACTIONS(1248), + [anon_sym_pathdirname] = ACTIONS(1248), + [anon_sym_pathexists] = ACTIONS(1248), + [anon_sym_pathexpand] = ACTIONS(1248), + [anon_sym_pathjoin] = ACTIONS(1248), + [anon_sym_pathparse] = ACTIONS(1248), + [anon_sym_pathrelative_DASHto] = ACTIONS(1248), + [anon_sym_pathsplit] = ACTIONS(1248), + [anon_sym_pathtype] = ACTIONS(1248), + [anon_sym_pluginadd] = ACTIONS(1248), + [anon_sym_pluginlist] = ACTIONS(1248), + [anon_sym_pluginrm] = ACTIONS(1248), + [anon_sym_pluginstop] = ACTIONS(1248), + [anon_sym_polarsagg] = ACTIONS(1267), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1248), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1248), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsappend] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1248), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1248), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1248), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1248), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1248), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1248), + [anon_sym_polarsas] = ACTIONS(1267), + [anon_sym_polarsas_DASHdate] = ACTIONS(1267), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1248), + [anon_sym_polarscache] = ACTIONS(1248), + [anon_sym_polarscast] = ACTIONS(1248), + [anon_sym_polarscol] = ACTIONS(1267), + [anon_sym_polarscollect] = ACTIONS(1248), + [anon_sym_polarscolumns] = ACTIONS(1248), + [anon_sym_polarsconcat] = ACTIONS(1267), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1248), + [anon_sym_polarscontains] = ACTIONS(1248), + [anon_sym_polarscount] = ACTIONS(1267), + [anon_sym_polarscount_DASHnull] = ACTIONS(1248), + [anon_sym_polarscumulative] = ACTIONS(1248), + [anon_sym_polarsdatepart] = ACTIONS(1248), + [anon_sym_polarsdecimal] = ACTIONS(1248), + [anon_sym_polarsdrop] = ACTIONS(1267), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1248), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1248), + [anon_sym_polarsdummies] = ACTIONS(1248), + [anon_sym_polarsexplode] = ACTIONS(1248), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1248), + [anon_sym_polarsfetch] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1248), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1248), + [anon_sym_polarsfilter] = ACTIONS(1267), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1248), + [anon_sym_polarsfirst] = ACTIONS(1248), + [anon_sym_polarsflatten] = ACTIONS(1248), + [anon_sym_polarsget] = ACTIONS(1267), + [anon_sym_polarsget_DASHday] = ACTIONS(1248), + [anon_sym_polarsget_DASHhour] = ACTIONS(1248), + [anon_sym_polarsget_DASHminute] = ACTIONS(1248), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1248), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1248), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1248), + [anon_sym_polarsget_DASHweek] = ACTIONS(1267), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1248), + [anon_sym_polarsget_DASHyear] = ACTIONS(1248), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1248), + [anon_sym_polarsimplode] = ACTIONS(1248), + [anon_sym_polarsinteger] = ACTIONS(1248), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1248), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1248), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1248), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1248), + [anon_sym_polarsis_DASHin] = ACTIONS(1248), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHnull] = ACTIONS(1248), + [anon_sym_polarsis_DASHunique] = ACTIONS(1248), + [anon_sym_polarsjoin] = ACTIONS(1248), + [anon_sym_polarslast] = ACTIONS(1248), + [anon_sym_polarslen] = ACTIONS(1248), + [anon_sym_polarslit] = ACTIONS(1248), + [anon_sym_polarslowercase] = ACTIONS(1248), + [anon_sym_polarsmax] = ACTIONS(1248), + [anon_sym_polarsmean] = ACTIONS(1248), + [anon_sym_polarsmedian] = ACTIONS(1248), + [anon_sym_polarsmin] = ACTIONS(1248), + [anon_sym_polarsn_DASHunique] = ACTIONS(1248), + [anon_sym_polarsnot] = ACTIONS(1248), + [anon_sym_polarsopen] = ACTIONS(1248), + [anon_sym_polarsotherwise] = ACTIONS(1248), + [anon_sym_polarspivot] = ACTIONS(1248), + [anon_sym_polarsprofile] = ACTIONS(1248), + [anon_sym_polarsquantile] = ACTIONS(1248), + [anon_sym_polarsquery] = ACTIONS(1248), + [anon_sym_polarsrename] = ACTIONS(1248), + [anon_sym_polarsreplace] = ACTIONS(1267), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1248), + [anon_sym_polarsreverse] = ACTIONS(1248), + [anon_sym_polarsrolling] = ACTIONS(1248), + [anon_sym_polarssample] = ACTIONS(1248), + [anon_sym_polarssave] = ACTIONS(1248), + [anon_sym_polarsschema] = ACTIONS(1248), + [anon_sym_polarsselect] = ACTIONS(1248), + [anon_sym_polarsset] = ACTIONS(1267), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1248), + [anon_sym_polarsshape] = ACTIONS(1248), + [anon_sym_polarsshift] = ACTIONS(1248), + [anon_sym_polarsslice] = ACTIONS(1248), + [anon_sym_polarssort_DASHby] = ACTIONS(1248), + [anon_sym_polarsstd] = ACTIONS(1248), + [anon_sym_polarsstore_DASHget] = ACTIONS(1248), + [anon_sym_polarsstore_DASHls] = ACTIONS(1248), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1248), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1248), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1248), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1248), + [anon_sym_polarsstrftime] = ACTIONS(1248), + [anon_sym_polarssum] = ACTIONS(1267), + [anon_sym_polarssummary] = ACTIONS(1248), + [anon_sym_polarstake] = ACTIONS(1248), + [anon_sym_polarsunique] = ACTIONS(1248), + [anon_sym_polarsunnest] = ACTIONS(1248), + [anon_sym_polarsunpivot] = ACTIONS(1248), + [anon_sym_polarsuppercase] = ACTIONS(1248), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1248), + [anon_sym_polarsvar] = ACTIONS(1248), + [anon_sym_polarswhen] = ACTIONS(1248), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1248), + [anon_sym_querydb] = ACTIONS(1248), + [anon_sym_querygit] = ACTIONS(1248), + [anon_sym_queryjson] = ACTIONS(1248), + [anon_sym_queryweb] = ACTIONS(1267), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1248), + [anon_sym_queryxml] = ACTIONS(1248), + [anon_sym_randombinary] = ACTIONS(1248), + [anon_sym_randombool] = ACTIONS(1248), + [anon_sym_randomchars] = ACTIONS(1248), + [anon_sym_randomdice] = ACTIONS(1248), + [anon_sym_randomfloat] = ACTIONS(1248), + [anon_sym_randomint] = ACTIONS(1248), + [anon_sym_randomuuid] = ACTIONS(1248), + [anon_sym_rolldown] = ACTIONS(1248), + [anon_sym_rollleft] = ACTIONS(1248), + [anon_sym_rollright] = ACTIONS(1248), + [anon_sym_rollup] = ACTIONS(1248), + [anon_sym_scopealiases] = ACTIONS(1248), + [anon_sym_scopecommands] = ACTIONS(1248), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1248), + [anon_sym_scopeexterns] = ACTIONS(1248), + [anon_sym_scopemodules] = ACTIONS(1248), + [anon_sym_scopevariables] = ACTIONS(1248), + [anon_sym_seqchar] = ACTIONS(1248), + [anon_sym_seqdate] = ACTIONS(1248), + [anon_sym_skipuntil] = ACTIONS(1248), + [anon_sym_skipwhile] = ACTIONS(1248), + [anon_sym_splitcell_DASHpath] = ACTIONS(1248), + [anon_sym_splitchars] = ACTIONS(1248), + [anon_sym_splitcolumn] = ACTIONS(1248), + [anon_sym_splitlist] = ACTIONS(1248), + [anon_sym_splitrow] = ACTIONS(1248), + [anon_sym_splitwords] = ACTIONS(1248), + [anon_sym_storcreate] = ACTIONS(1248), + [anon_sym_stordelete] = ACTIONS(1248), + [anon_sym_storexport] = ACTIONS(1248), + [anon_sym_storimport] = ACTIONS(1248), + [anon_sym_storinsert] = ACTIONS(1248), + [anon_sym_storopen] = ACTIONS(1248), + [anon_sym_storreset] = ACTIONS(1248), + [anon_sym_storupdate] = ACTIONS(1248), + [anon_sym_strbexpand] = ACTIONS(1248), + [anon_sym_strcamel_DASHcase] = ACTIONS(1248), + [anon_sym_strcapitalize] = ACTIONS(1248), + [anon_sym_strcompress] = ACTIONS(1248), + [anon_sym_strcontains] = ACTIONS(1248), + [anon_sym_strdecompress] = ACTIONS(1248), + [anon_sym_strdedent] = ACTIONS(1248), + [anon_sym_strdeunicode] = ACTIONS(1248), + [anon_sym_strdistance] = ACTIONS(1248), + [anon_sym_strdowncase] = ACTIONS(1248), + [anon_sym_strends_DASHwith] = ACTIONS(1248), + [anon_sym_strexpand] = ACTIONS(1248), + [anon_sym_strindent] = ACTIONS(1248), + [anon_sym_strindex_DASHof] = ACTIONS(1248), + [anon_sym_strjoin] = ACTIONS(1248), + [anon_sym_strkebab_DASHcase] = ACTIONS(1248), + [anon_sym_strlength] = ACTIONS(1248), + [anon_sym_strpascal_DASHcase] = ACTIONS(1248), + [anon_sym_strreplace] = ACTIONS(1248), + [anon_sym_strreverse] = ACTIONS(1248), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strsimilarity] = ACTIONS(1248), + [anon_sym_strsnake_DASHcase] = ACTIONS(1248), + [anon_sym_strstarts_DASHwith] = ACTIONS(1248), + [anon_sym_strstats] = ACTIONS(1248), + [anon_sym_strsubstring] = ACTIONS(1248), + [anon_sym_strtitle_DASHcase] = ACTIONS(1248), + [anon_sym_strtrim] = ACTIONS(1248), + [anon_sym_strupcase] = ACTIONS(1248), + [anon_sym_strwrap] = ACTIONS(1248), + [anon_sym_syscpu] = ACTIONS(1248), + [anon_sym_sysdisks] = ACTIONS(1248), + [anon_sym_syshost] = ACTIONS(1248), + [anon_sym_sysmem] = ACTIONS(1248), + [anon_sym_sysnet] = ACTIONS(1248), + [anon_sym_systemp] = ACTIONS(1248), + [anon_sym_sysusers] = ACTIONS(1248), + [anon_sym_takeuntil] = ACTIONS(1248), + [anon_sym_takewhile] = ACTIONS(1248), + [anon_sym_termquery] = ACTIONS(1248), + [anon_sym_termsize] = ACTIONS(1248), + [anon_sym_tobz2] = ACTIONS(1248), + [anon_sym_tocsv] = ACTIONS(1248), + [anon_sym_togz] = ACTIONS(1248), + [anon_sym_tohtml] = ACTIONS(1248), + [anon_sym_tojson] = ACTIONS(1248), + [anon_sym_tomd] = ACTIONS(1248), + [anon_sym_tomsgpack] = ACTIONS(1267), + [anon_sym_tomsgpackz] = ACTIONS(1248), + [anon_sym_tonuon] = ACTIONS(1248), + [anon_sym_toparquet] = ACTIONS(1248), + [anon_sym_toplist] = ACTIONS(1248), + [anon_sym_topng] = ACTIONS(1248), + [anon_sym_totext] = ACTIONS(1248), + [anon_sym_totoml] = ACTIONS(1248), + [anon_sym_totsv] = ACTIONS(1248), + [anon_sym_toxml] = ACTIONS(1248), + [anon_sym_toxz] = ACTIONS(1248), + [anon_sym_toyaml] = ACTIONS(1248), + [anon_sym_tozst] = ACTIONS(1248), + [anon_sym_updatecells] = ACTIONS(1248), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1248), + [anon_sym_urldecode] = ACTIONS(1248), + [anon_sym_urlencode] = ACTIONS(1248), + [anon_sym_urljoin] = ACTIONS(1248), + [anon_sym_urlparse] = ACTIONS(1248), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1248), + [anon_sym_viewfiles] = ACTIONS(1248), + [anon_sym_viewir] = ACTIONS(1248), + [anon_sym_viewsource] = ACTIONS(1248), + [anon_sym_viewspan] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1248), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [286] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if] = STATE(4808), + [sym_block] = STATE(4812), + [sym__expression] = STATE(4812), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(4812), + [sym_comment] = STATE(286), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1308), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [462] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(623), - [sym_comment] = STATE(462), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [aux_sym_cmd_identifier_token37] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1897), + [287] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if] = STATE(4808), + [sym_block] = STATE(4812), + [sym__expression] = STATE(4812), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1251), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(4812), + [sym_comment] = STATE(287), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1278), + [aux_sym__val_number_decimal_token2] = ACTIONS(1280), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [463] = { - [sym_cell_path] = STATE(742), - [sym_path] = STATE(623), - [sym_comment] = STATE(463), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_alias] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_let_DASHenv] = ACTIONS(1911), - [anon_sym_mut] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [aux_sym_cmd_identifier_token1] = ACTIONS(1911), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1911), - [aux_sym_cmd_identifier_token9] = ACTIONS(1911), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1911), - [aux_sym_cmd_identifier_token13] = ACTIONS(1911), - [aux_sym_cmd_identifier_token14] = ACTIONS(1911), - [aux_sym_cmd_identifier_token15] = ACTIONS(1911), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1911), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [aux_sym_cmd_identifier_token37] = ACTIONS(1913), - [aux_sym_cmd_identifier_token38] = ACTIONS(1911), - [aux_sym_cmd_identifier_token39] = ACTIONS(1913), - [aux_sym_cmd_identifier_token40] = ACTIONS(1913), - [anon_sym_def] = ACTIONS(1911), - [anon_sym_export_DASHenv] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_use] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_in2] = ACTIONS(1911), - [anon_sym_loop] = ACTIONS(1911), - [anon_sym_make] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_catch] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_source] = ACTIONS(1911), - [anon_sym_source_DASHenv] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1911), - [anon_sym_hide] = ACTIONS(1911), - [anon_sym_hide_DASHenv] = ACTIONS(1911), - [anon_sym_overlay] = ACTIONS(1911), - [anon_sym_as] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1911), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1913), + [288] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if] = STATE(4808), + [sym_block] = STATE(4812), + [sym__expression] = STATE(4812), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1212), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(4812), + [sym_comment] = STATE(288), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1298), + [aux_sym__val_number_decimal_token3] = ACTIONS(1300), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [289] = { + [sym_cmd_identifier] = STATE(4789), + [sym__expression] = STATE(3954), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3990), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(845), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(5084), + [sym_comment] = STATE(289), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [465] = { - [sym_cell_path] = STATE(743), - [sym_path] = STATE(623), - [sym_comment] = STATE(465), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_alias] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_let_DASHenv] = ACTIONS(1915), - [anon_sym_mut] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [aux_sym_cmd_identifier_token1] = ACTIONS(1915), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1915), - [aux_sym_cmd_identifier_token9] = ACTIONS(1915), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1915), - [aux_sym_cmd_identifier_token13] = ACTIONS(1915), - [aux_sym_cmd_identifier_token14] = ACTIONS(1915), - [aux_sym_cmd_identifier_token15] = ACTIONS(1915), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1915), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [aux_sym_cmd_identifier_token37] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1915), - [anon_sym_export_DASHenv] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_make] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_source] = ACTIONS(1915), - [anon_sym_source_DASHenv] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_hide_DASHenv] = ACTIONS(1915), - [anon_sym_overlay] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1917), + [290] = { + [sym_cmd_identifier] = STATE(4751), + [sym__expression_parenthesized] = STATE(3945), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5013), + [sym_comment] = STATE(290), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(2058), - [aux_sym__immediate_decimal_token2] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [291] = { + [sym_cmd_identifier] = STATE(4751), + [sym__expression_parenthesized] = STATE(3945), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(860), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5013), + [sym_comment] = STATE(291), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1346), + [aux_sym__val_number_decimal_token2] = ACTIONS(1348), + [aux_sym__val_number_decimal_token3] = ACTIONS(1350), + [aux_sym__val_number_decimal_token4] = ACTIONS(1352), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [467] = { - [sym_cell_path] = STATE(744), - [sym_path] = STATE(623), - [sym_comment] = STATE(467), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1919), - [anon_sym_alias] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_let_DASHenv] = ACTIONS(1919), - [anon_sym_mut] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [aux_sym_cmd_identifier_token1] = ACTIONS(1919), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1919), - [aux_sym_cmd_identifier_token9] = ACTIONS(1919), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1919), - [aux_sym_cmd_identifier_token13] = ACTIONS(1919), - [aux_sym_cmd_identifier_token14] = ACTIONS(1919), - [aux_sym_cmd_identifier_token15] = ACTIONS(1919), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1919), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [aux_sym_cmd_identifier_token37] = ACTIONS(1921), - [aux_sym_cmd_identifier_token38] = ACTIONS(1919), - [aux_sym_cmd_identifier_token39] = ACTIONS(1921), - [aux_sym_cmd_identifier_token40] = ACTIONS(1921), - [anon_sym_def] = ACTIONS(1919), - [anon_sym_export_DASHenv] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_module] = ACTIONS(1919), - [anon_sym_use] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_in2] = ACTIONS(1919), - [anon_sym_loop] = ACTIONS(1919), - [anon_sym_make] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_do] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_else] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_catch] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_source] = ACTIONS(1919), - [anon_sym_source_DASHenv] = ACTIONS(1919), - [anon_sym_register] = ACTIONS(1919), - [anon_sym_hide] = ACTIONS(1919), - [anon_sym_hide_DASHenv] = ACTIONS(1919), - [anon_sym_overlay] = ACTIONS(1919), - [anon_sym_as] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1919), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1921), + [292] = { + [sym_comment] = STATE(292), + [anon_sym_export] = ACTIONS(1354), + [anon_sym_alias] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_let_DASHenv] = ACTIONS(1354), + [anon_sym_mut] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [aux_sym_cmd_identifier_token1] = ACTIONS(1354), + [aux_sym_cmd_identifier_token2] = ACTIONS(1356), + [aux_sym_cmd_identifier_token3] = ACTIONS(1356), + [aux_sym_cmd_identifier_token4] = ACTIONS(1356), + [aux_sym_cmd_identifier_token5] = ACTIONS(1356), + [aux_sym_cmd_identifier_token6] = ACTIONS(1356), + [aux_sym_cmd_identifier_token7] = ACTIONS(1356), + [aux_sym_cmd_identifier_token8] = ACTIONS(1354), + [aux_sym_cmd_identifier_token9] = ACTIONS(1354), + [aux_sym_cmd_identifier_token10] = ACTIONS(1356), + [aux_sym_cmd_identifier_token11] = ACTIONS(1356), + [aux_sym_cmd_identifier_token12] = ACTIONS(1354), + [aux_sym_cmd_identifier_token13] = ACTIONS(1354), + [aux_sym_cmd_identifier_token14] = ACTIONS(1354), + [aux_sym_cmd_identifier_token15] = ACTIONS(1354), + [aux_sym_cmd_identifier_token16] = ACTIONS(1356), + [aux_sym_cmd_identifier_token17] = ACTIONS(1356), + [aux_sym_cmd_identifier_token18] = ACTIONS(1354), + [aux_sym_cmd_identifier_token19] = ACTIONS(1356), + [aux_sym_cmd_identifier_token20] = ACTIONS(1356), + [aux_sym_cmd_identifier_token21] = ACTIONS(1356), + [aux_sym_cmd_identifier_token22] = ACTIONS(1356), + [aux_sym_cmd_identifier_token23] = ACTIONS(1356), + [aux_sym_cmd_identifier_token24] = ACTIONS(1356), + [aux_sym_cmd_identifier_token25] = ACTIONS(1356), + [aux_sym_cmd_identifier_token26] = ACTIONS(1356), + [aux_sym_cmd_identifier_token27] = ACTIONS(1356), + [aux_sym_cmd_identifier_token28] = ACTIONS(1356), + [aux_sym_cmd_identifier_token29] = ACTIONS(1356), + [aux_sym_cmd_identifier_token30] = ACTIONS(1356), + [aux_sym_cmd_identifier_token31] = ACTIONS(1356), + [aux_sym_cmd_identifier_token32] = ACTIONS(1354), + [aux_sym_cmd_identifier_token33] = ACTIONS(1356), + [aux_sym_cmd_identifier_token34] = ACTIONS(1354), + [aux_sym_cmd_identifier_token35] = ACTIONS(1356), + [aux_sym_cmd_identifier_token36] = ACTIONS(1356), + [aux_sym_cmd_identifier_token37] = ACTIONS(1356), + [aux_sym_cmd_identifier_token38] = ACTIONS(1354), + [aux_sym_cmd_identifier_token39] = ACTIONS(1356), + [aux_sym_cmd_identifier_token40] = ACTIONS(1356), + [sym__newline] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_def] = ACTIONS(1354), + [anon_sym_export_DASHenv] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_error] = ACTIONS(1354), + [anon_sym_DASH2] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_try] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_source] = ACTIONS(1354), + [anon_sym_source_DASHenv] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_hide] = ACTIONS(1354), + [anon_sym_hide_DASHenv] = ACTIONS(1354), + [anon_sym_overlay] = ACTIONS(1354), + [anon_sym_where] = ACTIONS(1356), + [aux_sym_expr_unary_token1] = ACTIONS(1356), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1356), + [anon_sym_DOT_DOT_LT] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [aux_sym__val_number_decimal_token1] = ACTIONS(1354), + [aux_sym__val_number_decimal_token2] = ACTIONS(1356), + [aux_sym__val_number_decimal_token3] = ACTIONS(1356), + [aux_sym__val_number_decimal_token4] = ACTIONS(1356), + [aux_sym__val_number_token1] = ACTIONS(1356), + [aux_sym__val_number_token2] = ACTIONS(1356), + [aux_sym__val_number_token3] = ACTIONS(1356), + [aux_sym__val_number_token4] = ACTIONS(1354), + [aux_sym__val_number_token5] = ACTIONS(1354), + [aux_sym__val_number_token6] = ACTIONS(1354), + [anon_sym_0b] = ACTIONS(1354), + [anon_sym_0o] = ACTIONS(1354), + [anon_sym_0x] = ACTIONS(1354), + [sym_val_date] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym__str_single_quotes] = ACTIONS(1356), + [sym__str_back_ticks] = ACTIONS(1356), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1356), + [aux_sym_env_var_token1] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_ansigradient] = ACTIONS(1356), + [anon_sym_ansilink] = ACTIONS(1356), + [anon_sym_ansistrip] = ACTIONS(1356), + [anon_sym_bitsand] = ACTIONS(1356), + [anon_sym_bitsnot] = ACTIONS(1356), + [anon_sym_bitsor] = ACTIONS(1356), + [anon_sym_bitsrol] = ACTIONS(1356), + [anon_sym_bitsror] = ACTIONS(1356), + [anon_sym_bitsshl] = ACTIONS(1356), + [anon_sym_bitsshr] = ACTIONS(1356), + [anon_sym_bitsxor] = ACTIONS(1356), + [anon_sym_bytesadd] = ACTIONS(1356), + [anon_sym_bytesat] = ACTIONS(1356), + [anon_sym_bytesbuild] = ACTIONS(1356), + [anon_sym_bytescollect] = ACTIONS(1356), + [anon_sym_bytesends_DASHwith] = ACTIONS(1356), + [anon_sym_bytesindex_DASHof] = ACTIONS(1356), + [anon_sym_byteslength] = ACTIONS(1356), + [anon_sym_bytesremove] = ACTIONS(1356), + [anon_sym_bytesreplace] = ACTIONS(1356), + [anon_sym_bytesreverse] = ACTIONS(1356), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1356), + [anon_sym_commandlineedit] = ACTIONS(1356), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1356), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1356), + [anon_sym_configenv] = ACTIONS(1356), + [anon_sym_confignu] = ACTIONS(1356), + [anon_sym_configreset] = ACTIONS(1356), + [anon_sym_dateformat] = ACTIONS(1356), + [anon_sym_datehumanize] = ACTIONS(1356), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1356), + [anon_sym_datenow] = ACTIONS(1356), + [anon_sym_dateto_DASHrecord] = ACTIONS(1356), + [anon_sym_dateto_DASHtable] = ACTIONS(1356), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1356), + [anon_sym_debuginfo] = ACTIONS(1356), + [anon_sym_debugprofile] = ACTIONS(1356), + [anon_sym_decodebase32] = ACTIONS(1354), + [anon_sym_decodebase32hex] = ACTIONS(1356), + [anon_sym_decodebase64] = ACTIONS(1356), + [anon_sym_decodehex] = ACTIONS(1356), + [anon_sym_detectcolumns] = ACTIONS(1356), + [anon_sym_dropcolumn] = ACTIONS(1356), + [anon_sym_dropnth] = ACTIONS(1356), + [anon_sym_dtadd] = ACTIONS(1356), + [anon_sym_dtdiff] = ACTIONS(1356), + [anon_sym_dtformat] = ACTIONS(1356), + [anon_sym_dtnow] = ACTIONS(1356), + [anon_sym_dtpart] = ACTIONS(1356), + [anon_sym_dtto] = ACTIONS(1356), + [anon_sym_dtutcnow] = ACTIONS(1356), + [anon_sym_eachwhile] = ACTIONS(1356), + [anon_sym_encodebase32] = ACTIONS(1354), + [anon_sym_encodebase32hex] = ACTIONS(1356), + [anon_sym_encodebase64] = ACTIONS(1356), + [anon_sym_encodehex] = ACTIONS(1356), + [anon_sym_errormake] = ACTIONS(1356), + [anon_sym_exploreir] = ACTIONS(1356), + [anon_sym_formatdate] = ACTIONS(1356), + [anon_sym_formatduration] = ACTIONS(1356), + [anon_sym_formatfilesize] = ACTIONS(1356), + [anon_sym_formatpattern] = ACTIONS(1356), + [anon_sym_frombz2] = ACTIONS(1356), + [anon_sym_fromcsv] = ACTIONS(1356), + [anon_sym_fromeml] = ACTIONS(1356), + [anon_sym_fromgz] = ACTIONS(1356), + [anon_sym_fromics] = ACTIONS(1356), + [anon_sym_fromini] = ACTIONS(1356), + [anon_sym_fromjson] = ACTIONS(1356), + [anon_sym_frommsgpack] = ACTIONS(1354), + [anon_sym_frommsgpackz] = ACTIONS(1356), + [anon_sym_fromnuon] = ACTIONS(1356), + [anon_sym_fromods] = ACTIONS(1356), + [anon_sym_fromparquet] = ACTIONS(1356), + [anon_sym_fromplist] = ACTIONS(1356), + [anon_sym_frompng] = ACTIONS(1356), + [anon_sym_fromssv] = ACTIONS(1356), + [anon_sym_fromtoml] = ACTIONS(1356), + [anon_sym_fromtsv] = ACTIONS(1356), + [anon_sym_fromurl] = ACTIONS(1356), + [anon_sym_fromvcf] = ACTIONS(1356), + [anon_sym_fromxlsx] = ACTIONS(1356), + [anon_sym_fromxml] = ACTIONS(1356), + [anon_sym_fromxz] = ACTIONS(1356), + [anon_sym_fromyaml] = ACTIONS(1356), + [anon_sym_fromyml] = ACTIONS(1356), + [anon_sym_fromzst] = ACTIONS(1356), + [anon_sym_hashmd5] = ACTIONS(1356), + [anon_sym_hashsha256] = ACTIONS(1356), + [anon_sym_helpaliases] = ACTIONS(1356), + [anon_sym_helpcommands] = ACTIONS(1356), + [anon_sym_helpescapes] = ACTIONS(1356), + [anon_sym_helpexterns] = ACTIONS(1356), + [anon_sym_helpmodules] = ACTIONS(1356), + [anon_sym_helpoperators] = ACTIONS(1356), + [anon_sym_historyimport] = ACTIONS(1356), + [anon_sym_historysession] = ACTIONS(1356), + [anon_sym_httpdelete] = ACTIONS(1356), + [anon_sym_httpget] = ACTIONS(1356), + [anon_sym_httphead] = ACTIONS(1356), + [anon_sym_httpoptions] = ACTIONS(1356), + [anon_sym_httppatch] = ACTIONS(1356), + [anon_sym_httppost] = ACTIONS(1356), + [anon_sym_httpput] = ACTIONS(1356), + [anon_sym_inputlist] = ACTIONS(1354), + [anon_sym_inputlisten] = ACTIONS(1356), + [anon_sym_intobinary] = ACTIONS(1356), + [anon_sym_intobits] = ACTIONS(1356), + [anon_sym_intobool] = ACTIONS(1356), + [anon_sym_intocell_DASHpath] = ACTIONS(1356), + [anon_sym_intodatetime] = ACTIONS(1356), + [anon_sym_intoduration] = ACTIONS(1356), + [anon_sym_intofilesize] = ACTIONS(1356), + [anon_sym_intofloat] = ACTIONS(1356), + [anon_sym_intoglob] = ACTIONS(1356), + [anon_sym_intoint] = ACTIONS(1356), + [anon_sym_intorecord] = ACTIONS(1356), + [anon_sym_intosqlite] = ACTIONS(1356), + [anon_sym_intostring] = ACTIONS(1356), + [anon_sym_intovalue] = ACTIONS(1356), + [anon_sym_jsonpath] = ACTIONS(1356), + [anon_sym_keybindingsdefault] = ACTIONS(1356), + [anon_sym_keybindingslist] = ACTIONS(1354), + [anon_sym_keybindingslisten] = ACTIONS(1356), + [anon_sym_mathabs] = ACTIONS(1356), + [anon_sym_matharccos] = ACTIONS(1354), + [anon_sym_matharccosh] = ACTIONS(1356), + [anon_sym_matharcsin] = ACTIONS(1354), + [anon_sym_matharcsinh] = ACTIONS(1356), + [anon_sym_matharctan] = ACTIONS(1354), + [anon_sym_matharctanh] = ACTIONS(1356), + [anon_sym_mathavg] = ACTIONS(1356), + [anon_sym_mathceil] = ACTIONS(1356), + [anon_sym_mathcos] = ACTIONS(1354), + [anon_sym_mathcosh] = ACTIONS(1356), + [anon_sym_mathexp] = ACTIONS(1356), + [anon_sym_mathfloor] = ACTIONS(1356), + [anon_sym_mathln] = ACTIONS(1356), + [anon_sym_mathlog] = ACTIONS(1356), + [anon_sym_mathmax] = ACTIONS(1356), + [anon_sym_mathmedian] = ACTIONS(1356), + [anon_sym_mathmin] = ACTIONS(1356), + [anon_sym_mathmode] = ACTIONS(1356), + [anon_sym_mathproduct] = ACTIONS(1356), + [anon_sym_mathround] = ACTIONS(1356), + [anon_sym_mathsin] = ACTIONS(1354), + [anon_sym_mathsinh] = ACTIONS(1356), + [anon_sym_mathsqrt] = ACTIONS(1356), + [anon_sym_mathstddev] = ACTIONS(1356), + [anon_sym_mathsum] = ACTIONS(1356), + [anon_sym_mathtan] = ACTIONS(1354), + [anon_sym_mathtanh] = ACTIONS(1356), + [anon_sym_mathvariance] = ACTIONS(1356), + [anon_sym_metadataaccess] = ACTIONS(1356), + [anon_sym_metadataset] = ACTIONS(1356), + [anon_sym_pathbasename] = ACTIONS(1356), + [anon_sym_pathdirname] = ACTIONS(1356), + [anon_sym_pathexists] = ACTIONS(1356), + [anon_sym_pathexpand] = ACTIONS(1356), + [anon_sym_pathjoin] = ACTIONS(1356), + [anon_sym_pathparse] = ACTIONS(1356), + [anon_sym_pathrelative_DASHto] = ACTIONS(1356), + [anon_sym_pathsplit] = ACTIONS(1356), + [anon_sym_pathtype] = ACTIONS(1356), + [anon_sym_pluginadd] = ACTIONS(1356), + [anon_sym_pluginlist] = ACTIONS(1356), + [anon_sym_pluginrm] = ACTIONS(1356), + [anon_sym_pluginstop] = ACTIONS(1356), + [anon_sym_polarsagg] = ACTIONS(1354), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1356), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1356), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1356), + [anon_sym_polarsappend] = ACTIONS(1356), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1356), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1356), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1356), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1356), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1356), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1356), + [anon_sym_polarsas] = ACTIONS(1354), + [anon_sym_polarsas_DASHdate] = ACTIONS(1354), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1356), + [anon_sym_polarscache] = ACTIONS(1356), + [anon_sym_polarscast] = ACTIONS(1356), + [anon_sym_polarscol] = ACTIONS(1354), + [anon_sym_polarscollect] = ACTIONS(1356), + [anon_sym_polarscolumns] = ACTIONS(1356), + [anon_sym_polarsconcat] = ACTIONS(1354), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1356), + [anon_sym_polarscontains] = ACTIONS(1356), + [anon_sym_polarscount] = ACTIONS(1354), + [anon_sym_polarscount_DASHnull] = ACTIONS(1356), + [anon_sym_polarscumulative] = ACTIONS(1356), + [anon_sym_polarsdatepart] = ACTIONS(1356), + [anon_sym_polarsdecimal] = ACTIONS(1356), + [anon_sym_polarsdrop] = ACTIONS(1354), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1356), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1356), + [anon_sym_polarsdummies] = ACTIONS(1356), + [anon_sym_polarsexplode] = ACTIONS(1356), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1356), + [anon_sym_polarsfetch] = ACTIONS(1356), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1356), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1356), + [anon_sym_polarsfilter] = ACTIONS(1354), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1356), + [anon_sym_polarsfirst] = ACTIONS(1356), + [anon_sym_polarsflatten] = ACTIONS(1356), + [anon_sym_polarsget] = ACTIONS(1354), + [anon_sym_polarsget_DASHday] = ACTIONS(1356), + [anon_sym_polarsget_DASHhour] = ACTIONS(1356), + [anon_sym_polarsget_DASHminute] = ACTIONS(1356), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1356), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1356), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1356), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1356), + [anon_sym_polarsget_DASHweek] = ACTIONS(1354), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1356), + [anon_sym_polarsget_DASHyear] = ACTIONS(1356), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1356), + [anon_sym_polarsimplode] = ACTIONS(1356), + [anon_sym_polarsinteger] = ACTIONS(1356), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1356), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1356), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1356), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1356), + [anon_sym_polarsis_DASHin] = ACTIONS(1356), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1356), + [anon_sym_polarsis_DASHnull] = ACTIONS(1356), + [anon_sym_polarsis_DASHunique] = ACTIONS(1356), + [anon_sym_polarsjoin] = ACTIONS(1356), + [anon_sym_polarslast] = ACTIONS(1356), + [anon_sym_polarslen] = ACTIONS(1356), + [anon_sym_polarslit] = ACTIONS(1356), + [anon_sym_polarslowercase] = ACTIONS(1356), + [anon_sym_polarsmax] = ACTIONS(1356), + [anon_sym_polarsmean] = ACTIONS(1356), + [anon_sym_polarsmedian] = ACTIONS(1356), + [anon_sym_polarsmin] = ACTIONS(1356), + [anon_sym_polarsn_DASHunique] = ACTIONS(1356), + [anon_sym_polarsnot] = ACTIONS(1356), + [anon_sym_polarsopen] = ACTIONS(1356), + [anon_sym_polarsotherwise] = ACTIONS(1356), + [anon_sym_polarspivot] = ACTIONS(1356), + [anon_sym_polarsprofile] = ACTIONS(1356), + [anon_sym_polarsquantile] = ACTIONS(1356), + [anon_sym_polarsquery] = ACTIONS(1356), + [anon_sym_polarsrename] = ACTIONS(1356), + [anon_sym_polarsreplace] = ACTIONS(1354), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1356), + [anon_sym_polarsreverse] = ACTIONS(1356), + [anon_sym_polarsrolling] = ACTIONS(1356), + [anon_sym_polarssample] = ACTIONS(1356), + [anon_sym_polarssave] = ACTIONS(1356), + [anon_sym_polarsschema] = ACTIONS(1356), + [anon_sym_polarsselect] = ACTIONS(1356), + [anon_sym_polarsset] = ACTIONS(1354), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1356), + [anon_sym_polarsshape] = ACTIONS(1356), + [anon_sym_polarsshift] = ACTIONS(1356), + [anon_sym_polarsslice] = ACTIONS(1356), + [anon_sym_polarssort_DASHby] = ACTIONS(1356), + [anon_sym_polarsstd] = ACTIONS(1356), + [anon_sym_polarsstore_DASHget] = ACTIONS(1356), + [anon_sym_polarsstore_DASHls] = ACTIONS(1356), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1356), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1356), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1356), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1356), + [anon_sym_polarsstrftime] = ACTIONS(1356), + [anon_sym_polarssum] = ACTIONS(1354), + [anon_sym_polarssummary] = ACTIONS(1356), + [anon_sym_polarstake] = ACTIONS(1356), + [anon_sym_polarsunique] = ACTIONS(1356), + [anon_sym_polarsunnest] = ACTIONS(1356), + [anon_sym_polarsunpivot] = ACTIONS(1356), + [anon_sym_polarsuppercase] = ACTIONS(1356), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1356), + [anon_sym_polarsvar] = ACTIONS(1356), + [anon_sym_polarswhen] = ACTIONS(1356), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1356), + [anon_sym_querydb] = ACTIONS(1356), + [anon_sym_querygit] = ACTIONS(1356), + [anon_sym_queryjson] = ACTIONS(1356), + [anon_sym_queryweb] = ACTIONS(1354), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1356), + [anon_sym_queryxml] = ACTIONS(1356), + [anon_sym_randombinary] = ACTIONS(1356), + [anon_sym_randombool] = ACTIONS(1356), + [anon_sym_randomchars] = ACTIONS(1356), + [anon_sym_randomdice] = ACTIONS(1356), + [anon_sym_randomfloat] = ACTIONS(1356), + [anon_sym_randomint] = ACTIONS(1356), + [anon_sym_randomuuid] = ACTIONS(1356), + [anon_sym_rolldown] = ACTIONS(1356), + [anon_sym_rollleft] = ACTIONS(1356), + [anon_sym_rollright] = ACTIONS(1356), + [anon_sym_rollup] = ACTIONS(1356), + [anon_sym_scopealiases] = ACTIONS(1356), + [anon_sym_scopecommands] = ACTIONS(1356), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1356), + [anon_sym_scopeexterns] = ACTIONS(1356), + [anon_sym_scopemodules] = ACTIONS(1356), + [anon_sym_scopevariables] = ACTIONS(1356), + [anon_sym_seqchar] = ACTIONS(1356), + [anon_sym_seqdate] = ACTIONS(1356), + [anon_sym_skipuntil] = ACTIONS(1356), + [anon_sym_skipwhile] = ACTIONS(1356), + [anon_sym_splitcell_DASHpath] = ACTIONS(1356), + [anon_sym_splitchars] = ACTIONS(1356), + [anon_sym_splitcolumn] = ACTIONS(1356), + [anon_sym_splitlist] = ACTIONS(1356), + [anon_sym_splitrow] = ACTIONS(1356), + [anon_sym_splitwords] = ACTIONS(1356), + [anon_sym_storcreate] = ACTIONS(1356), + [anon_sym_stordelete] = ACTIONS(1356), + [anon_sym_storexport] = ACTIONS(1356), + [anon_sym_storimport] = ACTIONS(1356), + [anon_sym_storinsert] = ACTIONS(1356), + [anon_sym_storopen] = ACTIONS(1356), + [anon_sym_storreset] = ACTIONS(1356), + [anon_sym_storupdate] = ACTIONS(1356), + [anon_sym_strbexpand] = ACTIONS(1356), + [anon_sym_strcamel_DASHcase] = ACTIONS(1356), + [anon_sym_strcapitalize] = ACTIONS(1356), + [anon_sym_strcompress] = ACTIONS(1356), + [anon_sym_strcontains] = ACTIONS(1356), + [anon_sym_strdecompress] = ACTIONS(1356), + [anon_sym_strdedent] = ACTIONS(1356), + [anon_sym_strdeunicode] = ACTIONS(1356), + [anon_sym_strdistance] = ACTIONS(1356), + [anon_sym_strdowncase] = ACTIONS(1356), + [anon_sym_strends_DASHwith] = ACTIONS(1356), + [anon_sym_strexpand] = ACTIONS(1356), + [anon_sym_strindent] = ACTIONS(1356), + [anon_sym_strindex_DASHof] = ACTIONS(1356), + [anon_sym_strjoin] = ACTIONS(1356), + [anon_sym_strkebab_DASHcase] = ACTIONS(1356), + [anon_sym_strlength] = ACTIONS(1356), + [anon_sym_strpascal_DASHcase] = ACTIONS(1356), + [anon_sym_strreplace] = ACTIONS(1356), + [anon_sym_strreverse] = ACTIONS(1356), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1356), + [anon_sym_strsimilarity] = ACTIONS(1356), + [anon_sym_strsnake_DASHcase] = ACTIONS(1356), + [anon_sym_strstarts_DASHwith] = ACTIONS(1356), + [anon_sym_strstats] = ACTIONS(1356), + [anon_sym_strsubstring] = ACTIONS(1356), + [anon_sym_strtitle_DASHcase] = ACTIONS(1356), + [anon_sym_strtrim] = ACTIONS(1356), + [anon_sym_strupcase] = ACTIONS(1356), + [anon_sym_strwrap] = ACTIONS(1356), + [anon_sym_syscpu] = ACTIONS(1356), + [anon_sym_sysdisks] = ACTIONS(1356), + [anon_sym_syshost] = ACTIONS(1356), + [anon_sym_sysmem] = ACTIONS(1356), + [anon_sym_sysnet] = ACTIONS(1356), + [anon_sym_systemp] = ACTIONS(1356), + [anon_sym_sysusers] = ACTIONS(1356), + [anon_sym_takeuntil] = ACTIONS(1356), + [anon_sym_takewhile] = ACTIONS(1356), + [anon_sym_termquery] = ACTIONS(1356), + [anon_sym_termsize] = ACTIONS(1356), + [anon_sym_tobz2] = ACTIONS(1356), + [anon_sym_tocsv] = ACTIONS(1356), + [anon_sym_togz] = ACTIONS(1356), + [anon_sym_tohtml] = ACTIONS(1356), + [anon_sym_tojson] = ACTIONS(1356), + [anon_sym_tomd] = ACTIONS(1356), + [anon_sym_tomsgpack] = ACTIONS(1354), + [anon_sym_tomsgpackz] = ACTIONS(1356), + [anon_sym_tonuon] = ACTIONS(1356), + [anon_sym_toparquet] = ACTIONS(1356), + [anon_sym_toplist] = ACTIONS(1356), + [anon_sym_topng] = ACTIONS(1356), + [anon_sym_totext] = ACTIONS(1356), + [anon_sym_totoml] = ACTIONS(1356), + [anon_sym_totsv] = ACTIONS(1356), + [anon_sym_toxml] = ACTIONS(1356), + [anon_sym_toxz] = ACTIONS(1356), + [anon_sym_toyaml] = ACTIONS(1356), + [anon_sym_tozst] = ACTIONS(1356), + [anon_sym_updatecells] = ACTIONS(1356), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1356), + [anon_sym_urldecode] = ACTIONS(1356), + [anon_sym_urlencode] = ACTIONS(1356), + [anon_sym_urljoin] = ACTIONS(1356), + [anon_sym_urlparse] = ACTIONS(1356), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1356), + [anon_sym_viewfiles] = ACTIONS(1356), + [anon_sym_viewir] = ACTIONS(1356), + [anon_sym_viewsource] = ACTIONS(1356), + [anon_sym_viewspan] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1356), }, - [468] = { - [sym_cell_path] = STATE(745), - [sym_path] = STATE(623), - [sym_comment] = STATE(468), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1929), - [aux_sym_cmd_identifier_token3] = ACTIONS(1929), - [aux_sym_cmd_identifier_token4] = ACTIONS(1929), - [aux_sym_cmd_identifier_token5] = ACTIONS(1929), - [aux_sym_cmd_identifier_token6] = ACTIONS(1929), - [aux_sym_cmd_identifier_token7] = ACTIONS(1929), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1929), - [aux_sym_cmd_identifier_token11] = ACTIONS(1929), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1929), - [aux_sym_cmd_identifier_token17] = ACTIONS(1929), - [aux_sym_cmd_identifier_token18] = ACTIONS(1929), - [aux_sym_cmd_identifier_token19] = ACTIONS(1929), - [aux_sym_cmd_identifier_token20] = ACTIONS(1929), - [aux_sym_cmd_identifier_token21] = ACTIONS(1929), - [aux_sym_cmd_identifier_token22] = ACTIONS(1929), - [aux_sym_cmd_identifier_token23] = ACTIONS(1929), - [aux_sym_cmd_identifier_token24] = ACTIONS(1929), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1929), - [aux_sym_cmd_identifier_token27] = ACTIONS(1929), - [aux_sym_cmd_identifier_token28] = ACTIONS(1929), - [aux_sym_cmd_identifier_token29] = ACTIONS(1929), - [aux_sym_cmd_identifier_token30] = ACTIONS(1929), - [aux_sym_cmd_identifier_token31] = ACTIONS(1929), - [aux_sym_cmd_identifier_token32] = ACTIONS(1929), - [aux_sym_cmd_identifier_token33] = ACTIONS(1929), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1929), - [aux_sym_cmd_identifier_token36] = ACTIONS(1929), - [aux_sym_cmd_identifier_token37] = ACTIONS(1929), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1929), - [aux_sym_cmd_identifier_token40] = ACTIONS(1929), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1929), + [293] = { + [sym_cmd_identifier] = STATE(4751), + [sym__expression_parenthesized] = STATE(3945), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3865), + [sym_expr_parenthesized] = STATE(2139), + [sym_val_range] = STATE(3950), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(6937), + [sym__command_parenthesized] = STATE(5013), + [sym_comment] = STATE(293), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_ansigradient] = ACTIONS(489), + [anon_sym_ansilink] = ACTIONS(489), + [anon_sym_ansistrip] = ACTIONS(489), + [anon_sym_bitsand] = ACTIONS(489), + [anon_sym_bitsnot] = ACTIONS(489), + [anon_sym_bitsor] = ACTIONS(489), + [anon_sym_bitsrol] = ACTIONS(489), + [anon_sym_bitsror] = ACTIONS(489), + [anon_sym_bitsshl] = ACTIONS(489), + [anon_sym_bitsshr] = ACTIONS(489), + [anon_sym_bitsxor] = ACTIONS(489), + [anon_sym_bytesadd] = ACTIONS(489), + [anon_sym_bytesat] = ACTIONS(489), + [anon_sym_bytesbuild] = ACTIONS(489), + [anon_sym_bytescollect] = ACTIONS(489), + [anon_sym_bytesends_DASHwith] = ACTIONS(489), + [anon_sym_bytesindex_DASHof] = ACTIONS(489), + [anon_sym_byteslength] = ACTIONS(489), + [anon_sym_bytesremove] = ACTIONS(489), + [anon_sym_bytesreplace] = ACTIONS(489), + [anon_sym_bytesreverse] = ACTIONS(489), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(489), + [anon_sym_commandlineedit] = ACTIONS(489), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(489), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(489), + [anon_sym_configenv] = ACTIONS(489), + [anon_sym_confignu] = ACTIONS(489), + [anon_sym_configreset] = ACTIONS(489), + [anon_sym_dateformat] = ACTIONS(489), + [anon_sym_datehumanize] = ACTIONS(489), + [anon_sym_datelist_DASHtimezone] = ACTIONS(489), + [anon_sym_datenow] = ACTIONS(489), + [anon_sym_dateto_DASHrecord] = ACTIONS(489), + [anon_sym_dateto_DASHtable] = ACTIONS(489), + [anon_sym_dateto_DASHtimezone] = ACTIONS(489), + [anon_sym_debuginfo] = ACTIONS(489), + [anon_sym_debugprofile] = ACTIONS(489), + [anon_sym_decodebase32] = ACTIONS(491), + [anon_sym_decodebase32hex] = ACTIONS(489), + [anon_sym_decodebase64] = ACTIONS(489), + [anon_sym_decodehex] = ACTIONS(489), + [anon_sym_detectcolumns] = ACTIONS(489), + [anon_sym_dropcolumn] = ACTIONS(489), + [anon_sym_dropnth] = ACTIONS(489), + [anon_sym_dtadd] = ACTIONS(489), + [anon_sym_dtdiff] = ACTIONS(489), + [anon_sym_dtformat] = ACTIONS(489), + [anon_sym_dtnow] = ACTIONS(489), + [anon_sym_dtpart] = ACTIONS(489), + [anon_sym_dtto] = ACTIONS(489), + [anon_sym_dtutcnow] = ACTIONS(489), + [anon_sym_eachwhile] = ACTIONS(489), + [anon_sym_encodebase32] = ACTIONS(491), + [anon_sym_encodebase32hex] = ACTIONS(489), + [anon_sym_encodebase64] = ACTIONS(489), + [anon_sym_encodehex] = ACTIONS(489), + [anon_sym_errormake] = ACTIONS(489), + [anon_sym_exploreir] = ACTIONS(489), + [anon_sym_formatdate] = ACTIONS(489), + [anon_sym_formatduration] = ACTIONS(489), + [anon_sym_formatfilesize] = ACTIONS(489), + [anon_sym_formatpattern] = ACTIONS(489), + [anon_sym_frombz2] = ACTIONS(489), + [anon_sym_fromcsv] = ACTIONS(489), + [anon_sym_fromeml] = ACTIONS(489), + [anon_sym_fromgz] = ACTIONS(489), + [anon_sym_fromics] = ACTIONS(489), + [anon_sym_fromini] = ACTIONS(489), + [anon_sym_fromjson] = ACTIONS(489), + [anon_sym_frommsgpack] = ACTIONS(491), + [anon_sym_frommsgpackz] = ACTIONS(489), + [anon_sym_fromnuon] = ACTIONS(489), + [anon_sym_fromods] = ACTIONS(489), + [anon_sym_fromparquet] = ACTIONS(489), + [anon_sym_fromplist] = ACTIONS(489), + [anon_sym_frompng] = ACTIONS(489), + [anon_sym_fromssv] = ACTIONS(489), + [anon_sym_fromtoml] = ACTIONS(489), + [anon_sym_fromtsv] = ACTIONS(489), + [anon_sym_fromurl] = ACTIONS(489), + [anon_sym_fromvcf] = ACTIONS(489), + [anon_sym_fromxlsx] = ACTIONS(489), + [anon_sym_fromxml] = ACTIONS(489), + [anon_sym_fromxz] = ACTIONS(489), + [anon_sym_fromyaml] = ACTIONS(489), + [anon_sym_fromyml] = ACTIONS(489), + [anon_sym_fromzst] = ACTIONS(489), + [anon_sym_hashmd5] = ACTIONS(489), + [anon_sym_hashsha256] = ACTIONS(489), + [anon_sym_helpaliases] = ACTIONS(489), + [anon_sym_helpcommands] = ACTIONS(489), + [anon_sym_helpescapes] = ACTIONS(489), + [anon_sym_helpexterns] = ACTIONS(489), + [anon_sym_helpmodules] = ACTIONS(489), + [anon_sym_helpoperators] = ACTIONS(489), + [anon_sym_historyimport] = ACTIONS(489), + [anon_sym_historysession] = ACTIONS(489), + [anon_sym_httpdelete] = ACTIONS(489), + [anon_sym_httpget] = ACTIONS(489), + [anon_sym_httphead] = ACTIONS(489), + [anon_sym_httpoptions] = ACTIONS(489), + [anon_sym_httppatch] = ACTIONS(489), + [anon_sym_httppost] = ACTIONS(489), + [anon_sym_httpput] = ACTIONS(489), + [anon_sym_inputlist] = ACTIONS(491), + [anon_sym_inputlisten] = ACTIONS(489), + [anon_sym_intobinary] = ACTIONS(489), + [anon_sym_intobits] = ACTIONS(489), + [anon_sym_intobool] = ACTIONS(489), + [anon_sym_intocell_DASHpath] = ACTIONS(489), + [anon_sym_intodatetime] = ACTIONS(489), + [anon_sym_intoduration] = ACTIONS(489), + [anon_sym_intofilesize] = ACTIONS(489), + [anon_sym_intofloat] = ACTIONS(489), + [anon_sym_intoglob] = ACTIONS(489), + [anon_sym_intoint] = ACTIONS(489), + [anon_sym_intorecord] = ACTIONS(489), + [anon_sym_intosqlite] = ACTIONS(489), + [anon_sym_intostring] = ACTIONS(489), + [anon_sym_intovalue] = ACTIONS(489), + [anon_sym_jsonpath] = ACTIONS(489), + [anon_sym_keybindingsdefault] = ACTIONS(489), + [anon_sym_keybindingslist] = ACTIONS(491), + [anon_sym_keybindingslisten] = ACTIONS(489), + [anon_sym_mathabs] = ACTIONS(489), + [anon_sym_matharccos] = ACTIONS(491), + [anon_sym_matharccosh] = ACTIONS(489), + [anon_sym_matharcsin] = ACTIONS(491), + [anon_sym_matharcsinh] = ACTIONS(489), + [anon_sym_matharctan] = ACTIONS(491), + [anon_sym_matharctanh] = ACTIONS(489), + [anon_sym_mathavg] = ACTIONS(489), + [anon_sym_mathceil] = ACTIONS(489), + [anon_sym_mathcos] = ACTIONS(491), + [anon_sym_mathcosh] = ACTIONS(489), + [anon_sym_mathexp] = ACTIONS(489), + [anon_sym_mathfloor] = ACTIONS(489), + [anon_sym_mathln] = ACTIONS(489), + [anon_sym_mathlog] = ACTIONS(489), + [anon_sym_mathmax] = ACTIONS(489), + [anon_sym_mathmedian] = ACTIONS(489), + [anon_sym_mathmin] = ACTIONS(489), + [anon_sym_mathmode] = ACTIONS(489), + [anon_sym_mathproduct] = ACTIONS(489), + [anon_sym_mathround] = ACTIONS(489), + [anon_sym_mathsin] = ACTIONS(491), + [anon_sym_mathsinh] = ACTIONS(489), + [anon_sym_mathsqrt] = ACTIONS(489), + [anon_sym_mathstddev] = ACTIONS(489), + [anon_sym_mathsum] = ACTIONS(489), + [anon_sym_mathtan] = ACTIONS(491), + [anon_sym_mathtanh] = ACTIONS(489), + [anon_sym_mathvariance] = ACTIONS(489), + [anon_sym_metadataaccess] = ACTIONS(489), + [anon_sym_metadataset] = ACTIONS(489), + [anon_sym_pathbasename] = ACTIONS(489), + [anon_sym_pathdirname] = ACTIONS(489), + [anon_sym_pathexists] = ACTIONS(489), + [anon_sym_pathexpand] = ACTIONS(489), + [anon_sym_pathjoin] = ACTIONS(489), + [anon_sym_pathparse] = ACTIONS(489), + [anon_sym_pathrelative_DASHto] = ACTIONS(489), + [anon_sym_pathsplit] = ACTIONS(489), + [anon_sym_pathtype] = ACTIONS(489), + [anon_sym_pluginadd] = ACTIONS(489), + [anon_sym_pluginlist] = ACTIONS(489), + [anon_sym_pluginrm] = ACTIONS(489), + [anon_sym_pluginstop] = ACTIONS(489), + [anon_sym_polarsagg] = ACTIONS(491), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(489), + [anon_sym_polarsall_DASHfalse] = ACTIONS(489), + [anon_sym_polarsall_DASHtrue] = ACTIONS(489), + [anon_sym_polarsappend] = ACTIONS(489), + [anon_sym_polarsarg_DASHmax] = ACTIONS(489), + [anon_sym_polarsarg_DASHmin] = ACTIONS(489), + [anon_sym_polarsarg_DASHsort] = ACTIONS(489), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(489), + [anon_sym_polarsarg_DASHunique] = ACTIONS(489), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(489), + [anon_sym_polarsas] = ACTIONS(491), + [anon_sym_polarsas_DASHdate] = ACTIONS(491), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(489), + [anon_sym_polarscache] = ACTIONS(489), + [anon_sym_polarscast] = ACTIONS(489), + [anon_sym_polarscol] = ACTIONS(491), + [anon_sym_polarscollect] = ACTIONS(489), + [anon_sym_polarscolumns] = ACTIONS(489), + [anon_sym_polarsconcat] = ACTIONS(491), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(489), + [anon_sym_polarscontains] = ACTIONS(489), + [anon_sym_polarscount] = ACTIONS(491), + [anon_sym_polarscount_DASHnull] = ACTIONS(489), + [anon_sym_polarscumulative] = ACTIONS(489), + [anon_sym_polarsdatepart] = ACTIONS(489), + [anon_sym_polarsdecimal] = ACTIONS(489), + [anon_sym_polarsdrop] = ACTIONS(491), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(489), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(489), + [anon_sym_polarsdummies] = ACTIONS(489), + [anon_sym_polarsexplode] = ACTIONS(489), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(489), + [anon_sym_polarsfetch] = ACTIONS(489), + [anon_sym_polarsfill_DASHnan] = ACTIONS(489), + [anon_sym_polarsfill_DASHnull] = ACTIONS(489), + [anon_sym_polarsfilter] = ACTIONS(491), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(489), + [anon_sym_polarsfirst] = ACTIONS(489), + [anon_sym_polarsflatten] = ACTIONS(489), + [anon_sym_polarsget] = ACTIONS(491), + [anon_sym_polarsget_DASHday] = ACTIONS(489), + [anon_sym_polarsget_DASHhour] = ACTIONS(489), + [anon_sym_polarsget_DASHminute] = ACTIONS(489), + [anon_sym_polarsget_DASHmonth] = ACTIONS(489), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(489), + [anon_sym_polarsget_DASHordinal] = ACTIONS(489), + [anon_sym_polarsget_DASHsecond] = ACTIONS(489), + [anon_sym_polarsget_DASHweek] = ACTIONS(491), + [anon_sym_polarsget_DASHweekday] = ACTIONS(489), + [anon_sym_polarsget_DASHyear] = ACTIONS(489), + [anon_sym_polarsgroup_DASHby] = ACTIONS(489), + [anon_sym_polarsimplode] = ACTIONS(489), + [anon_sym_polarsinteger] = ACTIONS(489), + [anon_sym_polarsinto_DASHdf] = ACTIONS(489), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(489), + [anon_sym_polarsinto_DASHnu] = ACTIONS(489), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(489), + [anon_sym_polarsis_DASHin] = ACTIONS(489), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHnull] = ACTIONS(489), + [anon_sym_polarsis_DASHunique] = ACTIONS(489), + [anon_sym_polarsjoin] = ACTIONS(489), + [anon_sym_polarslast] = ACTIONS(489), + [anon_sym_polarslen] = ACTIONS(489), + [anon_sym_polarslit] = ACTIONS(489), + [anon_sym_polarslowercase] = ACTIONS(489), + [anon_sym_polarsmax] = ACTIONS(489), + [anon_sym_polarsmean] = ACTIONS(489), + [anon_sym_polarsmedian] = ACTIONS(489), + [anon_sym_polarsmin] = ACTIONS(489), + [anon_sym_polarsn_DASHunique] = ACTIONS(489), + [anon_sym_polarsnot] = ACTIONS(489), + [anon_sym_polarsopen] = ACTIONS(489), + [anon_sym_polarsotherwise] = ACTIONS(489), + [anon_sym_polarspivot] = ACTIONS(489), + [anon_sym_polarsprofile] = ACTIONS(489), + [anon_sym_polarsquantile] = ACTIONS(489), + [anon_sym_polarsquery] = ACTIONS(489), + [anon_sym_polarsrename] = ACTIONS(489), + [anon_sym_polarsreplace] = ACTIONS(491), + [anon_sym_polarsreplace_DASHall] = ACTIONS(489), + [anon_sym_polarsreverse] = ACTIONS(489), + [anon_sym_polarsrolling] = ACTIONS(489), + [anon_sym_polarssample] = ACTIONS(489), + [anon_sym_polarssave] = ACTIONS(489), + [anon_sym_polarsschema] = ACTIONS(489), + [anon_sym_polarsselect] = ACTIONS(489), + [anon_sym_polarsset] = ACTIONS(491), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(489), + [anon_sym_polarsshape] = ACTIONS(489), + [anon_sym_polarsshift] = ACTIONS(489), + [anon_sym_polarsslice] = ACTIONS(489), + [anon_sym_polarssort_DASHby] = ACTIONS(489), + [anon_sym_polarsstd] = ACTIONS(489), + [anon_sym_polarsstore_DASHget] = ACTIONS(489), + [anon_sym_polarsstore_DASHls] = ACTIONS(489), + [anon_sym_polarsstore_DASHrm] = ACTIONS(489), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(489), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(489), + [anon_sym_polarsstr_DASHslice] = ACTIONS(489), + [anon_sym_polarsstrftime] = ACTIONS(489), + [anon_sym_polarssum] = ACTIONS(491), + [anon_sym_polarssummary] = ACTIONS(489), + [anon_sym_polarstake] = ACTIONS(489), + [anon_sym_polarsunique] = ACTIONS(489), + [anon_sym_polarsunnest] = ACTIONS(489), + [anon_sym_polarsunpivot] = ACTIONS(489), + [anon_sym_polarsuppercase] = ACTIONS(489), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(489), + [anon_sym_polarsvar] = ACTIONS(489), + [anon_sym_polarswhen] = ACTIONS(489), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(489), + [anon_sym_querydb] = ACTIONS(489), + [anon_sym_querygit] = ACTIONS(489), + [anon_sym_queryjson] = ACTIONS(489), + [anon_sym_queryweb] = ACTIONS(491), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(489), + [anon_sym_queryxml] = ACTIONS(489), + [anon_sym_randombinary] = ACTIONS(489), + [anon_sym_randombool] = ACTIONS(489), + [anon_sym_randomchars] = ACTIONS(489), + [anon_sym_randomdice] = ACTIONS(489), + [anon_sym_randomfloat] = ACTIONS(489), + [anon_sym_randomint] = ACTIONS(489), + [anon_sym_randomuuid] = ACTIONS(489), + [anon_sym_rolldown] = ACTIONS(489), + [anon_sym_rollleft] = ACTIONS(489), + [anon_sym_rollright] = ACTIONS(489), + [anon_sym_rollup] = ACTIONS(489), + [anon_sym_scopealiases] = ACTIONS(489), + [anon_sym_scopecommands] = ACTIONS(489), + [anon_sym_scopeengine_DASHstats] = ACTIONS(489), + [anon_sym_scopeexterns] = ACTIONS(489), + [anon_sym_scopemodules] = ACTIONS(489), + [anon_sym_scopevariables] = ACTIONS(489), + [anon_sym_seqchar] = ACTIONS(489), + [anon_sym_seqdate] = ACTIONS(489), + [anon_sym_skipuntil] = ACTIONS(489), + [anon_sym_skipwhile] = ACTIONS(489), + [anon_sym_splitcell_DASHpath] = ACTIONS(489), + [anon_sym_splitchars] = ACTIONS(489), + [anon_sym_splitcolumn] = ACTIONS(489), + [anon_sym_splitlist] = ACTIONS(489), + [anon_sym_splitrow] = ACTIONS(489), + [anon_sym_splitwords] = ACTIONS(489), + [anon_sym_storcreate] = ACTIONS(489), + [anon_sym_stordelete] = ACTIONS(489), + [anon_sym_storexport] = ACTIONS(489), + [anon_sym_storimport] = ACTIONS(489), + [anon_sym_storinsert] = ACTIONS(489), + [anon_sym_storopen] = ACTIONS(489), + [anon_sym_storreset] = ACTIONS(489), + [anon_sym_storupdate] = ACTIONS(489), + [anon_sym_strbexpand] = ACTIONS(489), + [anon_sym_strcamel_DASHcase] = ACTIONS(489), + [anon_sym_strcapitalize] = ACTIONS(489), + [anon_sym_strcompress] = ACTIONS(489), + [anon_sym_strcontains] = ACTIONS(489), + [anon_sym_strdecompress] = ACTIONS(489), + [anon_sym_strdedent] = ACTIONS(489), + [anon_sym_strdeunicode] = ACTIONS(489), + [anon_sym_strdistance] = ACTIONS(489), + [anon_sym_strdowncase] = ACTIONS(489), + [anon_sym_strends_DASHwith] = ACTIONS(489), + [anon_sym_strexpand] = ACTIONS(489), + [anon_sym_strindent] = ACTIONS(489), + [anon_sym_strindex_DASHof] = ACTIONS(489), + [anon_sym_strjoin] = ACTIONS(489), + [anon_sym_strkebab_DASHcase] = ACTIONS(489), + [anon_sym_strlength] = ACTIONS(489), + [anon_sym_strpascal_DASHcase] = ACTIONS(489), + [anon_sym_strreplace] = ACTIONS(489), + [anon_sym_strreverse] = ACTIONS(489), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(489), + [anon_sym_strsimilarity] = ACTIONS(489), + [anon_sym_strsnake_DASHcase] = ACTIONS(489), + [anon_sym_strstarts_DASHwith] = ACTIONS(489), + [anon_sym_strstats] = ACTIONS(489), + [anon_sym_strsubstring] = ACTIONS(489), + [anon_sym_strtitle_DASHcase] = ACTIONS(489), + [anon_sym_strtrim] = ACTIONS(489), + [anon_sym_strupcase] = ACTIONS(489), + [anon_sym_strwrap] = ACTIONS(489), + [anon_sym_syscpu] = ACTIONS(489), + [anon_sym_sysdisks] = ACTIONS(489), + [anon_sym_syshost] = ACTIONS(489), + [anon_sym_sysmem] = ACTIONS(489), + [anon_sym_sysnet] = ACTIONS(489), + [anon_sym_systemp] = ACTIONS(489), + [anon_sym_sysusers] = ACTIONS(489), + [anon_sym_takeuntil] = ACTIONS(489), + [anon_sym_takewhile] = ACTIONS(489), + [anon_sym_termquery] = ACTIONS(489), + [anon_sym_termsize] = ACTIONS(489), + [anon_sym_tobz2] = ACTIONS(489), + [anon_sym_tocsv] = ACTIONS(489), + [anon_sym_togz] = ACTIONS(489), + [anon_sym_tohtml] = ACTIONS(489), + [anon_sym_tojson] = ACTIONS(489), + [anon_sym_tomd] = ACTIONS(489), + [anon_sym_tomsgpack] = ACTIONS(491), + [anon_sym_tomsgpackz] = ACTIONS(489), + [anon_sym_tonuon] = ACTIONS(489), + [anon_sym_toparquet] = ACTIONS(489), + [anon_sym_toplist] = ACTIONS(489), + [anon_sym_topng] = ACTIONS(489), + [anon_sym_totext] = ACTIONS(489), + [anon_sym_totoml] = ACTIONS(489), + [anon_sym_totsv] = ACTIONS(489), + [anon_sym_toxml] = ACTIONS(489), + [anon_sym_toxz] = ACTIONS(489), + [anon_sym_toyaml] = ACTIONS(489), + [anon_sym_tozst] = ACTIONS(489), + [anon_sym_updatecells] = ACTIONS(489), + [anon_sym_urlbuild_DASHquery] = ACTIONS(489), + [anon_sym_urldecode] = ACTIONS(489), + [anon_sym_urlencode] = ACTIONS(489), + [anon_sym_urljoin] = ACTIONS(489), + [anon_sym_urlparse] = ACTIONS(489), + [anon_sym_urlsplit_DASHquery] = ACTIONS(489), + [anon_sym_viewfiles] = ACTIONS(489), + [anon_sym_viewir] = ACTIONS(489), + [anon_sym_viewsource] = ACTIONS(489), + [anon_sym_viewspan] = ACTIONS(489), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [469] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(623), - [sym_comment] = STATE(469), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_alias] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_let_DASHenv] = ACTIONS(1942), - [anon_sym_mut] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [aux_sym_cmd_identifier_token1] = ACTIONS(1942), - [aux_sym_cmd_identifier_token2] = ACTIONS(1944), - [aux_sym_cmd_identifier_token3] = ACTIONS(1944), - [aux_sym_cmd_identifier_token4] = ACTIONS(1944), - [aux_sym_cmd_identifier_token5] = ACTIONS(1944), - [aux_sym_cmd_identifier_token6] = ACTIONS(1944), - [aux_sym_cmd_identifier_token7] = ACTIONS(1944), - [aux_sym_cmd_identifier_token8] = ACTIONS(1942), - [aux_sym_cmd_identifier_token9] = ACTIONS(1942), - [aux_sym_cmd_identifier_token10] = ACTIONS(1944), - [aux_sym_cmd_identifier_token11] = ACTIONS(1944), - [aux_sym_cmd_identifier_token12] = ACTIONS(1942), - [aux_sym_cmd_identifier_token13] = ACTIONS(1942), - [aux_sym_cmd_identifier_token14] = ACTIONS(1942), - [aux_sym_cmd_identifier_token15] = ACTIONS(1942), - [aux_sym_cmd_identifier_token16] = ACTIONS(1944), - [aux_sym_cmd_identifier_token17] = ACTIONS(1944), - [aux_sym_cmd_identifier_token18] = ACTIONS(1944), - [aux_sym_cmd_identifier_token19] = ACTIONS(1944), - [aux_sym_cmd_identifier_token20] = ACTIONS(1944), - [aux_sym_cmd_identifier_token21] = ACTIONS(1944), - [aux_sym_cmd_identifier_token22] = ACTIONS(1944), - [aux_sym_cmd_identifier_token23] = ACTIONS(1944), - [aux_sym_cmd_identifier_token24] = ACTIONS(1944), - [aux_sym_cmd_identifier_token25] = ACTIONS(1944), - [aux_sym_cmd_identifier_token26] = ACTIONS(1944), - [aux_sym_cmd_identifier_token27] = ACTIONS(1944), - [aux_sym_cmd_identifier_token28] = ACTIONS(1944), - [aux_sym_cmd_identifier_token29] = ACTIONS(1944), - [aux_sym_cmd_identifier_token30] = ACTIONS(1944), - [aux_sym_cmd_identifier_token31] = ACTIONS(1944), - [aux_sym_cmd_identifier_token32] = ACTIONS(1944), - [aux_sym_cmd_identifier_token33] = ACTIONS(1944), - [aux_sym_cmd_identifier_token34] = ACTIONS(1942), - [aux_sym_cmd_identifier_token35] = ACTIONS(1944), - [aux_sym_cmd_identifier_token36] = ACTIONS(1944), - [aux_sym_cmd_identifier_token37] = ACTIONS(1944), - [aux_sym_cmd_identifier_token38] = ACTIONS(1942), - [aux_sym_cmd_identifier_token39] = ACTIONS(1944), - [aux_sym_cmd_identifier_token40] = ACTIONS(1944), - [anon_sym_def] = ACTIONS(1942), - [anon_sym_export_DASHenv] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_error] = ACTIONS(1942), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_in2] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_make] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_source] = ACTIONS(1942), - [anon_sym_source_DASHenv] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_hide] = ACTIONS(1942), - [anon_sym_hide_DASHenv] = ACTIONS(1942), - [anon_sym_overlay] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1944), - [aux_sym__val_number_decimal_token3] = ACTIONS(1944), - [aux_sym__val_number_decimal_token4] = ACTIONS(1944), - [aux_sym__val_number_token1] = ACTIONS(1944), - [aux_sym__val_number_token2] = ACTIONS(1944), - [aux_sym__val_number_token3] = ACTIONS(1944), - [aux_sym__val_number_token4] = ACTIONS(1942), - [aux_sym__val_number_token5] = ACTIONS(1942), - [aux_sym__val_number_token6] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym__str_single_quotes] = ACTIONS(1944), - [sym__str_back_ticks] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1944), + [294] = { + [sym_comment] = STATE(294), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_alias] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_let_DASHenv] = ACTIONS(1286), + [anon_sym_mut] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [aux_sym_cmd_identifier_token1] = ACTIONS(1286), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1286), + [aux_sym_cmd_identifier_token9] = ACTIONS(1286), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1286), + [aux_sym_cmd_identifier_token13] = ACTIONS(1286), + [aux_sym_cmd_identifier_token14] = ACTIONS(1286), + [aux_sym_cmd_identifier_token15] = ACTIONS(1286), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1286), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1286), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1286), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1286), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1286), + [anon_sym_export_DASHenv] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1286), + [anon_sym_error] = ACTIONS(1286), + [anon_sym_DASH2] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_source] = ACTIONS(1286), + [anon_sym_source_DASHenv] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_hide] = ACTIONS(1286), + [anon_sym_hide_DASHenv] = ACTIONS(1286), + [anon_sym_overlay] = ACTIONS(1286), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [aux_sym__val_number_decimal_token1] = ACTIONS(1286), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1286), + [aux_sym__val_number_token5] = ACTIONS(1286), + [aux_sym__val_number_token6] = ACTIONS(1286), + [anon_sym_0b] = ACTIONS(1286), + [anon_sym_0o] = ACTIONS(1286), + [anon_sym_0x] = ACTIONS(1286), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1286), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_ansigradient] = ACTIONS(1288), + [anon_sym_ansilink] = ACTIONS(1288), + [anon_sym_ansistrip] = ACTIONS(1288), + [anon_sym_bitsand] = ACTIONS(1288), + [anon_sym_bitsnot] = ACTIONS(1288), + [anon_sym_bitsor] = ACTIONS(1288), + [anon_sym_bitsrol] = ACTIONS(1288), + [anon_sym_bitsror] = ACTIONS(1288), + [anon_sym_bitsshl] = ACTIONS(1288), + [anon_sym_bitsshr] = ACTIONS(1288), + [anon_sym_bitsxor] = ACTIONS(1288), + [anon_sym_bytesadd] = ACTIONS(1288), + [anon_sym_bytesat] = ACTIONS(1288), + [anon_sym_bytesbuild] = ACTIONS(1288), + [anon_sym_bytescollect] = ACTIONS(1288), + [anon_sym_bytesends_DASHwith] = ACTIONS(1288), + [anon_sym_bytesindex_DASHof] = ACTIONS(1288), + [anon_sym_byteslength] = ACTIONS(1288), + [anon_sym_bytesremove] = ACTIONS(1288), + [anon_sym_bytesreplace] = ACTIONS(1288), + [anon_sym_bytesreverse] = ACTIONS(1288), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1288), + [anon_sym_commandlineedit] = ACTIONS(1288), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1288), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1288), + [anon_sym_configenv] = ACTIONS(1288), + [anon_sym_confignu] = ACTIONS(1288), + [anon_sym_configreset] = ACTIONS(1288), + [anon_sym_dateformat] = ACTIONS(1288), + [anon_sym_datehumanize] = ACTIONS(1288), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1288), + [anon_sym_datenow] = ACTIONS(1288), + [anon_sym_dateto_DASHrecord] = ACTIONS(1288), + [anon_sym_dateto_DASHtable] = ACTIONS(1288), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1288), + [anon_sym_debuginfo] = ACTIONS(1288), + [anon_sym_debugprofile] = ACTIONS(1288), + [anon_sym_decodebase32] = ACTIONS(1286), + [anon_sym_decodebase32hex] = ACTIONS(1288), + [anon_sym_decodebase64] = ACTIONS(1288), + [anon_sym_decodehex] = ACTIONS(1288), + [anon_sym_detectcolumns] = ACTIONS(1288), + [anon_sym_dropcolumn] = ACTIONS(1288), + [anon_sym_dropnth] = ACTIONS(1288), + [anon_sym_dtadd] = ACTIONS(1288), + [anon_sym_dtdiff] = ACTIONS(1288), + [anon_sym_dtformat] = ACTIONS(1288), + [anon_sym_dtnow] = ACTIONS(1288), + [anon_sym_dtpart] = ACTIONS(1288), + [anon_sym_dtto] = ACTIONS(1288), + [anon_sym_dtutcnow] = ACTIONS(1288), + [anon_sym_eachwhile] = ACTIONS(1288), + [anon_sym_encodebase32] = ACTIONS(1286), + [anon_sym_encodebase32hex] = ACTIONS(1288), + [anon_sym_encodebase64] = ACTIONS(1288), + [anon_sym_encodehex] = ACTIONS(1288), + [anon_sym_errormake] = ACTIONS(1288), + [anon_sym_exploreir] = ACTIONS(1288), + [anon_sym_formatdate] = ACTIONS(1288), + [anon_sym_formatduration] = ACTIONS(1288), + [anon_sym_formatfilesize] = ACTIONS(1288), + [anon_sym_formatpattern] = ACTIONS(1288), + [anon_sym_frombz2] = ACTIONS(1288), + [anon_sym_fromcsv] = ACTIONS(1288), + [anon_sym_fromeml] = ACTIONS(1288), + [anon_sym_fromgz] = ACTIONS(1288), + [anon_sym_fromics] = ACTIONS(1288), + [anon_sym_fromini] = ACTIONS(1288), + [anon_sym_fromjson] = ACTIONS(1288), + [anon_sym_frommsgpack] = ACTIONS(1286), + [anon_sym_frommsgpackz] = ACTIONS(1288), + [anon_sym_fromnuon] = ACTIONS(1288), + [anon_sym_fromods] = ACTIONS(1288), + [anon_sym_fromparquet] = ACTIONS(1288), + [anon_sym_fromplist] = ACTIONS(1288), + [anon_sym_frompng] = ACTIONS(1288), + [anon_sym_fromssv] = ACTIONS(1288), + [anon_sym_fromtoml] = ACTIONS(1288), + [anon_sym_fromtsv] = ACTIONS(1288), + [anon_sym_fromurl] = ACTIONS(1288), + [anon_sym_fromvcf] = ACTIONS(1288), + [anon_sym_fromxlsx] = ACTIONS(1288), + [anon_sym_fromxml] = ACTIONS(1288), + [anon_sym_fromxz] = ACTIONS(1288), + [anon_sym_fromyaml] = ACTIONS(1288), + [anon_sym_fromyml] = ACTIONS(1288), + [anon_sym_fromzst] = ACTIONS(1288), + [anon_sym_hashmd5] = ACTIONS(1288), + [anon_sym_hashsha256] = ACTIONS(1288), + [anon_sym_helpaliases] = ACTIONS(1288), + [anon_sym_helpcommands] = ACTIONS(1288), + [anon_sym_helpescapes] = ACTIONS(1288), + [anon_sym_helpexterns] = ACTIONS(1288), + [anon_sym_helpmodules] = ACTIONS(1288), + [anon_sym_helpoperators] = ACTIONS(1288), + [anon_sym_historyimport] = ACTIONS(1288), + [anon_sym_historysession] = ACTIONS(1288), + [anon_sym_httpdelete] = ACTIONS(1288), + [anon_sym_httpget] = ACTIONS(1288), + [anon_sym_httphead] = ACTIONS(1288), + [anon_sym_httpoptions] = ACTIONS(1288), + [anon_sym_httppatch] = ACTIONS(1288), + [anon_sym_httppost] = ACTIONS(1288), + [anon_sym_httpput] = ACTIONS(1288), + [anon_sym_inputlist] = ACTIONS(1286), + [anon_sym_inputlisten] = ACTIONS(1288), + [anon_sym_intobinary] = ACTIONS(1288), + [anon_sym_intobits] = ACTIONS(1288), + [anon_sym_intobool] = ACTIONS(1288), + [anon_sym_intocell_DASHpath] = ACTIONS(1288), + [anon_sym_intodatetime] = ACTIONS(1288), + [anon_sym_intoduration] = ACTIONS(1288), + [anon_sym_intofilesize] = ACTIONS(1288), + [anon_sym_intofloat] = ACTIONS(1288), + [anon_sym_intoglob] = ACTIONS(1288), + [anon_sym_intoint] = ACTIONS(1288), + [anon_sym_intorecord] = ACTIONS(1288), + [anon_sym_intosqlite] = ACTIONS(1288), + [anon_sym_intostring] = ACTIONS(1288), + [anon_sym_intovalue] = ACTIONS(1288), + [anon_sym_jsonpath] = ACTIONS(1288), + [anon_sym_keybindingsdefault] = ACTIONS(1288), + [anon_sym_keybindingslist] = ACTIONS(1286), + [anon_sym_keybindingslisten] = ACTIONS(1288), + [anon_sym_mathabs] = ACTIONS(1288), + [anon_sym_matharccos] = ACTIONS(1286), + [anon_sym_matharccosh] = ACTIONS(1288), + [anon_sym_matharcsin] = ACTIONS(1286), + [anon_sym_matharcsinh] = ACTIONS(1288), + [anon_sym_matharctan] = ACTIONS(1286), + [anon_sym_matharctanh] = ACTIONS(1288), + [anon_sym_mathavg] = ACTIONS(1288), + [anon_sym_mathceil] = ACTIONS(1288), + [anon_sym_mathcos] = ACTIONS(1286), + [anon_sym_mathcosh] = ACTIONS(1288), + [anon_sym_mathexp] = ACTIONS(1288), + [anon_sym_mathfloor] = ACTIONS(1288), + [anon_sym_mathln] = ACTIONS(1288), + [anon_sym_mathlog] = ACTIONS(1288), + [anon_sym_mathmax] = ACTIONS(1288), + [anon_sym_mathmedian] = ACTIONS(1288), + [anon_sym_mathmin] = ACTIONS(1288), + [anon_sym_mathmode] = ACTIONS(1288), + [anon_sym_mathproduct] = ACTIONS(1288), + [anon_sym_mathround] = ACTIONS(1288), + [anon_sym_mathsin] = ACTIONS(1286), + [anon_sym_mathsinh] = ACTIONS(1288), + [anon_sym_mathsqrt] = ACTIONS(1288), + [anon_sym_mathstddev] = ACTIONS(1288), + [anon_sym_mathsum] = ACTIONS(1288), + [anon_sym_mathtan] = ACTIONS(1286), + [anon_sym_mathtanh] = ACTIONS(1288), + [anon_sym_mathvariance] = ACTIONS(1288), + [anon_sym_metadataaccess] = ACTIONS(1288), + [anon_sym_metadataset] = ACTIONS(1288), + [anon_sym_pathbasename] = ACTIONS(1288), + [anon_sym_pathdirname] = ACTIONS(1288), + [anon_sym_pathexists] = ACTIONS(1288), + [anon_sym_pathexpand] = ACTIONS(1288), + [anon_sym_pathjoin] = ACTIONS(1288), + [anon_sym_pathparse] = ACTIONS(1288), + [anon_sym_pathrelative_DASHto] = ACTIONS(1288), + [anon_sym_pathsplit] = ACTIONS(1288), + [anon_sym_pathtype] = ACTIONS(1288), + [anon_sym_pluginadd] = ACTIONS(1288), + [anon_sym_pluginlist] = ACTIONS(1288), + [anon_sym_pluginrm] = ACTIONS(1288), + [anon_sym_pluginstop] = ACTIONS(1288), + [anon_sym_polarsagg] = ACTIONS(1286), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1288), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1288), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1288), + [anon_sym_polarsappend] = ACTIONS(1288), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1288), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1288), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1288), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1288), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1288), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1288), + [anon_sym_polarsas] = ACTIONS(1286), + [anon_sym_polarsas_DASHdate] = ACTIONS(1286), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1288), + [anon_sym_polarscache] = ACTIONS(1288), + [anon_sym_polarscast] = ACTIONS(1288), + [anon_sym_polarscol] = ACTIONS(1286), + [anon_sym_polarscollect] = ACTIONS(1288), + [anon_sym_polarscolumns] = ACTIONS(1288), + [anon_sym_polarsconcat] = ACTIONS(1286), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1288), + [anon_sym_polarscontains] = ACTIONS(1288), + [anon_sym_polarscount] = ACTIONS(1286), + [anon_sym_polarscount_DASHnull] = ACTIONS(1288), + [anon_sym_polarscumulative] = ACTIONS(1288), + [anon_sym_polarsdatepart] = ACTIONS(1288), + [anon_sym_polarsdecimal] = ACTIONS(1288), + [anon_sym_polarsdrop] = ACTIONS(1286), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1288), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1288), + [anon_sym_polarsdummies] = ACTIONS(1288), + [anon_sym_polarsexplode] = ACTIONS(1288), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1288), + [anon_sym_polarsfetch] = ACTIONS(1288), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1288), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1288), + [anon_sym_polarsfilter] = ACTIONS(1286), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1288), + [anon_sym_polarsfirst] = ACTIONS(1288), + [anon_sym_polarsflatten] = ACTIONS(1288), + [anon_sym_polarsget] = ACTIONS(1286), + [anon_sym_polarsget_DASHday] = ACTIONS(1288), + [anon_sym_polarsget_DASHhour] = ACTIONS(1288), + [anon_sym_polarsget_DASHminute] = ACTIONS(1288), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1288), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1288), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1288), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1288), + [anon_sym_polarsget_DASHweek] = ACTIONS(1286), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1288), + [anon_sym_polarsget_DASHyear] = ACTIONS(1288), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1288), + [anon_sym_polarsimplode] = ACTIONS(1288), + [anon_sym_polarsinteger] = ACTIONS(1288), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1288), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1288), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1288), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1288), + [anon_sym_polarsis_DASHin] = ACTIONS(1288), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1288), + [anon_sym_polarsis_DASHnull] = ACTIONS(1288), + [anon_sym_polarsis_DASHunique] = ACTIONS(1288), + [anon_sym_polarsjoin] = ACTIONS(1288), + [anon_sym_polarslast] = ACTIONS(1288), + [anon_sym_polarslen] = ACTIONS(1288), + [anon_sym_polarslit] = ACTIONS(1288), + [anon_sym_polarslowercase] = ACTIONS(1288), + [anon_sym_polarsmax] = ACTIONS(1288), + [anon_sym_polarsmean] = ACTIONS(1288), + [anon_sym_polarsmedian] = ACTIONS(1288), + [anon_sym_polarsmin] = ACTIONS(1288), + [anon_sym_polarsn_DASHunique] = ACTIONS(1288), + [anon_sym_polarsnot] = ACTIONS(1288), + [anon_sym_polarsopen] = ACTIONS(1288), + [anon_sym_polarsotherwise] = ACTIONS(1288), + [anon_sym_polarspivot] = ACTIONS(1288), + [anon_sym_polarsprofile] = ACTIONS(1288), + [anon_sym_polarsquantile] = ACTIONS(1288), + [anon_sym_polarsquery] = ACTIONS(1288), + [anon_sym_polarsrename] = ACTIONS(1288), + [anon_sym_polarsreplace] = ACTIONS(1286), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1288), + [anon_sym_polarsreverse] = ACTIONS(1288), + [anon_sym_polarsrolling] = ACTIONS(1288), + [anon_sym_polarssample] = ACTIONS(1288), + [anon_sym_polarssave] = ACTIONS(1288), + [anon_sym_polarsschema] = ACTIONS(1288), + [anon_sym_polarsselect] = ACTIONS(1288), + [anon_sym_polarsset] = ACTIONS(1286), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1288), + [anon_sym_polarsshape] = ACTIONS(1288), + [anon_sym_polarsshift] = ACTIONS(1288), + [anon_sym_polarsslice] = ACTIONS(1288), + [anon_sym_polarssort_DASHby] = ACTIONS(1288), + [anon_sym_polarsstd] = ACTIONS(1288), + [anon_sym_polarsstore_DASHget] = ACTIONS(1288), + [anon_sym_polarsstore_DASHls] = ACTIONS(1288), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1288), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1288), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1288), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1288), + [anon_sym_polarsstrftime] = ACTIONS(1288), + [anon_sym_polarssum] = ACTIONS(1286), + [anon_sym_polarssummary] = ACTIONS(1288), + [anon_sym_polarstake] = ACTIONS(1288), + [anon_sym_polarsunique] = ACTIONS(1288), + [anon_sym_polarsunnest] = ACTIONS(1288), + [anon_sym_polarsunpivot] = ACTIONS(1288), + [anon_sym_polarsuppercase] = ACTIONS(1288), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1288), + [anon_sym_polarsvar] = ACTIONS(1288), + [anon_sym_polarswhen] = ACTIONS(1288), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1288), + [anon_sym_querydb] = ACTIONS(1288), + [anon_sym_querygit] = ACTIONS(1288), + [anon_sym_queryjson] = ACTIONS(1288), + [anon_sym_queryweb] = ACTIONS(1286), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1288), + [anon_sym_queryxml] = ACTIONS(1288), + [anon_sym_randombinary] = ACTIONS(1288), + [anon_sym_randombool] = ACTIONS(1288), + [anon_sym_randomchars] = ACTIONS(1288), + [anon_sym_randomdice] = ACTIONS(1288), + [anon_sym_randomfloat] = ACTIONS(1288), + [anon_sym_randomint] = ACTIONS(1288), + [anon_sym_randomuuid] = ACTIONS(1288), + [anon_sym_rolldown] = ACTIONS(1288), + [anon_sym_rollleft] = ACTIONS(1288), + [anon_sym_rollright] = ACTIONS(1288), + [anon_sym_rollup] = ACTIONS(1288), + [anon_sym_scopealiases] = ACTIONS(1288), + [anon_sym_scopecommands] = ACTIONS(1288), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1288), + [anon_sym_scopeexterns] = ACTIONS(1288), + [anon_sym_scopemodules] = ACTIONS(1288), + [anon_sym_scopevariables] = ACTIONS(1288), + [anon_sym_seqchar] = ACTIONS(1288), + [anon_sym_seqdate] = ACTIONS(1288), + [anon_sym_skipuntil] = ACTIONS(1288), + [anon_sym_skipwhile] = ACTIONS(1288), + [anon_sym_splitcell_DASHpath] = ACTIONS(1288), + [anon_sym_splitchars] = ACTIONS(1288), + [anon_sym_splitcolumn] = ACTIONS(1288), + [anon_sym_splitlist] = ACTIONS(1288), + [anon_sym_splitrow] = ACTIONS(1288), + [anon_sym_splitwords] = ACTIONS(1288), + [anon_sym_storcreate] = ACTIONS(1288), + [anon_sym_stordelete] = ACTIONS(1288), + [anon_sym_storexport] = ACTIONS(1288), + [anon_sym_storimport] = ACTIONS(1288), + [anon_sym_storinsert] = ACTIONS(1288), + [anon_sym_storopen] = ACTIONS(1288), + [anon_sym_storreset] = ACTIONS(1288), + [anon_sym_storupdate] = ACTIONS(1288), + [anon_sym_strbexpand] = ACTIONS(1288), + [anon_sym_strcamel_DASHcase] = ACTIONS(1288), + [anon_sym_strcapitalize] = ACTIONS(1288), + [anon_sym_strcompress] = ACTIONS(1288), + [anon_sym_strcontains] = ACTIONS(1288), + [anon_sym_strdecompress] = ACTIONS(1288), + [anon_sym_strdedent] = ACTIONS(1288), + [anon_sym_strdeunicode] = ACTIONS(1288), + [anon_sym_strdistance] = ACTIONS(1288), + [anon_sym_strdowncase] = ACTIONS(1288), + [anon_sym_strends_DASHwith] = ACTIONS(1288), + [anon_sym_strexpand] = ACTIONS(1288), + [anon_sym_strindent] = ACTIONS(1288), + [anon_sym_strindex_DASHof] = ACTIONS(1288), + [anon_sym_strjoin] = ACTIONS(1288), + [anon_sym_strkebab_DASHcase] = ACTIONS(1288), + [anon_sym_strlength] = ACTIONS(1288), + [anon_sym_strpascal_DASHcase] = ACTIONS(1288), + [anon_sym_strreplace] = ACTIONS(1288), + [anon_sym_strreverse] = ACTIONS(1288), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1288), + [anon_sym_strsimilarity] = ACTIONS(1288), + [anon_sym_strsnake_DASHcase] = ACTIONS(1288), + [anon_sym_strstarts_DASHwith] = ACTIONS(1288), + [anon_sym_strstats] = ACTIONS(1288), + [anon_sym_strsubstring] = ACTIONS(1288), + [anon_sym_strtitle_DASHcase] = ACTIONS(1288), + [anon_sym_strtrim] = ACTIONS(1288), + [anon_sym_strupcase] = ACTIONS(1288), + [anon_sym_strwrap] = ACTIONS(1288), + [anon_sym_syscpu] = ACTIONS(1288), + [anon_sym_sysdisks] = ACTIONS(1288), + [anon_sym_syshost] = ACTIONS(1288), + [anon_sym_sysmem] = ACTIONS(1288), + [anon_sym_sysnet] = ACTIONS(1288), + [anon_sym_systemp] = ACTIONS(1288), + [anon_sym_sysusers] = ACTIONS(1288), + [anon_sym_takeuntil] = ACTIONS(1288), + [anon_sym_takewhile] = ACTIONS(1288), + [anon_sym_termquery] = ACTIONS(1288), + [anon_sym_termsize] = ACTIONS(1288), + [anon_sym_tobz2] = ACTIONS(1288), + [anon_sym_tocsv] = ACTIONS(1288), + [anon_sym_togz] = ACTIONS(1288), + [anon_sym_tohtml] = ACTIONS(1288), + [anon_sym_tojson] = ACTIONS(1288), + [anon_sym_tomd] = ACTIONS(1288), + [anon_sym_tomsgpack] = ACTIONS(1286), + [anon_sym_tomsgpackz] = ACTIONS(1288), + [anon_sym_tonuon] = ACTIONS(1288), + [anon_sym_toparquet] = ACTIONS(1288), + [anon_sym_toplist] = ACTIONS(1288), + [anon_sym_topng] = ACTIONS(1288), + [anon_sym_totext] = ACTIONS(1288), + [anon_sym_totoml] = ACTIONS(1288), + [anon_sym_totsv] = ACTIONS(1288), + [anon_sym_toxml] = ACTIONS(1288), + [anon_sym_toxz] = ACTIONS(1288), + [anon_sym_toyaml] = ACTIONS(1288), + [anon_sym_tozst] = ACTIONS(1288), + [anon_sym_updatecells] = ACTIONS(1288), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1288), + [anon_sym_urldecode] = ACTIONS(1288), + [anon_sym_urlencode] = ACTIONS(1288), + [anon_sym_urljoin] = ACTIONS(1288), + [anon_sym_urlparse] = ACTIONS(1288), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1288), + [anon_sym_viewfiles] = ACTIONS(1288), + [anon_sym_viewir] = ACTIONS(1288), + [anon_sym_viewsource] = ACTIONS(1288), + [anon_sym_viewspan] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1288), }, - [470] = { - [sym_cell_path] = STATE(746), - [sym_path] = STATE(623), - [sym_comment] = STATE(470), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2026), - [anon_sym_alias] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_let_DASHenv] = ACTIONS(2026), - [anon_sym_mut] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [aux_sym_cmd_identifier_token1] = ACTIONS(2026), - [aux_sym_cmd_identifier_token2] = ACTIONS(2028), - [aux_sym_cmd_identifier_token3] = ACTIONS(2028), - [aux_sym_cmd_identifier_token4] = ACTIONS(2028), - [aux_sym_cmd_identifier_token5] = ACTIONS(2028), - [aux_sym_cmd_identifier_token6] = ACTIONS(2028), - [aux_sym_cmd_identifier_token7] = ACTIONS(2028), - [aux_sym_cmd_identifier_token8] = ACTIONS(2026), - [aux_sym_cmd_identifier_token9] = ACTIONS(2026), - [aux_sym_cmd_identifier_token10] = ACTIONS(2028), - [aux_sym_cmd_identifier_token11] = ACTIONS(2028), - [aux_sym_cmd_identifier_token12] = ACTIONS(2026), - [aux_sym_cmd_identifier_token13] = ACTIONS(2026), - [aux_sym_cmd_identifier_token14] = ACTIONS(2026), - [aux_sym_cmd_identifier_token15] = ACTIONS(2026), - [aux_sym_cmd_identifier_token16] = ACTIONS(2028), - [aux_sym_cmd_identifier_token17] = ACTIONS(2028), - [aux_sym_cmd_identifier_token18] = ACTIONS(2028), - [aux_sym_cmd_identifier_token19] = ACTIONS(2028), - [aux_sym_cmd_identifier_token20] = ACTIONS(2028), - [aux_sym_cmd_identifier_token21] = ACTIONS(2028), - [aux_sym_cmd_identifier_token22] = ACTIONS(2028), - [aux_sym_cmd_identifier_token23] = ACTIONS(2028), - [aux_sym_cmd_identifier_token24] = ACTIONS(2028), - [aux_sym_cmd_identifier_token25] = ACTIONS(2028), - [aux_sym_cmd_identifier_token26] = ACTIONS(2028), - [aux_sym_cmd_identifier_token27] = ACTIONS(2028), - [aux_sym_cmd_identifier_token28] = ACTIONS(2028), - [aux_sym_cmd_identifier_token29] = ACTIONS(2028), - [aux_sym_cmd_identifier_token30] = ACTIONS(2028), - [aux_sym_cmd_identifier_token31] = ACTIONS(2028), - [aux_sym_cmd_identifier_token32] = ACTIONS(2028), - [aux_sym_cmd_identifier_token33] = ACTIONS(2028), - [aux_sym_cmd_identifier_token34] = ACTIONS(2026), - [aux_sym_cmd_identifier_token35] = ACTIONS(2028), - [aux_sym_cmd_identifier_token36] = ACTIONS(2028), - [aux_sym_cmd_identifier_token37] = ACTIONS(2028), - [aux_sym_cmd_identifier_token38] = ACTIONS(2026), - [aux_sym_cmd_identifier_token39] = ACTIONS(2028), - [aux_sym_cmd_identifier_token40] = ACTIONS(2028), - [anon_sym_def] = ACTIONS(2026), - [anon_sym_export_DASHenv] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym_module] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_error] = ACTIONS(2026), - [anon_sym_DASH2] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_in2] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_make] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_else] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2026), - [anon_sym_catch] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_source] = ACTIONS(2026), - [anon_sym_source_DASHenv] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_hide] = ACTIONS(2026), - [anon_sym_hide_DASHenv] = ACTIONS(2026), - [anon_sym_overlay] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_PLUS2] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), - [aux_sym__val_number_decimal_token1] = ACTIONS(2026), - [aux_sym__val_number_decimal_token2] = ACTIONS(2028), - [aux_sym__val_number_decimal_token3] = ACTIONS(2028), - [aux_sym__val_number_decimal_token4] = ACTIONS(2028), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [aux_sym__val_number_token4] = ACTIONS(2026), - [aux_sym__val_number_token5] = ACTIONS(2026), - [aux_sym__val_number_token6] = ACTIONS(2026), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym__str_single_quotes] = ACTIONS(2028), - [sym__str_back_ticks] = ACTIONS(2028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2028), + [295] = { + [sym_cmd_identifier] = STATE(4616), + [sym__expression] = STATE(3864), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(860), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4976), + [sym_comment] = STATE(295), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1346), + [aux_sym__val_number_decimal_token2] = ACTIONS(1348), + [aux_sym__val_number_decimal_token3] = ACTIONS(1350), + [aux_sym__val_number_decimal_token4] = ACTIONS(1352), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [296] = { + [sym_comment] = STATE(296), + [anon_sym_export] = ACTIONS(1358), + [anon_sym_alias] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_let_DASHenv] = ACTIONS(1358), + [anon_sym_mut] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [aux_sym_cmd_identifier_token1] = ACTIONS(1358), + [aux_sym_cmd_identifier_token2] = ACTIONS(1360), + [aux_sym_cmd_identifier_token3] = ACTIONS(1360), + [aux_sym_cmd_identifier_token4] = ACTIONS(1360), + [aux_sym_cmd_identifier_token5] = ACTIONS(1360), + [aux_sym_cmd_identifier_token6] = ACTIONS(1360), + [aux_sym_cmd_identifier_token7] = ACTIONS(1360), + [aux_sym_cmd_identifier_token8] = ACTIONS(1358), + [aux_sym_cmd_identifier_token9] = ACTIONS(1358), + [aux_sym_cmd_identifier_token10] = ACTIONS(1360), + [aux_sym_cmd_identifier_token11] = ACTIONS(1360), + [aux_sym_cmd_identifier_token12] = ACTIONS(1358), + [aux_sym_cmd_identifier_token13] = ACTIONS(1358), + [aux_sym_cmd_identifier_token14] = ACTIONS(1358), + [aux_sym_cmd_identifier_token15] = ACTIONS(1358), + [aux_sym_cmd_identifier_token16] = ACTIONS(1360), + [aux_sym_cmd_identifier_token17] = ACTIONS(1360), + [aux_sym_cmd_identifier_token18] = ACTIONS(1358), + [aux_sym_cmd_identifier_token19] = ACTIONS(1360), + [aux_sym_cmd_identifier_token20] = ACTIONS(1360), + [aux_sym_cmd_identifier_token21] = ACTIONS(1360), + [aux_sym_cmd_identifier_token22] = ACTIONS(1360), + [aux_sym_cmd_identifier_token23] = ACTIONS(1360), + [aux_sym_cmd_identifier_token24] = ACTIONS(1360), + [aux_sym_cmd_identifier_token25] = ACTIONS(1360), + [aux_sym_cmd_identifier_token26] = ACTIONS(1360), + [aux_sym_cmd_identifier_token27] = ACTIONS(1360), + [aux_sym_cmd_identifier_token28] = ACTIONS(1360), + [aux_sym_cmd_identifier_token29] = ACTIONS(1360), + [aux_sym_cmd_identifier_token30] = ACTIONS(1360), + [aux_sym_cmd_identifier_token31] = ACTIONS(1360), + [aux_sym_cmd_identifier_token32] = ACTIONS(1358), + [aux_sym_cmd_identifier_token33] = ACTIONS(1360), + [aux_sym_cmd_identifier_token34] = ACTIONS(1358), + [aux_sym_cmd_identifier_token35] = ACTIONS(1360), + [aux_sym_cmd_identifier_token36] = ACTIONS(1360), + [aux_sym_cmd_identifier_token37] = ACTIONS(1360), + [aux_sym_cmd_identifier_token38] = ACTIONS(1358), + [aux_sym_cmd_identifier_token39] = ACTIONS(1360), + [aux_sym_cmd_identifier_token40] = ACTIONS(1360), + [sym__newline] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_def] = ACTIONS(1358), + [anon_sym_export_DASHenv] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_module] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_error] = ACTIONS(1358), + [anon_sym_DASH2] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_source] = ACTIONS(1358), + [anon_sym_source_DASHenv] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_hide] = ACTIONS(1358), + [anon_sym_hide_DASHenv] = ACTIONS(1358), + [anon_sym_overlay] = ACTIONS(1358), + [anon_sym_where] = ACTIONS(1360), + [aux_sym_expr_unary_token1] = ACTIONS(1360), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), + [anon_sym_DOT_DOT_LT] = ACTIONS(1360), + [anon_sym_null] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [aux_sym__val_number_decimal_token1] = ACTIONS(1358), + [aux_sym__val_number_decimal_token2] = ACTIONS(1360), + [aux_sym__val_number_decimal_token3] = ACTIONS(1360), + [aux_sym__val_number_decimal_token4] = ACTIONS(1360), + [aux_sym__val_number_token1] = ACTIONS(1360), + [aux_sym__val_number_token2] = ACTIONS(1360), + [aux_sym__val_number_token3] = ACTIONS(1360), + [aux_sym__val_number_token4] = ACTIONS(1358), + [aux_sym__val_number_token5] = ACTIONS(1358), + [aux_sym__val_number_token6] = ACTIONS(1358), + [anon_sym_0b] = ACTIONS(1358), + [anon_sym_0o] = ACTIONS(1358), + [anon_sym_0x] = ACTIONS(1358), + [sym_val_date] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym__str_single_quotes] = ACTIONS(1360), + [sym__str_back_ticks] = ACTIONS(1360), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1360), + [aux_sym_env_var_token1] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_ansigradient] = ACTIONS(1360), + [anon_sym_ansilink] = ACTIONS(1360), + [anon_sym_ansistrip] = ACTIONS(1360), + [anon_sym_bitsand] = ACTIONS(1360), + [anon_sym_bitsnot] = ACTIONS(1360), + [anon_sym_bitsor] = ACTIONS(1360), + [anon_sym_bitsrol] = ACTIONS(1360), + [anon_sym_bitsror] = ACTIONS(1360), + [anon_sym_bitsshl] = ACTIONS(1360), + [anon_sym_bitsshr] = ACTIONS(1360), + [anon_sym_bitsxor] = ACTIONS(1360), + [anon_sym_bytesadd] = ACTIONS(1360), + [anon_sym_bytesat] = ACTIONS(1360), + [anon_sym_bytesbuild] = ACTIONS(1360), + [anon_sym_bytescollect] = ACTIONS(1360), + [anon_sym_bytesends_DASHwith] = ACTIONS(1360), + [anon_sym_bytesindex_DASHof] = ACTIONS(1360), + [anon_sym_byteslength] = ACTIONS(1360), + [anon_sym_bytesremove] = ACTIONS(1360), + [anon_sym_bytesreplace] = ACTIONS(1360), + [anon_sym_bytesreverse] = ACTIONS(1360), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1360), + [anon_sym_commandlineedit] = ACTIONS(1360), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1360), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1360), + [anon_sym_configenv] = ACTIONS(1360), + [anon_sym_confignu] = ACTIONS(1360), + [anon_sym_configreset] = ACTIONS(1360), + [anon_sym_dateformat] = ACTIONS(1360), + [anon_sym_datehumanize] = ACTIONS(1360), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1360), + [anon_sym_datenow] = ACTIONS(1360), + [anon_sym_dateto_DASHrecord] = ACTIONS(1360), + [anon_sym_dateto_DASHtable] = ACTIONS(1360), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1360), + [anon_sym_debuginfo] = ACTIONS(1360), + [anon_sym_debugprofile] = ACTIONS(1360), + [anon_sym_decodebase32] = ACTIONS(1358), + [anon_sym_decodebase32hex] = ACTIONS(1360), + [anon_sym_decodebase64] = ACTIONS(1360), + [anon_sym_decodehex] = ACTIONS(1360), + [anon_sym_detectcolumns] = ACTIONS(1360), + [anon_sym_dropcolumn] = ACTIONS(1360), + [anon_sym_dropnth] = ACTIONS(1360), + [anon_sym_dtadd] = ACTIONS(1360), + [anon_sym_dtdiff] = ACTIONS(1360), + [anon_sym_dtformat] = ACTIONS(1360), + [anon_sym_dtnow] = ACTIONS(1360), + [anon_sym_dtpart] = ACTIONS(1360), + [anon_sym_dtto] = ACTIONS(1360), + [anon_sym_dtutcnow] = ACTIONS(1360), + [anon_sym_eachwhile] = ACTIONS(1360), + [anon_sym_encodebase32] = ACTIONS(1358), + [anon_sym_encodebase32hex] = ACTIONS(1360), + [anon_sym_encodebase64] = ACTIONS(1360), + [anon_sym_encodehex] = ACTIONS(1360), + [anon_sym_errormake] = ACTIONS(1360), + [anon_sym_exploreir] = ACTIONS(1360), + [anon_sym_formatdate] = ACTIONS(1360), + [anon_sym_formatduration] = ACTIONS(1360), + [anon_sym_formatfilesize] = ACTIONS(1360), + [anon_sym_formatpattern] = ACTIONS(1360), + [anon_sym_frombz2] = ACTIONS(1360), + [anon_sym_fromcsv] = ACTIONS(1360), + [anon_sym_fromeml] = ACTIONS(1360), + [anon_sym_fromgz] = ACTIONS(1360), + [anon_sym_fromics] = ACTIONS(1360), + [anon_sym_fromini] = ACTIONS(1360), + [anon_sym_fromjson] = ACTIONS(1360), + [anon_sym_frommsgpack] = ACTIONS(1358), + [anon_sym_frommsgpackz] = ACTIONS(1360), + [anon_sym_fromnuon] = ACTIONS(1360), + [anon_sym_fromods] = ACTIONS(1360), + [anon_sym_fromparquet] = ACTIONS(1360), + [anon_sym_fromplist] = ACTIONS(1360), + [anon_sym_frompng] = ACTIONS(1360), + [anon_sym_fromssv] = ACTIONS(1360), + [anon_sym_fromtoml] = ACTIONS(1360), + [anon_sym_fromtsv] = ACTIONS(1360), + [anon_sym_fromurl] = ACTIONS(1360), + [anon_sym_fromvcf] = ACTIONS(1360), + [anon_sym_fromxlsx] = ACTIONS(1360), + [anon_sym_fromxml] = ACTIONS(1360), + [anon_sym_fromxz] = ACTIONS(1360), + [anon_sym_fromyaml] = ACTIONS(1360), + [anon_sym_fromyml] = ACTIONS(1360), + [anon_sym_fromzst] = ACTIONS(1360), + [anon_sym_hashmd5] = ACTIONS(1360), + [anon_sym_hashsha256] = ACTIONS(1360), + [anon_sym_helpaliases] = ACTIONS(1360), + [anon_sym_helpcommands] = ACTIONS(1360), + [anon_sym_helpescapes] = ACTIONS(1360), + [anon_sym_helpexterns] = ACTIONS(1360), + [anon_sym_helpmodules] = ACTIONS(1360), + [anon_sym_helpoperators] = ACTIONS(1360), + [anon_sym_historyimport] = ACTIONS(1360), + [anon_sym_historysession] = ACTIONS(1360), + [anon_sym_httpdelete] = ACTIONS(1360), + [anon_sym_httpget] = ACTIONS(1360), + [anon_sym_httphead] = ACTIONS(1360), + [anon_sym_httpoptions] = ACTIONS(1360), + [anon_sym_httppatch] = ACTIONS(1360), + [anon_sym_httppost] = ACTIONS(1360), + [anon_sym_httpput] = ACTIONS(1360), + [anon_sym_inputlist] = ACTIONS(1358), + [anon_sym_inputlisten] = ACTIONS(1360), + [anon_sym_intobinary] = ACTIONS(1360), + [anon_sym_intobits] = ACTIONS(1360), + [anon_sym_intobool] = ACTIONS(1360), + [anon_sym_intocell_DASHpath] = ACTIONS(1360), + [anon_sym_intodatetime] = ACTIONS(1360), + [anon_sym_intoduration] = ACTIONS(1360), + [anon_sym_intofilesize] = ACTIONS(1360), + [anon_sym_intofloat] = ACTIONS(1360), + [anon_sym_intoglob] = ACTIONS(1360), + [anon_sym_intoint] = ACTIONS(1360), + [anon_sym_intorecord] = ACTIONS(1360), + [anon_sym_intosqlite] = ACTIONS(1360), + [anon_sym_intostring] = ACTIONS(1360), + [anon_sym_intovalue] = ACTIONS(1360), + [anon_sym_jsonpath] = ACTIONS(1360), + [anon_sym_keybindingsdefault] = ACTIONS(1360), + [anon_sym_keybindingslist] = ACTIONS(1358), + [anon_sym_keybindingslisten] = ACTIONS(1360), + [anon_sym_mathabs] = ACTIONS(1360), + [anon_sym_matharccos] = ACTIONS(1358), + [anon_sym_matharccosh] = ACTIONS(1360), + [anon_sym_matharcsin] = ACTIONS(1358), + [anon_sym_matharcsinh] = ACTIONS(1360), + [anon_sym_matharctan] = ACTIONS(1358), + [anon_sym_matharctanh] = ACTIONS(1360), + [anon_sym_mathavg] = ACTIONS(1360), + [anon_sym_mathceil] = ACTIONS(1360), + [anon_sym_mathcos] = ACTIONS(1358), + [anon_sym_mathcosh] = ACTIONS(1360), + [anon_sym_mathexp] = ACTIONS(1360), + [anon_sym_mathfloor] = ACTIONS(1360), + [anon_sym_mathln] = ACTIONS(1360), + [anon_sym_mathlog] = ACTIONS(1360), + [anon_sym_mathmax] = ACTIONS(1360), + [anon_sym_mathmedian] = ACTIONS(1360), + [anon_sym_mathmin] = ACTIONS(1360), + [anon_sym_mathmode] = ACTIONS(1360), + [anon_sym_mathproduct] = ACTIONS(1360), + [anon_sym_mathround] = ACTIONS(1360), + [anon_sym_mathsin] = ACTIONS(1358), + [anon_sym_mathsinh] = ACTIONS(1360), + [anon_sym_mathsqrt] = ACTIONS(1360), + [anon_sym_mathstddev] = ACTIONS(1360), + [anon_sym_mathsum] = ACTIONS(1360), + [anon_sym_mathtan] = ACTIONS(1358), + [anon_sym_mathtanh] = ACTIONS(1360), + [anon_sym_mathvariance] = ACTIONS(1360), + [anon_sym_metadataaccess] = ACTIONS(1360), + [anon_sym_metadataset] = ACTIONS(1360), + [anon_sym_pathbasename] = ACTIONS(1360), + [anon_sym_pathdirname] = ACTIONS(1360), + [anon_sym_pathexists] = ACTIONS(1360), + [anon_sym_pathexpand] = ACTIONS(1360), + [anon_sym_pathjoin] = ACTIONS(1360), + [anon_sym_pathparse] = ACTIONS(1360), + [anon_sym_pathrelative_DASHto] = ACTIONS(1360), + [anon_sym_pathsplit] = ACTIONS(1360), + [anon_sym_pathtype] = ACTIONS(1360), + [anon_sym_pluginadd] = ACTIONS(1360), + [anon_sym_pluginlist] = ACTIONS(1360), + [anon_sym_pluginrm] = ACTIONS(1360), + [anon_sym_pluginstop] = ACTIONS(1360), + [anon_sym_polarsagg] = ACTIONS(1358), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1360), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1360), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1360), + [anon_sym_polarsappend] = ACTIONS(1360), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1360), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1360), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1360), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1360), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1360), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1360), + [anon_sym_polarsas] = ACTIONS(1358), + [anon_sym_polarsas_DASHdate] = ACTIONS(1358), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1360), + [anon_sym_polarscache] = ACTIONS(1360), + [anon_sym_polarscast] = ACTIONS(1360), + [anon_sym_polarscol] = ACTIONS(1358), + [anon_sym_polarscollect] = ACTIONS(1360), + [anon_sym_polarscolumns] = ACTIONS(1360), + [anon_sym_polarsconcat] = ACTIONS(1358), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1360), + [anon_sym_polarscontains] = ACTIONS(1360), + [anon_sym_polarscount] = ACTIONS(1358), + [anon_sym_polarscount_DASHnull] = ACTIONS(1360), + [anon_sym_polarscumulative] = ACTIONS(1360), + [anon_sym_polarsdatepart] = ACTIONS(1360), + [anon_sym_polarsdecimal] = ACTIONS(1360), + [anon_sym_polarsdrop] = ACTIONS(1358), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1360), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1360), + [anon_sym_polarsdummies] = ACTIONS(1360), + [anon_sym_polarsexplode] = ACTIONS(1360), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1360), + [anon_sym_polarsfetch] = ACTIONS(1360), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1360), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1360), + [anon_sym_polarsfilter] = ACTIONS(1358), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1360), + [anon_sym_polarsfirst] = ACTIONS(1360), + [anon_sym_polarsflatten] = ACTIONS(1360), + [anon_sym_polarsget] = ACTIONS(1358), + [anon_sym_polarsget_DASHday] = ACTIONS(1360), + [anon_sym_polarsget_DASHhour] = ACTIONS(1360), + [anon_sym_polarsget_DASHminute] = ACTIONS(1360), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1360), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1360), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1360), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1360), + [anon_sym_polarsget_DASHweek] = ACTIONS(1358), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1360), + [anon_sym_polarsget_DASHyear] = ACTIONS(1360), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1360), + [anon_sym_polarsimplode] = ACTIONS(1360), + [anon_sym_polarsinteger] = ACTIONS(1360), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1360), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1360), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1360), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1360), + [anon_sym_polarsis_DASHin] = ACTIONS(1360), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1360), + [anon_sym_polarsis_DASHnull] = ACTIONS(1360), + [anon_sym_polarsis_DASHunique] = ACTIONS(1360), + [anon_sym_polarsjoin] = ACTIONS(1360), + [anon_sym_polarslast] = ACTIONS(1360), + [anon_sym_polarslen] = ACTIONS(1360), + [anon_sym_polarslit] = ACTIONS(1360), + [anon_sym_polarslowercase] = ACTIONS(1360), + [anon_sym_polarsmax] = ACTIONS(1360), + [anon_sym_polarsmean] = ACTIONS(1360), + [anon_sym_polarsmedian] = ACTIONS(1360), + [anon_sym_polarsmin] = ACTIONS(1360), + [anon_sym_polarsn_DASHunique] = ACTIONS(1360), + [anon_sym_polarsnot] = ACTIONS(1360), + [anon_sym_polarsopen] = ACTIONS(1360), + [anon_sym_polarsotherwise] = ACTIONS(1360), + [anon_sym_polarspivot] = ACTIONS(1360), + [anon_sym_polarsprofile] = ACTIONS(1360), + [anon_sym_polarsquantile] = ACTIONS(1360), + [anon_sym_polarsquery] = ACTIONS(1360), + [anon_sym_polarsrename] = ACTIONS(1360), + [anon_sym_polarsreplace] = ACTIONS(1358), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1360), + [anon_sym_polarsreverse] = ACTIONS(1360), + [anon_sym_polarsrolling] = ACTIONS(1360), + [anon_sym_polarssample] = ACTIONS(1360), + [anon_sym_polarssave] = ACTIONS(1360), + [anon_sym_polarsschema] = ACTIONS(1360), + [anon_sym_polarsselect] = ACTIONS(1360), + [anon_sym_polarsset] = ACTIONS(1358), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1360), + [anon_sym_polarsshape] = ACTIONS(1360), + [anon_sym_polarsshift] = ACTIONS(1360), + [anon_sym_polarsslice] = ACTIONS(1360), + [anon_sym_polarssort_DASHby] = ACTIONS(1360), + [anon_sym_polarsstd] = ACTIONS(1360), + [anon_sym_polarsstore_DASHget] = ACTIONS(1360), + [anon_sym_polarsstore_DASHls] = ACTIONS(1360), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1360), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1360), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1360), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1360), + [anon_sym_polarsstrftime] = ACTIONS(1360), + [anon_sym_polarssum] = ACTIONS(1358), + [anon_sym_polarssummary] = ACTIONS(1360), + [anon_sym_polarstake] = ACTIONS(1360), + [anon_sym_polarsunique] = ACTIONS(1360), + [anon_sym_polarsunnest] = ACTIONS(1360), + [anon_sym_polarsunpivot] = ACTIONS(1360), + [anon_sym_polarsuppercase] = ACTIONS(1360), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1360), + [anon_sym_polarsvar] = ACTIONS(1360), + [anon_sym_polarswhen] = ACTIONS(1360), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1360), + [anon_sym_querydb] = ACTIONS(1360), + [anon_sym_querygit] = ACTIONS(1360), + [anon_sym_queryjson] = ACTIONS(1360), + [anon_sym_queryweb] = ACTIONS(1358), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1360), + [anon_sym_queryxml] = ACTIONS(1360), + [anon_sym_randombinary] = ACTIONS(1360), + [anon_sym_randombool] = ACTIONS(1360), + [anon_sym_randomchars] = ACTIONS(1360), + [anon_sym_randomdice] = ACTIONS(1360), + [anon_sym_randomfloat] = ACTIONS(1360), + [anon_sym_randomint] = ACTIONS(1360), + [anon_sym_randomuuid] = ACTIONS(1360), + [anon_sym_rolldown] = ACTIONS(1360), + [anon_sym_rollleft] = ACTIONS(1360), + [anon_sym_rollright] = ACTIONS(1360), + [anon_sym_rollup] = ACTIONS(1360), + [anon_sym_scopealiases] = ACTIONS(1360), + [anon_sym_scopecommands] = ACTIONS(1360), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1360), + [anon_sym_scopeexterns] = ACTIONS(1360), + [anon_sym_scopemodules] = ACTIONS(1360), + [anon_sym_scopevariables] = ACTIONS(1360), + [anon_sym_seqchar] = ACTIONS(1360), + [anon_sym_seqdate] = ACTIONS(1360), + [anon_sym_skipuntil] = ACTIONS(1360), + [anon_sym_skipwhile] = ACTIONS(1360), + [anon_sym_splitcell_DASHpath] = ACTIONS(1360), + [anon_sym_splitchars] = ACTIONS(1360), + [anon_sym_splitcolumn] = ACTIONS(1360), + [anon_sym_splitlist] = ACTIONS(1360), + [anon_sym_splitrow] = ACTIONS(1360), + [anon_sym_splitwords] = ACTIONS(1360), + [anon_sym_storcreate] = ACTIONS(1360), + [anon_sym_stordelete] = ACTIONS(1360), + [anon_sym_storexport] = ACTIONS(1360), + [anon_sym_storimport] = ACTIONS(1360), + [anon_sym_storinsert] = ACTIONS(1360), + [anon_sym_storopen] = ACTIONS(1360), + [anon_sym_storreset] = ACTIONS(1360), + [anon_sym_storupdate] = ACTIONS(1360), + [anon_sym_strbexpand] = ACTIONS(1360), + [anon_sym_strcamel_DASHcase] = ACTIONS(1360), + [anon_sym_strcapitalize] = ACTIONS(1360), + [anon_sym_strcompress] = ACTIONS(1360), + [anon_sym_strcontains] = ACTIONS(1360), + [anon_sym_strdecompress] = ACTIONS(1360), + [anon_sym_strdedent] = ACTIONS(1360), + [anon_sym_strdeunicode] = ACTIONS(1360), + [anon_sym_strdistance] = ACTIONS(1360), + [anon_sym_strdowncase] = ACTIONS(1360), + [anon_sym_strends_DASHwith] = ACTIONS(1360), + [anon_sym_strexpand] = ACTIONS(1360), + [anon_sym_strindent] = ACTIONS(1360), + [anon_sym_strindex_DASHof] = ACTIONS(1360), + [anon_sym_strjoin] = ACTIONS(1360), + [anon_sym_strkebab_DASHcase] = ACTIONS(1360), + [anon_sym_strlength] = ACTIONS(1360), + [anon_sym_strpascal_DASHcase] = ACTIONS(1360), + [anon_sym_strreplace] = ACTIONS(1360), + [anon_sym_strreverse] = ACTIONS(1360), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1360), + [anon_sym_strsimilarity] = ACTIONS(1360), + [anon_sym_strsnake_DASHcase] = ACTIONS(1360), + [anon_sym_strstarts_DASHwith] = ACTIONS(1360), + [anon_sym_strstats] = ACTIONS(1360), + [anon_sym_strsubstring] = ACTIONS(1360), + [anon_sym_strtitle_DASHcase] = ACTIONS(1360), + [anon_sym_strtrim] = ACTIONS(1360), + [anon_sym_strupcase] = ACTIONS(1360), + [anon_sym_strwrap] = ACTIONS(1360), + [anon_sym_syscpu] = ACTIONS(1360), + [anon_sym_sysdisks] = ACTIONS(1360), + [anon_sym_syshost] = ACTIONS(1360), + [anon_sym_sysmem] = ACTIONS(1360), + [anon_sym_sysnet] = ACTIONS(1360), + [anon_sym_systemp] = ACTIONS(1360), + [anon_sym_sysusers] = ACTIONS(1360), + [anon_sym_takeuntil] = ACTIONS(1360), + [anon_sym_takewhile] = ACTIONS(1360), + [anon_sym_termquery] = ACTIONS(1360), + [anon_sym_termsize] = ACTIONS(1360), + [anon_sym_tobz2] = ACTIONS(1360), + [anon_sym_tocsv] = ACTIONS(1360), + [anon_sym_togz] = ACTIONS(1360), + [anon_sym_tohtml] = ACTIONS(1360), + [anon_sym_tojson] = ACTIONS(1360), + [anon_sym_tomd] = ACTIONS(1360), + [anon_sym_tomsgpack] = ACTIONS(1358), + [anon_sym_tomsgpackz] = ACTIONS(1360), + [anon_sym_tonuon] = ACTIONS(1360), + [anon_sym_toparquet] = ACTIONS(1360), + [anon_sym_toplist] = ACTIONS(1360), + [anon_sym_topng] = ACTIONS(1360), + [anon_sym_totext] = ACTIONS(1360), + [anon_sym_totoml] = ACTIONS(1360), + [anon_sym_totsv] = ACTIONS(1360), + [anon_sym_toxml] = ACTIONS(1360), + [anon_sym_toxz] = ACTIONS(1360), + [anon_sym_toyaml] = ACTIONS(1360), + [anon_sym_tozst] = ACTIONS(1360), + [anon_sym_updatecells] = ACTIONS(1360), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1360), + [anon_sym_urldecode] = ACTIONS(1360), + [anon_sym_urlencode] = ACTIONS(1360), + [anon_sym_urljoin] = ACTIONS(1360), + [anon_sym_urlparse] = ACTIONS(1360), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1360), + [anon_sym_viewfiles] = ACTIONS(1360), + [anon_sym_viewir] = ACTIONS(1360), + [anon_sym_viewsource] = ACTIONS(1360), + [anon_sym_viewspan] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1360), + }, + [297] = { + [sym_comment] = STATE(297), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [aux_sym_cmd_identifier_token1] = ACTIONS(1337), + [aux_sym_cmd_identifier_token2] = ACTIONS(1339), + [aux_sym_cmd_identifier_token3] = ACTIONS(1339), + [aux_sym_cmd_identifier_token4] = ACTIONS(1339), + [aux_sym_cmd_identifier_token5] = ACTIONS(1339), + [aux_sym_cmd_identifier_token6] = ACTIONS(1339), + [aux_sym_cmd_identifier_token7] = ACTIONS(1339), + [aux_sym_cmd_identifier_token8] = ACTIONS(1337), + [aux_sym_cmd_identifier_token9] = ACTIONS(1337), + [aux_sym_cmd_identifier_token10] = ACTIONS(1339), + [aux_sym_cmd_identifier_token11] = ACTIONS(1339), + [aux_sym_cmd_identifier_token12] = ACTIONS(1337), + [aux_sym_cmd_identifier_token13] = ACTIONS(1337), + [aux_sym_cmd_identifier_token14] = ACTIONS(1337), + [aux_sym_cmd_identifier_token15] = ACTIONS(1337), + [aux_sym_cmd_identifier_token16] = ACTIONS(1339), + [aux_sym_cmd_identifier_token17] = ACTIONS(1339), + [aux_sym_cmd_identifier_token18] = ACTIONS(1337), + [aux_sym_cmd_identifier_token19] = ACTIONS(1339), + [aux_sym_cmd_identifier_token20] = ACTIONS(1339), + [aux_sym_cmd_identifier_token21] = ACTIONS(1339), + [aux_sym_cmd_identifier_token22] = ACTIONS(1339), + [aux_sym_cmd_identifier_token23] = ACTIONS(1339), + [aux_sym_cmd_identifier_token24] = ACTIONS(1339), + [aux_sym_cmd_identifier_token25] = ACTIONS(1339), + [aux_sym_cmd_identifier_token26] = ACTIONS(1339), + [aux_sym_cmd_identifier_token27] = ACTIONS(1339), + [aux_sym_cmd_identifier_token28] = ACTIONS(1339), + [aux_sym_cmd_identifier_token29] = ACTIONS(1339), + [aux_sym_cmd_identifier_token30] = ACTIONS(1339), + [aux_sym_cmd_identifier_token31] = ACTIONS(1339), + [aux_sym_cmd_identifier_token32] = ACTIONS(1337), + [aux_sym_cmd_identifier_token33] = ACTIONS(1339), + [aux_sym_cmd_identifier_token34] = ACTIONS(1337), + [aux_sym_cmd_identifier_token35] = ACTIONS(1339), + [aux_sym_cmd_identifier_token36] = ACTIONS(1339), + [aux_sym_cmd_identifier_token37] = ACTIONS(1339), + [aux_sym_cmd_identifier_token38] = ACTIONS(1337), + [aux_sym_cmd_identifier_token39] = ACTIONS(1339), + [aux_sym_cmd_identifier_token40] = ACTIONS(1339), + [sym__newline] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH2] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1339), + [aux_sym_expr_unary_token1] = ACTIONS(1339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1339), + [anon_sym_DOT_DOT_LT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1337), + [anon_sym_false] = ACTIONS(1337), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_decimal_token2] = ACTIONS(1339), + [aux_sym__val_number_decimal_token3] = ACTIONS(1339), + [aux_sym__val_number_decimal_token4] = ACTIONS(1339), + [aux_sym__val_number_token1] = ACTIONS(1339), + [aux_sym__val_number_token2] = ACTIONS(1339), + [aux_sym__val_number_token3] = ACTIONS(1339), + [aux_sym__val_number_token4] = ACTIONS(1337), + [aux_sym__val_number_token5] = ACTIONS(1337), + [aux_sym__val_number_token6] = ACTIONS(1337), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1339), + [aux_sym_env_var_token1] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_ansigradient] = ACTIONS(1339), + [anon_sym_ansilink] = ACTIONS(1339), + [anon_sym_ansistrip] = ACTIONS(1339), + [anon_sym_bitsand] = ACTIONS(1339), + [anon_sym_bitsnot] = ACTIONS(1339), + [anon_sym_bitsor] = ACTIONS(1339), + [anon_sym_bitsrol] = ACTIONS(1339), + [anon_sym_bitsror] = ACTIONS(1339), + [anon_sym_bitsshl] = ACTIONS(1339), + [anon_sym_bitsshr] = ACTIONS(1339), + [anon_sym_bitsxor] = ACTIONS(1339), + [anon_sym_bytesadd] = ACTIONS(1339), + [anon_sym_bytesat] = ACTIONS(1339), + [anon_sym_bytesbuild] = ACTIONS(1339), + [anon_sym_bytescollect] = ACTIONS(1339), + [anon_sym_bytesends_DASHwith] = ACTIONS(1339), + [anon_sym_bytesindex_DASHof] = ACTIONS(1339), + [anon_sym_byteslength] = ACTIONS(1339), + [anon_sym_bytesremove] = ACTIONS(1339), + [anon_sym_bytesreplace] = ACTIONS(1339), + [anon_sym_bytesreverse] = ACTIONS(1339), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1339), + [anon_sym_commandlineedit] = ACTIONS(1339), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1339), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1339), + [anon_sym_configenv] = ACTIONS(1339), + [anon_sym_confignu] = ACTIONS(1339), + [anon_sym_configreset] = ACTIONS(1339), + [anon_sym_dateformat] = ACTIONS(1339), + [anon_sym_datehumanize] = ACTIONS(1339), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1339), + [anon_sym_datenow] = ACTIONS(1339), + [anon_sym_dateto_DASHrecord] = ACTIONS(1339), + [anon_sym_dateto_DASHtable] = ACTIONS(1339), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1339), + [anon_sym_debuginfo] = ACTIONS(1339), + [anon_sym_debugprofile] = ACTIONS(1339), + [anon_sym_decodebase32] = ACTIONS(1337), + [anon_sym_decodebase32hex] = ACTIONS(1339), + [anon_sym_decodebase64] = ACTIONS(1339), + [anon_sym_decodehex] = ACTIONS(1339), + [anon_sym_detectcolumns] = ACTIONS(1339), + [anon_sym_dropcolumn] = ACTIONS(1339), + [anon_sym_dropnth] = ACTIONS(1339), + [anon_sym_dtadd] = ACTIONS(1339), + [anon_sym_dtdiff] = ACTIONS(1339), + [anon_sym_dtformat] = ACTIONS(1339), + [anon_sym_dtnow] = ACTIONS(1339), + [anon_sym_dtpart] = ACTIONS(1339), + [anon_sym_dtto] = ACTIONS(1339), + [anon_sym_dtutcnow] = ACTIONS(1339), + [anon_sym_eachwhile] = ACTIONS(1339), + [anon_sym_encodebase32] = ACTIONS(1337), + [anon_sym_encodebase32hex] = ACTIONS(1339), + [anon_sym_encodebase64] = ACTIONS(1339), + [anon_sym_encodehex] = ACTIONS(1339), + [anon_sym_errormake] = ACTIONS(1339), + [anon_sym_exploreir] = ACTIONS(1339), + [anon_sym_formatdate] = ACTIONS(1339), + [anon_sym_formatduration] = ACTIONS(1339), + [anon_sym_formatfilesize] = ACTIONS(1339), + [anon_sym_formatpattern] = ACTIONS(1339), + [anon_sym_frombz2] = ACTIONS(1339), + [anon_sym_fromcsv] = ACTIONS(1339), + [anon_sym_fromeml] = ACTIONS(1339), + [anon_sym_fromgz] = ACTIONS(1339), + [anon_sym_fromics] = ACTIONS(1339), + [anon_sym_fromini] = ACTIONS(1339), + [anon_sym_fromjson] = ACTIONS(1339), + [anon_sym_frommsgpack] = ACTIONS(1337), + [anon_sym_frommsgpackz] = ACTIONS(1339), + [anon_sym_fromnuon] = ACTIONS(1339), + [anon_sym_fromods] = ACTIONS(1339), + [anon_sym_fromparquet] = ACTIONS(1339), + [anon_sym_fromplist] = ACTIONS(1339), + [anon_sym_frompng] = ACTIONS(1339), + [anon_sym_fromssv] = ACTIONS(1339), + [anon_sym_fromtoml] = ACTIONS(1339), + [anon_sym_fromtsv] = ACTIONS(1339), + [anon_sym_fromurl] = ACTIONS(1339), + [anon_sym_fromvcf] = ACTIONS(1339), + [anon_sym_fromxlsx] = ACTIONS(1339), + [anon_sym_fromxml] = ACTIONS(1339), + [anon_sym_fromxz] = ACTIONS(1339), + [anon_sym_fromyaml] = ACTIONS(1339), + [anon_sym_fromyml] = ACTIONS(1339), + [anon_sym_fromzst] = ACTIONS(1339), + [anon_sym_hashmd5] = ACTIONS(1339), + [anon_sym_hashsha256] = ACTIONS(1339), + [anon_sym_helpaliases] = ACTIONS(1339), + [anon_sym_helpcommands] = ACTIONS(1339), + [anon_sym_helpescapes] = ACTIONS(1339), + [anon_sym_helpexterns] = ACTIONS(1339), + [anon_sym_helpmodules] = ACTIONS(1339), + [anon_sym_helpoperators] = ACTIONS(1339), + [anon_sym_historyimport] = ACTIONS(1339), + [anon_sym_historysession] = ACTIONS(1339), + [anon_sym_httpdelete] = ACTIONS(1339), + [anon_sym_httpget] = ACTIONS(1339), + [anon_sym_httphead] = ACTIONS(1339), + [anon_sym_httpoptions] = ACTIONS(1339), + [anon_sym_httppatch] = ACTIONS(1339), + [anon_sym_httppost] = ACTIONS(1339), + [anon_sym_httpput] = ACTIONS(1339), + [anon_sym_inputlist] = ACTIONS(1337), + [anon_sym_inputlisten] = ACTIONS(1339), + [anon_sym_intobinary] = ACTIONS(1339), + [anon_sym_intobits] = ACTIONS(1339), + [anon_sym_intobool] = ACTIONS(1339), + [anon_sym_intocell_DASHpath] = ACTIONS(1339), + [anon_sym_intodatetime] = ACTIONS(1339), + [anon_sym_intoduration] = ACTIONS(1339), + [anon_sym_intofilesize] = ACTIONS(1339), + [anon_sym_intofloat] = ACTIONS(1339), + [anon_sym_intoglob] = ACTIONS(1339), + [anon_sym_intoint] = ACTIONS(1339), + [anon_sym_intorecord] = ACTIONS(1339), + [anon_sym_intosqlite] = ACTIONS(1339), + [anon_sym_intostring] = ACTIONS(1339), + [anon_sym_intovalue] = ACTIONS(1339), + [anon_sym_jsonpath] = ACTIONS(1339), + [anon_sym_keybindingsdefault] = ACTIONS(1339), + [anon_sym_keybindingslist] = ACTIONS(1337), + [anon_sym_keybindingslisten] = ACTIONS(1339), + [anon_sym_mathabs] = ACTIONS(1339), + [anon_sym_matharccos] = ACTIONS(1337), + [anon_sym_matharccosh] = ACTIONS(1339), + [anon_sym_matharcsin] = ACTIONS(1337), + [anon_sym_matharcsinh] = ACTIONS(1339), + [anon_sym_matharctan] = ACTIONS(1337), + [anon_sym_matharctanh] = ACTIONS(1339), + [anon_sym_mathavg] = ACTIONS(1339), + [anon_sym_mathceil] = ACTIONS(1339), + [anon_sym_mathcos] = ACTIONS(1337), + [anon_sym_mathcosh] = ACTIONS(1339), + [anon_sym_mathexp] = ACTIONS(1339), + [anon_sym_mathfloor] = ACTIONS(1339), + [anon_sym_mathln] = ACTIONS(1339), + [anon_sym_mathlog] = ACTIONS(1339), + [anon_sym_mathmax] = ACTIONS(1339), + [anon_sym_mathmedian] = ACTIONS(1339), + [anon_sym_mathmin] = ACTIONS(1339), + [anon_sym_mathmode] = ACTIONS(1339), + [anon_sym_mathproduct] = ACTIONS(1339), + [anon_sym_mathround] = ACTIONS(1339), + [anon_sym_mathsin] = ACTIONS(1337), + [anon_sym_mathsinh] = ACTIONS(1339), + [anon_sym_mathsqrt] = ACTIONS(1339), + [anon_sym_mathstddev] = ACTIONS(1339), + [anon_sym_mathsum] = ACTIONS(1339), + [anon_sym_mathtan] = ACTIONS(1337), + [anon_sym_mathtanh] = ACTIONS(1339), + [anon_sym_mathvariance] = ACTIONS(1339), + [anon_sym_metadataaccess] = ACTIONS(1339), + [anon_sym_metadataset] = ACTIONS(1339), + [anon_sym_pathbasename] = ACTIONS(1339), + [anon_sym_pathdirname] = ACTIONS(1339), + [anon_sym_pathexists] = ACTIONS(1339), + [anon_sym_pathexpand] = ACTIONS(1339), + [anon_sym_pathjoin] = ACTIONS(1339), + [anon_sym_pathparse] = ACTIONS(1339), + [anon_sym_pathrelative_DASHto] = ACTIONS(1339), + [anon_sym_pathsplit] = ACTIONS(1339), + [anon_sym_pathtype] = ACTIONS(1339), + [anon_sym_pluginadd] = ACTIONS(1339), + [anon_sym_pluginlist] = ACTIONS(1339), + [anon_sym_pluginrm] = ACTIONS(1339), + [anon_sym_pluginstop] = ACTIONS(1339), + [anon_sym_polarsagg] = ACTIONS(1337), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1339), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1339), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1339), + [anon_sym_polarsappend] = ACTIONS(1339), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1339), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1339), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1339), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1339), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1339), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1339), + [anon_sym_polarsas] = ACTIONS(1337), + [anon_sym_polarsas_DASHdate] = ACTIONS(1337), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1339), + [anon_sym_polarscache] = ACTIONS(1339), + [anon_sym_polarscast] = ACTIONS(1339), + [anon_sym_polarscol] = ACTIONS(1337), + [anon_sym_polarscollect] = ACTIONS(1339), + [anon_sym_polarscolumns] = ACTIONS(1339), + [anon_sym_polarsconcat] = ACTIONS(1337), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1339), + [anon_sym_polarscontains] = ACTIONS(1339), + [anon_sym_polarscount] = ACTIONS(1337), + [anon_sym_polarscount_DASHnull] = ACTIONS(1339), + [anon_sym_polarscumulative] = ACTIONS(1339), + [anon_sym_polarsdatepart] = ACTIONS(1339), + [anon_sym_polarsdecimal] = ACTIONS(1339), + [anon_sym_polarsdrop] = ACTIONS(1337), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1339), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1339), + [anon_sym_polarsdummies] = ACTIONS(1339), + [anon_sym_polarsexplode] = ACTIONS(1339), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1339), + [anon_sym_polarsfetch] = ACTIONS(1339), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1339), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1339), + [anon_sym_polarsfilter] = ACTIONS(1337), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1339), + [anon_sym_polarsfirst] = ACTIONS(1339), + [anon_sym_polarsflatten] = ACTIONS(1339), + [anon_sym_polarsget] = ACTIONS(1337), + [anon_sym_polarsget_DASHday] = ACTIONS(1339), + [anon_sym_polarsget_DASHhour] = ACTIONS(1339), + [anon_sym_polarsget_DASHminute] = ACTIONS(1339), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1339), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1339), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1339), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1339), + [anon_sym_polarsget_DASHweek] = ACTIONS(1337), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1339), + [anon_sym_polarsget_DASHyear] = ACTIONS(1339), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1339), + [anon_sym_polarsimplode] = ACTIONS(1339), + [anon_sym_polarsinteger] = ACTIONS(1339), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1339), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1339), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1339), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1339), + [anon_sym_polarsis_DASHin] = ACTIONS(1339), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1339), + [anon_sym_polarsis_DASHnull] = ACTIONS(1339), + [anon_sym_polarsis_DASHunique] = ACTIONS(1339), + [anon_sym_polarsjoin] = ACTIONS(1339), + [anon_sym_polarslast] = ACTIONS(1339), + [anon_sym_polarslen] = ACTIONS(1339), + [anon_sym_polarslit] = ACTIONS(1339), + [anon_sym_polarslowercase] = ACTIONS(1339), + [anon_sym_polarsmax] = ACTIONS(1339), + [anon_sym_polarsmean] = ACTIONS(1339), + [anon_sym_polarsmedian] = ACTIONS(1339), + [anon_sym_polarsmin] = ACTIONS(1339), + [anon_sym_polarsn_DASHunique] = ACTIONS(1339), + [anon_sym_polarsnot] = ACTIONS(1339), + [anon_sym_polarsopen] = ACTIONS(1339), + [anon_sym_polarsotherwise] = ACTIONS(1339), + [anon_sym_polarspivot] = ACTIONS(1339), + [anon_sym_polarsprofile] = ACTIONS(1339), + [anon_sym_polarsquantile] = ACTIONS(1339), + [anon_sym_polarsquery] = ACTIONS(1339), + [anon_sym_polarsrename] = ACTIONS(1339), + [anon_sym_polarsreplace] = ACTIONS(1337), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1339), + [anon_sym_polarsreverse] = ACTIONS(1339), + [anon_sym_polarsrolling] = ACTIONS(1339), + [anon_sym_polarssample] = ACTIONS(1339), + [anon_sym_polarssave] = ACTIONS(1339), + [anon_sym_polarsschema] = ACTIONS(1339), + [anon_sym_polarsselect] = ACTIONS(1339), + [anon_sym_polarsset] = ACTIONS(1337), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1339), + [anon_sym_polarsshape] = ACTIONS(1339), + [anon_sym_polarsshift] = ACTIONS(1339), + [anon_sym_polarsslice] = ACTIONS(1339), + [anon_sym_polarssort_DASHby] = ACTIONS(1339), + [anon_sym_polarsstd] = ACTIONS(1339), + [anon_sym_polarsstore_DASHget] = ACTIONS(1339), + [anon_sym_polarsstore_DASHls] = ACTIONS(1339), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1339), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1339), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1339), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1339), + [anon_sym_polarsstrftime] = ACTIONS(1339), + [anon_sym_polarssum] = ACTIONS(1337), + [anon_sym_polarssummary] = ACTIONS(1339), + [anon_sym_polarstake] = ACTIONS(1339), + [anon_sym_polarsunique] = ACTIONS(1339), + [anon_sym_polarsunnest] = ACTIONS(1339), + [anon_sym_polarsunpivot] = ACTIONS(1339), + [anon_sym_polarsuppercase] = ACTIONS(1339), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1339), + [anon_sym_polarsvar] = ACTIONS(1339), + [anon_sym_polarswhen] = ACTIONS(1339), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1339), + [anon_sym_querydb] = ACTIONS(1339), + [anon_sym_querygit] = ACTIONS(1339), + [anon_sym_queryjson] = ACTIONS(1339), + [anon_sym_queryweb] = ACTIONS(1337), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1339), + [anon_sym_queryxml] = ACTIONS(1339), + [anon_sym_randombinary] = ACTIONS(1339), + [anon_sym_randombool] = ACTIONS(1339), + [anon_sym_randomchars] = ACTIONS(1339), + [anon_sym_randomdice] = ACTIONS(1339), + [anon_sym_randomfloat] = ACTIONS(1339), + [anon_sym_randomint] = ACTIONS(1339), + [anon_sym_randomuuid] = ACTIONS(1339), + [anon_sym_rolldown] = ACTIONS(1339), + [anon_sym_rollleft] = ACTIONS(1339), + [anon_sym_rollright] = ACTIONS(1339), + [anon_sym_rollup] = ACTIONS(1339), + [anon_sym_scopealiases] = ACTIONS(1339), + [anon_sym_scopecommands] = ACTIONS(1339), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1339), + [anon_sym_scopeexterns] = ACTIONS(1339), + [anon_sym_scopemodules] = ACTIONS(1339), + [anon_sym_scopevariables] = ACTIONS(1339), + [anon_sym_seqchar] = ACTIONS(1339), + [anon_sym_seqdate] = ACTIONS(1339), + [anon_sym_skipuntil] = ACTIONS(1339), + [anon_sym_skipwhile] = ACTIONS(1339), + [anon_sym_splitcell_DASHpath] = ACTIONS(1339), + [anon_sym_splitchars] = ACTIONS(1339), + [anon_sym_splitcolumn] = ACTIONS(1339), + [anon_sym_splitlist] = ACTIONS(1339), + [anon_sym_splitrow] = ACTIONS(1339), + [anon_sym_splitwords] = ACTIONS(1339), + [anon_sym_storcreate] = ACTIONS(1339), + [anon_sym_stordelete] = ACTIONS(1339), + [anon_sym_storexport] = ACTIONS(1339), + [anon_sym_storimport] = ACTIONS(1339), + [anon_sym_storinsert] = ACTIONS(1339), + [anon_sym_storopen] = ACTIONS(1339), + [anon_sym_storreset] = ACTIONS(1339), + [anon_sym_storupdate] = ACTIONS(1339), + [anon_sym_strbexpand] = ACTIONS(1339), + [anon_sym_strcamel_DASHcase] = ACTIONS(1339), + [anon_sym_strcapitalize] = ACTIONS(1339), + [anon_sym_strcompress] = ACTIONS(1339), + [anon_sym_strcontains] = ACTIONS(1339), + [anon_sym_strdecompress] = ACTIONS(1339), + [anon_sym_strdedent] = ACTIONS(1339), + [anon_sym_strdeunicode] = ACTIONS(1339), + [anon_sym_strdistance] = ACTIONS(1339), + [anon_sym_strdowncase] = ACTIONS(1339), + [anon_sym_strends_DASHwith] = ACTIONS(1339), + [anon_sym_strexpand] = ACTIONS(1339), + [anon_sym_strindent] = ACTIONS(1339), + [anon_sym_strindex_DASHof] = ACTIONS(1339), + [anon_sym_strjoin] = ACTIONS(1339), + [anon_sym_strkebab_DASHcase] = ACTIONS(1339), + [anon_sym_strlength] = ACTIONS(1339), + [anon_sym_strpascal_DASHcase] = ACTIONS(1339), + [anon_sym_strreplace] = ACTIONS(1339), + [anon_sym_strreverse] = ACTIONS(1339), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1339), + [anon_sym_strsimilarity] = ACTIONS(1339), + [anon_sym_strsnake_DASHcase] = ACTIONS(1339), + [anon_sym_strstarts_DASHwith] = ACTIONS(1339), + [anon_sym_strstats] = ACTIONS(1339), + [anon_sym_strsubstring] = ACTIONS(1339), + [anon_sym_strtitle_DASHcase] = ACTIONS(1339), + [anon_sym_strtrim] = ACTIONS(1339), + [anon_sym_strupcase] = ACTIONS(1339), + [anon_sym_strwrap] = ACTIONS(1339), + [anon_sym_syscpu] = ACTIONS(1339), + [anon_sym_sysdisks] = ACTIONS(1339), + [anon_sym_syshost] = ACTIONS(1339), + [anon_sym_sysmem] = ACTIONS(1339), + [anon_sym_sysnet] = ACTIONS(1339), + [anon_sym_systemp] = ACTIONS(1339), + [anon_sym_sysusers] = ACTIONS(1339), + [anon_sym_takeuntil] = ACTIONS(1339), + [anon_sym_takewhile] = ACTIONS(1339), + [anon_sym_termquery] = ACTIONS(1339), + [anon_sym_termsize] = ACTIONS(1339), + [anon_sym_tobz2] = ACTIONS(1339), + [anon_sym_tocsv] = ACTIONS(1339), + [anon_sym_togz] = ACTIONS(1339), + [anon_sym_tohtml] = ACTIONS(1339), + [anon_sym_tojson] = ACTIONS(1339), + [anon_sym_tomd] = ACTIONS(1339), + [anon_sym_tomsgpack] = ACTIONS(1337), + [anon_sym_tomsgpackz] = ACTIONS(1339), + [anon_sym_tonuon] = ACTIONS(1339), + [anon_sym_toparquet] = ACTIONS(1339), + [anon_sym_toplist] = ACTIONS(1339), + [anon_sym_topng] = ACTIONS(1339), + [anon_sym_totext] = ACTIONS(1339), + [anon_sym_totoml] = ACTIONS(1339), + [anon_sym_totsv] = ACTIONS(1339), + [anon_sym_toxml] = ACTIONS(1339), + [anon_sym_toxz] = ACTIONS(1339), + [anon_sym_toyaml] = ACTIONS(1339), + [anon_sym_tozst] = ACTIONS(1339), + [anon_sym_updatecells] = ACTIONS(1339), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1339), + [anon_sym_urldecode] = ACTIONS(1339), + [anon_sym_urlencode] = ACTIONS(1339), + [anon_sym_urljoin] = ACTIONS(1339), + [anon_sym_urlparse] = ACTIONS(1339), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1339), + [anon_sym_viewfiles] = ACTIONS(1339), + [anon_sym_viewir] = ACTIONS(1339), + [anon_sym_viewsource] = ACTIONS(1339), + [anon_sym_viewspan] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1339), + }, + [298] = { + [sym_cmd_identifier] = STATE(4616), + [sym__expression] = STATE(3864), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(840), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4976), + [sym_comment] = STATE(298), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(479), + [aux_sym__val_number_decimal_token2] = ACTIONS(481), + [aux_sym__val_number_decimal_token3] = ACTIONS(483), + [aux_sym__val_number_decimal_token4] = ACTIONS(485), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [299] = { + [sym_cmd_identifier] = STATE(4789), + [sym_ctrl_if] = STATE(5148), + [sym_block] = STATE(5149), + [sym__expression] = STATE(5149), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3972), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1208), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_command] = STATE(5149), + [sym_comment] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_if] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1366), + [aux_sym__val_number_decimal_token3] = ACTIONS(1368), + [aux_sym__val_number_decimal_token4] = ACTIONS(1370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_ansigradient] = ACTIONS(121), + [anon_sym_ansilink] = ACTIONS(121), + [anon_sym_ansistrip] = ACTIONS(121), + [anon_sym_bitsand] = ACTIONS(121), + [anon_sym_bitsnot] = ACTIONS(121), + [anon_sym_bitsor] = ACTIONS(121), + [anon_sym_bitsrol] = ACTIONS(121), + [anon_sym_bitsror] = ACTIONS(121), + [anon_sym_bitsshl] = ACTIONS(121), + [anon_sym_bitsshr] = ACTIONS(121), + [anon_sym_bitsxor] = ACTIONS(121), + [anon_sym_bytesadd] = ACTIONS(121), + [anon_sym_bytesat] = ACTIONS(121), + [anon_sym_bytesbuild] = ACTIONS(121), + [anon_sym_bytescollect] = ACTIONS(121), + [anon_sym_bytesends_DASHwith] = ACTIONS(121), + [anon_sym_bytesindex_DASHof] = ACTIONS(121), + [anon_sym_byteslength] = ACTIONS(121), + [anon_sym_bytesremove] = ACTIONS(121), + [anon_sym_bytesreplace] = ACTIONS(121), + [anon_sym_bytesreverse] = ACTIONS(121), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(121), + [anon_sym_commandlineedit] = ACTIONS(121), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(121), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(121), + [anon_sym_configenv] = ACTIONS(121), + [anon_sym_confignu] = ACTIONS(121), + [anon_sym_configreset] = ACTIONS(121), + [anon_sym_dateformat] = ACTIONS(121), + [anon_sym_datehumanize] = ACTIONS(121), + [anon_sym_datelist_DASHtimezone] = ACTIONS(121), + [anon_sym_datenow] = ACTIONS(121), + [anon_sym_dateto_DASHrecord] = ACTIONS(121), + [anon_sym_dateto_DASHtable] = ACTIONS(121), + [anon_sym_dateto_DASHtimezone] = ACTIONS(121), + [anon_sym_debuginfo] = ACTIONS(121), + [anon_sym_debugprofile] = ACTIONS(121), + [anon_sym_decodebase32] = ACTIONS(123), + [anon_sym_decodebase32hex] = ACTIONS(121), + [anon_sym_decodebase64] = ACTIONS(121), + [anon_sym_decodehex] = ACTIONS(121), + [anon_sym_detectcolumns] = ACTIONS(121), + [anon_sym_dropcolumn] = ACTIONS(121), + [anon_sym_dropnth] = ACTIONS(121), + [anon_sym_dtadd] = ACTIONS(121), + [anon_sym_dtdiff] = ACTIONS(121), + [anon_sym_dtformat] = ACTIONS(121), + [anon_sym_dtnow] = ACTIONS(121), + [anon_sym_dtpart] = ACTIONS(121), + [anon_sym_dtto] = ACTIONS(121), + [anon_sym_dtutcnow] = ACTIONS(121), + [anon_sym_eachwhile] = ACTIONS(121), + [anon_sym_encodebase32] = ACTIONS(123), + [anon_sym_encodebase32hex] = ACTIONS(121), + [anon_sym_encodebase64] = ACTIONS(121), + [anon_sym_encodehex] = ACTIONS(121), + [anon_sym_errormake] = ACTIONS(121), + [anon_sym_exploreir] = ACTIONS(121), + [anon_sym_formatdate] = ACTIONS(121), + [anon_sym_formatduration] = ACTIONS(121), + [anon_sym_formatfilesize] = ACTIONS(121), + [anon_sym_formatpattern] = ACTIONS(121), + [anon_sym_frombz2] = ACTIONS(121), + [anon_sym_fromcsv] = ACTIONS(121), + [anon_sym_fromeml] = ACTIONS(121), + [anon_sym_fromgz] = ACTIONS(121), + [anon_sym_fromics] = ACTIONS(121), + [anon_sym_fromini] = ACTIONS(121), + [anon_sym_fromjson] = ACTIONS(121), + [anon_sym_frommsgpack] = ACTIONS(123), + [anon_sym_frommsgpackz] = ACTIONS(121), + [anon_sym_fromnuon] = ACTIONS(121), + [anon_sym_fromods] = ACTIONS(121), + [anon_sym_fromparquet] = ACTIONS(121), + [anon_sym_fromplist] = ACTIONS(121), + [anon_sym_frompng] = ACTIONS(121), + [anon_sym_fromssv] = ACTIONS(121), + [anon_sym_fromtoml] = ACTIONS(121), + [anon_sym_fromtsv] = ACTIONS(121), + [anon_sym_fromurl] = ACTIONS(121), + [anon_sym_fromvcf] = ACTIONS(121), + [anon_sym_fromxlsx] = ACTIONS(121), + [anon_sym_fromxml] = ACTIONS(121), + [anon_sym_fromxz] = ACTIONS(121), + [anon_sym_fromyaml] = ACTIONS(121), + [anon_sym_fromyml] = ACTIONS(121), + [anon_sym_fromzst] = ACTIONS(121), + [anon_sym_hashmd5] = ACTIONS(121), + [anon_sym_hashsha256] = ACTIONS(121), + [anon_sym_helpaliases] = ACTIONS(121), + [anon_sym_helpcommands] = ACTIONS(121), + [anon_sym_helpescapes] = ACTIONS(121), + [anon_sym_helpexterns] = ACTIONS(121), + [anon_sym_helpmodules] = ACTIONS(121), + [anon_sym_helpoperators] = ACTIONS(121), + [anon_sym_historyimport] = ACTIONS(121), + [anon_sym_historysession] = ACTIONS(121), + [anon_sym_httpdelete] = ACTIONS(121), + [anon_sym_httpget] = ACTIONS(121), + [anon_sym_httphead] = ACTIONS(121), + [anon_sym_httpoptions] = ACTIONS(121), + [anon_sym_httppatch] = ACTIONS(121), + [anon_sym_httppost] = ACTIONS(121), + [anon_sym_httpput] = ACTIONS(121), + [anon_sym_inputlist] = ACTIONS(123), + [anon_sym_inputlisten] = ACTIONS(121), + [anon_sym_intobinary] = ACTIONS(121), + [anon_sym_intobits] = ACTIONS(121), + [anon_sym_intobool] = ACTIONS(121), + [anon_sym_intocell_DASHpath] = ACTIONS(121), + [anon_sym_intodatetime] = ACTIONS(121), + [anon_sym_intoduration] = ACTIONS(121), + [anon_sym_intofilesize] = ACTIONS(121), + [anon_sym_intofloat] = ACTIONS(121), + [anon_sym_intoglob] = ACTIONS(121), + [anon_sym_intoint] = ACTIONS(121), + [anon_sym_intorecord] = ACTIONS(121), + [anon_sym_intosqlite] = ACTIONS(121), + [anon_sym_intostring] = ACTIONS(121), + [anon_sym_intovalue] = ACTIONS(121), + [anon_sym_jsonpath] = ACTIONS(121), + [anon_sym_keybindingsdefault] = ACTIONS(121), + [anon_sym_keybindingslist] = ACTIONS(123), + [anon_sym_keybindingslisten] = ACTIONS(121), + [anon_sym_mathabs] = ACTIONS(121), + [anon_sym_matharccos] = ACTIONS(123), + [anon_sym_matharccosh] = ACTIONS(121), + [anon_sym_matharcsin] = ACTIONS(123), + [anon_sym_matharcsinh] = ACTIONS(121), + [anon_sym_matharctan] = ACTIONS(123), + [anon_sym_matharctanh] = ACTIONS(121), + [anon_sym_mathavg] = ACTIONS(121), + [anon_sym_mathceil] = ACTIONS(121), + [anon_sym_mathcos] = ACTIONS(123), + [anon_sym_mathcosh] = ACTIONS(121), + [anon_sym_mathexp] = ACTIONS(121), + [anon_sym_mathfloor] = ACTIONS(121), + [anon_sym_mathln] = ACTIONS(121), + [anon_sym_mathlog] = ACTIONS(121), + [anon_sym_mathmax] = ACTIONS(121), + [anon_sym_mathmedian] = ACTIONS(121), + [anon_sym_mathmin] = ACTIONS(121), + [anon_sym_mathmode] = ACTIONS(121), + [anon_sym_mathproduct] = ACTIONS(121), + [anon_sym_mathround] = ACTIONS(121), + [anon_sym_mathsin] = ACTIONS(123), + [anon_sym_mathsinh] = ACTIONS(121), + [anon_sym_mathsqrt] = ACTIONS(121), + [anon_sym_mathstddev] = ACTIONS(121), + [anon_sym_mathsum] = ACTIONS(121), + [anon_sym_mathtan] = ACTIONS(123), + [anon_sym_mathtanh] = ACTIONS(121), + [anon_sym_mathvariance] = ACTIONS(121), + [anon_sym_metadataaccess] = ACTIONS(121), + [anon_sym_metadataset] = ACTIONS(121), + [anon_sym_pathbasename] = ACTIONS(121), + [anon_sym_pathdirname] = ACTIONS(121), + [anon_sym_pathexists] = ACTIONS(121), + [anon_sym_pathexpand] = ACTIONS(121), + [anon_sym_pathjoin] = ACTIONS(121), + [anon_sym_pathparse] = ACTIONS(121), + [anon_sym_pathrelative_DASHto] = ACTIONS(121), + [anon_sym_pathsplit] = ACTIONS(121), + [anon_sym_pathtype] = ACTIONS(121), + [anon_sym_pluginadd] = ACTIONS(121), + [anon_sym_pluginlist] = ACTIONS(121), + [anon_sym_pluginrm] = ACTIONS(121), + [anon_sym_pluginstop] = ACTIONS(121), + [anon_sym_polarsagg] = ACTIONS(123), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(121), + [anon_sym_polarsall_DASHfalse] = ACTIONS(121), + [anon_sym_polarsall_DASHtrue] = ACTIONS(121), + [anon_sym_polarsappend] = ACTIONS(121), + [anon_sym_polarsarg_DASHmax] = ACTIONS(121), + [anon_sym_polarsarg_DASHmin] = ACTIONS(121), + [anon_sym_polarsarg_DASHsort] = ACTIONS(121), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(121), + [anon_sym_polarsarg_DASHunique] = ACTIONS(121), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(121), + [anon_sym_polarsas] = ACTIONS(123), + [anon_sym_polarsas_DASHdate] = ACTIONS(123), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(121), + [anon_sym_polarscache] = ACTIONS(121), + [anon_sym_polarscast] = ACTIONS(121), + [anon_sym_polarscol] = ACTIONS(123), + [anon_sym_polarscollect] = ACTIONS(121), + [anon_sym_polarscolumns] = ACTIONS(121), + [anon_sym_polarsconcat] = ACTIONS(123), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(121), + [anon_sym_polarscontains] = ACTIONS(121), + [anon_sym_polarscount] = ACTIONS(123), + [anon_sym_polarscount_DASHnull] = ACTIONS(121), + [anon_sym_polarscumulative] = ACTIONS(121), + [anon_sym_polarsdatepart] = ACTIONS(121), + [anon_sym_polarsdecimal] = ACTIONS(121), + [anon_sym_polarsdrop] = ACTIONS(123), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(121), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(121), + [anon_sym_polarsdummies] = ACTIONS(121), + [anon_sym_polarsexplode] = ACTIONS(121), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(121), + [anon_sym_polarsfetch] = ACTIONS(121), + [anon_sym_polarsfill_DASHnan] = ACTIONS(121), + [anon_sym_polarsfill_DASHnull] = ACTIONS(121), + [anon_sym_polarsfilter] = ACTIONS(123), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(121), + [anon_sym_polarsfirst] = ACTIONS(121), + [anon_sym_polarsflatten] = ACTIONS(121), + [anon_sym_polarsget] = ACTIONS(123), + [anon_sym_polarsget_DASHday] = ACTIONS(121), + [anon_sym_polarsget_DASHhour] = ACTIONS(121), + [anon_sym_polarsget_DASHminute] = ACTIONS(121), + [anon_sym_polarsget_DASHmonth] = ACTIONS(121), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(121), + [anon_sym_polarsget_DASHordinal] = ACTIONS(121), + [anon_sym_polarsget_DASHsecond] = ACTIONS(121), + [anon_sym_polarsget_DASHweek] = ACTIONS(123), + [anon_sym_polarsget_DASHweekday] = ACTIONS(121), + [anon_sym_polarsget_DASHyear] = ACTIONS(121), + [anon_sym_polarsgroup_DASHby] = ACTIONS(121), + [anon_sym_polarsimplode] = ACTIONS(121), + [anon_sym_polarsinteger] = ACTIONS(121), + [anon_sym_polarsinto_DASHdf] = ACTIONS(121), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(121), + [anon_sym_polarsinto_DASHnu] = ACTIONS(121), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(121), + [anon_sym_polarsis_DASHin] = ACTIONS(121), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHnull] = ACTIONS(121), + [anon_sym_polarsis_DASHunique] = ACTIONS(121), + [anon_sym_polarsjoin] = ACTIONS(121), + [anon_sym_polarslast] = ACTIONS(121), + [anon_sym_polarslen] = ACTIONS(121), + [anon_sym_polarslit] = ACTIONS(121), + [anon_sym_polarslowercase] = ACTIONS(121), + [anon_sym_polarsmax] = ACTIONS(121), + [anon_sym_polarsmean] = ACTIONS(121), + [anon_sym_polarsmedian] = ACTIONS(121), + [anon_sym_polarsmin] = ACTIONS(121), + [anon_sym_polarsn_DASHunique] = ACTIONS(121), + [anon_sym_polarsnot] = ACTIONS(121), + [anon_sym_polarsopen] = ACTIONS(121), + [anon_sym_polarsotherwise] = ACTIONS(121), + [anon_sym_polarspivot] = ACTIONS(121), + [anon_sym_polarsprofile] = ACTIONS(121), + [anon_sym_polarsquantile] = ACTIONS(121), + [anon_sym_polarsquery] = ACTIONS(121), + [anon_sym_polarsrename] = ACTIONS(121), + [anon_sym_polarsreplace] = ACTIONS(123), + [anon_sym_polarsreplace_DASHall] = ACTIONS(121), + [anon_sym_polarsreverse] = ACTIONS(121), + [anon_sym_polarsrolling] = ACTIONS(121), + [anon_sym_polarssample] = ACTIONS(121), + [anon_sym_polarssave] = ACTIONS(121), + [anon_sym_polarsschema] = ACTIONS(121), + [anon_sym_polarsselect] = ACTIONS(121), + [anon_sym_polarsset] = ACTIONS(123), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(121), + [anon_sym_polarsshape] = ACTIONS(121), + [anon_sym_polarsshift] = ACTIONS(121), + [anon_sym_polarsslice] = ACTIONS(121), + [anon_sym_polarssort_DASHby] = ACTIONS(121), + [anon_sym_polarsstd] = ACTIONS(121), + [anon_sym_polarsstore_DASHget] = ACTIONS(121), + [anon_sym_polarsstore_DASHls] = ACTIONS(121), + [anon_sym_polarsstore_DASHrm] = ACTIONS(121), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(121), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(121), + [anon_sym_polarsstr_DASHslice] = ACTIONS(121), + [anon_sym_polarsstrftime] = ACTIONS(121), + [anon_sym_polarssum] = ACTIONS(123), + [anon_sym_polarssummary] = ACTIONS(121), + [anon_sym_polarstake] = ACTIONS(121), + [anon_sym_polarsunique] = ACTIONS(121), + [anon_sym_polarsunnest] = ACTIONS(121), + [anon_sym_polarsunpivot] = ACTIONS(121), + [anon_sym_polarsuppercase] = ACTIONS(121), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(121), + [anon_sym_polarsvar] = ACTIONS(121), + [anon_sym_polarswhen] = ACTIONS(121), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(121), + [anon_sym_querydb] = ACTIONS(121), + [anon_sym_querygit] = ACTIONS(121), + [anon_sym_queryjson] = ACTIONS(121), + [anon_sym_queryweb] = ACTIONS(123), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(121), + [anon_sym_queryxml] = ACTIONS(121), + [anon_sym_randombinary] = ACTIONS(121), + [anon_sym_randombool] = ACTIONS(121), + [anon_sym_randomchars] = ACTIONS(121), + [anon_sym_randomdice] = ACTIONS(121), + [anon_sym_randomfloat] = ACTIONS(121), + [anon_sym_randomint] = ACTIONS(121), + [anon_sym_randomuuid] = ACTIONS(121), + [anon_sym_rolldown] = ACTIONS(121), + [anon_sym_rollleft] = ACTIONS(121), + [anon_sym_rollright] = ACTIONS(121), + [anon_sym_rollup] = ACTIONS(121), + [anon_sym_scopealiases] = ACTIONS(121), + [anon_sym_scopecommands] = ACTIONS(121), + [anon_sym_scopeengine_DASHstats] = ACTIONS(121), + [anon_sym_scopeexterns] = ACTIONS(121), + [anon_sym_scopemodules] = ACTIONS(121), + [anon_sym_scopevariables] = ACTIONS(121), + [anon_sym_seqchar] = ACTIONS(121), + [anon_sym_seqdate] = ACTIONS(121), + [anon_sym_skipuntil] = ACTIONS(121), + [anon_sym_skipwhile] = ACTIONS(121), + [anon_sym_splitcell_DASHpath] = ACTIONS(121), + [anon_sym_splitchars] = ACTIONS(121), + [anon_sym_splitcolumn] = ACTIONS(121), + [anon_sym_splitlist] = ACTIONS(121), + [anon_sym_splitrow] = ACTIONS(121), + [anon_sym_splitwords] = ACTIONS(121), + [anon_sym_storcreate] = ACTIONS(121), + [anon_sym_stordelete] = ACTIONS(121), + [anon_sym_storexport] = ACTIONS(121), + [anon_sym_storimport] = ACTIONS(121), + [anon_sym_storinsert] = ACTIONS(121), + [anon_sym_storopen] = ACTIONS(121), + [anon_sym_storreset] = ACTIONS(121), + [anon_sym_storupdate] = ACTIONS(121), + [anon_sym_strbexpand] = ACTIONS(121), + [anon_sym_strcamel_DASHcase] = ACTIONS(121), + [anon_sym_strcapitalize] = ACTIONS(121), + [anon_sym_strcompress] = ACTIONS(121), + [anon_sym_strcontains] = ACTIONS(121), + [anon_sym_strdecompress] = ACTIONS(121), + [anon_sym_strdedent] = ACTIONS(121), + [anon_sym_strdeunicode] = ACTIONS(121), + [anon_sym_strdistance] = ACTIONS(121), + [anon_sym_strdowncase] = ACTIONS(121), + [anon_sym_strends_DASHwith] = ACTIONS(121), + [anon_sym_strexpand] = ACTIONS(121), + [anon_sym_strindent] = ACTIONS(121), + [anon_sym_strindex_DASHof] = ACTIONS(121), + [anon_sym_strjoin] = ACTIONS(121), + [anon_sym_strkebab_DASHcase] = ACTIONS(121), + [anon_sym_strlength] = ACTIONS(121), + [anon_sym_strpascal_DASHcase] = ACTIONS(121), + [anon_sym_strreplace] = ACTIONS(121), + [anon_sym_strreverse] = ACTIONS(121), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(121), + [anon_sym_strsimilarity] = ACTIONS(121), + [anon_sym_strsnake_DASHcase] = ACTIONS(121), + [anon_sym_strstarts_DASHwith] = ACTIONS(121), + [anon_sym_strstats] = ACTIONS(121), + [anon_sym_strsubstring] = ACTIONS(121), + [anon_sym_strtitle_DASHcase] = ACTIONS(121), + [anon_sym_strtrim] = ACTIONS(121), + [anon_sym_strupcase] = ACTIONS(121), + [anon_sym_strwrap] = ACTIONS(121), + [anon_sym_syscpu] = ACTIONS(121), + [anon_sym_sysdisks] = ACTIONS(121), + [anon_sym_syshost] = ACTIONS(121), + [anon_sym_sysmem] = ACTIONS(121), + [anon_sym_sysnet] = ACTIONS(121), + [anon_sym_systemp] = ACTIONS(121), + [anon_sym_sysusers] = ACTIONS(121), + [anon_sym_takeuntil] = ACTIONS(121), + [anon_sym_takewhile] = ACTIONS(121), + [anon_sym_termquery] = ACTIONS(121), + [anon_sym_termsize] = ACTIONS(121), + [anon_sym_tobz2] = ACTIONS(121), + [anon_sym_tocsv] = ACTIONS(121), + [anon_sym_togz] = ACTIONS(121), + [anon_sym_tohtml] = ACTIONS(121), + [anon_sym_tojson] = ACTIONS(121), + [anon_sym_tomd] = ACTIONS(121), + [anon_sym_tomsgpack] = ACTIONS(123), + [anon_sym_tomsgpackz] = ACTIONS(121), + [anon_sym_tonuon] = ACTIONS(121), + [anon_sym_toparquet] = ACTIONS(121), + [anon_sym_toplist] = ACTIONS(121), + [anon_sym_topng] = ACTIONS(121), + [anon_sym_totext] = ACTIONS(121), + [anon_sym_totoml] = ACTIONS(121), + [anon_sym_totsv] = ACTIONS(121), + [anon_sym_toxml] = ACTIONS(121), + [anon_sym_toxz] = ACTIONS(121), + [anon_sym_toyaml] = ACTIONS(121), + [anon_sym_tozst] = ACTIONS(121), + [anon_sym_updatecells] = ACTIONS(121), + [anon_sym_urlbuild_DASHquery] = ACTIONS(121), + [anon_sym_urldecode] = ACTIONS(121), + [anon_sym_urlencode] = ACTIONS(121), + [anon_sym_urljoin] = ACTIONS(121), + [anon_sym_urlparse] = ACTIONS(121), + [anon_sym_urlsplit_DASHquery] = ACTIONS(121), + [anon_sym_viewfiles] = ACTIONS(121), + [anon_sym_viewir] = ACTIONS(121), + [anon_sym_viewsource] = ACTIONS(121), + [anon_sym_viewspan] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [471] = { - [sym_cell_path] = STATE(747), - [sym_path] = STATE(623), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2030), - [anon_sym_alias] = ACTIONS(2030), - [anon_sym_let] = ACTIONS(2030), - [anon_sym_let_DASHenv] = ACTIONS(2030), - [anon_sym_mut] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [aux_sym_cmd_identifier_token1] = ACTIONS(2030), - [aux_sym_cmd_identifier_token2] = ACTIONS(2032), - [aux_sym_cmd_identifier_token3] = ACTIONS(2032), - [aux_sym_cmd_identifier_token4] = ACTIONS(2032), - [aux_sym_cmd_identifier_token5] = ACTIONS(2032), - [aux_sym_cmd_identifier_token6] = ACTIONS(2032), - [aux_sym_cmd_identifier_token7] = ACTIONS(2032), - [aux_sym_cmd_identifier_token8] = ACTIONS(2030), - [aux_sym_cmd_identifier_token9] = ACTIONS(2030), - [aux_sym_cmd_identifier_token10] = ACTIONS(2032), - [aux_sym_cmd_identifier_token11] = ACTIONS(2032), - [aux_sym_cmd_identifier_token12] = ACTIONS(2030), - [aux_sym_cmd_identifier_token13] = ACTIONS(2030), - [aux_sym_cmd_identifier_token14] = ACTIONS(2030), - [aux_sym_cmd_identifier_token15] = ACTIONS(2030), - [aux_sym_cmd_identifier_token16] = ACTIONS(2032), - [aux_sym_cmd_identifier_token17] = ACTIONS(2032), - [aux_sym_cmd_identifier_token18] = ACTIONS(2032), - [aux_sym_cmd_identifier_token19] = ACTIONS(2032), - [aux_sym_cmd_identifier_token20] = ACTIONS(2032), - [aux_sym_cmd_identifier_token21] = ACTIONS(2032), - [aux_sym_cmd_identifier_token22] = ACTIONS(2032), - [aux_sym_cmd_identifier_token23] = ACTIONS(2032), - [aux_sym_cmd_identifier_token24] = ACTIONS(2032), - [aux_sym_cmd_identifier_token25] = ACTIONS(2032), - [aux_sym_cmd_identifier_token26] = ACTIONS(2032), - [aux_sym_cmd_identifier_token27] = ACTIONS(2032), - [aux_sym_cmd_identifier_token28] = ACTIONS(2032), - [aux_sym_cmd_identifier_token29] = ACTIONS(2032), - [aux_sym_cmd_identifier_token30] = ACTIONS(2032), - [aux_sym_cmd_identifier_token31] = ACTIONS(2032), - [aux_sym_cmd_identifier_token32] = ACTIONS(2032), - [aux_sym_cmd_identifier_token33] = ACTIONS(2032), - [aux_sym_cmd_identifier_token34] = ACTIONS(2030), - [aux_sym_cmd_identifier_token35] = ACTIONS(2032), - [aux_sym_cmd_identifier_token36] = ACTIONS(2032), - [aux_sym_cmd_identifier_token37] = ACTIONS(2032), - [aux_sym_cmd_identifier_token38] = ACTIONS(2030), - [aux_sym_cmd_identifier_token39] = ACTIONS(2032), - [aux_sym_cmd_identifier_token40] = ACTIONS(2032), - [anon_sym_def] = ACTIONS(2030), - [anon_sym_export_DASHenv] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym_module] = ACTIONS(2030), - [anon_sym_use] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [anon_sym_error] = ACTIONS(2030), - [anon_sym_DASH2] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_in2] = ACTIONS(2030), - [anon_sym_loop] = ACTIONS(2030), - [anon_sym_make] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_else] = ACTIONS(2030), - [anon_sym_match] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2030), - [anon_sym_catch] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_source] = ACTIONS(2030), - [anon_sym_source_DASHenv] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_hide] = ACTIONS(2030), - [anon_sym_hide_DASHenv] = ACTIONS(2030), - [anon_sym_overlay] = ACTIONS(2030), - [anon_sym_as] = ACTIONS(2030), - [anon_sym_PLUS2] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2032), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), - [aux_sym__val_number_decimal_token1] = ACTIONS(2030), - [aux_sym__val_number_decimal_token2] = ACTIONS(2032), - [aux_sym__val_number_decimal_token3] = ACTIONS(2032), - [aux_sym__val_number_decimal_token4] = ACTIONS(2032), - [aux_sym__val_number_token1] = ACTIONS(2032), - [aux_sym__val_number_token2] = ACTIONS(2032), - [aux_sym__val_number_token3] = ACTIONS(2032), - [aux_sym__val_number_token4] = ACTIONS(2030), - [aux_sym__val_number_token5] = ACTIONS(2030), - [aux_sym__val_number_token6] = ACTIONS(2030), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym__str_single_quotes] = ACTIONS(2032), - [sym__str_back_ticks] = ACTIONS(2032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2032), + [300] = { + [sym_cmd_identifier] = STATE(4616), + [sym__expression] = STATE(3864), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(846), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4976), + [sym_comment] = STATE(300), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(427), + [aux_sym__val_number_decimal_token2] = ACTIONS(429), + [aux_sym__val_number_decimal_token3] = ACTIONS(431), + [aux_sym__val_number_decimal_token4] = ACTIONS(433), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [472] = { - [sym_expr_parenthesized] = STATE(4421), - [sym__spread_parenthesized] = STATE(4819), - [sym_val_range] = STATE(4821), - [sym__val_range] = STATE(7779), - [sym__val_range_with_end] = STATE(7534), - [sym__value] = STATE(4821), - [sym_val_nothing] = STATE(4888), - [sym_val_bool] = STATE(4601), - [sym__spread_variable] = STATE(4823), - [sym_val_variable] = STATE(4336), - [sym_val_number] = STATE(4888), - [sym__val_number_decimal] = STATE(4073), - [sym__val_number] = STATE(4852), - [sym_val_duration] = STATE(4888), - [sym_val_filesize] = STATE(4888), - [sym_val_binary] = STATE(4888), - [sym_val_string] = STATE(4888), - [sym__raw_str] = STATE(4528), - [sym__str_double_quotes] = STATE(4528), - [sym_val_interpolated] = STATE(4888), - [sym__inter_single_quotes] = STATE(4891), - [sym__inter_double_quotes] = STATE(4896), - [sym_val_list] = STATE(4888), - [sym__spread_list] = STATE(4819), - [sym_val_record] = STATE(4888), - [sym_val_table] = STATE(4888), - [sym_val_closure] = STATE(4888), - [sym__cmd_arg] = STATE(4827), - [sym_redirection] = STATE(4831), - [sym_short_flag] = STATE(4832), - [sym_long_flag] = STATE(4832), - [sym_unquoted] = STATE(4591), - [sym__unquoted_with_expr] = STATE(4840), - [sym__unquoted_anonymous_prefix] = STATE(6835), - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym__newline] = ACTIONS(1952), - [sym__space] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2076), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2078), - [anon_sym_DOT_DOT_LT] = ACTIONS(2078), - [anon_sym_null] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2086), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2090), - [aux_sym__val_number_token1] = ACTIONS(2092), - [aux_sym__val_number_token2] = ACTIONS(2092), - [aux_sym__val_number_token3] = ACTIONS(2092), - [aux_sym__val_number_token4] = ACTIONS(2094), - [aux_sym__val_number_token5] = ACTIONS(2094), - [aux_sym__val_number_token6] = ACTIONS(2094), - [anon_sym_0b] = ACTIONS(2096), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2102), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2106), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(2112), - [anon_sym_out_GT] = ACTIONS(2112), - [anon_sym_e_GT] = ACTIONS(2112), - [anon_sym_o_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT] = ACTIONS(2112), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), - [aux_sym_unquoted_token1] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2116), + [301] = { + [sym_comment] = STATE(301), + [anon_sym_export] = ACTIONS(1372), + [anon_sym_alias] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_let_DASHenv] = ACTIONS(1372), + [anon_sym_mut] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [aux_sym_cmd_identifier_token1] = ACTIONS(1372), + [aux_sym_cmd_identifier_token2] = ACTIONS(1374), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [aux_sym_cmd_identifier_token6] = ACTIONS(1374), + [aux_sym_cmd_identifier_token7] = ACTIONS(1374), + [aux_sym_cmd_identifier_token8] = ACTIONS(1372), + [aux_sym_cmd_identifier_token9] = ACTIONS(1372), + [aux_sym_cmd_identifier_token10] = ACTIONS(1374), + [aux_sym_cmd_identifier_token11] = ACTIONS(1374), + [aux_sym_cmd_identifier_token12] = ACTIONS(1372), + [aux_sym_cmd_identifier_token13] = ACTIONS(1372), + [aux_sym_cmd_identifier_token14] = ACTIONS(1372), + [aux_sym_cmd_identifier_token15] = ACTIONS(1372), + [aux_sym_cmd_identifier_token16] = ACTIONS(1374), + [aux_sym_cmd_identifier_token17] = ACTIONS(1374), + [aux_sym_cmd_identifier_token18] = ACTIONS(1372), + [aux_sym_cmd_identifier_token19] = ACTIONS(1374), + [aux_sym_cmd_identifier_token20] = ACTIONS(1374), + [aux_sym_cmd_identifier_token21] = ACTIONS(1374), + [aux_sym_cmd_identifier_token22] = ACTIONS(1374), + [aux_sym_cmd_identifier_token23] = ACTIONS(1374), + [aux_sym_cmd_identifier_token24] = ACTIONS(1374), + [aux_sym_cmd_identifier_token25] = ACTIONS(1374), + [aux_sym_cmd_identifier_token26] = ACTIONS(1374), + [aux_sym_cmd_identifier_token27] = ACTIONS(1374), + [aux_sym_cmd_identifier_token28] = ACTIONS(1374), + [aux_sym_cmd_identifier_token29] = ACTIONS(1374), + [aux_sym_cmd_identifier_token30] = ACTIONS(1374), + [aux_sym_cmd_identifier_token31] = ACTIONS(1374), + [aux_sym_cmd_identifier_token32] = ACTIONS(1372), + [aux_sym_cmd_identifier_token33] = ACTIONS(1374), + [aux_sym_cmd_identifier_token34] = ACTIONS(1372), + [aux_sym_cmd_identifier_token35] = ACTIONS(1374), + [aux_sym_cmd_identifier_token36] = ACTIONS(1374), + [aux_sym_cmd_identifier_token37] = ACTIONS(1374), + [aux_sym_cmd_identifier_token38] = ACTIONS(1372), + [aux_sym_cmd_identifier_token39] = ACTIONS(1374), + [aux_sym_cmd_identifier_token40] = ACTIONS(1374), + [sym__newline] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_def] = ACTIONS(1372), + [anon_sym_export_DASHenv] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_module] = ACTIONS(1372), + [anon_sym_use] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_error] = ACTIONS(1372), + [anon_sym_DASH2] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_loop] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_source] = ACTIONS(1372), + [anon_sym_source_DASHenv] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_hide] = ACTIONS(1372), + [anon_sym_hide_DASHenv] = ACTIONS(1372), + [anon_sym_overlay] = ACTIONS(1372), + [anon_sym_where] = ACTIONS(1374), + [aux_sym_expr_unary_token1] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), + [anon_sym_DOT_DOT_LT] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [aux_sym__val_number_decimal_token1] = ACTIONS(1372), + [aux_sym__val_number_decimal_token2] = ACTIONS(1374), + [aux_sym__val_number_decimal_token3] = ACTIONS(1374), + [aux_sym__val_number_decimal_token4] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1374), + [aux_sym__val_number_token2] = ACTIONS(1374), + [aux_sym__val_number_token3] = ACTIONS(1374), + [aux_sym__val_number_token4] = ACTIONS(1372), + [aux_sym__val_number_token5] = ACTIONS(1372), + [aux_sym__val_number_token6] = ACTIONS(1372), + [anon_sym_0b] = ACTIONS(1372), + [anon_sym_0o] = ACTIONS(1372), + [anon_sym_0x] = ACTIONS(1372), + [sym_val_date] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym__str_single_quotes] = ACTIONS(1374), + [sym__str_back_ticks] = ACTIONS(1374), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1374), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1374), + [aux_sym_env_var_token1] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym_ansigradient] = ACTIONS(1374), + [anon_sym_ansilink] = ACTIONS(1374), + [anon_sym_ansistrip] = ACTIONS(1374), + [anon_sym_bitsand] = ACTIONS(1374), + [anon_sym_bitsnot] = ACTIONS(1374), + [anon_sym_bitsor] = ACTIONS(1374), + [anon_sym_bitsrol] = ACTIONS(1374), + [anon_sym_bitsror] = ACTIONS(1374), + [anon_sym_bitsshl] = ACTIONS(1374), + [anon_sym_bitsshr] = ACTIONS(1374), + [anon_sym_bitsxor] = ACTIONS(1374), + [anon_sym_bytesadd] = ACTIONS(1374), + [anon_sym_bytesat] = ACTIONS(1374), + [anon_sym_bytesbuild] = ACTIONS(1374), + [anon_sym_bytescollect] = ACTIONS(1374), + [anon_sym_bytesends_DASHwith] = ACTIONS(1374), + [anon_sym_bytesindex_DASHof] = ACTIONS(1374), + [anon_sym_byteslength] = ACTIONS(1374), + [anon_sym_bytesremove] = ACTIONS(1374), + [anon_sym_bytesreplace] = ACTIONS(1374), + [anon_sym_bytesreverse] = ACTIONS(1374), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1374), + [anon_sym_commandlineedit] = ACTIONS(1374), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1374), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1374), + [anon_sym_configenv] = ACTIONS(1374), + [anon_sym_confignu] = ACTIONS(1374), + [anon_sym_configreset] = ACTIONS(1374), + [anon_sym_dateformat] = ACTIONS(1374), + [anon_sym_datehumanize] = ACTIONS(1374), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1374), + [anon_sym_datenow] = ACTIONS(1374), + [anon_sym_dateto_DASHrecord] = ACTIONS(1374), + [anon_sym_dateto_DASHtable] = ACTIONS(1374), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1374), + [anon_sym_debuginfo] = ACTIONS(1374), + [anon_sym_debugprofile] = ACTIONS(1374), + [anon_sym_decodebase32] = ACTIONS(1372), + [anon_sym_decodebase32hex] = ACTIONS(1374), + [anon_sym_decodebase64] = ACTIONS(1374), + [anon_sym_decodehex] = ACTIONS(1374), + [anon_sym_detectcolumns] = ACTIONS(1374), + [anon_sym_dropcolumn] = ACTIONS(1374), + [anon_sym_dropnth] = ACTIONS(1374), + [anon_sym_dtadd] = ACTIONS(1374), + [anon_sym_dtdiff] = ACTIONS(1374), + [anon_sym_dtformat] = ACTIONS(1374), + [anon_sym_dtnow] = ACTIONS(1374), + [anon_sym_dtpart] = ACTIONS(1374), + [anon_sym_dtto] = ACTIONS(1374), + [anon_sym_dtutcnow] = ACTIONS(1374), + [anon_sym_eachwhile] = ACTIONS(1374), + [anon_sym_encodebase32] = ACTIONS(1372), + [anon_sym_encodebase32hex] = ACTIONS(1374), + [anon_sym_encodebase64] = ACTIONS(1374), + [anon_sym_encodehex] = ACTIONS(1374), + [anon_sym_errormake] = ACTIONS(1374), + [anon_sym_exploreir] = ACTIONS(1374), + [anon_sym_formatdate] = ACTIONS(1374), + [anon_sym_formatduration] = ACTIONS(1374), + [anon_sym_formatfilesize] = ACTIONS(1374), + [anon_sym_formatpattern] = ACTIONS(1374), + [anon_sym_frombz2] = ACTIONS(1374), + [anon_sym_fromcsv] = ACTIONS(1374), + [anon_sym_fromeml] = ACTIONS(1374), + [anon_sym_fromgz] = ACTIONS(1374), + [anon_sym_fromics] = ACTIONS(1374), + [anon_sym_fromini] = ACTIONS(1374), + [anon_sym_fromjson] = ACTIONS(1374), + [anon_sym_frommsgpack] = ACTIONS(1372), + [anon_sym_frommsgpackz] = ACTIONS(1374), + [anon_sym_fromnuon] = ACTIONS(1374), + [anon_sym_fromods] = ACTIONS(1374), + [anon_sym_fromparquet] = ACTIONS(1374), + [anon_sym_fromplist] = ACTIONS(1374), + [anon_sym_frompng] = ACTIONS(1374), + [anon_sym_fromssv] = ACTIONS(1374), + [anon_sym_fromtoml] = ACTIONS(1374), + [anon_sym_fromtsv] = ACTIONS(1374), + [anon_sym_fromurl] = ACTIONS(1374), + [anon_sym_fromvcf] = ACTIONS(1374), + [anon_sym_fromxlsx] = ACTIONS(1374), + [anon_sym_fromxml] = ACTIONS(1374), + [anon_sym_fromxz] = ACTIONS(1374), + [anon_sym_fromyaml] = ACTIONS(1374), + [anon_sym_fromyml] = ACTIONS(1374), + [anon_sym_fromzst] = ACTIONS(1374), + [anon_sym_hashmd5] = ACTIONS(1374), + [anon_sym_hashsha256] = ACTIONS(1374), + [anon_sym_helpaliases] = ACTIONS(1374), + [anon_sym_helpcommands] = ACTIONS(1374), + [anon_sym_helpescapes] = ACTIONS(1374), + [anon_sym_helpexterns] = ACTIONS(1374), + [anon_sym_helpmodules] = ACTIONS(1374), + [anon_sym_helpoperators] = ACTIONS(1374), + [anon_sym_historyimport] = ACTIONS(1374), + [anon_sym_historysession] = ACTIONS(1374), + [anon_sym_httpdelete] = ACTIONS(1374), + [anon_sym_httpget] = ACTIONS(1374), + [anon_sym_httphead] = ACTIONS(1374), + [anon_sym_httpoptions] = ACTIONS(1374), + [anon_sym_httppatch] = ACTIONS(1374), + [anon_sym_httppost] = ACTIONS(1374), + [anon_sym_httpput] = ACTIONS(1374), + [anon_sym_inputlist] = ACTIONS(1372), + [anon_sym_inputlisten] = ACTIONS(1374), + [anon_sym_intobinary] = ACTIONS(1374), + [anon_sym_intobits] = ACTIONS(1374), + [anon_sym_intobool] = ACTIONS(1374), + [anon_sym_intocell_DASHpath] = ACTIONS(1374), + [anon_sym_intodatetime] = ACTIONS(1374), + [anon_sym_intoduration] = ACTIONS(1374), + [anon_sym_intofilesize] = ACTIONS(1374), + [anon_sym_intofloat] = ACTIONS(1374), + [anon_sym_intoglob] = ACTIONS(1374), + [anon_sym_intoint] = ACTIONS(1374), + [anon_sym_intorecord] = ACTIONS(1374), + [anon_sym_intosqlite] = ACTIONS(1374), + [anon_sym_intostring] = ACTIONS(1374), + [anon_sym_intovalue] = ACTIONS(1374), + [anon_sym_jsonpath] = ACTIONS(1374), + [anon_sym_keybindingsdefault] = ACTIONS(1374), + [anon_sym_keybindingslist] = ACTIONS(1372), + [anon_sym_keybindingslisten] = ACTIONS(1374), + [anon_sym_mathabs] = ACTIONS(1374), + [anon_sym_matharccos] = ACTIONS(1372), + [anon_sym_matharccosh] = ACTIONS(1374), + [anon_sym_matharcsin] = ACTIONS(1372), + [anon_sym_matharcsinh] = ACTIONS(1374), + [anon_sym_matharctan] = ACTIONS(1372), + [anon_sym_matharctanh] = ACTIONS(1374), + [anon_sym_mathavg] = ACTIONS(1374), + [anon_sym_mathceil] = ACTIONS(1374), + [anon_sym_mathcos] = ACTIONS(1372), + [anon_sym_mathcosh] = ACTIONS(1374), + [anon_sym_mathexp] = ACTIONS(1374), + [anon_sym_mathfloor] = ACTIONS(1374), + [anon_sym_mathln] = ACTIONS(1374), + [anon_sym_mathlog] = ACTIONS(1374), + [anon_sym_mathmax] = ACTIONS(1374), + [anon_sym_mathmedian] = ACTIONS(1374), + [anon_sym_mathmin] = ACTIONS(1374), + [anon_sym_mathmode] = ACTIONS(1374), + [anon_sym_mathproduct] = ACTIONS(1374), + [anon_sym_mathround] = ACTIONS(1374), + [anon_sym_mathsin] = ACTIONS(1372), + [anon_sym_mathsinh] = ACTIONS(1374), + [anon_sym_mathsqrt] = ACTIONS(1374), + [anon_sym_mathstddev] = ACTIONS(1374), + [anon_sym_mathsum] = ACTIONS(1374), + [anon_sym_mathtan] = ACTIONS(1372), + [anon_sym_mathtanh] = ACTIONS(1374), + [anon_sym_mathvariance] = ACTIONS(1374), + [anon_sym_metadataaccess] = ACTIONS(1374), + [anon_sym_metadataset] = ACTIONS(1374), + [anon_sym_pathbasename] = ACTIONS(1374), + [anon_sym_pathdirname] = ACTIONS(1374), + [anon_sym_pathexists] = ACTIONS(1374), + [anon_sym_pathexpand] = ACTIONS(1374), + [anon_sym_pathjoin] = ACTIONS(1374), + [anon_sym_pathparse] = ACTIONS(1374), + [anon_sym_pathrelative_DASHto] = ACTIONS(1374), + [anon_sym_pathsplit] = ACTIONS(1374), + [anon_sym_pathtype] = ACTIONS(1374), + [anon_sym_pluginadd] = ACTIONS(1374), + [anon_sym_pluginlist] = ACTIONS(1374), + [anon_sym_pluginrm] = ACTIONS(1374), + [anon_sym_pluginstop] = ACTIONS(1374), + [anon_sym_polarsagg] = ACTIONS(1372), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1374), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1374), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1374), + [anon_sym_polarsappend] = ACTIONS(1374), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1374), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1374), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1374), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1374), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1374), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1374), + [anon_sym_polarsas] = ACTIONS(1372), + [anon_sym_polarsas_DASHdate] = ACTIONS(1372), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1374), + [anon_sym_polarscache] = ACTIONS(1374), + [anon_sym_polarscast] = ACTIONS(1374), + [anon_sym_polarscol] = ACTIONS(1372), + [anon_sym_polarscollect] = ACTIONS(1374), + [anon_sym_polarscolumns] = ACTIONS(1374), + [anon_sym_polarsconcat] = ACTIONS(1372), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1374), + [anon_sym_polarscontains] = ACTIONS(1374), + [anon_sym_polarscount] = ACTIONS(1372), + [anon_sym_polarscount_DASHnull] = ACTIONS(1374), + [anon_sym_polarscumulative] = ACTIONS(1374), + [anon_sym_polarsdatepart] = ACTIONS(1374), + [anon_sym_polarsdecimal] = ACTIONS(1374), + [anon_sym_polarsdrop] = ACTIONS(1372), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1374), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1374), + [anon_sym_polarsdummies] = ACTIONS(1374), + [anon_sym_polarsexplode] = ACTIONS(1374), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1374), + [anon_sym_polarsfetch] = ACTIONS(1374), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1374), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1374), + [anon_sym_polarsfilter] = ACTIONS(1372), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1374), + [anon_sym_polarsfirst] = ACTIONS(1374), + [anon_sym_polarsflatten] = ACTIONS(1374), + [anon_sym_polarsget] = ACTIONS(1372), + [anon_sym_polarsget_DASHday] = ACTIONS(1374), + [anon_sym_polarsget_DASHhour] = ACTIONS(1374), + [anon_sym_polarsget_DASHminute] = ACTIONS(1374), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1374), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1374), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1374), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1374), + [anon_sym_polarsget_DASHweek] = ACTIONS(1372), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1374), + [anon_sym_polarsget_DASHyear] = ACTIONS(1374), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1374), + [anon_sym_polarsimplode] = ACTIONS(1374), + [anon_sym_polarsinteger] = ACTIONS(1374), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1374), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1374), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1374), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1374), + [anon_sym_polarsis_DASHin] = ACTIONS(1374), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1374), + [anon_sym_polarsis_DASHnull] = ACTIONS(1374), + [anon_sym_polarsis_DASHunique] = ACTIONS(1374), + [anon_sym_polarsjoin] = ACTIONS(1374), + [anon_sym_polarslast] = ACTIONS(1374), + [anon_sym_polarslen] = ACTIONS(1374), + [anon_sym_polarslit] = ACTIONS(1374), + [anon_sym_polarslowercase] = ACTIONS(1374), + [anon_sym_polarsmax] = ACTIONS(1374), + [anon_sym_polarsmean] = ACTIONS(1374), + [anon_sym_polarsmedian] = ACTIONS(1374), + [anon_sym_polarsmin] = ACTIONS(1374), + [anon_sym_polarsn_DASHunique] = ACTIONS(1374), + [anon_sym_polarsnot] = ACTIONS(1374), + [anon_sym_polarsopen] = ACTIONS(1374), + [anon_sym_polarsotherwise] = ACTIONS(1374), + [anon_sym_polarspivot] = ACTIONS(1374), + [anon_sym_polarsprofile] = ACTIONS(1374), + [anon_sym_polarsquantile] = ACTIONS(1374), + [anon_sym_polarsquery] = ACTIONS(1374), + [anon_sym_polarsrename] = ACTIONS(1374), + [anon_sym_polarsreplace] = ACTIONS(1372), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1374), + [anon_sym_polarsreverse] = ACTIONS(1374), + [anon_sym_polarsrolling] = ACTIONS(1374), + [anon_sym_polarssample] = ACTIONS(1374), + [anon_sym_polarssave] = ACTIONS(1374), + [anon_sym_polarsschema] = ACTIONS(1374), + [anon_sym_polarsselect] = ACTIONS(1374), + [anon_sym_polarsset] = ACTIONS(1372), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1374), + [anon_sym_polarsshape] = ACTIONS(1374), + [anon_sym_polarsshift] = ACTIONS(1374), + [anon_sym_polarsslice] = ACTIONS(1374), + [anon_sym_polarssort_DASHby] = ACTIONS(1374), + [anon_sym_polarsstd] = ACTIONS(1374), + [anon_sym_polarsstore_DASHget] = ACTIONS(1374), + [anon_sym_polarsstore_DASHls] = ACTIONS(1374), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1374), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1374), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1374), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1374), + [anon_sym_polarsstrftime] = ACTIONS(1374), + [anon_sym_polarssum] = ACTIONS(1372), + [anon_sym_polarssummary] = ACTIONS(1374), + [anon_sym_polarstake] = ACTIONS(1374), + [anon_sym_polarsunique] = ACTIONS(1374), + [anon_sym_polarsunnest] = ACTIONS(1374), + [anon_sym_polarsunpivot] = ACTIONS(1374), + [anon_sym_polarsuppercase] = ACTIONS(1374), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1374), + [anon_sym_polarsvar] = ACTIONS(1374), + [anon_sym_polarswhen] = ACTIONS(1374), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1374), + [anon_sym_querydb] = ACTIONS(1374), + [anon_sym_querygit] = ACTIONS(1374), + [anon_sym_queryjson] = ACTIONS(1374), + [anon_sym_queryweb] = ACTIONS(1372), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1374), + [anon_sym_queryxml] = ACTIONS(1374), + [anon_sym_randombinary] = ACTIONS(1374), + [anon_sym_randombool] = ACTIONS(1374), + [anon_sym_randomchars] = ACTIONS(1374), + [anon_sym_randomdice] = ACTIONS(1374), + [anon_sym_randomfloat] = ACTIONS(1374), + [anon_sym_randomint] = ACTIONS(1374), + [anon_sym_randomuuid] = ACTIONS(1374), + [anon_sym_rolldown] = ACTIONS(1374), + [anon_sym_rollleft] = ACTIONS(1374), + [anon_sym_rollright] = ACTIONS(1374), + [anon_sym_rollup] = ACTIONS(1374), + [anon_sym_scopealiases] = ACTIONS(1374), + [anon_sym_scopecommands] = ACTIONS(1374), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1374), + [anon_sym_scopeexterns] = ACTIONS(1374), + [anon_sym_scopemodules] = ACTIONS(1374), + [anon_sym_scopevariables] = ACTIONS(1374), + [anon_sym_seqchar] = ACTIONS(1374), + [anon_sym_seqdate] = ACTIONS(1374), + [anon_sym_skipuntil] = ACTIONS(1374), + [anon_sym_skipwhile] = ACTIONS(1374), + [anon_sym_splitcell_DASHpath] = ACTIONS(1374), + [anon_sym_splitchars] = ACTIONS(1374), + [anon_sym_splitcolumn] = ACTIONS(1374), + [anon_sym_splitlist] = ACTIONS(1374), + [anon_sym_splitrow] = ACTIONS(1374), + [anon_sym_splitwords] = ACTIONS(1374), + [anon_sym_storcreate] = ACTIONS(1374), + [anon_sym_stordelete] = ACTIONS(1374), + [anon_sym_storexport] = ACTIONS(1374), + [anon_sym_storimport] = ACTIONS(1374), + [anon_sym_storinsert] = ACTIONS(1374), + [anon_sym_storopen] = ACTIONS(1374), + [anon_sym_storreset] = ACTIONS(1374), + [anon_sym_storupdate] = ACTIONS(1374), + [anon_sym_strbexpand] = ACTIONS(1374), + [anon_sym_strcamel_DASHcase] = ACTIONS(1374), + [anon_sym_strcapitalize] = ACTIONS(1374), + [anon_sym_strcompress] = ACTIONS(1374), + [anon_sym_strcontains] = ACTIONS(1374), + [anon_sym_strdecompress] = ACTIONS(1374), + [anon_sym_strdedent] = ACTIONS(1374), + [anon_sym_strdeunicode] = ACTIONS(1374), + [anon_sym_strdistance] = ACTIONS(1374), + [anon_sym_strdowncase] = ACTIONS(1374), + [anon_sym_strends_DASHwith] = ACTIONS(1374), + [anon_sym_strexpand] = ACTIONS(1374), + [anon_sym_strindent] = ACTIONS(1374), + [anon_sym_strindex_DASHof] = ACTIONS(1374), + [anon_sym_strjoin] = ACTIONS(1374), + [anon_sym_strkebab_DASHcase] = ACTIONS(1374), + [anon_sym_strlength] = ACTIONS(1374), + [anon_sym_strpascal_DASHcase] = ACTIONS(1374), + [anon_sym_strreplace] = ACTIONS(1374), + [anon_sym_strreverse] = ACTIONS(1374), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1374), + [anon_sym_strsimilarity] = ACTIONS(1374), + [anon_sym_strsnake_DASHcase] = ACTIONS(1374), + [anon_sym_strstarts_DASHwith] = ACTIONS(1374), + [anon_sym_strstats] = ACTIONS(1374), + [anon_sym_strsubstring] = ACTIONS(1374), + [anon_sym_strtitle_DASHcase] = ACTIONS(1374), + [anon_sym_strtrim] = ACTIONS(1374), + [anon_sym_strupcase] = ACTIONS(1374), + [anon_sym_strwrap] = ACTIONS(1374), + [anon_sym_syscpu] = ACTIONS(1374), + [anon_sym_sysdisks] = ACTIONS(1374), + [anon_sym_syshost] = ACTIONS(1374), + [anon_sym_sysmem] = ACTIONS(1374), + [anon_sym_sysnet] = ACTIONS(1374), + [anon_sym_systemp] = ACTIONS(1374), + [anon_sym_sysusers] = ACTIONS(1374), + [anon_sym_takeuntil] = ACTIONS(1374), + [anon_sym_takewhile] = ACTIONS(1374), + [anon_sym_termquery] = ACTIONS(1374), + [anon_sym_termsize] = ACTIONS(1374), + [anon_sym_tobz2] = ACTIONS(1374), + [anon_sym_tocsv] = ACTIONS(1374), + [anon_sym_togz] = ACTIONS(1374), + [anon_sym_tohtml] = ACTIONS(1374), + [anon_sym_tojson] = ACTIONS(1374), + [anon_sym_tomd] = ACTIONS(1374), + [anon_sym_tomsgpack] = ACTIONS(1372), + [anon_sym_tomsgpackz] = ACTIONS(1374), + [anon_sym_tonuon] = ACTIONS(1374), + [anon_sym_toparquet] = ACTIONS(1374), + [anon_sym_toplist] = ACTIONS(1374), + [anon_sym_topng] = ACTIONS(1374), + [anon_sym_totext] = ACTIONS(1374), + [anon_sym_totoml] = ACTIONS(1374), + [anon_sym_totsv] = ACTIONS(1374), + [anon_sym_toxml] = ACTIONS(1374), + [anon_sym_toxz] = ACTIONS(1374), + [anon_sym_toyaml] = ACTIONS(1374), + [anon_sym_tozst] = ACTIONS(1374), + [anon_sym_updatecells] = ACTIONS(1374), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1374), + [anon_sym_urldecode] = ACTIONS(1374), + [anon_sym_urlencode] = ACTIONS(1374), + [anon_sym_urljoin] = ACTIONS(1374), + [anon_sym_urlparse] = ACTIONS(1374), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1374), + [anon_sym_viewfiles] = ACTIONS(1374), + [anon_sym_viewir] = ACTIONS(1374), + [anon_sym_viewsource] = ACTIONS(1374), + [anon_sym_viewspan] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1374), }, - [473] = { - [sym_cell_path] = STATE(748), - [sym_path] = STATE(623), - [sym_comment] = STATE(473), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_alias] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_let_DASHenv] = ACTIONS(2034), - [anon_sym_mut] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [aux_sym_cmd_identifier_token1] = ACTIONS(2034), - [aux_sym_cmd_identifier_token2] = ACTIONS(2036), - [aux_sym_cmd_identifier_token3] = ACTIONS(2036), - [aux_sym_cmd_identifier_token4] = ACTIONS(2036), - [aux_sym_cmd_identifier_token5] = ACTIONS(2036), - [aux_sym_cmd_identifier_token6] = ACTIONS(2036), - [aux_sym_cmd_identifier_token7] = ACTIONS(2036), - [aux_sym_cmd_identifier_token8] = ACTIONS(2034), - [aux_sym_cmd_identifier_token9] = ACTIONS(2034), - [aux_sym_cmd_identifier_token10] = ACTIONS(2036), - [aux_sym_cmd_identifier_token11] = ACTIONS(2036), - [aux_sym_cmd_identifier_token12] = ACTIONS(2034), - [aux_sym_cmd_identifier_token13] = ACTIONS(2034), - [aux_sym_cmd_identifier_token14] = ACTIONS(2034), - [aux_sym_cmd_identifier_token15] = ACTIONS(2034), - [aux_sym_cmd_identifier_token16] = ACTIONS(2036), - [aux_sym_cmd_identifier_token17] = ACTIONS(2036), - [aux_sym_cmd_identifier_token18] = ACTIONS(2036), - [aux_sym_cmd_identifier_token19] = ACTIONS(2036), - [aux_sym_cmd_identifier_token20] = ACTIONS(2036), - [aux_sym_cmd_identifier_token21] = ACTIONS(2036), - [aux_sym_cmd_identifier_token22] = ACTIONS(2036), - [aux_sym_cmd_identifier_token23] = ACTIONS(2036), - [aux_sym_cmd_identifier_token24] = ACTIONS(2036), - [aux_sym_cmd_identifier_token25] = ACTIONS(2036), - [aux_sym_cmd_identifier_token26] = ACTIONS(2036), - [aux_sym_cmd_identifier_token27] = ACTIONS(2036), - [aux_sym_cmd_identifier_token28] = ACTIONS(2036), - [aux_sym_cmd_identifier_token29] = ACTIONS(2036), - [aux_sym_cmd_identifier_token30] = ACTIONS(2036), - [aux_sym_cmd_identifier_token31] = ACTIONS(2036), - [aux_sym_cmd_identifier_token32] = ACTIONS(2036), - [aux_sym_cmd_identifier_token33] = ACTIONS(2036), - [aux_sym_cmd_identifier_token34] = ACTIONS(2034), - [aux_sym_cmd_identifier_token35] = ACTIONS(2036), - [aux_sym_cmd_identifier_token36] = ACTIONS(2036), - [aux_sym_cmd_identifier_token37] = ACTIONS(2036), - [aux_sym_cmd_identifier_token38] = ACTIONS(2034), - [aux_sym_cmd_identifier_token39] = ACTIONS(2036), - [aux_sym_cmd_identifier_token40] = ACTIONS(2036), - [anon_sym_def] = ACTIONS(2034), - [anon_sym_export_DASHenv] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_use] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [anon_sym_error] = ACTIONS(2034), - [anon_sym_DASH2] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_in2] = ACTIONS(2034), - [anon_sym_loop] = ACTIONS(2034), - [anon_sym_make] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_match] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_catch] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_source] = ACTIONS(2034), - [anon_sym_source_DASHenv] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_hide] = ACTIONS(2034), - [anon_sym_hide_DASHenv] = ACTIONS(2034), - [anon_sym_overlay] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_PLUS2] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2036), - [aux_sym__val_number_decimal_token3] = ACTIONS(2036), - [aux_sym__val_number_decimal_token4] = ACTIONS(2036), - [aux_sym__val_number_token1] = ACTIONS(2036), - [aux_sym__val_number_token2] = ACTIONS(2036), - [aux_sym__val_number_token3] = ACTIONS(2036), - [aux_sym__val_number_token4] = ACTIONS(2034), - [aux_sym__val_number_token5] = ACTIONS(2034), - [aux_sym__val_number_token6] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym__str_single_quotes] = ACTIONS(2036), - [sym__str_back_ticks] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2036), + [302] = { + [sym_cmd_identifier] = STATE(4616), + [sym__expression] = STATE(3864), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(850), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_env_var] = STATE(7468), + [sym_command] = STATE(4976), + [sym_comment] = STATE(302), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(991), + [aux_sym__val_number_decimal_token2] = ACTIONS(993), + [aux_sym__val_number_decimal_token3] = ACTIONS(995), + [aux_sym__val_number_decimal_token4] = ACTIONS(997), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [474] = { - [sym_cell_path] = STATE(749), - [sym_path] = STATE(623), - [sym_comment] = STATE(474), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2038), - [anon_sym_alias] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_let_DASHenv] = ACTIONS(2038), - [anon_sym_mut] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [aux_sym_cmd_identifier_token1] = ACTIONS(2038), - [aux_sym_cmd_identifier_token2] = ACTIONS(2040), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [aux_sym_cmd_identifier_token6] = ACTIONS(2040), - [aux_sym_cmd_identifier_token7] = ACTIONS(2040), - [aux_sym_cmd_identifier_token8] = ACTIONS(2038), - [aux_sym_cmd_identifier_token9] = ACTIONS(2038), - [aux_sym_cmd_identifier_token10] = ACTIONS(2040), - [aux_sym_cmd_identifier_token11] = ACTIONS(2040), - [aux_sym_cmd_identifier_token12] = ACTIONS(2038), - [aux_sym_cmd_identifier_token13] = ACTIONS(2038), - [aux_sym_cmd_identifier_token14] = ACTIONS(2038), - [aux_sym_cmd_identifier_token15] = ACTIONS(2038), - [aux_sym_cmd_identifier_token16] = ACTIONS(2040), - [aux_sym_cmd_identifier_token17] = ACTIONS(2040), - [aux_sym_cmd_identifier_token18] = ACTIONS(2040), - [aux_sym_cmd_identifier_token19] = ACTIONS(2040), - [aux_sym_cmd_identifier_token20] = ACTIONS(2040), - [aux_sym_cmd_identifier_token21] = ACTIONS(2040), - [aux_sym_cmd_identifier_token22] = ACTIONS(2040), - [aux_sym_cmd_identifier_token23] = ACTIONS(2040), - [aux_sym_cmd_identifier_token24] = ACTIONS(2040), - [aux_sym_cmd_identifier_token25] = ACTIONS(2040), - [aux_sym_cmd_identifier_token26] = ACTIONS(2040), - [aux_sym_cmd_identifier_token27] = ACTIONS(2040), - [aux_sym_cmd_identifier_token28] = ACTIONS(2040), - [aux_sym_cmd_identifier_token29] = ACTIONS(2040), - [aux_sym_cmd_identifier_token30] = ACTIONS(2040), - [aux_sym_cmd_identifier_token31] = ACTIONS(2040), - [aux_sym_cmd_identifier_token32] = ACTIONS(2040), - [aux_sym_cmd_identifier_token33] = ACTIONS(2040), - [aux_sym_cmd_identifier_token34] = ACTIONS(2038), - [aux_sym_cmd_identifier_token35] = ACTIONS(2040), - [aux_sym_cmd_identifier_token36] = ACTIONS(2040), - [aux_sym_cmd_identifier_token37] = ACTIONS(2040), - [aux_sym_cmd_identifier_token38] = ACTIONS(2038), - [aux_sym_cmd_identifier_token39] = ACTIONS(2040), - [aux_sym_cmd_identifier_token40] = ACTIONS(2040), - [anon_sym_def] = ACTIONS(2038), - [anon_sym_export_DASHenv] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_module] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2040), - [anon_sym_error] = ACTIONS(2038), - [anon_sym_DASH2] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_in2] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_make] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2038), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_source] = ACTIONS(2038), - [anon_sym_source_DASHenv] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_hide] = ACTIONS(2038), - [anon_sym_hide_DASHenv] = ACTIONS(2038), - [anon_sym_overlay] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_PLUS2] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), - [aux_sym__val_number_decimal_token1] = ACTIONS(2038), - [aux_sym__val_number_decimal_token2] = ACTIONS(2040), - [aux_sym__val_number_decimal_token3] = ACTIONS(2040), - [aux_sym__val_number_decimal_token4] = ACTIONS(2040), - [aux_sym__val_number_token1] = ACTIONS(2040), - [aux_sym__val_number_token2] = ACTIONS(2040), - [aux_sym__val_number_token3] = ACTIONS(2040), - [aux_sym__val_number_token4] = ACTIONS(2038), - [aux_sym__val_number_token5] = ACTIONS(2038), - [aux_sym__val_number_token6] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym__str_single_quotes] = ACTIONS(2040), - [sym__str_back_ticks] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2040), + [303] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if] = STATE(4808), + [sym_block] = STATE(4812), + [sym__expression] = STATE(4812), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1218), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_command] = STATE(4812), + [sym_comment] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(371), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(371), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(373), + [aux_sym_cmd_identifier_token37] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(371), + [aux_sym_cmd_identifier_token39] = ACTIONS(373), + [aux_sym_cmd_identifier_token40] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_if] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(189), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(215), + [anon_sym_true] = ACTIONS(217), + [anon_sym_false] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(1376), + [aux_sym__val_number_decimal_token2] = ACTIONS(1378), + [aux_sym__val_number_decimal_token3] = ACTIONS(1380), + [aux_sym__val_number_decimal_token4] = ACTIONS(1382), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(437), + [aux_sym__val_number_token5] = ACTIONS(437), + [aux_sym__val_number_token6] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_ansigradient] = ACTIONS(251), + [anon_sym_ansilink] = ACTIONS(251), + [anon_sym_ansistrip] = ACTIONS(251), + [anon_sym_bitsand] = ACTIONS(251), + [anon_sym_bitsnot] = ACTIONS(251), + [anon_sym_bitsor] = ACTIONS(251), + [anon_sym_bitsrol] = ACTIONS(251), + [anon_sym_bitsror] = ACTIONS(251), + [anon_sym_bitsshl] = ACTIONS(251), + [anon_sym_bitsshr] = ACTIONS(251), + [anon_sym_bitsxor] = ACTIONS(251), + [anon_sym_bytesadd] = ACTIONS(251), + [anon_sym_bytesat] = ACTIONS(251), + [anon_sym_bytesbuild] = ACTIONS(251), + [anon_sym_bytescollect] = ACTIONS(251), + [anon_sym_bytesends_DASHwith] = ACTIONS(251), + [anon_sym_bytesindex_DASHof] = ACTIONS(251), + [anon_sym_byteslength] = ACTIONS(251), + [anon_sym_bytesremove] = ACTIONS(251), + [anon_sym_bytesreplace] = ACTIONS(251), + [anon_sym_bytesreverse] = ACTIONS(251), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(251), + [anon_sym_commandlineedit] = ACTIONS(251), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(251), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(251), + [anon_sym_configenv] = ACTIONS(251), + [anon_sym_confignu] = ACTIONS(251), + [anon_sym_configreset] = ACTIONS(251), + [anon_sym_dateformat] = ACTIONS(251), + [anon_sym_datehumanize] = ACTIONS(251), + [anon_sym_datelist_DASHtimezone] = ACTIONS(251), + [anon_sym_datenow] = ACTIONS(251), + [anon_sym_dateto_DASHrecord] = ACTIONS(251), + [anon_sym_dateto_DASHtable] = ACTIONS(251), + [anon_sym_dateto_DASHtimezone] = ACTIONS(251), + [anon_sym_debuginfo] = ACTIONS(251), + [anon_sym_debugprofile] = ACTIONS(251), + [anon_sym_decodebase32] = ACTIONS(253), + [anon_sym_decodebase32hex] = ACTIONS(251), + [anon_sym_decodebase64] = ACTIONS(251), + [anon_sym_decodehex] = ACTIONS(251), + [anon_sym_detectcolumns] = ACTIONS(251), + [anon_sym_dropcolumn] = ACTIONS(251), + [anon_sym_dropnth] = ACTIONS(251), + [anon_sym_dtadd] = ACTIONS(251), + [anon_sym_dtdiff] = ACTIONS(251), + [anon_sym_dtformat] = ACTIONS(251), + [anon_sym_dtnow] = ACTIONS(251), + [anon_sym_dtpart] = ACTIONS(251), + [anon_sym_dtto] = ACTIONS(251), + [anon_sym_dtutcnow] = ACTIONS(251), + [anon_sym_eachwhile] = ACTIONS(251), + [anon_sym_encodebase32] = ACTIONS(253), + [anon_sym_encodebase32hex] = ACTIONS(251), + [anon_sym_encodebase64] = ACTIONS(251), + [anon_sym_encodehex] = ACTIONS(251), + [anon_sym_errormake] = ACTIONS(251), + [anon_sym_exploreir] = ACTIONS(251), + [anon_sym_formatdate] = ACTIONS(251), + [anon_sym_formatduration] = ACTIONS(251), + [anon_sym_formatfilesize] = ACTIONS(251), + [anon_sym_formatpattern] = ACTIONS(251), + [anon_sym_frombz2] = ACTIONS(251), + [anon_sym_fromcsv] = ACTIONS(251), + [anon_sym_fromeml] = ACTIONS(251), + [anon_sym_fromgz] = ACTIONS(251), + [anon_sym_fromics] = ACTIONS(251), + [anon_sym_fromini] = ACTIONS(251), + [anon_sym_fromjson] = ACTIONS(251), + [anon_sym_frommsgpack] = ACTIONS(253), + [anon_sym_frommsgpackz] = ACTIONS(251), + [anon_sym_fromnuon] = ACTIONS(251), + [anon_sym_fromods] = ACTIONS(251), + [anon_sym_fromparquet] = ACTIONS(251), + [anon_sym_fromplist] = ACTIONS(251), + [anon_sym_frompng] = ACTIONS(251), + [anon_sym_fromssv] = ACTIONS(251), + [anon_sym_fromtoml] = ACTIONS(251), + [anon_sym_fromtsv] = ACTIONS(251), + [anon_sym_fromurl] = ACTIONS(251), + [anon_sym_fromvcf] = ACTIONS(251), + [anon_sym_fromxlsx] = ACTIONS(251), + [anon_sym_fromxml] = ACTIONS(251), + [anon_sym_fromxz] = ACTIONS(251), + [anon_sym_fromyaml] = ACTIONS(251), + [anon_sym_fromyml] = ACTIONS(251), + [anon_sym_fromzst] = ACTIONS(251), + [anon_sym_hashmd5] = ACTIONS(251), + [anon_sym_hashsha256] = ACTIONS(251), + [anon_sym_helpaliases] = ACTIONS(251), + [anon_sym_helpcommands] = ACTIONS(251), + [anon_sym_helpescapes] = ACTIONS(251), + [anon_sym_helpexterns] = ACTIONS(251), + [anon_sym_helpmodules] = ACTIONS(251), + [anon_sym_helpoperators] = ACTIONS(251), + [anon_sym_historyimport] = ACTIONS(251), + [anon_sym_historysession] = ACTIONS(251), + [anon_sym_httpdelete] = ACTIONS(251), + [anon_sym_httpget] = ACTIONS(251), + [anon_sym_httphead] = ACTIONS(251), + [anon_sym_httpoptions] = ACTIONS(251), + [anon_sym_httppatch] = ACTIONS(251), + [anon_sym_httppost] = ACTIONS(251), + [anon_sym_httpput] = ACTIONS(251), + [anon_sym_inputlist] = ACTIONS(253), + [anon_sym_inputlisten] = ACTIONS(251), + [anon_sym_intobinary] = ACTIONS(251), + [anon_sym_intobits] = ACTIONS(251), + [anon_sym_intobool] = ACTIONS(251), + [anon_sym_intocell_DASHpath] = ACTIONS(251), + [anon_sym_intodatetime] = ACTIONS(251), + [anon_sym_intoduration] = ACTIONS(251), + [anon_sym_intofilesize] = ACTIONS(251), + [anon_sym_intofloat] = ACTIONS(251), + [anon_sym_intoglob] = ACTIONS(251), + [anon_sym_intoint] = ACTIONS(251), + [anon_sym_intorecord] = ACTIONS(251), + [anon_sym_intosqlite] = ACTIONS(251), + [anon_sym_intostring] = ACTIONS(251), + [anon_sym_intovalue] = ACTIONS(251), + [anon_sym_jsonpath] = ACTIONS(251), + [anon_sym_keybindingsdefault] = ACTIONS(251), + [anon_sym_keybindingslist] = ACTIONS(253), + [anon_sym_keybindingslisten] = ACTIONS(251), + [anon_sym_mathabs] = ACTIONS(251), + [anon_sym_matharccos] = ACTIONS(253), + [anon_sym_matharccosh] = ACTIONS(251), + [anon_sym_matharcsin] = ACTIONS(253), + [anon_sym_matharcsinh] = ACTIONS(251), + [anon_sym_matharctan] = ACTIONS(253), + [anon_sym_matharctanh] = ACTIONS(251), + [anon_sym_mathavg] = ACTIONS(251), + [anon_sym_mathceil] = ACTIONS(251), + [anon_sym_mathcos] = ACTIONS(253), + [anon_sym_mathcosh] = ACTIONS(251), + [anon_sym_mathexp] = ACTIONS(251), + [anon_sym_mathfloor] = ACTIONS(251), + [anon_sym_mathln] = ACTIONS(251), + [anon_sym_mathlog] = ACTIONS(251), + [anon_sym_mathmax] = ACTIONS(251), + [anon_sym_mathmedian] = ACTIONS(251), + [anon_sym_mathmin] = ACTIONS(251), + [anon_sym_mathmode] = ACTIONS(251), + [anon_sym_mathproduct] = ACTIONS(251), + [anon_sym_mathround] = ACTIONS(251), + [anon_sym_mathsin] = ACTIONS(253), + [anon_sym_mathsinh] = ACTIONS(251), + [anon_sym_mathsqrt] = ACTIONS(251), + [anon_sym_mathstddev] = ACTIONS(251), + [anon_sym_mathsum] = ACTIONS(251), + [anon_sym_mathtan] = ACTIONS(253), + [anon_sym_mathtanh] = ACTIONS(251), + [anon_sym_mathvariance] = ACTIONS(251), + [anon_sym_metadataaccess] = ACTIONS(251), + [anon_sym_metadataset] = ACTIONS(251), + [anon_sym_pathbasename] = ACTIONS(251), + [anon_sym_pathdirname] = ACTIONS(251), + [anon_sym_pathexists] = ACTIONS(251), + [anon_sym_pathexpand] = ACTIONS(251), + [anon_sym_pathjoin] = ACTIONS(251), + [anon_sym_pathparse] = ACTIONS(251), + [anon_sym_pathrelative_DASHto] = ACTIONS(251), + [anon_sym_pathsplit] = ACTIONS(251), + [anon_sym_pathtype] = ACTIONS(251), + [anon_sym_pluginadd] = ACTIONS(251), + [anon_sym_pluginlist] = ACTIONS(251), + [anon_sym_pluginrm] = ACTIONS(251), + [anon_sym_pluginstop] = ACTIONS(251), + [anon_sym_polarsagg] = ACTIONS(253), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(251), + [anon_sym_polarsall_DASHfalse] = ACTIONS(251), + [anon_sym_polarsall_DASHtrue] = ACTIONS(251), + [anon_sym_polarsappend] = ACTIONS(251), + [anon_sym_polarsarg_DASHmax] = ACTIONS(251), + [anon_sym_polarsarg_DASHmin] = ACTIONS(251), + [anon_sym_polarsarg_DASHsort] = ACTIONS(251), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(251), + [anon_sym_polarsarg_DASHunique] = ACTIONS(251), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(251), + [anon_sym_polarsas] = ACTIONS(253), + [anon_sym_polarsas_DASHdate] = ACTIONS(253), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(251), + [anon_sym_polarscache] = ACTIONS(251), + [anon_sym_polarscast] = ACTIONS(251), + [anon_sym_polarscol] = ACTIONS(253), + [anon_sym_polarscollect] = ACTIONS(251), + [anon_sym_polarscolumns] = ACTIONS(251), + [anon_sym_polarsconcat] = ACTIONS(253), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(251), + [anon_sym_polarscontains] = ACTIONS(251), + [anon_sym_polarscount] = ACTIONS(253), + [anon_sym_polarscount_DASHnull] = ACTIONS(251), + [anon_sym_polarscumulative] = ACTIONS(251), + [anon_sym_polarsdatepart] = ACTIONS(251), + [anon_sym_polarsdecimal] = ACTIONS(251), + [anon_sym_polarsdrop] = ACTIONS(253), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(251), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(251), + [anon_sym_polarsdummies] = ACTIONS(251), + [anon_sym_polarsexplode] = ACTIONS(251), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(251), + [anon_sym_polarsfetch] = ACTIONS(251), + [anon_sym_polarsfill_DASHnan] = ACTIONS(251), + [anon_sym_polarsfill_DASHnull] = ACTIONS(251), + [anon_sym_polarsfilter] = ACTIONS(253), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(251), + [anon_sym_polarsfirst] = ACTIONS(251), + [anon_sym_polarsflatten] = ACTIONS(251), + [anon_sym_polarsget] = ACTIONS(253), + [anon_sym_polarsget_DASHday] = ACTIONS(251), + [anon_sym_polarsget_DASHhour] = ACTIONS(251), + [anon_sym_polarsget_DASHminute] = ACTIONS(251), + [anon_sym_polarsget_DASHmonth] = ACTIONS(251), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(251), + [anon_sym_polarsget_DASHordinal] = ACTIONS(251), + [anon_sym_polarsget_DASHsecond] = ACTIONS(251), + [anon_sym_polarsget_DASHweek] = ACTIONS(253), + [anon_sym_polarsget_DASHweekday] = ACTIONS(251), + [anon_sym_polarsget_DASHyear] = ACTIONS(251), + [anon_sym_polarsgroup_DASHby] = ACTIONS(251), + [anon_sym_polarsimplode] = ACTIONS(251), + [anon_sym_polarsinteger] = ACTIONS(251), + [anon_sym_polarsinto_DASHdf] = ACTIONS(251), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(251), + [anon_sym_polarsinto_DASHnu] = ACTIONS(251), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(251), + [anon_sym_polarsis_DASHin] = ACTIONS(251), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHnull] = ACTIONS(251), + [anon_sym_polarsis_DASHunique] = ACTIONS(251), + [anon_sym_polarsjoin] = ACTIONS(251), + [anon_sym_polarslast] = ACTIONS(251), + [anon_sym_polarslen] = ACTIONS(251), + [anon_sym_polarslit] = ACTIONS(251), + [anon_sym_polarslowercase] = ACTIONS(251), + [anon_sym_polarsmax] = ACTIONS(251), + [anon_sym_polarsmean] = ACTIONS(251), + [anon_sym_polarsmedian] = ACTIONS(251), + [anon_sym_polarsmin] = ACTIONS(251), + [anon_sym_polarsn_DASHunique] = ACTIONS(251), + [anon_sym_polarsnot] = ACTIONS(251), + [anon_sym_polarsopen] = ACTIONS(251), + [anon_sym_polarsotherwise] = ACTIONS(251), + [anon_sym_polarspivot] = ACTIONS(251), + [anon_sym_polarsprofile] = ACTIONS(251), + [anon_sym_polarsquantile] = ACTIONS(251), + [anon_sym_polarsquery] = ACTIONS(251), + [anon_sym_polarsrename] = ACTIONS(251), + [anon_sym_polarsreplace] = ACTIONS(253), + [anon_sym_polarsreplace_DASHall] = ACTIONS(251), + [anon_sym_polarsreverse] = ACTIONS(251), + [anon_sym_polarsrolling] = ACTIONS(251), + [anon_sym_polarssample] = ACTIONS(251), + [anon_sym_polarssave] = ACTIONS(251), + [anon_sym_polarsschema] = ACTIONS(251), + [anon_sym_polarsselect] = ACTIONS(251), + [anon_sym_polarsset] = ACTIONS(253), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(251), + [anon_sym_polarsshape] = ACTIONS(251), + [anon_sym_polarsshift] = ACTIONS(251), + [anon_sym_polarsslice] = ACTIONS(251), + [anon_sym_polarssort_DASHby] = ACTIONS(251), + [anon_sym_polarsstd] = ACTIONS(251), + [anon_sym_polarsstore_DASHget] = ACTIONS(251), + [anon_sym_polarsstore_DASHls] = ACTIONS(251), + [anon_sym_polarsstore_DASHrm] = ACTIONS(251), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(251), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(251), + [anon_sym_polarsstr_DASHslice] = ACTIONS(251), + [anon_sym_polarsstrftime] = ACTIONS(251), + [anon_sym_polarssum] = ACTIONS(253), + [anon_sym_polarssummary] = ACTIONS(251), + [anon_sym_polarstake] = ACTIONS(251), + [anon_sym_polarsunique] = ACTIONS(251), + [anon_sym_polarsunnest] = ACTIONS(251), + [anon_sym_polarsunpivot] = ACTIONS(251), + [anon_sym_polarsuppercase] = ACTIONS(251), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(251), + [anon_sym_polarsvar] = ACTIONS(251), + [anon_sym_polarswhen] = ACTIONS(251), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(251), + [anon_sym_querydb] = ACTIONS(251), + [anon_sym_querygit] = ACTIONS(251), + [anon_sym_queryjson] = ACTIONS(251), + [anon_sym_queryweb] = ACTIONS(253), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(251), + [anon_sym_queryxml] = ACTIONS(251), + [anon_sym_randombinary] = ACTIONS(251), + [anon_sym_randombool] = ACTIONS(251), + [anon_sym_randomchars] = ACTIONS(251), + [anon_sym_randomdice] = ACTIONS(251), + [anon_sym_randomfloat] = ACTIONS(251), + [anon_sym_randomint] = ACTIONS(251), + [anon_sym_randomuuid] = ACTIONS(251), + [anon_sym_rolldown] = ACTIONS(251), + [anon_sym_rollleft] = ACTIONS(251), + [anon_sym_rollright] = ACTIONS(251), + [anon_sym_rollup] = ACTIONS(251), + [anon_sym_scopealiases] = ACTIONS(251), + [anon_sym_scopecommands] = ACTIONS(251), + [anon_sym_scopeengine_DASHstats] = ACTIONS(251), + [anon_sym_scopeexterns] = ACTIONS(251), + [anon_sym_scopemodules] = ACTIONS(251), + [anon_sym_scopevariables] = ACTIONS(251), + [anon_sym_seqchar] = ACTIONS(251), + [anon_sym_seqdate] = ACTIONS(251), + [anon_sym_skipuntil] = ACTIONS(251), + [anon_sym_skipwhile] = ACTIONS(251), + [anon_sym_splitcell_DASHpath] = ACTIONS(251), + [anon_sym_splitchars] = ACTIONS(251), + [anon_sym_splitcolumn] = ACTIONS(251), + [anon_sym_splitlist] = ACTIONS(251), + [anon_sym_splitrow] = ACTIONS(251), + [anon_sym_splitwords] = ACTIONS(251), + [anon_sym_storcreate] = ACTIONS(251), + [anon_sym_stordelete] = ACTIONS(251), + [anon_sym_storexport] = ACTIONS(251), + [anon_sym_storimport] = ACTIONS(251), + [anon_sym_storinsert] = ACTIONS(251), + [anon_sym_storopen] = ACTIONS(251), + [anon_sym_storreset] = ACTIONS(251), + [anon_sym_storupdate] = ACTIONS(251), + [anon_sym_strbexpand] = ACTIONS(251), + [anon_sym_strcamel_DASHcase] = ACTIONS(251), + [anon_sym_strcapitalize] = ACTIONS(251), + [anon_sym_strcompress] = ACTIONS(251), + [anon_sym_strcontains] = ACTIONS(251), + [anon_sym_strdecompress] = ACTIONS(251), + [anon_sym_strdedent] = ACTIONS(251), + [anon_sym_strdeunicode] = ACTIONS(251), + [anon_sym_strdistance] = ACTIONS(251), + [anon_sym_strdowncase] = ACTIONS(251), + [anon_sym_strends_DASHwith] = ACTIONS(251), + [anon_sym_strexpand] = ACTIONS(251), + [anon_sym_strindent] = ACTIONS(251), + [anon_sym_strindex_DASHof] = ACTIONS(251), + [anon_sym_strjoin] = ACTIONS(251), + [anon_sym_strkebab_DASHcase] = ACTIONS(251), + [anon_sym_strlength] = ACTIONS(251), + [anon_sym_strpascal_DASHcase] = ACTIONS(251), + [anon_sym_strreplace] = ACTIONS(251), + [anon_sym_strreverse] = ACTIONS(251), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(251), + [anon_sym_strsimilarity] = ACTIONS(251), + [anon_sym_strsnake_DASHcase] = ACTIONS(251), + [anon_sym_strstarts_DASHwith] = ACTIONS(251), + [anon_sym_strstats] = ACTIONS(251), + [anon_sym_strsubstring] = ACTIONS(251), + [anon_sym_strtitle_DASHcase] = ACTIONS(251), + [anon_sym_strtrim] = ACTIONS(251), + [anon_sym_strupcase] = ACTIONS(251), + [anon_sym_strwrap] = ACTIONS(251), + [anon_sym_syscpu] = ACTIONS(251), + [anon_sym_sysdisks] = ACTIONS(251), + [anon_sym_syshost] = ACTIONS(251), + [anon_sym_sysmem] = ACTIONS(251), + [anon_sym_sysnet] = ACTIONS(251), + [anon_sym_systemp] = ACTIONS(251), + [anon_sym_sysusers] = ACTIONS(251), + [anon_sym_takeuntil] = ACTIONS(251), + [anon_sym_takewhile] = ACTIONS(251), + [anon_sym_termquery] = ACTIONS(251), + [anon_sym_termsize] = ACTIONS(251), + [anon_sym_tobz2] = ACTIONS(251), + [anon_sym_tocsv] = ACTIONS(251), + [anon_sym_togz] = ACTIONS(251), + [anon_sym_tohtml] = ACTIONS(251), + [anon_sym_tojson] = ACTIONS(251), + [anon_sym_tomd] = ACTIONS(251), + [anon_sym_tomsgpack] = ACTIONS(253), + [anon_sym_tomsgpackz] = ACTIONS(251), + [anon_sym_tonuon] = ACTIONS(251), + [anon_sym_toparquet] = ACTIONS(251), + [anon_sym_toplist] = ACTIONS(251), + [anon_sym_topng] = ACTIONS(251), + [anon_sym_totext] = ACTIONS(251), + [anon_sym_totoml] = ACTIONS(251), + [anon_sym_totsv] = ACTIONS(251), + [anon_sym_toxml] = ACTIONS(251), + [anon_sym_toxz] = ACTIONS(251), + [anon_sym_toyaml] = ACTIONS(251), + [anon_sym_tozst] = ACTIONS(251), + [anon_sym_updatecells] = ACTIONS(251), + [anon_sym_urlbuild_DASHquery] = ACTIONS(251), + [anon_sym_urldecode] = ACTIONS(251), + [anon_sym_urlencode] = ACTIONS(251), + [anon_sym_urljoin] = ACTIONS(251), + [anon_sym_urlparse] = ACTIONS(251), + [anon_sym_urlsplit_DASHquery] = ACTIONS(251), + [anon_sym_viewfiles] = ACTIONS(251), + [anon_sym_viewir] = ACTIONS(251), + [anon_sym_viewsource] = ACTIONS(251), + [anon_sym_viewspan] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [475] = { - [sym_cell_path] = STATE(750), - [sym_path] = STATE(623), - [sym_comment] = STATE(475), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in2] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_PLUS2] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1933), + [304] = { + [aux_sym__pipe_separator] = STATE(304), + [sym_comment] = STATE(304), + [aux_sym_shebang_repeat1] = STATE(5234), + [aux_sym_cmd_identifier_token1] = ACTIONS(1384), + [aux_sym_cmd_identifier_token2] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1386), + [aux_sym_cmd_identifier_token4] = ACTIONS(1386), + [aux_sym_cmd_identifier_token5] = ACTIONS(1386), + [aux_sym_cmd_identifier_token6] = ACTIONS(1386), + [aux_sym_cmd_identifier_token7] = ACTIONS(1386), + [aux_sym_cmd_identifier_token8] = ACTIONS(1386), + [aux_sym_cmd_identifier_token9] = ACTIONS(1384), + [aux_sym_cmd_identifier_token10] = ACTIONS(1386), + [aux_sym_cmd_identifier_token11] = ACTIONS(1386), + [aux_sym_cmd_identifier_token12] = ACTIONS(1386), + [aux_sym_cmd_identifier_token13] = ACTIONS(1384), + [aux_sym_cmd_identifier_token14] = ACTIONS(1386), + [aux_sym_cmd_identifier_token15] = ACTIONS(1384), + [aux_sym_cmd_identifier_token16] = ACTIONS(1386), + [aux_sym_cmd_identifier_token17] = ACTIONS(1386), + [aux_sym_cmd_identifier_token18] = ACTIONS(1384), + [aux_sym_cmd_identifier_token19] = ACTIONS(1386), + [aux_sym_cmd_identifier_token20] = ACTIONS(1386), + [aux_sym_cmd_identifier_token21] = ACTIONS(1386), + [aux_sym_cmd_identifier_token22] = ACTIONS(1386), + [aux_sym_cmd_identifier_token23] = ACTIONS(1386), + [aux_sym_cmd_identifier_token24] = ACTIONS(1386), + [aux_sym_cmd_identifier_token25] = ACTIONS(1386), + [aux_sym_cmd_identifier_token26] = ACTIONS(1386), + [aux_sym_cmd_identifier_token27] = ACTIONS(1386), + [aux_sym_cmd_identifier_token28] = ACTIONS(1386), + [aux_sym_cmd_identifier_token29] = ACTIONS(1386), + [aux_sym_cmd_identifier_token30] = ACTIONS(1386), + [aux_sym_cmd_identifier_token31] = ACTIONS(1386), + [aux_sym_cmd_identifier_token32] = ACTIONS(1384), + [aux_sym_cmd_identifier_token33] = ACTIONS(1386), + [aux_sym_cmd_identifier_token34] = ACTIONS(1384), + [aux_sym_cmd_identifier_token35] = ACTIONS(1386), + [aux_sym_cmd_identifier_token36] = ACTIONS(1386), + [aux_sym_cmd_identifier_token37] = ACTIONS(1386), + [aux_sym_cmd_identifier_token38] = ACTIONS(1384), + [aux_sym_cmd_identifier_token39] = ACTIONS(1386), + [aux_sym_cmd_identifier_token40] = ACTIONS(1386), + [sym__newline] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_err_GT_PIPE] = ACTIONS(1391), + [anon_sym_out_GT_PIPE] = ACTIONS(1391), + [anon_sym_e_GT_PIPE] = ACTIONS(1391), + [anon_sym_o_GT_PIPE] = ACTIONS(1391), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1391), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1391), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1391), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_DASH2] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_where] = ACTIONS(1386), + [aux_sym_expr_unary_token1] = ACTIONS(1386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_LT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1384), + [aux_sym__val_number_decimal_token2] = ACTIONS(1386), + [aux_sym__val_number_decimal_token3] = ACTIONS(1386), + [aux_sym__val_number_decimal_token4] = ACTIONS(1386), + [aux_sym__val_number_token1] = ACTIONS(1386), + [aux_sym__val_number_token2] = ACTIONS(1386), + [aux_sym__val_number_token3] = ACTIONS(1386), + [aux_sym__val_number_token4] = ACTIONS(1384), + [aux_sym__val_number_token5] = ACTIONS(1384), + [aux_sym__val_number_token6] = ACTIONS(1384), + [anon_sym_0b] = ACTIONS(1384), + [anon_sym_0o] = ACTIONS(1384), + [anon_sym_0x] = ACTIONS(1384), + [sym_val_date] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym__str_single_quotes] = ACTIONS(1386), + [sym__str_back_ticks] = ACTIONS(1386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1386), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1386), + [aux_sym_env_var_token1] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_ansigradient] = ACTIONS(1386), + [anon_sym_ansilink] = ACTIONS(1386), + [anon_sym_ansistrip] = ACTIONS(1386), + [anon_sym_bitsand] = ACTIONS(1386), + [anon_sym_bitsnot] = ACTIONS(1386), + [anon_sym_bitsor] = ACTIONS(1386), + [anon_sym_bitsrol] = ACTIONS(1386), + [anon_sym_bitsror] = ACTIONS(1386), + [anon_sym_bitsshl] = ACTIONS(1386), + [anon_sym_bitsshr] = ACTIONS(1386), + [anon_sym_bitsxor] = ACTIONS(1386), + [anon_sym_bytesadd] = ACTIONS(1386), + [anon_sym_bytesat] = ACTIONS(1386), + [anon_sym_bytesbuild] = ACTIONS(1386), + [anon_sym_bytescollect] = ACTIONS(1386), + [anon_sym_bytesends_DASHwith] = ACTIONS(1386), + [anon_sym_bytesindex_DASHof] = ACTIONS(1386), + [anon_sym_byteslength] = ACTIONS(1386), + [anon_sym_bytesremove] = ACTIONS(1386), + [anon_sym_bytesreplace] = ACTIONS(1386), + [anon_sym_bytesreverse] = ACTIONS(1386), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1386), + [anon_sym_commandlineedit] = ACTIONS(1386), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1386), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1386), + [anon_sym_configenv] = ACTIONS(1386), + [anon_sym_confignu] = ACTIONS(1386), + [anon_sym_configreset] = ACTIONS(1386), + [anon_sym_dateformat] = ACTIONS(1386), + [anon_sym_datehumanize] = ACTIONS(1386), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1386), + [anon_sym_datenow] = ACTIONS(1386), + [anon_sym_dateto_DASHrecord] = ACTIONS(1386), + [anon_sym_dateto_DASHtable] = ACTIONS(1386), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1386), + [anon_sym_debuginfo] = ACTIONS(1386), + [anon_sym_debugprofile] = ACTIONS(1386), + [anon_sym_decodebase32] = ACTIONS(1384), + [anon_sym_decodebase32hex] = ACTIONS(1386), + [anon_sym_decodebase64] = ACTIONS(1386), + [anon_sym_decodehex] = ACTIONS(1386), + [anon_sym_detectcolumns] = ACTIONS(1386), + [anon_sym_dropcolumn] = ACTIONS(1386), + [anon_sym_dropnth] = ACTIONS(1386), + [anon_sym_dtadd] = ACTIONS(1386), + [anon_sym_dtdiff] = ACTIONS(1386), + [anon_sym_dtformat] = ACTIONS(1386), + [anon_sym_dtnow] = ACTIONS(1386), + [anon_sym_dtpart] = ACTIONS(1386), + [anon_sym_dtto] = ACTIONS(1386), + [anon_sym_dtutcnow] = ACTIONS(1386), + [anon_sym_eachwhile] = ACTIONS(1386), + [anon_sym_encodebase32] = ACTIONS(1384), + [anon_sym_encodebase32hex] = ACTIONS(1386), + [anon_sym_encodebase64] = ACTIONS(1386), + [anon_sym_encodehex] = ACTIONS(1386), + [anon_sym_errormake] = ACTIONS(1386), + [anon_sym_exploreir] = ACTIONS(1386), + [anon_sym_formatdate] = ACTIONS(1386), + [anon_sym_formatduration] = ACTIONS(1386), + [anon_sym_formatfilesize] = ACTIONS(1386), + [anon_sym_formatpattern] = ACTIONS(1386), + [anon_sym_frombz2] = ACTIONS(1386), + [anon_sym_fromcsv] = ACTIONS(1386), + [anon_sym_fromeml] = ACTIONS(1386), + [anon_sym_fromgz] = ACTIONS(1386), + [anon_sym_fromics] = ACTIONS(1386), + [anon_sym_fromini] = ACTIONS(1386), + [anon_sym_fromjson] = ACTIONS(1386), + [anon_sym_frommsgpack] = ACTIONS(1384), + [anon_sym_frommsgpackz] = ACTIONS(1386), + [anon_sym_fromnuon] = ACTIONS(1386), + [anon_sym_fromods] = ACTIONS(1386), + [anon_sym_fromparquet] = ACTIONS(1386), + [anon_sym_fromplist] = ACTIONS(1386), + [anon_sym_frompng] = ACTIONS(1386), + [anon_sym_fromssv] = ACTIONS(1386), + [anon_sym_fromtoml] = ACTIONS(1386), + [anon_sym_fromtsv] = ACTIONS(1386), + [anon_sym_fromurl] = ACTIONS(1386), + [anon_sym_fromvcf] = ACTIONS(1386), + [anon_sym_fromxlsx] = ACTIONS(1386), + [anon_sym_fromxml] = ACTIONS(1386), + [anon_sym_fromxz] = ACTIONS(1386), + [anon_sym_fromyaml] = ACTIONS(1386), + [anon_sym_fromyml] = ACTIONS(1386), + [anon_sym_fromzst] = ACTIONS(1386), + [anon_sym_hashmd5] = ACTIONS(1386), + [anon_sym_hashsha256] = ACTIONS(1386), + [anon_sym_helpaliases] = ACTIONS(1386), + [anon_sym_helpcommands] = ACTIONS(1386), + [anon_sym_helpescapes] = ACTIONS(1386), + [anon_sym_helpexterns] = ACTIONS(1386), + [anon_sym_helpmodules] = ACTIONS(1386), + [anon_sym_helpoperators] = ACTIONS(1386), + [anon_sym_historyimport] = ACTIONS(1386), + [anon_sym_historysession] = ACTIONS(1386), + [anon_sym_httpdelete] = ACTIONS(1386), + [anon_sym_httpget] = ACTIONS(1386), + [anon_sym_httphead] = ACTIONS(1386), + [anon_sym_httpoptions] = ACTIONS(1386), + [anon_sym_httppatch] = ACTIONS(1386), + [anon_sym_httppost] = ACTIONS(1386), + [anon_sym_httpput] = ACTIONS(1386), + [anon_sym_inputlist] = ACTIONS(1384), + [anon_sym_inputlisten] = ACTIONS(1386), + [anon_sym_intobinary] = ACTIONS(1386), + [anon_sym_intobits] = ACTIONS(1386), + [anon_sym_intobool] = ACTIONS(1386), + [anon_sym_intocell_DASHpath] = ACTIONS(1386), + [anon_sym_intodatetime] = ACTIONS(1386), + [anon_sym_intoduration] = ACTIONS(1386), + [anon_sym_intofilesize] = ACTIONS(1386), + [anon_sym_intofloat] = ACTIONS(1386), + [anon_sym_intoglob] = ACTIONS(1386), + [anon_sym_intoint] = ACTIONS(1386), + [anon_sym_intorecord] = ACTIONS(1386), + [anon_sym_intosqlite] = ACTIONS(1386), + [anon_sym_intostring] = ACTIONS(1386), + [anon_sym_intovalue] = ACTIONS(1386), + [anon_sym_jsonpath] = ACTIONS(1386), + [anon_sym_keybindingsdefault] = ACTIONS(1386), + [anon_sym_keybindingslist] = ACTIONS(1384), + [anon_sym_keybindingslisten] = ACTIONS(1386), + [anon_sym_mathabs] = ACTIONS(1386), + [anon_sym_matharccos] = ACTIONS(1384), + [anon_sym_matharccosh] = ACTIONS(1386), + [anon_sym_matharcsin] = ACTIONS(1384), + [anon_sym_matharcsinh] = ACTIONS(1386), + [anon_sym_matharctan] = ACTIONS(1384), + [anon_sym_matharctanh] = ACTIONS(1386), + [anon_sym_mathavg] = ACTIONS(1386), + [anon_sym_mathceil] = ACTIONS(1386), + [anon_sym_mathcos] = ACTIONS(1384), + [anon_sym_mathcosh] = ACTIONS(1386), + [anon_sym_mathexp] = ACTIONS(1386), + [anon_sym_mathfloor] = ACTIONS(1386), + [anon_sym_mathln] = ACTIONS(1386), + [anon_sym_mathlog] = ACTIONS(1386), + [anon_sym_mathmax] = ACTIONS(1386), + [anon_sym_mathmedian] = ACTIONS(1386), + [anon_sym_mathmin] = ACTIONS(1386), + [anon_sym_mathmode] = ACTIONS(1386), + [anon_sym_mathproduct] = ACTIONS(1386), + [anon_sym_mathround] = ACTIONS(1386), + [anon_sym_mathsin] = ACTIONS(1384), + [anon_sym_mathsinh] = ACTIONS(1386), + [anon_sym_mathsqrt] = ACTIONS(1386), + [anon_sym_mathstddev] = ACTIONS(1386), + [anon_sym_mathsum] = ACTIONS(1386), + [anon_sym_mathtan] = ACTIONS(1384), + [anon_sym_mathtanh] = ACTIONS(1386), + [anon_sym_mathvariance] = ACTIONS(1386), + [anon_sym_metadataaccess] = ACTIONS(1386), + [anon_sym_metadataset] = ACTIONS(1386), + [anon_sym_pathbasename] = ACTIONS(1386), + [anon_sym_pathdirname] = ACTIONS(1386), + [anon_sym_pathexists] = ACTIONS(1386), + [anon_sym_pathexpand] = ACTIONS(1386), + [anon_sym_pathjoin] = ACTIONS(1386), + [anon_sym_pathparse] = ACTIONS(1386), + [anon_sym_pathrelative_DASHto] = ACTIONS(1386), + [anon_sym_pathsplit] = ACTIONS(1386), + [anon_sym_pathtype] = ACTIONS(1386), + [anon_sym_pluginadd] = ACTIONS(1386), + [anon_sym_pluginlist] = ACTIONS(1386), + [anon_sym_pluginrm] = ACTIONS(1386), + [anon_sym_pluginstop] = ACTIONS(1386), + [anon_sym_polarsagg] = ACTIONS(1384), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1386), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1386), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1386), + [anon_sym_polarsappend] = ACTIONS(1386), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1386), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1386), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1386), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1386), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1386), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1386), + [anon_sym_polarsas] = ACTIONS(1384), + [anon_sym_polarsas_DASHdate] = ACTIONS(1384), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1386), + [anon_sym_polarscache] = ACTIONS(1386), + [anon_sym_polarscast] = ACTIONS(1386), + [anon_sym_polarscol] = ACTIONS(1384), + [anon_sym_polarscollect] = ACTIONS(1386), + [anon_sym_polarscolumns] = ACTIONS(1386), + [anon_sym_polarsconcat] = ACTIONS(1384), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1386), + [anon_sym_polarscontains] = ACTIONS(1386), + [anon_sym_polarscount] = ACTIONS(1384), + [anon_sym_polarscount_DASHnull] = ACTIONS(1386), + [anon_sym_polarscumulative] = ACTIONS(1386), + [anon_sym_polarsdatepart] = ACTIONS(1386), + [anon_sym_polarsdecimal] = ACTIONS(1386), + [anon_sym_polarsdrop] = ACTIONS(1384), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1386), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1386), + [anon_sym_polarsdummies] = ACTIONS(1386), + [anon_sym_polarsexplode] = ACTIONS(1386), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1386), + [anon_sym_polarsfetch] = ACTIONS(1386), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1386), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1386), + [anon_sym_polarsfilter] = ACTIONS(1384), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1386), + [anon_sym_polarsfirst] = ACTIONS(1386), + [anon_sym_polarsflatten] = ACTIONS(1386), + [anon_sym_polarsget] = ACTIONS(1384), + [anon_sym_polarsget_DASHday] = ACTIONS(1386), + [anon_sym_polarsget_DASHhour] = ACTIONS(1386), + [anon_sym_polarsget_DASHminute] = ACTIONS(1386), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1386), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1386), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1386), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1386), + [anon_sym_polarsget_DASHweek] = ACTIONS(1384), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1386), + [anon_sym_polarsget_DASHyear] = ACTIONS(1386), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1386), + [anon_sym_polarsimplode] = ACTIONS(1386), + [anon_sym_polarsinteger] = ACTIONS(1386), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1386), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1386), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1386), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1386), + [anon_sym_polarsis_DASHin] = ACTIONS(1386), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1386), + [anon_sym_polarsis_DASHnull] = ACTIONS(1386), + [anon_sym_polarsis_DASHunique] = ACTIONS(1386), + [anon_sym_polarsjoin] = ACTIONS(1386), + [anon_sym_polarslast] = ACTIONS(1386), + [anon_sym_polarslen] = ACTIONS(1386), + [anon_sym_polarslit] = ACTIONS(1386), + [anon_sym_polarslowercase] = ACTIONS(1386), + [anon_sym_polarsmax] = ACTIONS(1386), + [anon_sym_polarsmean] = ACTIONS(1386), + [anon_sym_polarsmedian] = ACTIONS(1386), + [anon_sym_polarsmin] = ACTIONS(1386), + [anon_sym_polarsn_DASHunique] = ACTIONS(1386), + [anon_sym_polarsnot] = ACTIONS(1386), + [anon_sym_polarsopen] = ACTIONS(1386), + [anon_sym_polarsotherwise] = ACTIONS(1386), + [anon_sym_polarspivot] = ACTIONS(1386), + [anon_sym_polarsprofile] = ACTIONS(1386), + [anon_sym_polarsquantile] = ACTIONS(1386), + [anon_sym_polarsquery] = ACTIONS(1386), + [anon_sym_polarsrename] = ACTIONS(1386), + [anon_sym_polarsreplace] = ACTIONS(1384), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1386), + [anon_sym_polarsreverse] = ACTIONS(1386), + [anon_sym_polarsrolling] = ACTIONS(1386), + [anon_sym_polarssample] = ACTIONS(1386), + [anon_sym_polarssave] = ACTIONS(1386), + [anon_sym_polarsschema] = ACTIONS(1386), + [anon_sym_polarsselect] = ACTIONS(1386), + [anon_sym_polarsset] = ACTIONS(1384), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1386), + [anon_sym_polarsshape] = ACTIONS(1386), + [anon_sym_polarsshift] = ACTIONS(1386), + [anon_sym_polarsslice] = ACTIONS(1386), + [anon_sym_polarssort_DASHby] = ACTIONS(1386), + [anon_sym_polarsstd] = ACTIONS(1386), + [anon_sym_polarsstore_DASHget] = ACTIONS(1386), + [anon_sym_polarsstore_DASHls] = ACTIONS(1386), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1386), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1386), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1386), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1386), + [anon_sym_polarsstrftime] = ACTIONS(1386), + [anon_sym_polarssum] = ACTIONS(1384), + [anon_sym_polarssummary] = ACTIONS(1386), + [anon_sym_polarstake] = ACTIONS(1386), + [anon_sym_polarsunique] = ACTIONS(1386), + [anon_sym_polarsunnest] = ACTIONS(1386), + [anon_sym_polarsunpivot] = ACTIONS(1386), + [anon_sym_polarsuppercase] = ACTIONS(1386), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1386), + [anon_sym_polarsvar] = ACTIONS(1386), + [anon_sym_polarswhen] = ACTIONS(1386), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1386), + [anon_sym_querydb] = ACTIONS(1386), + [anon_sym_querygit] = ACTIONS(1386), + [anon_sym_queryjson] = ACTIONS(1386), + [anon_sym_queryweb] = ACTIONS(1384), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1386), + [anon_sym_queryxml] = ACTIONS(1386), + [anon_sym_randombinary] = ACTIONS(1386), + [anon_sym_randombool] = ACTIONS(1386), + [anon_sym_randomchars] = ACTIONS(1386), + [anon_sym_randomdice] = ACTIONS(1386), + [anon_sym_randomfloat] = ACTIONS(1386), + [anon_sym_randomint] = ACTIONS(1386), + [anon_sym_randomuuid] = ACTIONS(1386), + [anon_sym_rolldown] = ACTIONS(1386), + [anon_sym_rollleft] = ACTIONS(1386), + [anon_sym_rollright] = ACTIONS(1386), + [anon_sym_rollup] = ACTIONS(1386), + [anon_sym_scopealiases] = ACTIONS(1386), + [anon_sym_scopecommands] = ACTIONS(1386), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1386), + [anon_sym_scopeexterns] = ACTIONS(1386), + [anon_sym_scopemodules] = ACTIONS(1386), + [anon_sym_scopevariables] = ACTIONS(1386), + [anon_sym_seqchar] = ACTIONS(1386), + [anon_sym_seqdate] = ACTIONS(1386), + [anon_sym_skipuntil] = ACTIONS(1386), + [anon_sym_skipwhile] = ACTIONS(1386), + [anon_sym_splitcell_DASHpath] = ACTIONS(1386), + [anon_sym_splitchars] = ACTIONS(1386), + [anon_sym_splitcolumn] = ACTIONS(1386), + [anon_sym_splitlist] = ACTIONS(1386), + [anon_sym_splitrow] = ACTIONS(1386), + [anon_sym_splitwords] = ACTIONS(1386), + [anon_sym_storcreate] = ACTIONS(1386), + [anon_sym_stordelete] = ACTIONS(1386), + [anon_sym_storexport] = ACTIONS(1386), + [anon_sym_storimport] = ACTIONS(1386), + [anon_sym_storinsert] = ACTIONS(1386), + [anon_sym_storopen] = ACTIONS(1386), + [anon_sym_storreset] = ACTIONS(1386), + [anon_sym_storupdate] = ACTIONS(1386), + [anon_sym_strbexpand] = ACTIONS(1386), + [anon_sym_strcamel_DASHcase] = ACTIONS(1386), + [anon_sym_strcapitalize] = ACTIONS(1386), + [anon_sym_strcompress] = ACTIONS(1386), + [anon_sym_strcontains] = ACTIONS(1386), + [anon_sym_strdecompress] = ACTIONS(1386), + [anon_sym_strdedent] = ACTIONS(1386), + [anon_sym_strdeunicode] = ACTIONS(1386), + [anon_sym_strdistance] = ACTIONS(1386), + [anon_sym_strdowncase] = ACTIONS(1386), + [anon_sym_strends_DASHwith] = ACTIONS(1386), + [anon_sym_strexpand] = ACTIONS(1386), + [anon_sym_strindent] = ACTIONS(1386), + [anon_sym_strindex_DASHof] = ACTIONS(1386), + [anon_sym_strjoin] = ACTIONS(1386), + [anon_sym_strkebab_DASHcase] = ACTIONS(1386), + [anon_sym_strlength] = ACTIONS(1386), + [anon_sym_strpascal_DASHcase] = ACTIONS(1386), + [anon_sym_strreplace] = ACTIONS(1386), + [anon_sym_strreverse] = ACTIONS(1386), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1386), + [anon_sym_strsimilarity] = ACTIONS(1386), + [anon_sym_strsnake_DASHcase] = ACTIONS(1386), + [anon_sym_strstarts_DASHwith] = ACTIONS(1386), + [anon_sym_strstats] = ACTIONS(1386), + [anon_sym_strsubstring] = ACTIONS(1386), + [anon_sym_strtitle_DASHcase] = ACTIONS(1386), + [anon_sym_strtrim] = ACTIONS(1386), + [anon_sym_strupcase] = ACTIONS(1386), + [anon_sym_strwrap] = ACTIONS(1386), + [anon_sym_syscpu] = ACTIONS(1386), + [anon_sym_sysdisks] = ACTIONS(1386), + [anon_sym_syshost] = ACTIONS(1386), + [anon_sym_sysmem] = ACTIONS(1386), + [anon_sym_sysnet] = ACTIONS(1386), + [anon_sym_systemp] = ACTIONS(1386), + [anon_sym_sysusers] = ACTIONS(1386), + [anon_sym_takeuntil] = ACTIONS(1386), + [anon_sym_takewhile] = ACTIONS(1386), + [anon_sym_termquery] = ACTIONS(1386), + [anon_sym_termsize] = ACTIONS(1386), + [anon_sym_tobz2] = ACTIONS(1386), + [anon_sym_tocsv] = ACTIONS(1386), + [anon_sym_togz] = ACTIONS(1386), + [anon_sym_tohtml] = ACTIONS(1386), + [anon_sym_tojson] = ACTIONS(1386), + [anon_sym_tomd] = ACTIONS(1386), + [anon_sym_tomsgpack] = ACTIONS(1384), + [anon_sym_tomsgpackz] = ACTIONS(1386), + [anon_sym_tonuon] = ACTIONS(1386), + [anon_sym_toparquet] = ACTIONS(1386), + [anon_sym_toplist] = ACTIONS(1386), + [anon_sym_topng] = ACTIONS(1386), + [anon_sym_totext] = ACTIONS(1386), + [anon_sym_totoml] = ACTIONS(1386), + [anon_sym_totsv] = ACTIONS(1386), + [anon_sym_toxml] = ACTIONS(1386), + [anon_sym_toxz] = ACTIONS(1386), + [anon_sym_toyaml] = ACTIONS(1386), + [anon_sym_tozst] = ACTIONS(1386), + [anon_sym_updatecells] = ACTIONS(1386), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1386), + [anon_sym_urldecode] = ACTIONS(1386), + [anon_sym_urlencode] = ACTIONS(1386), + [anon_sym_urljoin] = ACTIONS(1386), + [anon_sym_urlparse] = ACTIONS(1386), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1386), + [anon_sym_viewfiles] = ACTIONS(1386), + [anon_sym_viewir] = ACTIONS(1386), + [anon_sym_viewsource] = ACTIONS(1386), + [anon_sym_viewspan] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1386), }, - [476] = { - [sym_cell_path] = STATE(751), - [sym_path] = STATE(623), - [sym_comment] = STATE(476), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_alias] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_let_DASHenv] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1901), - [aux_sym_cmd_identifier_token3] = ACTIONS(1901), - [aux_sym_cmd_identifier_token4] = ACTIONS(1901), - [aux_sym_cmd_identifier_token5] = ACTIONS(1901), - [aux_sym_cmd_identifier_token6] = ACTIONS(1901), - [aux_sym_cmd_identifier_token7] = ACTIONS(1901), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1901), - [aux_sym_cmd_identifier_token17] = ACTIONS(1901), - [aux_sym_cmd_identifier_token18] = ACTIONS(1901), - [aux_sym_cmd_identifier_token19] = ACTIONS(1901), - [aux_sym_cmd_identifier_token20] = ACTIONS(1901), - [aux_sym_cmd_identifier_token21] = ACTIONS(1901), - [aux_sym_cmd_identifier_token22] = ACTIONS(1901), - [aux_sym_cmd_identifier_token23] = ACTIONS(1901), - [aux_sym_cmd_identifier_token24] = ACTIONS(1901), - [aux_sym_cmd_identifier_token25] = ACTIONS(1901), - [aux_sym_cmd_identifier_token26] = ACTIONS(1901), - [aux_sym_cmd_identifier_token27] = ACTIONS(1901), - [aux_sym_cmd_identifier_token28] = ACTIONS(1901), - [aux_sym_cmd_identifier_token29] = ACTIONS(1901), - [aux_sym_cmd_identifier_token30] = ACTIONS(1901), - [aux_sym_cmd_identifier_token31] = ACTIONS(1901), - [aux_sym_cmd_identifier_token32] = ACTIONS(1901), - [aux_sym_cmd_identifier_token33] = ACTIONS(1901), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1901), - [aux_sym_cmd_identifier_token36] = ACTIONS(1901), - [aux_sym_cmd_identifier_token37] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1899), - [anon_sym_export_DASHenv] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in2] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_source] = ACTIONS(1899), - [anon_sym_source_DASHenv] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_hide_DASHenv] = ACTIONS(1899), - [anon_sym_overlay] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1901), + [305] = { + [aux_sym__pipe_separator] = STATE(304), + [sym_comment] = STATE(305), + [aux_sym_shebang_repeat1] = STATE(5234), + [aux_sym_cmd_identifier_token1] = ACTIONS(1394), + [aux_sym_cmd_identifier_token2] = ACTIONS(1396), + [aux_sym_cmd_identifier_token3] = ACTIONS(1396), + [aux_sym_cmd_identifier_token4] = ACTIONS(1396), + [aux_sym_cmd_identifier_token5] = ACTIONS(1396), + [aux_sym_cmd_identifier_token6] = ACTIONS(1396), + [aux_sym_cmd_identifier_token7] = ACTIONS(1396), + [aux_sym_cmd_identifier_token8] = ACTIONS(1396), + [aux_sym_cmd_identifier_token9] = ACTIONS(1394), + [aux_sym_cmd_identifier_token10] = ACTIONS(1396), + [aux_sym_cmd_identifier_token11] = ACTIONS(1396), + [aux_sym_cmd_identifier_token12] = ACTIONS(1396), + [aux_sym_cmd_identifier_token13] = ACTIONS(1394), + [aux_sym_cmd_identifier_token14] = ACTIONS(1396), + [aux_sym_cmd_identifier_token15] = ACTIONS(1394), + [aux_sym_cmd_identifier_token16] = ACTIONS(1396), + [aux_sym_cmd_identifier_token17] = ACTIONS(1396), + [aux_sym_cmd_identifier_token18] = ACTIONS(1394), + [aux_sym_cmd_identifier_token19] = ACTIONS(1396), + [aux_sym_cmd_identifier_token20] = ACTIONS(1396), + [aux_sym_cmd_identifier_token21] = ACTIONS(1396), + [aux_sym_cmd_identifier_token22] = ACTIONS(1396), + [aux_sym_cmd_identifier_token23] = ACTIONS(1396), + [aux_sym_cmd_identifier_token24] = ACTIONS(1396), + [aux_sym_cmd_identifier_token25] = ACTIONS(1396), + [aux_sym_cmd_identifier_token26] = ACTIONS(1396), + [aux_sym_cmd_identifier_token27] = ACTIONS(1396), + [aux_sym_cmd_identifier_token28] = ACTIONS(1396), + [aux_sym_cmd_identifier_token29] = ACTIONS(1396), + [aux_sym_cmd_identifier_token30] = ACTIONS(1396), + [aux_sym_cmd_identifier_token31] = ACTIONS(1396), + [aux_sym_cmd_identifier_token32] = ACTIONS(1394), + [aux_sym_cmd_identifier_token33] = ACTIONS(1396), + [aux_sym_cmd_identifier_token34] = ACTIONS(1394), + [aux_sym_cmd_identifier_token35] = ACTIONS(1396), + [aux_sym_cmd_identifier_token36] = ACTIONS(1396), + [aux_sym_cmd_identifier_token37] = ACTIONS(1396), + [aux_sym_cmd_identifier_token38] = ACTIONS(1394), + [aux_sym_cmd_identifier_token39] = ACTIONS(1396), + [aux_sym_cmd_identifier_token40] = ACTIONS(1396), + [sym__newline] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_err_GT_PIPE] = ACTIONS(1400), + [anon_sym_out_GT_PIPE] = ACTIONS(1400), + [anon_sym_e_GT_PIPE] = ACTIONS(1400), + [anon_sym_o_GT_PIPE] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_DASH2] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_where] = ACTIONS(1396), + [aux_sym_expr_unary_token1] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1396), + [aux_sym__val_number_decimal_token4] = ACTIONS(1396), + [aux_sym__val_number_token1] = ACTIONS(1396), + [aux_sym__val_number_token2] = ACTIONS(1396), + [aux_sym__val_number_token3] = ACTIONS(1396), + [aux_sym__val_number_token4] = ACTIONS(1394), + [aux_sym__val_number_token5] = ACTIONS(1394), + [aux_sym__val_number_token6] = ACTIONS(1394), + [anon_sym_0b] = ACTIONS(1394), + [anon_sym_0o] = ACTIONS(1394), + [anon_sym_0x] = ACTIONS(1394), + [sym_val_date] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym__str_single_quotes] = ACTIONS(1396), + [sym__str_back_ticks] = ACTIONS(1396), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1396), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1396), + [aux_sym_env_var_token1] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym_ansigradient] = ACTIONS(1396), + [anon_sym_ansilink] = ACTIONS(1396), + [anon_sym_ansistrip] = ACTIONS(1396), + [anon_sym_bitsand] = ACTIONS(1396), + [anon_sym_bitsnot] = ACTIONS(1396), + [anon_sym_bitsor] = ACTIONS(1396), + [anon_sym_bitsrol] = ACTIONS(1396), + [anon_sym_bitsror] = ACTIONS(1396), + [anon_sym_bitsshl] = ACTIONS(1396), + [anon_sym_bitsshr] = ACTIONS(1396), + [anon_sym_bitsxor] = ACTIONS(1396), + [anon_sym_bytesadd] = ACTIONS(1396), + [anon_sym_bytesat] = ACTIONS(1396), + [anon_sym_bytesbuild] = ACTIONS(1396), + [anon_sym_bytescollect] = ACTIONS(1396), + [anon_sym_bytesends_DASHwith] = ACTIONS(1396), + [anon_sym_bytesindex_DASHof] = ACTIONS(1396), + [anon_sym_byteslength] = ACTIONS(1396), + [anon_sym_bytesremove] = ACTIONS(1396), + [anon_sym_bytesreplace] = ACTIONS(1396), + [anon_sym_bytesreverse] = ACTIONS(1396), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1396), + [anon_sym_commandlineedit] = ACTIONS(1396), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1396), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1396), + [anon_sym_configenv] = ACTIONS(1396), + [anon_sym_confignu] = ACTIONS(1396), + [anon_sym_configreset] = ACTIONS(1396), + [anon_sym_dateformat] = ACTIONS(1396), + [anon_sym_datehumanize] = ACTIONS(1396), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1396), + [anon_sym_datenow] = ACTIONS(1396), + [anon_sym_dateto_DASHrecord] = ACTIONS(1396), + [anon_sym_dateto_DASHtable] = ACTIONS(1396), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1396), + [anon_sym_debuginfo] = ACTIONS(1396), + [anon_sym_debugprofile] = ACTIONS(1396), + [anon_sym_decodebase32] = ACTIONS(1394), + [anon_sym_decodebase32hex] = ACTIONS(1396), + [anon_sym_decodebase64] = ACTIONS(1396), + [anon_sym_decodehex] = ACTIONS(1396), + [anon_sym_detectcolumns] = ACTIONS(1396), + [anon_sym_dropcolumn] = ACTIONS(1396), + [anon_sym_dropnth] = ACTIONS(1396), + [anon_sym_dtadd] = ACTIONS(1396), + [anon_sym_dtdiff] = ACTIONS(1396), + [anon_sym_dtformat] = ACTIONS(1396), + [anon_sym_dtnow] = ACTIONS(1396), + [anon_sym_dtpart] = ACTIONS(1396), + [anon_sym_dtto] = ACTIONS(1396), + [anon_sym_dtutcnow] = ACTIONS(1396), + [anon_sym_eachwhile] = ACTIONS(1396), + [anon_sym_encodebase32] = ACTIONS(1394), + [anon_sym_encodebase32hex] = ACTIONS(1396), + [anon_sym_encodebase64] = ACTIONS(1396), + [anon_sym_encodehex] = ACTIONS(1396), + [anon_sym_errormake] = ACTIONS(1396), + [anon_sym_exploreir] = ACTIONS(1396), + [anon_sym_formatdate] = ACTIONS(1396), + [anon_sym_formatduration] = ACTIONS(1396), + [anon_sym_formatfilesize] = ACTIONS(1396), + [anon_sym_formatpattern] = ACTIONS(1396), + [anon_sym_frombz2] = ACTIONS(1396), + [anon_sym_fromcsv] = ACTIONS(1396), + [anon_sym_fromeml] = ACTIONS(1396), + [anon_sym_fromgz] = ACTIONS(1396), + [anon_sym_fromics] = ACTIONS(1396), + [anon_sym_fromini] = ACTIONS(1396), + [anon_sym_fromjson] = ACTIONS(1396), + [anon_sym_frommsgpack] = ACTIONS(1394), + [anon_sym_frommsgpackz] = ACTIONS(1396), + [anon_sym_fromnuon] = ACTIONS(1396), + [anon_sym_fromods] = ACTIONS(1396), + [anon_sym_fromparquet] = ACTIONS(1396), + [anon_sym_fromplist] = ACTIONS(1396), + [anon_sym_frompng] = ACTIONS(1396), + [anon_sym_fromssv] = ACTIONS(1396), + [anon_sym_fromtoml] = ACTIONS(1396), + [anon_sym_fromtsv] = ACTIONS(1396), + [anon_sym_fromurl] = ACTIONS(1396), + [anon_sym_fromvcf] = ACTIONS(1396), + [anon_sym_fromxlsx] = ACTIONS(1396), + [anon_sym_fromxml] = ACTIONS(1396), + [anon_sym_fromxz] = ACTIONS(1396), + [anon_sym_fromyaml] = ACTIONS(1396), + [anon_sym_fromyml] = ACTIONS(1396), + [anon_sym_fromzst] = ACTIONS(1396), + [anon_sym_hashmd5] = ACTIONS(1396), + [anon_sym_hashsha256] = ACTIONS(1396), + [anon_sym_helpaliases] = ACTIONS(1396), + [anon_sym_helpcommands] = ACTIONS(1396), + [anon_sym_helpescapes] = ACTIONS(1396), + [anon_sym_helpexterns] = ACTIONS(1396), + [anon_sym_helpmodules] = ACTIONS(1396), + [anon_sym_helpoperators] = ACTIONS(1396), + [anon_sym_historyimport] = ACTIONS(1396), + [anon_sym_historysession] = ACTIONS(1396), + [anon_sym_httpdelete] = ACTIONS(1396), + [anon_sym_httpget] = ACTIONS(1396), + [anon_sym_httphead] = ACTIONS(1396), + [anon_sym_httpoptions] = ACTIONS(1396), + [anon_sym_httppatch] = ACTIONS(1396), + [anon_sym_httppost] = ACTIONS(1396), + [anon_sym_httpput] = ACTIONS(1396), + [anon_sym_inputlist] = ACTIONS(1394), + [anon_sym_inputlisten] = ACTIONS(1396), + [anon_sym_intobinary] = ACTIONS(1396), + [anon_sym_intobits] = ACTIONS(1396), + [anon_sym_intobool] = ACTIONS(1396), + [anon_sym_intocell_DASHpath] = ACTIONS(1396), + [anon_sym_intodatetime] = ACTIONS(1396), + [anon_sym_intoduration] = ACTIONS(1396), + [anon_sym_intofilesize] = ACTIONS(1396), + [anon_sym_intofloat] = ACTIONS(1396), + [anon_sym_intoglob] = ACTIONS(1396), + [anon_sym_intoint] = ACTIONS(1396), + [anon_sym_intorecord] = ACTIONS(1396), + [anon_sym_intosqlite] = ACTIONS(1396), + [anon_sym_intostring] = ACTIONS(1396), + [anon_sym_intovalue] = ACTIONS(1396), + [anon_sym_jsonpath] = ACTIONS(1396), + [anon_sym_keybindingsdefault] = ACTIONS(1396), + [anon_sym_keybindingslist] = ACTIONS(1394), + [anon_sym_keybindingslisten] = ACTIONS(1396), + [anon_sym_mathabs] = ACTIONS(1396), + [anon_sym_matharccos] = ACTIONS(1394), + [anon_sym_matharccosh] = ACTIONS(1396), + [anon_sym_matharcsin] = ACTIONS(1394), + [anon_sym_matharcsinh] = ACTIONS(1396), + [anon_sym_matharctan] = ACTIONS(1394), + [anon_sym_matharctanh] = ACTIONS(1396), + [anon_sym_mathavg] = ACTIONS(1396), + [anon_sym_mathceil] = ACTIONS(1396), + [anon_sym_mathcos] = ACTIONS(1394), + [anon_sym_mathcosh] = ACTIONS(1396), + [anon_sym_mathexp] = ACTIONS(1396), + [anon_sym_mathfloor] = ACTIONS(1396), + [anon_sym_mathln] = ACTIONS(1396), + [anon_sym_mathlog] = ACTIONS(1396), + [anon_sym_mathmax] = ACTIONS(1396), + [anon_sym_mathmedian] = ACTIONS(1396), + [anon_sym_mathmin] = ACTIONS(1396), + [anon_sym_mathmode] = ACTIONS(1396), + [anon_sym_mathproduct] = ACTIONS(1396), + [anon_sym_mathround] = ACTIONS(1396), + [anon_sym_mathsin] = ACTIONS(1394), + [anon_sym_mathsinh] = ACTIONS(1396), + [anon_sym_mathsqrt] = ACTIONS(1396), + [anon_sym_mathstddev] = ACTIONS(1396), + [anon_sym_mathsum] = ACTIONS(1396), + [anon_sym_mathtan] = ACTIONS(1394), + [anon_sym_mathtanh] = ACTIONS(1396), + [anon_sym_mathvariance] = ACTIONS(1396), + [anon_sym_metadataaccess] = ACTIONS(1396), + [anon_sym_metadataset] = ACTIONS(1396), + [anon_sym_pathbasename] = ACTIONS(1396), + [anon_sym_pathdirname] = ACTIONS(1396), + [anon_sym_pathexists] = ACTIONS(1396), + [anon_sym_pathexpand] = ACTIONS(1396), + [anon_sym_pathjoin] = ACTIONS(1396), + [anon_sym_pathparse] = ACTIONS(1396), + [anon_sym_pathrelative_DASHto] = ACTIONS(1396), + [anon_sym_pathsplit] = ACTIONS(1396), + [anon_sym_pathtype] = ACTIONS(1396), + [anon_sym_pluginadd] = ACTIONS(1396), + [anon_sym_pluginlist] = ACTIONS(1396), + [anon_sym_pluginrm] = ACTIONS(1396), + [anon_sym_pluginstop] = ACTIONS(1396), + [anon_sym_polarsagg] = ACTIONS(1394), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1396), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1396), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1396), + [anon_sym_polarsappend] = ACTIONS(1396), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1396), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1396), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1396), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1396), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1396), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1396), + [anon_sym_polarsas] = ACTIONS(1394), + [anon_sym_polarsas_DASHdate] = ACTIONS(1394), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1396), + [anon_sym_polarscache] = ACTIONS(1396), + [anon_sym_polarscast] = ACTIONS(1396), + [anon_sym_polarscol] = ACTIONS(1394), + [anon_sym_polarscollect] = ACTIONS(1396), + [anon_sym_polarscolumns] = ACTIONS(1396), + [anon_sym_polarsconcat] = ACTIONS(1394), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1396), + [anon_sym_polarscontains] = ACTIONS(1396), + [anon_sym_polarscount] = ACTIONS(1394), + [anon_sym_polarscount_DASHnull] = ACTIONS(1396), + [anon_sym_polarscumulative] = ACTIONS(1396), + [anon_sym_polarsdatepart] = ACTIONS(1396), + [anon_sym_polarsdecimal] = ACTIONS(1396), + [anon_sym_polarsdrop] = ACTIONS(1394), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1396), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1396), + [anon_sym_polarsdummies] = ACTIONS(1396), + [anon_sym_polarsexplode] = ACTIONS(1396), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1396), + [anon_sym_polarsfetch] = ACTIONS(1396), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1396), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1396), + [anon_sym_polarsfilter] = ACTIONS(1394), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1396), + [anon_sym_polarsfirst] = ACTIONS(1396), + [anon_sym_polarsflatten] = ACTIONS(1396), + [anon_sym_polarsget] = ACTIONS(1394), + [anon_sym_polarsget_DASHday] = ACTIONS(1396), + [anon_sym_polarsget_DASHhour] = ACTIONS(1396), + [anon_sym_polarsget_DASHminute] = ACTIONS(1396), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1396), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1396), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1396), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1396), + [anon_sym_polarsget_DASHweek] = ACTIONS(1394), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1396), + [anon_sym_polarsget_DASHyear] = ACTIONS(1396), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1396), + [anon_sym_polarsimplode] = ACTIONS(1396), + [anon_sym_polarsinteger] = ACTIONS(1396), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1396), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1396), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1396), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1396), + [anon_sym_polarsis_DASHin] = ACTIONS(1396), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1396), + [anon_sym_polarsis_DASHnull] = ACTIONS(1396), + [anon_sym_polarsis_DASHunique] = ACTIONS(1396), + [anon_sym_polarsjoin] = ACTIONS(1396), + [anon_sym_polarslast] = ACTIONS(1396), + [anon_sym_polarslen] = ACTIONS(1396), + [anon_sym_polarslit] = ACTIONS(1396), + [anon_sym_polarslowercase] = ACTIONS(1396), + [anon_sym_polarsmax] = ACTIONS(1396), + [anon_sym_polarsmean] = ACTIONS(1396), + [anon_sym_polarsmedian] = ACTIONS(1396), + [anon_sym_polarsmin] = ACTIONS(1396), + [anon_sym_polarsn_DASHunique] = ACTIONS(1396), + [anon_sym_polarsnot] = ACTIONS(1396), + [anon_sym_polarsopen] = ACTIONS(1396), + [anon_sym_polarsotherwise] = ACTIONS(1396), + [anon_sym_polarspivot] = ACTIONS(1396), + [anon_sym_polarsprofile] = ACTIONS(1396), + [anon_sym_polarsquantile] = ACTIONS(1396), + [anon_sym_polarsquery] = ACTIONS(1396), + [anon_sym_polarsrename] = ACTIONS(1396), + [anon_sym_polarsreplace] = ACTIONS(1394), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1396), + [anon_sym_polarsreverse] = ACTIONS(1396), + [anon_sym_polarsrolling] = ACTIONS(1396), + [anon_sym_polarssample] = ACTIONS(1396), + [anon_sym_polarssave] = ACTIONS(1396), + [anon_sym_polarsschema] = ACTIONS(1396), + [anon_sym_polarsselect] = ACTIONS(1396), + [anon_sym_polarsset] = ACTIONS(1394), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1396), + [anon_sym_polarsshape] = ACTIONS(1396), + [anon_sym_polarsshift] = ACTIONS(1396), + [anon_sym_polarsslice] = ACTIONS(1396), + [anon_sym_polarssort_DASHby] = ACTIONS(1396), + [anon_sym_polarsstd] = ACTIONS(1396), + [anon_sym_polarsstore_DASHget] = ACTIONS(1396), + [anon_sym_polarsstore_DASHls] = ACTIONS(1396), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1396), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1396), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1396), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1396), + [anon_sym_polarsstrftime] = ACTIONS(1396), + [anon_sym_polarssum] = ACTIONS(1394), + [anon_sym_polarssummary] = ACTIONS(1396), + [anon_sym_polarstake] = ACTIONS(1396), + [anon_sym_polarsunique] = ACTIONS(1396), + [anon_sym_polarsunnest] = ACTIONS(1396), + [anon_sym_polarsunpivot] = ACTIONS(1396), + [anon_sym_polarsuppercase] = ACTIONS(1396), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1396), + [anon_sym_polarsvar] = ACTIONS(1396), + [anon_sym_polarswhen] = ACTIONS(1396), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1396), + [anon_sym_querydb] = ACTIONS(1396), + [anon_sym_querygit] = ACTIONS(1396), + [anon_sym_queryjson] = ACTIONS(1396), + [anon_sym_queryweb] = ACTIONS(1394), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1396), + [anon_sym_queryxml] = ACTIONS(1396), + [anon_sym_randombinary] = ACTIONS(1396), + [anon_sym_randombool] = ACTIONS(1396), + [anon_sym_randomchars] = ACTIONS(1396), + [anon_sym_randomdice] = ACTIONS(1396), + [anon_sym_randomfloat] = ACTIONS(1396), + [anon_sym_randomint] = ACTIONS(1396), + [anon_sym_randomuuid] = ACTIONS(1396), + [anon_sym_rolldown] = ACTIONS(1396), + [anon_sym_rollleft] = ACTIONS(1396), + [anon_sym_rollright] = ACTIONS(1396), + [anon_sym_rollup] = ACTIONS(1396), + [anon_sym_scopealiases] = ACTIONS(1396), + [anon_sym_scopecommands] = ACTIONS(1396), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1396), + [anon_sym_scopeexterns] = ACTIONS(1396), + [anon_sym_scopemodules] = ACTIONS(1396), + [anon_sym_scopevariables] = ACTIONS(1396), + [anon_sym_seqchar] = ACTIONS(1396), + [anon_sym_seqdate] = ACTIONS(1396), + [anon_sym_skipuntil] = ACTIONS(1396), + [anon_sym_skipwhile] = ACTIONS(1396), + [anon_sym_splitcell_DASHpath] = ACTIONS(1396), + [anon_sym_splitchars] = ACTIONS(1396), + [anon_sym_splitcolumn] = ACTIONS(1396), + [anon_sym_splitlist] = ACTIONS(1396), + [anon_sym_splitrow] = ACTIONS(1396), + [anon_sym_splitwords] = ACTIONS(1396), + [anon_sym_storcreate] = ACTIONS(1396), + [anon_sym_stordelete] = ACTIONS(1396), + [anon_sym_storexport] = ACTIONS(1396), + [anon_sym_storimport] = ACTIONS(1396), + [anon_sym_storinsert] = ACTIONS(1396), + [anon_sym_storopen] = ACTIONS(1396), + [anon_sym_storreset] = ACTIONS(1396), + [anon_sym_storupdate] = ACTIONS(1396), + [anon_sym_strbexpand] = ACTIONS(1396), + [anon_sym_strcamel_DASHcase] = ACTIONS(1396), + [anon_sym_strcapitalize] = ACTIONS(1396), + [anon_sym_strcompress] = ACTIONS(1396), + [anon_sym_strcontains] = ACTIONS(1396), + [anon_sym_strdecompress] = ACTIONS(1396), + [anon_sym_strdedent] = ACTIONS(1396), + [anon_sym_strdeunicode] = ACTIONS(1396), + [anon_sym_strdistance] = ACTIONS(1396), + [anon_sym_strdowncase] = ACTIONS(1396), + [anon_sym_strends_DASHwith] = ACTIONS(1396), + [anon_sym_strexpand] = ACTIONS(1396), + [anon_sym_strindent] = ACTIONS(1396), + [anon_sym_strindex_DASHof] = ACTIONS(1396), + [anon_sym_strjoin] = ACTIONS(1396), + [anon_sym_strkebab_DASHcase] = ACTIONS(1396), + [anon_sym_strlength] = ACTIONS(1396), + [anon_sym_strpascal_DASHcase] = ACTIONS(1396), + [anon_sym_strreplace] = ACTIONS(1396), + [anon_sym_strreverse] = ACTIONS(1396), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1396), + [anon_sym_strsimilarity] = ACTIONS(1396), + [anon_sym_strsnake_DASHcase] = ACTIONS(1396), + [anon_sym_strstarts_DASHwith] = ACTIONS(1396), + [anon_sym_strstats] = ACTIONS(1396), + [anon_sym_strsubstring] = ACTIONS(1396), + [anon_sym_strtitle_DASHcase] = ACTIONS(1396), + [anon_sym_strtrim] = ACTIONS(1396), + [anon_sym_strupcase] = ACTIONS(1396), + [anon_sym_strwrap] = ACTIONS(1396), + [anon_sym_syscpu] = ACTIONS(1396), + [anon_sym_sysdisks] = ACTIONS(1396), + [anon_sym_syshost] = ACTIONS(1396), + [anon_sym_sysmem] = ACTIONS(1396), + [anon_sym_sysnet] = ACTIONS(1396), + [anon_sym_systemp] = ACTIONS(1396), + [anon_sym_sysusers] = ACTIONS(1396), + [anon_sym_takeuntil] = ACTIONS(1396), + [anon_sym_takewhile] = ACTIONS(1396), + [anon_sym_termquery] = ACTIONS(1396), + [anon_sym_termsize] = ACTIONS(1396), + [anon_sym_tobz2] = ACTIONS(1396), + [anon_sym_tocsv] = ACTIONS(1396), + [anon_sym_togz] = ACTIONS(1396), + [anon_sym_tohtml] = ACTIONS(1396), + [anon_sym_tojson] = ACTIONS(1396), + [anon_sym_tomd] = ACTIONS(1396), + [anon_sym_tomsgpack] = ACTIONS(1394), + [anon_sym_tomsgpackz] = ACTIONS(1396), + [anon_sym_tonuon] = ACTIONS(1396), + [anon_sym_toparquet] = ACTIONS(1396), + [anon_sym_toplist] = ACTIONS(1396), + [anon_sym_topng] = ACTIONS(1396), + [anon_sym_totext] = ACTIONS(1396), + [anon_sym_totoml] = ACTIONS(1396), + [anon_sym_totsv] = ACTIONS(1396), + [anon_sym_toxml] = ACTIONS(1396), + [anon_sym_toxz] = ACTIONS(1396), + [anon_sym_toyaml] = ACTIONS(1396), + [anon_sym_tozst] = ACTIONS(1396), + [anon_sym_updatecells] = ACTIONS(1396), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1396), + [anon_sym_urldecode] = ACTIONS(1396), + [anon_sym_urlencode] = ACTIONS(1396), + [anon_sym_urljoin] = ACTIONS(1396), + [anon_sym_urlparse] = ACTIONS(1396), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1396), + [anon_sym_viewfiles] = ACTIONS(1396), + [anon_sym_viewir] = ACTIONS(1396), + [anon_sym_viewsource] = ACTIONS(1396), + [anon_sym_viewspan] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1396), }, - [477] = { - [sym_cell_path] = STATE(752), - [sym_path] = STATE(623), - [sym_comment] = STATE(477), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [aux_sym_cmd_identifier_token37] = ACTIONS(1909), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1909), - [aux_sym_cmd_identifier_token40] = ACTIONS(1909), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1909), + [306] = { + [aux_sym__pipe_separator] = STATE(304), + [sym_comment] = STATE(306), + [aux_sym_shebang_repeat1] = STATE(307), + [aux_sym_cmd_identifier_token1] = ACTIONS(1402), + [aux_sym_cmd_identifier_token2] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1404), + [aux_sym_cmd_identifier_token4] = ACTIONS(1404), + [aux_sym_cmd_identifier_token5] = ACTIONS(1404), + [aux_sym_cmd_identifier_token6] = ACTIONS(1404), + [aux_sym_cmd_identifier_token7] = ACTIONS(1404), + [aux_sym_cmd_identifier_token8] = ACTIONS(1404), + [aux_sym_cmd_identifier_token9] = ACTIONS(1402), + [aux_sym_cmd_identifier_token10] = ACTIONS(1404), + [aux_sym_cmd_identifier_token11] = ACTIONS(1404), + [aux_sym_cmd_identifier_token12] = ACTIONS(1404), + [aux_sym_cmd_identifier_token13] = ACTIONS(1402), + [aux_sym_cmd_identifier_token14] = ACTIONS(1404), + [aux_sym_cmd_identifier_token15] = ACTIONS(1402), + [aux_sym_cmd_identifier_token16] = ACTIONS(1404), + [aux_sym_cmd_identifier_token17] = ACTIONS(1404), + [aux_sym_cmd_identifier_token18] = ACTIONS(1402), + [aux_sym_cmd_identifier_token19] = ACTIONS(1404), + [aux_sym_cmd_identifier_token20] = ACTIONS(1404), + [aux_sym_cmd_identifier_token21] = ACTIONS(1404), + [aux_sym_cmd_identifier_token22] = ACTIONS(1404), + [aux_sym_cmd_identifier_token23] = ACTIONS(1404), + [aux_sym_cmd_identifier_token24] = ACTIONS(1404), + [aux_sym_cmd_identifier_token25] = ACTIONS(1404), + [aux_sym_cmd_identifier_token26] = ACTIONS(1404), + [aux_sym_cmd_identifier_token27] = ACTIONS(1404), + [aux_sym_cmd_identifier_token28] = ACTIONS(1404), + [aux_sym_cmd_identifier_token29] = ACTIONS(1404), + [aux_sym_cmd_identifier_token30] = ACTIONS(1404), + [aux_sym_cmd_identifier_token31] = ACTIONS(1404), + [aux_sym_cmd_identifier_token32] = ACTIONS(1402), + [aux_sym_cmd_identifier_token33] = ACTIONS(1404), + [aux_sym_cmd_identifier_token34] = ACTIONS(1402), + [aux_sym_cmd_identifier_token35] = ACTIONS(1404), + [aux_sym_cmd_identifier_token36] = ACTIONS(1404), + [aux_sym_cmd_identifier_token37] = ACTIONS(1404), + [aux_sym_cmd_identifier_token38] = ACTIONS(1402), + [aux_sym_cmd_identifier_token39] = ACTIONS(1404), + [aux_sym_cmd_identifier_token40] = ACTIONS(1404), + [sym__newline] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_err_GT_PIPE] = ACTIONS(1400), + [anon_sym_out_GT_PIPE] = ACTIONS(1400), + [anon_sym_e_GT_PIPE] = ACTIONS(1400), + [anon_sym_o_GT_PIPE] = ACTIONS(1400), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1400), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1400), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1400), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1402), + [anon_sym_DASH2] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_try] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_where] = ACTIONS(1404), + [aux_sym_expr_unary_token1] = ACTIONS(1404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1404), + [anon_sym_DOT_DOT_LT] = ACTIONS(1404), + [anon_sym_null] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [aux_sym__val_number_decimal_token1] = ACTIONS(1402), + [aux_sym__val_number_decimal_token2] = ACTIONS(1404), + [aux_sym__val_number_decimal_token3] = ACTIONS(1404), + [aux_sym__val_number_decimal_token4] = ACTIONS(1404), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [aux_sym__val_number_token4] = ACTIONS(1402), + [aux_sym__val_number_token5] = ACTIONS(1402), + [aux_sym__val_number_token6] = ACTIONS(1402), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1402), + [anon_sym_0x] = ACTIONS(1402), + [sym_val_date] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym__str_single_quotes] = ACTIONS(1404), + [sym__str_back_ticks] = ACTIONS(1404), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1404), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1404), + [aux_sym_env_var_token1] = ACTIONS(1402), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_ansigradient] = ACTIONS(1404), + [anon_sym_ansilink] = ACTIONS(1404), + [anon_sym_ansistrip] = ACTIONS(1404), + [anon_sym_bitsand] = ACTIONS(1404), + [anon_sym_bitsnot] = ACTIONS(1404), + [anon_sym_bitsor] = ACTIONS(1404), + [anon_sym_bitsrol] = ACTIONS(1404), + [anon_sym_bitsror] = ACTIONS(1404), + [anon_sym_bitsshl] = ACTIONS(1404), + [anon_sym_bitsshr] = ACTIONS(1404), + [anon_sym_bitsxor] = ACTIONS(1404), + [anon_sym_bytesadd] = ACTIONS(1404), + [anon_sym_bytesat] = ACTIONS(1404), + [anon_sym_bytesbuild] = ACTIONS(1404), + [anon_sym_bytescollect] = ACTIONS(1404), + [anon_sym_bytesends_DASHwith] = ACTIONS(1404), + [anon_sym_bytesindex_DASHof] = ACTIONS(1404), + [anon_sym_byteslength] = ACTIONS(1404), + [anon_sym_bytesremove] = ACTIONS(1404), + [anon_sym_bytesreplace] = ACTIONS(1404), + [anon_sym_bytesreverse] = ACTIONS(1404), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1404), + [anon_sym_commandlineedit] = ACTIONS(1404), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1404), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1404), + [anon_sym_configenv] = ACTIONS(1404), + [anon_sym_confignu] = ACTIONS(1404), + [anon_sym_configreset] = ACTIONS(1404), + [anon_sym_dateformat] = ACTIONS(1404), + [anon_sym_datehumanize] = ACTIONS(1404), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1404), + [anon_sym_datenow] = ACTIONS(1404), + [anon_sym_dateto_DASHrecord] = ACTIONS(1404), + [anon_sym_dateto_DASHtable] = ACTIONS(1404), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1404), + [anon_sym_debuginfo] = ACTIONS(1404), + [anon_sym_debugprofile] = ACTIONS(1404), + [anon_sym_decodebase32] = ACTIONS(1402), + [anon_sym_decodebase32hex] = ACTIONS(1404), + [anon_sym_decodebase64] = ACTIONS(1404), + [anon_sym_decodehex] = ACTIONS(1404), + [anon_sym_detectcolumns] = ACTIONS(1404), + [anon_sym_dropcolumn] = ACTIONS(1404), + [anon_sym_dropnth] = ACTIONS(1404), + [anon_sym_dtadd] = ACTIONS(1404), + [anon_sym_dtdiff] = ACTIONS(1404), + [anon_sym_dtformat] = ACTIONS(1404), + [anon_sym_dtnow] = ACTIONS(1404), + [anon_sym_dtpart] = ACTIONS(1404), + [anon_sym_dtto] = ACTIONS(1404), + [anon_sym_dtutcnow] = ACTIONS(1404), + [anon_sym_eachwhile] = ACTIONS(1404), + [anon_sym_encodebase32] = ACTIONS(1402), + [anon_sym_encodebase32hex] = ACTIONS(1404), + [anon_sym_encodebase64] = ACTIONS(1404), + [anon_sym_encodehex] = ACTIONS(1404), + [anon_sym_errormake] = ACTIONS(1404), + [anon_sym_exploreir] = ACTIONS(1404), + [anon_sym_formatdate] = ACTIONS(1404), + [anon_sym_formatduration] = ACTIONS(1404), + [anon_sym_formatfilesize] = ACTIONS(1404), + [anon_sym_formatpattern] = ACTIONS(1404), + [anon_sym_frombz2] = ACTIONS(1404), + [anon_sym_fromcsv] = ACTIONS(1404), + [anon_sym_fromeml] = ACTIONS(1404), + [anon_sym_fromgz] = ACTIONS(1404), + [anon_sym_fromics] = ACTIONS(1404), + [anon_sym_fromini] = ACTIONS(1404), + [anon_sym_fromjson] = ACTIONS(1404), + [anon_sym_frommsgpack] = ACTIONS(1402), + [anon_sym_frommsgpackz] = ACTIONS(1404), + [anon_sym_fromnuon] = ACTIONS(1404), + [anon_sym_fromods] = ACTIONS(1404), + [anon_sym_fromparquet] = ACTIONS(1404), + [anon_sym_fromplist] = ACTIONS(1404), + [anon_sym_frompng] = ACTIONS(1404), + [anon_sym_fromssv] = ACTIONS(1404), + [anon_sym_fromtoml] = ACTIONS(1404), + [anon_sym_fromtsv] = ACTIONS(1404), + [anon_sym_fromurl] = ACTIONS(1404), + [anon_sym_fromvcf] = ACTIONS(1404), + [anon_sym_fromxlsx] = ACTIONS(1404), + [anon_sym_fromxml] = ACTIONS(1404), + [anon_sym_fromxz] = ACTIONS(1404), + [anon_sym_fromyaml] = ACTIONS(1404), + [anon_sym_fromyml] = ACTIONS(1404), + [anon_sym_fromzst] = ACTIONS(1404), + [anon_sym_hashmd5] = ACTIONS(1404), + [anon_sym_hashsha256] = ACTIONS(1404), + [anon_sym_helpaliases] = ACTIONS(1404), + [anon_sym_helpcommands] = ACTIONS(1404), + [anon_sym_helpescapes] = ACTIONS(1404), + [anon_sym_helpexterns] = ACTIONS(1404), + [anon_sym_helpmodules] = ACTIONS(1404), + [anon_sym_helpoperators] = ACTIONS(1404), + [anon_sym_historyimport] = ACTIONS(1404), + [anon_sym_historysession] = ACTIONS(1404), + [anon_sym_httpdelete] = ACTIONS(1404), + [anon_sym_httpget] = ACTIONS(1404), + [anon_sym_httphead] = ACTIONS(1404), + [anon_sym_httpoptions] = ACTIONS(1404), + [anon_sym_httppatch] = ACTIONS(1404), + [anon_sym_httppost] = ACTIONS(1404), + [anon_sym_httpput] = ACTIONS(1404), + [anon_sym_inputlist] = ACTIONS(1402), + [anon_sym_inputlisten] = ACTIONS(1404), + [anon_sym_intobinary] = ACTIONS(1404), + [anon_sym_intobits] = ACTIONS(1404), + [anon_sym_intobool] = ACTIONS(1404), + [anon_sym_intocell_DASHpath] = ACTIONS(1404), + [anon_sym_intodatetime] = ACTIONS(1404), + [anon_sym_intoduration] = ACTIONS(1404), + [anon_sym_intofilesize] = ACTIONS(1404), + [anon_sym_intofloat] = ACTIONS(1404), + [anon_sym_intoglob] = ACTIONS(1404), + [anon_sym_intoint] = ACTIONS(1404), + [anon_sym_intorecord] = ACTIONS(1404), + [anon_sym_intosqlite] = ACTIONS(1404), + [anon_sym_intostring] = ACTIONS(1404), + [anon_sym_intovalue] = ACTIONS(1404), + [anon_sym_jsonpath] = ACTIONS(1404), + [anon_sym_keybindingsdefault] = ACTIONS(1404), + [anon_sym_keybindingslist] = ACTIONS(1402), + [anon_sym_keybindingslisten] = ACTIONS(1404), + [anon_sym_mathabs] = ACTIONS(1404), + [anon_sym_matharccos] = ACTIONS(1402), + [anon_sym_matharccosh] = ACTIONS(1404), + [anon_sym_matharcsin] = ACTIONS(1402), + [anon_sym_matharcsinh] = ACTIONS(1404), + [anon_sym_matharctan] = ACTIONS(1402), + [anon_sym_matharctanh] = ACTIONS(1404), + [anon_sym_mathavg] = ACTIONS(1404), + [anon_sym_mathceil] = ACTIONS(1404), + [anon_sym_mathcos] = ACTIONS(1402), + [anon_sym_mathcosh] = ACTIONS(1404), + [anon_sym_mathexp] = ACTIONS(1404), + [anon_sym_mathfloor] = ACTIONS(1404), + [anon_sym_mathln] = ACTIONS(1404), + [anon_sym_mathlog] = ACTIONS(1404), + [anon_sym_mathmax] = ACTIONS(1404), + [anon_sym_mathmedian] = ACTIONS(1404), + [anon_sym_mathmin] = ACTIONS(1404), + [anon_sym_mathmode] = ACTIONS(1404), + [anon_sym_mathproduct] = ACTIONS(1404), + [anon_sym_mathround] = ACTIONS(1404), + [anon_sym_mathsin] = ACTIONS(1402), + [anon_sym_mathsinh] = ACTIONS(1404), + [anon_sym_mathsqrt] = ACTIONS(1404), + [anon_sym_mathstddev] = ACTIONS(1404), + [anon_sym_mathsum] = ACTIONS(1404), + [anon_sym_mathtan] = ACTIONS(1402), + [anon_sym_mathtanh] = ACTIONS(1404), + [anon_sym_mathvariance] = ACTIONS(1404), + [anon_sym_metadataaccess] = ACTIONS(1404), + [anon_sym_metadataset] = ACTIONS(1404), + [anon_sym_pathbasename] = ACTIONS(1404), + [anon_sym_pathdirname] = ACTIONS(1404), + [anon_sym_pathexists] = ACTIONS(1404), + [anon_sym_pathexpand] = ACTIONS(1404), + [anon_sym_pathjoin] = ACTIONS(1404), + [anon_sym_pathparse] = ACTIONS(1404), + [anon_sym_pathrelative_DASHto] = ACTIONS(1404), + [anon_sym_pathsplit] = ACTIONS(1404), + [anon_sym_pathtype] = ACTIONS(1404), + [anon_sym_pluginadd] = ACTIONS(1404), + [anon_sym_pluginlist] = ACTIONS(1404), + [anon_sym_pluginrm] = ACTIONS(1404), + [anon_sym_pluginstop] = ACTIONS(1404), + [anon_sym_polarsagg] = ACTIONS(1402), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1404), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1404), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1404), + [anon_sym_polarsappend] = ACTIONS(1404), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1404), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1404), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1404), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1404), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1404), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1404), + [anon_sym_polarsas] = ACTIONS(1402), + [anon_sym_polarsas_DASHdate] = ACTIONS(1402), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1404), + [anon_sym_polarscache] = ACTIONS(1404), + [anon_sym_polarscast] = ACTIONS(1404), + [anon_sym_polarscol] = ACTIONS(1402), + [anon_sym_polarscollect] = ACTIONS(1404), + [anon_sym_polarscolumns] = ACTIONS(1404), + [anon_sym_polarsconcat] = ACTIONS(1402), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1404), + [anon_sym_polarscontains] = ACTIONS(1404), + [anon_sym_polarscount] = ACTIONS(1402), + [anon_sym_polarscount_DASHnull] = ACTIONS(1404), + [anon_sym_polarscumulative] = ACTIONS(1404), + [anon_sym_polarsdatepart] = ACTIONS(1404), + [anon_sym_polarsdecimal] = ACTIONS(1404), + [anon_sym_polarsdrop] = ACTIONS(1402), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1404), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1404), + [anon_sym_polarsdummies] = ACTIONS(1404), + [anon_sym_polarsexplode] = ACTIONS(1404), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1404), + [anon_sym_polarsfetch] = ACTIONS(1404), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1404), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1404), + [anon_sym_polarsfilter] = ACTIONS(1402), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1404), + [anon_sym_polarsfirst] = ACTIONS(1404), + [anon_sym_polarsflatten] = ACTIONS(1404), + [anon_sym_polarsget] = ACTIONS(1402), + [anon_sym_polarsget_DASHday] = ACTIONS(1404), + [anon_sym_polarsget_DASHhour] = ACTIONS(1404), + [anon_sym_polarsget_DASHminute] = ACTIONS(1404), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1404), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1404), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1404), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1404), + [anon_sym_polarsget_DASHweek] = ACTIONS(1402), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1404), + [anon_sym_polarsget_DASHyear] = ACTIONS(1404), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1404), + [anon_sym_polarsimplode] = ACTIONS(1404), + [anon_sym_polarsinteger] = ACTIONS(1404), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1404), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1404), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1404), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1404), + [anon_sym_polarsis_DASHin] = ACTIONS(1404), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1404), + [anon_sym_polarsis_DASHnull] = ACTIONS(1404), + [anon_sym_polarsis_DASHunique] = ACTIONS(1404), + [anon_sym_polarsjoin] = ACTIONS(1404), + [anon_sym_polarslast] = ACTIONS(1404), + [anon_sym_polarslen] = ACTIONS(1404), + [anon_sym_polarslit] = ACTIONS(1404), + [anon_sym_polarslowercase] = ACTIONS(1404), + [anon_sym_polarsmax] = ACTIONS(1404), + [anon_sym_polarsmean] = ACTIONS(1404), + [anon_sym_polarsmedian] = ACTIONS(1404), + [anon_sym_polarsmin] = ACTIONS(1404), + [anon_sym_polarsn_DASHunique] = ACTIONS(1404), + [anon_sym_polarsnot] = ACTIONS(1404), + [anon_sym_polarsopen] = ACTIONS(1404), + [anon_sym_polarsotherwise] = ACTIONS(1404), + [anon_sym_polarspivot] = ACTIONS(1404), + [anon_sym_polarsprofile] = ACTIONS(1404), + [anon_sym_polarsquantile] = ACTIONS(1404), + [anon_sym_polarsquery] = ACTIONS(1404), + [anon_sym_polarsrename] = ACTIONS(1404), + [anon_sym_polarsreplace] = ACTIONS(1402), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1404), + [anon_sym_polarsreverse] = ACTIONS(1404), + [anon_sym_polarsrolling] = ACTIONS(1404), + [anon_sym_polarssample] = ACTIONS(1404), + [anon_sym_polarssave] = ACTIONS(1404), + [anon_sym_polarsschema] = ACTIONS(1404), + [anon_sym_polarsselect] = ACTIONS(1404), + [anon_sym_polarsset] = ACTIONS(1402), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1404), + [anon_sym_polarsshape] = ACTIONS(1404), + [anon_sym_polarsshift] = ACTIONS(1404), + [anon_sym_polarsslice] = ACTIONS(1404), + [anon_sym_polarssort_DASHby] = ACTIONS(1404), + [anon_sym_polarsstd] = ACTIONS(1404), + [anon_sym_polarsstore_DASHget] = ACTIONS(1404), + [anon_sym_polarsstore_DASHls] = ACTIONS(1404), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1404), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1404), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1404), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1404), + [anon_sym_polarsstrftime] = ACTIONS(1404), + [anon_sym_polarssum] = ACTIONS(1402), + [anon_sym_polarssummary] = ACTIONS(1404), + [anon_sym_polarstake] = ACTIONS(1404), + [anon_sym_polarsunique] = ACTIONS(1404), + [anon_sym_polarsunnest] = ACTIONS(1404), + [anon_sym_polarsunpivot] = ACTIONS(1404), + [anon_sym_polarsuppercase] = ACTIONS(1404), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1404), + [anon_sym_polarsvar] = ACTIONS(1404), + [anon_sym_polarswhen] = ACTIONS(1404), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1404), + [anon_sym_querydb] = ACTIONS(1404), + [anon_sym_querygit] = ACTIONS(1404), + [anon_sym_queryjson] = ACTIONS(1404), + [anon_sym_queryweb] = ACTIONS(1402), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1404), + [anon_sym_queryxml] = ACTIONS(1404), + [anon_sym_randombinary] = ACTIONS(1404), + [anon_sym_randombool] = ACTIONS(1404), + [anon_sym_randomchars] = ACTIONS(1404), + [anon_sym_randomdice] = ACTIONS(1404), + [anon_sym_randomfloat] = ACTIONS(1404), + [anon_sym_randomint] = ACTIONS(1404), + [anon_sym_randomuuid] = ACTIONS(1404), + [anon_sym_rolldown] = ACTIONS(1404), + [anon_sym_rollleft] = ACTIONS(1404), + [anon_sym_rollright] = ACTIONS(1404), + [anon_sym_rollup] = ACTIONS(1404), + [anon_sym_scopealiases] = ACTIONS(1404), + [anon_sym_scopecommands] = ACTIONS(1404), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1404), + [anon_sym_scopeexterns] = ACTIONS(1404), + [anon_sym_scopemodules] = ACTIONS(1404), + [anon_sym_scopevariables] = ACTIONS(1404), + [anon_sym_seqchar] = ACTIONS(1404), + [anon_sym_seqdate] = ACTIONS(1404), + [anon_sym_skipuntil] = ACTIONS(1404), + [anon_sym_skipwhile] = ACTIONS(1404), + [anon_sym_splitcell_DASHpath] = ACTIONS(1404), + [anon_sym_splitchars] = ACTIONS(1404), + [anon_sym_splitcolumn] = ACTIONS(1404), + [anon_sym_splitlist] = ACTIONS(1404), + [anon_sym_splitrow] = ACTIONS(1404), + [anon_sym_splitwords] = ACTIONS(1404), + [anon_sym_storcreate] = ACTIONS(1404), + [anon_sym_stordelete] = ACTIONS(1404), + [anon_sym_storexport] = ACTIONS(1404), + [anon_sym_storimport] = ACTIONS(1404), + [anon_sym_storinsert] = ACTIONS(1404), + [anon_sym_storopen] = ACTIONS(1404), + [anon_sym_storreset] = ACTIONS(1404), + [anon_sym_storupdate] = ACTIONS(1404), + [anon_sym_strbexpand] = ACTIONS(1404), + [anon_sym_strcamel_DASHcase] = ACTIONS(1404), + [anon_sym_strcapitalize] = ACTIONS(1404), + [anon_sym_strcompress] = ACTIONS(1404), + [anon_sym_strcontains] = ACTIONS(1404), + [anon_sym_strdecompress] = ACTIONS(1404), + [anon_sym_strdedent] = ACTIONS(1404), + [anon_sym_strdeunicode] = ACTIONS(1404), + [anon_sym_strdistance] = ACTIONS(1404), + [anon_sym_strdowncase] = ACTIONS(1404), + [anon_sym_strends_DASHwith] = ACTIONS(1404), + [anon_sym_strexpand] = ACTIONS(1404), + [anon_sym_strindent] = ACTIONS(1404), + [anon_sym_strindex_DASHof] = ACTIONS(1404), + [anon_sym_strjoin] = ACTIONS(1404), + [anon_sym_strkebab_DASHcase] = ACTIONS(1404), + [anon_sym_strlength] = ACTIONS(1404), + [anon_sym_strpascal_DASHcase] = ACTIONS(1404), + [anon_sym_strreplace] = ACTIONS(1404), + [anon_sym_strreverse] = ACTIONS(1404), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1404), + [anon_sym_strsimilarity] = ACTIONS(1404), + [anon_sym_strsnake_DASHcase] = ACTIONS(1404), + [anon_sym_strstarts_DASHwith] = ACTIONS(1404), + [anon_sym_strstats] = ACTIONS(1404), + [anon_sym_strsubstring] = ACTIONS(1404), + [anon_sym_strtitle_DASHcase] = ACTIONS(1404), + [anon_sym_strtrim] = ACTIONS(1404), + [anon_sym_strupcase] = ACTIONS(1404), + [anon_sym_strwrap] = ACTIONS(1404), + [anon_sym_syscpu] = ACTIONS(1404), + [anon_sym_sysdisks] = ACTIONS(1404), + [anon_sym_syshost] = ACTIONS(1404), + [anon_sym_sysmem] = ACTIONS(1404), + [anon_sym_sysnet] = ACTIONS(1404), + [anon_sym_systemp] = ACTIONS(1404), + [anon_sym_sysusers] = ACTIONS(1404), + [anon_sym_takeuntil] = ACTIONS(1404), + [anon_sym_takewhile] = ACTIONS(1404), + [anon_sym_termquery] = ACTIONS(1404), + [anon_sym_termsize] = ACTIONS(1404), + [anon_sym_tobz2] = ACTIONS(1404), + [anon_sym_tocsv] = ACTIONS(1404), + [anon_sym_togz] = ACTIONS(1404), + [anon_sym_tohtml] = ACTIONS(1404), + [anon_sym_tojson] = ACTIONS(1404), + [anon_sym_tomd] = ACTIONS(1404), + [anon_sym_tomsgpack] = ACTIONS(1402), + [anon_sym_tomsgpackz] = ACTIONS(1404), + [anon_sym_tonuon] = ACTIONS(1404), + [anon_sym_toparquet] = ACTIONS(1404), + [anon_sym_toplist] = ACTIONS(1404), + [anon_sym_topng] = ACTIONS(1404), + [anon_sym_totext] = ACTIONS(1404), + [anon_sym_totoml] = ACTIONS(1404), + [anon_sym_totsv] = ACTIONS(1404), + [anon_sym_toxml] = ACTIONS(1404), + [anon_sym_toxz] = ACTIONS(1404), + [anon_sym_toyaml] = ACTIONS(1404), + [anon_sym_tozst] = ACTIONS(1404), + [anon_sym_updatecells] = ACTIONS(1404), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1404), + [anon_sym_urldecode] = ACTIONS(1404), + [anon_sym_urlencode] = ACTIONS(1404), + [anon_sym_urljoin] = ACTIONS(1404), + [anon_sym_urlparse] = ACTIONS(1404), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1404), + [anon_sym_viewfiles] = ACTIONS(1404), + [anon_sym_viewir] = ACTIONS(1404), + [anon_sym_viewsource] = ACTIONS(1404), + [anon_sym_viewspan] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1404), }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [aux_sym_cmd_identifier_token1] = ACTIONS(2118), - [aux_sym_cmd_identifier_token2] = ACTIONS(2118), - [aux_sym_cmd_identifier_token3] = ACTIONS(2118), - [aux_sym_cmd_identifier_token4] = ACTIONS(2118), - [aux_sym_cmd_identifier_token5] = ACTIONS(2118), - [aux_sym_cmd_identifier_token6] = ACTIONS(2118), - [aux_sym_cmd_identifier_token7] = ACTIONS(2118), - [aux_sym_cmd_identifier_token8] = ACTIONS(2118), - [aux_sym_cmd_identifier_token9] = ACTIONS(2118), - [aux_sym_cmd_identifier_token10] = ACTIONS(2118), - [aux_sym_cmd_identifier_token11] = ACTIONS(2118), - [aux_sym_cmd_identifier_token12] = ACTIONS(2118), - [aux_sym_cmd_identifier_token13] = ACTIONS(2118), - [aux_sym_cmd_identifier_token14] = ACTIONS(2118), - [aux_sym_cmd_identifier_token15] = ACTIONS(2118), - [aux_sym_cmd_identifier_token16] = ACTIONS(2118), - [aux_sym_cmd_identifier_token17] = ACTIONS(2118), - [aux_sym_cmd_identifier_token18] = ACTIONS(2118), - [aux_sym_cmd_identifier_token19] = ACTIONS(2118), - [aux_sym_cmd_identifier_token20] = ACTIONS(2118), - [aux_sym_cmd_identifier_token21] = ACTIONS(2118), - [aux_sym_cmd_identifier_token22] = ACTIONS(2118), - [aux_sym_cmd_identifier_token23] = ACTIONS(2118), - [aux_sym_cmd_identifier_token24] = ACTIONS(2118), - [aux_sym_cmd_identifier_token25] = ACTIONS(2118), - [aux_sym_cmd_identifier_token26] = ACTIONS(2118), - [aux_sym_cmd_identifier_token27] = ACTIONS(2118), - [aux_sym_cmd_identifier_token28] = ACTIONS(2118), - [aux_sym_cmd_identifier_token29] = ACTIONS(2118), - [aux_sym_cmd_identifier_token30] = ACTIONS(2118), - [aux_sym_cmd_identifier_token31] = ACTIONS(2118), - [aux_sym_cmd_identifier_token32] = ACTIONS(2118), - [aux_sym_cmd_identifier_token33] = ACTIONS(2118), - [aux_sym_cmd_identifier_token34] = ACTIONS(2118), - [aux_sym_cmd_identifier_token35] = ACTIONS(2118), - [aux_sym_cmd_identifier_token36] = ACTIONS(2118), - [aux_sym_cmd_identifier_token37] = ACTIONS(2118), - [aux_sym_cmd_identifier_token38] = ACTIONS(2118), - [aux_sym_cmd_identifier_token39] = ACTIONS(2118), - [aux_sym_cmd_identifier_token40] = ACTIONS(2118), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_in2] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_make] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), - [anon_sym_DOT_DOT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), - [sym__entry_separator] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2120), + [307] = { + [sym_comment] = STATE(307), + [aux_sym_shebang_repeat1] = STATE(308), + [aux_sym_cmd_identifier_token1] = ACTIONS(1408), + [aux_sym_cmd_identifier_token2] = ACTIONS(1410), + [aux_sym_cmd_identifier_token3] = ACTIONS(1410), + [aux_sym_cmd_identifier_token4] = ACTIONS(1410), + [aux_sym_cmd_identifier_token5] = ACTIONS(1410), + [aux_sym_cmd_identifier_token6] = ACTIONS(1410), + [aux_sym_cmd_identifier_token7] = ACTIONS(1410), + [aux_sym_cmd_identifier_token8] = ACTIONS(1410), + [aux_sym_cmd_identifier_token9] = ACTIONS(1408), + [aux_sym_cmd_identifier_token10] = ACTIONS(1410), + [aux_sym_cmd_identifier_token11] = ACTIONS(1410), + [aux_sym_cmd_identifier_token12] = ACTIONS(1410), + [aux_sym_cmd_identifier_token13] = ACTIONS(1408), + [aux_sym_cmd_identifier_token14] = ACTIONS(1410), + [aux_sym_cmd_identifier_token15] = ACTIONS(1408), + [aux_sym_cmd_identifier_token16] = ACTIONS(1410), + [aux_sym_cmd_identifier_token17] = ACTIONS(1410), + [aux_sym_cmd_identifier_token18] = ACTIONS(1408), + [aux_sym_cmd_identifier_token19] = ACTIONS(1410), + [aux_sym_cmd_identifier_token20] = ACTIONS(1410), + [aux_sym_cmd_identifier_token21] = ACTIONS(1410), + [aux_sym_cmd_identifier_token22] = ACTIONS(1410), + [aux_sym_cmd_identifier_token23] = ACTIONS(1410), + [aux_sym_cmd_identifier_token24] = ACTIONS(1410), + [aux_sym_cmd_identifier_token25] = ACTIONS(1410), + [aux_sym_cmd_identifier_token26] = ACTIONS(1410), + [aux_sym_cmd_identifier_token27] = ACTIONS(1410), + [aux_sym_cmd_identifier_token28] = ACTIONS(1410), + [aux_sym_cmd_identifier_token29] = ACTIONS(1410), + [aux_sym_cmd_identifier_token30] = ACTIONS(1410), + [aux_sym_cmd_identifier_token31] = ACTIONS(1410), + [aux_sym_cmd_identifier_token32] = ACTIONS(1408), + [aux_sym_cmd_identifier_token33] = ACTIONS(1410), + [aux_sym_cmd_identifier_token34] = ACTIONS(1408), + [aux_sym_cmd_identifier_token35] = ACTIONS(1410), + [aux_sym_cmd_identifier_token36] = ACTIONS(1410), + [aux_sym_cmd_identifier_token37] = ACTIONS(1410), + [aux_sym_cmd_identifier_token38] = ACTIONS(1408), + [aux_sym_cmd_identifier_token39] = ACTIONS(1410), + [aux_sym_cmd_identifier_token40] = ACTIONS(1410), + [sym__newline] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_err_GT_PIPE] = ACTIONS(1412), + [anon_sym_out_GT_PIPE] = ACTIONS(1412), + [anon_sym_e_GT_PIPE] = ACTIONS(1412), + [anon_sym_o_GT_PIPE] = ACTIONS(1412), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1412), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1412), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1412), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_DASH2] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_try] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_where] = ACTIONS(1410), + [aux_sym_expr_unary_token1] = ACTIONS(1410), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), + [anon_sym_DOT_DOT_LT] = ACTIONS(1410), + [anon_sym_null] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [aux_sym__val_number_decimal_token1] = ACTIONS(1408), + [aux_sym__val_number_decimal_token2] = ACTIONS(1410), + [aux_sym__val_number_decimal_token3] = ACTIONS(1410), + [aux_sym__val_number_decimal_token4] = ACTIONS(1410), + [aux_sym__val_number_token1] = ACTIONS(1410), + [aux_sym__val_number_token2] = ACTIONS(1410), + [aux_sym__val_number_token3] = ACTIONS(1410), + [aux_sym__val_number_token4] = ACTIONS(1408), + [aux_sym__val_number_token5] = ACTIONS(1408), + [aux_sym__val_number_token6] = ACTIONS(1408), + [anon_sym_0b] = ACTIONS(1408), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym__str_single_quotes] = ACTIONS(1410), + [sym__str_back_ticks] = ACTIONS(1410), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1410), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1410), + [aux_sym_env_var_token1] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_ansigradient] = ACTIONS(1410), + [anon_sym_ansilink] = ACTIONS(1410), + [anon_sym_ansistrip] = ACTIONS(1410), + [anon_sym_bitsand] = ACTIONS(1410), + [anon_sym_bitsnot] = ACTIONS(1410), + [anon_sym_bitsor] = ACTIONS(1410), + [anon_sym_bitsrol] = ACTIONS(1410), + [anon_sym_bitsror] = ACTIONS(1410), + [anon_sym_bitsshl] = ACTIONS(1410), + [anon_sym_bitsshr] = ACTIONS(1410), + [anon_sym_bitsxor] = ACTIONS(1410), + [anon_sym_bytesadd] = ACTIONS(1410), + [anon_sym_bytesat] = ACTIONS(1410), + [anon_sym_bytesbuild] = ACTIONS(1410), + [anon_sym_bytescollect] = ACTIONS(1410), + [anon_sym_bytesends_DASHwith] = ACTIONS(1410), + [anon_sym_bytesindex_DASHof] = ACTIONS(1410), + [anon_sym_byteslength] = ACTIONS(1410), + [anon_sym_bytesremove] = ACTIONS(1410), + [anon_sym_bytesreplace] = ACTIONS(1410), + [anon_sym_bytesreverse] = ACTIONS(1410), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1410), + [anon_sym_commandlineedit] = ACTIONS(1410), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1410), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1410), + [anon_sym_configenv] = ACTIONS(1410), + [anon_sym_confignu] = ACTIONS(1410), + [anon_sym_configreset] = ACTIONS(1410), + [anon_sym_dateformat] = ACTIONS(1410), + [anon_sym_datehumanize] = ACTIONS(1410), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1410), + [anon_sym_datenow] = ACTIONS(1410), + [anon_sym_dateto_DASHrecord] = ACTIONS(1410), + [anon_sym_dateto_DASHtable] = ACTIONS(1410), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1410), + [anon_sym_debuginfo] = ACTIONS(1410), + [anon_sym_debugprofile] = ACTIONS(1410), + [anon_sym_decodebase32] = ACTIONS(1408), + [anon_sym_decodebase32hex] = ACTIONS(1410), + [anon_sym_decodebase64] = ACTIONS(1410), + [anon_sym_decodehex] = ACTIONS(1410), + [anon_sym_detectcolumns] = ACTIONS(1410), + [anon_sym_dropcolumn] = ACTIONS(1410), + [anon_sym_dropnth] = ACTIONS(1410), + [anon_sym_dtadd] = ACTIONS(1410), + [anon_sym_dtdiff] = ACTIONS(1410), + [anon_sym_dtformat] = ACTIONS(1410), + [anon_sym_dtnow] = ACTIONS(1410), + [anon_sym_dtpart] = ACTIONS(1410), + [anon_sym_dtto] = ACTIONS(1410), + [anon_sym_dtutcnow] = ACTIONS(1410), + [anon_sym_eachwhile] = ACTIONS(1410), + [anon_sym_encodebase32] = ACTIONS(1408), + [anon_sym_encodebase32hex] = ACTIONS(1410), + [anon_sym_encodebase64] = ACTIONS(1410), + [anon_sym_encodehex] = ACTIONS(1410), + [anon_sym_errormake] = ACTIONS(1410), + [anon_sym_exploreir] = ACTIONS(1410), + [anon_sym_formatdate] = ACTIONS(1410), + [anon_sym_formatduration] = ACTIONS(1410), + [anon_sym_formatfilesize] = ACTIONS(1410), + [anon_sym_formatpattern] = ACTIONS(1410), + [anon_sym_frombz2] = ACTIONS(1410), + [anon_sym_fromcsv] = ACTIONS(1410), + [anon_sym_fromeml] = ACTIONS(1410), + [anon_sym_fromgz] = ACTIONS(1410), + [anon_sym_fromics] = ACTIONS(1410), + [anon_sym_fromini] = ACTIONS(1410), + [anon_sym_fromjson] = ACTIONS(1410), + [anon_sym_frommsgpack] = ACTIONS(1408), + [anon_sym_frommsgpackz] = ACTIONS(1410), + [anon_sym_fromnuon] = ACTIONS(1410), + [anon_sym_fromods] = ACTIONS(1410), + [anon_sym_fromparquet] = ACTIONS(1410), + [anon_sym_fromplist] = ACTIONS(1410), + [anon_sym_frompng] = ACTIONS(1410), + [anon_sym_fromssv] = ACTIONS(1410), + [anon_sym_fromtoml] = ACTIONS(1410), + [anon_sym_fromtsv] = ACTIONS(1410), + [anon_sym_fromurl] = ACTIONS(1410), + [anon_sym_fromvcf] = ACTIONS(1410), + [anon_sym_fromxlsx] = ACTIONS(1410), + [anon_sym_fromxml] = ACTIONS(1410), + [anon_sym_fromxz] = ACTIONS(1410), + [anon_sym_fromyaml] = ACTIONS(1410), + [anon_sym_fromyml] = ACTIONS(1410), + [anon_sym_fromzst] = ACTIONS(1410), + [anon_sym_hashmd5] = ACTIONS(1410), + [anon_sym_hashsha256] = ACTIONS(1410), + [anon_sym_helpaliases] = ACTIONS(1410), + [anon_sym_helpcommands] = ACTIONS(1410), + [anon_sym_helpescapes] = ACTIONS(1410), + [anon_sym_helpexterns] = ACTIONS(1410), + [anon_sym_helpmodules] = ACTIONS(1410), + [anon_sym_helpoperators] = ACTIONS(1410), + [anon_sym_historyimport] = ACTIONS(1410), + [anon_sym_historysession] = ACTIONS(1410), + [anon_sym_httpdelete] = ACTIONS(1410), + [anon_sym_httpget] = ACTIONS(1410), + [anon_sym_httphead] = ACTIONS(1410), + [anon_sym_httpoptions] = ACTIONS(1410), + [anon_sym_httppatch] = ACTIONS(1410), + [anon_sym_httppost] = ACTIONS(1410), + [anon_sym_httpput] = ACTIONS(1410), + [anon_sym_inputlist] = ACTIONS(1408), + [anon_sym_inputlisten] = ACTIONS(1410), + [anon_sym_intobinary] = ACTIONS(1410), + [anon_sym_intobits] = ACTIONS(1410), + [anon_sym_intobool] = ACTIONS(1410), + [anon_sym_intocell_DASHpath] = ACTIONS(1410), + [anon_sym_intodatetime] = ACTIONS(1410), + [anon_sym_intoduration] = ACTIONS(1410), + [anon_sym_intofilesize] = ACTIONS(1410), + [anon_sym_intofloat] = ACTIONS(1410), + [anon_sym_intoglob] = ACTIONS(1410), + [anon_sym_intoint] = ACTIONS(1410), + [anon_sym_intorecord] = ACTIONS(1410), + [anon_sym_intosqlite] = ACTIONS(1410), + [anon_sym_intostring] = ACTIONS(1410), + [anon_sym_intovalue] = ACTIONS(1410), + [anon_sym_jsonpath] = ACTIONS(1410), + [anon_sym_keybindingsdefault] = ACTIONS(1410), + [anon_sym_keybindingslist] = ACTIONS(1408), + [anon_sym_keybindingslisten] = ACTIONS(1410), + [anon_sym_mathabs] = ACTIONS(1410), + [anon_sym_matharccos] = ACTIONS(1408), + [anon_sym_matharccosh] = ACTIONS(1410), + [anon_sym_matharcsin] = ACTIONS(1408), + [anon_sym_matharcsinh] = ACTIONS(1410), + [anon_sym_matharctan] = ACTIONS(1408), + [anon_sym_matharctanh] = ACTIONS(1410), + [anon_sym_mathavg] = ACTIONS(1410), + [anon_sym_mathceil] = ACTIONS(1410), + [anon_sym_mathcos] = ACTIONS(1408), + [anon_sym_mathcosh] = ACTIONS(1410), + [anon_sym_mathexp] = ACTIONS(1410), + [anon_sym_mathfloor] = ACTIONS(1410), + [anon_sym_mathln] = ACTIONS(1410), + [anon_sym_mathlog] = ACTIONS(1410), + [anon_sym_mathmax] = ACTIONS(1410), + [anon_sym_mathmedian] = ACTIONS(1410), + [anon_sym_mathmin] = ACTIONS(1410), + [anon_sym_mathmode] = ACTIONS(1410), + [anon_sym_mathproduct] = ACTIONS(1410), + [anon_sym_mathround] = ACTIONS(1410), + [anon_sym_mathsin] = ACTIONS(1408), + [anon_sym_mathsinh] = ACTIONS(1410), + [anon_sym_mathsqrt] = ACTIONS(1410), + [anon_sym_mathstddev] = ACTIONS(1410), + [anon_sym_mathsum] = ACTIONS(1410), + [anon_sym_mathtan] = ACTIONS(1408), + [anon_sym_mathtanh] = ACTIONS(1410), + [anon_sym_mathvariance] = ACTIONS(1410), + [anon_sym_metadataaccess] = ACTIONS(1410), + [anon_sym_metadataset] = ACTIONS(1410), + [anon_sym_pathbasename] = ACTIONS(1410), + [anon_sym_pathdirname] = ACTIONS(1410), + [anon_sym_pathexists] = ACTIONS(1410), + [anon_sym_pathexpand] = ACTIONS(1410), + [anon_sym_pathjoin] = ACTIONS(1410), + [anon_sym_pathparse] = ACTIONS(1410), + [anon_sym_pathrelative_DASHto] = ACTIONS(1410), + [anon_sym_pathsplit] = ACTIONS(1410), + [anon_sym_pathtype] = ACTIONS(1410), + [anon_sym_pluginadd] = ACTIONS(1410), + [anon_sym_pluginlist] = ACTIONS(1410), + [anon_sym_pluginrm] = ACTIONS(1410), + [anon_sym_pluginstop] = ACTIONS(1410), + [anon_sym_polarsagg] = ACTIONS(1408), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1410), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1410), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1410), + [anon_sym_polarsappend] = ACTIONS(1410), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1410), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1410), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1410), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1410), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1410), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1410), + [anon_sym_polarsas] = ACTIONS(1408), + [anon_sym_polarsas_DASHdate] = ACTIONS(1408), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1410), + [anon_sym_polarscache] = ACTIONS(1410), + [anon_sym_polarscast] = ACTIONS(1410), + [anon_sym_polarscol] = ACTIONS(1408), + [anon_sym_polarscollect] = ACTIONS(1410), + [anon_sym_polarscolumns] = ACTIONS(1410), + [anon_sym_polarsconcat] = ACTIONS(1408), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1410), + [anon_sym_polarscontains] = ACTIONS(1410), + [anon_sym_polarscount] = ACTIONS(1408), + [anon_sym_polarscount_DASHnull] = ACTIONS(1410), + [anon_sym_polarscumulative] = ACTIONS(1410), + [anon_sym_polarsdatepart] = ACTIONS(1410), + [anon_sym_polarsdecimal] = ACTIONS(1410), + [anon_sym_polarsdrop] = ACTIONS(1408), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1410), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1410), + [anon_sym_polarsdummies] = ACTIONS(1410), + [anon_sym_polarsexplode] = ACTIONS(1410), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1410), + [anon_sym_polarsfetch] = ACTIONS(1410), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1410), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1410), + [anon_sym_polarsfilter] = ACTIONS(1408), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1410), + [anon_sym_polarsfirst] = ACTIONS(1410), + [anon_sym_polarsflatten] = ACTIONS(1410), + [anon_sym_polarsget] = ACTIONS(1408), + [anon_sym_polarsget_DASHday] = ACTIONS(1410), + [anon_sym_polarsget_DASHhour] = ACTIONS(1410), + [anon_sym_polarsget_DASHminute] = ACTIONS(1410), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1410), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1410), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1410), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1410), + [anon_sym_polarsget_DASHweek] = ACTIONS(1408), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1410), + [anon_sym_polarsget_DASHyear] = ACTIONS(1410), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1410), + [anon_sym_polarsimplode] = ACTIONS(1410), + [anon_sym_polarsinteger] = ACTIONS(1410), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1410), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1410), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1410), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1410), + [anon_sym_polarsis_DASHin] = ACTIONS(1410), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1410), + [anon_sym_polarsis_DASHnull] = ACTIONS(1410), + [anon_sym_polarsis_DASHunique] = ACTIONS(1410), + [anon_sym_polarsjoin] = ACTIONS(1410), + [anon_sym_polarslast] = ACTIONS(1410), + [anon_sym_polarslen] = ACTIONS(1410), + [anon_sym_polarslit] = ACTIONS(1410), + [anon_sym_polarslowercase] = ACTIONS(1410), + [anon_sym_polarsmax] = ACTIONS(1410), + [anon_sym_polarsmean] = ACTIONS(1410), + [anon_sym_polarsmedian] = ACTIONS(1410), + [anon_sym_polarsmin] = ACTIONS(1410), + [anon_sym_polarsn_DASHunique] = ACTIONS(1410), + [anon_sym_polarsnot] = ACTIONS(1410), + [anon_sym_polarsopen] = ACTIONS(1410), + [anon_sym_polarsotherwise] = ACTIONS(1410), + [anon_sym_polarspivot] = ACTIONS(1410), + [anon_sym_polarsprofile] = ACTIONS(1410), + [anon_sym_polarsquantile] = ACTIONS(1410), + [anon_sym_polarsquery] = ACTIONS(1410), + [anon_sym_polarsrename] = ACTIONS(1410), + [anon_sym_polarsreplace] = ACTIONS(1408), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1410), + [anon_sym_polarsreverse] = ACTIONS(1410), + [anon_sym_polarsrolling] = ACTIONS(1410), + [anon_sym_polarssample] = ACTIONS(1410), + [anon_sym_polarssave] = ACTIONS(1410), + [anon_sym_polarsschema] = ACTIONS(1410), + [anon_sym_polarsselect] = ACTIONS(1410), + [anon_sym_polarsset] = ACTIONS(1408), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1410), + [anon_sym_polarsshape] = ACTIONS(1410), + [anon_sym_polarsshift] = ACTIONS(1410), + [anon_sym_polarsslice] = ACTIONS(1410), + [anon_sym_polarssort_DASHby] = ACTIONS(1410), + [anon_sym_polarsstd] = ACTIONS(1410), + [anon_sym_polarsstore_DASHget] = ACTIONS(1410), + [anon_sym_polarsstore_DASHls] = ACTIONS(1410), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1410), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1410), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1410), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1410), + [anon_sym_polarsstrftime] = ACTIONS(1410), + [anon_sym_polarssum] = ACTIONS(1408), + [anon_sym_polarssummary] = ACTIONS(1410), + [anon_sym_polarstake] = ACTIONS(1410), + [anon_sym_polarsunique] = ACTIONS(1410), + [anon_sym_polarsunnest] = ACTIONS(1410), + [anon_sym_polarsunpivot] = ACTIONS(1410), + [anon_sym_polarsuppercase] = ACTIONS(1410), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1410), + [anon_sym_polarsvar] = ACTIONS(1410), + [anon_sym_polarswhen] = ACTIONS(1410), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1410), + [anon_sym_querydb] = ACTIONS(1410), + [anon_sym_querygit] = ACTIONS(1410), + [anon_sym_queryjson] = ACTIONS(1410), + [anon_sym_queryweb] = ACTIONS(1408), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1410), + [anon_sym_queryxml] = ACTIONS(1410), + [anon_sym_randombinary] = ACTIONS(1410), + [anon_sym_randombool] = ACTIONS(1410), + [anon_sym_randomchars] = ACTIONS(1410), + [anon_sym_randomdice] = ACTIONS(1410), + [anon_sym_randomfloat] = ACTIONS(1410), + [anon_sym_randomint] = ACTIONS(1410), + [anon_sym_randomuuid] = ACTIONS(1410), + [anon_sym_rolldown] = ACTIONS(1410), + [anon_sym_rollleft] = ACTIONS(1410), + [anon_sym_rollright] = ACTIONS(1410), + [anon_sym_rollup] = ACTIONS(1410), + [anon_sym_scopealiases] = ACTIONS(1410), + [anon_sym_scopecommands] = ACTIONS(1410), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1410), + [anon_sym_scopeexterns] = ACTIONS(1410), + [anon_sym_scopemodules] = ACTIONS(1410), + [anon_sym_scopevariables] = ACTIONS(1410), + [anon_sym_seqchar] = ACTIONS(1410), + [anon_sym_seqdate] = ACTIONS(1410), + [anon_sym_skipuntil] = ACTIONS(1410), + [anon_sym_skipwhile] = ACTIONS(1410), + [anon_sym_splitcell_DASHpath] = ACTIONS(1410), + [anon_sym_splitchars] = ACTIONS(1410), + [anon_sym_splitcolumn] = ACTIONS(1410), + [anon_sym_splitlist] = ACTIONS(1410), + [anon_sym_splitrow] = ACTIONS(1410), + [anon_sym_splitwords] = ACTIONS(1410), + [anon_sym_storcreate] = ACTIONS(1410), + [anon_sym_stordelete] = ACTIONS(1410), + [anon_sym_storexport] = ACTIONS(1410), + [anon_sym_storimport] = ACTIONS(1410), + [anon_sym_storinsert] = ACTIONS(1410), + [anon_sym_storopen] = ACTIONS(1410), + [anon_sym_storreset] = ACTIONS(1410), + [anon_sym_storupdate] = ACTIONS(1410), + [anon_sym_strbexpand] = ACTIONS(1410), + [anon_sym_strcamel_DASHcase] = ACTIONS(1410), + [anon_sym_strcapitalize] = ACTIONS(1410), + [anon_sym_strcompress] = ACTIONS(1410), + [anon_sym_strcontains] = ACTIONS(1410), + [anon_sym_strdecompress] = ACTIONS(1410), + [anon_sym_strdedent] = ACTIONS(1410), + [anon_sym_strdeunicode] = ACTIONS(1410), + [anon_sym_strdistance] = ACTIONS(1410), + [anon_sym_strdowncase] = ACTIONS(1410), + [anon_sym_strends_DASHwith] = ACTIONS(1410), + [anon_sym_strexpand] = ACTIONS(1410), + [anon_sym_strindent] = ACTIONS(1410), + [anon_sym_strindex_DASHof] = ACTIONS(1410), + [anon_sym_strjoin] = ACTIONS(1410), + [anon_sym_strkebab_DASHcase] = ACTIONS(1410), + [anon_sym_strlength] = ACTIONS(1410), + [anon_sym_strpascal_DASHcase] = ACTIONS(1410), + [anon_sym_strreplace] = ACTIONS(1410), + [anon_sym_strreverse] = ACTIONS(1410), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1410), + [anon_sym_strsimilarity] = ACTIONS(1410), + [anon_sym_strsnake_DASHcase] = ACTIONS(1410), + [anon_sym_strstarts_DASHwith] = ACTIONS(1410), + [anon_sym_strstats] = ACTIONS(1410), + [anon_sym_strsubstring] = ACTIONS(1410), + [anon_sym_strtitle_DASHcase] = ACTIONS(1410), + [anon_sym_strtrim] = ACTIONS(1410), + [anon_sym_strupcase] = ACTIONS(1410), + [anon_sym_strwrap] = ACTIONS(1410), + [anon_sym_syscpu] = ACTIONS(1410), + [anon_sym_sysdisks] = ACTIONS(1410), + [anon_sym_syshost] = ACTIONS(1410), + [anon_sym_sysmem] = ACTIONS(1410), + [anon_sym_sysnet] = ACTIONS(1410), + [anon_sym_systemp] = ACTIONS(1410), + [anon_sym_sysusers] = ACTIONS(1410), + [anon_sym_takeuntil] = ACTIONS(1410), + [anon_sym_takewhile] = ACTIONS(1410), + [anon_sym_termquery] = ACTIONS(1410), + [anon_sym_termsize] = ACTIONS(1410), + [anon_sym_tobz2] = ACTIONS(1410), + [anon_sym_tocsv] = ACTIONS(1410), + [anon_sym_togz] = ACTIONS(1410), + [anon_sym_tohtml] = ACTIONS(1410), + [anon_sym_tojson] = ACTIONS(1410), + [anon_sym_tomd] = ACTIONS(1410), + [anon_sym_tomsgpack] = ACTIONS(1408), + [anon_sym_tomsgpackz] = ACTIONS(1410), + [anon_sym_tonuon] = ACTIONS(1410), + [anon_sym_toparquet] = ACTIONS(1410), + [anon_sym_toplist] = ACTIONS(1410), + [anon_sym_topng] = ACTIONS(1410), + [anon_sym_totext] = ACTIONS(1410), + [anon_sym_totoml] = ACTIONS(1410), + [anon_sym_totsv] = ACTIONS(1410), + [anon_sym_toxml] = ACTIONS(1410), + [anon_sym_toxz] = ACTIONS(1410), + [anon_sym_toyaml] = ACTIONS(1410), + [anon_sym_tozst] = ACTIONS(1410), + [anon_sym_updatecells] = ACTIONS(1410), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1410), + [anon_sym_urldecode] = ACTIONS(1410), + [anon_sym_urlencode] = ACTIONS(1410), + [anon_sym_urljoin] = ACTIONS(1410), + [anon_sym_urlparse] = ACTIONS(1410), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1410), + [anon_sym_viewfiles] = ACTIONS(1410), + [anon_sym_viewir] = ACTIONS(1410), + [anon_sym_viewsource] = ACTIONS(1410), + [anon_sym_viewspan] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1410), }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [aux_sym_cmd_identifier_token37] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1737), + [308] = { + [sym_comment] = STATE(308), + [aux_sym_shebang_repeat1] = STATE(308), + [aux_sym_cmd_identifier_token1] = ACTIONS(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(1233), + [aux_sym_cmd_identifier_token3] = ACTIONS(1233), + [aux_sym_cmd_identifier_token4] = ACTIONS(1233), + [aux_sym_cmd_identifier_token5] = ACTIONS(1233), + [aux_sym_cmd_identifier_token6] = ACTIONS(1233), + [aux_sym_cmd_identifier_token7] = ACTIONS(1233), + [aux_sym_cmd_identifier_token8] = ACTIONS(1233), + [aux_sym_cmd_identifier_token9] = ACTIONS(1231), + [aux_sym_cmd_identifier_token10] = ACTIONS(1233), + [aux_sym_cmd_identifier_token11] = ACTIONS(1233), + [aux_sym_cmd_identifier_token12] = ACTIONS(1233), + [aux_sym_cmd_identifier_token13] = ACTIONS(1231), + [aux_sym_cmd_identifier_token14] = ACTIONS(1233), + [aux_sym_cmd_identifier_token15] = ACTIONS(1231), + [aux_sym_cmd_identifier_token16] = ACTIONS(1233), + [aux_sym_cmd_identifier_token17] = ACTIONS(1233), + [aux_sym_cmd_identifier_token18] = ACTIONS(1231), + [aux_sym_cmd_identifier_token19] = ACTIONS(1233), + [aux_sym_cmd_identifier_token20] = ACTIONS(1233), + [aux_sym_cmd_identifier_token21] = ACTIONS(1233), + [aux_sym_cmd_identifier_token22] = ACTIONS(1233), + [aux_sym_cmd_identifier_token23] = ACTIONS(1233), + [aux_sym_cmd_identifier_token24] = ACTIONS(1233), + [aux_sym_cmd_identifier_token25] = ACTIONS(1233), + [aux_sym_cmd_identifier_token26] = ACTIONS(1233), + [aux_sym_cmd_identifier_token27] = ACTIONS(1233), + [aux_sym_cmd_identifier_token28] = ACTIONS(1233), + [aux_sym_cmd_identifier_token29] = ACTIONS(1233), + [aux_sym_cmd_identifier_token30] = ACTIONS(1233), + [aux_sym_cmd_identifier_token31] = ACTIONS(1233), + [aux_sym_cmd_identifier_token32] = ACTIONS(1231), + [aux_sym_cmd_identifier_token33] = ACTIONS(1233), + [aux_sym_cmd_identifier_token34] = ACTIONS(1231), + [aux_sym_cmd_identifier_token35] = ACTIONS(1233), + [aux_sym_cmd_identifier_token36] = ACTIONS(1233), + [aux_sym_cmd_identifier_token37] = ACTIONS(1233), + [aux_sym_cmd_identifier_token38] = ACTIONS(1231), + [aux_sym_cmd_identifier_token39] = ACTIONS(1233), + [aux_sym_cmd_identifier_token40] = ACTIONS(1233), + [sym__newline] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_err_GT_PIPE] = ACTIONS(1233), + [anon_sym_out_GT_PIPE] = ACTIONS(1233), + [anon_sym_e_GT_PIPE] = ACTIONS(1233), + [anon_sym_o_GT_PIPE] = ACTIONS(1233), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1233), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1233), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1233), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_DASH2] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_where] = ACTIONS(1233), + [aux_sym_expr_unary_token1] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1231), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_decimal_token4] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [aux_sym_env_var_token1] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_ansigradient] = ACTIONS(1233), + [anon_sym_ansilink] = ACTIONS(1233), + [anon_sym_ansistrip] = ACTIONS(1233), + [anon_sym_bitsand] = ACTIONS(1233), + [anon_sym_bitsnot] = ACTIONS(1233), + [anon_sym_bitsor] = ACTIONS(1233), + [anon_sym_bitsrol] = ACTIONS(1233), + [anon_sym_bitsror] = ACTIONS(1233), + [anon_sym_bitsshl] = ACTIONS(1233), + [anon_sym_bitsshr] = ACTIONS(1233), + [anon_sym_bitsxor] = ACTIONS(1233), + [anon_sym_bytesadd] = ACTIONS(1233), + [anon_sym_bytesat] = ACTIONS(1233), + [anon_sym_bytesbuild] = ACTIONS(1233), + [anon_sym_bytescollect] = ACTIONS(1233), + [anon_sym_bytesends_DASHwith] = ACTIONS(1233), + [anon_sym_bytesindex_DASHof] = ACTIONS(1233), + [anon_sym_byteslength] = ACTIONS(1233), + [anon_sym_bytesremove] = ACTIONS(1233), + [anon_sym_bytesreplace] = ACTIONS(1233), + [anon_sym_bytesreverse] = ACTIONS(1233), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1233), + [anon_sym_commandlineedit] = ACTIONS(1233), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1233), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1233), + [anon_sym_configenv] = ACTIONS(1233), + [anon_sym_confignu] = ACTIONS(1233), + [anon_sym_configreset] = ACTIONS(1233), + [anon_sym_dateformat] = ACTIONS(1233), + [anon_sym_datehumanize] = ACTIONS(1233), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1233), + [anon_sym_datenow] = ACTIONS(1233), + [anon_sym_dateto_DASHrecord] = ACTIONS(1233), + [anon_sym_dateto_DASHtable] = ACTIONS(1233), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1233), + [anon_sym_debuginfo] = ACTIONS(1233), + [anon_sym_debugprofile] = ACTIONS(1233), + [anon_sym_decodebase32] = ACTIONS(1231), + [anon_sym_decodebase32hex] = ACTIONS(1233), + [anon_sym_decodebase64] = ACTIONS(1233), + [anon_sym_decodehex] = ACTIONS(1233), + [anon_sym_detectcolumns] = ACTIONS(1233), + [anon_sym_dropcolumn] = ACTIONS(1233), + [anon_sym_dropnth] = ACTIONS(1233), + [anon_sym_dtadd] = ACTIONS(1233), + [anon_sym_dtdiff] = ACTIONS(1233), + [anon_sym_dtformat] = ACTIONS(1233), + [anon_sym_dtnow] = ACTIONS(1233), + [anon_sym_dtpart] = ACTIONS(1233), + [anon_sym_dtto] = ACTIONS(1233), + [anon_sym_dtutcnow] = ACTIONS(1233), + [anon_sym_eachwhile] = ACTIONS(1233), + [anon_sym_encodebase32] = ACTIONS(1231), + [anon_sym_encodebase32hex] = ACTIONS(1233), + [anon_sym_encodebase64] = ACTIONS(1233), + [anon_sym_encodehex] = ACTIONS(1233), + [anon_sym_errormake] = ACTIONS(1233), + [anon_sym_exploreir] = ACTIONS(1233), + [anon_sym_formatdate] = ACTIONS(1233), + [anon_sym_formatduration] = ACTIONS(1233), + [anon_sym_formatfilesize] = ACTIONS(1233), + [anon_sym_formatpattern] = ACTIONS(1233), + [anon_sym_frombz2] = ACTIONS(1233), + [anon_sym_fromcsv] = ACTIONS(1233), + [anon_sym_fromeml] = ACTIONS(1233), + [anon_sym_fromgz] = ACTIONS(1233), + [anon_sym_fromics] = ACTIONS(1233), + [anon_sym_fromini] = ACTIONS(1233), + [anon_sym_fromjson] = ACTIONS(1233), + [anon_sym_frommsgpack] = ACTIONS(1231), + [anon_sym_frommsgpackz] = ACTIONS(1233), + [anon_sym_fromnuon] = ACTIONS(1233), + [anon_sym_fromods] = ACTIONS(1233), + [anon_sym_fromparquet] = ACTIONS(1233), + [anon_sym_fromplist] = ACTIONS(1233), + [anon_sym_frompng] = ACTIONS(1233), + [anon_sym_fromssv] = ACTIONS(1233), + [anon_sym_fromtoml] = ACTIONS(1233), + [anon_sym_fromtsv] = ACTIONS(1233), + [anon_sym_fromurl] = ACTIONS(1233), + [anon_sym_fromvcf] = ACTIONS(1233), + [anon_sym_fromxlsx] = ACTIONS(1233), + [anon_sym_fromxml] = ACTIONS(1233), + [anon_sym_fromxz] = ACTIONS(1233), + [anon_sym_fromyaml] = ACTIONS(1233), + [anon_sym_fromyml] = ACTIONS(1233), + [anon_sym_fromzst] = ACTIONS(1233), + [anon_sym_hashmd5] = ACTIONS(1233), + [anon_sym_hashsha256] = ACTIONS(1233), + [anon_sym_helpaliases] = ACTIONS(1233), + [anon_sym_helpcommands] = ACTIONS(1233), + [anon_sym_helpescapes] = ACTIONS(1233), + [anon_sym_helpexterns] = ACTIONS(1233), + [anon_sym_helpmodules] = ACTIONS(1233), + [anon_sym_helpoperators] = ACTIONS(1233), + [anon_sym_historyimport] = ACTIONS(1233), + [anon_sym_historysession] = ACTIONS(1233), + [anon_sym_httpdelete] = ACTIONS(1233), + [anon_sym_httpget] = ACTIONS(1233), + [anon_sym_httphead] = ACTIONS(1233), + [anon_sym_httpoptions] = ACTIONS(1233), + [anon_sym_httppatch] = ACTIONS(1233), + [anon_sym_httppost] = ACTIONS(1233), + [anon_sym_httpput] = ACTIONS(1233), + [anon_sym_inputlist] = ACTIONS(1231), + [anon_sym_inputlisten] = ACTIONS(1233), + [anon_sym_intobinary] = ACTIONS(1233), + [anon_sym_intobits] = ACTIONS(1233), + [anon_sym_intobool] = ACTIONS(1233), + [anon_sym_intocell_DASHpath] = ACTIONS(1233), + [anon_sym_intodatetime] = ACTIONS(1233), + [anon_sym_intoduration] = ACTIONS(1233), + [anon_sym_intofilesize] = ACTIONS(1233), + [anon_sym_intofloat] = ACTIONS(1233), + [anon_sym_intoglob] = ACTIONS(1233), + [anon_sym_intoint] = ACTIONS(1233), + [anon_sym_intorecord] = ACTIONS(1233), + [anon_sym_intosqlite] = ACTIONS(1233), + [anon_sym_intostring] = ACTIONS(1233), + [anon_sym_intovalue] = ACTIONS(1233), + [anon_sym_jsonpath] = ACTIONS(1233), + [anon_sym_keybindingsdefault] = ACTIONS(1233), + [anon_sym_keybindingslist] = ACTIONS(1231), + [anon_sym_keybindingslisten] = ACTIONS(1233), + [anon_sym_mathabs] = ACTIONS(1233), + [anon_sym_matharccos] = ACTIONS(1231), + [anon_sym_matharccosh] = ACTIONS(1233), + [anon_sym_matharcsin] = ACTIONS(1231), + [anon_sym_matharcsinh] = ACTIONS(1233), + [anon_sym_matharctan] = ACTIONS(1231), + [anon_sym_matharctanh] = ACTIONS(1233), + [anon_sym_mathavg] = ACTIONS(1233), + [anon_sym_mathceil] = ACTIONS(1233), + [anon_sym_mathcos] = ACTIONS(1231), + [anon_sym_mathcosh] = ACTIONS(1233), + [anon_sym_mathexp] = ACTIONS(1233), + [anon_sym_mathfloor] = ACTIONS(1233), + [anon_sym_mathln] = ACTIONS(1233), + [anon_sym_mathlog] = ACTIONS(1233), + [anon_sym_mathmax] = ACTIONS(1233), + [anon_sym_mathmedian] = ACTIONS(1233), + [anon_sym_mathmin] = ACTIONS(1233), + [anon_sym_mathmode] = ACTIONS(1233), + [anon_sym_mathproduct] = ACTIONS(1233), + [anon_sym_mathround] = ACTIONS(1233), + [anon_sym_mathsin] = ACTIONS(1231), + [anon_sym_mathsinh] = ACTIONS(1233), + [anon_sym_mathsqrt] = ACTIONS(1233), + [anon_sym_mathstddev] = ACTIONS(1233), + [anon_sym_mathsum] = ACTIONS(1233), + [anon_sym_mathtan] = ACTIONS(1231), + [anon_sym_mathtanh] = ACTIONS(1233), + [anon_sym_mathvariance] = ACTIONS(1233), + [anon_sym_metadataaccess] = ACTIONS(1233), + [anon_sym_metadataset] = ACTIONS(1233), + [anon_sym_pathbasename] = ACTIONS(1233), + [anon_sym_pathdirname] = ACTIONS(1233), + [anon_sym_pathexists] = ACTIONS(1233), + [anon_sym_pathexpand] = ACTIONS(1233), + [anon_sym_pathjoin] = ACTIONS(1233), + [anon_sym_pathparse] = ACTIONS(1233), + [anon_sym_pathrelative_DASHto] = ACTIONS(1233), + [anon_sym_pathsplit] = ACTIONS(1233), + [anon_sym_pathtype] = ACTIONS(1233), + [anon_sym_pluginadd] = ACTIONS(1233), + [anon_sym_pluginlist] = ACTIONS(1233), + [anon_sym_pluginrm] = ACTIONS(1233), + [anon_sym_pluginstop] = ACTIONS(1233), + [anon_sym_polarsagg] = ACTIONS(1231), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1233), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1233), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsappend] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1233), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1233), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1233), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1233), + [anon_sym_polarsas] = ACTIONS(1231), + [anon_sym_polarsas_DASHdate] = ACTIONS(1231), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1233), + [anon_sym_polarscache] = ACTIONS(1233), + [anon_sym_polarscast] = ACTIONS(1233), + [anon_sym_polarscol] = ACTIONS(1231), + [anon_sym_polarscollect] = ACTIONS(1233), + [anon_sym_polarscolumns] = ACTIONS(1233), + [anon_sym_polarsconcat] = ACTIONS(1231), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1233), + [anon_sym_polarscontains] = ACTIONS(1233), + [anon_sym_polarscount] = ACTIONS(1231), + [anon_sym_polarscount_DASHnull] = ACTIONS(1233), + [anon_sym_polarscumulative] = ACTIONS(1233), + [anon_sym_polarsdatepart] = ACTIONS(1233), + [anon_sym_polarsdecimal] = ACTIONS(1233), + [anon_sym_polarsdrop] = ACTIONS(1231), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1233), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1233), + [anon_sym_polarsdummies] = ACTIONS(1233), + [anon_sym_polarsexplode] = ACTIONS(1233), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1233), + [anon_sym_polarsfetch] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1233), + [anon_sym_polarsfilter] = ACTIONS(1231), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1233), + [anon_sym_polarsfirst] = ACTIONS(1233), + [anon_sym_polarsflatten] = ACTIONS(1233), + [anon_sym_polarsget] = ACTIONS(1231), + [anon_sym_polarsget_DASHday] = ACTIONS(1233), + [anon_sym_polarsget_DASHhour] = ACTIONS(1233), + [anon_sym_polarsget_DASHminute] = ACTIONS(1233), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1233), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1233), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHweek] = ACTIONS(1231), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1233), + [anon_sym_polarsget_DASHyear] = ACTIONS(1233), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1233), + [anon_sym_polarsimplode] = ACTIONS(1233), + [anon_sym_polarsinteger] = ACTIONS(1233), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1233), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1233), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1233), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1233), + [anon_sym_polarsis_DASHin] = ACTIONS(1233), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHunique] = ACTIONS(1233), + [anon_sym_polarsjoin] = ACTIONS(1233), + [anon_sym_polarslast] = ACTIONS(1233), + [anon_sym_polarslen] = ACTIONS(1233), + [anon_sym_polarslit] = ACTIONS(1233), + [anon_sym_polarslowercase] = ACTIONS(1233), + [anon_sym_polarsmax] = ACTIONS(1233), + [anon_sym_polarsmean] = ACTIONS(1233), + [anon_sym_polarsmedian] = ACTIONS(1233), + [anon_sym_polarsmin] = ACTIONS(1233), + [anon_sym_polarsn_DASHunique] = ACTIONS(1233), + [anon_sym_polarsnot] = ACTIONS(1233), + [anon_sym_polarsopen] = ACTIONS(1233), + [anon_sym_polarsotherwise] = ACTIONS(1233), + [anon_sym_polarspivot] = ACTIONS(1233), + [anon_sym_polarsprofile] = ACTIONS(1233), + [anon_sym_polarsquantile] = ACTIONS(1233), + [anon_sym_polarsquery] = ACTIONS(1233), + [anon_sym_polarsrename] = ACTIONS(1233), + [anon_sym_polarsreplace] = ACTIONS(1231), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1233), + [anon_sym_polarsreverse] = ACTIONS(1233), + [anon_sym_polarsrolling] = ACTIONS(1233), + [anon_sym_polarssample] = ACTIONS(1233), + [anon_sym_polarssave] = ACTIONS(1233), + [anon_sym_polarsschema] = ACTIONS(1233), + [anon_sym_polarsselect] = ACTIONS(1233), + [anon_sym_polarsset] = ACTIONS(1231), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1233), + [anon_sym_polarsshape] = ACTIONS(1233), + [anon_sym_polarsshift] = ACTIONS(1233), + [anon_sym_polarsslice] = ACTIONS(1233), + [anon_sym_polarssort_DASHby] = ACTIONS(1233), + [anon_sym_polarsstd] = ACTIONS(1233), + [anon_sym_polarsstore_DASHget] = ACTIONS(1233), + [anon_sym_polarsstore_DASHls] = ACTIONS(1233), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1233), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1233), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1233), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1233), + [anon_sym_polarsstrftime] = ACTIONS(1233), + [anon_sym_polarssum] = ACTIONS(1231), + [anon_sym_polarssummary] = ACTIONS(1233), + [anon_sym_polarstake] = ACTIONS(1233), + [anon_sym_polarsunique] = ACTIONS(1233), + [anon_sym_polarsunnest] = ACTIONS(1233), + [anon_sym_polarsunpivot] = ACTIONS(1233), + [anon_sym_polarsuppercase] = ACTIONS(1233), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1233), + [anon_sym_polarsvar] = ACTIONS(1233), + [anon_sym_polarswhen] = ACTIONS(1233), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1233), + [anon_sym_querydb] = ACTIONS(1233), + [anon_sym_querygit] = ACTIONS(1233), + [anon_sym_queryjson] = ACTIONS(1233), + [anon_sym_queryweb] = ACTIONS(1231), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1233), + [anon_sym_queryxml] = ACTIONS(1233), + [anon_sym_randombinary] = ACTIONS(1233), + [anon_sym_randombool] = ACTIONS(1233), + [anon_sym_randomchars] = ACTIONS(1233), + [anon_sym_randomdice] = ACTIONS(1233), + [anon_sym_randomfloat] = ACTIONS(1233), + [anon_sym_randomint] = ACTIONS(1233), + [anon_sym_randomuuid] = ACTIONS(1233), + [anon_sym_rolldown] = ACTIONS(1233), + [anon_sym_rollleft] = ACTIONS(1233), + [anon_sym_rollright] = ACTIONS(1233), + [anon_sym_rollup] = ACTIONS(1233), + [anon_sym_scopealiases] = ACTIONS(1233), + [anon_sym_scopecommands] = ACTIONS(1233), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1233), + [anon_sym_scopeexterns] = ACTIONS(1233), + [anon_sym_scopemodules] = ACTIONS(1233), + [anon_sym_scopevariables] = ACTIONS(1233), + [anon_sym_seqchar] = ACTIONS(1233), + [anon_sym_seqdate] = ACTIONS(1233), + [anon_sym_skipuntil] = ACTIONS(1233), + [anon_sym_skipwhile] = ACTIONS(1233), + [anon_sym_splitcell_DASHpath] = ACTIONS(1233), + [anon_sym_splitchars] = ACTIONS(1233), + [anon_sym_splitcolumn] = ACTIONS(1233), + [anon_sym_splitlist] = ACTIONS(1233), + [anon_sym_splitrow] = ACTIONS(1233), + [anon_sym_splitwords] = ACTIONS(1233), + [anon_sym_storcreate] = ACTIONS(1233), + [anon_sym_stordelete] = ACTIONS(1233), + [anon_sym_storexport] = ACTIONS(1233), + [anon_sym_storimport] = ACTIONS(1233), + [anon_sym_storinsert] = ACTIONS(1233), + [anon_sym_storopen] = ACTIONS(1233), + [anon_sym_storreset] = ACTIONS(1233), + [anon_sym_storupdate] = ACTIONS(1233), + [anon_sym_strbexpand] = ACTIONS(1233), + [anon_sym_strcamel_DASHcase] = ACTIONS(1233), + [anon_sym_strcapitalize] = ACTIONS(1233), + [anon_sym_strcompress] = ACTIONS(1233), + [anon_sym_strcontains] = ACTIONS(1233), + [anon_sym_strdecompress] = ACTIONS(1233), + [anon_sym_strdedent] = ACTIONS(1233), + [anon_sym_strdeunicode] = ACTIONS(1233), + [anon_sym_strdistance] = ACTIONS(1233), + [anon_sym_strdowncase] = ACTIONS(1233), + [anon_sym_strends_DASHwith] = ACTIONS(1233), + [anon_sym_strexpand] = ACTIONS(1233), + [anon_sym_strindent] = ACTIONS(1233), + [anon_sym_strindex_DASHof] = ACTIONS(1233), + [anon_sym_strjoin] = ACTIONS(1233), + [anon_sym_strkebab_DASHcase] = ACTIONS(1233), + [anon_sym_strlength] = ACTIONS(1233), + [anon_sym_strpascal_DASHcase] = ACTIONS(1233), + [anon_sym_strreplace] = ACTIONS(1233), + [anon_sym_strreverse] = ACTIONS(1233), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strsimilarity] = ACTIONS(1233), + [anon_sym_strsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strstarts_DASHwith] = ACTIONS(1233), + [anon_sym_strstats] = ACTIONS(1233), + [anon_sym_strsubstring] = ACTIONS(1233), + [anon_sym_strtitle_DASHcase] = ACTIONS(1233), + [anon_sym_strtrim] = ACTIONS(1233), + [anon_sym_strupcase] = ACTIONS(1233), + [anon_sym_strwrap] = ACTIONS(1233), + [anon_sym_syscpu] = ACTIONS(1233), + [anon_sym_sysdisks] = ACTIONS(1233), + [anon_sym_syshost] = ACTIONS(1233), + [anon_sym_sysmem] = ACTIONS(1233), + [anon_sym_sysnet] = ACTIONS(1233), + [anon_sym_systemp] = ACTIONS(1233), + [anon_sym_sysusers] = ACTIONS(1233), + [anon_sym_takeuntil] = ACTIONS(1233), + [anon_sym_takewhile] = ACTIONS(1233), + [anon_sym_termquery] = ACTIONS(1233), + [anon_sym_termsize] = ACTIONS(1233), + [anon_sym_tobz2] = ACTIONS(1233), + [anon_sym_tocsv] = ACTIONS(1233), + [anon_sym_togz] = ACTIONS(1233), + [anon_sym_tohtml] = ACTIONS(1233), + [anon_sym_tojson] = ACTIONS(1233), + [anon_sym_tomd] = ACTIONS(1233), + [anon_sym_tomsgpack] = ACTIONS(1231), + [anon_sym_tomsgpackz] = ACTIONS(1233), + [anon_sym_tonuon] = ACTIONS(1233), + [anon_sym_toparquet] = ACTIONS(1233), + [anon_sym_toplist] = ACTIONS(1233), + [anon_sym_topng] = ACTIONS(1233), + [anon_sym_totext] = ACTIONS(1233), + [anon_sym_totoml] = ACTIONS(1233), + [anon_sym_totsv] = ACTIONS(1233), + [anon_sym_toxml] = ACTIONS(1233), + [anon_sym_toxz] = ACTIONS(1233), + [anon_sym_toyaml] = ACTIONS(1233), + [anon_sym_tozst] = ACTIONS(1233), + [anon_sym_updatecells] = ACTIONS(1233), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1233), + [anon_sym_urldecode] = ACTIONS(1233), + [anon_sym_urlencode] = ACTIONS(1233), + [anon_sym_urljoin] = ACTIONS(1233), + [anon_sym_urlparse] = ACTIONS(1233), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1233), + [anon_sym_viewfiles] = ACTIONS(1233), + [anon_sym_viewir] = ACTIONS(1233), + [anon_sym_viewsource] = ACTIONS(1233), + [anon_sym_viewspan] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1233), }, - [480] = { - [sym_cell_path] = STATE(700), - [sym_path] = STATE(623), - [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1938), - [anon_sym_alias] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_let_DASHenv] = ACTIONS(1938), - [anon_sym_mut] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [aux_sym_cmd_identifier_token1] = ACTIONS(1938), - [aux_sym_cmd_identifier_token2] = ACTIONS(1940), - [aux_sym_cmd_identifier_token3] = ACTIONS(1940), - [aux_sym_cmd_identifier_token4] = ACTIONS(1940), - [aux_sym_cmd_identifier_token5] = ACTIONS(1940), - [aux_sym_cmd_identifier_token6] = ACTIONS(1940), - [aux_sym_cmd_identifier_token7] = ACTIONS(1940), - [aux_sym_cmd_identifier_token8] = ACTIONS(1938), - [aux_sym_cmd_identifier_token9] = ACTIONS(1938), - [aux_sym_cmd_identifier_token10] = ACTIONS(1940), - [aux_sym_cmd_identifier_token11] = ACTIONS(1940), - [aux_sym_cmd_identifier_token12] = ACTIONS(1938), - [aux_sym_cmd_identifier_token13] = ACTIONS(1938), - [aux_sym_cmd_identifier_token14] = ACTIONS(1938), - [aux_sym_cmd_identifier_token15] = ACTIONS(1938), - [aux_sym_cmd_identifier_token16] = ACTIONS(1940), - [aux_sym_cmd_identifier_token17] = ACTIONS(1940), - [aux_sym_cmd_identifier_token18] = ACTIONS(1940), - [aux_sym_cmd_identifier_token19] = ACTIONS(1940), - [aux_sym_cmd_identifier_token20] = ACTIONS(1940), - [aux_sym_cmd_identifier_token21] = ACTIONS(1940), - [aux_sym_cmd_identifier_token22] = ACTIONS(1940), - [aux_sym_cmd_identifier_token23] = ACTIONS(1940), - [aux_sym_cmd_identifier_token24] = ACTIONS(1940), - [aux_sym_cmd_identifier_token25] = ACTIONS(1940), - [aux_sym_cmd_identifier_token26] = ACTIONS(1940), - [aux_sym_cmd_identifier_token27] = ACTIONS(1940), - [aux_sym_cmd_identifier_token28] = ACTIONS(1940), - [aux_sym_cmd_identifier_token29] = ACTIONS(1940), - [aux_sym_cmd_identifier_token30] = ACTIONS(1940), - [aux_sym_cmd_identifier_token31] = ACTIONS(1940), - [aux_sym_cmd_identifier_token32] = ACTIONS(1940), - [aux_sym_cmd_identifier_token33] = ACTIONS(1940), - [aux_sym_cmd_identifier_token34] = ACTIONS(1938), - [aux_sym_cmd_identifier_token35] = ACTIONS(1940), - [aux_sym_cmd_identifier_token36] = ACTIONS(1940), - [aux_sym_cmd_identifier_token37] = ACTIONS(1940), - [aux_sym_cmd_identifier_token38] = ACTIONS(1938), - [aux_sym_cmd_identifier_token39] = ACTIONS(1940), - [aux_sym_cmd_identifier_token40] = ACTIONS(1940), - [anon_sym_def] = ACTIONS(1938), - [anon_sym_export_DASHenv] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_module] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_error] = ACTIONS(1938), - [anon_sym_DASH2] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_in2] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_make] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_source] = ACTIONS(1938), - [anon_sym_source_DASHenv] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_hide] = ACTIONS(1938), - [anon_sym_hide_DASHenv] = ACTIONS(1938), - [anon_sym_overlay] = ACTIONS(1938), - [anon_sym_as] = ACTIONS(1938), - [anon_sym_PLUS2] = ACTIONS(1938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), - [aux_sym__val_number_decimal_token1] = ACTIONS(1938), - [aux_sym__val_number_decimal_token2] = ACTIONS(1940), - [aux_sym__val_number_decimal_token3] = ACTIONS(1940), - [aux_sym__val_number_decimal_token4] = ACTIONS(1940), - [aux_sym__val_number_token1] = ACTIONS(1940), - [aux_sym__val_number_token2] = ACTIONS(1940), - [aux_sym__val_number_token3] = ACTIONS(1940), - [aux_sym__val_number_token4] = ACTIONS(1938), - [aux_sym__val_number_token5] = ACTIONS(1938), - [aux_sym__val_number_token6] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym__str_single_quotes] = ACTIONS(1940), - [sym__str_back_ticks] = ACTIONS(1940), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1940), + [309] = { + [sym_comment] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(1246), + [aux_sym_cmd_identifier_token2] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1244), + [aux_sym_cmd_identifier_token4] = ACTIONS(1244), + [aux_sym_cmd_identifier_token5] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [aux_sym_cmd_identifier_token7] = ACTIONS(1244), + [aux_sym_cmd_identifier_token8] = ACTIONS(1244), + [aux_sym_cmd_identifier_token9] = ACTIONS(1246), + [aux_sym_cmd_identifier_token10] = ACTIONS(1244), + [aux_sym_cmd_identifier_token11] = ACTIONS(1244), + [aux_sym_cmd_identifier_token12] = ACTIONS(1244), + [aux_sym_cmd_identifier_token13] = ACTIONS(1246), + [aux_sym_cmd_identifier_token14] = ACTIONS(1244), + [aux_sym_cmd_identifier_token15] = ACTIONS(1246), + [aux_sym_cmd_identifier_token16] = ACTIONS(1244), + [aux_sym_cmd_identifier_token17] = ACTIONS(1244), + [aux_sym_cmd_identifier_token18] = ACTIONS(1246), + [aux_sym_cmd_identifier_token19] = ACTIONS(1244), + [aux_sym_cmd_identifier_token20] = ACTIONS(1244), + [aux_sym_cmd_identifier_token21] = ACTIONS(1244), + [aux_sym_cmd_identifier_token22] = ACTIONS(1244), + [aux_sym_cmd_identifier_token23] = ACTIONS(1244), + [aux_sym_cmd_identifier_token24] = ACTIONS(1244), + [aux_sym_cmd_identifier_token25] = ACTIONS(1244), + [aux_sym_cmd_identifier_token26] = ACTIONS(1244), + [aux_sym_cmd_identifier_token27] = ACTIONS(1244), + [aux_sym_cmd_identifier_token28] = ACTIONS(1244), + [aux_sym_cmd_identifier_token29] = ACTIONS(1244), + [aux_sym_cmd_identifier_token30] = ACTIONS(1244), + [aux_sym_cmd_identifier_token31] = ACTIONS(1244), + [aux_sym_cmd_identifier_token32] = ACTIONS(1246), + [aux_sym_cmd_identifier_token33] = ACTIONS(1244), + [aux_sym_cmd_identifier_token34] = ACTIONS(1246), + [aux_sym_cmd_identifier_token35] = ACTIONS(1244), + [aux_sym_cmd_identifier_token36] = ACTIONS(1244), + [aux_sym_cmd_identifier_token37] = ACTIONS(1244), + [aux_sym_cmd_identifier_token38] = ACTIONS(1246), + [aux_sym_cmd_identifier_token39] = ACTIONS(1244), + [aux_sym_cmd_identifier_token40] = ACTIONS(1244), + [sym__newline] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_err_GT_PIPE] = ACTIONS(1244), + [anon_sym_out_GT_PIPE] = ACTIONS(1244), + [anon_sym_e_GT_PIPE] = ACTIONS(1244), + [anon_sym_o_GT_PIPE] = ACTIONS(1244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_where] = ACTIONS(1244), + [aux_sym_expr_unary_token1] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_DOT_DOT_LT] = ACTIONS(1244), + [anon_sym_null] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [aux_sym__val_number_decimal_token1] = ACTIONS(1246), + [aux_sym__val_number_decimal_token2] = ACTIONS(1244), + [aux_sym__val_number_decimal_token3] = ACTIONS(1244), + [aux_sym__val_number_decimal_token4] = ACTIONS(1244), + [aux_sym__val_number_token1] = ACTIONS(1244), + [aux_sym__val_number_token2] = ACTIONS(1244), + [aux_sym__val_number_token3] = ACTIONS(1244), + [aux_sym__val_number_token4] = ACTIONS(1246), + [aux_sym__val_number_token5] = ACTIONS(1246), + [aux_sym__val_number_token6] = ACTIONS(1246), + [anon_sym_0b] = ACTIONS(1246), + [anon_sym_0o] = ACTIONS(1246), + [anon_sym_0x] = ACTIONS(1246), + [sym_val_date] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym__str_single_quotes] = ACTIONS(1244), + [sym__str_back_ticks] = ACTIONS(1244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1244), + [aux_sym_env_var_token1] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1244), + [anon_sym_ansigradient] = ACTIONS(1244), + [anon_sym_ansilink] = ACTIONS(1244), + [anon_sym_ansistrip] = ACTIONS(1244), + [anon_sym_bitsand] = ACTIONS(1244), + [anon_sym_bitsnot] = ACTIONS(1244), + [anon_sym_bitsor] = ACTIONS(1244), + [anon_sym_bitsrol] = ACTIONS(1244), + [anon_sym_bitsror] = ACTIONS(1244), + [anon_sym_bitsshl] = ACTIONS(1244), + [anon_sym_bitsshr] = ACTIONS(1244), + [anon_sym_bitsxor] = ACTIONS(1244), + [anon_sym_bytesadd] = ACTIONS(1244), + [anon_sym_bytesat] = ACTIONS(1244), + [anon_sym_bytesbuild] = ACTIONS(1244), + [anon_sym_bytescollect] = ACTIONS(1244), + [anon_sym_bytesends_DASHwith] = ACTIONS(1244), + [anon_sym_bytesindex_DASHof] = ACTIONS(1244), + [anon_sym_byteslength] = ACTIONS(1244), + [anon_sym_bytesremove] = ACTIONS(1244), + [anon_sym_bytesreplace] = ACTIONS(1244), + [anon_sym_bytesreverse] = ACTIONS(1244), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1244), + [anon_sym_commandlineedit] = ACTIONS(1244), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1244), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1244), + [anon_sym_configenv] = ACTIONS(1244), + [anon_sym_confignu] = ACTIONS(1244), + [anon_sym_configreset] = ACTIONS(1244), + [anon_sym_dateformat] = ACTIONS(1244), + [anon_sym_datehumanize] = ACTIONS(1244), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1244), + [anon_sym_datenow] = ACTIONS(1244), + [anon_sym_dateto_DASHrecord] = ACTIONS(1244), + [anon_sym_dateto_DASHtable] = ACTIONS(1244), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1244), + [anon_sym_debuginfo] = ACTIONS(1244), + [anon_sym_debugprofile] = ACTIONS(1244), + [anon_sym_decodebase32] = ACTIONS(1246), + [anon_sym_decodebase32hex] = ACTIONS(1244), + [anon_sym_decodebase64] = ACTIONS(1244), + [anon_sym_decodehex] = ACTIONS(1244), + [anon_sym_detectcolumns] = ACTIONS(1244), + [anon_sym_dropcolumn] = ACTIONS(1244), + [anon_sym_dropnth] = ACTIONS(1244), + [anon_sym_dtadd] = ACTIONS(1244), + [anon_sym_dtdiff] = ACTIONS(1244), + [anon_sym_dtformat] = ACTIONS(1244), + [anon_sym_dtnow] = ACTIONS(1244), + [anon_sym_dtpart] = ACTIONS(1244), + [anon_sym_dtto] = ACTIONS(1244), + [anon_sym_dtutcnow] = ACTIONS(1244), + [anon_sym_eachwhile] = ACTIONS(1244), + [anon_sym_encodebase32] = ACTIONS(1246), + [anon_sym_encodebase32hex] = ACTIONS(1244), + [anon_sym_encodebase64] = ACTIONS(1244), + [anon_sym_encodehex] = ACTIONS(1244), + [anon_sym_errormake] = ACTIONS(1244), + [anon_sym_exploreir] = ACTIONS(1244), + [anon_sym_formatdate] = ACTIONS(1244), + [anon_sym_formatduration] = ACTIONS(1244), + [anon_sym_formatfilesize] = ACTIONS(1244), + [anon_sym_formatpattern] = ACTIONS(1244), + [anon_sym_frombz2] = ACTIONS(1244), + [anon_sym_fromcsv] = ACTIONS(1244), + [anon_sym_fromeml] = ACTIONS(1244), + [anon_sym_fromgz] = ACTIONS(1244), + [anon_sym_fromics] = ACTIONS(1244), + [anon_sym_fromini] = ACTIONS(1244), + [anon_sym_fromjson] = ACTIONS(1244), + [anon_sym_frommsgpack] = ACTIONS(1246), + [anon_sym_frommsgpackz] = ACTIONS(1244), + [anon_sym_fromnuon] = ACTIONS(1244), + [anon_sym_fromods] = ACTIONS(1244), + [anon_sym_fromparquet] = ACTIONS(1244), + [anon_sym_fromplist] = ACTIONS(1244), + [anon_sym_frompng] = ACTIONS(1244), + [anon_sym_fromssv] = ACTIONS(1244), + [anon_sym_fromtoml] = ACTIONS(1244), + [anon_sym_fromtsv] = ACTIONS(1244), + [anon_sym_fromurl] = ACTIONS(1244), + [anon_sym_fromvcf] = ACTIONS(1244), + [anon_sym_fromxlsx] = ACTIONS(1244), + [anon_sym_fromxml] = ACTIONS(1244), + [anon_sym_fromxz] = ACTIONS(1244), + [anon_sym_fromyaml] = ACTIONS(1244), + [anon_sym_fromyml] = ACTIONS(1244), + [anon_sym_fromzst] = ACTIONS(1244), + [anon_sym_hashmd5] = ACTIONS(1244), + [anon_sym_hashsha256] = ACTIONS(1244), + [anon_sym_helpaliases] = ACTIONS(1244), + [anon_sym_helpcommands] = ACTIONS(1244), + [anon_sym_helpescapes] = ACTIONS(1244), + [anon_sym_helpexterns] = ACTIONS(1244), + [anon_sym_helpmodules] = ACTIONS(1244), + [anon_sym_helpoperators] = ACTIONS(1244), + [anon_sym_historyimport] = ACTIONS(1244), + [anon_sym_historysession] = ACTIONS(1244), + [anon_sym_httpdelete] = ACTIONS(1244), + [anon_sym_httpget] = ACTIONS(1244), + [anon_sym_httphead] = ACTIONS(1244), + [anon_sym_httpoptions] = ACTIONS(1244), + [anon_sym_httppatch] = ACTIONS(1244), + [anon_sym_httppost] = ACTIONS(1244), + [anon_sym_httpput] = ACTIONS(1244), + [anon_sym_inputlist] = ACTIONS(1246), + [anon_sym_inputlisten] = ACTIONS(1244), + [anon_sym_intobinary] = ACTIONS(1244), + [anon_sym_intobits] = ACTIONS(1244), + [anon_sym_intobool] = ACTIONS(1244), + [anon_sym_intocell_DASHpath] = ACTIONS(1244), + [anon_sym_intodatetime] = ACTIONS(1244), + [anon_sym_intoduration] = ACTIONS(1244), + [anon_sym_intofilesize] = ACTIONS(1244), + [anon_sym_intofloat] = ACTIONS(1244), + [anon_sym_intoglob] = ACTIONS(1244), + [anon_sym_intoint] = ACTIONS(1244), + [anon_sym_intorecord] = ACTIONS(1244), + [anon_sym_intosqlite] = ACTIONS(1244), + [anon_sym_intostring] = ACTIONS(1244), + [anon_sym_intovalue] = ACTIONS(1244), + [anon_sym_jsonpath] = ACTIONS(1244), + [anon_sym_keybindingsdefault] = ACTIONS(1244), + [anon_sym_keybindingslist] = ACTIONS(1246), + [anon_sym_keybindingslisten] = ACTIONS(1244), + [anon_sym_mathabs] = ACTIONS(1244), + [anon_sym_matharccos] = ACTIONS(1246), + [anon_sym_matharccosh] = ACTIONS(1244), + [anon_sym_matharcsin] = ACTIONS(1246), + [anon_sym_matharcsinh] = ACTIONS(1244), + [anon_sym_matharctan] = ACTIONS(1246), + [anon_sym_matharctanh] = ACTIONS(1244), + [anon_sym_mathavg] = ACTIONS(1244), + [anon_sym_mathceil] = ACTIONS(1244), + [anon_sym_mathcos] = ACTIONS(1246), + [anon_sym_mathcosh] = ACTIONS(1244), + [anon_sym_mathexp] = ACTIONS(1244), + [anon_sym_mathfloor] = ACTIONS(1244), + [anon_sym_mathln] = ACTIONS(1244), + [anon_sym_mathlog] = ACTIONS(1244), + [anon_sym_mathmax] = ACTIONS(1244), + [anon_sym_mathmedian] = ACTIONS(1244), + [anon_sym_mathmin] = ACTIONS(1244), + [anon_sym_mathmode] = ACTIONS(1244), + [anon_sym_mathproduct] = ACTIONS(1244), + [anon_sym_mathround] = ACTIONS(1244), + [anon_sym_mathsin] = ACTIONS(1246), + [anon_sym_mathsinh] = ACTIONS(1244), + [anon_sym_mathsqrt] = ACTIONS(1244), + [anon_sym_mathstddev] = ACTIONS(1244), + [anon_sym_mathsum] = ACTIONS(1244), + [anon_sym_mathtan] = ACTIONS(1246), + [anon_sym_mathtanh] = ACTIONS(1244), + [anon_sym_mathvariance] = ACTIONS(1244), + [anon_sym_metadataaccess] = ACTIONS(1244), + [anon_sym_metadataset] = ACTIONS(1244), + [anon_sym_pathbasename] = ACTIONS(1244), + [anon_sym_pathdirname] = ACTIONS(1244), + [anon_sym_pathexists] = ACTIONS(1244), + [anon_sym_pathexpand] = ACTIONS(1244), + [anon_sym_pathjoin] = ACTIONS(1244), + [anon_sym_pathparse] = ACTIONS(1244), + [anon_sym_pathrelative_DASHto] = ACTIONS(1244), + [anon_sym_pathsplit] = ACTIONS(1244), + [anon_sym_pathtype] = ACTIONS(1244), + [anon_sym_pluginadd] = ACTIONS(1244), + [anon_sym_pluginlist] = ACTIONS(1244), + [anon_sym_pluginrm] = ACTIONS(1244), + [anon_sym_pluginstop] = ACTIONS(1244), + [anon_sym_polarsagg] = ACTIONS(1246), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1244), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1244), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsappend] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1244), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1244), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1244), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1244), + [anon_sym_polarsas] = ACTIONS(1246), + [anon_sym_polarsas_DASHdate] = ACTIONS(1246), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1244), + [anon_sym_polarscache] = ACTIONS(1244), + [anon_sym_polarscast] = ACTIONS(1244), + [anon_sym_polarscol] = ACTIONS(1246), + [anon_sym_polarscollect] = ACTIONS(1244), + [anon_sym_polarscolumns] = ACTIONS(1244), + [anon_sym_polarsconcat] = ACTIONS(1246), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1244), + [anon_sym_polarscontains] = ACTIONS(1244), + [anon_sym_polarscount] = ACTIONS(1246), + [anon_sym_polarscount_DASHnull] = ACTIONS(1244), + [anon_sym_polarscumulative] = ACTIONS(1244), + [anon_sym_polarsdatepart] = ACTIONS(1244), + [anon_sym_polarsdecimal] = ACTIONS(1244), + [anon_sym_polarsdrop] = ACTIONS(1246), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1244), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1244), + [anon_sym_polarsdummies] = ACTIONS(1244), + [anon_sym_polarsexplode] = ACTIONS(1244), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1244), + [anon_sym_polarsfetch] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1244), + [anon_sym_polarsfilter] = ACTIONS(1246), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1244), + [anon_sym_polarsfirst] = ACTIONS(1244), + [anon_sym_polarsflatten] = ACTIONS(1244), + [anon_sym_polarsget] = ACTIONS(1246), + [anon_sym_polarsget_DASHday] = ACTIONS(1244), + [anon_sym_polarsget_DASHhour] = ACTIONS(1244), + [anon_sym_polarsget_DASHminute] = ACTIONS(1244), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1244), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1244), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHweek] = ACTIONS(1246), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1244), + [anon_sym_polarsget_DASHyear] = ACTIONS(1244), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1244), + [anon_sym_polarsimplode] = ACTIONS(1244), + [anon_sym_polarsinteger] = ACTIONS(1244), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1244), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1244), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1244), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1244), + [anon_sym_polarsis_DASHin] = ACTIONS(1244), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHunique] = ACTIONS(1244), + [anon_sym_polarsjoin] = ACTIONS(1244), + [anon_sym_polarslast] = ACTIONS(1244), + [anon_sym_polarslen] = ACTIONS(1244), + [anon_sym_polarslit] = ACTIONS(1244), + [anon_sym_polarslowercase] = ACTIONS(1244), + [anon_sym_polarsmax] = ACTIONS(1244), + [anon_sym_polarsmean] = ACTIONS(1244), + [anon_sym_polarsmedian] = ACTIONS(1244), + [anon_sym_polarsmin] = ACTIONS(1244), + [anon_sym_polarsn_DASHunique] = ACTIONS(1244), + [anon_sym_polarsnot] = ACTIONS(1244), + [anon_sym_polarsopen] = ACTIONS(1244), + [anon_sym_polarsotherwise] = ACTIONS(1244), + [anon_sym_polarspivot] = ACTIONS(1244), + [anon_sym_polarsprofile] = ACTIONS(1244), + [anon_sym_polarsquantile] = ACTIONS(1244), + [anon_sym_polarsquery] = ACTIONS(1244), + [anon_sym_polarsrename] = ACTIONS(1244), + [anon_sym_polarsreplace] = ACTIONS(1246), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1244), + [anon_sym_polarsreverse] = ACTIONS(1244), + [anon_sym_polarsrolling] = ACTIONS(1244), + [anon_sym_polarssample] = ACTIONS(1244), + [anon_sym_polarssave] = ACTIONS(1244), + [anon_sym_polarsschema] = ACTIONS(1244), + [anon_sym_polarsselect] = ACTIONS(1244), + [anon_sym_polarsset] = ACTIONS(1246), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1244), + [anon_sym_polarsshape] = ACTIONS(1244), + [anon_sym_polarsshift] = ACTIONS(1244), + [anon_sym_polarsslice] = ACTIONS(1244), + [anon_sym_polarssort_DASHby] = ACTIONS(1244), + [anon_sym_polarsstd] = ACTIONS(1244), + [anon_sym_polarsstore_DASHget] = ACTIONS(1244), + [anon_sym_polarsstore_DASHls] = ACTIONS(1244), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1244), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1244), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1244), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1244), + [anon_sym_polarsstrftime] = ACTIONS(1244), + [anon_sym_polarssum] = ACTIONS(1246), + [anon_sym_polarssummary] = ACTIONS(1244), + [anon_sym_polarstake] = ACTIONS(1244), + [anon_sym_polarsunique] = ACTIONS(1244), + [anon_sym_polarsunnest] = ACTIONS(1244), + [anon_sym_polarsunpivot] = ACTIONS(1244), + [anon_sym_polarsuppercase] = ACTIONS(1244), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1244), + [anon_sym_polarsvar] = ACTIONS(1244), + [anon_sym_polarswhen] = ACTIONS(1244), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1244), + [anon_sym_querydb] = ACTIONS(1244), + [anon_sym_querygit] = ACTIONS(1244), + [anon_sym_queryjson] = ACTIONS(1244), + [anon_sym_queryweb] = ACTIONS(1246), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1244), + [anon_sym_queryxml] = ACTIONS(1244), + [anon_sym_randombinary] = ACTIONS(1244), + [anon_sym_randombool] = ACTIONS(1244), + [anon_sym_randomchars] = ACTIONS(1244), + [anon_sym_randomdice] = ACTIONS(1244), + [anon_sym_randomfloat] = ACTIONS(1244), + [anon_sym_randomint] = ACTIONS(1244), + [anon_sym_randomuuid] = ACTIONS(1244), + [anon_sym_rolldown] = ACTIONS(1244), + [anon_sym_rollleft] = ACTIONS(1244), + [anon_sym_rollright] = ACTIONS(1244), + [anon_sym_rollup] = ACTIONS(1244), + [anon_sym_scopealiases] = ACTIONS(1244), + [anon_sym_scopecommands] = ACTIONS(1244), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1244), + [anon_sym_scopeexterns] = ACTIONS(1244), + [anon_sym_scopemodules] = ACTIONS(1244), + [anon_sym_scopevariables] = ACTIONS(1244), + [anon_sym_seqchar] = ACTIONS(1244), + [anon_sym_seqdate] = ACTIONS(1244), + [anon_sym_skipuntil] = ACTIONS(1244), + [anon_sym_skipwhile] = ACTIONS(1244), + [anon_sym_splitcell_DASHpath] = ACTIONS(1244), + [anon_sym_splitchars] = ACTIONS(1244), + [anon_sym_splitcolumn] = ACTIONS(1244), + [anon_sym_splitlist] = ACTIONS(1244), + [anon_sym_splitrow] = ACTIONS(1244), + [anon_sym_splitwords] = ACTIONS(1244), + [anon_sym_storcreate] = ACTIONS(1244), + [anon_sym_stordelete] = ACTIONS(1244), + [anon_sym_storexport] = ACTIONS(1244), + [anon_sym_storimport] = ACTIONS(1244), + [anon_sym_storinsert] = ACTIONS(1244), + [anon_sym_storopen] = ACTIONS(1244), + [anon_sym_storreset] = ACTIONS(1244), + [anon_sym_storupdate] = ACTIONS(1244), + [anon_sym_strbexpand] = ACTIONS(1244), + [anon_sym_strcamel_DASHcase] = ACTIONS(1244), + [anon_sym_strcapitalize] = ACTIONS(1244), + [anon_sym_strcompress] = ACTIONS(1244), + [anon_sym_strcontains] = ACTIONS(1244), + [anon_sym_strdecompress] = ACTIONS(1244), + [anon_sym_strdedent] = ACTIONS(1244), + [anon_sym_strdeunicode] = ACTIONS(1244), + [anon_sym_strdistance] = ACTIONS(1244), + [anon_sym_strdowncase] = ACTIONS(1244), + [anon_sym_strends_DASHwith] = ACTIONS(1244), + [anon_sym_strexpand] = ACTIONS(1244), + [anon_sym_strindent] = ACTIONS(1244), + [anon_sym_strindex_DASHof] = ACTIONS(1244), + [anon_sym_strjoin] = ACTIONS(1244), + [anon_sym_strkebab_DASHcase] = ACTIONS(1244), + [anon_sym_strlength] = ACTIONS(1244), + [anon_sym_strpascal_DASHcase] = ACTIONS(1244), + [anon_sym_strreplace] = ACTIONS(1244), + [anon_sym_strreverse] = ACTIONS(1244), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strsimilarity] = ACTIONS(1244), + [anon_sym_strsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strstarts_DASHwith] = ACTIONS(1244), + [anon_sym_strstats] = ACTIONS(1244), + [anon_sym_strsubstring] = ACTIONS(1244), + [anon_sym_strtitle_DASHcase] = ACTIONS(1244), + [anon_sym_strtrim] = ACTIONS(1244), + [anon_sym_strupcase] = ACTIONS(1244), + [anon_sym_strwrap] = ACTIONS(1244), + [anon_sym_syscpu] = ACTIONS(1244), + [anon_sym_sysdisks] = ACTIONS(1244), + [anon_sym_syshost] = ACTIONS(1244), + [anon_sym_sysmem] = ACTIONS(1244), + [anon_sym_sysnet] = ACTIONS(1244), + [anon_sym_systemp] = ACTIONS(1244), + [anon_sym_sysusers] = ACTIONS(1244), + [anon_sym_takeuntil] = ACTIONS(1244), + [anon_sym_takewhile] = ACTIONS(1244), + [anon_sym_termquery] = ACTIONS(1244), + [anon_sym_termsize] = ACTIONS(1244), + [anon_sym_tobz2] = ACTIONS(1244), + [anon_sym_tocsv] = ACTIONS(1244), + [anon_sym_togz] = ACTIONS(1244), + [anon_sym_tohtml] = ACTIONS(1244), + [anon_sym_tojson] = ACTIONS(1244), + [anon_sym_tomd] = ACTIONS(1244), + [anon_sym_tomsgpack] = ACTIONS(1246), + [anon_sym_tomsgpackz] = ACTIONS(1244), + [anon_sym_tonuon] = ACTIONS(1244), + [anon_sym_toparquet] = ACTIONS(1244), + [anon_sym_toplist] = ACTIONS(1244), + [anon_sym_topng] = ACTIONS(1244), + [anon_sym_totext] = ACTIONS(1244), + [anon_sym_totoml] = ACTIONS(1244), + [anon_sym_totsv] = ACTIONS(1244), + [anon_sym_toxml] = ACTIONS(1244), + [anon_sym_toxz] = ACTIONS(1244), + [anon_sym_toyaml] = ACTIONS(1244), + [anon_sym_tozst] = ACTIONS(1244), + [anon_sym_updatecells] = ACTIONS(1244), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1244), + [anon_sym_urldecode] = ACTIONS(1244), + [anon_sym_urlencode] = ACTIONS(1244), + [anon_sym_urljoin] = ACTIONS(1244), + [anon_sym_urlparse] = ACTIONS(1244), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1244), + [anon_sym_viewfiles] = ACTIONS(1244), + [anon_sym_viewir] = ACTIONS(1244), + [anon_sym_viewsource] = ACTIONS(1244), + [anon_sym_viewspan] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1244), }, - [481] = { - [sym_cell_path] = STATE(701), - [sym_path] = STATE(623), - [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2042), - [anon_sym_alias] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_let_DASHenv] = ACTIONS(2042), - [anon_sym_mut] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [aux_sym_cmd_identifier_token1] = ACTIONS(2042), - [aux_sym_cmd_identifier_token2] = ACTIONS(2044), - [aux_sym_cmd_identifier_token3] = ACTIONS(2044), - [aux_sym_cmd_identifier_token4] = ACTIONS(2044), - [aux_sym_cmd_identifier_token5] = ACTIONS(2044), - [aux_sym_cmd_identifier_token6] = ACTIONS(2044), - [aux_sym_cmd_identifier_token7] = ACTIONS(2044), - [aux_sym_cmd_identifier_token8] = ACTIONS(2042), - [aux_sym_cmd_identifier_token9] = ACTIONS(2042), - [aux_sym_cmd_identifier_token10] = ACTIONS(2044), - [aux_sym_cmd_identifier_token11] = ACTIONS(2044), - [aux_sym_cmd_identifier_token12] = ACTIONS(2042), - [aux_sym_cmd_identifier_token13] = ACTIONS(2042), - [aux_sym_cmd_identifier_token14] = ACTIONS(2042), - [aux_sym_cmd_identifier_token15] = ACTIONS(2042), - [aux_sym_cmd_identifier_token16] = ACTIONS(2044), - [aux_sym_cmd_identifier_token17] = ACTIONS(2044), - [aux_sym_cmd_identifier_token18] = ACTIONS(2044), - [aux_sym_cmd_identifier_token19] = ACTIONS(2044), - [aux_sym_cmd_identifier_token20] = ACTIONS(2044), - [aux_sym_cmd_identifier_token21] = ACTIONS(2044), - [aux_sym_cmd_identifier_token22] = ACTIONS(2044), - [aux_sym_cmd_identifier_token23] = ACTIONS(2044), - [aux_sym_cmd_identifier_token24] = ACTIONS(2044), - [aux_sym_cmd_identifier_token25] = ACTIONS(2044), - [aux_sym_cmd_identifier_token26] = ACTIONS(2044), - [aux_sym_cmd_identifier_token27] = ACTIONS(2044), - [aux_sym_cmd_identifier_token28] = ACTIONS(2044), - [aux_sym_cmd_identifier_token29] = ACTIONS(2044), - [aux_sym_cmd_identifier_token30] = ACTIONS(2044), - [aux_sym_cmd_identifier_token31] = ACTIONS(2044), - [aux_sym_cmd_identifier_token32] = ACTIONS(2044), - [aux_sym_cmd_identifier_token33] = ACTIONS(2044), - [aux_sym_cmd_identifier_token34] = ACTIONS(2042), - [aux_sym_cmd_identifier_token35] = ACTIONS(2044), - [aux_sym_cmd_identifier_token36] = ACTIONS(2044), - [aux_sym_cmd_identifier_token37] = ACTIONS(2044), - [aux_sym_cmd_identifier_token38] = ACTIONS(2042), - [aux_sym_cmd_identifier_token39] = ACTIONS(2044), - [aux_sym_cmd_identifier_token40] = ACTIONS(2044), - [anon_sym_def] = ACTIONS(2042), - [anon_sym_export_DASHenv] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_module] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_error] = ACTIONS(2042), - [anon_sym_DASH2] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_in2] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_make] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2042), - [anon_sym_catch] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_source] = ACTIONS(2042), - [anon_sym_source_DASHenv] = ACTIONS(2042), - [anon_sym_register] = ACTIONS(2042), - [anon_sym_hide] = ACTIONS(2042), - [anon_sym_hide_DASHenv] = ACTIONS(2042), - [anon_sym_overlay] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_PLUS2] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2042), - [aux_sym__val_number_decimal_token2] = ACTIONS(2044), - [aux_sym__val_number_decimal_token3] = ACTIONS(2044), - [aux_sym__val_number_decimal_token4] = ACTIONS(2044), - [aux_sym__val_number_token1] = ACTIONS(2044), - [aux_sym__val_number_token2] = ACTIONS(2044), - [aux_sym__val_number_token3] = ACTIONS(2044), - [aux_sym__val_number_token4] = ACTIONS(2042), - [aux_sym__val_number_token5] = ACTIONS(2042), - [aux_sym__val_number_token6] = ACTIONS(2042), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym__str_single_quotes] = ACTIONS(2044), - [sym__str_back_ticks] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2044), + [310] = { + [sym_comment] = STATE(310), + [aux_sym_cmd_identifier_token1] = ACTIONS(1384), + [aux_sym_cmd_identifier_token2] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1386), + [aux_sym_cmd_identifier_token4] = ACTIONS(1386), + [aux_sym_cmd_identifier_token5] = ACTIONS(1386), + [aux_sym_cmd_identifier_token6] = ACTIONS(1386), + [aux_sym_cmd_identifier_token7] = ACTIONS(1386), + [aux_sym_cmd_identifier_token8] = ACTIONS(1386), + [aux_sym_cmd_identifier_token9] = ACTIONS(1384), + [aux_sym_cmd_identifier_token10] = ACTIONS(1386), + [aux_sym_cmd_identifier_token11] = ACTIONS(1386), + [aux_sym_cmd_identifier_token12] = ACTIONS(1386), + [aux_sym_cmd_identifier_token13] = ACTIONS(1384), + [aux_sym_cmd_identifier_token14] = ACTIONS(1386), + [aux_sym_cmd_identifier_token15] = ACTIONS(1384), + [aux_sym_cmd_identifier_token16] = ACTIONS(1386), + [aux_sym_cmd_identifier_token17] = ACTIONS(1386), + [aux_sym_cmd_identifier_token18] = ACTIONS(1384), + [aux_sym_cmd_identifier_token19] = ACTIONS(1386), + [aux_sym_cmd_identifier_token20] = ACTIONS(1386), + [aux_sym_cmd_identifier_token21] = ACTIONS(1386), + [aux_sym_cmd_identifier_token22] = ACTIONS(1386), + [aux_sym_cmd_identifier_token23] = ACTIONS(1386), + [aux_sym_cmd_identifier_token24] = ACTIONS(1386), + [aux_sym_cmd_identifier_token25] = ACTIONS(1386), + [aux_sym_cmd_identifier_token26] = ACTIONS(1386), + [aux_sym_cmd_identifier_token27] = ACTIONS(1386), + [aux_sym_cmd_identifier_token28] = ACTIONS(1386), + [aux_sym_cmd_identifier_token29] = ACTIONS(1386), + [aux_sym_cmd_identifier_token30] = ACTIONS(1386), + [aux_sym_cmd_identifier_token31] = ACTIONS(1386), + [aux_sym_cmd_identifier_token32] = ACTIONS(1384), + [aux_sym_cmd_identifier_token33] = ACTIONS(1386), + [aux_sym_cmd_identifier_token34] = ACTIONS(1384), + [aux_sym_cmd_identifier_token35] = ACTIONS(1386), + [aux_sym_cmd_identifier_token36] = ACTIONS(1386), + [aux_sym_cmd_identifier_token37] = ACTIONS(1386), + [aux_sym_cmd_identifier_token38] = ACTIONS(1384), + [aux_sym_cmd_identifier_token39] = ACTIONS(1386), + [aux_sym_cmd_identifier_token40] = ACTIONS(1386), + [sym__newline] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_err_GT_PIPE] = ACTIONS(1386), + [anon_sym_out_GT_PIPE] = ACTIONS(1386), + [anon_sym_e_GT_PIPE] = ACTIONS(1386), + [anon_sym_o_GT_PIPE] = ACTIONS(1386), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1386), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1386), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1386), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_DASH2] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_where] = ACTIONS(1386), + [aux_sym_expr_unary_token1] = ACTIONS(1386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), + [anon_sym_DOT_DOT_LT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1384), + [aux_sym__val_number_decimal_token2] = ACTIONS(1386), + [aux_sym__val_number_decimal_token3] = ACTIONS(1386), + [aux_sym__val_number_decimal_token4] = ACTIONS(1386), + [aux_sym__val_number_token1] = ACTIONS(1386), + [aux_sym__val_number_token2] = ACTIONS(1386), + [aux_sym__val_number_token3] = ACTIONS(1386), + [aux_sym__val_number_token4] = ACTIONS(1384), + [aux_sym__val_number_token5] = ACTIONS(1384), + [aux_sym__val_number_token6] = ACTIONS(1384), + [anon_sym_0b] = ACTIONS(1384), + [anon_sym_0o] = ACTIONS(1384), + [anon_sym_0x] = ACTIONS(1384), + [sym_val_date] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym__str_single_quotes] = ACTIONS(1386), + [sym__str_back_ticks] = ACTIONS(1386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1386), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1386), + [aux_sym_env_var_token1] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_ansigradient] = ACTIONS(1386), + [anon_sym_ansilink] = ACTIONS(1386), + [anon_sym_ansistrip] = ACTIONS(1386), + [anon_sym_bitsand] = ACTIONS(1386), + [anon_sym_bitsnot] = ACTIONS(1386), + [anon_sym_bitsor] = ACTIONS(1386), + [anon_sym_bitsrol] = ACTIONS(1386), + [anon_sym_bitsror] = ACTIONS(1386), + [anon_sym_bitsshl] = ACTIONS(1386), + [anon_sym_bitsshr] = ACTIONS(1386), + [anon_sym_bitsxor] = ACTIONS(1386), + [anon_sym_bytesadd] = ACTIONS(1386), + [anon_sym_bytesat] = ACTIONS(1386), + [anon_sym_bytesbuild] = ACTIONS(1386), + [anon_sym_bytescollect] = ACTIONS(1386), + [anon_sym_bytesends_DASHwith] = ACTIONS(1386), + [anon_sym_bytesindex_DASHof] = ACTIONS(1386), + [anon_sym_byteslength] = ACTIONS(1386), + [anon_sym_bytesremove] = ACTIONS(1386), + [anon_sym_bytesreplace] = ACTIONS(1386), + [anon_sym_bytesreverse] = ACTIONS(1386), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1386), + [anon_sym_commandlineedit] = ACTIONS(1386), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1386), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1386), + [anon_sym_configenv] = ACTIONS(1386), + [anon_sym_confignu] = ACTIONS(1386), + [anon_sym_configreset] = ACTIONS(1386), + [anon_sym_dateformat] = ACTIONS(1386), + [anon_sym_datehumanize] = ACTIONS(1386), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1386), + [anon_sym_datenow] = ACTIONS(1386), + [anon_sym_dateto_DASHrecord] = ACTIONS(1386), + [anon_sym_dateto_DASHtable] = ACTIONS(1386), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1386), + [anon_sym_debuginfo] = ACTIONS(1386), + [anon_sym_debugprofile] = ACTIONS(1386), + [anon_sym_decodebase32] = ACTIONS(1384), + [anon_sym_decodebase32hex] = ACTIONS(1386), + [anon_sym_decodebase64] = ACTIONS(1386), + [anon_sym_decodehex] = ACTIONS(1386), + [anon_sym_detectcolumns] = ACTIONS(1386), + [anon_sym_dropcolumn] = ACTIONS(1386), + [anon_sym_dropnth] = ACTIONS(1386), + [anon_sym_dtadd] = ACTIONS(1386), + [anon_sym_dtdiff] = ACTIONS(1386), + [anon_sym_dtformat] = ACTIONS(1386), + [anon_sym_dtnow] = ACTIONS(1386), + [anon_sym_dtpart] = ACTIONS(1386), + [anon_sym_dtto] = ACTIONS(1386), + [anon_sym_dtutcnow] = ACTIONS(1386), + [anon_sym_eachwhile] = ACTIONS(1386), + [anon_sym_encodebase32] = ACTIONS(1384), + [anon_sym_encodebase32hex] = ACTIONS(1386), + [anon_sym_encodebase64] = ACTIONS(1386), + [anon_sym_encodehex] = ACTIONS(1386), + [anon_sym_errormake] = ACTIONS(1386), + [anon_sym_exploreir] = ACTIONS(1386), + [anon_sym_formatdate] = ACTIONS(1386), + [anon_sym_formatduration] = ACTIONS(1386), + [anon_sym_formatfilesize] = ACTIONS(1386), + [anon_sym_formatpattern] = ACTIONS(1386), + [anon_sym_frombz2] = ACTIONS(1386), + [anon_sym_fromcsv] = ACTIONS(1386), + [anon_sym_fromeml] = ACTIONS(1386), + [anon_sym_fromgz] = ACTIONS(1386), + [anon_sym_fromics] = ACTIONS(1386), + [anon_sym_fromini] = ACTIONS(1386), + [anon_sym_fromjson] = ACTIONS(1386), + [anon_sym_frommsgpack] = ACTIONS(1384), + [anon_sym_frommsgpackz] = ACTIONS(1386), + [anon_sym_fromnuon] = ACTIONS(1386), + [anon_sym_fromods] = ACTIONS(1386), + [anon_sym_fromparquet] = ACTIONS(1386), + [anon_sym_fromplist] = ACTIONS(1386), + [anon_sym_frompng] = ACTIONS(1386), + [anon_sym_fromssv] = ACTIONS(1386), + [anon_sym_fromtoml] = ACTIONS(1386), + [anon_sym_fromtsv] = ACTIONS(1386), + [anon_sym_fromurl] = ACTIONS(1386), + [anon_sym_fromvcf] = ACTIONS(1386), + [anon_sym_fromxlsx] = ACTIONS(1386), + [anon_sym_fromxml] = ACTIONS(1386), + [anon_sym_fromxz] = ACTIONS(1386), + [anon_sym_fromyaml] = ACTIONS(1386), + [anon_sym_fromyml] = ACTIONS(1386), + [anon_sym_fromzst] = ACTIONS(1386), + [anon_sym_hashmd5] = ACTIONS(1386), + [anon_sym_hashsha256] = ACTIONS(1386), + [anon_sym_helpaliases] = ACTIONS(1386), + [anon_sym_helpcommands] = ACTIONS(1386), + [anon_sym_helpescapes] = ACTIONS(1386), + [anon_sym_helpexterns] = ACTIONS(1386), + [anon_sym_helpmodules] = ACTIONS(1386), + [anon_sym_helpoperators] = ACTIONS(1386), + [anon_sym_historyimport] = ACTIONS(1386), + [anon_sym_historysession] = ACTIONS(1386), + [anon_sym_httpdelete] = ACTIONS(1386), + [anon_sym_httpget] = ACTIONS(1386), + [anon_sym_httphead] = ACTIONS(1386), + [anon_sym_httpoptions] = ACTIONS(1386), + [anon_sym_httppatch] = ACTIONS(1386), + [anon_sym_httppost] = ACTIONS(1386), + [anon_sym_httpput] = ACTIONS(1386), + [anon_sym_inputlist] = ACTIONS(1384), + [anon_sym_inputlisten] = ACTIONS(1386), + [anon_sym_intobinary] = ACTIONS(1386), + [anon_sym_intobits] = ACTIONS(1386), + [anon_sym_intobool] = ACTIONS(1386), + [anon_sym_intocell_DASHpath] = ACTIONS(1386), + [anon_sym_intodatetime] = ACTIONS(1386), + [anon_sym_intoduration] = ACTIONS(1386), + [anon_sym_intofilesize] = ACTIONS(1386), + [anon_sym_intofloat] = ACTIONS(1386), + [anon_sym_intoglob] = ACTIONS(1386), + [anon_sym_intoint] = ACTIONS(1386), + [anon_sym_intorecord] = ACTIONS(1386), + [anon_sym_intosqlite] = ACTIONS(1386), + [anon_sym_intostring] = ACTIONS(1386), + [anon_sym_intovalue] = ACTIONS(1386), + [anon_sym_jsonpath] = ACTIONS(1386), + [anon_sym_keybindingsdefault] = ACTIONS(1386), + [anon_sym_keybindingslist] = ACTIONS(1384), + [anon_sym_keybindingslisten] = ACTIONS(1386), + [anon_sym_mathabs] = ACTIONS(1386), + [anon_sym_matharccos] = ACTIONS(1384), + [anon_sym_matharccosh] = ACTIONS(1386), + [anon_sym_matharcsin] = ACTIONS(1384), + [anon_sym_matharcsinh] = ACTIONS(1386), + [anon_sym_matharctan] = ACTIONS(1384), + [anon_sym_matharctanh] = ACTIONS(1386), + [anon_sym_mathavg] = ACTIONS(1386), + [anon_sym_mathceil] = ACTIONS(1386), + [anon_sym_mathcos] = ACTIONS(1384), + [anon_sym_mathcosh] = ACTIONS(1386), + [anon_sym_mathexp] = ACTIONS(1386), + [anon_sym_mathfloor] = ACTIONS(1386), + [anon_sym_mathln] = ACTIONS(1386), + [anon_sym_mathlog] = ACTIONS(1386), + [anon_sym_mathmax] = ACTIONS(1386), + [anon_sym_mathmedian] = ACTIONS(1386), + [anon_sym_mathmin] = ACTIONS(1386), + [anon_sym_mathmode] = ACTIONS(1386), + [anon_sym_mathproduct] = ACTIONS(1386), + [anon_sym_mathround] = ACTIONS(1386), + [anon_sym_mathsin] = ACTIONS(1384), + [anon_sym_mathsinh] = ACTIONS(1386), + [anon_sym_mathsqrt] = ACTIONS(1386), + [anon_sym_mathstddev] = ACTIONS(1386), + [anon_sym_mathsum] = ACTIONS(1386), + [anon_sym_mathtan] = ACTIONS(1384), + [anon_sym_mathtanh] = ACTIONS(1386), + [anon_sym_mathvariance] = ACTIONS(1386), + [anon_sym_metadataaccess] = ACTIONS(1386), + [anon_sym_metadataset] = ACTIONS(1386), + [anon_sym_pathbasename] = ACTIONS(1386), + [anon_sym_pathdirname] = ACTIONS(1386), + [anon_sym_pathexists] = ACTIONS(1386), + [anon_sym_pathexpand] = ACTIONS(1386), + [anon_sym_pathjoin] = ACTIONS(1386), + [anon_sym_pathparse] = ACTIONS(1386), + [anon_sym_pathrelative_DASHto] = ACTIONS(1386), + [anon_sym_pathsplit] = ACTIONS(1386), + [anon_sym_pathtype] = ACTIONS(1386), + [anon_sym_pluginadd] = ACTIONS(1386), + [anon_sym_pluginlist] = ACTIONS(1386), + [anon_sym_pluginrm] = ACTIONS(1386), + [anon_sym_pluginstop] = ACTIONS(1386), + [anon_sym_polarsagg] = ACTIONS(1384), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1386), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1386), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1386), + [anon_sym_polarsappend] = ACTIONS(1386), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1386), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1386), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1386), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1386), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1386), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1386), + [anon_sym_polarsas] = ACTIONS(1384), + [anon_sym_polarsas_DASHdate] = ACTIONS(1384), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1386), + [anon_sym_polarscache] = ACTIONS(1386), + [anon_sym_polarscast] = ACTIONS(1386), + [anon_sym_polarscol] = ACTIONS(1384), + [anon_sym_polarscollect] = ACTIONS(1386), + [anon_sym_polarscolumns] = ACTIONS(1386), + [anon_sym_polarsconcat] = ACTIONS(1384), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1386), + [anon_sym_polarscontains] = ACTIONS(1386), + [anon_sym_polarscount] = ACTIONS(1384), + [anon_sym_polarscount_DASHnull] = ACTIONS(1386), + [anon_sym_polarscumulative] = ACTIONS(1386), + [anon_sym_polarsdatepart] = ACTIONS(1386), + [anon_sym_polarsdecimal] = ACTIONS(1386), + [anon_sym_polarsdrop] = ACTIONS(1384), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1386), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1386), + [anon_sym_polarsdummies] = ACTIONS(1386), + [anon_sym_polarsexplode] = ACTIONS(1386), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1386), + [anon_sym_polarsfetch] = ACTIONS(1386), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1386), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1386), + [anon_sym_polarsfilter] = ACTIONS(1384), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1386), + [anon_sym_polarsfirst] = ACTIONS(1386), + [anon_sym_polarsflatten] = ACTIONS(1386), + [anon_sym_polarsget] = ACTIONS(1384), + [anon_sym_polarsget_DASHday] = ACTIONS(1386), + [anon_sym_polarsget_DASHhour] = ACTIONS(1386), + [anon_sym_polarsget_DASHminute] = ACTIONS(1386), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1386), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1386), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1386), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1386), + [anon_sym_polarsget_DASHweek] = ACTIONS(1384), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1386), + [anon_sym_polarsget_DASHyear] = ACTIONS(1386), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1386), + [anon_sym_polarsimplode] = ACTIONS(1386), + [anon_sym_polarsinteger] = ACTIONS(1386), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1386), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1386), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1386), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1386), + [anon_sym_polarsis_DASHin] = ACTIONS(1386), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1386), + [anon_sym_polarsis_DASHnull] = ACTIONS(1386), + [anon_sym_polarsis_DASHunique] = ACTIONS(1386), + [anon_sym_polarsjoin] = ACTIONS(1386), + [anon_sym_polarslast] = ACTIONS(1386), + [anon_sym_polarslen] = ACTIONS(1386), + [anon_sym_polarslit] = ACTIONS(1386), + [anon_sym_polarslowercase] = ACTIONS(1386), + [anon_sym_polarsmax] = ACTIONS(1386), + [anon_sym_polarsmean] = ACTIONS(1386), + [anon_sym_polarsmedian] = ACTIONS(1386), + [anon_sym_polarsmin] = ACTIONS(1386), + [anon_sym_polarsn_DASHunique] = ACTIONS(1386), + [anon_sym_polarsnot] = ACTIONS(1386), + [anon_sym_polarsopen] = ACTIONS(1386), + [anon_sym_polarsotherwise] = ACTIONS(1386), + [anon_sym_polarspivot] = ACTIONS(1386), + [anon_sym_polarsprofile] = ACTIONS(1386), + [anon_sym_polarsquantile] = ACTIONS(1386), + [anon_sym_polarsquery] = ACTIONS(1386), + [anon_sym_polarsrename] = ACTIONS(1386), + [anon_sym_polarsreplace] = ACTIONS(1384), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1386), + [anon_sym_polarsreverse] = ACTIONS(1386), + [anon_sym_polarsrolling] = ACTIONS(1386), + [anon_sym_polarssample] = ACTIONS(1386), + [anon_sym_polarssave] = ACTIONS(1386), + [anon_sym_polarsschema] = ACTIONS(1386), + [anon_sym_polarsselect] = ACTIONS(1386), + [anon_sym_polarsset] = ACTIONS(1384), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1386), + [anon_sym_polarsshape] = ACTIONS(1386), + [anon_sym_polarsshift] = ACTIONS(1386), + [anon_sym_polarsslice] = ACTIONS(1386), + [anon_sym_polarssort_DASHby] = ACTIONS(1386), + [anon_sym_polarsstd] = ACTIONS(1386), + [anon_sym_polarsstore_DASHget] = ACTIONS(1386), + [anon_sym_polarsstore_DASHls] = ACTIONS(1386), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1386), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1386), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1386), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1386), + [anon_sym_polarsstrftime] = ACTIONS(1386), + [anon_sym_polarssum] = ACTIONS(1384), + [anon_sym_polarssummary] = ACTIONS(1386), + [anon_sym_polarstake] = ACTIONS(1386), + [anon_sym_polarsunique] = ACTIONS(1386), + [anon_sym_polarsunnest] = ACTIONS(1386), + [anon_sym_polarsunpivot] = ACTIONS(1386), + [anon_sym_polarsuppercase] = ACTIONS(1386), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1386), + [anon_sym_polarsvar] = ACTIONS(1386), + [anon_sym_polarswhen] = ACTIONS(1386), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1386), + [anon_sym_querydb] = ACTIONS(1386), + [anon_sym_querygit] = ACTIONS(1386), + [anon_sym_queryjson] = ACTIONS(1386), + [anon_sym_queryweb] = ACTIONS(1384), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1386), + [anon_sym_queryxml] = ACTIONS(1386), + [anon_sym_randombinary] = ACTIONS(1386), + [anon_sym_randombool] = ACTIONS(1386), + [anon_sym_randomchars] = ACTIONS(1386), + [anon_sym_randomdice] = ACTIONS(1386), + [anon_sym_randomfloat] = ACTIONS(1386), + [anon_sym_randomint] = ACTIONS(1386), + [anon_sym_randomuuid] = ACTIONS(1386), + [anon_sym_rolldown] = ACTIONS(1386), + [anon_sym_rollleft] = ACTIONS(1386), + [anon_sym_rollright] = ACTIONS(1386), + [anon_sym_rollup] = ACTIONS(1386), + [anon_sym_scopealiases] = ACTIONS(1386), + [anon_sym_scopecommands] = ACTIONS(1386), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1386), + [anon_sym_scopeexterns] = ACTIONS(1386), + [anon_sym_scopemodules] = ACTIONS(1386), + [anon_sym_scopevariables] = ACTIONS(1386), + [anon_sym_seqchar] = ACTIONS(1386), + [anon_sym_seqdate] = ACTIONS(1386), + [anon_sym_skipuntil] = ACTIONS(1386), + [anon_sym_skipwhile] = ACTIONS(1386), + [anon_sym_splitcell_DASHpath] = ACTIONS(1386), + [anon_sym_splitchars] = ACTIONS(1386), + [anon_sym_splitcolumn] = ACTIONS(1386), + [anon_sym_splitlist] = ACTIONS(1386), + [anon_sym_splitrow] = ACTIONS(1386), + [anon_sym_splitwords] = ACTIONS(1386), + [anon_sym_storcreate] = ACTIONS(1386), + [anon_sym_stordelete] = ACTIONS(1386), + [anon_sym_storexport] = ACTIONS(1386), + [anon_sym_storimport] = ACTIONS(1386), + [anon_sym_storinsert] = ACTIONS(1386), + [anon_sym_storopen] = ACTIONS(1386), + [anon_sym_storreset] = ACTIONS(1386), + [anon_sym_storupdate] = ACTIONS(1386), + [anon_sym_strbexpand] = ACTIONS(1386), + [anon_sym_strcamel_DASHcase] = ACTIONS(1386), + [anon_sym_strcapitalize] = ACTIONS(1386), + [anon_sym_strcompress] = ACTIONS(1386), + [anon_sym_strcontains] = ACTIONS(1386), + [anon_sym_strdecompress] = ACTIONS(1386), + [anon_sym_strdedent] = ACTIONS(1386), + [anon_sym_strdeunicode] = ACTIONS(1386), + [anon_sym_strdistance] = ACTIONS(1386), + [anon_sym_strdowncase] = ACTIONS(1386), + [anon_sym_strends_DASHwith] = ACTIONS(1386), + [anon_sym_strexpand] = ACTIONS(1386), + [anon_sym_strindent] = ACTIONS(1386), + [anon_sym_strindex_DASHof] = ACTIONS(1386), + [anon_sym_strjoin] = ACTIONS(1386), + [anon_sym_strkebab_DASHcase] = ACTIONS(1386), + [anon_sym_strlength] = ACTIONS(1386), + [anon_sym_strpascal_DASHcase] = ACTIONS(1386), + [anon_sym_strreplace] = ACTIONS(1386), + [anon_sym_strreverse] = ACTIONS(1386), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1386), + [anon_sym_strsimilarity] = ACTIONS(1386), + [anon_sym_strsnake_DASHcase] = ACTIONS(1386), + [anon_sym_strstarts_DASHwith] = ACTIONS(1386), + [anon_sym_strstats] = ACTIONS(1386), + [anon_sym_strsubstring] = ACTIONS(1386), + [anon_sym_strtitle_DASHcase] = ACTIONS(1386), + [anon_sym_strtrim] = ACTIONS(1386), + [anon_sym_strupcase] = ACTIONS(1386), + [anon_sym_strwrap] = ACTIONS(1386), + [anon_sym_syscpu] = ACTIONS(1386), + [anon_sym_sysdisks] = ACTIONS(1386), + [anon_sym_syshost] = ACTIONS(1386), + [anon_sym_sysmem] = ACTIONS(1386), + [anon_sym_sysnet] = ACTIONS(1386), + [anon_sym_systemp] = ACTIONS(1386), + [anon_sym_sysusers] = ACTIONS(1386), + [anon_sym_takeuntil] = ACTIONS(1386), + [anon_sym_takewhile] = ACTIONS(1386), + [anon_sym_termquery] = ACTIONS(1386), + [anon_sym_termsize] = ACTIONS(1386), + [anon_sym_tobz2] = ACTIONS(1386), + [anon_sym_tocsv] = ACTIONS(1386), + [anon_sym_togz] = ACTIONS(1386), + [anon_sym_tohtml] = ACTIONS(1386), + [anon_sym_tojson] = ACTIONS(1386), + [anon_sym_tomd] = ACTIONS(1386), + [anon_sym_tomsgpack] = ACTIONS(1384), + [anon_sym_tomsgpackz] = ACTIONS(1386), + [anon_sym_tonuon] = ACTIONS(1386), + [anon_sym_toparquet] = ACTIONS(1386), + [anon_sym_toplist] = ACTIONS(1386), + [anon_sym_topng] = ACTIONS(1386), + [anon_sym_totext] = ACTIONS(1386), + [anon_sym_totoml] = ACTIONS(1386), + [anon_sym_totsv] = ACTIONS(1386), + [anon_sym_toxml] = ACTIONS(1386), + [anon_sym_toxz] = ACTIONS(1386), + [anon_sym_toyaml] = ACTIONS(1386), + [anon_sym_tozst] = ACTIONS(1386), + [anon_sym_updatecells] = ACTIONS(1386), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1386), + [anon_sym_urldecode] = ACTIONS(1386), + [anon_sym_urlencode] = ACTIONS(1386), + [anon_sym_urljoin] = ACTIONS(1386), + [anon_sym_urlparse] = ACTIONS(1386), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1386), + [anon_sym_viewfiles] = ACTIONS(1386), + [anon_sym_viewir] = ACTIONS(1386), + [anon_sym_viewsource] = ACTIONS(1386), + [anon_sym_viewspan] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1386), }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [aux_sym_cmd_identifier_token1] = ACTIONS(2122), - [aux_sym_cmd_identifier_token2] = ACTIONS(2122), - [aux_sym_cmd_identifier_token3] = ACTIONS(2122), - [aux_sym_cmd_identifier_token4] = ACTIONS(2122), - [aux_sym_cmd_identifier_token5] = ACTIONS(2122), - [aux_sym_cmd_identifier_token6] = ACTIONS(2122), - [aux_sym_cmd_identifier_token7] = ACTIONS(2122), - [aux_sym_cmd_identifier_token8] = ACTIONS(2122), - [aux_sym_cmd_identifier_token9] = ACTIONS(2122), - [aux_sym_cmd_identifier_token10] = ACTIONS(2122), - [aux_sym_cmd_identifier_token11] = ACTIONS(2122), - [aux_sym_cmd_identifier_token12] = ACTIONS(2122), - [aux_sym_cmd_identifier_token13] = ACTIONS(2122), - [aux_sym_cmd_identifier_token14] = ACTIONS(2122), - [aux_sym_cmd_identifier_token15] = ACTIONS(2122), - [aux_sym_cmd_identifier_token16] = ACTIONS(2122), - [aux_sym_cmd_identifier_token17] = ACTIONS(2122), - [aux_sym_cmd_identifier_token18] = ACTIONS(2122), - [aux_sym_cmd_identifier_token19] = ACTIONS(2122), - [aux_sym_cmd_identifier_token20] = ACTIONS(2122), - [aux_sym_cmd_identifier_token21] = ACTIONS(2122), - [aux_sym_cmd_identifier_token22] = ACTIONS(2122), - [aux_sym_cmd_identifier_token23] = ACTIONS(2122), - [aux_sym_cmd_identifier_token24] = ACTIONS(2122), - [aux_sym_cmd_identifier_token25] = ACTIONS(2122), - [aux_sym_cmd_identifier_token26] = ACTIONS(2122), - [aux_sym_cmd_identifier_token27] = ACTIONS(2122), - [aux_sym_cmd_identifier_token28] = ACTIONS(2122), - [aux_sym_cmd_identifier_token29] = ACTIONS(2122), - [aux_sym_cmd_identifier_token30] = ACTIONS(2122), - [aux_sym_cmd_identifier_token31] = ACTIONS(2122), - [aux_sym_cmd_identifier_token32] = ACTIONS(2122), - [aux_sym_cmd_identifier_token33] = ACTIONS(2122), - [aux_sym_cmd_identifier_token34] = ACTIONS(2122), - [aux_sym_cmd_identifier_token35] = ACTIONS(2122), - [aux_sym_cmd_identifier_token36] = ACTIONS(2122), - [aux_sym_cmd_identifier_token37] = ACTIONS(2122), - [aux_sym_cmd_identifier_token38] = ACTIONS(2122), - [aux_sym_cmd_identifier_token39] = ACTIONS(2122), - [aux_sym_cmd_identifier_token40] = ACTIONS(2122), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_in2] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_make] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), - [sym__entry_separator] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2128), + [311] = { + [sym_comment] = STATE(311), + [aux_sym_cmd_identifier_token1] = ACTIONS(1417), + [aux_sym_cmd_identifier_token2] = ACTIONS(1419), + [aux_sym_cmd_identifier_token3] = ACTIONS(1419), + [aux_sym_cmd_identifier_token4] = ACTIONS(1419), + [aux_sym_cmd_identifier_token5] = ACTIONS(1419), + [aux_sym_cmd_identifier_token6] = ACTIONS(1419), + [aux_sym_cmd_identifier_token7] = ACTIONS(1419), + [aux_sym_cmd_identifier_token8] = ACTIONS(1419), + [aux_sym_cmd_identifier_token9] = ACTIONS(1417), + [aux_sym_cmd_identifier_token10] = ACTIONS(1419), + [aux_sym_cmd_identifier_token11] = ACTIONS(1419), + [aux_sym_cmd_identifier_token12] = ACTIONS(1419), + [aux_sym_cmd_identifier_token13] = ACTIONS(1417), + [aux_sym_cmd_identifier_token14] = ACTIONS(1419), + [aux_sym_cmd_identifier_token15] = ACTIONS(1417), + [aux_sym_cmd_identifier_token16] = ACTIONS(1419), + [aux_sym_cmd_identifier_token17] = ACTIONS(1419), + [aux_sym_cmd_identifier_token18] = ACTIONS(1417), + [aux_sym_cmd_identifier_token19] = ACTIONS(1419), + [aux_sym_cmd_identifier_token20] = ACTIONS(1419), + [aux_sym_cmd_identifier_token21] = ACTIONS(1419), + [aux_sym_cmd_identifier_token22] = ACTIONS(1419), + [aux_sym_cmd_identifier_token23] = ACTIONS(1419), + [aux_sym_cmd_identifier_token24] = ACTIONS(1419), + [aux_sym_cmd_identifier_token25] = ACTIONS(1419), + [aux_sym_cmd_identifier_token26] = ACTIONS(1419), + [aux_sym_cmd_identifier_token27] = ACTIONS(1419), + [aux_sym_cmd_identifier_token28] = ACTIONS(1419), + [aux_sym_cmd_identifier_token29] = ACTIONS(1419), + [aux_sym_cmd_identifier_token30] = ACTIONS(1419), + [aux_sym_cmd_identifier_token31] = ACTIONS(1419), + [aux_sym_cmd_identifier_token32] = ACTIONS(1417), + [aux_sym_cmd_identifier_token33] = ACTIONS(1419), + [aux_sym_cmd_identifier_token34] = ACTIONS(1417), + [aux_sym_cmd_identifier_token35] = ACTIONS(1419), + [aux_sym_cmd_identifier_token36] = ACTIONS(1419), + [aux_sym_cmd_identifier_token37] = ACTIONS(1419), + [aux_sym_cmd_identifier_token38] = ACTIONS(1417), + [aux_sym_cmd_identifier_token39] = ACTIONS(1419), + [aux_sym_cmd_identifier_token40] = ACTIONS(1419), + [sym__newline] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_err_GT_PIPE] = ACTIONS(1244), + [anon_sym_out_GT_PIPE] = ACTIONS(1244), + [anon_sym_e_GT_PIPE] = ACTIONS(1244), + [anon_sym_o_GT_PIPE] = ACTIONS(1244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DASH2] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_try] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_where] = ACTIONS(1419), + [aux_sym_expr_unary_token1] = ACTIONS(1419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), + [anon_sym_DOT_DOT_LT] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [aux_sym__val_number_decimal_token1] = ACTIONS(1417), + [aux_sym__val_number_decimal_token2] = ACTIONS(1419), + [aux_sym__val_number_decimal_token3] = ACTIONS(1419), + [aux_sym__val_number_decimal_token4] = ACTIONS(1419), + [aux_sym__val_number_token1] = ACTIONS(1419), + [aux_sym__val_number_token2] = ACTIONS(1419), + [aux_sym__val_number_token3] = ACTIONS(1419), + [aux_sym__val_number_token4] = ACTIONS(1417), + [aux_sym__val_number_token5] = ACTIONS(1417), + [aux_sym__val_number_token6] = ACTIONS(1417), + [anon_sym_0b] = ACTIONS(1417), + [anon_sym_0o] = ACTIONS(1417), + [anon_sym_0x] = ACTIONS(1417), + [sym_val_date] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [sym__str_single_quotes] = ACTIONS(1419), + [sym__str_back_ticks] = ACTIONS(1419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), + [aux_sym_env_var_token1] = ACTIONS(1417), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_ansigradient] = ACTIONS(1419), + [anon_sym_ansilink] = ACTIONS(1419), + [anon_sym_ansistrip] = ACTIONS(1419), + [anon_sym_bitsand] = ACTIONS(1419), + [anon_sym_bitsnot] = ACTIONS(1419), + [anon_sym_bitsor] = ACTIONS(1419), + [anon_sym_bitsrol] = ACTIONS(1419), + [anon_sym_bitsror] = ACTIONS(1419), + [anon_sym_bitsshl] = ACTIONS(1419), + [anon_sym_bitsshr] = ACTIONS(1419), + [anon_sym_bitsxor] = ACTIONS(1419), + [anon_sym_bytesadd] = ACTIONS(1419), + [anon_sym_bytesat] = ACTIONS(1419), + [anon_sym_bytesbuild] = ACTIONS(1419), + [anon_sym_bytescollect] = ACTIONS(1419), + [anon_sym_bytesends_DASHwith] = ACTIONS(1419), + [anon_sym_bytesindex_DASHof] = ACTIONS(1419), + [anon_sym_byteslength] = ACTIONS(1419), + [anon_sym_bytesremove] = ACTIONS(1419), + [anon_sym_bytesreplace] = ACTIONS(1419), + [anon_sym_bytesreverse] = ACTIONS(1419), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1419), + [anon_sym_commandlineedit] = ACTIONS(1419), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1419), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1419), + [anon_sym_configenv] = ACTIONS(1419), + [anon_sym_confignu] = ACTIONS(1419), + [anon_sym_configreset] = ACTIONS(1419), + [anon_sym_dateformat] = ACTIONS(1419), + [anon_sym_datehumanize] = ACTIONS(1419), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1419), + [anon_sym_datenow] = ACTIONS(1419), + [anon_sym_dateto_DASHrecord] = ACTIONS(1419), + [anon_sym_dateto_DASHtable] = ACTIONS(1419), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1419), + [anon_sym_debuginfo] = ACTIONS(1419), + [anon_sym_debugprofile] = ACTIONS(1419), + [anon_sym_decodebase32] = ACTIONS(1417), + [anon_sym_decodebase32hex] = ACTIONS(1419), + [anon_sym_decodebase64] = ACTIONS(1419), + [anon_sym_decodehex] = ACTIONS(1419), + [anon_sym_detectcolumns] = ACTIONS(1419), + [anon_sym_dropcolumn] = ACTIONS(1419), + [anon_sym_dropnth] = ACTIONS(1419), + [anon_sym_dtadd] = ACTIONS(1419), + [anon_sym_dtdiff] = ACTIONS(1419), + [anon_sym_dtformat] = ACTIONS(1419), + [anon_sym_dtnow] = ACTIONS(1419), + [anon_sym_dtpart] = ACTIONS(1419), + [anon_sym_dtto] = ACTIONS(1419), + [anon_sym_dtutcnow] = ACTIONS(1419), + [anon_sym_eachwhile] = ACTIONS(1419), + [anon_sym_encodebase32] = ACTIONS(1417), + [anon_sym_encodebase32hex] = ACTIONS(1419), + [anon_sym_encodebase64] = ACTIONS(1419), + [anon_sym_encodehex] = ACTIONS(1419), + [anon_sym_errormake] = ACTIONS(1419), + [anon_sym_exploreir] = ACTIONS(1419), + [anon_sym_formatdate] = ACTIONS(1419), + [anon_sym_formatduration] = ACTIONS(1419), + [anon_sym_formatfilesize] = ACTIONS(1419), + [anon_sym_formatpattern] = ACTIONS(1419), + [anon_sym_frombz2] = ACTIONS(1419), + [anon_sym_fromcsv] = ACTIONS(1419), + [anon_sym_fromeml] = ACTIONS(1419), + [anon_sym_fromgz] = ACTIONS(1419), + [anon_sym_fromics] = ACTIONS(1419), + [anon_sym_fromini] = ACTIONS(1419), + [anon_sym_fromjson] = ACTIONS(1419), + [anon_sym_frommsgpack] = ACTIONS(1417), + [anon_sym_frommsgpackz] = ACTIONS(1419), + [anon_sym_fromnuon] = ACTIONS(1419), + [anon_sym_fromods] = ACTIONS(1419), + [anon_sym_fromparquet] = ACTIONS(1419), + [anon_sym_fromplist] = ACTIONS(1419), + [anon_sym_frompng] = ACTIONS(1419), + [anon_sym_fromssv] = ACTIONS(1419), + [anon_sym_fromtoml] = ACTIONS(1419), + [anon_sym_fromtsv] = ACTIONS(1419), + [anon_sym_fromurl] = ACTIONS(1419), + [anon_sym_fromvcf] = ACTIONS(1419), + [anon_sym_fromxlsx] = ACTIONS(1419), + [anon_sym_fromxml] = ACTIONS(1419), + [anon_sym_fromxz] = ACTIONS(1419), + [anon_sym_fromyaml] = ACTIONS(1419), + [anon_sym_fromyml] = ACTIONS(1419), + [anon_sym_fromzst] = ACTIONS(1419), + [anon_sym_hashmd5] = ACTIONS(1419), + [anon_sym_hashsha256] = ACTIONS(1419), + [anon_sym_helpaliases] = ACTIONS(1419), + [anon_sym_helpcommands] = ACTIONS(1419), + [anon_sym_helpescapes] = ACTIONS(1419), + [anon_sym_helpexterns] = ACTIONS(1419), + [anon_sym_helpmodules] = ACTIONS(1419), + [anon_sym_helpoperators] = ACTIONS(1419), + [anon_sym_historyimport] = ACTIONS(1419), + [anon_sym_historysession] = ACTIONS(1419), + [anon_sym_httpdelete] = ACTIONS(1419), + [anon_sym_httpget] = ACTIONS(1419), + [anon_sym_httphead] = ACTIONS(1419), + [anon_sym_httpoptions] = ACTIONS(1419), + [anon_sym_httppatch] = ACTIONS(1419), + [anon_sym_httppost] = ACTIONS(1419), + [anon_sym_httpput] = ACTIONS(1419), + [anon_sym_inputlist] = ACTIONS(1417), + [anon_sym_inputlisten] = ACTIONS(1419), + [anon_sym_intobinary] = ACTIONS(1419), + [anon_sym_intobits] = ACTIONS(1419), + [anon_sym_intobool] = ACTIONS(1419), + [anon_sym_intocell_DASHpath] = ACTIONS(1419), + [anon_sym_intodatetime] = ACTIONS(1419), + [anon_sym_intoduration] = ACTIONS(1419), + [anon_sym_intofilesize] = ACTIONS(1419), + [anon_sym_intofloat] = ACTIONS(1419), + [anon_sym_intoglob] = ACTIONS(1419), + [anon_sym_intoint] = ACTIONS(1419), + [anon_sym_intorecord] = ACTIONS(1419), + [anon_sym_intosqlite] = ACTIONS(1419), + [anon_sym_intostring] = ACTIONS(1419), + [anon_sym_intovalue] = ACTIONS(1419), + [anon_sym_jsonpath] = ACTIONS(1419), + [anon_sym_keybindingsdefault] = ACTIONS(1419), + [anon_sym_keybindingslist] = ACTIONS(1417), + [anon_sym_keybindingslisten] = ACTIONS(1419), + [anon_sym_mathabs] = ACTIONS(1419), + [anon_sym_matharccos] = ACTIONS(1417), + [anon_sym_matharccosh] = ACTIONS(1419), + [anon_sym_matharcsin] = ACTIONS(1417), + [anon_sym_matharcsinh] = ACTIONS(1419), + [anon_sym_matharctan] = ACTIONS(1417), + [anon_sym_matharctanh] = ACTIONS(1419), + [anon_sym_mathavg] = ACTIONS(1419), + [anon_sym_mathceil] = ACTIONS(1419), + [anon_sym_mathcos] = ACTIONS(1417), + [anon_sym_mathcosh] = ACTIONS(1419), + [anon_sym_mathexp] = ACTIONS(1419), + [anon_sym_mathfloor] = ACTIONS(1419), + [anon_sym_mathln] = ACTIONS(1419), + [anon_sym_mathlog] = ACTIONS(1419), + [anon_sym_mathmax] = ACTIONS(1419), + [anon_sym_mathmedian] = ACTIONS(1419), + [anon_sym_mathmin] = ACTIONS(1419), + [anon_sym_mathmode] = ACTIONS(1419), + [anon_sym_mathproduct] = ACTIONS(1419), + [anon_sym_mathround] = ACTIONS(1419), + [anon_sym_mathsin] = ACTIONS(1417), + [anon_sym_mathsinh] = ACTIONS(1419), + [anon_sym_mathsqrt] = ACTIONS(1419), + [anon_sym_mathstddev] = ACTIONS(1419), + [anon_sym_mathsum] = ACTIONS(1419), + [anon_sym_mathtan] = ACTIONS(1417), + [anon_sym_mathtanh] = ACTIONS(1419), + [anon_sym_mathvariance] = ACTIONS(1419), + [anon_sym_metadataaccess] = ACTIONS(1419), + [anon_sym_metadataset] = ACTIONS(1419), + [anon_sym_pathbasename] = ACTIONS(1419), + [anon_sym_pathdirname] = ACTIONS(1419), + [anon_sym_pathexists] = ACTIONS(1419), + [anon_sym_pathexpand] = ACTIONS(1419), + [anon_sym_pathjoin] = ACTIONS(1419), + [anon_sym_pathparse] = ACTIONS(1419), + [anon_sym_pathrelative_DASHto] = ACTIONS(1419), + [anon_sym_pathsplit] = ACTIONS(1419), + [anon_sym_pathtype] = ACTIONS(1419), + [anon_sym_pluginadd] = ACTIONS(1419), + [anon_sym_pluginlist] = ACTIONS(1419), + [anon_sym_pluginrm] = ACTIONS(1419), + [anon_sym_pluginstop] = ACTIONS(1419), + [anon_sym_polarsagg] = ACTIONS(1417), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1419), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1419), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1419), + [anon_sym_polarsappend] = ACTIONS(1419), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1419), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1419), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1419), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1419), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1419), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1419), + [anon_sym_polarsas] = ACTIONS(1417), + [anon_sym_polarsas_DASHdate] = ACTIONS(1417), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1419), + [anon_sym_polarscache] = ACTIONS(1419), + [anon_sym_polarscast] = ACTIONS(1419), + [anon_sym_polarscol] = ACTIONS(1417), + [anon_sym_polarscollect] = ACTIONS(1419), + [anon_sym_polarscolumns] = ACTIONS(1419), + [anon_sym_polarsconcat] = ACTIONS(1417), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1419), + [anon_sym_polarscontains] = ACTIONS(1419), + [anon_sym_polarscount] = ACTIONS(1417), + [anon_sym_polarscount_DASHnull] = ACTIONS(1419), + [anon_sym_polarscumulative] = ACTIONS(1419), + [anon_sym_polarsdatepart] = ACTIONS(1419), + [anon_sym_polarsdecimal] = ACTIONS(1419), + [anon_sym_polarsdrop] = ACTIONS(1417), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1419), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1419), + [anon_sym_polarsdummies] = ACTIONS(1419), + [anon_sym_polarsexplode] = ACTIONS(1419), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1419), + [anon_sym_polarsfetch] = ACTIONS(1419), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1419), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1419), + [anon_sym_polarsfilter] = ACTIONS(1417), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1419), + [anon_sym_polarsfirst] = ACTIONS(1419), + [anon_sym_polarsflatten] = ACTIONS(1419), + [anon_sym_polarsget] = ACTIONS(1417), + [anon_sym_polarsget_DASHday] = ACTIONS(1419), + [anon_sym_polarsget_DASHhour] = ACTIONS(1419), + [anon_sym_polarsget_DASHminute] = ACTIONS(1419), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1419), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1419), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1419), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1419), + [anon_sym_polarsget_DASHweek] = ACTIONS(1417), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1419), + [anon_sym_polarsget_DASHyear] = ACTIONS(1419), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1419), + [anon_sym_polarsimplode] = ACTIONS(1419), + [anon_sym_polarsinteger] = ACTIONS(1419), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1419), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1419), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1419), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1419), + [anon_sym_polarsis_DASHin] = ACTIONS(1419), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1419), + [anon_sym_polarsis_DASHnull] = ACTIONS(1419), + [anon_sym_polarsis_DASHunique] = ACTIONS(1419), + [anon_sym_polarsjoin] = ACTIONS(1419), + [anon_sym_polarslast] = ACTIONS(1419), + [anon_sym_polarslen] = ACTIONS(1419), + [anon_sym_polarslit] = ACTIONS(1419), + [anon_sym_polarslowercase] = ACTIONS(1419), + [anon_sym_polarsmax] = ACTIONS(1419), + [anon_sym_polarsmean] = ACTIONS(1419), + [anon_sym_polarsmedian] = ACTIONS(1419), + [anon_sym_polarsmin] = ACTIONS(1419), + [anon_sym_polarsn_DASHunique] = ACTIONS(1419), + [anon_sym_polarsnot] = ACTIONS(1419), + [anon_sym_polarsopen] = ACTIONS(1419), + [anon_sym_polarsotherwise] = ACTIONS(1419), + [anon_sym_polarspivot] = ACTIONS(1419), + [anon_sym_polarsprofile] = ACTIONS(1419), + [anon_sym_polarsquantile] = ACTIONS(1419), + [anon_sym_polarsquery] = ACTIONS(1419), + [anon_sym_polarsrename] = ACTIONS(1419), + [anon_sym_polarsreplace] = ACTIONS(1417), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1419), + [anon_sym_polarsreverse] = ACTIONS(1419), + [anon_sym_polarsrolling] = ACTIONS(1419), + [anon_sym_polarssample] = ACTIONS(1419), + [anon_sym_polarssave] = ACTIONS(1419), + [anon_sym_polarsschema] = ACTIONS(1419), + [anon_sym_polarsselect] = ACTIONS(1419), + [anon_sym_polarsset] = ACTIONS(1417), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1419), + [anon_sym_polarsshape] = ACTIONS(1419), + [anon_sym_polarsshift] = ACTIONS(1419), + [anon_sym_polarsslice] = ACTIONS(1419), + [anon_sym_polarssort_DASHby] = ACTIONS(1419), + [anon_sym_polarsstd] = ACTIONS(1419), + [anon_sym_polarsstore_DASHget] = ACTIONS(1419), + [anon_sym_polarsstore_DASHls] = ACTIONS(1419), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1419), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1419), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1419), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1419), + [anon_sym_polarsstrftime] = ACTIONS(1419), + [anon_sym_polarssum] = ACTIONS(1417), + [anon_sym_polarssummary] = ACTIONS(1419), + [anon_sym_polarstake] = ACTIONS(1419), + [anon_sym_polarsunique] = ACTIONS(1419), + [anon_sym_polarsunnest] = ACTIONS(1419), + [anon_sym_polarsunpivot] = ACTIONS(1419), + [anon_sym_polarsuppercase] = ACTIONS(1419), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1419), + [anon_sym_polarsvar] = ACTIONS(1419), + [anon_sym_polarswhen] = ACTIONS(1419), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1419), + [anon_sym_querydb] = ACTIONS(1419), + [anon_sym_querygit] = ACTIONS(1419), + [anon_sym_queryjson] = ACTIONS(1419), + [anon_sym_queryweb] = ACTIONS(1417), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1419), + [anon_sym_queryxml] = ACTIONS(1419), + [anon_sym_randombinary] = ACTIONS(1419), + [anon_sym_randombool] = ACTIONS(1419), + [anon_sym_randomchars] = ACTIONS(1419), + [anon_sym_randomdice] = ACTIONS(1419), + [anon_sym_randomfloat] = ACTIONS(1419), + [anon_sym_randomint] = ACTIONS(1419), + [anon_sym_randomuuid] = ACTIONS(1419), + [anon_sym_rolldown] = ACTIONS(1419), + [anon_sym_rollleft] = ACTIONS(1419), + [anon_sym_rollright] = ACTIONS(1419), + [anon_sym_rollup] = ACTIONS(1419), + [anon_sym_scopealiases] = ACTIONS(1419), + [anon_sym_scopecommands] = ACTIONS(1419), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1419), + [anon_sym_scopeexterns] = ACTIONS(1419), + [anon_sym_scopemodules] = ACTIONS(1419), + [anon_sym_scopevariables] = ACTIONS(1419), + [anon_sym_seqchar] = ACTIONS(1419), + [anon_sym_seqdate] = ACTIONS(1419), + [anon_sym_skipuntil] = ACTIONS(1419), + [anon_sym_skipwhile] = ACTIONS(1419), + [anon_sym_splitcell_DASHpath] = ACTIONS(1419), + [anon_sym_splitchars] = ACTIONS(1419), + [anon_sym_splitcolumn] = ACTIONS(1419), + [anon_sym_splitlist] = ACTIONS(1419), + [anon_sym_splitrow] = ACTIONS(1419), + [anon_sym_splitwords] = ACTIONS(1419), + [anon_sym_storcreate] = ACTIONS(1419), + [anon_sym_stordelete] = ACTIONS(1419), + [anon_sym_storexport] = ACTIONS(1419), + [anon_sym_storimport] = ACTIONS(1419), + [anon_sym_storinsert] = ACTIONS(1419), + [anon_sym_storopen] = ACTIONS(1419), + [anon_sym_storreset] = ACTIONS(1419), + [anon_sym_storupdate] = ACTIONS(1419), + [anon_sym_strbexpand] = ACTIONS(1419), + [anon_sym_strcamel_DASHcase] = ACTIONS(1419), + [anon_sym_strcapitalize] = ACTIONS(1419), + [anon_sym_strcompress] = ACTIONS(1419), + [anon_sym_strcontains] = ACTIONS(1419), + [anon_sym_strdecompress] = ACTIONS(1419), + [anon_sym_strdedent] = ACTIONS(1419), + [anon_sym_strdeunicode] = ACTIONS(1419), + [anon_sym_strdistance] = ACTIONS(1419), + [anon_sym_strdowncase] = ACTIONS(1419), + [anon_sym_strends_DASHwith] = ACTIONS(1419), + [anon_sym_strexpand] = ACTIONS(1419), + [anon_sym_strindent] = ACTIONS(1419), + [anon_sym_strindex_DASHof] = ACTIONS(1419), + [anon_sym_strjoin] = ACTIONS(1419), + [anon_sym_strkebab_DASHcase] = ACTIONS(1419), + [anon_sym_strlength] = ACTIONS(1419), + [anon_sym_strpascal_DASHcase] = ACTIONS(1419), + [anon_sym_strreplace] = ACTIONS(1419), + [anon_sym_strreverse] = ACTIONS(1419), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1419), + [anon_sym_strsimilarity] = ACTIONS(1419), + [anon_sym_strsnake_DASHcase] = ACTIONS(1419), + [anon_sym_strstarts_DASHwith] = ACTIONS(1419), + [anon_sym_strstats] = ACTIONS(1419), + [anon_sym_strsubstring] = ACTIONS(1419), + [anon_sym_strtitle_DASHcase] = ACTIONS(1419), + [anon_sym_strtrim] = ACTIONS(1419), + [anon_sym_strupcase] = ACTIONS(1419), + [anon_sym_strwrap] = ACTIONS(1419), + [anon_sym_syscpu] = ACTIONS(1419), + [anon_sym_sysdisks] = ACTIONS(1419), + [anon_sym_syshost] = ACTIONS(1419), + [anon_sym_sysmem] = ACTIONS(1419), + [anon_sym_sysnet] = ACTIONS(1419), + [anon_sym_systemp] = ACTIONS(1419), + [anon_sym_sysusers] = ACTIONS(1419), + [anon_sym_takeuntil] = ACTIONS(1419), + [anon_sym_takewhile] = ACTIONS(1419), + [anon_sym_termquery] = ACTIONS(1419), + [anon_sym_termsize] = ACTIONS(1419), + [anon_sym_tobz2] = ACTIONS(1419), + [anon_sym_tocsv] = ACTIONS(1419), + [anon_sym_togz] = ACTIONS(1419), + [anon_sym_tohtml] = ACTIONS(1419), + [anon_sym_tojson] = ACTIONS(1419), + [anon_sym_tomd] = ACTIONS(1419), + [anon_sym_tomsgpack] = ACTIONS(1417), + [anon_sym_tomsgpackz] = ACTIONS(1419), + [anon_sym_tonuon] = ACTIONS(1419), + [anon_sym_toparquet] = ACTIONS(1419), + [anon_sym_toplist] = ACTIONS(1419), + [anon_sym_topng] = ACTIONS(1419), + [anon_sym_totext] = ACTIONS(1419), + [anon_sym_totoml] = ACTIONS(1419), + [anon_sym_totsv] = ACTIONS(1419), + [anon_sym_toxml] = ACTIONS(1419), + [anon_sym_toxz] = ACTIONS(1419), + [anon_sym_toyaml] = ACTIONS(1419), + [anon_sym_tozst] = ACTIONS(1419), + [anon_sym_updatecells] = ACTIONS(1419), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1419), + [anon_sym_urldecode] = ACTIONS(1419), + [anon_sym_urlencode] = ACTIONS(1419), + [anon_sym_urljoin] = ACTIONS(1419), + [anon_sym_urlparse] = ACTIONS(1419), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1419), + [anon_sym_viewfiles] = ACTIONS(1419), + [anon_sym_viewir] = ACTIONS(1419), + [anon_sym_viewsource] = ACTIONS(1419), + [anon_sym_viewspan] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1419), }, - [483] = { - [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [aux_sym_cmd_identifier_token2] = ACTIONS(2130), - [aux_sym_cmd_identifier_token3] = ACTIONS(2130), - [aux_sym_cmd_identifier_token4] = ACTIONS(2130), - [aux_sym_cmd_identifier_token5] = ACTIONS(2130), - [aux_sym_cmd_identifier_token6] = ACTIONS(2130), - [aux_sym_cmd_identifier_token7] = ACTIONS(2130), - [aux_sym_cmd_identifier_token8] = ACTIONS(2130), - [aux_sym_cmd_identifier_token9] = ACTIONS(2130), - [aux_sym_cmd_identifier_token10] = ACTIONS(2130), - [aux_sym_cmd_identifier_token11] = ACTIONS(2130), - [aux_sym_cmd_identifier_token12] = ACTIONS(2130), - [aux_sym_cmd_identifier_token13] = ACTIONS(2130), - [aux_sym_cmd_identifier_token14] = ACTIONS(2130), - [aux_sym_cmd_identifier_token15] = ACTIONS(2130), - [aux_sym_cmd_identifier_token16] = ACTIONS(2130), - [aux_sym_cmd_identifier_token17] = ACTIONS(2130), - [aux_sym_cmd_identifier_token18] = ACTIONS(2130), - [aux_sym_cmd_identifier_token19] = ACTIONS(2130), - [aux_sym_cmd_identifier_token20] = ACTIONS(2130), - [aux_sym_cmd_identifier_token21] = ACTIONS(2130), - [aux_sym_cmd_identifier_token22] = ACTIONS(2130), - [aux_sym_cmd_identifier_token23] = ACTIONS(2130), - [aux_sym_cmd_identifier_token24] = ACTIONS(2130), - [aux_sym_cmd_identifier_token25] = ACTIONS(2130), - [aux_sym_cmd_identifier_token26] = ACTIONS(2130), - [aux_sym_cmd_identifier_token27] = ACTIONS(2130), - [aux_sym_cmd_identifier_token28] = ACTIONS(2130), - [aux_sym_cmd_identifier_token29] = ACTIONS(2130), - [aux_sym_cmd_identifier_token30] = ACTIONS(2130), - [aux_sym_cmd_identifier_token31] = ACTIONS(2130), - [aux_sym_cmd_identifier_token32] = ACTIONS(2130), - [aux_sym_cmd_identifier_token33] = ACTIONS(2130), - [aux_sym_cmd_identifier_token34] = ACTIONS(2130), - [aux_sym_cmd_identifier_token35] = ACTIONS(2130), - [aux_sym_cmd_identifier_token36] = ACTIONS(2130), - [aux_sym_cmd_identifier_token37] = ACTIONS(2130), - [aux_sym_cmd_identifier_token38] = ACTIONS(2130), - [aux_sym_cmd_identifier_token39] = ACTIONS(2130), - [aux_sym_cmd_identifier_token40] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_in2] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_make] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_as] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), - [anon_sym_DOT_DOT2] = ACTIONS(2132), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2134), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2134), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2130), - [aux_sym__val_number_decimal_token3] = ACTIONS(2130), - [aux_sym__val_number_decimal_token4] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), - [sym__entry_separator] = ACTIONS(2136), + [312] = { + [sym_comment] = STATE(312), + [aux_sym_cmd_identifier_token1] = ACTIONS(1421), + [aux_sym_cmd_identifier_token2] = ACTIONS(1423), + [aux_sym_cmd_identifier_token3] = ACTIONS(1423), + [aux_sym_cmd_identifier_token4] = ACTIONS(1423), + [aux_sym_cmd_identifier_token5] = ACTIONS(1423), + [aux_sym_cmd_identifier_token6] = ACTIONS(1423), + [aux_sym_cmd_identifier_token7] = ACTIONS(1423), + [aux_sym_cmd_identifier_token8] = ACTIONS(1423), + [aux_sym_cmd_identifier_token9] = ACTIONS(1421), + [aux_sym_cmd_identifier_token10] = ACTIONS(1423), + [aux_sym_cmd_identifier_token11] = ACTIONS(1423), + [aux_sym_cmd_identifier_token12] = ACTIONS(1423), + [aux_sym_cmd_identifier_token13] = ACTIONS(1421), + [aux_sym_cmd_identifier_token14] = ACTIONS(1423), + [aux_sym_cmd_identifier_token15] = ACTIONS(1421), + [aux_sym_cmd_identifier_token16] = ACTIONS(1423), + [aux_sym_cmd_identifier_token17] = ACTIONS(1423), + [aux_sym_cmd_identifier_token18] = ACTIONS(1421), + [aux_sym_cmd_identifier_token19] = ACTIONS(1423), + [aux_sym_cmd_identifier_token20] = ACTIONS(1423), + [aux_sym_cmd_identifier_token21] = ACTIONS(1423), + [aux_sym_cmd_identifier_token22] = ACTIONS(1423), + [aux_sym_cmd_identifier_token23] = ACTIONS(1423), + [aux_sym_cmd_identifier_token24] = ACTIONS(1423), + [aux_sym_cmd_identifier_token25] = ACTIONS(1423), + [aux_sym_cmd_identifier_token26] = ACTIONS(1423), + [aux_sym_cmd_identifier_token27] = ACTIONS(1423), + [aux_sym_cmd_identifier_token28] = ACTIONS(1423), + [aux_sym_cmd_identifier_token29] = ACTIONS(1423), + [aux_sym_cmd_identifier_token30] = ACTIONS(1423), + [aux_sym_cmd_identifier_token31] = ACTIONS(1423), + [aux_sym_cmd_identifier_token32] = ACTIONS(1421), + [aux_sym_cmd_identifier_token33] = ACTIONS(1423), + [aux_sym_cmd_identifier_token34] = ACTIONS(1421), + [aux_sym_cmd_identifier_token35] = ACTIONS(1423), + [aux_sym_cmd_identifier_token36] = ACTIONS(1423), + [aux_sym_cmd_identifier_token37] = ACTIONS(1423), + [aux_sym_cmd_identifier_token38] = ACTIONS(1421), + [aux_sym_cmd_identifier_token39] = ACTIONS(1423), + [aux_sym_cmd_identifier_token40] = ACTIONS(1423), + [sym__newline] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_err_GT_PIPE] = ACTIONS(1423), + [anon_sym_out_GT_PIPE] = ACTIONS(1423), + [anon_sym_e_GT_PIPE] = ACTIONS(1423), + [anon_sym_o_GT_PIPE] = ACTIONS(1423), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1423), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1423), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1423), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_DASH2] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1423), + [aux_sym_expr_unary_token1] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_DOT_DOT_LT] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1421), + [aux_sym__val_number_decimal_token2] = ACTIONS(1423), + [aux_sym__val_number_decimal_token3] = ACTIONS(1423), + [aux_sym__val_number_decimal_token4] = ACTIONS(1423), + [aux_sym__val_number_token1] = ACTIONS(1423), + [aux_sym__val_number_token2] = ACTIONS(1423), + [aux_sym__val_number_token3] = ACTIONS(1423), + [aux_sym__val_number_token4] = ACTIONS(1421), + [aux_sym__val_number_token5] = ACTIONS(1421), + [aux_sym__val_number_token6] = ACTIONS(1421), + [anon_sym_0b] = ACTIONS(1421), + [anon_sym_0o] = ACTIONS(1421), + [anon_sym_0x] = ACTIONS(1421), + [sym_val_date] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym__str_single_quotes] = ACTIONS(1423), + [sym__str_back_ticks] = ACTIONS(1423), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1423), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1423), + [aux_sym_env_var_token1] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_ansigradient] = ACTIONS(1423), + [anon_sym_ansilink] = ACTIONS(1423), + [anon_sym_ansistrip] = ACTIONS(1423), + [anon_sym_bitsand] = ACTIONS(1423), + [anon_sym_bitsnot] = ACTIONS(1423), + [anon_sym_bitsor] = ACTIONS(1423), + [anon_sym_bitsrol] = ACTIONS(1423), + [anon_sym_bitsror] = ACTIONS(1423), + [anon_sym_bitsshl] = ACTIONS(1423), + [anon_sym_bitsshr] = ACTIONS(1423), + [anon_sym_bitsxor] = ACTIONS(1423), + [anon_sym_bytesadd] = ACTIONS(1423), + [anon_sym_bytesat] = ACTIONS(1423), + [anon_sym_bytesbuild] = ACTIONS(1423), + [anon_sym_bytescollect] = ACTIONS(1423), + [anon_sym_bytesends_DASHwith] = ACTIONS(1423), + [anon_sym_bytesindex_DASHof] = ACTIONS(1423), + [anon_sym_byteslength] = ACTIONS(1423), + [anon_sym_bytesremove] = ACTIONS(1423), + [anon_sym_bytesreplace] = ACTIONS(1423), + [anon_sym_bytesreverse] = ACTIONS(1423), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1423), + [anon_sym_commandlineedit] = ACTIONS(1423), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1423), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1423), + [anon_sym_configenv] = ACTIONS(1423), + [anon_sym_confignu] = ACTIONS(1423), + [anon_sym_configreset] = ACTIONS(1423), + [anon_sym_dateformat] = ACTIONS(1423), + [anon_sym_datehumanize] = ACTIONS(1423), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1423), + [anon_sym_datenow] = ACTIONS(1423), + [anon_sym_dateto_DASHrecord] = ACTIONS(1423), + [anon_sym_dateto_DASHtable] = ACTIONS(1423), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1423), + [anon_sym_debuginfo] = ACTIONS(1423), + [anon_sym_debugprofile] = ACTIONS(1423), + [anon_sym_decodebase32] = ACTIONS(1421), + [anon_sym_decodebase32hex] = ACTIONS(1423), + [anon_sym_decodebase64] = ACTIONS(1423), + [anon_sym_decodehex] = ACTIONS(1423), + [anon_sym_detectcolumns] = ACTIONS(1423), + [anon_sym_dropcolumn] = ACTIONS(1423), + [anon_sym_dropnth] = ACTIONS(1423), + [anon_sym_dtadd] = ACTIONS(1423), + [anon_sym_dtdiff] = ACTIONS(1423), + [anon_sym_dtformat] = ACTIONS(1423), + [anon_sym_dtnow] = ACTIONS(1423), + [anon_sym_dtpart] = ACTIONS(1423), + [anon_sym_dtto] = ACTIONS(1423), + [anon_sym_dtutcnow] = ACTIONS(1423), + [anon_sym_eachwhile] = ACTIONS(1423), + [anon_sym_encodebase32] = ACTIONS(1421), + [anon_sym_encodebase32hex] = ACTIONS(1423), + [anon_sym_encodebase64] = ACTIONS(1423), + [anon_sym_encodehex] = ACTIONS(1423), + [anon_sym_errormake] = ACTIONS(1423), + [anon_sym_exploreir] = ACTIONS(1423), + [anon_sym_formatdate] = ACTIONS(1423), + [anon_sym_formatduration] = ACTIONS(1423), + [anon_sym_formatfilesize] = ACTIONS(1423), + [anon_sym_formatpattern] = ACTIONS(1423), + [anon_sym_frombz2] = ACTIONS(1423), + [anon_sym_fromcsv] = ACTIONS(1423), + [anon_sym_fromeml] = ACTIONS(1423), + [anon_sym_fromgz] = ACTIONS(1423), + [anon_sym_fromics] = ACTIONS(1423), + [anon_sym_fromini] = ACTIONS(1423), + [anon_sym_fromjson] = ACTIONS(1423), + [anon_sym_frommsgpack] = ACTIONS(1421), + [anon_sym_frommsgpackz] = ACTIONS(1423), + [anon_sym_fromnuon] = ACTIONS(1423), + [anon_sym_fromods] = ACTIONS(1423), + [anon_sym_fromparquet] = ACTIONS(1423), + [anon_sym_fromplist] = ACTIONS(1423), + [anon_sym_frompng] = ACTIONS(1423), + [anon_sym_fromssv] = ACTIONS(1423), + [anon_sym_fromtoml] = ACTIONS(1423), + [anon_sym_fromtsv] = ACTIONS(1423), + [anon_sym_fromurl] = ACTIONS(1423), + [anon_sym_fromvcf] = ACTIONS(1423), + [anon_sym_fromxlsx] = ACTIONS(1423), + [anon_sym_fromxml] = ACTIONS(1423), + [anon_sym_fromxz] = ACTIONS(1423), + [anon_sym_fromyaml] = ACTIONS(1423), + [anon_sym_fromyml] = ACTIONS(1423), + [anon_sym_fromzst] = ACTIONS(1423), + [anon_sym_hashmd5] = ACTIONS(1423), + [anon_sym_hashsha256] = ACTIONS(1423), + [anon_sym_helpaliases] = ACTIONS(1423), + [anon_sym_helpcommands] = ACTIONS(1423), + [anon_sym_helpescapes] = ACTIONS(1423), + [anon_sym_helpexterns] = ACTIONS(1423), + [anon_sym_helpmodules] = ACTIONS(1423), + [anon_sym_helpoperators] = ACTIONS(1423), + [anon_sym_historyimport] = ACTIONS(1423), + [anon_sym_historysession] = ACTIONS(1423), + [anon_sym_httpdelete] = ACTIONS(1423), + [anon_sym_httpget] = ACTIONS(1423), + [anon_sym_httphead] = ACTIONS(1423), + [anon_sym_httpoptions] = ACTIONS(1423), + [anon_sym_httppatch] = ACTIONS(1423), + [anon_sym_httppost] = ACTIONS(1423), + [anon_sym_httpput] = ACTIONS(1423), + [anon_sym_inputlist] = ACTIONS(1421), + [anon_sym_inputlisten] = ACTIONS(1423), + [anon_sym_intobinary] = ACTIONS(1423), + [anon_sym_intobits] = ACTIONS(1423), + [anon_sym_intobool] = ACTIONS(1423), + [anon_sym_intocell_DASHpath] = ACTIONS(1423), + [anon_sym_intodatetime] = ACTIONS(1423), + [anon_sym_intoduration] = ACTIONS(1423), + [anon_sym_intofilesize] = ACTIONS(1423), + [anon_sym_intofloat] = ACTIONS(1423), + [anon_sym_intoglob] = ACTIONS(1423), + [anon_sym_intoint] = ACTIONS(1423), + [anon_sym_intorecord] = ACTIONS(1423), + [anon_sym_intosqlite] = ACTIONS(1423), + [anon_sym_intostring] = ACTIONS(1423), + [anon_sym_intovalue] = ACTIONS(1423), + [anon_sym_jsonpath] = ACTIONS(1423), + [anon_sym_keybindingsdefault] = ACTIONS(1423), + [anon_sym_keybindingslist] = ACTIONS(1421), + [anon_sym_keybindingslisten] = ACTIONS(1423), + [anon_sym_mathabs] = ACTIONS(1423), + [anon_sym_matharccos] = ACTIONS(1421), + [anon_sym_matharccosh] = ACTIONS(1423), + [anon_sym_matharcsin] = ACTIONS(1421), + [anon_sym_matharcsinh] = ACTIONS(1423), + [anon_sym_matharctan] = ACTIONS(1421), + [anon_sym_matharctanh] = ACTIONS(1423), + [anon_sym_mathavg] = ACTIONS(1423), + [anon_sym_mathceil] = ACTIONS(1423), + [anon_sym_mathcos] = ACTIONS(1421), + [anon_sym_mathcosh] = ACTIONS(1423), + [anon_sym_mathexp] = ACTIONS(1423), + [anon_sym_mathfloor] = ACTIONS(1423), + [anon_sym_mathln] = ACTIONS(1423), + [anon_sym_mathlog] = ACTIONS(1423), + [anon_sym_mathmax] = ACTIONS(1423), + [anon_sym_mathmedian] = ACTIONS(1423), + [anon_sym_mathmin] = ACTIONS(1423), + [anon_sym_mathmode] = ACTIONS(1423), + [anon_sym_mathproduct] = ACTIONS(1423), + [anon_sym_mathround] = ACTIONS(1423), + [anon_sym_mathsin] = ACTIONS(1421), + [anon_sym_mathsinh] = ACTIONS(1423), + [anon_sym_mathsqrt] = ACTIONS(1423), + [anon_sym_mathstddev] = ACTIONS(1423), + [anon_sym_mathsum] = ACTIONS(1423), + [anon_sym_mathtan] = ACTIONS(1421), + [anon_sym_mathtanh] = ACTIONS(1423), + [anon_sym_mathvariance] = ACTIONS(1423), + [anon_sym_metadataaccess] = ACTIONS(1423), + [anon_sym_metadataset] = ACTIONS(1423), + [anon_sym_pathbasename] = ACTIONS(1423), + [anon_sym_pathdirname] = ACTIONS(1423), + [anon_sym_pathexists] = ACTIONS(1423), + [anon_sym_pathexpand] = ACTIONS(1423), + [anon_sym_pathjoin] = ACTIONS(1423), + [anon_sym_pathparse] = ACTIONS(1423), + [anon_sym_pathrelative_DASHto] = ACTIONS(1423), + [anon_sym_pathsplit] = ACTIONS(1423), + [anon_sym_pathtype] = ACTIONS(1423), + [anon_sym_pluginadd] = ACTIONS(1423), + [anon_sym_pluginlist] = ACTIONS(1423), + [anon_sym_pluginrm] = ACTIONS(1423), + [anon_sym_pluginstop] = ACTIONS(1423), + [anon_sym_polarsagg] = ACTIONS(1421), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1423), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1423), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1423), + [anon_sym_polarsappend] = ACTIONS(1423), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1423), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1423), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1423), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1423), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1423), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1423), + [anon_sym_polarsas] = ACTIONS(1421), + [anon_sym_polarsas_DASHdate] = ACTIONS(1421), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1423), + [anon_sym_polarscache] = ACTIONS(1423), + [anon_sym_polarscast] = ACTIONS(1423), + [anon_sym_polarscol] = ACTIONS(1421), + [anon_sym_polarscollect] = ACTIONS(1423), + [anon_sym_polarscolumns] = ACTIONS(1423), + [anon_sym_polarsconcat] = ACTIONS(1421), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1423), + [anon_sym_polarscontains] = ACTIONS(1423), + [anon_sym_polarscount] = ACTIONS(1421), + [anon_sym_polarscount_DASHnull] = ACTIONS(1423), + [anon_sym_polarscumulative] = ACTIONS(1423), + [anon_sym_polarsdatepart] = ACTIONS(1423), + [anon_sym_polarsdecimal] = ACTIONS(1423), + [anon_sym_polarsdrop] = ACTIONS(1421), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1423), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1423), + [anon_sym_polarsdummies] = ACTIONS(1423), + [anon_sym_polarsexplode] = ACTIONS(1423), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1423), + [anon_sym_polarsfetch] = ACTIONS(1423), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1423), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1423), + [anon_sym_polarsfilter] = ACTIONS(1421), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1423), + [anon_sym_polarsfirst] = ACTIONS(1423), + [anon_sym_polarsflatten] = ACTIONS(1423), + [anon_sym_polarsget] = ACTIONS(1421), + [anon_sym_polarsget_DASHday] = ACTIONS(1423), + [anon_sym_polarsget_DASHhour] = ACTIONS(1423), + [anon_sym_polarsget_DASHminute] = ACTIONS(1423), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1423), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1423), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1423), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1423), + [anon_sym_polarsget_DASHweek] = ACTIONS(1421), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1423), + [anon_sym_polarsget_DASHyear] = ACTIONS(1423), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1423), + [anon_sym_polarsimplode] = ACTIONS(1423), + [anon_sym_polarsinteger] = ACTIONS(1423), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1423), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1423), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1423), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1423), + [anon_sym_polarsis_DASHin] = ACTIONS(1423), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1423), + [anon_sym_polarsis_DASHnull] = ACTIONS(1423), + [anon_sym_polarsis_DASHunique] = ACTIONS(1423), + [anon_sym_polarsjoin] = ACTIONS(1423), + [anon_sym_polarslast] = ACTIONS(1423), + [anon_sym_polarslen] = ACTIONS(1423), + [anon_sym_polarslit] = ACTIONS(1423), + [anon_sym_polarslowercase] = ACTIONS(1423), + [anon_sym_polarsmax] = ACTIONS(1423), + [anon_sym_polarsmean] = ACTIONS(1423), + [anon_sym_polarsmedian] = ACTIONS(1423), + [anon_sym_polarsmin] = ACTIONS(1423), + [anon_sym_polarsn_DASHunique] = ACTIONS(1423), + [anon_sym_polarsnot] = ACTIONS(1423), + [anon_sym_polarsopen] = ACTIONS(1423), + [anon_sym_polarsotherwise] = ACTIONS(1423), + [anon_sym_polarspivot] = ACTIONS(1423), + [anon_sym_polarsprofile] = ACTIONS(1423), + [anon_sym_polarsquantile] = ACTIONS(1423), + [anon_sym_polarsquery] = ACTIONS(1423), + [anon_sym_polarsrename] = ACTIONS(1423), + [anon_sym_polarsreplace] = ACTIONS(1421), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1423), + [anon_sym_polarsreverse] = ACTIONS(1423), + [anon_sym_polarsrolling] = ACTIONS(1423), + [anon_sym_polarssample] = ACTIONS(1423), + [anon_sym_polarssave] = ACTIONS(1423), + [anon_sym_polarsschema] = ACTIONS(1423), + [anon_sym_polarsselect] = ACTIONS(1423), + [anon_sym_polarsset] = ACTIONS(1421), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1423), + [anon_sym_polarsshape] = ACTIONS(1423), + [anon_sym_polarsshift] = ACTIONS(1423), + [anon_sym_polarsslice] = ACTIONS(1423), + [anon_sym_polarssort_DASHby] = ACTIONS(1423), + [anon_sym_polarsstd] = ACTIONS(1423), + [anon_sym_polarsstore_DASHget] = ACTIONS(1423), + [anon_sym_polarsstore_DASHls] = ACTIONS(1423), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1423), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1423), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1423), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1423), + [anon_sym_polarsstrftime] = ACTIONS(1423), + [anon_sym_polarssum] = ACTIONS(1421), + [anon_sym_polarssummary] = ACTIONS(1423), + [anon_sym_polarstake] = ACTIONS(1423), + [anon_sym_polarsunique] = ACTIONS(1423), + [anon_sym_polarsunnest] = ACTIONS(1423), + [anon_sym_polarsunpivot] = ACTIONS(1423), + [anon_sym_polarsuppercase] = ACTIONS(1423), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1423), + [anon_sym_polarsvar] = ACTIONS(1423), + [anon_sym_polarswhen] = ACTIONS(1423), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1423), + [anon_sym_querydb] = ACTIONS(1423), + [anon_sym_querygit] = ACTIONS(1423), + [anon_sym_queryjson] = ACTIONS(1423), + [anon_sym_queryweb] = ACTIONS(1421), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1423), + [anon_sym_queryxml] = ACTIONS(1423), + [anon_sym_randombinary] = ACTIONS(1423), + [anon_sym_randombool] = ACTIONS(1423), + [anon_sym_randomchars] = ACTIONS(1423), + [anon_sym_randomdice] = ACTIONS(1423), + [anon_sym_randomfloat] = ACTIONS(1423), + [anon_sym_randomint] = ACTIONS(1423), + [anon_sym_randomuuid] = ACTIONS(1423), + [anon_sym_rolldown] = ACTIONS(1423), + [anon_sym_rollleft] = ACTIONS(1423), + [anon_sym_rollright] = ACTIONS(1423), + [anon_sym_rollup] = ACTIONS(1423), + [anon_sym_scopealiases] = ACTIONS(1423), + [anon_sym_scopecommands] = ACTIONS(1423), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1423), + [anon_sym_scopeexterns] = ACTIONS(1423), + [anon_sym_scopemodules] = ACTIONS(1423), + [anon_sym_scopevariables] = ACTIONS(1423), + [anon_sym_seqchar] = ACTIONS(1423), + [anon_sym_seqdate] = ACTIONS(1423), + [anon_sym_skipuntil] = ACTIONS(1423), + [anon_sym_skipwhile] = ACTIONS(1423), + [anon_sym_splitcell_DASHpath] = ACTIONS(1423), + [anon_sym_splitchars] = ACTIONS(1423), + [anon_sym_splitcolumn] = ACTIONS(1423), + [anon_sym_splitlist] = ACTIONS(1423), + [anon_sym_splitrow] = ACTIONS(1423), + [anon_sym_splitwords] = ACTIONS(1423), + [anon_sym_storcreate] = ACTIONS(1423), + [anon_sym_stordelete] = ACTIONS(1423), + [anon_sym_storexport] = ACTIONS(1423), + [anon_sym_storimport] = ACTIONS(1423), + [anon_sym_storinsert] = ACTIONS(1423), + [anon_sym_storopen] = ACTIONS(1423), + [anon_sym_storreset] = ACTIONS(1423), + [anon_sym_storupdate] = ACTIONS(1423), + [anon_sym_strbexpand] = ACTIONS(1423), + [anon_sym_strcamel_DASHcase] = ACTIONS(1423), + [anon_sym_strcapitalize] = ACTIONS(1423), + [anon_sym_strcompress] = ACTIONS(1423), + [anon_sym_strcontains] = ACTIONS(1423), + [anon_sym_strdecompress] = ACTIONS(1423), + [anon_sym_strdedent] = ACTIONS(1423), + [anon_sym_strdeunicode] = ACTIONS(1423), + [anon_sym_strdistance] = ACTIONS(1423), + [anon_sym_strdowncase] = ACTIONS(1423), + [anon_sym_strends_DASHwith] = ACTIONS(1423), + [anon_sym_strexpand] = ACTIONS(1423), + [anon_sym_strindent] = ACTIONS(1423), + [anon_sym_strindex_DASHof] = ACTIONS(1423), + [anon_sym_strjoin] = ACTIONS(1423), + [anon_sym_strkebab_DASHcase] = ACTIONS(1423), + [anon_sym_strlength] = ACTIONS(1423), + [anon_sym_strpascal_DASHcase] = ACTIONS(1423), + [anon_sym_strreplace] = ACTIONS(1423), + [anon_sym_strreverse] = ACTIONS(1423), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1423), + [anon_sym_strsimilarity] = ACTIONS(1423), + [anon_sym_strsnake_DASHcase] = ACTIONS(1423), + [anon_sym_strstarts_DASHwith] = ACTIONS(1423), + [anon_sym_strstats] = ACTIONS(1423), + [anon_sym_strsubstring] = ACTIONS(1423), + [anon_sym_strtitle_DASHcase] = ACTIONS(1423), + [anon_sym_strtrim] = ACTIONS(1423), + [anon_sym_strupcase] = ACTIONS(1423), + [anon_sym_strwrap] = ACTIONS(1423), + [anon_sym_syscpu] = ACTIONS(1423), + [anon_sym_sysdisks] = ACTIONS(1423), + [anon_sym_syshost] = ACTIONS(1423), + [anon_sym_sysmem] = ACTIONS(1423), + [anon_sym_sysnet] = ACTIONS(1423), + [anon_sym_systemp] = ACTIONS(1423), + [anon_sym_sysusers] = ACTIONS(1423), + [anon_sym_takeuntil] = ACTIONS(1423), + [anon_sym_takewhile] = ACTIONS(1423), + [anon_sym_termquery] = ACTIONS(1423), + [anon_sym_termsize] = ACTIONS(1423), + [anon_sym_tobz2] = ACTIONS(1423), + [anon_sym_tocsv] = ACTIONS(1423), + [anon_sym_togz] = ACTIONS(1423), + [anon_sym_tohtml] = ACTIONS(1423), + [anon_sym_tojson] = ACTIONS(1423), + [anon_sym_tomd] = ACTIONS(1423), + [anon_sym_tomsgpack] = ACTIONS(1421), + [anon_sym_tomsgpackz] = ACTIONS(1423), + [anon_sym_tonuon] = ACTIONS(1423), + [anon_sym_toparquet] = ACTIONS(1423), + [anon_sym_toplist] = ACTIONS(1423), + [anon_sym_topng] = ACTIONS(1423), + [anon_sym_totext] = ACTIONS(1423), + [anon_sym_totoml] = ACTIONS(1423), + [anon_sym_totsv] = ACTIONS(1423), + [anon_sym_toxml] = ACTIONS(1423), + [anon_sym_toxz] = ACTIONS(1423), + [anon_sym_toyaml] = ACTIONS(1423), + [anon_sym_tozst] = ACTIONS(1423), + [anon_sym_updatecells] = ACTIONS(1423), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1423), + [anon_sym_urldecode] = ACTIONS(1423), + [anon_sym_urlencode] = ACTIONS(1423), + [anon_sym_urljoin] = ACTIONS(1423), + [anon_sym_urlparse] = ACTIONS(1423), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1423), + [anon_sym_viewfiles] = ACTIONS(1423), + [anon_sym_viewir] = ACTIONS(1423), + [anon_sym_viewsource] = ACTIONS(1423), + [anon_sym_viewspan] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1423), + }, + [313] = { + [sym_comment] = STATE(313), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(314), + [aux_sym_cmd_identifier_token1] = ACTIONS(1425), + [aux_sym_cmd_identifier_token2] = ACTIONS(1425), + [aux_sym_cmd_identifier_token3] = ACTIONS(1425), + [aux_sym_cmd_identifier_token4] = ACTIONS(1425), + [aux_sym_cmd_identifier_token5] = ACTIONS(1425), + [aux_sym_cmd_identifier_token6] = ACTIONS(1425), + [aux_sym_cmd_identifier_token7] = ACTIONS(1425), + [aux_sym_cmd_identifier_token8] = ACTIONS(1425), + [aux_sym_cmd_identifier_token9] = ACTIONS(1425), + [aux_sym_cmd_identifier_token10] = ACTIONS(1425), + [aux_sym_cmd_identifier_token11] = ACTIONS(1425), + [aux_sym_cmd_identifier_token12] = ACTIONS(1425), + [aux_sym_cmd_identifier_token13] = ACTIONS(1425), + [aux_sym_cmd_identifier_token14] = ACTIONS(1425), + [aux_sym_cmd_identifier_token15] = ACTIONS(1425), + [aux_sym_cmd_identifier_token16] = ACTIONS(1425), + [aux_sym_cmd_identifier_token17] = ACTIONS(1425), + [aux_sym_cmd_identifier_token18] = ACTIONS(1425), + [aux_sym_cmd_identifier_token19] = ACTIONS(1425), + [aux_sym_cmd_identifier_token20] = ACTIONS(1425), + [aux_sym_cmd_identifier_token21] = ACTIONS(1425), + [aux_sym_cmd_identifier_token22] = ACTIONS(1425), + [aux_sym_cmd_identifier_token23] = ACTIONS(1425), + [aux_sym_cmd_identifier_token24] = ACTIONS(1425), + [aux_sym_cmd_identifier_token25] = ACTIONS(1425), + [aux_sym_cmd_identifier_token26] = ACTIONS(1425), + [aux_sym_cmd_identifier_token27] = ACTIONS(1425), + [aux_sym_cmd_identifier_token28] = ACTIONS(1425), + [aux_sym_cmd_identifier_token29] = ACTIONS(1425), + [aux_sym_cmd_identifier_token30] = ACTIONS(1425), + [aux_sym_cmd_identifier_token31] = ACTIONS(1425), + [aux_sym_cmd_identifier_token32] = ACTIONS(1425), + [aux_sym_cmd_identifier_token33] = ACTIONS(1425), + [aux_sym_cmd_identifier_token34] = ACTIONS(1425), + [aux_sym_cmd_identifier_token35] = ACTIONS(1425), + [aux_sym_cmd_identifier_token36] = ACTIONS(1425), + [aux_sym_cmd_identifier_token37] = ACTIONS(1425), + [aux_sym_cmd_identifier_token38] = ACTIONS(1425), + [aux_sym_cmd_identifier_token39] = ACTIONS(1425), + [aux_sym_cmd_identifier_token40] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym__space] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_DASH2] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [aux_sym_expr_unary_token1] = ACTIONS(1425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), + [anon_sym_DOT_DOT_LT] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_decimal_token2] = ACTIONS(1425), + [aux_sym__val_number_decimal_token3] = ACTIONS(1425), + [aux_sym__val_number_decimal_token4] = ACTIONS(1425), + [aux_sym__val_number_token1] = ACTIONS(1425), + [aux_sym__val_number_token2] = ACTIONS(1425), + [aux_sym__val_number_token3] = ACTIONS(1425), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [sym__str_single_quotes] = ACTIONS(1425), + [sym__str_back_ticks] = ACTIONS(1425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), + [aux_sym_env_var_token1] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_ansigradient] = ACTIONS(1425), + [anon_sym_ansilink] = ACTIONS(1425), + [anon_sym_ansistrip] = ACTIONS(1425), + [anon_sym_bitsand] = ACTIONS(1425), + [anon_sym_bitsnot] = ACTIONS(1425), + [anon_sym_bitsor] = ACTIONS(1425), + [anon_sym_bitsrol] = ACTIONS(1425), + [anon_sym_bitsror] = ACTIONS(1425), + [anon_sym_bitsshl] = ACTIONS(1425), + [anon_sym_bitsshr] = ACTIONS(1425), + [anon_sym_bitsxor] = ACTIONS(1425), + [anon_sym_bytesadd] = ACTIONS(1425), + [anon_sym_bytesat] = ACTIONS(1425), + [anon_sym_bytesbuild] = ACTIONS(1425), + [anon_sym_bytescollect] = ACTIONS(1425), + [anon_sym_bytesends_DASHwith] = ACTIONS(1425), + [anon_sym_bytesindex_DASHof] = ACTIONS(1425), + [anon_sym_byteslength] = ACTIONS(1425), + [anon_sym_bytesremove] = ACTIONS(1425), + [anon_sym_bytesreplace] = ACTIONS(1425), + [anon_sym_bytesreverse] = ACTIONS(1425), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1425), + [anon_sym_commandlineedit] = ACTIONS(1425), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1425), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1425), + [anon_sym_configenv] = ACTIONS(1425), + [anon_sym_confignu] = ACTIONS(1425), + [anon_sym_configreset] = ACTIONS(1425), + [anon_sym_dateformat] = ACTIONS(1425), + [anon_sym_datehumanize] = ACTIONS(1425), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1425), + [anon_sym_datenow] = ACTIONS(1425), + [anon_sym_dateto_DASHrecord] = ACTIONS(1425), + [anon_sym_dateto_DASHtable] = ACTIONS(1425), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1425), + [anon_sym_debuginfo] = ACTIONS(1425), + [anon_sym_debugprofile] = ACTIONS(1425), + [anon_sym_decodebase32] = ACTIONS(1425), + [anon_sym_decodebase32hex] = ACTIONS(1425), + [anon_sym_decodebase64] = ACTIONS(1425), + [anon_sym_decodehex] = ACTIONS(1425), + [anon_sym_detectcolumns] = ACTIONS(1425), + [anon_sym_dropcolumn] = ACTIONS(1425), + [anon_sym_dropnth] = ACTIONS(1425), + [anon_sym_dtadd] = ACTIONS(1425), + [anon_sym_dtdiff] = ACTIONS(1425), + [anon_sym_dtformat] = ACTIONS(1425), + [anon_sym_dtnow] = ACTIONS(1425), + [anon_sym_dtpart] = ACTIONS(1425), + [anon_sym_dtto] = ACTIONS(1425), + [anon_sym_dtutcnow] = ACTIONS(1425), + [anon_sym_eachwhile] = ACTIONS(1425), + [anon_sym_encodebase32] = ACTIONS(1425), + [anon_sym_encodebase32hex] = ACTIONS(1425), + [anon_sym_encodebase64] = ACTIONS(1425), + [anon_sym_encodehex] = ACTIONS(1425), + [anon_sym_errormake] = ACTIONS(1425), + [anon_sym_exploreir] = ACTIONS(1425), + [anon_sym_formatdate] = ACTIONS(1425), + [anon_sym_formatduration] = ACTIONS(1425), + [anon_sym_formatfilesize] = ACTIONS(1425), + [anon_sym_formatpattern] = ACTIONS(1425), + [anon_sym_frombz2] = ACTIONS(1425), + [anon_sym_fromcsv] = ACTIONS(1425), + [anon_sym_fromeml] = ACTIONS(1425), + [anon_sym_fromgz] = ACTIONS(1425), + [anon_sym_fromics] = ACTIONS(1425), + [anon_sym_fromini] = ACTIONS(1425), + [anon_sym_fromjson] = ACTIONS(1425), + [anon_sym_frommsgpack] = ACTIONS(1425), + [anon_sym_frommsgpackz] = ACTIONS(1425), + [anon_sym_fromnuon] = ACTIONS(1425), + [anon_sym_fromods] = ACTIONS(1425), + [anon_sym_fromparquet] = ACTIONS(1425), + [anon_sym_fromplist] = ACTIONS(1425), + [anon_sym_frompng] = ACTIONS(1425), + [anon_sym_fromssv] = ACTIONS(1425), + [anon_sym_fromtoml] = ACTIONS(1425), + [anon_sym_fromtsv] = ACTIONS(1425), + [anon_sym_fromurl] = ACTIONS(1425), + [anon_sym_fromvcf] = ACTIONS(1425), + [anon_sym_fromxlsx] = ACTIONS(1425), + [anon_sym_fromxml] = ACTIONS(1425), + [anon_sym_fromxz] = ACTIONS(1425), + [anon_sym_fromyaml] = ACTIONS(1425), + [anon_sym_fromyml] = ACTIONS(1425), + [anon_sym_fromzst] = ACTIONS(1425), + [anon_sym_hashmd5] = ACTIONS(1425), + [anon_sym_hashsha256] = ACTIONS(1425), + [anon_sym_helpaliases] = ACTIONS(1425), + [anon_sym_helpcommands] = ACTIONS(1425), + [anon_sym_helpescapes] = ACTIONS(1425), + [anon_sym_helpexterns] = ACTIONS(1425), + [anon_sym_helpmodules] = ACTIONS(1425), + [anon_sym_helpoperators] = ACTIONS(1425), + [anon_sym_historyimport] = ACTIONS(1425), + [anon_sym_historysession] = ACTIONS(1425), + [anon_sym_httpdelete] = ACTIONS(1425), + [anon_sym_httpget] = ACTIONS(1425), + [anon_sym_httphead] = ACTIONS(1425), + [anon_sym_httpoptions] = ACTIONS(1425), + [anon_sym_httppatch] = ACTIONS(1425), + [anon_sym_httppost] = ACTIONS(1425), + [anon_sym_httpput] = ACTIONS(1425), + [anon_sym_inputlist] = ACTIONS(1425), + [anon_sym_inputlisten] = ACTIONS(1425), + [anon_sym_intobinary] = ACTIONS(1425), + [anon_sym_intobits] = ACTIONS(1425), + [anon_sym_intobool] = ACTIONS(1425), + [anon_sym_intocell_DASHpath] = ACTIONS(1425), + [anon_sym_intodatetime] = ACTIONS(1425), + [anon_sym_intoduration] = ACTIONS(1425), + [anon_sym_intofilesize] = ACTIONS(1425), + [anon_sym_intofloat] = ACTIONS(1425), + [anon_sym_intoglob] = ACTIONS(1425), + [anon_sym_intoint] = ACTIONS(1425), + [anon_sym_intorecord] = ACTIONS(1425), + [anon_sym_intosqlite] = ACTIONS(1425), + [anon_sym_intostring] = ACTIONS(1425), + [anon_sym_intovalue] = ACTIONS(1425), + [anon_sym_jsonpath] = ACTIONS(1425), + [anon_sym_keybindingsdefault] = ACTIONS(1425), + [anon_sym_keybindingslist] = ACTIONS(1425), + [anon_sym_keybindingslisten] = ACTIONS(1425), + [anon_sym_mathabs] = ACTIONS(1425), + [anon_sym_matharccos] = ACTIONS(1425), + [anon_sym_matharccosh] = ACTIONS(1425), + [anon_sym_matharcsin] = ACTIONS(1425), + [anon_sym_matharcsinh] = ACTIONS(1425), + [anon_sym_matharctan] = ACTIONS(1425), + [anon_sym_matharctanh] = ACTIONS(1425), + [anon_sym_mathavg] = ACTIONS(1425), + [anon_sym_mathceil] = ACTIONS(1425), + [anon_sym_mathcos] = ACTIONS(1425), + [anon_sym_mathcosh] = ACTIONS(1425), + [anon_sym_mathexp] = ACTIONS(1425), + [anon_sym_mathfloor] = ACTIONS(1425), + [anon_sym_mathln] = ACTIONS(1425), + [anon_sym_mathlog] = ACTIONS(1425), + [anon_sym_mathmax] = ACTIONS(1425), + [anon_sym_mathmedian] = ACTIONS(1425), + [anon_sym_mathmin] = ACTIONS(1425), + [anon_sym_mathmode] = ACTIONS(1425), + [anon_sym_mathproduct] = ACTIONS(1425), + [anon_sym_mathround] = ACTIONS(1425), + [anon_sym_mathsin] = ACTIONS(1425), + [anon_sym_mathsinh] = ACTIONS(1425), + [anon_sym_mathsqrt] = ACTIONS(1425), + [anon_sym_mathstddev] = ACTIONS(1425), + [anon_sym_mathsum] = ACTIONS(1425), + [anon_sym_mathtan] = ACTIONS(1425), + [anon_sym_mathtanh] = ACTIONS(1425), + [anon_sym_mathvariance] = ACTIONS(1425), + [anon_sym_metadataaccess] = ACTIONS(1425), + [anon_sym_metadataset] = ACTIONS(1425), + [anon_sym_pathbasename] = ACTIONS(1425), + [anon_sym_pathdirname] = ACTIONS(1425), + [anon_sym_pathexists] = ACTIONS(1425), + [anon_sym_pathexpand] = ACTIONS(1425), + [anon_sym_pathjoin] = ACTIONS(1425), + [anon_sym_pathparse] = ACTIONS(1425), + [anon_sym_pathrelative_DASHto] = ACTIONS(1425), + [anon_sym_pathsplit] = ACTIONS(1425), + [anon_sym_pathtype] = ACTIONS(1425), + [anon_sym_pluginadd] = ACTIONS(1425), + [anon_sym_pluginlist] = ACTIONS(1425), + [anon_sym_pluginrm] = ACTIONS(1425), + [anon_sym_pluginstop] = ACTIONS(1425), + [anon_sym_polarsagg] = ACTIONS(1425), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1425), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1425), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1425), + [anon_sym_polarsappend] = ACTIONS(1425), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1425), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1425), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1425), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1425), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1425), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1425), + [anon_sym_polarsas] = ACTIONS(1425), + [anon_sym_polarsas_DASHdate] = ACTIONS(1425), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1425), + [anon_sym_polarscache] = ACTIONS(1425), + [anon_sym_polarscast] = ACTIONS(1425), + [anon_sym_polarscol] = ACTIONS(1425), + [anon_sym_polarscollect] = ACTIONS(1425), + [anon_sym_polarscolumns] = ACTIONS(1425), + [anon_sym_polarsconcat] = ACTIONS(1425), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1425), + [anon_sym_polarscontains] = ACTIONS(1425), + [anon_sym_polarscount] = ACTIONS(1425), + [anon_sym_polarscount_DASHnull] = ACTIONS(1425), + [anon_sym_polarscumulative] = ACTIONS(1425), + [anon_sym_polarsdatepart] = ACTIONS(1425), + [anon_sym_polarsdecimal] = ACTIONS(1425), + [anon_sym_polarsdrop] = ACTIONS(1425), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1425), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1425), + [anon_sym_polarsdummies] = ACTIONS(1425), + [anon_sym_polarsexplode] = ACTIONS(1425), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1425), + [anon_sym_polarsfetch] = ACTIONS(1425), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1425), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1425), + [anon_sym_polarsfilter] = ACTIONS(1425), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1425), + [anon_sym_polarsfirst] = ACTIONS(1425), + [anon_sym_polarsflatten] = ACTIONS(1425), + [anon_sym_polarsget] = ACTIONS(1425), + [anon_sym_polarsget_DASHday] = ACTIONS(1425), + [anon_sym_polarsget_DASHhour] = ACTIONS(1425), + [anon_sym_polarsget_DASHminute] = ACTIONS(1425), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1425), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1425), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1425), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1425), + [anon_sym_polarsget_DASHweek] = ACTIONS(1425), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1425), + [anon_sym_polarsget_DASHyear] = ACTIONS(1425), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1425), + [anon_sym_polarsimplode] = ACTIONS(1425), + [anon_sym_polarsinteger] = ACTIONS(1425), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1425), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1425), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1425), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1425), + [anon_sym_polarsis_DASHin] = ACTIONS(1425), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1425), + [anon_sym_polarsis_DASHnull] = ACTIONS(1425), + [anon_sym_polarsis_DASHunique] = ACTIONS(1425), + [anon_sym_polarsjoin] = ACTIONS(1425), + [anon_sym_polarslast] = ACTIONS(1425), + [anon_sym_polarslen] = ACTIONS(1425), + [anon_sym_polarslit] = ACTIONS(1425), + [anon_sym_polarslowercase] = ACTIONS(1425), + [anon_sym_polarsmax] = ACTIONS(1425), + [anon_sym_polarsmean] = ACTIONS(1425), + [anon_sym_polarsmedian] = ACTIONS(1425), + [anon_sym_polarsmin] = ACTIONS(1425), + [anon_sym_polarsn_DASHunique] = ACTIONS(1425), + [anon_sym_polarsnot] = ACTIONS(1425), + [anon_sym_polarsopen] = ACTIONS(1425), + [anon_sym_polarsotherwise] = ACTIONS(1425), + [anon_sym_polarspivot] = ACTIONS(1425), + [anon_sym_polarsprofile] = ACTIONS(1425), + [anon_sym_polarsquantile] = ACTIONS(1425), + [anon_sym_polarsquery] = ACTIONS(1425), + [anon_sym_polarsrename] = ACTIONS(1425), + [anon_sym_polarsreplace] = ACTIONS(1425), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1425), + [anon_sym_polarsreverse] = ACTIONS(1425), + [anon_sym_polarsrolling] = ACTIONS(1425), + [anon_sym_polarssample] = ACTIONS(1425), + [anon_sym_polarssave] = ACTIONS(1425), + [anon_sym_polarsschema] = ACTIONS(1425), + [anon_sym_polarsselect] = ACTIONS(1425), + [anon_sym_polarsset] = ACTIONS(1425), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1425), + [anon_sym_polarsshape] = ACTIONS(1425), + [anon_sym_polarsshift] = ACTIONS(1425), + [anon_sym_polarsslice] = ACTIONS(1425), + [anon_sym_polarssort_DASHby] = ACTIONS(1425), + [anon_sym_polarsstd] = ACTIONS(1425), + [anon_sym_polarsstore_DASHget] = ACTIONS(1425), + [anon_sym_polarsstore_DASHls] = ACTIONS(1425), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1425), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1425), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1425), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1425), + [anon_sym_polarsstrftime] = ACTIONS(1425), + [anon_sym_polarssum] = ACTIONS(1425), + [anon_sym_polarssummary] = ACTIONS(1425), + [anon_sym_polarstake] = ACTIONS(1425), + [anon_sym_polarsunique] = ACTIONS(1425), + [anon_sym_polarsunnest] = ACTIONS(1425), + [anon_sym_polarsunpivot] = ACTIONS(1425), + [anon_sym_polarsuppercase] = ACTIONS(1425), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1425), + [anon_sym_polarsvar] = ACTIONS(1425), + [anon_sym_polarswhen] = ACTIONS(1425), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1425), + [anon_sym_querydb] = ACTIONS(1425), + [anon_sym_querygit] = ACTIONS(1425), + [anon_sym_queryjson] = ACTIONS(1425), + [anon_sym_queryweb] = ACTIONS(1425), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1425), + [anon_sym_queryxml] = ACTIONS(1425), + [anon_sym_randombinary] = ACTIONS(1425), + [anon_sym_randombool] = ACTIONS(1425), + [anon_sym_randomchars] = ACTIONS(1425), + [anon_sym_randomdice] = ACTIONS(1425), + [anon_sym_randomfloat] = ACTIONS(1425), + [anon_sym_randomint] = ACTIONS(1425), + [anon_sym_randomuuid] = ACTIONS(1425), + [anon_sym_rolldown] = ACTIONS(1425), + [anon_sym_rollleft] = ACTIONS(1425), + [anon_sym_rollright] = ACTIONS(1425), + [anon_sym_rollup] = ACTIONS(1425), + [anon_sym_scopealiases] = ACTIONS(1425), + [anon_sym_scopecommands] = ACTIONS(1425), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1425), + [anon_sym_scopeexterns] = ACTIONS(1425), + [anon_sym_scopemodules] = ACTIONS(1425), + [anon_sym_scopevariables] = ACTIONS(1425), + [anon_sym_seqchar] = ACTIONS(1425), + [anon_sym_seqdate] = ACTIONS(1425), + [anon_sym_skipuntil] = ACTIONS(1425), + [anon_sym_skipwhile] = ACTIONS(1425), + [anon_sym_splitcell_DASHpath] = ACTIONS(1425), + [anon_sym_splitchars] = ACTIONS(1425), + [anon_sym_splitcolumn] = ACTIONS(1425), + [anon_sym_splitlist] = ACTIONS(1425), + [anon_sym_splitrow] = ACTIONS(1425), + [anon_sym_splitwords] = ACTIONS(1425), + [anon_sym_storcreate] = ACTIONS(1425), + [anon_sym_stordelete] = ACTIONS(1425), + [anon_sym_storexport] = ACTIONS(1425), + [anon_sym_storimport] = ACTIONS(1425), + [anon_sym_storinsert] = ACTIONS(1425), + [anon_sym_storopen] = ACTIONS(1425), + [anon_sym_storreset] = ACTIONS(1425), + [anon_sym_storupdate] = ACTIONS(1425), + [anon_sym_strbexpand] = ACTIONS(1425), + [anon_sym_strcamel_DASHcase] = ACTIONS(1425), + [anon_sym_strcapitalize] = ACTIONS(1425), + [anon_sym_strcompress] = ACTIONS(1425), + [anon_sym_strcontains] = ACTIONS(1425), + [anon_sym_strdecompress] = ACTIONS(1425), + [anon_sym_strdedent] = ACTIONS(1425), + [anon_sym_strdeunicode] = ACTIONS(1425), + [anon_sym_strdistance] = ACTIONS(1425), + [anon_sym_strdowncase] = ACTIONS(1425), + [anon_sym_strends_DASHwith] = ACTIONS(1425), + [anon_sym_strexpand] = ACTIONS(1425), + [anon_sym_strindent] = ACTIONS(1425), + [anon_sym_strindex_DASHof] = ACTIONS(1425), + [anon_sym_strjoin] = ACTIONS(1425), + [anon_sym_strkebab_DASHcase] = ACTIONS(1425), + [anon_sym_strlength] = ACTIONS(1425), + [anon_sym_strpascal_DASHcase] = ACTIONS(1425), + [anon_sym_strreplace] = ACTIONS(1425), + [anon_sym_strreverse] = ACTIONS(1425), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1425), + [anon_sym_strsimilarity] = ACTIONS(1425), + [anon_sym_strsnake_DASHcase] = ACTIONS(1425), + [anon_sym_strstarts_DASHwith] = ACTIONS(1425), + [anon_sym_strstats] = ACTIONS(1425), + [anon_sym_strsubstring] = ACTIONS(1425), + [anon_sym_strtitle_DASHcase] = ACTIONS(1425), + [anon_sym_strtrim] = ACTIONS(1425), + [anon_sym_strupcase] = ACTIONS(1425), + [anon_sym_strwrap] = ACTIONS(1425), + [anon_sym_syscpu] = ACTIONS(1425), + [anon_sym_sysdisks] = ACTIONS(1425), + [anon_sym_syshost] = ACTIONS(1425), + [anon_sym_sysmem] = ACTIONS(1425), + [anon_sym_sysnet] = ACTIONS(1425), + [anon_sym_systemp] = ACTIONS(1425), + [anon_sym_sysusers] = ACTIONS(1425), + [anon_sym_takeuntil] = ACTIONS(1425), + [anon_sym_takewhile] = ACTIONS(1425), + [anon_sym_termquery] = ACTIONS(1425), + [anon_sym_termsize] = ACTIONS(1425), + [anon_sym_tobz2] = ACTIONS(1425), + [anon_sym_tocsv] = ACTIONS(1425), + [anon_sym_togz] = ACTIONS(1425), + [anon_sym_tohtml] = ACTIONS(1425), + [anon_sym_tojson] = ACTIONS(1425), + [anon_sym_tomd] = ACTIONS(1425), + [anon_sym_tomsgpack] = ACTIONS(1425), + [anon_sym_tomsgpackz] = ACTIONS(1425), + [anon_sym_tonuon] = ACTIONS(1425), + [anon_sym_toparquet] = ACTIONS(1425), + [anon_sym_toplist] = ACTIONS(1425), + [anon_sym_topng] = ACTIONS(1425), + [anon_sym_totext] = ACTIONS(1425), + [anon_sym_totoml] = ACTIONS(1425), + [anon_sym_totsv] = ACTIONS(1425), + [anon_sym_toxml] = ACTIONS(1425), + [anon_sym_toxz] = ACTIONS(1425), + [anon_sym_toyaml] = ACTIONS(1425), + [anon_sym_tozst] = ACTIONS(1425), + [anon_sym_updatecells] = ACTIONS(1425), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1425), + [anon_sym_urldecode] = ACTIONS(1425), + [anon_sym_urlencode] = ACTIONS(1425), + [anon_sym_urljoin] = ACTIONS(1425), + [anon_sym_urlparse] = ACTIONS(1425), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1425), + [anon_sym_viewfiles] = ACTIONS(1425), + [anon_sym_viewir] = ACTIONS(1425), + [anon_sym_viewsource] = ACTIONS(1425), + [anon_sym_viewspan] = ACTIONS(1425), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2136), + [sym_raw_string_begin] = ACTIONS(1431), }, - [484] = { - [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2138), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [aux_sym_record_entry_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [314] = { + [sym_comment] = STATE(314), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(314), + [aux_sym_cmd_identifier_token1] = ACTIONS(1433), + [aux_sym_cmd_identifier_token2] = ACTIONS(1433), + [aux_sym_cmd_identifier_token3] = ACTIONS(1433), + [aux_sym_cmd_identifier_token4] = ACTIONS(1433), + [aux_sym_cmd_identifier_token5] = ACTIONS(1433), + [aux_sym_cmd_identifier_token6] = ACTIONS(1433), + [aux_sym_cmd_identifier_token7] = ACTIONS(1433), + [aux_sym_cmd_identifier_token8] = ACTIONS(1433), + [aux_sym_cmd_identifier_token9] = ACTIONS(1433), + [aux_sym_cmd_identifier_token10] = ACTIONS(1433), + [aux_sym_cmd_identifier_token11] = ACTIONS(1433), + [aux_sym_cmd_identifier_token12] = ACTIONS(1433), + [aux_sym_cmd_identifier_token13] = ACTIONS(1433), + [aux_sym_cmd_identifier_token14] = ACTIONS(1433), + [aux_sym_cmd_identifier_token15] = ACTIONS(1433), + [aux_sym_cmd_identifier_token16] = ACTIONS(1433), + [aux_sym_cmd_identifier_token17] = ACTIONS(1433), + [aux_sym_cmd_identifier_token18] = ACTIONS(1433), + [aux_sym_cmd_identifier_token19] = ACTIONS(1433), + [aux_sym_cmd_identifier_token20] = ACTIONS(1433), + [aux_sym_cmd_identifier_token21] = ACTIONS(1433), + [aux_sym_cmd_identifier_token22] = ACTIONS(1433), + [aux_sym_cmd_identifier_token23] = ACTIONS(1433), + [aux_sym_cmd_identifier_token24] = ACTIONS(1433), + [aux_sym_cmd_identifier_token25] = ACTIONS(1433), + [aux_sym_cmd_identifier_token26] = ACTIONS(1433), + [aux_sym_cmd_identifier_token27] = ACTIONS(1433), + [aux_sym_cmd_identifier_token28] = ACTIONS(1433), + [aux_sym_cmd_identifier_token29] = ACTIONS(1433), + [aux_sym_cmd_identifier_token30] = ACTIONS(1433), + [aux_sym_cmd_identifier_token31] = ACTIONS(1433), + [aux_sym_cmd_identifier_token32] = ACTIONS(1433), + [aux_sym_cmd_identifier_token33] = ACTIONS(1433), + [aux_sym_cmd_identifier_token34] = ACTIONS(1433), + [aux_sym_cmd_identifier_token35] = ACTIONS(1433), + [aux_sym_cmd_identifier_token36] = ACTIONS(1433), + [aux_sym_cmd_identifier_token37] = ACTIONS(1433), + [aux_sym_cmd_identifier_token38] = ACTIONS(1433), + [aux_sym_cmd_identifier_token39] = ACTIONS(1433), + [aux_sym_cmd_identifier_token40] = ACTIONS(1433), + [sym__newline] = ACTIONS(1435), + [sym__space] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_DASH2] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [aux_sym_expr_unary_token1] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_DOT_DOT_LT] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1433), + [aux_sym__val_number_decimal_token2] = ACTIONS(1433), + [aux_sym__val_number_decimal_token3] = ACTIONS(1433), + [aux_sym__val_number_decimal_token4] = ACTIONS(1433), + [aux_sym__val_number_token1] = ACTIONS(1433), + [aux_sym__val_number_token2] = ACTIONS(1433), + [aux_sym__val_number_token3] = ACTIONS(1433), + [aux_sym__val_number_token4] = ACTIONS(1433), + [aux_sym__val_number_token5] = ACTIONS(1433), + [aux_sym__val_number_token6] = ACTIONS(1433), + [anon_sym_0b] = ACTIONS(1433), + [anon_sym_0o] = ACTIONS(1433), + [anon_sym_0x] = ACTIONS(1433), + [sym_val_date] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym__str_single_quotes] = ACTIONS(1433), + [sym__str_back_ticks] = ACTIONS(1433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1433), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1433), + [aux_sym_env_var_token1] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_ansigradient] = ACTIONS(1433), + [anon_sym_ansilink] = ACTIONS(1433), + [anon_sym_ansistrip] = ACTIONS(1433), + [anon_sym_bitsand] = ACTIONS(1433), + [anon_sym_bitsnot] = ACTIONS(1433), + [anon_sym_bitsor] = ACTIONS(1433), + [anon_sym_bitsrol] = ACTIONS(1433), + [anon_sym_bitsror] = ACTIONS(1433), + [anon_sym_bitsshl] = ACTIONS(1433), + [anon_sym_bitsshr] = ACTIONS(1433), + [anon_sym_bitsxor] = ACTIONS(1433), + [anon_sym_bytesadd] = ACTIONS(1433), + [anon_sym_bytesat] = ACTIONS(1433), + [anon_sym_bytesbuild] = ACTIONS(1433), + [anon_sym_bytescollect] = ACTIONS(1433), + [anon_sym_bytesends_DASHwith] = ACTIONS(1433), + [anon_sym_bytesindex_DASHof] = ACTIONS(1433), + [anon_sym_byteslength] = ACTIONS(1433), + [anon_sym_bytesremove] = ACTIONS(1433), + [anon_sym_bytesreplace] = ACTIONS(1433), + [anon_sym_bytesreverse] = ACTIONS(1433), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1433), + [anon_sym_commandlineedit] = ACTIONS(1433), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1433), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1433), + [anon_sym_configenv] = ACTIONS(1433), + [anon_sym_confignu] = ACTIONS(1433), + [anon_sym_configreset] = ACTIONS(1433), + [anon_sym_dateformat] = ACTIONS(1433), + [anon_sym_datehumanize] = ACTIONS(1433), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1433), + [anon_sym_datenow] = ACTIONS(1433), + [anon_sym_dateto_DASHrecord] = ACTIONS(1433), + [anon_sym_dateto_DASHtable] = ACTIONS(1433), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1433), + [anon_sym_debuginfo] = ACTIONS(1433), + [anon_sym_debugprofile] = ACTIONS(1433), + [anon_sym_decodebase32] = ACTIONS(1433), + [anon_sym_decodebase32hex] = ACTIONS(1433), + [anon_sym_decodebase64] = ACTIONS(1433), + [anon_sym_decodehex] = ACTIONS(1433), + [anon_sym_detectcolumns] = ACTIONS(1433), + [anon_sym_dropcolumn] = ACTIONS(1433), + [anon_sym_dropnth] = ACTIONS(1433), + [anon_sym_dtadd] = ACTIONS(1433), + [anon_sym_dtdiff] = ACTIONS(1433), + [anon_sym_dtformat] = ACTIONS(1433), + [anon_sym_dtnow] = ACTIONS(1433), + [anon_sym_dtpart] = ACTIONS(1433), + [anon_sym_dtto] = ACTIONS(1433), + [anon_sym_dtutcnow] = ACTIONS(1433), + [anon_sym_eachwhile] = ACTIONS(1433), + [anon_sym_encodebase32] = ACTIONS(1433), + [anon_sym_encodebase32hex] = ACTIONS(1433), + [anon_sym_encodebase64] = ACTIONS(1433), + [anon_sym_encodehex] = ACTIONS(1433), + [anon_sym_errormake] = ACTIONS(1433), + [anon_sym_exploreir] = ACTIONS(1433), + [anon_sym_formatdate] = ACTIONS(1433), + [anon_sym_formatduration] = ACTIONS(1433), + [anon_sym_formatfilesize] = ACTIONS(1433), + [anon_sym_formatpattern] = ACTIONS(1433), + [anon_sym_frombz2] = ACTIONS(1433), + [anon_sym_fromcsv] = ACTIONS(1433), + [anon_sym_fromeml] = ACTIONS(1433), + [anon_sym_fromgz] = ACTIONS(1433), + [anon_sym_fromics] = ACTIONS(1433), + [anon_sym_fromini] = ACTIONS(1433), + [anon_sym_fromjson] = ACTIONS(1433), + [anon_sym_frommsgpack] = ACTIONS(1433), + [anon_sym_frommsgpackz] = ACTIONS(1433), + [anon_sym_fromnuon] = ACTIONS(1433), + [anon_sym_fromods] = ACTIONS(1433), + [anon_sym_fromparquet] = ACTIONS(1433), + [anon_sym_fromplist] = ACTIONS(1433), + [anon_sym_frompng] = ACTIONS(1433), + [anon_sym_fromssv] = ACTIONS(1433), + [anon_sym_fromtoml] = ACTIONS(1433), + [anon_sym_fromtsv] = ACTIONS(1433), + [anon_sym_fromurl] = ACTIONS(1433), + [anon_sym_fromvcf] = ACTIONS(1433), + [anon_sym_fromxlsx] = ACTIONS(1433), + [anon_sym_fromxml] = ACTIONS(1433), + [anon_sym_fromxz] = ACTIONS(1433), + [anon_sym_fromyaml] = ACTIONS(1433), + [anon_sym_fromyml] = ACTIONS(1433), + [anon_sym_fromzst] = ACTIONS(1433), + [anon_sym_hashmd5] = ACTIONS(1433), + [anon_sym_hashsha256] = ACTIONS(1433), + [anon_sym_helpaliases] = ACTIONS(1433), + [anon_sym_helpcommands] = ACTIONS(1433), + [anon_sym_helpescapes] = ACTIONS(1433), + [anon_sym_helpexterns] = ACTIONS(1433), + [anon_sym_helpmodules] = ACTIONS(1433), + [anon_sym_helpoperators] = ACTIONS(1433), + [anon_sym_historyimport] = ACTIONS(1433), + [anon_sym_historysession] = ACTIONS(1433), + [anon_sym_httpdelete] = ACTIONS(1433), + [anon_sym_httpget] = ACTIONS(1433), + [anon_sym_httphead] = ACTIONS(1433), + [anon_sym_httpoptions] = ACTIONS(1433), + [anon_sym_httppatch] = ACTIONS(1433), + [anon_sym_httppost] = ACTIONS(1433), + [anon_sym_httpput] = ACTIONS(1433), + [anon_sym_inputlist] = ACTIONS(1433), + [anon_sym_inputlisten] = ACTIONS(1433), + [anon_sym_intobinary] = ACTIONS(1433), + [anon_sym_intobits] = ACTIONS(1433), + [anon_sym_intobool] = ACTIONS(1433), + [anon_sym_intocell_DASHpath] = ACTIONS(1433), + [anon_sym_intodatetime] = ACTIONS(1433), + [anon_sym_intoduration] = ACTIONS(1433), + [anon_sym_intofilesize] = ACTIONS(1433), + [anon_sym_intofloat] = ACTIONS(1433), + [anon_sym_intoglob] = ACTIONS(1433), + [anon_sym_intoint] = ACTIONS(1433), + [anon_sym_intorecord] = ACTIONS(1433), + [anon_sym_intosqlite] = ACTIONS(1433), + [anon_sym_intostring] = ACTIONS(1433), + [anon_sym_intovalue] = ACTIONS(1433), + [anon_sym_jsonpath] = ACTIONS(1433), + [anon_sym_keybindingsdefault] = ACTIONS(1433), + [anon_sym_keybindingslist] = ACTIONS(1433), + [anon_sym_keybindingslisten] = ACTIONS(1433), + [anon_sym_mathabs] = ACTIONS(1433), + [anon_sym_matharccos] = ACTIONS(1433), + [anon_sym_matharccosh] = ACTIONS(1433), + [anon_sym_matharcsin] = ACTIONS(1433), + [anon_sym_matharcsinh] = ACTIONS(1433), + [anon_sym_matharctan] = ACTIONS(1433), + [anon_sym_matharctanh] = ACTIONS(1433), + [anon_sym_mathavg] = ACTIONS(1433), + [anon_sym_mathceil] = ACTIONS(1433), + [anon_sym_mathcos] = ACTIONS(1433), + [anon_sym_mathcosh] = ACTIONS(1433), + [anon_sym_mathexp] = ACTIONS(1433), + [anon_sym_mathfloor] = ACTIONS(1433), + [anon_sym_mathln] = ACTIONS(1433), + [anon_sym_mathlog] = ACTIONS(1433), + [anon_sym_mathmax] = ACTIONS(1433), + [anon_sym_mathmedian] = ACTIONS(1433), + [anon_sym_mathmin] = ACTIONS(1433), + [anon_sym_mathmode] = ACTIONS(1433), + [anon_sym_mathproduct] = ACTIONS(1433), + [anon_sym_mathround] = ACTIONS(1433), + [anon_sym_mathsin] = ACTIONS(1433), + [anon_sym_mathsinh] = ACTIONS(1433), + [anon_sym_mathsqrt] = ACTIONS(1433), + [anon_sym_mathstddev] = ACTIONS(1433), + [anon_sym_mathsum] = ACTIONS(1433), + [anon_sym_mathtan] = ACTIONS(1433), + [anon_sym_mathtanh] = ACTIONS(1433), + [anon_sym_mathvariance] = ACTIONS(1433), + [anon_sym_metadataaccess] = ACTIONS(1433), + [anon_sym_metadataset] = ACTIONS(1433), + [anon_sym_pathbasename] = ACTIONS(1433), + [anon_sym_pathdirname] = ACTIONS(1433), + [anon_sym_pathexists] = ACTIONS(1433), + [anon_sym_pathexpand] = ACTIONS(1433), + [anon_sym_pathjoin] = ACTIONS(1433), + [anon_sym_pathparse] = ACTIONS(1433), + [anon_sym_pathrelative_DASHto] = ACTIONS(1433), + [anon_sym_pathsplit] = ACTIONS(1433), + [anon_sym_pathtype] = ACTIONS(1433), + [anon_sym_pluginadd] = ACTIONS(1433), + [anon_sym_pluginlist] = ACTIONS(1433), + [anon_sym_pluginrm] = ACTIONS(1433), + [anon_sym_pluginstop] = ACTIONS(1433), + [anon_sym_polarsagg] = ACTIONS(1433), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1433), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1433), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1433), + [anon_sym_polarsappend] = ACTIONS(1433), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1433), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1433), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1433), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1433), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1433), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1433), + [anon_sym_polarsas] = ACTIONS(1433), + [anon_sym_polarsas_DASHdate] = ACTIONS(1433), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1433), + [anon_sym_polarscache] = ACTIONS(1433), + [anon_sym_polarscast] = ACTIONS(1433), + [anon_sym_polarscol] = ACTIONS(1433), + [anon_sym_polarscollect] = ACTIONS(1433), + [anon_sym_polarscolumns] = ACTIONS(1433), + [anon_sym_polarsconcat] = ACTIONS(1433), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1433), + [anon_sym_polarscontains] = ACTIONS(1433), + [anon_sym_polarscount] = ACTIONS(1433), + [anon_sym_polarscount_DASHnull] = ACTIONS(1433), + [anon_sym_polarscumulative] = ACTIONS(1433), + [anon_sym_polarsdatepart] = ACTIONS(1433), + [anon_sym_polarsdecimal] = ACTIONS(1433), + [anon_sym_polarsdrop] = ACTIONS(1433), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1433), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1433), + [anon_sym_polarsdummies] = ACTIONS(1433), + [anon_sym_polarsexplode] = ACTIONS(1433), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1433), + [anon_sym_polarsfetch] = ACTIONS(1433), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1433), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1433), + [anon_sym_polarsfilter] = ACTIONS(1433), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1433), + [anon_sym_polarsfirst] = ACTIONS(1433), + [anon_sym_polarsflatten] = ACTIONS(1433), + [anon_sym_polarsget] = ACTIONS(1433), + [anon_sym_polarsget_DASHday] = ACTIONS(1433), + [anon_sym_polarsget_DASHhour] = ACTIONS(1433), + [anon_sym_polarsget_DASHminute] = ACTIONS(1433), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1433), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1433), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1433), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1433), + [anon_sym_polarsget_DASHweek] = ACTIONS(1433), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1433), + [anon_sym_polarsget_DASHyear] = ACTIONS(1433), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1433), + [anon_sym_polarsimplode] = ACTIONS(1433), + [anon_sym_polarsinteger] = ACTIONS(1433), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1433), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1433), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1433), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1433), + [anon_sym_polarsis_DASHin] = ACTIONS(1433), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1433), + [anon_sym_polarsis_DASHnull] = ACTIONS(1433), + [anon_sym_polarsis_DASHunique] = ACTIONS(1433), + [anon_sym_polarsjoin] = ACTIONS(1433), + [anon_sym_polarslast] = ACTIONS(1433), + [anon_sym_polarslen] = ACTIONS(1433), + [anon_sym_polarslit] = ACTIONS(1433), + [anon_sym_polarslowercase] = ACTIONS(1433), + [anon_sym_polarsmax] = ACTIONS(1433), + [anon_sym_polarsmean] = ACTIONS(1433), + [anon_sym_polarsmedian] = ACTIONS(1433), + [anon_sym_polarsmin] = ACTIONS(1433), + [anon_sym_polarsn_DASHunique] = ACTIONS(1433), + [anon_sym_polarsnot] = ACTIONS(1433), + [anon_sym_polarsopen] = ACTIONS(1433), + [anon_sym_polarsotherwise] = ACTIONS(1433), + [anon_sym_polarspivot] = ACTIONS(1433), + [anon_sym_polarsprofile] = ACTIONS(1433), + [anon_sym_polarsquantile] = ACTIONS(1433), + [anon_sym_polarsquery] = ACTIONS(1433), + [anon_sym_polarsrename] = ACTIONS(1433), + [anon_sym_polarsreplace] = ACTIONS(1433), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1433), + [anon_sym_polarsreverse] = ACTIONS(1433), + [anon_sym_polarsrolling] = ACTIONS(1433), + [anon_sym_polarssample] = ACTIONS(1433), + [anon_sym_polarssave] = ACTIONS(1433), + [anon_sym_polarsschema] = ACTIONS(1433), + [anon_sym_polarsselect] = ACTIONS(1433), + [anon_sym_polarsset] = ACTIONS(1433), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1433), + [anon_sym_polarsshape] = ACTIONS(1433), + [anon_sym_polarsshift] = ACTIONS(1433), + [anon_sym_polarsslice] = ACTIONS(1433), + [anon_sym_polarssort_DASHby] = ACTIONS(1433), + [anon_sym_polarsstd] = ACTIONS(1433), + [anon_sym_polarsstore_DASHget] = ACTIONS(1433), + [anon_sym_polarsstore_DASHls] = ACTIONS(1433), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1433), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1433), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1433), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1433), + [anon_sym_polarsstrftime] = ACTIONS(1433), + [anon_sym_polarssum] = ACTIONS(1433), + [anon_sym_polarssummary] = ACTIONS(1433), + [anon_sym_polarstake] = ACTIONS(1433), + [anon_sym_polarsunique] = ACTIONS(1433), + [anon_sym_polarsunnest] = ACTIONS(1433), + [anon_sym_polarsunpivot] = ACTIONS(1433), + [anon_sym_polarsuppercase] = ACTIONS(1433), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1433), + [anon_sym_polarsvar] = ACTIONS(1433), + [anon_sym_polarswhen] = ACTIONS(1433), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1433), + [anon_sym_querydb] = ACTIONS(1433), + [anon_sym_querygit] = ACTIONS(1433), + [anon_sym_queryjson] = ACTIONS(1433), + [anon_sym_queryweb] = ACTIONS(1433), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1433), + [anon_sym_queryxml] = ACTIONS(1433), + [anon_sym_randombinary] = ACTIONS(1433), + [anon_sym_randombool] = ACTIONS(1433), + [anon_sym_randomchars] = ACTIONS(1433), + [anon_sym_randomdice] = ACTIONS(1433), + [anon_sym_randomfloat] = ACTIONS(1433), + [anon_sym_randomint] = ACTIONS(1433), + [anon_sym_randomuuid] = ACTIONS(1433), + [anon_sym_rolldown] = ACTIONS(1433), + [anon_sym_rollleft] = ACTIONS(1433), + [anon_sym_rollright] = ACTIONS(1433), + [anon_sym_rollup] = ACTIONS(1433), + [anon_sym_scopealiases] = ACTIONS(1433), + [anon_sym_scopecommands] = ACTIONS(1433), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1433), + [anon_sym_scopeexterns] = ACTIONS(1433), + [anon_sym_scopemodules] = ACTIONS(1433), + [anon_sym_scopevariables] = ACTIONS(1433), + [anon_sym_seqchar] = ACTIONS(1433), + [anon_sym_seqdate] = ACTIONS(1433), + [anon_sym_skipuntil] = ACTIONS(1433), + [anon_sym_skipwhile] = ACTIONS(1433), + [anon_sym_splitcell_DASHpath] = ACTIONS(1433), + [anon_sym_splitchars] = ACTIONS(1433), + [anon_sym_splitcolumn] = ACTIONS(1433), + [anon_sym_splitlist] = ACTIONS(1433), + [anon_sym_splitrow] = ACTIONS(1433), + [anon_sym_splitwords] = ACTIONS(1433), + [anon_sym_storcreate] = ACTIONS(1433), + [anon_sym_stordelete] = ACTIONS(1433), + [anon_sym_storexport] = ACTIONS(1433), + [anon_sym_storimport] = ACTIONS(1433), + [anon_sym_storinsert] = ACTIONS(1433), + [anon_sym_storopen] = ACTIONS(1433), + [anon_sym_storreset] = ACTIONS(1433), + [anon_sym_storupdate] = ACTIONS(1433), + [anon_sym_strbexpand] = ACTIONS(1433), + [anon_sym_strcamel_DASHcase] = ACTIONS(1433), + [anon_sym_strcapitalize] = ACTIONS(1433), + [anon_sym_strcompress] = ACTIONS(1433), + [anon_sym_strcontains] = ACTIONS(1433), + [anon_sym_strdecompress] = ACTIONS(1433), + [anon_sym_strdedent] = ACTIONS(1433), + [anon_sym_strdeunicode] = ACTIONS(1433), + [anon_sym_strdistance] = ACTIONS(1433), + [anon_sym_strdowncase] = ACTIONS(1433), + [anon_sym_strends_DASHwith] = ACTIONS(1433), + [anon_sym_strexpand] = ACTIONS(1433), + [anon_sym_strindent] = ACTIONS(1433), + [anon_sym_strindex_DASHof] = ACTIONS(1433), + [anon_sym_strjoin] = ACTIONS(1433), + [anon_sym_strkebab_DASHcase] = ACTIONS(1433), + [anon_sym_strlength] = ACTIONS(1433), + [anon_sym_strpascal_DASHcase] = ACTIONS(1433), + [anon_sym_strreplace] = ACTIONS(1433), + [anon_sym_strreverse] = ACTIONS(1433), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1433), + [anon_sym_strsimilarity] = ACTIONS(1433), + [anon_sym_strsnake_DASHcase] = ACTIONS(1433), + [anon_sym_strstarts_DASHwith] = ACTIONS(1433), + [anon_sym_strstats] = ACTIONS(1433), + [anon_sym_strsubstring] = ACTIONS(1433), + [anon_sym_strtitle_DASHcase] = ACTIONS(1433), + [anon_sym_strtrim] = ACTIONS(1433), + [anon_sym_strupcase] = ACTIONS(1433), + [anon_sym_strwrap] = ACTIONS(1433), + [anon_sym_syscpu] = ACTIONS(1433), + [anon_sym_sysdisks] = ACTIONS(1433), + [anon_sym_syshost] = ACTIONS(1433), + [anon_sym_sysmem] = ACTIONS(1433), + [anon_sym_sysnet] = ACTIONS(1433), + [anon_sym_systemp] = ACTIONS(1433), + [anon_sym_sysusers] = ACTIONS(1433), + [anon_sym_takeuntil] = ACTIONS(1433), + [anon_sym_takewhile] = ACTIONS(1433), + [anon_sym_termquery] = ACTIONS(1433), + [anon_sym_termsize] = ACTIONS(1433), + [anon_sym_tobz2] = ACTIONS(1433), + [anon_sym_tocsv] = ACTIONS(1433), + [anon_sym_togz] = ACTIONS(1433), + [anon_sym_tohtml] = ACTIONS(1433), + [anon_sym_tojson] = ACTIONS(1433), + [anon_sym_tomd] = ACTIONS(1433), + [anon_sym_tomsgpack] = ACTIONS(1433), + [anon_sym_tomsgpackz] = ACTIONS(1433), + [anon_sym_tonuon] = ACTIONS(1433), + [anon_sym_toparquet] = ACTIONS(1433), + [anon_sym_toplist] = ACTIONS(1433), + [anon_sym_topng] = ACTIONS(1433), + [anon_sym_totext] = ACTIONS(1433), + [anon_sym_totoml] = ACTIONS(1433), + [anon_sym_totsv] = ACTIONS(1433), + [anon_sym_toxml] = ACTIONS(1433), + [anon_sym_toxz] = ACTIONS(1433), + [anon_sym_toyaml] = ACTIONS(1433), + [anon_sym_tozst] = ACTIONS(1433), + [anon_sym_updatecells] = ACTIONS(1433), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1433), + [anon_sym_urldecode] = ACTIONS(1433), + [anon_sym_urlencode] = ACTIONS(1433), + [anon_sym_urljoin] = ACTIONS(1433), + [anon_sym_urlparse] = ACTIONS(1433), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1433), + [anon_sym_viewfiles] = ACTIONS(1433), + [anon_sym_viewir] = ACTIONS(1433), + [anon_sym_viewsource] = ACTIONS(1433), + [anon_sym_viewspan] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1441), }, - [485] = { - [sym_expr_parenthesized] = STATE(4270), - [sym__spread_parenthesized] = STATE(4636), - [sym_val_range] = STATE(4637), - [sym__val_range] = STATE(8054), - [sym__val_range_with_end] = STATE(7607), - [sym__value] = STATE(4637), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym__spread_variable] = STATE(4638), - [sym_val_variable] = STATE(4308), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4053), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym__spread_list] = STATE(4636), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym__cmd_arg] = STATE(4833), - [sym_redirection] = STATE(4642), - [sym_short_flag] = STATE(4644), - [sym_long_flag] = STATE(4644), - [sym_unquoted] = STATE(4395), - [sym__unquoted_with_expr] = STATE(4646), - [sym__unquoted_anonymous_prefix] = STATE(7186), - [sym_comment] = STATE(485), - [sym__newline] = ACTIONS(2140), - [sym__space] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT] = ACTIONS(1972), - [anon_sym_null] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(1980), - [aux_sym__val_number_decimal_token3] = ACTIONS(1982), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1986), - [aux_sym__val_number_token2] = ACTIONS(1986), - [aux_sym__val_number_token3] = ACTIONS(1986), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym__str_single_quotes] = ACTIONS(1998), - [sym__str_back_ticks] = ACTIONS(1998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2004), - [anon_sym_err_GT] = ACTIONS(2006), - [anon_sym_out_GT] = ACTIONS(2006), - [anon_sym_e_GT] = ACTIONS(2006), - [anon_sym_o_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT] = ACTIONS(2006), - [anon_sym_err_GT_GT] = ACTIONS(2006), - [anon_sym_out_GT_GT] = ACTIONS(2006), - [anon_sym_e_GT_GT] = ACTIONS(2006), - [anon_sym_o_GT_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), - [aux_sym_unquoted_token1] = ACTIONS(2008), + [315] = { + [sym_comment] = STATE(315), + [aux_sym_cmd_identifier_token1] = ACTIONS(1443), + [aux_sym_cmd_identifier_token2] = ACTIONS(1443), + [aux_sym_cmd_identifier_token3] = ACTIONS(1443), + [aux_sym_cmd_identifier_token4] = ACTIONS(1443), + [aux_sym_cmd_identifier_token5] = ACTIONS(1443), + [aux_sym_cmd_identifier_token6] = ACTIONS(1443), + [aux_sym_cmd_identifier_token7] = ACTIONS(1443), + [aux_sym_cmd_identifier_token8] = ACTIONS(1443), + [aux_sym_cmd_identifier_token9] = ACTIONS(1443), + [aux_sym_cmd_identifier_token10] = ACTIONS(1443), + [aux_sym_cmd_identifier_token11] = ACTIONS(1443), + [aux_sym_cmd_identifier_token12] = ACTIONS(1443), + [aux_sym_cmd_identifier_token13] = ACTIONS(1443), + [aux_sym_cmd_identifier_token14] = ACTIONS(1443), + [aux_sym_cmd_identifier_token15] = ACTIONS(1443), + [aux_sym_cmd_identifier_token16] = ACTIONS(1443), + [aux_sym_cmd_identifier_token17] = ACTIONS(1443), + [aux_sym_cmd_identifier_token18] = ACTIONS(1443), + [aux_sym_cmd_identifier_token19] = ACTIONS(1443), + [aux_sym_cmd_identifier_token20] = ACTIONS(1443), + [aux_sym_cmd_identifier_token21] = ACTIONS(1443), + [aux_sym_cmd_identifier_token22] = ACTIONS(1443), + [aux_sym_cmd_identifier_token23] = ACTIONS(1443), + [aux_sym_cmd_identifier_token24] = ACTIONS(1443), + [aux_sym_cmd_identifier_token25] = ACTIONS(1443), + [aux_sym_cmd_identifier_token26] = ACTIONS(1443), + [aux_sym_cmd_identifier_token27] = ACTIONS(1443), + [aux_sym_cmd_identifier_token28] = ACTIONS(1443), + [aux_sym_cmd_identifier_token29] = ACTIONS(1443), + [aux_sym_cmd_identifier_token30] = ACTIONS(1443), + [aux_sym_cmd_identifier_token31] = ACTIONS(1443), + [aux_sym_cmd_identifier_token32] = ACTIONS(1443), + [aux_sym_cmd_identifier_token33] = ACTIONS(1443), + [aux_sym_cmd_identifier_token34] = ACTIONS(1443), + [aux_sym_cmd_identifier_token35] = ACTIONS(1443), + [aux_sym_cmd_identifier_token36] = ACTIONS(1443), + [aux_sym_cmd_identifier_token37] = ACTIONS(1443), + [aux_sym_cmd_identifier_token38] = ACTIONS(1443), + [aux_sym_cmd_identifier_token39] = ACTIONS(1443), + [aux_sym_cmd_identifier_token40] = ACTIONS(1443), + [sym__newline] = ACTIONS(1443), + [sym__space] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_DASH2] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [aux_sym_expr_unary_token1] = ACTIONS(1443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1443), + [anon_sym_DOT_DOT_LT] = ACTIONS(1443), + [anon_sym_null] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [aux_sym__val_number_decimal_token1] = ACTIONS(1443), + [aux_sym__val_number_decimal_token2] = ACTIONS(1443), + [aux_sym__val_number_decimal_token3] = ACTIONS(1443), + [aux_sym__val_number_decimal_token4] = ACTIONS(1443), + [aux_sym__val_number_token1] = ACTIONS(1443), + [aux_sym__val_number_token2] = ACTIONS(1443), + [aux_sym__val_number_token3] = ACTIONS(1443), + [aux_sym__val_number_token4] = ACTIONS(1443), + [aux_sym__val_number_token5] = ACTIONS(1443), + [aux_sym__val_number_token6] = ACTIONS(1443), + [anon_sym_0b] = ACTIONS(1443), + [anon_sym_0o] = ACTIONS(1443), + [anon_sym_0x] = ACTIONS(1443), + [sym_val_date] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym__str_single_quotes] = ACTIONS(1443), + [sym__str_back_ticks] = ACTIONS(1443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1443), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1443), + [aux_sym_env_var_token1] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_ansigradient] = ACTIONS(1443), + [anon_sym_ansilink] = ACTIONS(1443), + [anon_sym_ansistrip] = ACTIONS(1443), + [anon_sym_bitsand] = ACTIONS(1443), + [anon_sym_bitsnot] = ACTIONS(1443), + [anon_sym_bitsor] = ACTIONS(1443), + [anon_sym_bitsrol] = ACTIONS(1443), + [anon_sym_bitsror] = ACTIONS(1443), + [anon_sym_bitsshl] = ACTIONS(1443), + [anon_sym_bitsshr] = ACTIONS(1443), + [anon_sym_bitsxor] = ACTIONS(1443), + [anon_sym_bytesadd] = ACTIONS(1443), + [anon_sym_bytesat] = ACTIONS(1443), + [anon_sym_bytesbuild] = ACTIONS(1443), + [anon_sym_bytescollect] = ACTIONS(1443), + [anon_sym_bytesends_DASHwith] = ACTIONS(1443), + [anon_sym_bytesindex_DASHof] = ACTIONS(1443), + [anon_sym_byteslength] = ACTIONS(1443), + [anon_sym_bytesremove] = ACTIONS(1443), + [anon_sym_bytesreplace] = ACTIONS(1443), + [anon_sym_bytesreverse] = ACTIONS(1443), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1443), + [anon_sym_commandlineedit] = ACTIONS(1443), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1443), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1443), + [anon_sym_configenv] = ACTIONS(1443), + [anon_sym_confignu] = ACTIONS(1443), + [anon_sym_configreset] = ACTIONS(1443), + [anon_sym_dateformat] = ACTIONS(1443), + [anon_sym_datehumanize] = ACTIONS(1443), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1443), + [anon_sym_datenow] = ACTIONS(1443), + [anon_sym_dateto_DASHrecord] = ACTIONS(1443), + [anon_sym_dateto_DASHtable] = ACTIONS(1443), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1443), + [anon_sym_debuginfo] = ACTIONS(1443), + [anon_sym_debugprofile] = ACTIONS(1443), + [anon_sym_decodebase32] = ACTIONS(1443), + [anon_sym_decodebase32hex] = ACTIONS(1443), + [anon_sym_decodebase64] = ACTIONS(1443), + [anon_sym_decodehex] = ACTIONS(1443), + [anon_sym_detectcolumns] = ACTIONS(1443), + [anon_sym_dropcolumn] = ACTIONS(1443), + [anon_sym_dropnth] = ACTIONS(1443), + [anon_sym_dtadd] = ACTIONS(1443), + [anon_sym_dtdiff] = ACTIONS(1443), + [anon_sym_dtformat] = ACTIONS(1443), + [anon_sym_dtnow] = ACTIONS(1443), + [anon_sym_dtpart] = ACTIONS(1443), + [anon_sym_dtto] = ACTIONS(1443), + [anon_sym_dtutcnow] = ACTIONS(1443), + [anon_sym_eachwhile] = ACTIONS(1443), + [anon_sym_encodebase32] = ACTIONS(1443), + [anon_sym_encodebase32hex] = ACTIONS(1443), + [anon_sym_encodebase64] = ACTIONS(1443), + [anon_sym_encodehex] = ACTIONS(1443), + [anon_sym_errormake] = ACTIONS(1443), + [anon_sym_exploreir] = ACTIONS(1443), + [anon_sym_formatdate] = ACTIONS(1443), + [anon_sym_formatduration] = ACTIONS(1443), + [anon_sym_formatfilesize] = ACTIONS(1443), + [anon_sym_formatpattern] = ACTIONS(1443), + [anon_sym_frombz2] = ACTIONS(1443), + [anon_sym_fromcsv] = ACTIONS(1443), + [anon_sym_fromeml] = ACTIONS(1443), + [anon_sym_fromgz] = ACTIONS(1443), + [anon_sym_fromics] = ACTIONS(1443), + [anon_sym_fromini] = ACTIONS(1443), + [anon_sym_fromjson] = ACTIONS(1443), + [anon_sym_frommsgpack] = ACTIONS(1443), + [anon_sym_frommsgpackz] = ACTIONS(1443), + [anon_sym_fromnuon] = ACTIONS(1443), + [anon_sym_fromods] = ACTIONS(1443), + [anon_sym_fromparquet] = ACTIONS(1443), + [anon_sym_fromplist] = ACTIONS(1443), + [anon_sym_frompng] = ACTIONS(1443), + [anon_sym_fromssv] = ACTIONS(1443), + [anon_sym_fromtoml] = ACTIONS(1443), + [anon_sym_fromtsv] = ACTIONS(1443), + [anon_sym_fromurl] = ACTIONS(1443), + [anon_sym_fromvcf] = ACTIONS(1443), + [anon_sym_fromxlsx] = ACTIONS(1443), + [anon_sym_fromxml] = ACTIONS(1443), + [anon_sym_fromxz] = ACTIONS(1443), + [anon_sym_fromyaml] = ACTIONS(1443), + [anon_sym_fromyml] = ACTIONS(1443), + [anon_sym_fromzst] = ACTIONS(1443), + [anon_sym_hashmd5] = ACTIONS(1443), + [anon_sym_hashsha256] = ACTIONS(1443), + [anon_sym_helpaliases] = ACTIONS(1443), + [anon_sym_helpcommands] = ACTIONS(1443), + [anon_sym_helpescapes] = ACTIONS(1443), + [anon_sym_helpexterns] = ACTIONS(1443), + [anon_sym_helpmodules] = ACTIONS(1443), + [anon_sym_helpoperators] = ACTIONS(1443), + [anon_sym_historyimport] = ACTIONS(1443), + [anon_sym_historysession] = ACTIONS(1443), + [anon_sym_httpdelete] = ACTIONS(1443), + [anon_sym_httpget] = ACTIONS(1443), + [anon_sym_httphead] = ACTIONS(1443), + [anon_sym_httpoptions] = ACTIONS(1443), + [anon_sym_httppatch] = ACTIONS(1443), + [anon_sym_httppost] = ACTIONS(1443), + [anon_sym_httpput] = ACTIONS(1443), + [anon_sym_inputlist] = ACTIONS(1443), + [anon_sym_inputlisten] = ACTIONS(1443), + [anon_sym_intobinary] = ACTIONS(1443), + [anon_sym_intobits] = ACTIONS(1443), + [anon_sym_intobool] = ACTIONS(1443), + [anon_sym_intocell_DASHpath] = ACTIONS(1443), + [anon_sym_intodatetime] = ACTIONS(1443), + [anon_sym_intoduration] = ACTIONS(1443), + [anon_sym_intofilesize] = ACTIONS(1443), + [anon_sym_intofloat] = ACTIONS(1443), + [anon_sym_intoglob] = ACTIONS(1443), + [anon_sym_intoint] = ACTIONS(1443), + [anon_sym_intorecord] = ACTIONS(1443), + [anon_sym_intosqlite] = ACTIONS(1443), + [anon_sym_intostring] = ACTIONS(1443), + [anon_sym_intovalue] = ACTIONS(1443), + [anon_sym_jsonpath] = ACTIONS(1443), + [anon_sym_keybindingsdefault] = ACTIONS(1443), + [anon_sym_keybindingslist] = ACTIONS(1443), + [anon_sym_keybindingslisten] = ACTIONS(1443), + [anon_sym_mathabs] = ACTIONS(1443), + [anon_sym_matharccos] = ACTIONS(1443), + [anon_sym_matharccosh] = ACTIONS(1443), + [anon_sym_matharcsin] = ACTIONS(1443), + [anon_sym_matharcsinh] = ACTIONS(1443), + [anon_sym_matharctan] = ACTIONS(1443), + [anon_sym_matharctanh] = ACTIONS(1443), + [anon_sym_mathavg] = ACTIONS(1443), + [anon_sym_mathceil] = ACTIONS(1443), + [anon_sym_mathcos] = ACTIONS(1443), + [anon_sym_mathcosh] = ACTIONS(1443), + [anon_sym_mathexp] = ACTIONS(1443), + [anon_sym_mathfloor] = ACTIONS(1443), + [anon_sym_mathln] = ACTIONS(1443), + [anon_sym_mathlog] = ACTIONS(1443), + [anon_sym_mathmax] = ACTIONS(1443), + [anon_sym_mathmedian] = ACTIONS(1443), + [anon_sym_mathmin] = ACTIONS(1443), + [anon_sym_mathmode] = ACTIONS(1443), + [anon_sym_mathproduct] = ACTIONS(1443), + [anon_sym_mathround] = ACTIONS(1443), + [anon_sym_mathsin] = ACTIONS(1443), + [anon_sym_mathsinh] = ACTIONS(1443), + [anon_sym_mathsqrt] = ACTIONS(1443), + [anon_sym_mathstddev] = ACTIONS(1443), + [anon_sym_mathsum] = ACTIONS(1443), + [anon_sym_mathtan] = ACTIONS(1443), + [anon_sym_mathtanh] = ACTIONS(1443), + [anon_sym_mathvariance] = ACTIONS(1443), + [anon_sym_metadataaccess] = ACTIONS(1443), + [anon_sym_metadataset] = ACTIONS(1443), + [anon_sym_pathbasename] = ACTIONS(1443), + [anon_sym_pathdirname] = ACTIONS(1443), + [anon_sym_pathexists] = ACTIONS(1443), + [anon_sym_pathexpand] = ACTIONS(1443), + [anon_sym_pathjoin] = ACTIONS(1443), + [anon_sym_pathparse] = ACTIONS(1443), + [anon_sym_pathrelative_DASHto] = ACTIONS(1443), + [anon_sym_pathsplit] = ACTIONS(1443), + [anon_sym_pathtype] = ACTIONS(1443), + [anon_sym_pluginadd] = ACTIONS(1443), + [anon_sym_pluginlist] = ACTIONS(1443), + [anon_sym_pluginrm] = ACTIONS(1443), + [anon_sym_pluginstop] = ACTIONS(1443), + [anon_sym_polarsagg] = ACTIONS(1443), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1443), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1443), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1443), + [anon_sym_polarsappend] = ACTIONS(1443), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1443), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1443), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1443), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1443), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1443), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1443), + [anon_sym_polarsas] = ACTIONS(1443), + [anon_sym_polarsas_DASHdate] = ACTIONS(1443), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1443), + [anon_sym_polarscache] = ACTIONS(1443), + [anon_sym_polarscast] = ACTIONS(1443), + [anon_sym_polarscol] = ACTIONS(1443), + [anon_sym_polarscollect] = ACTIONS(1443), + [anon_sym_polarscolumns] = ACTIONS(1443), + [anon_sym_polarsconcat] = ACTIONS(1443), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1443), + [anon_sym_polarscontains] = ACTIONS(1443), + [anon_sym_polarscount] = ACTIONS(1443), + [anon_sym_polarscount_DASHnull] = ACTIONS(1443), + [anon_sym_polarscumulative] = ACTIONS(1443), + [anon_sym_polarsdatepart] = ACTIONS(1443), + [anon_sym_polarsdecimal] = ACTIONS(1443), + [anon_sym_polarsdrop] = ACTIONS(1443), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1443), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1443), + [anon_sym_polarsdummies] = ACTIONS(1443), + [anon_sym_polarsexplode] = ACTIONS(1443), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1443), + [anon_sym_polarsfetch] = ACTIONS(1443), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1443), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1443), + [anon_sym_polarsfilter] = ACTIONS(1443), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1443), + [anon_sym_polarsfirst] = ACTIONS(1443), + [anon_sym_polarsflatten] = ACTIONS(1443), + [anon_sym_polarsget] = ACTIONS(1443), + [anon_sym_polarsget_DASHday] = ACTIONS(1443), + [anon_sym_polarsget_DASHhour] = ACTIONS(1443), + [anon_sym_polarsget_DASHminute] = ACTIONS(1443), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1443), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1443), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1443), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1443), + [anon_sym_polarsget_DASHweek] = ACTIONS(1443), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1443), + [anon_sym_polarsget_DASHyear] = ACTIONS(1443), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1443), + [anon_sym_polarsimplode] = ACTIONS(1443), + [anon_sym_polarsinteger] = ACTIONS(1443), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1443), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1443), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1443), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1443), + [anon_sym_polarsis_DASHin] = ACTIONS(1443), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1443), + [anon_sym_polarsis_DASHnull] = ACTIONS(1443), + [anon_sym_polarsis_DASHunique] = ACTIONS(1443), + [anon_sym_polarsjoin] = ACTIONS(1443), + [anon_sym_polarslast] = ACTIONS(1443), + [anon_sym_polarslen] = ACTIONS(1443), + [anon_sym_polarslit] = ACTIONS(1443), + [anon_sym_polarslowercase] = ACTIONS(1443), + [anon_sym_polarsmax] = ACTIONS(1443), + [anon_sym_polarsmean] = ACTIONS(1443), + [anon_sym_polarsmedian] = ACTIONS(1443), + [anon_sym_polarsmin] = ACTIONS(1443), + [anon_sym_polarsn_DASHunique] = ACTIONS(1443), + [anon_sym_polarsnot] = ACTIONS(1443), + [anon_sym_polarsopen] = ACTIONS(1443), + [anon_sym_polarsotherwise] = ACTIONS(1443), + [anon_sym_polarspivot] = ACTIONS(1443), + [anon_sym_polarsprofile] = ACTIONS(1443), + [anon_sym_polarsquantile] = ACTIONS(1443), + [anon_sym_polarsquery] = ACTIONS(1443), + [anon_sym_polarsrename] = ACTIONS(1443), + [anon_sym_polarsreplace] = ACTIONS(1443), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1443), + [anon_sym_polarsreverse] = ACTIONS(1443), + [anon_sym_polarsrolling] = ACTIONS(1443), + [anon_sym_polarssample] = ACTIONS(1443), + [anon_sym_polarssave] = ACTIONS(1443), + [anon_sym_polarsschema] = ACTIONS(1443), + [anon_sym_polarsselect] = ACTIONS(1443), + [anon_sym_polarsset] = ACTIONS(1443), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1443), + [anon_sym_polarsshape] = ACTIONS(1443), + [anon_sym_polarsshift] = ACTIONS(1443), + [anon_sym_polarsslice] = ACTIONS(1443), + [anon_sym_polarssort_DASHby] = ACTIONS(1443), + [anon_sym_polarsstd] = ACTIONS(1443), + [anon_sym_polarsstore_DASHget] = ACTIONS(1443), + [anon_sym_polarsstore_DASHls] = ACTIONS(1443), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1443), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1443), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1443), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1443), + [anon_sym_polarsstrftime] = ACTIONS(1443), + [anon_sym_polarssum] = ACTIONS(1443), + [anon_sym_polarssummary] = ACTIONS(1443), + [anon_sym_polarstake] = ACTIONS(1443), + [anon_sym_polarsunique] = ACTIONS(1443), + [anon_sym_polarsunnest] = ACTIONS(1443), + [anon_sym_polarsunpivot] = ACTIONS(1443), + [anon_sym_polarsuppercase] = ACTIONS(1443), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1443), + [anon_sym_polarsvar] = ACTIONS(1443), + [anon_sym_polarswhen] = ACTIONS(1443), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1443), + [anon_sym_querydb] = ACTIONS(1443), + [anon_sym_querygit] = ACTIONS(1443), + [anon_sym_queryjson] = ACTIONS(1443), + [anon_sym_queryweb] = ACTIONS(1443), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1443), + [anon_sym_queryxml] = ACTIONS(1443), + [anon_sym_randombinary] = ACTIONS(1443), + [anon_sym_randombool] = ACTIONS(1443), + [anon_sym_randomchars] = ACTIONS(1443), + [anon_sym_randomdice] = ACTIONS(1443), + [anon_sym_randomfloat] = ACTIONS(1443), + [anon_sym_randomint] = ACTIONS(1443), + [anon_sym_randomuuid] = ACTIONS(1443), + [anon_sym_rolldown] = ACTIONS(1443), + [anon_sym_rollleft] = ACTIONS(1443), + [anon_sym_rollright] = ACTIONS(1443), + [anon_sym_rollup] = ACTIONS(1443), + [anon_sym_scopealiases] = ACTIONS(1443), + [anon_sym_scopecommands] = ACTIONS(1443), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1443), + [anon_sym_scopeexterns] = ACTIONS(1443), + [anon_sym_scopemodules] = ACTIONS(1443), + [anon_sym_scopevariables] = ACTIONS(1443), + [anon_sym_seqchar] = ACTIONS(1443), + [anon_sym_seqdate] = ACTIONS(1443), + [anon_sym_skipuntil] = ACTIONS(1443), + [anon_sym_skipwhile] = ACTIONS(1443), + [anon_sym_splitcell_DASHpath] = ACTIONS(1443), + [anon_sym_splitchars] = ACTIONS(1443), + [anon_sym_splitcolumn] = ACTIONS(1443), + [anon_sym_splitlist] = ACTIONS(1443), + [anon_sym_splitrow] = ACTIONS(1443), + [anon_sym_splitwords] = ACTIONS(1443), + [anon_sym_storcreate] = ACTIONS(1443), + [anon_sym_stordelete] = ACTIONS(1443), + [anon_sym_storexport] = ACTIONS(1443), + [anon_sym_storimport] = ACTIONS(1443), + [anon_sym_storinsert] = ACTIONS(1443), + [anon_sym_storopen] = ACTIONS(1443), + [anon_sym_storreset] = ACTIONS(1443), + [anon_sym_storupdate] = ACTIONS(1443), + [anon_sym_strbexpand] = ACTIONS(1443), + [anon_sym_strcamel_DASHcase] = ACTIONS(1443), + [anon_sym_strcapitalize] = ACTIONS(1443), + [anon_sym_strcompress] = ACTIONS(1443), + [anon_sym_strcontains] = ACTIONS(1443), + [anon_sym_strdecompress] = ACTIONS(1443), + [anon_sym_strdedent] = ACTIONS(1443), + [anon_sym_strdeunicode] = ACTIONS(1443), + [anon_sym_strdistance] = ACTIONS(1443), + [anon_sym_strdowncase] = ACTIONS(1443), + [anon_sym_strends_DASHwith] = ACTIONS(1443), + [anon_sym_strexpand] = ACTIONS(1443), + [anon_sym_strindent] = ACTIONS(1443), + [anon_sym_strindex_DASHof] = ACTIONS(1443), + [anon_sym_strjoin] = ACTIONS(1443), + [anon_sym_strkebab_DASHcase] = ACTIONS(1443), + [anon_sym_strlength] = ACTIONS(1443), + [anon_sym_strpascal_DASHcase] = ACTIONS(1443), + [anon_sym_strreplace] = ACTIONS(1443), + [anon_sym_strreverse] = ACTIONS(1443), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1443), + [anon_sym_strsimilarity] = ACTIONS(1443), + [anon_sym_strsnake_DASHcase] = ACTIONS(1443), + [anon_sym_strstarts_DASHwith] = ACTIONS(1443), + [anon_sym_strstats] = ACTIONS(1443), + [anon_sym_strsubstring] = ACTIONS(1443), + [anon_sym_strtitle_DASHcase] = ACTIONS(1443), + [anon_sym_strtrim] = ACTIONS(1443), + [anon_sym_strupcase] = ACTIONS(1443), + [anon_sym_strwrap] = ACTIONS(1443), + [anon_sym_syscpu] = ACTIONS(1443), + [anon_sym_sysdisks] = ACTIONS(1443), + [anon_sym_syshost] = ACTIONS(1443), + [anon_sym_sysmem] = ACTIONS(1443), + [anon_sym_sysnet] = ACTIONS(1443), + [anon_sym_systemp] = ACTIONS(1443), + [anon_sym_sysusers] = ACTIONS(1443), + [anon_sym_takeuntil] = ACTIONS(1443), + [anon_sym_takewhile] = ACTIONS(1443), + [anon_sym_termquery] = ACTIONS(1443), + [anon_sym_termsize] = ACTIONS(1443), + [anon_sym_tobz2] = ACTIONS(1443), + [anon_sym_tocsv] = ACTIONS(1443), + [anon_sym_togz] = ACTIONS(1443), + [anon_sym_tohtml] = ACTIONS(1443), + [anon_sym_tojson] = ACTIONS(1443), + [anon_sym_tomd] = ACTIONS(1443), + [anon_sym_tomsgpack] = ACTIONS(1443), + [anon_sym_tomsgpackz] = ACTIONS(1443), + [anon_sym_tonuon] = ACTIONS(1443), + [anon_sym_toparquet] = ACTIONS(1443), + [anon_sym_toplist] = ACTIONS(1443), + [anon_sym_topng] = ACTIONS(1443), + [anon_sym_totext] = ACTIONS(1443), + [anon_sym_totoml] = ACTIONS(1443), + [anon_sym_totsv] = ACTIONS(1443), + [anon_sym_toxml] = ACTIONS(1443), + [anon_sym_toxz] = ACTIONS(1443), + [anon_sym_toyaml] = ACTIONS(1443), + [anon_sym_tozst] = ACTIONS(1443), + [anon_sym_updatecells] = ACTIONS(1443), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1443), + [anon_sym_urldecode] = ACTIONS(1443), + [anon_sym_urlencode] = ACTIONS(1443), + [anon_sym_urljoin] = ACTIONS(1443), + [anon_sym_urlparse] = ACTIONS(1443), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1443), + [anon_sym_viewfiles] = ACTIONS(1443), + [anon_sym_viewir] = ACTIONS(1443), + [anon_sym_viewsource] = ACTIONS(1443), + [anon_sym_viewspan] = ACTIONS(1443), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2010), + [sym_raw_string_begin] = ACTIONS(1445), }, - [486] = { - [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [aux_sym_record_entry_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [316] = { + [sym_comment] = STATE(316), + [aux_sym_pipe_element_repeat1] = STATE(317), + [aux_sym_cmd_identifier_token1] = ACTIONS(1447), + [aux_sym_cmd_identifier_token2] = ACTIONS(1447), + [aux_sym_cmd_identifier_token3] = ACTIONS(1447), + [aux_sym_cmd_identifier_token4] = ACTIONS(1447), + [aux_sym_cmd_identifier_token5] = ACTIONS(1447), + [aux_sym_cmd_identifier_token6] = ACTIONS(1447), + [aux_sym_cmd_identifier_token7] = ACTIONS(1447), + [aux_sym_cmd_identifier_token8] = ACTIONS(1447), + [aux_sym_cmd_identifier_token9] = ACTIONS(1447), + [aux_sym_cmd_identifier_token10] = ACTIONS(1447), + [aux_sym_cmd_identifier_token11] = ACTIONS(1447), + [aux_sym_cmd_identifier_token12] = ACTIONS(1447), + [aux_sym_cmd_identifier_token13] = ACTIONS(1447), + [aux_sym_cmd_identifier_token14] = ACTIONS(1447), + [aux_sym_cmd_identifier_token15] = ACTIONS(1447), + [aux_sym_cmd_identifier_token16] = ACTIONS(1447), + [aux_sym_cmd_identifier_token17] = ACTIONS(1447), + [aux_sym_cmd_identifier_token18] = ACTIONS(1447), + [aux_sym_cmd_identifier_token19] = ACTIONS(1447), + [aux_sym_cmd_identifier_token20] = ACTIONS(1447), + [aux_sym_cmd_identifier_token21] = ACTIONS(1447), + [aux_sym_cmd_identifier_token22] = ACTIONS(1447), + [aux_sym_cmd_identifier_token23] = ACTIONS(1447), + [aux_sym_cmd_identifier_token24] = ACTIONS(1447), + [aux_sym_cmd_identifier_token25] = ACTIONS(1447), + [aux_sym_cmd_identifier_token26] = ACTIONS(1447), + [aux_sym_cmd_identifier_token27] = ACTIONS(1447), + [aux_sym_cmd_identifier_token28] = ACTIONS(1447), + [aux_sym_cmd_identifier_token29] = ACTIONS(1447), + [aux_sym_cmd_identifier_token30] = ACTIONS(1447), + [aux_sym_cmd_identifier_token31] = ACTIONS(1447), + [aux_sym_cmd_identifier_token32] = ACTIONS(1447), + [aux_sym_cmd_identifier_token33] = ACTIONS(1447), + [aux_sym_cmd_identifier_token34] = ACTIONS(1447), + [aux_sym_cmd_identifier_token35] = ACTIONS(1447), + [aux_sym_cmd_identifier_token36] = ACTIONS(1447), + [aux_sym_cmd_identifier_token37] = ACTIONS(1447), + [aux_sym_cmd_identifier_token38] = ACTIONS(1447), + [aux_sym_cmd_identifier_token39] = ACTIONS(1447), + [aux_sym_cmd_identifier_token40] = ACTIONS(1447), + [sym__space] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1447), + [anon_sym_DASH2] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [aux_sym_expr_unary_token1] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_DOT_DOT_LT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [aux_sym__val_number_decimal_token1] = ACTIONS(1447), + [aux_sym__val_number_decimal_token2] = ACTIONS(1447), + [aux_sym__val_number_decimal_token3] = ACTIONS(1447), + [aux_sym__val_number_decimal_token4] = ACTIONS(1447), + [aux_sym__val_number_token1] = ACTIONS(1447), + [aux_sym__val_number_token2] = ACTIONS(1447), + [aux_sym__val_number_token3] = ACTIONS(1447), + [aux_sym__val_number_token4] = ACTIONS(1447), + [aux_sym__val_number_token5] = ACTIONS(1447), + [aux_sym__val_number_token6] = ACTIONS(1447), + [anon_sym_0b] = ACTIONS(1447), + [anon_sym_0o] = ACTIONS(1447), + [anon_sym_0x] = ACTIONS(1447), + [sym_val_date] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym__str_single_quotes] = ACTIONS(1447), + [sym__str_back_ticks] = ACTIONS(1447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1447), + [aux_sym_env_var_token1] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_ansigradient] = ACTIONS(1447), + [anon_sym_ansilink] = ACTIONS(1447), + [anon_sym_ansistrip] = ACTIONS(1447), + [anon_sym_bitsand] = ACTIONS(1447), + [anon_sym_bitsnot] = ACTIONS(1447), + [anon_sym_bitsor] = ACTIONS(1447), + [anon_sym_bitsrol] = ACTIONS(1447), + [anon_sym_bitsror] = ACTIONS(1447), + [anon_sym_bitsshl] = ACTIONS(1447), + [anon_sym_bitsshr] = ACTIONS(1447), + [anon_sym_bitsxor] = ACTIONS(1447), + [anon_sym_bytesadd] = ACTIONS(1447), + [anon_sym_bytesat] = ACTIONS(1447), + [anon_sym_bytesbuild] = ACTIONS(1447), + [anon_sym_bytescollect] = ACTIONS(1447), + [anon_sym_bytesends_DASHwith] = ACTIONS(1447), + [anon_sym_bytesindex_DASHof] = ACTIONS(1447), + [anon_sym_byteslength] = ACTIONS(1447), + [anon_sym_bytesremove] = ACTIONS(1447), + [anon_sym_bytesreplace] = ACTIONS(1447), + [anon_sym_bytesreverse] = ACTIONS(1447), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1447), + [anon_sym_commandlineedit] = ACTIONS(1447), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1447), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1447), + [anon_sym_configenv] = ACTIONS(1447), + [anon_sym_confignu] = ACTIONS(1447), + [anon_sym_configreset] = ACTIONS(1447), + [anon_sym_dateformat] = ACTIONS(1447), + [anon_sym_datehumanize] = ACTIONS(1447), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1447), + [anon_sym_datenow] = ACTIONS(1447), + [anon_sym_dateto_DASHrecord] = ACTIONS(1447), + [anon_sym_dateto_DASHtable] = ACTIONS(1447), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1447), + [anon_sym_debuginfo] = ACTIONS(1447), + [anon_sym_debugprofile] = ACTIONS(1447), + [anon_sym_decodebase32] = ACTIONS(1447), + [anon_sym_decodebase32hex] = ACTIONS(1447), + [anon_sym_decodebase64] = ACTIONS(1447), + [anon_sym_decodehex] = ACTIONS(1447), + [anon_sym_detectcolumns] = ACTIONS(1447), + [anon_sym_dropcolumn] = ACTIONS(1447), + [anon_sym_dropnth] = ACTIONS(1447), + [anon_sym_dtadd] = ACTIONS(1447), + [anon_sym_dtdiff] = ACTIONS(1447), + [anon_sym_dtformat] = ACTIONS(1447), + [anon_sym_dtnow] = ACTIONS(1447), + [anon_sym_dtpart] = ACTIONS(1447), + [anon_sym_dtto] = ACTIONS(1447), + [anon_sym_dtutcnow] = ACTIONS(1447), + [anon_sym_eachwhile] = ACTIONS(1447), + [anon_sym_encodebase32] = ACTIONS(1447), + [anon_sym_encodebase32hex] = ACTIONS(1447), + [anon_sym_encodebase64] = ACTIONS(1447), + [anon_sym_encodehex] = ACTIONS(1447), + [anon_sym_errormake] = ACTIONS(1447), + [anon_sym_exploreir] = ACTIONS(1447), + [anon_sym_formatdate] = ACTIONS(1447), + [anon_sym_formatduration] = ACTIONS(1447), + [anon_sym_formatfilesize] = ACTIONS(1447), + [anon_sym_formatpattern] = ACTIONS(1447), + [anon_sym_frombz2] = ACTIONS(1447), + [anon_sym_fromcsv] = ACTIONS(1447), + [anon_sym_fromeml] = ACTIONS(1447), + [anon_sym_fromgz] = ACTIONS(1447), + [anon_sym_fromics] = ACTIONS(1447), + [anon_sym_fromini] = ACTIONS(1447), + [anon_sym_fromjson] = ACTIONS(1447), + [anon_sym_frommsgpack] = ACTIONS(1447), + [anon_sym_frommsgpackz] = ACTIONS(1447), + [anon_sym_fromnuon] = ACTIONS(1447), + [anon_sym_fromods] = ACTIONS(1447), + [anon_sym_fromparquet] = ACTIONS(1447), + [anon_sym_fromplist] = ACTIONS(1447), + [anon_sym_frompng] = ACTIONS(1447), + [anon_sym_fromssv] = ACTIONS(1447), + [anon_sym_fromtoml] = ACTIONS(1447), + [anon_sym_fromtsv] = ACTIONS(1447), + [anon_sym_fromurl] = ACTIONS(1447), + [anon_sym_fromvcf] = ACTIONS(1447), + [anon_sym_fromxlsx] = ACTIONS(1447), + [anon_sym_fromxml] = ACTIONS(1447), + [anon_sym_fromxz] = ACTIONS(1447), + [anon_sym_fromyaml] = ACTIONS(1447), + [anon_sym_fromyml] = ACTIONS(1447), + [anon_sym_fromzst] = ACTIONS(1447), + [anon_sym_hashmd5] = ACTIONS(1447), + [anon_sym_hashsha256] = ACTIONS(1447), + [anon_sym_helpaliases] = ACTIONS(1447), + [anon_sym_helpcommands] = ACTIONS(1447), + [anon_sym_helpescapes] = ACTIONS(1447), + [anon_sym_helpexterns] = ACTIONS(1447), + [anon_sym_helpmodules] = ACTIONS(1447), + [anon_sym_helpoperators] = ACTIONS(1447), + [anon_sym_historyimport] = ACTIONS(1447), + [anon_sym_historysession] = ACTIONS(1447), + [anon_sym_httpdelete] = ACTIONS(1447), + [anon_sym_httpget] = ACTIONS(1447), + [anon_sym_httphead] = ACTIONS(1447), + [anon_sym_httpoptions] = ACTIONS(1447), + [anon_sym_httppatch] = ACTIONS(1447), + [anon_sym_httppost] = ACTIONS(1447), + [anon_sym_httpput] = ACTIONS(1447), + [anon_sym_inputlist] = ACTIONS(1447), + [anon_sym_inputlisten] = ACTIONS(1447), + [anon_sym_intobinary] = ACTIONS(1447), + [anon_sym_intobits] = ACTIONS(1447), + [anon_sym_intobool] = ACTIONS(1447), + [anon_sym_intocell_DASHpath] = ACTIONS(1447), + [anon_sym_intodatetime] = ACTIONS(1447), + [anon_sym_intoduration] = ACTIONS(1447), + [anon_sym_intofilesize] = ACTIONS(1447), + [anon_sym_intofloat] = ACTIONS(1447), + [anon_sym_intoglob] = ACTIONS(1447), + [anon_sym_intoint] = ACTIONS(1447), + [anon_sym_intorecord] = ACTIONS(1447), + [anon_sym_intosqlite] = ACTIONS(1447), + [anon_sym_intostring] = ACTIONS(1447), + [anon_sym_intovalue] = ACTIONS(1447), + [anon_sym_jsonpath] = ACTIONS(1447), + [anon_sym_keybindingsdefault] = ACTIONS(1447), + [anon_sym_keybindingslist] = ACTIONS(1447), + [anon_sym_keybindingslisten] = ACTIONS(1447), + [anon_sym_mathabs] = ACTIONS(1447), + [anon_sym_matharccos] = ACTIONS(1447), + [anon_sym_matharccosh] = ACTIONS(1447), + [anon_sym_matharcsin] = ACTIONS(1447), + [anon_sym_matharcsinh] = ACTIONS(1447), + [anon_sym_matharctan] = ACTIONS(1447), + [anon_sym_matharctanh] = ACTIONS(1447), + [anon_sym_mathavg] = ACTIONS(1447), + [anon_sym_mathceil] = ACTIONS(1447), + [anon_sym_mathcos] = ACTIONS(1447), + [anon_sym_mathcosh] = ACTIONS(1447), + [anon_sym_mathexp] = ACTIONS(1447), + [anon_sym_mathfloor] = ACTIONS(1447), + [anon_sym_mathln] = ACTIONS(1447), + [anon_sym_mathlog] = ACTIONS(1447), + [anon_sym_mathmax] = ACTIONS(1447), + [anon_sym_mathmedian] = ACTIONS(1447), + [anon_sym_mathmin] = ACTIONS(1447), + [anon_sym_mathmode] = ACTIONS(1447), + [anon_sym_mathproduct] = ACTIONS(1447), + [anon_sym_mathround] = ACTIONS(1447), + [anon_sym_mathsin] = ACTIONS(1447), + [anon_sym_mathsinh] = ACTIONS(1447), + [anon_sym_mathsqrt] = ACTIONS(1447), + [anon_sym_mathstddev] = ACTIONS(1447), + [anon_sym_mathsum] = ACTIONS(1447), + [anon_sym_mathtan] = ACTIONS(1447), + [anon_sym_mathtanh] = ACTIONS(1447), + [anon_sym_mathvariance] = ACTIONS(1447), + [anon_sym_metadataaccess] = ACTIONS(1447), + [anon_sym_metadataset] = ACTIONS(1447), + [anon_sym_pathbasename] = ACTIONS(1447), + [anon_sym_pathdirname] = ACTIONS(1447), + [anon_sym_pathexists] = ACTIONS(1447), + [anon_sym_pathexpand] = ACTIONS(1447), + [anon_sym_pathjoin] = ACTIONS(1447), + [anon_sym_pathparse] = ACTIONS(1447), + [anon_sym_pathrelative_DASHto] = ACTIONS(1447), + [anon_sym_pathsplit] = ACTIONS(1447), + [anon_sym_pathtype] = ACTIONS(1447), + [anon_sym_pluginadd] = ACTIONS(1447), + [anon_sym_pluginlist] = ACTIONS(1447), + [anon_sym_pluginrm] = ACTIONS(1447), + [anon_sym_pluginstop] = ACTIONS(1447), + [anon_sym_polarsagg] = ACTIONS(1447), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1447), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1447), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1447), + [anon_sym_polarsappend] = ACTIONS(1447), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1447), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1447), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1447), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1447), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1447), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1447), + [anon_sym_polarsas] = ACTIONS(1447), + [anon_sym_polarsas_DASHdate] = ACTIONS(1447), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1447), + [anon_sym_polarscache] = ACTIONS(1447), + [anon_sym_polarscast] = ACTIONS(1447), + [anon_sym_polarscol] = ACTIONS(1447), + [anon_sym_polarscollect] = ACTIONS(1447), + [anon_sym_polarscolumns] = ACTIONS(1447), + [anon_sym_polarsconcat] = ACTIONS(1447), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1447), + [anon_sym_polarscontains] = ACTIONS(1447), + [anon_sym_polarscount] = ACTIONS(1447), + [anon_sym_polarscount_DASHnull] = ACTIONS(1447), + [anon_sym_polarscumulative] = ACTIONS(1447), + [anon_sym_polarsdatepart] = ACTIONS(1447), + [anon_sym_polarsdecimal] = ACTIONS(1447), + [anon_sym_polarsdrop] = ACTIONS(1447), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1447), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1447), + [anon_sym_polarsdummies] = ACTIONS(1447), + [anon_sym_polarsexplode] = ACTIONS(1447), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1447), + [anon_sym_polarsfetch] = ACTIONS(1447), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1447), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1447), + [anon_sym_polarsfilter] = ACTIONS(1447), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1447), + [anon_sym_polarsfirst] = ACTIONS(1447), + [anon_sym_polarsflatten] = ACTIONS(1447), + [anon_sym_polarsget] = ACTIONS(1447), + [anon_sym_polarsget_DASHday] = ACTIONS(1447), + [anon_sym_polarsget_DASHhour] = ACTIONS(1447), + [anon_sym_polarsget_DASHminute] = ACTIONS(1447), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1447), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1447), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1447), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1447), + [anon_sym_polarsget_DASHweek] = ACTIONS(1447), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1447), + [anon_sym_polarsget_DASHyear] = ACTIONS(1447), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1447), + [anon_sym_polarsimplode] = ACTIONS(1447), + [anon_sym_polarsinteger] = ACTIONS(1447), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1447), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1447), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1447), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1447), + [anon_sym_polarsis_DASHin] = ACTIONS(1447), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1447), + [anon_sym_polarsis_DASHnull] = ACTIONS(1447), + [anon_sym_polarsis_DASHunique] = ACTIONS(1447), + [anon_sym_polarsjoin] = ACTIONS(1447), + [anon_sym_polarslast] = ACTIONS(1447), + [anon_sym_polarslen] = ACTIONS(1447), + [anon_sym_polarslit] = ACTIONS(1447), + [anon_sym_polarslowercase] = ACTIONS(1447), + [anon_sym_polarsmax] = ACTIONS(1447), + [anon_sym_polarsmean] = ACTIONS(1447), + [anon_sym_polarsmedian] = ACTIONS(1447), + [anon_sym_polarsmin] = ACTIONS(1447), + [anon_sym_polarsn_DASHunique] = ACTIONS(1447), + [anon_sym_polarsnot] = ACTIONS(1447), + [anon_sym_polarsopen] = ACTIONS(1447), + [anon_sym_polarsotherwise] = ACTIONS(1447), + [anon_sym_polarspivot] = ACTIONS(1447), + [anon_sym_polarsprofile] = ACTIONS(1447), + [anon_sym_polarsquantile] = ACTIONS(1447), + [anon_sym_polarsquery] = ACTIONS(1447), + [anon_sym_polarsrename] = ACTIONS(1447), + [anon_sym_polarsreplace] = ACTIONS(1447), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1447), + [anon_sym_polarsreverse] = ACTIONS(1447), + [anon_sym_polarsrolling] = ACTIONS(1447), + [anon_sym_polarssample] = ACTIONS(1447), + [anon_sym_polarssave] = ACTIONS(1447), + [anon_sym_polarsschema] = ACTIONS(1447), + [anon_sym_polarsselect] = ACTIONS(1447), + [anon_sym_polarsset] = ACTIONS(1447), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1447), + [anon_sym_polarsshape] = ACTIONS(1447), + [anon_sym_polarsshift] = ACTIONS(1447), + [anon_sym_polarsslice] = ACTIONS(1447), + [anon_sym_polarssort_DASHby] = ACTIONS(1447), + [anon_sym_polarsstd] = ACTIONS(1447), + [anon_sym_polarsstore_DASHget] = ACTIONS(1447), + [anon_sym_polarsstore_DASHls] = ACTIONS(1447), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1447), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1447), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1447), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1447), + [anon_sym_polarsstrftime] = ACTIONS(1447), + [anon_sym_polarssum] = ACTIONS(1447), + [anon_sym_polarssummary] = ACTIONS(1447), + [anon_sym_polarstake] = ACTIONS(1447), + [anon_sym_polarsunique] = ACTIONS(1447), + [anon_sym_polarsunnest] = ACTIONS(1447), + [anon_sym_polarsunpivot] = ACTIONS(1447), + [anon_sym_polarsuppercase] = ACTIONS(1447), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1447), + [anon_sym_polarsvar] = ACTIONS(1447), + [anon_sym_polarswhen] = ACTIONS(1447), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1447), + [anon_sym_querydb] = ACTIONS(1447), + [anon_sym_querygit] = ACTIONS(1447), + [anon_sym_queryjson] = ACTIONS(1447), + [anon_sym_queryweb] = ACTIONS(1447), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1447), + [anon_sym_queryxml] = ACTIONS(1447), + [anon_sym_randombinary] = ACTIONS(1447), + [anon_sym_randombool] = ACTIONS(1447), + [anon_sym_randomchars] = ACTIONS(1447), + [anon_sym_randomdice] = ACTIONS(1447), + [anon_sym_randomfloat] = ACTIONS(1447), + [anon_sym_randomint] = ACTIONS(1447), + [anon_sym_randomuuid] = ACTIONS(1447), + [anon_sym_rolldown] = ACTIONS(1447), + [anon_sym_rollleft] = ACTIONS(1447), + [anon_sym_rollright] = ACTIONS(1447), + [anon_sym_rollup] = ACTIONS(1447), + [anon_sym_scopealiases] = ACTIONS(1447), + [anon_sym_scopecommands] = ACTIONS(1447), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1447), + [anon_sym_scopeexterns] = ACTIONS(1447), + [anon_sym_scopemodules] = ACTIONS(1447), + [anon_sym_scopevariables] = ACTIONS(1447), + [anon_sym_seqchar] = ACTIONS(1447), + [anon_sym_seqdate] = ACTIONS(1447), + [anon_sym_skipuntil] = ACTIONS(1447), + [anon_sym_skipwhile] = ACTIONS(1447), + [anon_sym_splitcell_DASHpath] = ACTIONS(1447), + [anon_sym_splitchars] = ACTIONS(1447), + [anon_sym_splitcolumn] = ACTIONS(1447), + [anon_sym_splitlist] = ACTIONS(1447), + [anon_sym_splitrow] = ACTIONS(1447), + [anon_sym_splitwords] = ACTIONS(1447), + [anon_sym_storcreate] = ACTIONS(1447), + [anon_sym_stordelete] = ACTIONS(1447), + [anon_sym_storexport] = ACTIONS(1447), + [anon_sym_storimport] = ACTIONS(1447), + [anon_sym_storinsert] = ACTIONS(1447), + [anon_sym_storopen] = ACTIONS(1447), + [anon_sym_storreset] = ACTIONS(1447), + [anon_sym_storupdate] = ACTIONS(1447), + [anon_sym_strbexpand] = ACTIONS(1447), + [anon_sym_strcamel_DASHcase] = ACTIONS(1447), + [anon_sym_strcapitalize] = ACTIONS(1447), + [anon_sym_strcompress] = ACTIONS(1447), + [anon_sym_strcontains] = ACTIONS(1447), + [anon_sym_strdecompress] = ACTIONS(1447), + [anon_sym_strdedent] = ACTIONS(1447), + [anon_sym_strdeunicode] = ACTIONS(1447), + [anon_sym_strdistance] = ACTIONS(1447), + [anon_sym_strdowncase] = ACTIONS(1447), + [anon_sym_strends_DASHwith] = ACTIONS(1447), + [anon_sym_strexpand] = ACTIONS(1447), + [anon_sym_strindent] = ACTIONS(1447), + [anon_sym_strindex_DASHof] = ACTIONS(1447), + [anon_sym_strjoin] = ACTIONS(1447), + [anon_sym_strkebab_DASHcase] = ACTIONS(1447), + [anon_sym_strlength] = ACTIONS(1447), + [anon_sym_strpascal_DASHcase] = ACTIONS(1447), + [anon_sym_strreplace] = ACTIONS(1447), + [anon_sym_strreverse] = ACTIONS(1447), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1447), + [anon_sym_strsimilarity] = ACTIONS(1447), + [anon_sym_strsnake_DASHcase] = ACTIONS(1447), + [anon_sym_strstarts_DASHwith] = ACTIONS(1447), + [anon_sym_strstats] = ACTIONS(1447), + [anon_sym_strsubstring] = ACTIONS(1447), + [anon_sym_strtitle_DASHcase] = ACTIONS(1447), + [anon_sym_strtrim] = ACTIONS(1447), + [anon_sym_strupcase] = ACTIONS(1447), + [anon_sym_strwrap] = ACTIONS(1447), + [anon_sym_syscpu] = ACTIONS(1447), + [anon_sym_sysdisks] = ACTIONS(1447), + [anon_sym_syshost] = ACTIONS(1447), + [anon_sym_sysmem] = ACTIONS(1447), + [anon_sym_sysnet] = ACTIONS(1447), + [anon_sym_systemp] = ACTIONS(1447), + [anon_sym_sysusers] = ACTIONS(1447), + [anon_sym_takeuntil] = ACTIONS(1447), + [anon_sym_takewhile] = ACTIONS(1447), + [anon_sym_termquery] = ACTIONS(1447), + [anon_sym_termsize] = ACTIONS(1447), + [anon_sym_tobz2] = ACTIONS(1447), + [anon_sym_tocsv] = ACTIONS(1447), + [anon_sym_togz] = ACTIONS(1447), + [anon_sym_tohtml] = ACTIONS(1447), + [anon_sym_tojson] = ACTIONS(1447), + [anon_sym_tomd] = ACTIONS(1447), + [anon_sym_tomsgpack] = ACTIONS(1447), + [anon_sym_tomsgpackz] = ACTIONS(1447), + [anon_sym_tonuon] = ACTIONS(1447), + [anon_sym_toparquet] = ACTIONS(1447), + [anon_sym_toplist] = ACTIONS(1447), + [anon_sym_topng] = ACTIONS(1447), + [anon_sym_totext] = ACTIONS(1447), + [anon_sym_totoml] = ACTIONS(1447), + [anon_sym_totsv] = ACTIONS(1447), + [anon_sym_toxml] = ACTIONS(1447), + [anon_sym_toxz] = ACTIONS(1447), + [anon_sym_toyaml] = ACTIONS(1447), + [anon_sym_tozst] = ACTIONS(1447), + [anon_sym_updatecells] = ACTIONS(1447), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1447), + [anon_sym_urldecode] = ACTIONS(1447), + [anon_sym_urlencode] = ACTIONS(1447), + [anon_sym_urljoin] = ACTIONS(1447), + [anon_sym_urlparse] = ACTIONS(1447), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1447), + [anon_sym_viewfiles] = ACTIONS(1447), + [anon_sym_viewir] = ACTIONS(1447), + [anon_sym_viewsource] = ACTIONS(1447), + [anon_sym_viewspan] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1451), }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_let_DASHenv] = ACTIONS(2146), - [anon_sym_mut] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [aux_sym_cmd_identifier_token1] = ACTIONS(2146), - [aux_sym_cmd_identifier_token2] = ACTIONS(2146), - [aux_sym_cmd_identifier_token3] = ACTIONS(2146), - [aux_sym_cmd_identifier_token4] = ACTIONS(2146), - [aux_sym_cmd_identifier_token5] = ACTIONS(2146), - [aux_sym_cmd_identifier_token6] = ACTIONS(2146), - [aux_sym_cmd_identifier_token7] = ACTIONS(2146), - [aux_sym_cmd_identifier_token8] = ACTIONS(2146), - [aux_sym_cmd_identifier_token9] = ACTIONS(2146), - [aux_sym_cmd_identifier_token10] = ACTIONS(2146), - [aux_sym_cmd_identifier_token11] = ACTIONS(2146), - [aux_sym_cmd_identifier_token12] = ACTIONS(2146), - [aux_sym_cmd_identifier_token13] = ACTIONS(2146), - [aux_sym_cmd_identifier_token14] = ACTIONS(2146), - [aux_sym_cmd_identifier_token15] = ACTIONS(2146), - [aux_sym_cmd_identifier_token16] = ACTIONS(2146), - [aux_sym_cmd_identifier_token17] = ACTIONS(2146), - [aux_sym_cmd_identifier_token18] = ACTIONS(2146), - [aux_sym_cmd_identifier_token19] = ACTIONS(2146), - [aux_sym_cmd_identifier_token20] = ACTIONS(2146), - [aux_sym_cmd_identifier_token21] = ACTIONS(2146), - [aux_sym_cmd_identifier_token22] = ACTIONS(2146), - [aux_sym_cmd_identifier_token23] = ACTIONS(2146), - [aux_sym_cmd_identifier_token24] = ACTIONS(2146), - [aux_sym_cmd_identifier_token25] = ACTIONS(2146), - [aux_sym_cmd_identifier_token26] = ACTIONS(2146), - [aux_sym_cmd_identifier_token27] = ACTIONS(2146), - [aux_sym_cmd_identifier_token28] = ACTIONS(2146), - [aux_sym_cmd_identifier_token29] = ACTIONS(2146), - [aux_sym_cmd_identifier_token30] = ACTIONS(2146), - [aux_sym_cmd_identifier_token31] = ACTIONS(2146), - [aux_sym_cmd_identifier_token32] = ACTIONS(2146), - [aux_sym_cmd_identifier_token33] = ACTIONS(2146), - [aux_sym_cmd_identifier_token34] = ACTIONS(2146), - [aux_sym_cmd_identifier_token35] = ACTIONS(2146), - [aux_sym_cmd_identifier_token36] = ACTIONS(2146), - [aux_sym_cmd_identifier_token37] = ACTIONS(2146), - [aux_sym_cmd_identifier_token38] = ACTIONS(2146), - [aux_sym_cmd_identifier_token39] = ACTIONS(2146), - [aux_sym_cmd_identifier_token40] = ACTIONS(2146), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_export_DASHenv] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_module] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_error] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_in2] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_make] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_source] = ACTIONS(2146), - [anon_sym_source_DASHenv] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_hide] = ACTIONS(2146), - [anon_sym_hide_DASHenv] = ACTIONS(2146), - [anon_sym_overlay] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(2148), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2146), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2146), - [aux_sym__val_number_decimal_token3] = ACTIONS(2146), - [aux_sym__val_number_decimal_token4] = ACTIONS(2146), - [aux_sym__val_number_token1] = ACTIONS(2146), - [aux_sym__val_number_token2] = ACTIONS(2146), - [aux_sym__val_number_token3] = ACTIONS(2146), - [aux_sym__val_number_token4] = ACTIONS(2146), - [aux_sym__val_number_token5] = ACTIONS(2146), - [aux_sym__val_number_token6] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2146), - [sym__entry_separator] = ACTIONS(2152), + [317] = { + [sym_comment] = STATE(317), + [aux_sym_pipe_element_repeat1] = STATE(317), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1453), + [aux_sym_cmd_identifier_token3] = ACTIONS(1453), + [aux_sym_cmd_identifier_token4] = ACTIONS(1453), + [aux_sym_cmd_identifier_token5] = ACTIONS(1453), + [aux_sym_cmd_identifier_token6] = ACTIONS(1453), + [aux_sym_cmd_identifier_token7] = ACTIONS(1453), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1453), + [aux_sym_cmd_identifier_token11] = ACTIONS(1453), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1453), + [aux_sym_cmd_identifier_token17] = ACTIONS(1453), + [aux_sym_cmd_identifier_token18] = ACTIONS(1453), + [aux_sym_cmd_identifier_token19] = ACTIONS(1453), + [aux_sym_cmd_identifier_token20] = ACTIONS(1453), + [aux_sym_cmd_identifier_token21] = ACTIONS(1453), + [aux_sym_cmd_identifier_token22] = ACTIONS(1453), + [aux_sym_cmd_identifier_token23] = ACTIONS(1453), + [aux_sym_cmd_identifier_token24] = ACTIONS(1453), + [aux_sym_cmd_identifier_token25] = ACTIONS(1453), + [aux_sym_cmd_identifier_token26] = ACTIONS(1453), + [aux_sym_cmd_identifier_token27] = ACTIONS(1453), + [aux_sym_cmd_identifier_token28] = ACTIONS(1453), + [aux_sym_cmd_identifier_token29] = ACTIONS(1453), + [aux_sym_cmd_identifier_token30] = ACTIONS(1453), + [aux_sym_cmd_identifier_token31] = ACTIONS(1453), + [aux_sym_cmd_identifier_token32] = ACTIONS(1453), + [aux_sym_cmd_identifier_token33] = ACTIONS(1453), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1453), + [aux_sym_cmd_identifier_token36] = ACTIONS(1453), + [aux_sym_cmd_identifier_token37] = ACTIONS(1453), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1453), + [aux_sym_cmd_identifier_token40] = ACTIONS(1453), + [sym__space] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [aux_sym_expr_unary_token1] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_DOT_DOT_LT] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1453), + [aux_sym__val_number_decimal_token3] = ACTIONS(1453), + [aux_sym__val_number_decimal_token4] = ACTIONS(1453), + [aux_sym__val_number_token1] = ACTIONS(1453), + [aux_sym__val_number_token2] = ACTIONS(1453), + [aux_sym__val_number_token3] = ACTIONS(1453), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym__str_single_quotes] = ACTIONS(1453), + [sym__str_back_ticks] = ACTIONS(1453), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1453), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_ansigradient] = ACTIONS(1453), + [anon_sym_ansilink] = ACTIONS(1453), + [anon_sym_ansistrip] = ACTIONS(1453), + [anon_sym_bitsand] = ACTIONS(1453), + [anon_sym_bitsnot] = ACTIONS(1453), + [anon_sym_bitsor] = ACTIONS(1453), + [anon_sym_bitsrol] = ACTIONS(1453), + [anon_sym_bitsror] = ACTIONS(1453), + [anon_sym_bitsshl] = ACTIONS(1453), + [anon_sym_bitsshr] = ACTIONS(1453), + [anon_sym_bitsxor] = ACTIONS(1453), + [anon_sym_bytesadd] = ACTIONS(1453), + [anon_sym_bytesat] = ACTIONS(1453), + [anon_sym_bytesbuild] = ACTIONS(1453), + [anon_sym_bytescollect] = ACTIONS(1453), + [anon_sym_bytesends_DASHwith] = ACTIONS(1453), + [anon_sym_bytesindex_DASHof] = ACTIONS(1453), + [anon_sym_byteslength] = ACTIONS(1453), + [anon_sym_bytesremove] = ACTIONS(1453), + [anon_sym_bytesreplace] = ACTIONS(1453), + [anon_sym_bytesreverse] = ACTIONS(1453), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1453), + [anon_sym_commandlineedit] = ACTIONS(1453), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1453), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1453), + [anon_sym_configenv] = ACTIONS(1453), + [anon_sym_confignu] = ACTIONS(1453), + [anon_sym_configreset] = ACTIONS(1453), + [anon_sym_dateformat] = ACTIONS(1453), + [anon_sym_datehumanize] = ACTIONS(1453), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1453), + [anon_sym_datenow] = ACTIONS(1453), + [anon_sym_dateto_DASHrecord] = ACTIONS(1453), + [anon_sym_dateto_DASHtable] = ACTIONS(1453), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1453), + [anon_sym_debuginfo] = ACTIONS(1453), + [anon_sym_debugprofile] = ACTIONS(1453), + [anon_sym_decodebase32] = ACTIONS(1453), + [anon_sym_decodebase32hex] = ACTIONS(1453), + [anon_sym_decodebase64] = ACTIONS(1453), + [anon_sym_decodehex] = ACTIONS(1453), + [anon_sym_detectcolumns] = ACTIONS(1453), + [anon_sym_dropcolumn] = ACTIONS(1453), + [anon_sym_dropnth] = ACTIONS(1453), + [anon_sym_dtadd] = ACTIONS(1453), + [anon_sym_dtdiff] = ACTIONS(1453), + [anon_sym_dtformat] = ACTIONS(1453), + [anon_sym_dtnow] = ACTIONS(1453), + [anon_sym_dtpart] = ACTIONS(1453), + [anon_sym_dtto] = ACTIONS(1453), + [anon_sym_dtutcnow] = ACTIONS(1453), + [anon_sym_eachwhile] = ACTIONS(1453), + [anon_sym_encodebase32] = ACTIONS(1453), + [anon_sym_encodebase32hex] = ACTIONS(1453), + [anon_sym_encodebase64] = ACTIONS(1453), + [anon_sym_encodehex] = ACTIONS(1453), + [anon_sym_errormake] = ACTIONS(1453), + [anon_sym_exploreir] = ACTIONS(1453), + [anon_sym_formatdate] = ACTIONS(1453), + [anon_sym_formatduration] = ACTIONS(1453), + [anon_sym_formatfilesize] = ACTIONS(1453), + [anon_sym_formatpattern] = ACTIONS(1453), + [anon_sym_frombz2] = ACTIONS(1453), + [anon_sym_fromcsv] = ACTIONS(1453), + [anon_sym_fromeml] = ACTIONS(1453), + [anon_sym_fromgz] = ACTIONS(1453), + [anon_sym_fromics] = ACTIONS(1453), + [anon_sym_fromini] = ACTIONS(1453), + [anon_sym_fromjson] = ACTIONS(1453), + [anon_sym_frommsgpack] = ACTIONS(1453), + [anon_sym_frommsgpackz] = ACTIONS(1453), + [anon_sym_fromnuon] = ACTIONS(1453), + [anon_sym_fromods] = ACTIONS(1453), + [anon_sym_fromparquet] = ACTIONS(1453), + [anon_sym_fromplist] = ACTIONS(1453), + [anon_sym_frompng] = ACTIONS(1453), + [anon_sym_fromssv] = ACTIONS(1453), + [anon_sym_fromtoml] = ACTIONS(1453), + [anon_sym_fromtsv] = ACTIONS(1453), + [anon_sym_fromurl] = ACTIONS(1453), + [anon_sym_fromvcf] = ACTIONS(1453), + [anon_sym_fromxlsx] = ACTIONS(1453), + [anon_sym_fromxml] = ACTIONS(1453), + [anon_sym_fromxz] = ACTIONS(1453), + [anon_sym_fromyaml] = ACTIONS(1453), + [anon_sym_fromyml] = ACTIONS(1453), + [anon_sym_fromzst] = ACTIONS(1453), + [anon_sym_hashmd5] = ACTIONS(1453), + [anon_sym_hashsha256] = ACTIONS(1453), + [anon_sym_helpaliases] = ACTIONS(1453), + [anon_sym_helpcommands] = ACTIONS(1453), + [anon_sym_helpescapes] = ACTIONS(1453), + [anon_sym_helpexterns] = ACTIONS(1453), + [anon_sym_helpmodules] = ACTIONS(1453), + [anon_sym_helpoperators] = ACTIONS(1453), + [anon_sym_historyimport] = ACTIONS(1453), + [anon_sym_historysession] = ACTIONS(1453), + [anon_sym_httpdelete] = ACTIONS(1453), + [anon_sym_httpget] = ACTIONS(1453), + [anon_sym_httphead] = ACTIONS(1453), + [anon_sym_httpoptions] = ACTIONS(1453), + [anon_sym_httppatch] = ACTIONS(1453), + [anon_sym_httppost] = ACTIONS(1453), + [anon_sym_httpput] = ACTIONS(1453), + [anon_sym_inputlist] = ACTIONS(1453), + [anon_sym_inputlisten] = ACTIONS(1453), + [anon_sym_intobinary] = ACTIONS(1453), + [anon_sym_intobits] = ACTIONS(1453), + [anon_sym_intobool] = ACTIONS(1453), + [anon_sym_intocell_DASHpath] = ACTIONS(1453), + [anon_sym_intodatetime] = ACTIONS(1453), + [anon_sym_intoduration] = ACTIONS(1453), + [anon_sym_intofilesize] = ACTIONS(1453), + [anon_sym_intofloat] = ACTIONS(1453), + [anon_sym_intoglob] = ACTIONS(1453), + [anon_sym_intoint] = ACTIONS(1453), + [anon_sym_intorecord] = ACTIONS(1453), + [anon_sym_intosqlite] = ACTIONS(1453), + [anon_sym_intostring] = ACTIONS(1453), + [anon_sym_intovalue] = ACTIONS(1453), + [anon_sym_jsonpath] = ACTIONS(1453), + [anon_sym_keybindingsdefault] = ACTIONS(1453), + [anon_sym_keybindingslist] = ACTIONS(1453), + [anon_sym_keybindingslisten] = ACTIONS(1453), + [anon_sym_mathabs] = ACTIONS(1453), + [anon_sym_matharccos] = ACTIONS(1453), + [anon_sym_matharccosh] = ACTIONS(1453), + [anon_sym_matharcsin] = ACTIONS(1453), + [anon_sym_matharcsinh] = ACTIONS(1453), + [anon_sym_matharctan] = ACTIONS(1453), + [anon_sym_matharctanh] = ACTIONS(1453), + [anon_sym_mathavg] = ACTIONS(1453), + [anon_sym_mathceil] = ACTIONS(1453), + [anon_sym_mathcos] = ACTIONS(1453), + [anon_sym_mathcosh] = ACTIONS(1453), + [anon_sym_mathexp] = ACTIONS(1453), + [anon_sym_mathfloor] = ACTIONS(1453), + [anon_sym_mathln] = ACTIONS(1453), + [anon_sym_mathlog] = ACTIONS(1453), + [anon_sym_mathmax] = ACTIONS(1453), + [anon_sym_mathmedian] = ACTIONS(1453), + [anon_sym_mathmin] = ACTIONS(1453), + [anon_sym_mathmode] = ACTIONS(1453), + [anon_sym_mathproduct] = ACTIONS(1453), + [anon_sym_mathround] = ACTIONS(1453), + [anon_sym_mathsin] = ACTIONS(1453), + [anon_sym_mathsinh] = ACTIONS(1453), + [anon_sym_mathsqrt] = ACTIONS(1453), + [anon_sym_mathstddev] = ACTIONS(1453), + [anon_sym_mathsum] = ACTIONS(1453), + [anon_sym_mathtan] = ACTIONS(1453), + [anon_sym_mathtanh] = ACTIONS(1453), + [anon_sym_mathvariance] = ACTIONS(1453), + [anon_sym_metadataaccess] = ACTIONS(1453), + [anon_sym_metadataset] = ACTIONS(1453), + [anon_sym_pathbasename] = ACTIONS(1453), + [anon_sym_pathdirname] = ACTIONS(1453), + [anon_sym_pathexists] = ACTIONS(1453), + [anon_sym_pathexpand] = ACTIONS(1453), + [anon_sym_pathjoin] = ACTIONS(1453), + [anon_sym_pathparse] = ACTIONS(1453), + [anon_sym_pathrelative_DASHto] = ACTIONS(1453), + [anon_sym_pathsplit] = ACTIONS(1453), + [anon_sym_pathtype] = ACTIONS(1453), + [anon_sym_pluginadd] = ACTIONS(1453), + [anon_sym_pluginlist] = ACTIONS(1453), + [anon_sym_pluginrm] = ACTIONS(1453), + [anon_sym_pluginstop] = ACTIONS(1453), + [anon_sym_polarsagg] = ACTIONS(1453), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1453), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1453), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1453), + [anon_sym_polarsappend] = ACTIONS(1453), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1453), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1453), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1453), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1453), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1453), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1453), + [anon_sym_polarsas] = ACTIONS(1453), + [anon_sym_polarsas_DASHdate] = ACTIONS(1453), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1453), + [anon_sym_polarscache] = ACTIONS(1453), + [anon_sym_polarscast] = ACTIONS(1453), + [anon_sym_polarscol] = ACTIONS(1453), + [anon_sym_polarscollect] = ACTIONS(1453), + [anon_sym_polarscolumns] = ACTIONS(1453), + [anon_sym_polarsconcat] = ACTIONS(1453), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1453), + [anon_sym_polarscontains] = ACTIONS(1453), + [anon_sym_polarscount] = ACTIONS(1453), + [anon_sym_polarscount_DASHnull] = ACTIONS(1453), + [anon_sym_polarscumulative] = ACTIONS(1453), + [anon_sym_polarsdatepart] = ACTIONS(1453), + [anon_sym_polarsdecimal] = ACTIONS(1453), + [anon_sym_polarsdrop] = ACTIONS(1453), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1453), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1453), + [anon_sym_polarsdummies] = ACTIONS(1453), + [anon_sym_polarsexplode] = ACTIONS(1453), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1453), + [anon_sym_polarsfetch] = ACTIONS(1453), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1453), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1453), + [anon_sym_polarsfilter] = ACTIONS(1453), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1453), + [anon_sym_polarsfirst] = ACTIONS(1453), + [anon_sym_polarsflatten] = ACTIONS(1453), + [anon_sym_polarsget] = ACTIONS(1453), + [anon_sym_polarsget_DASHday] = ACTIONS(1453), + [anon_sym_polarsget_DASHhour] = ACTIONS(1453), + [anon_sym_polarsget_DASHminute] = ACTIONS(1453), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1453), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1453), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1453), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1453), + [anon_sym_polarsget_DASHweek] = ACTIONS(1453), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1453), + [anon_sym_polarsget_DASHyear] = ACTIONS(1453), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1453), + [anon_sym_polarsimplode] = ACTIONS(1453), + [anon_sym_polarsinteger] = ACTIONS(1453), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1453), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1453), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1453), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1453), + [anon_sym_polarsis_DASHin] = ACTIONS(1453), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1453), + [anon_sym_polarsis_DASHnull] = ACTIONS(1453), + [anon_sym_polarsis_DASHunique] = ACTIONS(1453), + [anon_sym_polarsjoin] = ACTIONS(1453), + [anon_sym_polarslast] = ACTIONS(1453), + [anon_sym_polarslen] = ACTIONS(1453), + [anon_sym_polarslit] = ACTIONS(1453), + [anon_sym_polarslowercase] = ACTIONS(1453), + [anon_sym_polarsmax] = ACTIONS(1453), + [anon_sym_polarsmean] = ACTIONS(1453), + [anon_sym_polarsmedian] = ACTIONS(1453), + [anon_sym_polarsmin] = ACTIONS(1453), + [anon_sym_polarsn_DASHunique] = ACTIONS(1453), + [anon_sym_polarsnot] = ACTIONS(1453), + [anon_sym_polarsopen] = ACTIONS(1453), + [anon_sym_polarsotherwise] = ACTIONS(1453), + [anon_sym_polarspivot] = ACTIONS(1453), + [anon_sym_polarsprofile] = ACTIONS(1453), + [anon_sym_polarsquantile] = ACTIONS(1453), + [anon_sym_polarsquery] = ACTIONS(1453), + [anon_sym_polarsrename] = ACTIONS(1453), + [anon_sym_polarsreplace] = ACTIONS(1453), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1453), + [anon_sym_polarsreverse] = ACTIONS(1453), + [anon_sym_polarsrolling] = ACTIONS(1453), + [anon_sym_polarssample] = ACTIONS(1453), + [anon_sym_polarssave] = ACTIONS(1453), + [anon_sym_polarsschema] = ACTIONS(1453), + [anon_sym_polarsselect] = ACTIONS(1453), + [anon_sym_polarsset] = ACTIONS(1453), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1453), + [anon_sym_polarsshape] = ACTIONS(1453), + [anon_sym_polarsshift] = ACTIONS(1453), + [anon_sym_polarsslice] = ACTIONS(1453), + [anon_sym_polarssort_DASHby] = ACTIONS(1453), + [anon_sym_polarsstd] = ACTIONS(1453), + [anon_sym_polarsstore_DASHget] = ACTIONS(1453), + [anon_sym_polarsstore_DASHls] = ACTIONS(1453), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1453), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1453), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1453), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1453), + [anon_sym_polarsstrftime] = ACTIONS(1453), + [anon_sym_polarssum] = ACTIONS(1453), + [anon_sym_polarssummary] = ACTIONS(1453), + [anon_sym_polarstake] = ACTIONS(1453), + [anon_sym_polarsunique] = ACTIONS(1453), + [anon_sym_polarsunnest] = ACTIONS(1453), + [anon_sym_polarsunpivot] = ACTIONS(1453), + [anon_sym_polarsuppercase] = ACTIONS(1453), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1453), + [anon_sym_polarsvar] = ACTIONS(1453), + [anon_sym_polarswhen] = ACTIONS(1453), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1453), + [anon_sym_querydb] = ACTIONS(1453), + [anon_sym_querygit] = ACTIONS(1453), + [anon_sym_queryjson] = ACTIONS(1453), + [anon_sym_queryweb] = ACTIONS(1453), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1453), + [anon_sym_queryxml] = ACTIONS(1453), + [anon_sym_randombinary] = ACTIONS(1453), + [anon_sym_randombool] = ACTIONS(1453), + [anon_sym_randomchars] = ACTIONS(1453), + [anon_sym_randomdice] = ACTIONS(1453), + [anon_sym_randomfloat] = ACTIONS(1453), + [anon_sym_randomint] = ACTIONS(1453), + [anon_sym_randomuuid] = ACTIONS(1453), + [anon_sym_rolldown] = ACTIONS(1453), + [anon_sym_rollleft] = ACTIONS(1453), + [anon_sym_rollright] = ACTIONS(1453), + [anon_sym_rollup] = ACTIONS(1453), + [anon_sym_scopealiases] = ACTIONS(1453), + [anon_sym_scopecommands] = ACTIONS(1453), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1453), + [anon_sym_scopeexterns] = ACTIONS(1453), + [anon_sym_scopemodules] = ACTIONS(1453), + [anon_sym_scopevariables] = ACTIONS(1453), + [anon_sym_seqchar] = ACTIONS(1453), + [anon_sym_seqdate] = ACTIONS(1453), + [anon_sym_skipuntil] = ACTIONS(1453), + [anon_sym_skipwhile] = ACTIONS(1453), + [anon_sym_splitcell_DASHpath] = ACTIONS(1453), + [anon_sym_splitchars] = ACTIONS(1453), + [anon_sym_splitcolumn] = ACTIONS(1453), + [anon_sym_splitlist] = ACTIONS(1453), + [anon_sym_splitrow] = ACTIONS(1453), + [anon_sym_splitwords] = ACTIONS(1453), + [anon_sym_storcreate] = ACTIONS(1453), + [anon_sym_stordelete] = ACTIONS(1453), + [anon_sym_storexport] = ACTIONS(1453), + [anon_sym_storimport] = ACTIONS(1453), + [anon_sym_storinsert] = ACTIONS(1453), + [anon_sym_storopen] = ACTIONS(1453), + [anon_sym_storreset] = ACTIONS(1453), + [anon_sym_storupdate] = ACTIONS(1453), + [anon_sym_strbexpand] = ACTIONS(1453), + [anon_sym_strcamel_DASHcase] = ACTIONS(1453), + [anon_sym_strcapitalize] = ACTIONS(1453), + [anon_sym_strcompress] = ACTIONS(1453), + [anon_sym_strcontains] = ACTIONS(1453), + [anon_sym_strdecompress] = ACTIONS(1453), + [anon_sym_strdedent] = ACTIONS(1453), + [anon_sym_strdeunicode] = ACTIONS(1453), + [anon_sym_strdistance] = ACTIONS(1453), + [anon_sym_strdowncase] = ACTIONS(1453), + [anon_sym_strends_DASHwith] = ACTIONS(1453), + [anon_sym_strexpand] = ACTIONS(1453), + [anon_sym_strindent] = ACTIONS(1453), + [anon_sym_strindex_DASHof] = ACTIONS(1453), + [anon_sym_strjoin] = ACTIONS(1453), + [anon_sym_strkebab_DASHcase] = ACTIONS(1453), + [anon_sym_strlength] = ACTIONS(1453), + [anon_sym_strpascal_DASHcase] = ACTIONS(1453), + [anon_sym_strreplace] = ACTIONS(1453), + [anon_sym_strreverse] = ACTIONS(1453), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1453), + [anon_sym_strsimilarity] = ACTIONS(1453), + [anon_sym_strsnake_DASHcase] = ACTIONS(1453), + [anon_sym_strstarts_DASHwith] = ACTIONS(1453), + [anon_sym_strstats] = ACTIONS(1453), + [anon_sym_strsubstring] = ACTIONS(1453), + [anon_sym_strtitle_DASHcase] = ACTIONS(1453), + [anon_sym_strtrim] = ACTIONS(1453), + [anon_sym_strupcase] = ACTIONS(1453), + [anon_sym_strwrap] = ACTIONS(1453), + [anon_sym_syscpu] = ACTIONS(1453), + [anon_sym_sysdisks] = ACTIONS(1453), + [anon_sym_syshost] = ACTIONS(1453), + [anon_sym_sysmem] = ACTIONS(1453), + [anon_sym_sysnet] = ACTIONS(1453), + [anon_sym_systemp] = ACTIONS(1453), + [anon_sym_sysusers] = ACTIONS(1453), + [anon_sym_takeuntil] = ACTIONS(1453), + [anon_sym_takewhile] = ACTIONS(1453), + [anon_sym_termquery] = ACTIONS(1453), + [anon_sym_termsize] = ACTIONS(1453), + [anon_sym_tobz2] = ACTIONS(1453), + [anon_sym_tocsv] = ACTIONS(1453), + [anon_sym_togz] = ACTIONS(1453), + [anon_sym_tohtml] = ACTIONS(1453), + [anon_sym_tojson] = ACTIONS(1453), + [anon_sym_tomd] = ACTIONS(1453), + [anon_sym_tomsgpack] = ACTIONS(1453), + [anon_sym_tomsgpackz] = ACTIONS(1453), + [anon_sym_tonuon] = ACTIONS(1453), + [anon_sym_toparquet] = ACTIONS(1453), + [anon_sym_toplist] = ACTIONS(1453), + [anon_sym_topng] = ACTIONS(1453), + [anon_sym_totext] = ACTIONS(1453), + [anon_sym_totoml] = ACTIONS(1453), + [anon_sym_totsv] = ACTIONS(1453), + [anon_sym_toxml] = ACTIONS(1453), + [anon_sym_toxz] = ACTIONS(1453), + [anon_sym_toyaml] = ACTIONS(1453), + [anon_sym_tozst] = ACTIONS(1453), + [anon_sym_updatecells] = ACTIONS(1453), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1453), + [anon_sym_urldecode] = ACTIONS(1453), + [anon_sym_urlencode] = ACTIONS(1453), + [anon_sym_urljoin] = ACTIONS(1453), + [anon_sym_urlparse] = ACTIONS(1453), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1453), + [anon_sym_viewfiles] = ACTIONS(1453), + [anon_sym_viewir] = ACTIONS(1453), + [anon_sym_viewsource] = ACTIONS(1453), + [anon_sym_viewspan] = ACTIONS(1453), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2152), + [sym_raw_string_begin] = ACTIONS(1458), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [aux_sym_cmd_identifier_token37] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [sym__entry_separator] = ACTIONS(1046), + [318] = { + [sym_comment] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(1233), + [aux_sym_cmd_identifier_token3] = ACTIONS(1233), + [aux_sym_cmd_identifier_token4] = ACTIONS(1233), + [aux_sym_cmd_identifier_token5] = ACTIONS(1233), + [aux_sym_cmd_identifier_token6] = ACTIONS(1233), + [aux_sym_cmd_identifier_token7] = ACTIONS(1233), + [aux_sym_cmd_identifier_token8] = ACTIONS(1233), + [aux_sym_cmd_identifier_token9] = ACTIONS(1231), + [aux_sym_cmd_identifier_token10] = ACTIONS(1233), + [aux_sym_cmd_identifier_token11] = ACTIONS(1233), + [aux_sym_cmd_identifier_token12] = ACTIONS(1233), + [aux_sym_cmd_identifier_token13] = ACTIONS(1231), + [aux_sym_cmd_identifier_token14] = ACTIONS(1233), + [aux_sym_cmd_identifier_token15] = ACTIONS(1231), + [aux_sym_cmd_identifier_token16] = ACTIONS(1233), + [aux_sym_cmd_identifier_token17] = ACTIONS(1233), + [aux_sym_cmd_identifier_token18] = ACTIONS(1231), + [aux_sym_cmd_identifier_token19] = ACTIONS(1233), + [aux_sym_cmd_identifier_token20] = ACTIONS(1233), + [aux_sym_cmd_identifier_token21] = ACTIONS(1233), + [aux_sym_cmd_identifier_token22] = ACTIONS(1233), + [aux_sym_cmd_identifier_token23] = ACTIONS(1233), + [aux_sym_cmd_identifier_token24] = ACTIONS(1233), + [aux_sym_cmd_identifier_token25] = ACTIONS(1233), + [aux_sym_cmd_identifier_token26] = ACTIONS(1233), + [aux_sym_cmd_identifier_token27] = ACTIONS(1233), + [aux_sym_cmd_identifier_token28] = ACTIONS(1233), + [aux_sym_cmd_identifier_token29] = ACTIONS(1233), + [aux_sym_cmd_identifier_token30] = ACTIONS(1233), + [aux_sym_cmd_identifier_token31] = ACTIONS(1233), + [aux_sym_cmd_identifier_token32] = ACTIONS(1231), + [aux_sym_cmd_identifier_token33] = ACTIONS(1233), + [aux_sym_cmd_identifier_token34] = ACTIONS(1231), + [aux_sym_cmd_identifier_token35] = ACTIONS(1233), + [aux_sym_cmd_identifier_token36] = ACTIONS(1233), + [aux_sym_cmd_identifier_token37] = ACTIONS(1233), + [aux_sym_cmd_identifier_token38] = ACTIONS(1231), + [aux_sym_cmd_identifier_token39] = ACTIONS(1233), + [aux_sym_cmd_identifier_token40] = ACTIONS(1233), + [sym__newline] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_DASH2] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [aux_sym_expr_unary_token1] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_DOT_DOT_LT] = ACTIONS(1233), + [anon_sym_null] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1231), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_decimal_token4] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_0b] = ACTIONS(1231), + [anon_sym_0o] = ACTIONS(1231), + [anon_sym_0x] = ACTIONS(1231), + [sym_val_date] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_ansigradient] = ACTIONS(1233), + [anon_sym_ansilink] = ACTIONS(1233), + [anon_sym_ansistrip] = ACTIONS(1233), + [anon_sym_bitsand] = ACTIONS(1233), + [anon_sym_bitsnot] = ACTIONS(1233), + [anon_sym_bitsor] = ACTIONS(1233), + [anon_sym_bitsrol] = ACTIONS(1233), + [anon_sym_bitsror] = ACTIONS(1233), + [anon_sym_bitsshl] = ACTIONS(1233), + [anon_sym_bitsshr] = ACTIONS(1233), + [anon_sym_bitsxor] = ACTIONS(1233), + [anon_sym_bytesadd] = ACTIONS(1233), + [anon_sym_bytesat] = ACTIONS(1233), + [anon_sym_bytesbuild] = ACTIONS(1233), + [anon_sym_bytescollect] = ACTIONS(1233), + [anon_sym_bytesends_DASHwith] = ACTIONS(1233), + [anon_sym_bytesindex_DASHof] = ACTIONS(1233), + [anon_sym_byteslength] = ACTIONS(1233), + [anon_sym_bytesremove] = ACTIONS(1233), + [anon_sym_bytesreplace] = ACTIONS(1233), + [anon_sym_bytesreverse] = ACTIONS(1233), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1233), + [anon_sym_commandlineedit] = ACTIONS(1233), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1233), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1233), + [anon_sym_configenv] = ACTIONS(1233), + [anon_sym_confignu] = ACTIONS(1233), + [anon_sym_configreset] = ACTIONS(1233), + [anon_sym_dateformat] = ACTIONS(1233), + [anon_sym_datehumanize] = ACTIONS(1233), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1233), + [anon_sym_datenow] = ACTIONS(1233), + [anon_sym_dateto_DASHrecord] = ACTIONS(1233), + [anon_sym_dateto_DASHtable] = ACTIONS(1233), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1233), + [anon_sym_debuginfo] = ACTIONS(1233), + [anon_sym_debugprofile] = ACTIONS(1233), + [anon_sym_decodebase32] = ACTIONS(1231), + [anon_sym_decodebase32hex] = ACTIONS(1233), + [anon_sym_decodebase64] = ACTIONS(1233), + [anon_sym_decodehex] = ACTIONS(1233), + [anon_sym_detectcolumns] = ACTIONS(1233), + [anon_sym_dropcolumn] = ACTIONS(1233), + [anon_sym_dropnth] = ACTIONS(1233), + [anon_sym_dtadd] = ACTIONS(1233), + [anon_sym_dtdiff] = ACTIONS(1233), + [anon_sym_dtformat] = ACTIONS(1233), + [anon_sym_dtnow] = ACTIONS(1233), + [anon_sym_dtpart] = ACTIONS(1233), + [anon_sym_dtto] = ACTIONS(1233), + [anon_sym_dtutcnow] = ACTIONS(1233), + [anon_sym_eachwhile] = ACTIONS(1233), + [anon_sym_encodebase32] = ACTIONS(1231), + [anon_sym_encodebase32hex] = ACTIONS(1233), + [anon_sym_encodebase64] = ACTIONS(1233), + [anon_sym_encodehex] = ACTIONS(1233), + [anon_sym_errormake] = ACTIONS(1233), + [anon_sym_exploreir] = ACTIONS(1233), + [anon_sym_formatdate] = ACTIONS(1233), + [anon_sym_formatduration] = ACTIONS(1233), + [anon_sym_formatfilesize] = ACTIONS(1233), + [anon_sym_formatpattern] = ACTIONS(1233), + [anon_sym_frombz2] = ACTIONS(1233), + [anon_sym_fromcsv] = ACTIONS(1233), + [anon_sym_fromeml] = ACTIONS(1233), + [anon_sym_fromgz] = ACTIONS(1233), + [anon_sym_fromics] = ACTIONS(1233), + [anon_sym_fromini] = ACTIONS(1233), + [anon_sym_fromjson] = ACTIONS(1233), + [anon_sym_frommsgpack] = ACTIONS(1231), + [anon_sym_frommsgpackz] = ACTIONS(1233), + [anon_sym_fromnuon] = ACTIONS(1233), + [anon_sym_fromods] = ACTIONS(1233), + [anon_sym_fromparquet] = ACTIONS(1233), + [anon_sym_fromplist] = ACTIONS(1233), + [anon_sym_frompng] = ACTIONS(1233), + [anon_sym_fromssv] = ACTIONS(1233), + [anon_sym_fromtoml] = ACTIONS(1233), + [anon_sym_fromtsv] = ACTIONS(1233), + [anon_sym_fromurl] = ACTIONS(1233), + [anon_sym_fromvcf] = ACTIONS(1233), + [anon_sym_fromxlsx] = ACTIONS(1233), + [anon_sym_fromxml] = ACTIONS(1233), + [anon_sym_fromxz] = ACTIONS(1233), + [anon_sym_fromyaml] = ACTIONS(1233), + [anon_sym_fromyml] = ACTIONS(1233), + [anon_sym_fromzst] = ACTIONS(1233), + [anon_sym_hashmd5] = ACTIONS(1233), + [anon_sym_hashsha256] = ACTIONS(1233), + [anon_sym_helpaliases] = ACTIONS(1233), + [anon_sym_helpcommands] = ACTIONS(1233), + [anon_sym_helpescapes] = ACTIONS(1233), + [anon_sym_helpexterns] = ACTIONS(1233), + [anon_sym_helpmodules] = ACTIONS(1233), + [anon_sym_helpoperators] = ACTIONS(1233), + [anon_sym_historyimport] = ACTIONS(1233), + [anon_sym_historysession] = ACTIONS(1233), + [anon_sym_httpdelete] = ACTIONS(1233), + [anon_sym_httpget] = ACTIONS(1233), + [anon_sym_httphead] = ACTIONS(1233), + [anon_sym_httpoptions] = ACTIONS(1233), + [anon_sym_httppatch] = ACTIONS(1233), + [anon_sym_httppost] = ACTIONS(1233), + [anon_sym_httpput] = ACTIONS(1233), + [anon_sym_inputlist] = ACTIONS(1231), + [anon_sym_inputlisten] = ACTIONS(1233), + [anon_sym_intobinary] = ACTIONS(1233), + [anon_sym_intobits] = ACTIONS(1233), + [anon_sym_intobool] = ACTIONS(1233), + [anon_sym_intocell_DASHpath] = ACTIONS(1233), + [anon_sym_intodatetime] = ACTIONS(1233), + [anon_sym_intoduration] = ACTIONS(1233), + [anon_sym_intofilesize] = ACTIONS(1233), + [anon_sym_intofloat] = ACTIONS(1233), + [anon_sym_intoglob] = ACTIONS(1233), + [anon_sym_intoint] = ACTIONS(1233), + [anon_sym_intorecord] = ACTIONS(1233), + [anon_sym_intosqlite] = ACTIONS(1233), + [anon_sym_intostring] = ACTIONS(1233), + [anon_sym_intovalue] = ACTIONS(1233), + [anon_sym_jsonpath] = ACTIONS(1233), + [anon_sym_keybindingsdefault] = ACTIONS(1233), + [anon_sym_keybindingslist] = ACTIONS(1231), + [anon_sym_keybindingslisten] = ACTIONS(1233), + [anon_sym_mathabs] = ACTIONS(1233), + [anon_sym_matharccos] = ACTIONS(1231), + [anon_sym_matharccosh] = ACTIONS(1233), + [anon_sym_matharcsin] = ACTIONS(1231), + [anon_sym_matharcsinh] = ACTIONS(1233), + [anon_sym_matharctan] = ACTIONS(1231), + [anon_sym_matharctanh] = ACTIONS(1233), + [anon_sym_mathavg] = ACTIONS(1233), + [anon_sym_mathceil] = ACTIONS(1233), + [anon_sym_mathcos] = ACTIONS(1231), + [anon_sym_mathcosh] = ACTIONS(1233), + [anon_sym_mathexp] = ACTIONS(1233), + [anon_sym_mathfloor] = ACTIONS(1233), + [anon_sym_mathln] = ACTIONS(1233), + [anon_sym_mathlog] = ACTIONS(1233), + [anon_sym_mathmax] = ACTIONS(1233), + [anon_sym_mathmedian] = ACTIONS(1233), + [anon_sym_mathmin] = ACTIONS(1233), + [anon_sym_mathmode] = ACTIONS(1233), + [anon_sym_mathproduct] = ACTIONS(1233), + [anon_sym_mathround] = ACTIONS(1233), + [anon_sym_mathsin] = ACTIONS(1231), + [anon_sym_mathsinh] = ACTIONS(1233), + [anon_sym_mathsqrt] = ACTIONS(1233), + [anon_sym_mathstddev] = ACTIONS(1233), + [anon_sym_mathsum] = ACTIONS(1233), + [anon_sym_mathtan] = ACTIONS(1231), + [anon_sym_mathtanh] = ACTIONS(1233), + [anon_sym_mathvariance] = ACTIONS(1233), + [anon_sym_metadataaccess] = ACTIONS(1233), + [anon_sym_metadataset] = ACTIONS(1233), + [anon_sym_pathbasename] = ACTIONS(1233), + [anon_sym_pathdirname] = ACTIONS(1233), + [anon_sym_pathexists] = ACTIONS(1233), + [anon_sym_pathexpand] = ACTIONS(1233), + [anon_sym_pathjoin] = ACTIONS(1233), + [anon_sym_pathparse] = ACTIONS(1233), + [anon_sym_pathrelative_DASHto] = ACTIONS(1233), + [anon_sym_pathsplit] = ACTIONS(1233), + [anon_sym_pathtype] = ACTIONS(1233), + [anon_sym_pluginadd] = ACTIONS(1233), + [anon_sym_pluginlist] = ACTIONS(1233), + [anon_sym_pluginrm] = ACTIONS(1233), + [anon_sym_pluginstop] = ACTIONS(1233), + [anon_sym_polarsagg] = ACTIONS(1231), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1233), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1233), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsappend] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1233), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1233), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1233), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1233), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1233), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1233), + [anon_sym_polarsas] = ACTIONS(1231), + [anon_sym_polarsas_DASHdate] = ACTIONS(1231), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1233), + [anon_sym_polarscache] = ACTIONS(1233), + [anon_sym_polarscast] = ACTIONS(1233), + [anon_sym_polarscol] = ACTIONS(1231), + [anon_sym_polarscollect] = ACTIONS(1233), + [anon_sym_polarscolumns] = ACTIONS(1233), + [anon_sym_polarsconcat] = ACTIONS(1231), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1233), + [anon_sym_polarscontains] = ACTIONS(1233), + [anon_sym_polarscount] = ACTIONS(1231), + [anon_sym_polarscount_DASHnull] = ACTIONS(1233), + [anon_sym_polarscumulative] = ACTIONS(1233), + [anon_sym_polarsdatepart] = ACTIONS(1233), + [anon_sym_polarsdecimal] = ACTIONS(1233), + [anon_sym_polarsdrop] = ACTIONS(1231), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1233), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1233), + [anon_sym_polarsdummies] = ACTIONS(1233), + [anon_sym_polarsexplode] = ACTIONS(1233), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1233), + [anon_sym_polarsfetch] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1233), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1233), + [anon_sym_polarsfilter] = ACTIONS(1231), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1233), + [anon_sym_polarsfirst] = ACTIONS(1233), + [anon_sym_polarsflatten] = ACTIONS(1233), + [anon_sym_polarsget] = ACTIONS(1231), + [anon_sym_polarsget_DASHday] = ACTIONS(1233), + [anon_sym_polarsget_DASHhour] = ACTIONS(1233), + [anon_sym_polarsget_DASHminute] = ACTIONS(1233), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1233), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1233), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1233), + [anon_sym_polarsget_DASHweek] = ACTIONS(1231), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1233), + [anon_sym_polarsget_DASHyear] = ACTIONS(1233), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1233), + [anon_sym_polarsimplode] = ACTIONS(1233), + [anon_sym_polarsinteger] = ACTIONS(1233), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1233), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1233), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1233), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1233), + [anon_sym_polarsis_DASHin] = ACTIONS(1233), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHnull] = ACTIONS(1233), + [anon_sym_polarsis_DASHunique] = ACTIONS(1233), + [anon_sym_polarsjoin] = ACTIONS(1233), + [anon_sym_polarslast] = ACTIONS(1233), + [anon_sym_polarslen] = ACTIONS(1233), + [anon_sym_polarslit] = ACTIONS(1233), + [anon_sym_polarslowercase] = ACTIONS(1233), + [anon_sym_polarsmax] = ACTIONS(1233), + [anon_sym_polarsmean] = ACTIONS(1233), + [anon_sym_polarsmedian] = ACTIONS(1233), + [anon_sym_polarsmin] = ACTIONS(1233), + [anon_sym_polarsn_DASHunique] = ACTIONS(1233), + [anon_sym_polarsnot] = ACTIONS(1233), + [anon_sym_polarsopen] = ACTIONS(1233), + [anon_sym_polarsotherwise] = ACTIONS(1233), + [anon_sym_polarspivot] = ACTIONS(1233), + [anon_sym_polarsprofile] = ACTIONS(1233), + [anon_sym_polarsquantile] = ACTIONS(1233), + [anon_sym_polarsquery] = ACTIONS(1233), + [anon_sym_polarsrename] = ACTIONS(1233), + [anon_sym_polarsreplace] = ACTIONS(1231), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1233), + [anon_sym_polarsreverse] = ACTIONS(1233), + [anon_sym_polarsrolling] = ACTIONS(1233), + [anon_sym_polarssample] = ACTIONS(1233), + [anon_sym_polarssave] = ACTIONS(1233), + [anon_sym_polarsschema] = ACTIONS(1233), + [anon_sym_polarsselect] = ACTIONS(1233), + [anon_sym_polarsset] = ACTIONS(1231), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1233), + [anon_sym_polarsshape] = ACTIONS(1233), + [anon_sym_polarsshift] = ACTIONS(1233), + [anon_sym_polarsslice] = ACTIONS(1233), + [anon_sym_polarssort_DASHby] = ACTIONS(1233), + [anon_sym_polarsstd] = ACTIONS(1233), + [anon_sym_polarsstore_DASHget] = ACTIONS(1233), + [anon_sym_polarsstore_DASHls] = ACTIONS(1233), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1233), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1233), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1233), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1233), + [anon_sym_polarsstrftime] = ACTIONS(1233), + [anon_sym_polarssum] = ACTIONS(1231), + [anon_sym_polarssummary] = ACTIONS(1233), + [anon_sym_polarstake] = ACTIONS(1233), + [anon_sym_polarsunique] = ACTIONS(1233), + [anon_sym_polarsunnest] = ACTIONS(1233), + [anon_sym_polarsunpivot] = ACTIONS(1233), + [anon_sym_polarsuppercase] = ACTIONS(1233), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1233), + [anon_sym_polarsvar] = ACTIONS(1233), + [anon_sym_polarswhen] = ACTIONS(1233), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1233), + [anon_sym_querydb] = ACTIONS(1233), + [anon_sym_querygit] = ACTIONS(1233), + [anon_sym_queryjson] = ACTIONS(1233), + [anon_sym_queryweb] = ACTIONS(1231), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1233), + [anon_sym_queryxml] = ACTIONS(1233), + [anon_sym_randombinary] = ACTIONS(1233), + [anon_sym_randombool] = ACTIONS(1233), + [anon_sym_randomchars] = ACTIONS(1233), + [anon_sym_randomdice] = ACTIONS(1233), + [anon_sym_randomfloat] = ACTIONS(1233), + [anon_sym_randomint] = ACTIONS(1233), + [anon_sym_randomuuid] = ACTIONS(1233), + [anon_sym_rolldown] = ACTIONS(1233), + [anon_sym_rollleft] = ACTIONS(1233), + [anon_sym_rollright] = ACTIONS(1233), + [anon_sym_rollup] = ACTIONS(1233), + [anon_sym_scopealiases] = ACTIONS(1233), + [anon_sym_scopecommands] = ACTIONS(1233), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1233), + [anon_sym_scopeexterns] = ACTIONS(1233), + [anon_sym_scopemodules] = ACTIONS(1233), + [anon_sym_scopevariables] = ACTIONS(1233), + [anon_sym_seqchar] = ACTIONS(1233), + [anon_sym_seqdate] = ACTIONS(1233), + [anon_sym_skipuntil] = ACTIONS(1233), + [anon_sym_skipwhile] = ACTIONS(1233), + [anon_sym_splitcell_DASHpath] = ACTIONS(1233), + [anon_sym_splitchars] = ACTIONS(1233), + [anon_sym_splitcolumn] = ACTIONS(1233), + [anon_sym_splitlist] = ACTIONS(1233), + [anon_sym_splitrow] = ACTIONS(1233), + [anon_sym_splitwords] = ACTIONS(1233), + [anon_sym_storcreate] = ACTIONS(1233), + [anon_sym_stordelete] = ACTIONS(1233), + [anon_sym_storexport] = ACTIONS(1233), + [anon_sym_storimport] = ACTIONS(1233), + [anon_sym_storinsert] = ACTIONS(1233), + [anon_sym_storopen] = ACTIONS(1233), + [anon_sym_storreset] = ACTIONS(1233), + [anon_sym_storupdate] = ACTIONS(1233), + [anon_sym_strbexpand] = ACTIONS(1233), + [anon_sym_strcamel_DASHcase] = ACTIONS(1233), + [anon_sym_strcapitalize] = ACTIONS(1233), + [anon_sym_strcompress] = ACTIONS(1233), + [anon_sym_strcontains] = ACTIONS(1233), + [anon_sym_strdecompress] = ACTIONS(1233), + [anon_sym_strdedent] = ACTIONS(1233), + [anon_sym_strdeunicode] = ACTIONS(1233), + [anon_sym_strdistance] = ACTIONS(1233), + [anon_sym_strdowncase] = ACTIONS(1233), + [anon_sym_strends_DASHwith] = ACTIONS(1233), + [anon_sym_strexpand] = ACTIONS(1233), + [anon_sym_strindent] = ACTIONS(1233), + [anon_sym_strindex_DASHof] = ACTIONS(1233), + [anon_sym_strjoin] = ACTIONS(1233), + [anon_sym_strkebab_DASHcase] = ACTIONS(1233), + [anon_sym_strlength] = ACTIONS(1233), + [anon_sym_strpascal_DASHcase] = ACTIONS(1233), + [anon_sym_strreplace] = ACTIONS(1233), + [anon_sym_strreverse] = ACTIONS(1233), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strsimilarity] = ACTIONS(1233), + [anon_sym_strsnake_DASHcase] = ACTIONS(1233), + [anon_sym_strstarts_DASHwith] = ACTIONS(1233), + [anon_sym_strstats] = ACTIONS(1233), + [anon_sym_strsubstring] = ACTIONS(1233), + [anon_sym_strtitle_DASHcase] = ACTIONS(1233), + [anon_sym_strtrim] = ACTIONS(1233), + [anon_sym_strupcase] = ACTIONS(1233), + [anon_sym_strwrap] = ACTIONS(1233), + [anon_sym_syscpu] = ACTIONS(1233), + [anon_sym_sysdisks] = ACTIONS(1233), + [anon_sym_syshost] = ACTIONS(1233), + [anon_sym_sysmem] = ACTIONS(1233), + [anon_sym_sysnet] = ACTIONS(1233), + [anon_sym_systemp] = ACTIONS(1233), + [anon_sym_sysusers] = ACTIONS(1233), + [anon_sym_takeuntil] = ACTIONS(1233), + [anon_sym_takewhile] = ACTIONS(1233), + [anon_sym_termquery] = ACTIONS(1233), + [anon_sym_termsize] = ACTIONS(1233), + [anon_sym_tobz2] = ACTIONS(1233), + [anon_sym_tocsv] = ACTIONS(1233), + [anon_sym_togz] = ACTIONS(1233), + [anon_sym_tohtml] = ACTIONS(1233), + [anon_sym_tojson] = ACTIONS(1233), + [anon_sym_tomd] = ACTIONS(1233), + [anon_sym_tomsgpack] = ACTIONS(1231), + [anon_sym_tomsgpackz] = ACTIONS(1233), + [anon_sym_tonuon] = ACTIONS(1233), + [anon_sym_toparquet] = ACTIONS(1233), + [anon_sym_toplist] = ACTIONS(1233), + [anon_sym_topng] = ACTIONS(1233), + [anon_sym_totext] = ACTIONS(1233), + [anon_sym_totoml] = ACTIONS(1233), + [anon_sym_totsv] = ACTIONS(1233), + [anon_sym_toxml] = ACTIONS(1233), + [anon_sym_toxz] = ACTIONS(1233), + [anon_sym_toyaml] = ACTIONS(1233), + [anon_sym_tozst] = ACTIONS(1233), + [anon_sym_updatecells] = ACTIONS(1233), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1233), + [anon_sym_urldecode] = ACTIONS(1233), + [anon_sym_urlencode] = ACTIONS(1233), + [anon_sym_urljoin] = ACTIONS(1233), + [anon_sym_urlparse] = ACTIONS(1233), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1233), + [anon_sym_viewfiles] = ACTIONS(1233), + [anon_sym_viewir] = ACTIONS(1233), + [anon_sym_viewsource] = ACTIONS(1233), + [anon_sym_viewspan] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1233), + }, + [319] = { + [sym_env_var] = STATE(6937), + [sym_comment] = STATE(319), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(1425), + [aux_sym_cmd_identifier_token2] = ACTIONS(1431), + [aux_sym_cmd_identifier_token3] = ACTIONS(1431), + [aux_sym_cmd_identifier_token4] = ACTIONS(1431), + [aux_sym_cmd_identifier_token5] = ACTIONS(1431), + [aux_sym_cmd_identifier_token6] = ACTIONS(1431), + [aux_sym_cmd_identifier_token7] = ACTIONS(1431), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1425), + [aux_sym_cmd_identifier_token10] = ACTIONS(1431), + [aux_sym_cmd_identifier_token11] = ACTIONS(1431), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1425), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1425), + [aux_sym_cmd_identifier_token16] = ACTIONS(1431), + [aux_sym_cmd_identifier_token17] = ACTIONS(1431), + [aux_sym_cmd_identifier_token18] = ACTIONS(1425), + [aux_sym_cmd_identifier_token19] = ACTIONS(1431), + [aux_sym_cmd_identifier_token20] = ACTIONS(1431), + [aux_sym_cmd_identifier_token21] = ACTIONS(1431), + [aux_sym_cmd_identifier_token22] = ACTIONS(1431), + [aux_sym_cmd_identifier_token23] = ACTIONS(1431), + [aux_sym_cmd_identifier_token24] = ACTIONS(1431), + [aux_sym_cmd_identifier_token25] = ACTIONS(1431), + [aux_sym_cmd_identifier_token26] = ACTIONS(1431), + [aux_sym_cmd_identifier_token27] = ACTIONS(1431), + [aux_sym_cmd_identifier_token28] = ACTIONS(1431), + [aux_sym_cmd_identifier_token29] = ACTIONS(1431), + [aux_sym_cmd_identifier_token30] = ACTIONS(1431), + [aux_sym_cmd_identifier_token31] = ACTIONS(1431), + [aux_sym_cmd_identifier_token32] = ACTIONS(1425), + [aux_sym_cmd_identifier_token33] = ACTIONS(1431), + [aux_sym_cmd_identifier_token34] = ACTIONS(1425), + [aux_sym_cmd_identifier_token35] = ACTIONS(1431), + [aux_sym_cmd_identifier_token36] = ACTIONS(1431), + [aux_sym_cmd_identifier_token37] = ACTIONS(1431), + [aux_sym_cmd_identifier_token38] = ACTIONS(1425), + [aux_sym_cmd_identifier_token39] = ACTIONS(1431), + [aux_sym_cmd_identifier_token40] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1425), + [anon_sym_DASH2] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [aux_sym_expr_unary_token1] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_DOT_DOT_LT] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1425), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1431), + [aux_sym__val_number_token2] = ACTIONS(1431), + [aux_sym__val_number_token3] = ACTIONS(1431), + [aux_sym__val_number_token4] = ACTIONS(1425), + [aux_sym__val_number_token5] = ACTIONS(1425), + [aux_sym__val_number_token6] = ACTIONS(1425), + [anon_sym_0b] = ACTIONS(1425), + [anon_sym_0o] = ACTIONS(1425), + [anon_sym_0x] = ACTIONS(1425), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym__str_single_quotes] = ACTIONS(1431), + [sym__str_back_ticks] = ACTIONS(1431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1431), + [aux_sym_env_var_token1] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_ansigradient] = ACTIONS(1431), + [anon_sym_ansilink] = ACTIONS(1431), + [anon_sym_ansistrip] = ACTIONS(1431), + [anon_sym_bitsand] = ACTIONS(1431), + [anon_sym_bitsnot] = ACTIONS(1431), + [anon_sym_bitsor] = ACTIONS(1431), + [anon_sym_bitsrol] = ACTIONS(1431), + [anon_sym_bitsror] = ACTIONS(1431), + [anon_sym_bitsshl] = ACTIONS(1431), + [anon_sym_bitsshr] = ACTIONS(1431), + [anon_sym_bitsxor] = ACTIONS(1431), + [anon_sym_bytesadd] = ACTIONS(1431), + [anon_sym_bytesat] = ACTIONS(1431), + [anon_sym_bytesbuild] = ACTIONS(1431), + [anon_sym_bytescollect] = ACTIONS(1431), + [anon_sym_bytesends_DASHwith] = ACTIONS(1431), + [anon_sym_bytesindex_DASHof] = ACTIONS(1431), + [anon_sym_byteslength] = ACTIONS(1431), + [anon_sym_bytesremove] = ACTIONS(1431), + [anon_sym_bytesreplace] = ACTIONS(1431), + [anon_sym_bytesreverse] = ACTIONS(1431), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1431), + [anon_sym_commandlineedit] = ACTIONS(1431), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1431), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1431), + [anon_sym_configenv] = ACTIONS(1431), + [anon_sym_confignu] = ACTIONS(1431), + [anon_sym_configreset] = ACTIONS(1431), + [anon_sym_dateformat] = ACTIONS(1431), + [anon_sym_datehumanize] = ACTIONS(1431), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1431), + [anon_sym_datenow] = ACTIONS(1431), + [anon_sym_dateto_DASHrecord] = ACTIONS(1431), + [anon_sym_dateto_DASHtable] = ACTIONS(1431), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1431), + [anon_sym_debuginfo] = ACTIONS(1431), + [anon_sym_debugprofile] = ACTIONS(1431), + [anon_sym_decodebase32] = ACTIONS(1425), + [anon_sym_decodebase32hex] = ACTIONS(1431), + [anon_sym_decodebase64] = ACTIONS(1431), + [anon_sym_decodehex] = ACTIONS(1431), + [anon_sym_detectcolumns] = ACTIONS(1431), + [anon_sym_dropcolumn] = ACTIONS(1431), + [anon_sym_dropnth] = ACTIONS(1431), + [anon_sym_dtadd] = ACTIONS(1431), + [anon_sym_dtdiff] = ACTIONS(1431), + [anon_sym_dtformat] = ACTIONS(1431), + [anon_sym_dtnow] = ACTIONS(1431), + [anon_sym_dtpart] = ACTIONS(1431), + [anon_sym_dtto] = ACTIONS(1431), + [anon_sym_dtutcnow] = ACTIONS(1431), + [anon_sym_eachwhile] = ACTIONS(1431), + [anon_sym_encodebase32] = ACTIONS(1425), + [anon_sym_encodebase32hex] = ACTIONS(1431), + [anon_sym_encodebase64] = ACTIONS(1431), + [anon_sym_encodehex] = ACTIONS(1431), + [anon_sym_errormake] = ACTIONS(1431), + [anon_sym_exploreir] = ACTIONS(1431), + [anon_sym_formatdate] = ACTIONS(1431), + [anon_sym_formatduration] = ACTIONS(1431), + [anon_sym_formatfilesize] = ACTIONS(1431), + [anon_sym_formatpattern] = ACTIONS(1431), + [anon_sym_frombz2] = ACTIONS(1431), + [anon_sym_fromcsv] = ACTIONS(1431), + [anon_sym_fromeml] = ACTIONS(1431), + [anon_sym_fromgz] = ACTIONS(1431), + [anon_sym_fromics] = ACTIONS(1431), + [anon_sym_fromini] = ACTIONS(1431), + [anon_sym_fromjson] = ACTIONS(1431), + [anon_sym_frommsgpack] = ACTIONS(1425), + [anon_sym_frommsgpackz] = ACTIONS(1431), + [anon_sym_fromnuon] = ACTIONS(1431), + [anon_sym_fromods] = ACTIONS(1431), + [anon_sym_fromparquet] = ACTIONS(1431), + [anon_sym_fromplist] = ACTIONS(1431), + [anon_sym_frompng] = ACTIONS(1431), + [anon_sym_fromssv] = ACTIONS(1431), + [anon_sym_fromtoml] = ACTIONS(1431), + [anon_sym_fromtsv] = ACTIONS(1431), + [anon_sym_fromurl] = ACTIONS(1431), + [anon_sym_fromvcf] = ACTIONS(1431), + [anon_sym_fromxlsx] = ACTIONS(1431), + [anon_sym_fromxml] = ACTIONS(1431), + [anon_sym_fromxz] = ACTIONS(1431), + [anon_sym_fromyaml] = ACTIONS(1431), + [anon_sym_fromyml] = ACTIONS(1431), + [anon_sym_fromzst] = ACTIONS(1431), + [anon_sym_hashmd5] = ACTIONS(1431), + [anon_sym_hashsha256] = ACTIONS(1431), + [anon_sym_helpaliases] = ACTIONS(1431), + [anon_sym_helpcommands] = ACTIONS(1431), + [anon_sym_helpescapes] = ACTIONS(1431), + [anon_sym_helpexterns] = ACTIONS(1431), + [anon_sym_helpmodules] = ACTIONS(1431), + [anon_sym_helpoperators] = ACTIONS(1431), + [anon_sym_historyimport] = ACTIONS(1431), + [anon_sym_historysession] = ACTIONS(1431), + [anon_sym_httpdelete] = ACTIONS(1431), + [anon_sym_httpget] = ACTIONS(1431), + [anon_sym_httphead] = ACTIONS(1431), + [anon_sym_httpoptions] = ACTIONS(1431), + [anon_sym_httppatch] = ACTIONS(1431), + [anon_sym_httppost] = ACTIONS(1431), + [anon_sym_httpput] = ACTIONS(1431), + [anon_sym_inputlist] = ACTIONS(1425), + [anon_sym_inputlisten] = ACTIONS(1431), + [anon_sym_intobinary] = ACTIONS(1431), + [anon_sym_intobits] = ACTIONS(1431), + [anon_sym_intobool] = ACTIONS(1431), + [anon_sym_intocell_DASHpath] = ACTIONS(1431), + [anon_sym_intodatetime] = ACTIONS(1431), + [anon_sym_intoduration] = ACTIONS(1431), + [anon_sym_intofilesize] = ACTIONS(1431), + [anon_sym_intofloat] = ACTIONS(1431), + [anon_sym_intoglob] = ACTIONS(1431), + [anon_sym_intoint] = ACTIONS(1431), + [anon_sym_intorecord] = ACTIONS(1431), + [anon_sym_intosqlite] = ACTIONS(1431), + [anon_sym_intostring] = ACTIONS(1431), + [anon_sym_intovalue] = ACTIONS(1431), + [anon_sym_jsonpath] = ACTIONS(1431), + [anon_sym_keybindingsdefault] = ACTIONS(1431), + [anon_sym_keybindingslist] = ACTIONS(1425), + [anon_sym_keybindingslisten] = ACTIONS(1431), + [anon_sym_mathabs] = ACTIONS(1431), + [anon_sym_matharccos] = ACTIONS(1425), + [anon_sym_matharccosh] = ACTIONS(1431), + [anon_sym_matharcsin] = ACTIONS(1425), + [anon_sym_matharcsinh] = ACTIONS(1431), + [anon_sym_matharctan] = ACTIONS(1425), + [anon_sym_matharctanh] = ACTIONS(1431), + [anon_sym_mathavg] = ACTIONS(1431), + [anon_sym_mathceil] = ACTIONS(1431), + [anon_sym_mathcos] = ACTIONS(1425), + [anon_sym_mathcosh] = ACTIONS(1431), + [anon_sym_mathexp] = ACTIONS(1431), + [anon_sym_mathfloor] = ACTIONS(1431), + [anon_sym_mathln] = ACTIONS(1431), + [anon_sym_mathlog] = ACTIONS(1431), + [anon_sym_mathmax] = ACTIONS(1431), + [anon_sym_mathmedian] = ACTIONS(1431), + [anon_sym_mathmin] = ACTIONS(1431), + [anon_sym_mathmode] = ACTIONS(1431), + [anon_sym_mathproduct] = ACTIONS(1431), + [anon_sym_mathround] = ACTIONS(1431), + [anon_sym_mathsin] = ACTIONS(1425), + [anon_sym_mathsinh] = ACTIONS(1431), + [anon_sym_mathsqrt] = ACTIONS(1431), + [anon_sym_mathstddev] = ACTIONS(1431), + [anon_sym_mathsum] = ACTIONS(1431), + [anon_sym_mathtan] = ACTIONS(1425), + [anon_sym_mathtanh] = ACTIONS(1431), + [anon_sym_mathvariance] = ACTIONS(1431), + [anon_sym_metadataaccess] = ACTIONS(1431), + [anon_sym_metadataset] = ACTIONS(1431), + [anon_sym_pathbasename] = ACTIONS(1431), + [anon_sym_pathdirname] = ACTIONS(1431), + [anon_sym_pathexists] = ACTIONS(1431), + [anon_sym_pathexpand] = ACTIONS(1431), + [anon_sym_pathjoin] = ACTIONS(1431), + [anon_sym_pathparse] = ACTIONS(1431), + [anon_sym_pathrelative_DASHto] = ACTIONS(1431), + [anon_sym_pathsplit] = ACTIONS(1431), + [anon_sym_pathtype] = ACTIONS(1431), + [anon_sym_pluginadd] = ACTIONS(1431), + [anon_sym_pluginlist] = ACTIONS(1431), + [anon_sym_pluginrm] = ACTIONS(1431), + [anon_sym_pluginstop] = ACTIONS(1431), + [anon_sym_polarsagg] = ACTIONS(1425), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1431), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1431), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1431), + [anon_sym_polarsappend] = ACTIONS(1431), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1431), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1431), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1431), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1431), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1431), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1431), + [anon_sym_polarsas] = ACTIONS(1425), + [anon_sym_polarsas_DASHdate] = ACTIONS(1425), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1431), + [anon_sym_polarscache] = ACTIONS(1431), + [anon_sym_polarscast] = ACTIONS(1431), + [anon_sym_polarscol] = ACTIONS(1425), + [anon_sym_polarscollect] = ACTIONS(1431), + [anon_sym_polarscolumns] = ACTIONS(1431), + [anon_sym_polarsconcat] = ACTIONS(1425), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1431), + [anon_sym_polarscontains] = ACTIONS(1431), + [anon_sym_polarscount] = ACTIONS(1425), + [anon_sym_polarscount_DASHnull] = ACTIONS(1431), + [anon_sym_polarscumulative] = ACTIONS(1431), + [anon_sym_polarsdatepart] = ACTIONS(1431), + [anon_sym_polarsdecimal] = ACTIONS(1431), + [anon_sym_polarsdrop] = ACTIONS(1425), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1431), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1431), + [anon_sym_polarsdummies] = ACTIONS(1431), + [anon_sym_polarsexplode] = ACTIONS(1431), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1431), + [anon_sym_polarsfetch] = ACTIONS(1431), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1431), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1431), + [anon_sym_polarsfilter] = ACTIONS(1425), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1431), + [anon_sym_polarsfirst] = ACTIONS(1431), + [anon_sym_polarsflatten] = ACTIONS(1431), + [anon_sym_polarsget] = ACTIONS(1425), + [anon_sym_polarsget_DASHday] = ACTIONS(1431), + [anon_sym_polarsget_DASHhour] = ACTIONS(1431), + [anon_sym_polarsget_DASHminute] = ACTIONS(1431), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1431), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1431), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1431), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1431), + [anon_sym_polarsget_DASHweek] = ACTIONS(1425), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1431), + [anon_sym_polarsget_DASHyear] = ACTIONS(1431), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1431), + [anon_sym_polarsimplode] = ACTIONS(1431), + [anon_sym_polarsinteger] = ACTIONS(1431), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1431), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1431), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1431), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1431), + [anon_sym_polarsis_DASHin] = ACTIONS(1431), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1431), + [anon_sym_polarsis_DASHnull] = ACTIONS(1431), + [anon_sym_polarsis_DASHunique] = ACTIONS(1431), + [anon_sym_polarsjoin] = ACTIONS(1431), + [anon_sym_polarslast] = ACTIONS(1431), + [anon_sym_polarslen] = ACTIONS(1431), + [anon_sym_polarslit] = ACTIONS(1431), + [anon_sym_polarslowercase] = ACTIONS(1431), + [anon_sym_polarsmax] = ACTIONS(1431), + [anon_sym_polarsmean] = ACTIONS(1431), + [anon_sym_polarsmedian] = ACTIONS(1431), + [anon_sym_polarsmin] = ACTIONS(1431), + [anon_sym_polarsn_DASHunique] = ACTIONS(1431), + [anon_sym_polarsnot] = ACTIONS(1431), + [anon_sym_polarsopen] = ACTIONS(1431), + [anon_sym_polarsotherwise] = ACTIONS(1431), + [anon_sym_polarspivot] = ACTIONS(1431), + [anon_sym_polarsprofile] = ACTIONS(1431), + [anon_sym_polarsquantile] = ACTIONS(1431), + [anon_sym_polarsquery] = ACTIONS(1431), + [anon_sym_polarsrename] = ACTIONS(1431), + [anon_sym_polarsreplace] = ACTIONS(1425), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1431), + [anon_sym_polarsreverse] = ACTIONS(1431), + [anon_sym_polarsrolling] = ACTIONS(1431), + [anon_sym_polarssample] = ACTIONS(1431), + [anon_sym_polarssave] = ACTIONS(1431), + [anon_sym_polarsschema] = ACTIONS(1431), + [anon_sym_polarsselect] = ACTIONS(1431), + [anon_sym_polarsset] = ACTIONS(1425), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1431), + [anon_sym_polarsshape] = ACTIONS(1431), + [anon_sym_polarsshift] = ACTIONS(1431), + [anon_sym_polarsslice] = ACTIONS(1431), + [anon_sym_polarssort_DASHby] = ACTIONS(1431), + [anon_sym_polarsstd] = ACTIONS(1431), + [anon_sym_polarsstore_DASHget] = ACTIONS(1431), + [anon_sym_polarsstore_DASHls] = ACTIONS(1431), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1431), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1431), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1431), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1431), + [anon_sym_polarsstrftime] = ACTIONS(1431), + [anon_sym_polarssum] = ACTIONS(1425), + [anon_sym_polarssummary] = ACTIONS(1431), + [anon_sym_polarstake] = ACTIONS(1431), + [anon_sym_polarsunique] = ACTIONS(1431), + [anon_sym_polarsunnest] = ACTIONS(1431), + [anon_sym_polarsunpivot] = ACTIONS(1431), + [anon_sym_polarsuppercase] = ACTIONS(1431), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1431), + [anon_sym_polarsvar] = ACTIONS(1431), + [anon_sym_polarswhen] = ACTIONS(1431), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1431), + [anon_sym_querydb] = ACTIONS(1431), + [anon_sym_querygit] = ACTIONS(1431), + [anon_sym_queryjson] = ACTIONS(1431), + [anon_sym_queryweb] = ACTIONS(1425), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1431), + [anon_sym_queryxml] = ACTIONS(1431), + [anon_sym_randombinary] = ACTIONS(1431), + [anon_sym_randombool] = ACTIONS(1431), + [anon_sym_randomchars] = ACTIONS(1431), + [anon_sym_randomdice] = ACTIONS(1431), + [anon_sym_randomfloat] = ACTIONS(1431), + [anon_sym_randomint] = ACTIONS(1431), + [anon_sym_randomuuid] = ACTIONS(1431), + [anon_sym_rolldown] = ACTIONS(1431), + [anon_sym_rollleft] = ACTIONS(1431), + [anon_sym_rollright] = ACTIONS(1431), + [anon_sym_rollup] = ACTIONS(1431), + [anon_sym_scopealiases] = ACTIONS(1431), + [anon_sym_scopecommands] = ACTIONS(1431), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1431), + [anon_sym_scopeexterns] = ACTIONS(1431), + [anon_sym_scopemodules] = ACTIONS(1431), + [anon_sym_scopevariables] = ACTIONS(1431), + [anon_sym_seqchar] = ACTIONS(1431), + [anon_sym_seqdate] = ACTIONS(1431), + [anon_sym_skipuntil] = ACTIONS(1431), + [anon_sym_skipwhile] = ACTIONS(1431), + [anon_sym_splitcell_DASHpath] = ACTIONS(1431), + [anon_sym_splitchars] = ACTIONS(1431), + [anon_sym_splitcolumn] = ACTIONS(1431), + [anon_sym_splitlist] = ACTIONS(1431), + [anon_sym_splitrow] = ACTIONS(1431), + [anon_sym_splitwords] = ACTIONS(1431), + [anon_sym_storcreate] = ACTIONS(1431), + [anon_sym_stordelete] = ACTIONS(1431), + [anon_sym_storexport] = ACTIONS(1431), + [anon_sym_storimport] = ACTIONS(1431), + [anon_sym_storinsert] = ACTIONS(1431), + [anon_sym_storopen] = ACTIONS(1431), + [anon_sym_storreset] = ACTIONS(1431), + [anon_sym_storupdate] = ACTIONS(1431), + [anon_sym_strbexpand] = ACTIONS(1431), + [anon_sym_strcamel_DASHcase] = ACTIONS(1431), + [anon_sym_strcapitalize] = ACTIONS(1431), + [anon_sym_strcompress] = ACTIONS(1431), + [anon_sym_strcontains] = ACTIONS(1431), + [anon_sym_strdecompress] = ACTIONS(1431), + [anon_sym_strdedent] = ACTIONS(1431), + [anon_sym_strdeunicode] = ACTIONS(1431), + [anon_sym_strdistance] = ACTIONS(1431), + [anon_sym_strdowncase] = ACTIONS(1431), + [anon_sym_strends_DASHwith] = ACTIONS(1431), + [anon_sym_strexpand] = ACTIONS(1431), + [anon_sym_strindent] = ACTIONS(1431), + [anon_sym_strindex_DASHof] = ACTIONS(1431), + [anon_sym_strjoin] = ACTIONS(1431), + [anon_sym_strkebab_DASHcase] = ACTIONS(1431), + [anon_sym_strlength] = ACTIONS(1431), + [anon_sym_strpascal_DASHcase] = ACTIONS(1431), + [anon_sym_strreplace] = ACTIONS(1431), + [anon_sym_strreverse] = ACTIONS(1431), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1431), + [anon_sym_strsimilarity] = ACTIONS(1431), + [anon_sym_strsnake_DASHcase] = ACTIONS(1431), + [anon_sym_strstarts_DASHwith] = ACTIONS(1431), + [anon_sym_strstats] = ACTIONS(1431), + [anon_sym_strsubstring] = ACTIONS(1431), + [anon_sym_strtitle_DASHcase] = ACTIONS(1431), + [anon_sym_strtrim] = ACTIONS(1431), + [anon_sym_strupcase] = ACTIONS(1431), + [anon_sym_strwrap] = ACTIONS(1431), + [anon_sym_syscpu] = ACTIONS(1431), + [anon_sym_sysdisks] = ACTIONS(1431), + [anon_sym_syshost] = ACTIONS(1431), + [anon_sym_sysmem] = ACTIONS(1431), + [anon_sym_sysnet] = ACTIONS(1431), + [anon_sym_systemp] = ACTIONS(1431), + [anon_sym_sysusers] = ACTIONS(1431), + [anon_sym_takeuntil] = ACTIONS(1431), + [anon_sym_takewhile] = ACTIONS(1431), + [anon_sym_termquery] = ACTIONS(1431), + [anon_sym_termsize] = ACTIONS(1431), + [anon_sym_tobz2] = ACTIONS(1431), + [anon_sym_tocsv] = ACTIONS(1431), + [anon_sym_togz] = ACTIONS(1431), + [anon_sym_tohtml] = ACTIONS(1431), + [anon_sym_tojson] = ACTIONS(1431), + [anon_sym_tomd] = ACTIONS(1431), + [anon_sym_tomsgpack] = ACTIONS(1425), + [anon_sym_tomsgpackz] = ACTIONS(1431), + [anon_sym_tonuon] = ACTIONS(1431), + [anon_sym_toparquet] = ACTIONS(1431), + [anon_sym_toplist] = ACTIONS(1431), + [anon_sym_topng] = ACTIONS(1431), + [anon_sym_totext] = ACTIONS(1431), + [anon_sym_totoml] = ACTIONS(1431), + [anon_sym_totsv] = ACTIONS(1431), + [anon_sym_toxml] = ACTIONS(1431), + [anon_sym_toxz] = ACTIONS(1431), + [anon_sym_toyaml] = ACTIONS(1431), + [anon_sym_tozst] = ACTIONS(1431), + [anon_sym_updatecells] = ACTIONS(1431), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1431), + [anon_sym_urldecode] = ACTIONS(1431), + [anon_sym_urlencode] = ACTIONS(1431), + [anon_sym_urljoin] = ACTIONS(1431), + [anon_sym_urlparse] = ACTIONS(1431), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1431), + [anon_sym_viewfiles] = ACTIONS(1431), + [anon_sym_viewir] = ACTIONS(1431), + [anon_sym_viewsource] = ACTIONS(1431), + [anon_sym_viewspan] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1431), + }, + [320] = { + [sym_env_var] = STATE(7468), + [sym_comment] = STATE(320), + [aux_sym_pipe_element_repeat2] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(1447), + [aux_sym_cmd_identifier_token2] = ACTIONS(1451), + [aux_sym_cmd_identifier_token3] = ACTIONS(1451), + [aux_sym_cmd_identifier_token4] = ACTIONS(1451), + [aux_sym_cmd_identifier_token5] = ACTIONS(1451), + [aux_sym_cmd_identifier_token6] = ACTIONS(1451), + [aux_sym_cmd_identifier_token7] = ACTIONS(1451), + [aux_sym_cmd_identifier_token8] = ACTIONS(1451), + [aux_sym_cmd_identifier_token9] = ACTIONS(1447), + [aux_sym_cmd_identifier_token10] = ACTIONS(1451), + [aux_sym_cmd_identifier_token11] = ACTIONS(1451), + [aux_sym_cmd_identifier_token12] = ACTIONS(1451), + [aux_sym_cmd_identifier_token13] = ACTIONS(1447), + [aux_sym_cmd_identifier_token14] = ACTIONS(1451), + [aux_sym_cmd_identifier_token15] = ACTIONS(1447), + [aux_sym_cmd_identifier_token16] = ACTIONS(1451), + [aux_sym_cmd_identifier_token17] = ACTIONS(1451), + [aux_sym_cmd_identifier_token18] = ACTIONS(1447), + [aux_sym_cmd_identifier_token19] = ACTIONS(1451), + [aux_sym_cmd_identifier_token20] = ACTIONS(1451), + [aux_sym_cmd_identifier_token21] = ACTIONS(1451), + [aux_sym_cmd_identifier_token22] = ACTIONS(1451), + [aux_sym_cmd_identifier_token23] = ACTIONS(1451), + [aux_sym_cmd_identifier_token24] = ACTIONS(1451), + [aux_sym_cmd_identifier_token25] = ACTIONS(1451), + [aux_sym_cmd_identifier_token26] = ACTIONS(1451), + [aux_sym_cmd_identifier_token27] = ACTIONS(1451), + [aux_sym_cmd_identifier_token28] = ACTIONS(1451), + [aux_sym_cmd_identifier_token29] = ACTIONS(1451), + [aux_sym_cmd_identifier_token30] = ACTIONS(1451), + [aux_sym_cmd_identifier_token31] = ACTIONS(1451), + [aux_sym_cmd_identifier_token32] = ACTIONS(1447), + [aux_sym_cmd_identifier_token33] = ACTIONS(1451), + [aux_sym_cmd_identifier_token34] = ACTIONS(1447), + [aux_sym_cmd_identifier_token35] = ACTIONS(1451), + [aux_sym_cmd_identifier_token36] = ACTIONS(1451), + [aux_sym_cmd_identifier_token37] = ACTIONS(1451), + [aux_sym_cmd_identifier_token38] = ACTIONS(1447), + [aux_sym_cmd_identifier_token39] = ACTIONS(1451), + [aux_sym_cmd_identifier_token40] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1447), + [anon_sym_DASH2] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [aux_sym_expr_unary_token1] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_DOT_DOT_LT] = ACTIONS(1451), + [anon_sym_null] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [aux_sym__val_number_decimal_token1] = ACTIONS(1447), + [aux_sym__val_number_decimal_token2] = ACTIONS(1451), + [aux_sym__val_number_decimal_token3] = ACTIONS(1451), + [aux_sym__val_number_decimal_token4] = ACTIONS(1451), + [aux_sym__val_number_token1] = ACTIONS(1451), + [aux_sym__val_number_token2] = ACTIONS(1451), + [aux_sym__val_number_token3] = ACTIONS(1451), + [aux_sym__val_number_token4] = ACTIONS(1447), + [aux_sym__val_number_token5] = ACTIONS(1447), + [aux_sym__val_number_token6] = ACTIONS(1447), + [anon_sym_0b] = ACTIONS(1447), + [anon_sym_0o] = ACTIONS(1447), + [anon_sym_0x] = ACTIONS(1447), + [sym_val_date] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [sym__str_single_quotes] = ACTIONS(1451), + [sym__str_back_ticks] = ACTIONS(1451), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1451), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1451), + [aux_sym_env_var_token1] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_ansigradient] = ACTIONS(1451), + [anon_sym_ansilink] = ACTIONS(1451), + [anon_sym_ansistrip] = ACTIONS(1451), + [anon_sym_bitsand] = ACTIONS(1451), + [anon_sym_bitsnot] = ACTIONS(1451), + [anon_sym_bitsor] = ACTIONS(1451), + [anon_sym_bitsrol] = ACTIONS(1451), + [anon_sym_bitsror] = ACTIONS(1451), + [anon_sym_bitsshl] = ACTIONS(1451), + [anon_sym_bitsshr] = ACTIONS(1451), + [anon_sym_bitsxor] = ACTIONS(1451), + [anon_sym_bytesadd] = ACTIONS(1451), + [anon_sym_bytesat] = ACTIONS(1451), + [anon_sym_bytesbuild] = ACTIONS(1451), + [anon_sym_bytescollect] = ACTIONS(1451), + [anon_sym_bytesends_DASHwith] = ACTIONS(1451), + [anon_sym_bytesindex_DASHof] = ACTIONS(1451), + [anon_sym_byteslength] = ACTIONS(1451), + [anon_sym_bytesremove] = ACTIONS(1451), + [anon_sym_bytesreplace] = ACTIONS(1451), + [anon_sym_bytesreverse] = ACTIONS(1451), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1451), + [anon_sym_commandlineedit] = ACTIONS(1451), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1451), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1451), + [anon_sym_configenv] = ACTIONS(1451), + [anon_sym_confignu] = ACTIONS(1451), + [anon_sym_configreset] = ACTIONS(1451), + [anon_sym_dateformat] = ACTIONS(1451), + [anon_sym_datehumanize] = ACTIONS(1451), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1451), + [anon_sym_datenow] = ACTIONS(1451), + [anon_sym_dateto_DASHrecord] = ACTIONS(1451), + [anon_sym_dateto_DASHtable] = ACTIONS(1451), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1451), + [anon_sym_debuginfo] = ACTIONS(1451), + [anon_sym_debugprofile] = ACTIONS(1451), + [anon_sym_decodebase32] = ACTIONS(1447), + [anon_sym_decodebase32hex] = ACTIONS(1451), + [anon_sym_decodebase64] = ACTIONS(1451), + [anon_sym_decodehex] = ACTIONS(1451), + [anon_sym_detectcolumns] = ACTIONS(1451), + [anon_sym_dropcolumn] = ACTIONS(1451), + [anon_sym_dropnth] = ACTIONS(1451), + [anon_sym_dtadd] = ACTIONS(1451), + [anon_sym_dtdiff] = ACTIONS(1451), + [anon_sym_dtformat] = ACTIONS(1451), + [anon_sym_dtnow] = ACTIONS(1451), + [anon_sym_dtpart] = ACTIONS(1451), + [anon_sym_dtto] = ACTIONS(1451), + [anon_sym_dtutcnow] = ACTIONS(1451), + [anon_sym_eachwhile] = ACTIONS(1451), + [anon_sym_encodebase32] = ACTIONS(1447), + [anon_sym_encodebase32hex] = ACTIONS(1451), + [anon_sym_encodebase64] = ACTIONS(1451), + [anon_sym_encodehex] = ACTIONS(1451), + [anon_sym_errormake] = ACTIONS(1451), + [anon_sym_exploreir] = ACTIONS(1451), + [anon_sym_formatdate] = ACTIONS(1451), + [anon_sym_formatduration] = ACTIONS(1451), + [anon_sym_formatfilesize] = ACTIONS(1451), + [anon_sym_formatpattern] = ACTIONS(1451), + [anon_sym_frombz2] = ACTIONS(1451), + [anon_sym_fromcsv] = ACTIONS(1451), + [anon_sym_fromeml] = ACTIONS(1451), + [anon_sym_fromgz] = ACTIONS(1451), + [anon_sym_fromics] = ACTIONS(1451), + [anon_sym_fromini] = ACTIONS(1451), + [anon_sym_fromjson] = ACTIONS(1451), + [anon_sym_frommsgpack] = ACTIONS(1447), + [anon_sym_frommsgpackz] = ACTIONS(1451), + [anon_sym_fromnuon] = ACTIONS(1451), + [anon_sym_fromods] = ACTIONS(1451), + [anon_sym_fromparquet] = ACTIONS(1451), + [anon_sym_fromplist] = ACTIONS(1451), + [anon_sym_frompng] = ACTIONS(1451), + [anon_sym_fromssv] = ACTIONS(1451), + [anon_sym_fromtoml] = ACTIONS(1451), + [anon_sym_fromtsv] = ACTIONS(1451), + [anon_sym_fromurl] = ACTIONS(1451), + [anon_sym_fromvcf] = ACTIONS(1451), + [anon_sym_fromxlsx] = ACTIONS(1451), + [anon_sym_fromxml] = ACTIONS(1451), + [anon_sym_fromxz] = ACTIONS(1451), + [anon_sym_fromyaml] = ACTIONS(1451), + [anon_sym_fromyml] = ACTIONS(1451), + [anon_sym_fromzst] = ACTIONS(1451), + [anon_sym_hashmd5] = ACTIONS(1451), + [anon_sym_hashsha256] = ACTIONS(1451), + [anon_sym_helpaliases] = ACTIONS(1451), + [anon_sym_helpcommands] = ACTIONS(1451), + [anon_sym_helpescapes] = ACTIONS(1451), + [anon_sym_helpexterns] = ACTIONS(1451), + [anon_sym_helpmodules] = ACTIONS(1451), + [anon_sym_helpoperators] = ACTIONS(1451), + [anon_sym_historyimport] = ACTIONS(1451), + [anon_sym_historysession] = ACTIONS(1451), + [anon_sym_httpdelete] = ACTIONS(1451), + [anon_sym_httpget] = ACTIONS(1451), + [anon_sym_httphead] = ACTIONS(1451), + [anon_sym_httpoptions] = ACTIONS(1451), + [anon_sym_httppatch] = ACTIONS(1451), + [anon_sym_httppost] = ACTIONS(1451), + [anon_sym_httpput] = ACTIONS(1451), + [anon_sym_inputlist] = ACTIONS(1447), + [anon_sym_inputlisten] = ACTIONS(1451), + [anon_sym_intobinary] = ACTIONS(1451), + [anon_sym_intobits] = ACTIONS(1451), + [anon_sym_intobool] = ACTIONS(1451), + [anon_sym_intocell_DASHpath] = ACTIONS(1451), + [anon_sym_intodatetime] = ACTIONS(1451), + [anon_sym_intoduration] = ACTIONS(1451), + [anon_sym_intofilesize] = ACTIONS(1451), + [anon_sym_intofloat] = ACTIONS(1451), + [anon_sym_intoglob] = ACTIONS(1451), + [anon_sym_intoint] = ACTIONS(1451), + [anon_sym_intorecord] = ACTIONS(1451), + [anon_sym_intosqlite] = ACTIONS(1451), + [anon_sym_intostring] = ACTIONS(1451), + [anon_sym_intovalue] = ACTIONS(1451), + [anon_sym_jsonpath] = ACTIONS(1451), + [anon_sym_keybindingsdefault] = ACTIONS(1451), + [anon_sym_keybindingslist] = ACTIONS(1447), + [anon_sym_keybindingslisten] = ACTIONS(1451), + [anon_sym_mathabs] = ACTIONS(1451), + [anon_sym_matharccos] = ACTIONS(1447), + [anon_sym_matharccosh] = ACTIONS(1451), + [anon_sym_matharcsin] = ACTIONS(1447), + [anon_sym_matharcsinh] = ACTIONS(1451), + [anon_sym_matharctan] = ACTIONS(1447), + [anon_sym_matharctanh] = ACTIONS(1451), + [anon_sym_mathavg] = ACTIONS(1451), + [anon_sym_mathceil] = ACTIONS(1451), + [anon_sym_mathcos] = ACTIONS(1447), + [anon_sym_mathcosh] = ACTIONS(1451), + [anon_sym_mathexp] = ACTIONS(1451), + [anon_sym_mathfloor] = ACTIONS(1451), + [anon_sym_mathln] = ACTIONS(1451), + [anon_sym_mathlog] = ACTIONS(1451), + [anon_sym_mathmax] = ACTIONS(1451), + [anon_sym_mathmedian] = ACTIONS(1451), + [anon_sym_mathmin] = ACTIONS(1451), + [anon_sym_mathmode] = ACTIONS(1451), + [anon_sym_mathproduct] = ACTIONS(1451), + [anon_sym_mathround] = ACTIONS(1451), + [anon_sym_mathsin] = ACTIONS(1447), + [anon_sym_mathsinh] = ACTIONS(1451), + [anon_sym_mathsqrt] = ACTIONS(1451), + [anon_sym_mathstddev] = ACTIONS(1451), + [anon_sym_mathsum] = ACTIONS(1451), + [anon_sym_mathtan] = ACTIONS(1447), + [anon_sym_mathtanh] = ACTIONS(1451), + [anon_sym_mathvariance] = ACTIONS(1451), + [anon_sym_metadataaccess] = ACTIONS(1451), + [anon_sym_metadataset] = ACTIONS(1451), + [anon_sym_pathbasename] = ACTIONS(1451), + [anon_sym_pathdirname] = ACTIONS(1451), + [anon_sym_pathexists] = ACTIONS(1451), + [anon_sym_pathexpand] = ACTIONS(1451), + [anon_sym_pathjoin] = ACTIONS(1451), + [anon_sym_pathparse] = ACTIONS(1451), + [anon_sym_pathrelative_DASHto] = ACTIONS(1451), + [anon_sym_pathsplit] = ACTIONS(1451), + [anon_sym_pathtype] = ACTIONS(1451), + [anon_sym_pluginadd] = ACTIONS(1451), + [anon_sym_pluginlist] = ACTIONS(1451), + [anon_sym_pluginrm] = ACTIONS(1451), + [anon_sym_pluginstop] = ACTIONS(1451), + [anon_sym_polarsagg] = ACTIONS(1447), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1451), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1451), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1451), + [anon_sym_polarsappend] = ACTIONS(1451), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1451), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1451), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1451), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1451), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1451), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1451), + [anon_sym_polarsas] = ACTIONS(1447), + [anon_sym_polarsas_DASHdate] = ACTIONS(1447), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1451), + [anon_sym_polarscache] = ACTIONS(1451), + [anon_sym_polarscast] = ACTIONS(1451), + [anon_sym_polarscol] = ACTIONS(1447), + [anon_sym_polarscollect] = ACTIONS(1451), + [anon_sym_polarscolumns] = ACTIONS(1451), + [anon_sym_polarsconcat] = ACTIONS(1447), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1451), + [anon_sym_polarscontains] = ACTIONS(1451), + [anon_sym_polarscount] = ACTIONS(1447), + [anon_sym_polarscount_DASHnull] = ACTIONS(1451), + [anon_sym_polarscumulative] = ACTIONS(1451), + [anon_sym_polarsdatepart] = ACTIONS(1451), + [anon_sym_polarsdecimal] = ACTIONS(1451), + [anon_sym_polarsdrop] = ACTIONS(1447), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1451), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1451), + [anon_sym_polarsdummies] = ACTIONS(1451), + [anon_sym_polarsexplode] = ACTIONS(1451), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1451), + [anon_sym_polarsfetch] = ACTIONS(1451), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1451), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1451), + [anon_sym_polarsfilter] = ACTIONS(1447), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1451), + [anon_sym_polarsfirst] = ACTIONS(1451), + [anon_sym_polarsflatten] = ACTIONS(1451), + [anon_sym_polarsget] = ACTIONS(1447), + [anon_sym_polarsget_DASHday] = ACTIONS(1451), + [anon_sym_polarsget_DASHhour] = ACTIONS(1451), + [anon_sym_polarsget_DASHminute] = ACTIONS(1451), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1451), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1451), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1451), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1451), + [anon_sym_polarsget_DASHweek] = ACTIONS(1447), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1451), + [anon_sym_polarsget_DASHyear] = ACTIONS(1451), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1451), + [anon_sym_polarsimplode] = ACTIONS(1451), + [anon_sym_polarsinteger] = ACTIONS(1451), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1451), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1451), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1451), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1451), + [anon_sym_polarsis_DASHin] = ACTIONS(1451), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1451), + [anon_sym_polarsis_DASHnull] = ACTIONS(1451), + [anon_sym_polarsis_DASHunique] = ACTIONS(1451), + [anon_sym_polarsjoin] = ACTIONS(1451), + [anon_sym_polarslast] = ACTIONS(1451), + [anon_sym_polarslen] = ACTIONS(1451), + [anon_sym_polarslit] = ACTIONS(1451), + [anon_sym_polarslowercase] = ACTIONS(1451), + [anon_sym_polarsmax] = ACTIONS(1451), + [anon_sym_polarsmean] = ACTIONS(1451), + [anon_sym_polarsmedian] = ACTIONS(1451), + [anon_sym_polarsmin] = ACTIONS(1451), + [anon_sym_polarsn_DASHunique] = ACTIONS(1451), + [anon_sym_polarsnot] = ACTIONS(1451), + [anon_sym_polarsopen] = ACTIONS(1451), + [anon_sym_polarsotherwise] = ACTIONS(1451), + [anon_sym_polarspivot] = ACTIONS(1451), + [anon_sym_polarsprofile] = ACTIONS(1451), + [anon_sym_polarsquantile] = ACTIONS(1451), + [anon_sym_polarsquery] = ACTIONS(1451), + [anon_sym_polarsrename] = ACTIONS(1451), + [anon_sym_polarsreplace] = ACTIONS(1447), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1451), + [anon_sym_polarsreverse] = ACTIONS(1451), + [anon_sym_polarsrolling] = ACTIONS(1451), + [anon_sym_polarssample] = ACTIONS(1451), + [anon_sym_polarssave] = ACTIONS(1451), + [anon_sym_polarsschema] = ACTIONS(1451), + [anon_sym_polarsselect] = ACTIONS(1451), + [anon_sym_polarsset] = ACTIONS(1447), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1451), + [anon_sym_polarsshape] = ACTIONS(1451), + [anon_sym_polarsshift] = ACTIONS(1451), + [anon_sym_polarsslice] = ACTIONS(1451), + [anon_sym_polarssort_DASHby] = ACTIONS(1451), + [anon_sym_polarsstd] = ACTIONS(1451), + [anon_sym_polarsstore_DASHget] = ACTIONS(1451), + [anon_sym_polarsstore_DASHls] = ACTIONS(1451), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1451), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1451), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1451), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1451), + [anon_sym_polarsstrftime] = ACTIONS(1451), + [anon_sym_polarssum] = ACTIONS(1447), + [anon_sym_polarssummary] = ACTIONS(1451), + [anon_sym_polarstake] = ACTIONS(1451), + [anon_sym_polarsunique] = ACTIONS(1451), + [anon_sym_polarsunnest] = ACTIONS(1451), + [anon_sym_polarsunpivot] = ACTIONS(1451), + [anon_sym_polarsuppercase] = ACTIONS(1451), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1451), + [anon_sym_polarsvar] = ACTIONS(1451), + [anon_sym_polarswhen] = ACTIONS(1451), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1451), + [anon_sym_querydb] = ACTIONS(1451), + [anon_sym_querygit] = ACTIONS(1451), + [anon_sym_queryjson] = ACTIONS(1451), + [anon_sym_queryweb] = ACTIONS(1447), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1451), + [anon_sym_queryxml] = ACTIONS(1451), + [anon_sym_randombinary] = ACTIONS(1451), + [anon_sym_randombool] = ACTIONS(1451), + [anon_sym_randomchars] = ACTIONS(1451), + [anon_sym_randomdice] = ACTIONS(1451), + [anon_sym_randomfloat] = ACTIONS(1451), + [anon_sym_randomint] = ACTIONS(1451), + [anon_sym_randomuuid] = ACTIONS(1451), + [anon_sym_rolldown] = ACTIONS(1451), + [anon_sym_rollleft] = ACTIONS(1451), + [anon_sym_rollright] = ACTIONS(1451), + [anon_sym_rollup] = ACTIONS(1451), + [anon_sym_scopealiases] = ACTIONS(1451), + [anon_sym_scopecommands] = ACTIONS(1451), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1451), + [anon_sym_scopeexterns] = ACTIONS(1451), + [anon_sym_scopemodules] = ACTIONS(1451), + [anon_sym_scopevariables] = ACTIONS(1451), + [anon_sym_seqchar] = ACTIONS(1451), + [anon_sym_seqdate] = ACTIONS(1451), + [anon_sym_skipuntil] = ACTIONS(1451), + [anon_sym_skipwhile] = ACTIONS(1451), + [anon_sym_splitcell_DASHpath] = ACTIONS(1451), + [anon_sym_splitchars] = ACTIONS(1451), + [anon_sym_splitcolumn] = ACTIONS(1451), + [anon_sym_splitlist] = ACTIONS(1451), + [anon_sym_splitrow] = ACTIONS(1451), + [anon_sym_splitwords] = ACTIONS(1451), + [anon_sym_storcreate] = ACTIONS(1451), + [anon_sym_stordelete] = ACTIONS(1451), + [anon_sym_storexport] = ACTIONS(1451), + [anon_sym_storimport] = ACTIONS(1451), + [anon_sym_storinsert] = ACTIONS(1451), + [anon_sym_storopen] = ACTIONS(1451), + [anon_sym_storreset] = ACTIONS(1451), + [anon_sym_storupdate] = ACTIONS(1451), + [anon_sym_strbexpand] = ACTIONS(1451), + [anon_sym_strcamel_DASHcase] = ACTIONS(1451), + [anon_sym_strcapitalize] = ACTIONS(1451), + [anon_sym_strcompress] = ACTIONS(1451), + [anon_sym_strcontains] = ACTIONS(1451), + [anon_sym_strdecompress] = ACTIONS(1451), + [anon_sym_strdedent] = ACTIONS(1451), + [anon_sym_strdeunicode] = ACTIONS(1451), + [anon_sym_strdistance] = ACTIONS(1451), + [anon_sym_strdowncase] = ACTIONS(1451), + [anon_sym_strends_DASHwith] = ACTIONS(1451), + [anon_sym_strexpand] = ACTIONS(1451), + [anon_sym_strindent] = ACTIONS(1451), + [anon_sym_strindex_DASHof] = ACTIONS(1451), + [anon_sym_strjoin] = ACTIONS(1451), + [anon_sym_strkebab_DASHcase] = ACTIONS(1451), + [anon_sym_strlength] = ACTIONS(1451), + [anon_sym_strpascal_DASHcase] = ACTIONS(1451), + [anon_sym_strreplace] = ACTIONS(1451), + [anon_sym_strreverse] = ACTIONS(1451), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1451), + [anon_sym_strsimilarity] = ACTIONS(1451), + [anon_sym_strsnake_DASHcase] = ACTIONS(1451), + [anon_sym_strstarts_DASHwith] = ACTIONS(1451), + [anon_sym_strstats] = ACTIONS(1451), + [anon_sym_strsubstring] = ACTIONS(1451), + [anon_sym_strtitle_DASHcase] = ACTIONS(1451), + [anon_sym_strtrim] = ACTIONS(1451), + [anon_sym_strupcase] = ACTIONS(1451), + [anon_sym_strwrap] = ACTIONS(1451), + [anon_sym_syscpu] = ACTIONS(1451), + [anon_sym_sysdisks] = ACTIONS(1451), + [anon_sym_syshost] = ACTIONS(1451), + [anon_sym_sysmem] = ACTIONS(1451), + [anon_sym_sysnet] = ACTIONS(1451), + [anon_sym_systemp] = ACTIONS(1451), + [anon_sym_sysusers] = ACTIONS(1451), + [anon_sym_takeuntil] = ACTIONS(1451), + [anon_sym_takewhile] = ACTIONS(1451), + [anon_sym_termquery] = ACTIONS(1451), + [anon_sym_termsize] = ACTIONS(1451), + [anon_sym_tobz2] = ACTIONS(1451), + [anon_sym_tocsv] = ACTIONS(1451), + [anon_sym_togz] = ACTIONS(1451), + [anon_sym_tohtml] = ACTIONS(1451), + [anon_sym_tojson] = ACTIONS(1451), + [anon_sym_tomd] = ACTIONS(1451), + [anon_sym_tomsgpack] = ACTIONS(1447), + [anon_sym_tomsgpackz] = ACTIONS(1451), + [anon_sym_tonuon] = ACTIONS(1451), + [anon_sym_toparquet] = ACTIONS(1451), + [anon_sym_toplist] = ACTIONS(1451), + [anon_sym_topng] = ACTIONS(1451), + [anon_sym_totext] = ACTIONS(1451), + [anon_sym_totoml] = ACTIONS(1451), + [anon_sym_totsv] = ACTIONS(1451), + [anon_sym_toxml] = ACTIONS(1451), + [anon_sym_toxz] = ACTIONS(1451), + [anon_sym_toyaml] = ACTIONS(1451), + [anon_sym_tozst] = ACTIONS(1451), + [anon_sym_updatecells] = ACTIONS(1451), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1451), + [anon_sym_urldecode] = ACTIONS(1451), + [anon_sym_urlencode] = ACTIONS(1451), + [anon_sym_urljoin] = ACTIONS(1451), + [anon_sym_urlparse] = ACTIONS(1451), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1451), + [anon_sym_viewfiles] = ACTIONS(1451), + [anon_sym_viewir] = ACTIONS(1451), + [anon_sym_viewsource] = ACTIONS(1451), + [anon_sym_viewspan] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1451), + }, + [321] = { + [sym_comment] = STATE(321), + [aux_sym_cmd_identifier_token1] = ACTIONS(1246), + [aux_sym_cmd_identifier_token2] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1244), + [aux_sym_cmd_identifier_token4] = ACTIONS(1244), + [aux_sym_cmd_identifier_token5] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [aux_sym_cmd_identifier_token7] = ACTIONS(1244), + [aux_sym_cmd_identifier_token8] = ACTIONS(1244), + [aux_sym_cmd_identifier_token9] = ACTIONS(1246), + [aux_sym_cmd_identifier_token10] = ACTIONS(1244), + [aux_sym_cmd_identifier_token11] = ACTIONS(1244), + [aux_sym_cmd_identifier_token12] = ACTIONS(1244), + [aux_sym_cmd_identifier_token13] = ACTIONS(1246), + [aux_sym_cmd_identifier_token14] = ACTIONS(1244), + [aux_sym_cmd_identifier_token15] = ACTIONS(1246), + [aux_sym_cmd_identifier_token16] = ACTIONS(1244), + [aux_sym_cmd_identifier_token17] = ACTIONS(1244), + [aux_sym_cmd_identifier_token18] = ACTIONS(1246), + [aux_sym_cmd_identifier_token19] = ACTIONS(1244), + [aux_sym_cmd_identifier_token20] = ACTIONS(1244), + [aux_sym_cmd_identifier_token21] = ACTIONS(1244), + [aux_sym_cmd_identifier_token22] = ACTIONS(1244), + [aux_sym_cmd_identifier_token23] = ACTIONS(1244), + [aux_sym_cmd_identifier_token24] = ACTIONS(1244), + [aux_sym_cmd_identifier_token25] = ACTIONS(1244), + [aux_sym_cmd_identifier_token26] = ACTIONS(1244), + [aux_sym_cmd_identifier_token27] = ACTIONS(1244), + [aux_sym_cmd_identifier_token28] = ACTIONS(1244), + [aux_sym_cmd_identifier_token29] = ACTIONS(1244), + [aux_sym_cmd_identifier_token30] = ACTIONS(1244), + [aux_sym_cmd_identifier_token31] = ACTIONS(1244), + [aux_sym_cmd_identifier_token32] = ACTIONS(1246), + [aux_sym_cmd_identifier_token33] = ACTIONS(1244), + [aux_sym_cmd_identifier_token34] = ACTIONS(1246), + [aux_sym_cmd_identifier_token35] = ACTIONS(1244), + [aux_sym_cmd_identifier_token36] = ACTIONS(1244), + [aux_sym_cmd_identifier_token37] = ACTIONS(1244), + [aux_sym_cmd_identifier_token38] = ACTIONS(1246), + [aux_sym_cmd_identifier_token39] = ACTIONS(1244), + [aux_sym_cmd_identifier_token40] = ACTIONS(1244), + [sym__newline] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [aux_sym_expr_unary_token1] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_DOT_DOT_LT] = ACTIONS(1244), + [anon_sym_null] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [aux_sym__val_number_decimal_token1] = ACTIONS(1246), + [aux_sym__val_number_decimal_token2] = ACTIONS(1244), + [aux_sym__val_number_decimal_token3] = ACTIONS(1244), + [aux_sym__val_number_decimal_token4] = ACTIONS(1244), + [aux_sym__val_number_token1] = ACTIONS(1244), + [aux_sym__val_number_token2] = ACTIONS(1244), + [aux_sym__val_number_token3] = ACTIONS(1244), + [aux_sym__val_number_token4] = ACTIONS(1246), + [aux_sym__val_number_token5] = ACTIONS(1246), + [aux_sym__val_number_token6] = ACTIONS(1246), + [anon_sym_0b] = ACTIONS(1246), + [anon_sym_0o] = ACTIONS(1246), + [anon_sym_0x] = ACTIONS(1246), + [sym_val_date] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym__str_single_quotes] = ACTIONS(1244), + [sym__str_back_ticks] = ACTIONS(1244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1244), + [anon_sym_CARET] = ACTIONS(1244), + [anon_sym_ansigradient] = ACTIONS(1244), + [anon_sym_ansilink] = ACTIONS(1244), + [anon_sym_ansistrip] = ACTIONS(1244), + [anon_sym_bitsand] = ACTIONS(1244), + [anon_sym_bitsnot] = ACTIONS(1244), + [anon_sym_bitsor] = ACTIONS(1244), + [anon_sym_bitsrol] = ACTIONS(1244), + [anon_sym_bitsror] = ACTIONS(1244), + [anon_sym_bitsshl] = ACTIONS(1244), + [anon_sym_bitsshr] = ACTIONS(1244), + [anon_sym_bitsxor] = ACTIONS(1244), + [anon_sym_bytesadd] = ACTIONS(1244), + [anon_sym_bytesat] = ACTIONS(1244), + [anon_sym_bytesbuild] = ACTIONS(1244), + [anon_sym_bytescollect] = ACTIONS(1244), + [anon_sym_bytesends_DASHwith] = ACTIONS(1244), + [anon_sym_bytesindex_DASHof] = ACTIONS(1244), + [anon_sym_byteslength] = ACTIONS(1244), + [anon_sym_bytesremove] = ACTIONS(1244), + [anon_sym_bytesreplace] = ACTIONS(1244), + [anon_sym_bytesreverse] = ACTIONS(1244), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1244), + [anon_sym_commandlineedit] = ACTIONS(1244), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1244), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1244), + [anon_sym_configenv] = ACTIONS(1244), + [anon_sym_confignu] = ACTIONS(1244), + [anon_sym_configreset] = ACTIONS(1244), + [anon_sym_dateformat] = ACTIONS(1244), + [anon_sym_datehumanize] = ACTIONS(1244), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1244), + [anon_sym_datenow] = ACTIONS(1244), + [anon_sym_dateto_DASHrecord] = ACTIONS(1244), + [anon_sym_dateto_DASHtable] = ACTIONS(1244), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1244), + [anon_sym_debuginfo] = ACTIONS(1244), + [anon_sym_debugprofile] = ACTIONS(1244), + [anon_sym_decodebase32] = ACTIONS(1246), + [anon_sym_decodebase32hex] = ACTIONS(1244), + [anon_sym_decodebase64] = ACTIONS(1244), + [anon_sym_decodehex] = ACTIONS(1244), + [anon_sym_detectcolumns] = ACTIONS(1244), + [anon_sym_dropcolumn] = ACTIONS(1244), + [anon_sym_dropnth] = ACTIONS(1244), + [anon_sym_dtadd] = ACTIONS(1244), + [anon_sym_dtdiff] = ACTIONS(1244), + [anon_sym_dtformat] = ACTIONS(1244), + [anon_sym_dtnow] = ACTIONS(1244), + [anon_sym_dtpart] = ACTIONS(1244), + [anon_sym_dtto] = ACTIONS(1244), + [anon_sym_dtutcnow] = ACTIONS(1244), + [anon_sym_eachwhile] = ACTIONS(1244), + [anon_sym_encodebase32] = ACTIONS(1246), + [anon_sym_encodebase32hex] = ACTIONS(1244), + [anon_sym_encodebase64] = ACTIONS(1244), + [anon_sym_encodehex] = ACTIONS(1244), + [anon_sym_errormake] = ACTIONS(1244), + [anon_sym_exploreir] = ACTIONS(1244), + [anon_sym_formatdate] = ACTIONS(1244), + [anon_sym_formatduration] = ACTIONS(1244), + [anon_sym_formatfilesize] = ACTIONS(1244), + [anon_sym_formatpattern] = ACTIONS(1244), + [anon_sym_frombz2] = ACTIONS(1244), + [anon_sym_fromcsv] = ACTIONS(1244), + [anon_sym_fromeml] = ACTIONS(1244), + [anon_sym_fromgz] = ACTIONS(1244), + [anon_sym_fromics] = ACTIONS(1244), + [anon_sym_fromini] = ACTIONS(1244), + [anon_sym_fromjson] = ACTIONS(1244), + [anon_sym_frommsgpack] = ACTIONS(1246), + [anon_sym_frommsgpackz] = ACTIONS(1244), + [anon_sym_fromnuon] = ACTIONS(1244), + [anon_sym_fromods] = ACTIONS(1244), + [anon_sym_fromparquet] = ACTIONS(1244), + [anon_sym_fromplist] = ACTIONS(1244), + [anon_sym_frompng] = ACTIONS(1244), + [anon_sym_fromssv] = ACTIONS(1244), + [anon_sym_fromtoml] = ACTIONS(1244), + [anon_sym_fromtsv] = ACTIONS(1244), + [anon_sym_fromurl] = ACTIONS(1244), + [anon_sym_fromvcf] = ACTIONS(1244), + [anon_sym_fromxlsx] = ACTIONS(1244), + [anon_sym_fromxml] = ACTIONS(1244), + [anon_sym_fromxz] = ACTIONS(1244), + [anon_sym_fromyaml] = ACTIONS(1244), + [anon_sym_fromyml] = ACTIONS(1244), + [anon_sym_fromzst] = ACTIONS(1244), + [anon_sym_hashmd5] = ACTIONS(1244), + [anon_sym_hashsha256] = ACTIONS(1244), + [anon_sym_helpaliases] = ACTIONS(1244), + [anon_sym_helpcommands] = ACTIONS(1244), + [anon_sym_helpescapes] = ACTIONS(1244), + [anon_sym_helpexterns] = ACTIONS(1244), + [anon_sym_helpmodules] = ACTIONS(1244), + [anon_sym_helpoperators] = ACTIONS(1244), + [anon_sym_historyimport] = ACTIONS(1244), + [anon_sym_historysession] = ACTIONS(1244), + [anon_sym_httpdelete] = ACTIONS(1244), + [anon_sym_httpget] = ACTIONS(1244), + [anon_sym_httphead] = ACTIONS(1244), + [anon_sym_httpoptions] = ACTIONS(1244), + [anon_sym_httppatch] = ACTIONS(1244), + [anon_sym_httppost] = ACTIONS(1244), + [anon_sym_httpput] = ACTIONS(1244), + [anon_sym_inputlist] = ACTIONS(1246), + [anon_sym_inputlisten] = ACTIONS(1244), + [anon_sym_intobinary] = ACTIONS(1244), + [anon_sym_intobits] = ACTIONS(1244), + [anon_sym_intobool] = ACTIONS(1244), + [anon_sym_intocell_DASHpath] = ACTIONS(1244), + [anon_sym_intodatetime] = ACTIONS(1244), + [anon_sym_intoduration] = ACTIONS(1244), + [anon_sym_intofilesize] = ACTIONS(1244), + [anon_sym_intofloat] = ACTIONS(1244), + [anon_sym_intoglob] = ACTIONS(1244), + [anon_sym_intoint] = ACTIONS(1244), + [anon_sym_intorecord] = ACTIONS(1244), + [anon_sym_intosqlite] = ACTIONS(1244), + [anon_sym_intostring] = ACTIONS(1244), + [anon_sym_intovalue] = ACTIONS(1244), + [anon_sym_jsonpath] = ACTIONS(1244), + [anon_sym_keybindingsdefault] = ACTIONS(1244), + [anon_sym_keybindingslist] = ACTIONS(1246), + [anon_sym_keybindingslisten] = ACTIONS(1244), + [anon_sym_mathabs] = ACTIONS(1244), + [anon_sym_matharccos] = ACTIONS(1246), + [anon_sym_matharccosh] = ACTIONS(1244), + [anon_sym_matharcsin] = ACTIONS(1246), + [anon_sym_matharcsinh] = ACTIONS(1244), + [anon_sym_matharctan] = ACTIONS(1246), + [anon_sym_matharctanh] = ACTIONS(1244), + [anon_sym_mathavg] = ACTIONS(1244), + [anon_sym_mathceil] = ACTIONS(1244), + [anon_sym_mathcos] = ACTIONS(1246), + [anon_sym_mathcosh] = ACTIONS(1244), + [anon_sym_mathexp] = ACTIONS(1244), + [anon_sym_mathfloor] = ACTIONS(1244), + [anon_sym_mathln] = ACTIONS(1244), + [anon_sym_mathlog] = ACTIONS(1244), + [anon_sym_mathmax] = ACTIONS(1244), + [anon_sym_mathmedian] = ACTIONS(1244), + [anon_sym_mathmin] = ACTIONS(1244), + [anon_sym_mathmode] = ACTIONS(1244), + [anon_sym_mathproduct] = ACTIONS(1244), + [anon_sym_mathround] = ACTIONS(1244), + [anon_sym_mathsin] = ACTIONS(1246), + [anon_sym_mathsinh] = ACTIONS(1244), + [anon_sym_mathsqrt] = ACTIONS(1244), + [anon_sym_mathstddev] = ACTIONS(1244), + [anon_sym_mathsum] = ACTIONS(1244), + [anon_sym_mathtan] = ACTIONS(1246), + [anon_sym_mathtanh] = ACTIONS(1244), + [anon_sym_mathvariance] = ACTIONS(1244), + [anon_sym_metadataaccess] = ACTIONS(1244), + [anon_sym_metadataset] = ACTIONS(1244), + [anon_sym_pathbasename] = ACTIONS(1244), + [anon_sym_pathdirname] = ACTIONS(1244), + [anon_sym_pathexists] = ACTIONS(1244), + [anon_sym_pathexpand] = ACTIONS(1244), + [anon_sym_pathjoin] = ACTIONS(1244), + [anon_sym_pathparse] = ACTIONS(1244), + [anon_sym_pathrelative_DASHto] = ACTIONS(1244), + [anon_sym_pathsplit] = ACTIONS(1244), + [anon_sym_pathtype] = ACTIONS(1244), + [anon_sym_pluginadd] = ACTIONS(1244), + [anon_sym_pluginlist] = ACTIONS(1244), + [anon_sym_pluginrm] = ACTIONS(1244), + [anon_sym_pluginstop] = ACTIONS(1244), + [anon_sym_polarsagg] = ACTIONS(1246), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1244), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1244), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsappend] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1244), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1244), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1244), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1244), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1244), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1244), + [anon_sym_polarsas] = ACTIONS(1246), + [anon_sym_polarsas_DASHdate] = ACTIONS(1246), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1244), + [anon_sym_polarscache] = ACTIONS(1244), + [anon_sym_polarscast] = ACTIONS(1244), + [anon_sym_polarscol] = ACTIONS(1246), + [anon_sym_polarscollect] = ACTIONS(1244), + [anon_sym_polarscolumns] = ACTIONS(1244), + [anon_sym_polarsconcat] = ACTIONS(1246), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1244), + [anon_sym_polarscontains] = ACTIONS(1244), + [anon_sym_polarscount] = ACTIONS(1246), + [anon_sym_polarscount_DASHnull] = ACTIONS(1244), + [anon_sym_polarscumulative] = ACTIONS(1244), + [anon_sym_polarsdatepart] = ACTIONS(1244), + [anon_sym_polarsdecimal] = ACTIONS(1244), + [anon_sym_polarsdrop] = ACTIONS(1246), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1244), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1244), + [anon_sym_polarsdummies] = ACTIONS(1244), + [anon_sym_polarsexplode] = ACTIONS(1244), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1244), + [anon_sym_polarsfetch] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1244), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1244), + [anon_sym_polarsfilter] = ACTIONS(1246), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1244), + [anon_sym_polarsfirst] = ACTIONS(1244), + [anon_sym_polarsflatten] = ACTIONS(1244), + [anon_sym_polarsget] = ACTIONS(1246), + [anon_sym_polarsget_DASHday] = ACTIONS(1244), + [anon_sym_polarsget_DASHhour] = ACTIONS(1244), + [anon_sym_polarsget_DASHminute] = ACTIONS(1244), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1244), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1244), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1244), + [anon_sym_polarsget_DASHweek] = ACTIONS(1246), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1244), + [anon_sym_polarsget_DASHyear] = ACTIONS(1244), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1244), + [anon_sym_polarsimplode] = ACTIONS(1244), + [anon_sym_polarsinteger] = ACTIONS(1244), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1244), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1244), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1244), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1244), + [anon_sym_polarsis_DASHin] = ACTIONS(1244), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHnull] = ACTIONS(1244), + [anon_sym_polarsis_DASHunique] = ACTIONS(1244), + [anon_sym_polarsjoin] = ACTIONS(1244), + [anon_sym_polarslast] = ACTIONS(1244), + [anon_sym_polarslen] = ACTIONS(1244), + [anon_sym_polarslit] = ACTIONS(1244), + [anon_sym_polarslowercase] = ACTIONS(1244), + [anon_sym_polarsmax] = ACTIONS(1244), + [anon_sym_polarsmean] = ACTIONS(1244), + [anon_sym_polarsmedian] = ACTIONS(1244), + [anon_sym_polarsmin] = ACTIONS(1244), + [anon_sym_polarsn_DASHunique] = ACTIONS(1244), + [anon_sym_polarsnot] = ACTIONS(1244), + [anon_sym_polarsopen] = ACTIONS(1244), + [anon_sym_polarsotherwise] = ACTIONS(1244), + [anon_sym_polarspivot] = ACTIONS(1244), + [anon_sym_polarsprofile] = ACTIONS(1244), + [anon_sym_polarsquantile] = ACTIONS(1244), + [anon_sym_polarsquery] = ACTIONS(1244), + [anon_sym_polarsrename] = ACTIONS(1244), + [anon_sym_polarsreplace] = ACTIONS(1246), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1244), + [anon_sym_polarsreverse] = ACTIONS(1244), + [anon_sym_polarsrolling] = ACTIONS(1244), + [anon_sym_polarssample] = ACTIONS(1244), + [anon_sym_polarssave] = ACTIONS(1244), + [anon_sym_polarsschema] = ACTIONS(1244), + [anon_sym_polarsselect] = ACTIONS(1244), + [anon_sym_polarsset] = ACTIONS(1246), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1244), + [anon_sym_polarsshape] = ACTIONS(1244), + [anon_sym_polarsshift] = ACTIONS(1244), + [anon_sym_polarsslice] = ACTIONS(1244), + [anon_sym_polarssort_DASHby] = ACTIONS(1244), + [anon_sym_polarsstd] = ACTIONS(1244), + [anon_sym_polarsstore_DASHget] = ACTIONS(1244), + [anon_sym_polarsstore_DASHls] = ACTIONS(1244), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1244), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1244), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1244), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1244), + [anon_sym_polarsstrftime] = ACTIONS(1244), + [anon_sym_polarssum] = ACTIONS(1246), + [anon_sym_polarssummary] = ACTIONS(1244), + [anon_sym_polarstake] = ACTIONS(1244), + [anon_sym_polarsunique] = ACTIONS(1244), + [anon_sym_polarsunnest] = ACTIONS(1244), + [anon_sym_polarsunpivot] = ACTIONS(1244), + [anon_sym_polarsuppercase] = ACTIONS(1244), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1244), + [anon_sym_polarsvar] = ACTIONS(1244), + [anon_sym_polarswhen] = ACTIONS(1244), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1244), + [anon_sym_querydb] = ACTIONS(1244), + [anon_sym_querygit] = ACTIONS(1244), + [anon_sym_queryjson] = ACTIONS(1244), + [anon_sym_queryweb] = ACTIONS(1246), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1244), + [anon_sym_queryxml] = ACTIONS(1244), + [anon_sym_randombinary] = ACTIONS(1244), + [anon_sym_randombool] = ACTIONS(1244), + [anon_sym_randomchars] = ACTIONS(1244), + [anon_sym_randomdice] = ACTIONS(1244), + [anon_sym_randomfloat] = ACTIONS(1244), + [anon_sym_randomint] = ACTIONS(1244), + [anon_sym_randomuuid] = ACTIONS(1244), + [anon_sym_rolldown] = ACTIONS(1244), + [anon_sym_rollleft] = ACTIONS(1244), + [anon_sym_rollright] = ACTIONS(1244), + [anon_sym_rollup] = ACTIONS(1244), + [anon_sym_scopealiases] = ACTIONS(1244), + [anon_sym_scopecommands] = ACTIONS(1244), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1244), + [anon_sym_scopeexterns] = ACTIONS(1244), + [anon_sym_scopemodules] = ACTIONS(1244), + [anon_sym_scopevariables] = ACTIONS(1244), + [anon_sym_seqchar] = ACTIONS(1244), + [anon_sym_seqdate] = ACTIONS(1244), + [anon_sym_skipuntil] = ACTIONS(1244), + [anon_sym_skipwhile] = ACTIONS(1244), + [anon_sym_splitcell_DASHpath] = ACTIONS(1244), + [anon_sym_splitchars] = ACTIONS(1244), + [anon_sym_splitcolumn] = ACTIONS(1244), + [anon_sym_splitlist] = ACTIONS(1244), + [anon_sym_splitrow] = ACTIONS(1244), + [anon_sym_splitwords] = ACTIONS(1244), + [anon_sym_storcreate] = ACTIONS(1244), + [anon_sym_stordelete] = ACTIONS(1244), + [anon_sym_storexport] = ACTIONS(1244), + [anon_sym_storimport] = ACTIONS(1244), + [anon_sym_storinsert] = ACTIONS(1244), + [anon_sym_storopen] = ACTIONS(1244), + [anon_sym_storreset] = ACTIONS(1244), + [anon_sym_storupdate] = ACTIONS(1244), + [anon_sym_strbexpand] = ACTIONS(1244), + [anon_sym_strcamel_DASHcase] = ACTIONS(1244), + [anon_sym_strcapitalize] = ACTIONS(1244), + [anon_sym_strcompress] = ACTIONS(1244), + [anon_sym_strcontains] = ACTIONS(1244), + [anon_sym_strdecompress] = ACTIONS(1244), + [anon_sym_strdedent] = ACTIONS(1244), + [anon_sym_strdeunicode] = ACTIONS(1244), + [anon_sym_strdistance] = ACTIONS(1244), + [anon_sym_strdowncase] = ACTIONS(1244), + [anon_sym_strends_DASHwith] = ACTIONS(1244), + [anon_sym_strexpand] = ACTIONS(1244), + [anon_sym_strindent] = ACTIONS(1244), + [anon_sym_strindex_DASHof] = ACTIONS(1244), + [anon_sym_strjoin] = ACTIONS(1244), + [anon_sym_strkebab_DASHcase] = ACTIONS(1244), + [anon_sym_strlength] = ACTIONS(1244), + [anon_sym_strpascal_DASHcase] = ACTIONS(1244), + [anon_sym_strreplace] = ACTIONS(1244), + [anon_sym_strreverse] = ACTIONS(1244), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strsimilarity] = ACTIONS(1244), + [anon_sym_strsnake_DASHcase] = ACTIONS(1244), + [anon_sym_strstarts_DASHwith] = ACTIONS(1244), + [anon_sym_strstats] = ACTIONS(1244), + [anon_sym_strsubstring] = ACTIONS(1244), + [anon_sym_strtitle_DASHcase] = ACTIONS(1244), + [anon_sym_strtrim] = ACTIONS(1244), + [anon_sym_strupcase] = ACTIONS(1244), + [anon_sym_strwrap] = ACTIONS(1244), + [anon_sym_syscpu] = ACTIONS(1244), + [anon_sym_sysdisks] = ACTIONS(1244), + [anon_sym_syshost] = ACTIONS(1244), + [anon_sym_sysmem] = ACTIONS(1244), + [anon_sym_sysnet] = ACTIONS(1244), + [anon_sym_systemp] = ACTIONS(1244), + [anon_sym_sysusers] = ACTIONS(1244), + [anon_sym_takeuntil] = ACTIONS(1244), + [anon_sym_takewhile] = ACTIONS(1244), + [anon_sym_termquery] = ACTIONS(1244), + [anon_sym_termsize] = ACTIONS(1244), + [anon_sym_tobz2] = ACTIONS(1244), + [anon_sym_tocsv] = ACTIONS(1244), + [anon_sym_togz] = ACTIONS(1244), + [anon_sym_tohtml] = ACTIONS(1244), + [anon_sym_tojson] = ACTIONS(1244), + [anon_sym_tomd] = ACTIONS(1244), + [anon_sym_tomsgpack] = ACTIONS(1246), + [anon_sym_tomsgpackz] = ACTIONS(1244), + [anon_sym_tonuon] = ACTIONS(1244), + [anon_sym_toparquet] = ACTIONS(1244), + [anon_sym_toplist] = ACTIONS(1244), + [anon_sym_topng] = ACTIONS(1244), + [anon_sym_totext] = ACTIONS(1244), + [anon_sym_totoml] = ACTIONS(1244), + [anon_sym_totsv] = ACTIONS(1244), + [anon_sym_toxml] = ACTIONS(1244), + [anon_sym_toxz] = ACTIONS(1244), + [anon_sym_toyaml] = ACTIONS(1244), + [anon_sym_tozst] = ACTIONS(1244), + [anon_sym_updatecells] = ACTIONS(1244), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1244), + [anon_sym_urldecode] = ACTIONS(1244), + [anon_sym_urlencode] = ACTIONS(1244), + [anon_sym_urljoin] = ACTIONS(1244), + [anon_sym_urlparse] = ACTIONS(1244), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1244), + [anon_sym_viewfiles] = ACTIONS(1244), + [anon_sym_viewir] = ACTIONS(1244), + [anon_sym_viewsource] = ACTIONS(1244), + [anon_sym_viewspan] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1244), + }, + [322] = { + [sym_comment] = STATE(322), + [aux_sym_cmd_identifier_token1] = ACTIONS(1469), + [aux_sym_cmd_identifier_token2] = ACTIONS(1469), + [aux_sym_cmd_identifier_token3] = ACTIONS(1469), + [aux_sym_cmd_identifier_token4] = ACTIONS(1469), + [aux_sym_cmd_identifier_token5] = ACTIONS(1469), + [aux_sym_cmd_identifier_token6] = ACTIONS(1469), + [aux_sym_cmd_identifier_token7] = ACTIONS(1469), + [aux_sym_cmd_identifier_token8] = ACTIONS(1469), + [aux_sym_cmd_identifier_token9] = ACTIONS(1469), + [aux_sym_cmd_identifier_token10] = ACTIONS(1469), + [aux_sym_cmd_identifier_token11] = ACTIONS(1469), + [aux_sym_cmd_identifier_token12] = ACTIONS(1469), + [aux_sym_cmd_identifier_token13] = ACTIONS(1469), + [aux_sym_cmd_identifier_token14] = ACTIONS(1469), + [aux_sym_cmd_identifier_token15] = ACTIONS(1469), + [aux_sym_cmd_identifier_token16] = ACTIONS(1469), + [aux_sym_cmd_identifier_token17] = ACTIONS(1469), + [aux_sym_cmd_identifier_token18] = ACTIONS(1469), + [aux_sym_cmd_identifier_token19] = ACTIONS(1469), + [aux_sym_cmd_identifier_token20] = ACTIONS(1469), + [aux_sym_cmd_identifier_token21] = ACTIONS(1469), + [aux_sym_cmd_identifier_token22] = ACTIONS(1469), + [aux_sym_cmd_identifier_token23] = ACTIONS(1469), + [aux_sym_cmd_identifier_token24] = ACTIONS(1469), + [aux_sym_cmd_identifier_token25] = ACTIONS(1469), + [aux_sym_cmd_identifier_token26] = ACTIONS(1469), + [aux_sym_cmd_identifier_token27] = ACTIONS(1469), + [aux_sym_cmd_identifier_token28] = ACTIONS(1469), + [aux_sym_cmd_identifier_token29] = ACTIONS(1469), + [aux_sym_cmd_identifier_token30] = ACTIONS(1469), + [aux_sym_cmd_identifier_token31] = ACTIONS(1469), + [aux_sym_cmd_identifier_token32] = ACTIONS(1469), + [aux_sym_cmd_identifier_token33] = ACTIONS(1469), + [aux_sym_cmd_identifier_token34] = ACTIONS(1469), + [aux_sym_cmd_identifier_token35] = ACTIONS(1469), + [aux_sym_cmd_identifier_token36] = ACTIONS(1469), + [aux_sym_cmd_identifier_token37] = ACTIONS(1469), + [aux_sym_cmd_identifier_token38] = ACTIONS(1469), + [aux_sym_cmd_identifier_token39] = ACTIONS(1469), + [aux_sym_cmd_identifier_token40] = ACTIONS(1469), + [sym__space] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(1469), + [anon_sym_DASH2] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [aux_sym_expr_unary_token1] = ACTIONS(1469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_DOT_DOT_LT] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym__val_number_decimal_token1] = ACTIONS(1469), + [aux_sym__val_number_decimal_token2] = ACTIONS(1469), + [aux_sym__val_number_decimal_token3] = ACTIONS(1469), + [aux_sym__val_number_decimal_token4] = ACTIONS(1469), + [aux_sym__val_number_token1] = ACTIONS(1469), + [aux_sym__val_number_token2] = ACTIONS(1469), + [aux_sym__val_number_token3] = ACTIONS(1469), + [aux_sym__val_number_token4] = ACTIONS(1469), + [aux_sym__val_number_token5] = ACTIONS(1469), + [aux_sym__val_number_token6] = ACTIONS(1469), + [anon_sym_0b] = ACTIONS(1469), + [anon_sym_0o] = ACTIONS(1469), + [anon_sym_0x] = ACTIONS(1469), + [sym_val_date] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym__str_single_quotes] = ACTIONS(1469), + [sym__str_back_ticks] = ACTIONS(1469), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1469), + [aux_sym_env_var_token1] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_ansigradient] = ACTIONS(1469), + [anon_sym_ansilink] = ACTIONS(1469), + [anon_sym_ansistrip] = ACTIONS(1469), + [anon_sym_bitsand] = ACTIONS(1469), + [anon_sym_bitsnot] = ACTIONS(1469), + [anon_sym_bitsor] = ACTIONS(1469), + [anon_sym_bitsrol] = ACTIONS(1469), + [anon_sym_bitsror] = ACTIONS(1469), + [anon_sym_bitsshl] = ACTIONS(1469), + [anon_sym_bitsshr] = ACTIONS(1469), + [anon_sym_bitsxor] = ACTIONS(1469), + [anon_sym_bytesadd] = ACTIONS(1469), + [anon_sym_bytesat] = ACTIONS(1469), + [anon_sym_bytesbuild] = ACTIONS(1469), + [anon_sym_bytescollect] = ACTIONS(1469), + [anon_sym_bytesends_DASHwith] = ACTIONS(1469), + [anon_sym_bytesindex_DASHof] = ACTIONS(1469), + [anon_sym_byteslength] = ACTIONS(1469), + [anon_sym_bytesremove] = ACTIONS(1469), + [anon_sym_bytesreplace] = ACTIONS(1469), + [anon_sym_bytesreverse] = ACTIONS(1469), + [anon_sym_bytesstarts_DASHwith] = ACTIONS(1469), + [anon_sym_commandlineedit] = ACTIONS(1469), + [anon_sym_commandlineget_DASHcursor] = ACTIONS(1469), + [anon_sym_commandlineset_DASHcursor] = ACTIONS(1469), + [anon_sym_configenv] = ACTIONS(1469), + [anon_sym_confignu] = ACTIONS(1469), + [anon_sym_configreset] = ACTIONS(1469), + [anon_sym_dateformat] = ACTIONS(1469), + [anon_sym_datehumanize] = ACTIONS(1469), + [anon_sym_datelist_DASHtimezone] = ACTIONS(1469), + [anon_sym_datenow] = ACTIONS(1469), + [anon_sym_dateto_DASHrecord] = ACTIONS(1469), + [anon_sym_dateto_DASHtable] = ACTIONS(1469), + [anon_sym_dateto_DASHtimezone] = ACTIONS(1469), + [anon_sym_debuginfo] = ACTIONS(1469), + [anon_sym_debugprofile] = ACTIONS(1469), + [anon_sym_decodebase32] = ACTIONS(1469), + [anon_sym_decodebase32hex] = ACTIONS(1469), + [anon_sym_decodebase64] = ACTIONS(1469), + [anon_sym_decodehex] = ACTIONS(1469), + [anon_sym_detectcolumns] = ACTIONS(1469), + [anon_sym_dropcolumn] = ACTIONS(1469), + [anon_sym_dropnth] = ACTIONS(1469), + [anon_sym_dtadd] = ACTIONS(1469), + [anon_sym_dtdiff] = ACTIONS(1469), + [anon_sym_dtformat] = ACTIONS(1469), + [anon_sym_dtnow] = ACTIONS(1469), + [anon_sym_dtpart] = ACTIONS(1469), + [anon_sym_dtto] = ACTIONS(1469), + [anon_sym_dtutcnow] = ACTIONS(1469), + [anon_sym_eachwhile] = ACTIONS(1469), + [anon_sym_encodebase32] = ACTIONS(1469), + [anon_sym_encodebase32hex] = ACTIONS(1469), + [anon_sym_encodebase64] = ACTIONS(1469), + [anon_sym_encodehex] = ACTIONS(1469), + [anon_sym_errormake] = ACTIONS(1469), + [anon_sym_exploreir] = ACTIONS(1469), + [anon_sym_formatdate] = ACTIONS(1469), + [anon_sym_formatduration] = ACTIONS(1469), + [anon_sym_formatfilesize] = ACTIONS(1469), + [anon_sym_formatpattern] = ACTIONS(1469), + [anon_sym_frombz2] = ACTIONS(1469), + [anon_sym_fromcsv] = ACTIONS(1469), + [anon_sym_fromeml] = ACTIONS(1469), + [anon_sym_fromgz] = ACTIONS(1469), + [anon_sym_fromics] = ACTIONS(1469), + [anon_sym_fromini] = ACTIONS(1469), + [anon_sym_fromjson] = ACTIONS(1469), + [anon_sym_frommsgpack] = ACTIONS(1469), + [anon_sym_frommsgpackz] = ACTIONS(1469), + [anon_sym_fromnuon] = ACTIONS(1469), + [anon_sym_fromods] = ACTIONS(1469), + [anon_sym_fromparquet] = ACTIONS(1469), + [anon_sym_fromplist] = ACTIONS(1469), + [anon_sym_frompng] = ACTIONS(1469), + [anon_sym_fromssv] = ACTIONS(1469), + [anon_sym_fromtoml] = ACTIONS(1469), + [anon_sym_fromtsv] = ACTIONS(1469), + [anon_sym_fromurl] = ACTIONS(1469), + [anon_sym_fromvcf] = ACTIONS(1469), + [anon_sym_fromxlsx] = ACTIONS(1469), + [anon_sym_fromxml] = ACTIONS(1469), + [anon_sym_fromxz] = ACTIONS(1469), + [anon_sym_fromyaml] = ACTIONS(1469), + [anon_sym_fromyml] = ACTIONS(1469), + [anon_sym_fromzst] = ACTIONS(1469), + [anon_sym_hashmd5] = ACTIONS(1469), + [anon_sym_hashsha256] = ACTIONS(1469), + [anon_sym_helpaliases] = ACTIONS(1469), + [anon_sym_helpcommands] = ACTIONS(1469), + [anon_sym_helpescapes] = ACTIONS(1469), + [anon_sym_helpexterns] = ACTIONS(1469), + [anon_sym_helpmodules] = ACTIONS(1469), + [anon_sym_helpoperators] = ACTIONS(1469), + [anon_sym_historyimport] = ACTIONS(1469), + [anon_sym_historysession] = ACTIONS(1469), + [anon_sym_httpdelete] = ACTIONS(1469), + [anon_sym_httpget] = ACTIONS(1469), + [anon_sym_httphead] = ACTIONS(1469), + [anon_sym_httpoptions] = ACTIONS(1469), + [anon_sym_httppatch] = ACTIONS(1469), + [anon_sym_httppost] = ACTIONS(1469), + [anon_sym_httpput] = ACTIONS(1469), + [anon_sym_inputlist] = ACTIONS(1469), + [anon_sym_inputlisten] = ACTIONS(1469), + [anon_sym_intobinary] = ACTIONS(1469), + [anon_sym_intobits] = ACTIONS(1469), + [anon_sym_intobool] = ACTIONS(1469), + [anon_sym_intocell_DASHpath] = ACTIONS(1469), + [anon_sym_intodatetime] = ACTIONS(1469), + [anon_sym_intoduration] = ACTIONS(1469), + [anon_sym_intofilesize] = ACTIONS(1469), + [anon_sym_intofloat] = ACTIONS(1469), + [anon_sym_intoglob] = ACTIONS(1469), + [anon_sym_intoint] = ACTIONS(1469), + [anon_sym_intorecord] = ACTIONS(1469), + [anon_sym_intosqlite] = ACTIONS(1469), + [anon_sym_intostring] = ACTIONS(1469), + [anon_sym_intovalue] = ACTIONS(1469), + [anon_sym_jsonpath] = ACTIONS(1469), + [anon_sym_keybindingsdefault] = ACTIONS(1469), + [anon_sym_keybindingslist] = ACTIONS(1469), + [anon_sym_keybindingslisten] = ACTIONS(1469), + [anon_sym_mathabs] = ACTIONS(1469), + [anon_sym_matharccos] = ACTIONS(1469), + [anon_sym_matharccosh] = ACTIONS(1469), + [anon_sym_matharcsin] = ACTIONS(1469), + [anon_sym_matharcsinh] = ACTIONS(1469), + [anon_sym_matharctan] = ACTIONS(1469), + [anon_sym_matharctanh] = ACTIONS(1469), + [anon_sym_mathavg] = ACTIONS(1469), + [anon_sym_mathceil] = ACTIONS(1469), + [anon_sym_mathcos] = ACTIONS(1469), + [anon_sym_mathcosh] = ACTIONS(1469), + [anon_sym_mathexp] = ACTIONS(1469), + [anon_sym_mathfloor] = ACTIONS(1469), + [anon_sym_mathln] = ACTIONS(1469), + [anon_sym_mathlog] = ACTIONS(1469), + [anon_sym_mathmax] = ACTIONS(1469), + [anon_sym_mathmedian] = ACTIONS(1469), + [anon_sym_mathmin] = ACTIONS(1469), + [anon_sym_mathmode] = ACTIONS(1469), + [anon_sym_mathproduct] = ACTIONS(1469), + [anon_sym_mathround] = ACTIONS(1469), + [anon_sym_mathsin] = ACTIONS(1469), + [anon_sym_mathsinh] = ACTIONS(1469), + [anon_sym_mathsqrt] = ACTIONS(1469), + [anon_sym_mathstddev] = ACTIONS(1469), + [anon_sym_mathsum] = ACTIONS(1469), + [anon_sym_mathtan] = ACTIONS(1469), + [anon_sym_mathtanh] = ACTIONS(1469), + [anon_sym_mathvariance] = ACTIONS(1469), + [anon_sym_metadataaccess] = ACTIONS(1469), + [anon_sym_metadataset] = ACTIONS(1469), + [anon_sym_pathbasename] = ACTIONS(1469), + [anon_sym_pathdirname] = ACTIONS(1469), + [anon_sym_pathexists] = ACTIONS(1469), + [anon_sym_pathexpand] = ACTIONS(1469), + [anon_sym_pathjoin] = ACTIONS(1469), + [anon_sym_pathparse] = ACTIONS(1469), + [anon_sym_pathrelative_DASHto] = ACTIONS(1469), + [anon_sym_pathsplit] = ACTIONS(1469), + [anon_sym_pathtype] = ACTIONS(1469), + [anon_sym_pluginadd] = ACTIONS(1469), + [anon_sym_pluginlist] = ACTIONS(1469), + [anon_sym_pluginrm] = ACTIONS(1469), + [anon_sym_pluginstop] = ACTIONS(1469), + [anon_sym_polarsagg] = ACTIONS(1469), + [anon_sym_polarsagg_DASHgroups] = ACTIONS(1469), + [anon_sym_polarsall_DASHfalse] = ACTIONS(1469), + [anon_sym_polarsall_DASHtrue] = ACTIONS(1469), + [anon_sym_polarsappend] = ACTIONS(1469), + [anon_sym_polarsarg_DASHmax] = ACTIONS(1469), + [anon_sym_polarsarg_DASHmin] = ACTIONS(1469), + [anon_sym_polarsarg_DASHsort] = ACTIONS(1469), + [anon_sym_polarsarg_DASHtrue] = ACTIONS(1469), + [anon_sym_polarsarg_DASHunique] = ACTIONS(1469), + [anon_sym_polarsarg_DASHwhere] = ACTIONS(1469), + [anon_sym_polarsas] = ACTIONS(1469), + [anon_sym_polarsas_DASHdate] = ACTIONS(1469), + [anon_sym_polarsas_DASHdatetime] = ACTIONS(1469), + [anon_sym_polarscache] = ACTIONS(1469), + [anon_sym_polarscast] = ACTIONS(1469), + [anon_sym_polarscol] = ACTIONS(1469), + [anon_sym_polarscollect] = ACTIONS(1469), + [anon_sym_polarscolumns] = ACTIONS(1469), + [anon_sym_polarsconcat] = ACTIONS(1469), + [anon_sym_polarsconcat_DASHstr] = ACTIONS(1469), + [anon_sym_polarscontains] = ACTIONS(1469), + [anon_sym_polarscount] = ACTIONS(1469), + [anon_sym_polarscount_DASHnull] = ACTIONS(1469), + [anon_sym_polarscumulative] = ACTIONS(1469), + [anon_sym_polarsdatepart] = ACTIONS(1469), + [anon_sym_polarsdecimal] = ACTIONS(1469), + [anon_sym_polarsdrop] = ACTIONS(1469), + [anon_sym_polarsdrop_DASHduplicates] = ACTIONS(1469), + [anon_sym_polarsdrop_DASHnulls] = ACTIONS(1469), + [anon_sym_polarsdummies] = ACTIONS(1469), + [anon_sym_polarsexplode] = ACTIONS(1469), + [anon_sym_polarsexpr_DASHnot] = ACTIONS(1469), + [anon_sym_polarsfetch] = ACTIONS(1469), + [anon_sym_polarsfill_DASHnan] = ACTIONS(1469), + [anon_sym_polarsfill_DASHnull] = ACTIONS(1469), + [anon_sym_polarsfilter] = ACTIONS(1469), + [anon_sym_polarsfilter_DASHwith] = ACTIONS(1469), + [anon_sym_polarsfirst] = ACTIONS(1469), + [anon_sym_polarsflatten] = ACTIONS(1469), + [anon_sym_polarsget] = ACTIONS(1469), + [anon_sym_polarsget_DASHday] = ACTIONS(1469), + [anon_sym_polarsget_DASHhour] = ACTIONS(1469), + [anon_sym_polarsget_DASHminute] = ACTIONS(1469), + [anon_sym_polarsget_DASHmonth] = ACTIONS(1469), + [anon_sym_polarsget_DASHnanosecond] = ACTIONS(1469), + [anon_sym_polarsget_DASHordinal] = ACTIONS(1469), + [anon_sym_polarsget_DASHsecond] = ACTIONS(1469), + [anon_sym_polarsget_DASHweek] = ACTIONS(1469), + [anon_sym_polarsget_DASHweekday] = ACTIONS(1469), + [anon_sym_polarsget_DASHyear] = ACTIONS(1469), + [anon_sym_polarsgroup_DASHby] = ACTIONS(1469), + [anon_sym_polarsimplode] = ACTIONS(1469), + [anon_sym_polarsinteger] = ACTIONS(1469), + [anon_sym_polarsinto_DASHdf] = ACTIONS(1469), + [anon_sym_polarsinto_DASHlazy] = ACTIONS(1469), + [anon_sym_polarsinto_DASHnu] = ACTIONS(1469), + [anon_sym_polarsis_DASHduplicated] = ACTIONS(1469), + [anon_sym_polarsis_DASHin] = ACTIONS(1469), + [anon_sym_polarsis_DASHnot_DASHnull] = ACTIONS(1469), + [anon_sym_polarsis_DASHnull] = ACTIONS(1469), + [anon_sym_polarsis_DASHunique] = ACTIONS(1469), + [anon_sym_polarsjoin] = ACTIONS(1469), + [anon_sym_polarslast] = ACTIONS(1469), + [anon_sym_polarslen] = ACTIONS(1469), + [anon_sym_polarslit] = ACTIONS(1469), + [anon_sym_polarslowercase] = ACTIONS(1469), + [anon_sym_polarsmax] = ACTIONS(1469), + [anon_sym_polarsmean] = ACTIONS(1469), + [anon_sym_polarsmedian] = ACTIONS(1469), + [anon_sym_polarsmin] = ACTIONS(1469), + [anon_sym_polarsn_DASHunique] = ACTIONS(1469), + [anon_sym_polarsnot] = ACTIONS(1469), + [anon_sym_polarsopen] = ACTIONS(1469), + [anon_sym_polarsotherwise] = ACTIONS(1469), + [anon_sym_polarspivot] = ACTIONS(1469), + [anon_sym_polarsprofile] = ACTIONS(1469), + [anon_sym_polarsquantile] = ACTIONS(1469), + [anon_sym_polarsquery] = ACTIONS(1469), + [anon_sym_polarsrename] = ACTIONS(1469), + [anon_sym_polarsreplace] = ACTIONS(1469), + [anon_sym_polarsreplace_DASHall] = ACTIONS(1469), + [anon_sym_polarsreverse] = ACTIONS(1469), + [anon_sym_polarsrolling] = ACTIONS(1469), + [anon_sym_polarssample] = ACTIONS(1469), + [anon_sym_polarssave] = ACTIONS(1469), + [anon_sym_polarsschema] = ACTIONS(1469), + [anon_sym_polarsselect] = ACTIONS(1469), + [anon_sym_polarsset] = ACTIONS(1469), + [anon_sym_polarsset_DASHwith_DASHidx] = ACTIONS(1469), + [anon_sym_polarsshape] = ACTIONS(1469), + [anon_sym_polarsshift] = ACTIONS(1469), + [anon_sym_polarsslice] = ACTIONS(1469), + [anon_sym_polarssort_DASHby] = ACTIONS(1469), + [anon_sym_polarsstd] = ACTIONS(1469), + [anon_sym_polarsstore_DASHget] = ACTIONS(1469), + [anon_sym_polarsstore_DASHls] = ACTIONS(1469), + [anon_sym_polarsstore_DASHrm] = ACTIONS(1469), + [anon_sym_polarsstr_DASHjoin] = ACTIONS(1469), + [anon_sym_polarsstr_DASHlengths] = ACTIONS(1469), + [anon_sym_polarsstr_DASHslice] = ACTIONS(1469), + [anon_sym_polarsstrftime] = ACTIONS(1469), + [anon_sym_polarssum] = ACTIONS(1469), + [anon_sym_polarssummary] = ACTIONS(1469), + [anon_sym_polarstake] = ACTIONS(1469), + [anon_sym_polarsunique] = ACTIONS(1469), + [anon_sym_polarsunnest] = ACTIONS(1469), + [anon_sym_polarsunpivot] = ACTIONS(1469), + [anon_sym_polarsuppercase] = ACTIONS(1469), + [anon_sym_polarsvalue_DASHcounts] = ACTIONS(1469), + [anon_sym_polarsvar] = ACTIONS(1469), + [anon_sym_polarswhen] = ACTIONS(1469), + [anon_sym_polarswith_DASHcolumn] = ACTIONS(1469), + [anon_sym_querydb] = ACTIONS(1469), + [anon_sym_querygit] = ACTIONS(1469), + [anon_sym_queryjson] = ACTIONS(1469), + [anon_sym_queryweb] = ACTIONS(1469), + [anon_sym_querywebpage_DASHinfo] = ACTIONS(1469), + [anon_sym_queryxml] = ACTIONS(1469), + [anon_sym_randombinary] = ACTIONS(1469), + [anon_sym_randombool] = ACTIONS(1469), + [anon_sym_randomchars] = ACTIONS(1469), + [anon_sym_randomdice] = ACTIONS(1469), + [anon_sym_randomfloat] = ACTIONS(1469), + [anon_sym_randomint] = ACTIONS(1469), + [anon_sym_randomuuid] = ACTIONS(1469), + [anon_sym_rolldown] = ACTIONS(1469), + [anon_sym_rollleft] = ACTIONS(1469), + [anon_sym_rollright] = ACTIONS(1469), + [anon_sym_rollup] = ACTIONS(1469), + [anon_sym_scopealiases] = ACTIONS(1469), + [anon_sym_scopecommands] = ACTIONS(1469), + [anon_sym_scopeengine_DASHstats] = ACTIONS(1469), + [anon_sym_scopeexterns] = ACTIONS(1469), + [anon_sym_scopemodules] = ACTIONS(1469), + [anon_sym_scopevariables] = ACTIONS(1469), + [anon_sym_seqchar] = ACTIONS(1469), + [anon_sym_seqdate] = ACTIONS(1469), + [anon_sym_skipuntil] = ACTIONS(1469), + [anon_sym_skipwhile] = ACTIONS(1469), + [anon_sym_splitcell_DASHpath] = ACTIONS(1469), + [anon_sym_splitchars] = ACTIONS(1469), + [anon_sym_splitcolumn] = ACTIONS(1469), + [anon_sym_splitlist] = ACTIONS(1469), + [anon_sym_splitrow] = ACTIONS(1469), + [anon_sym_splitwords] = ACTIONS(1469), + [anon_sym_storcreate] = ACTIONS(1469), + [anon_sym_stordelete] = ACTIONS(1469), + [anon_sym_storexport] = ACTIONS(1469), + [anon_sym_storimport] = ACTIONS(1469), + [anon_sym_storinsert] = ACTIONS(1469), + [anon_sym_storopen] = ACTIONS(1469), + [anon_sym_storreset] = ACTIONS(1469), + [anon_sym_storupdate] = ACTIONS(1469), + [anon_sym_strbexpand] = ACTIONS(1469), + [anon_sym_strcamel_DASHcase] = ACTIONS(1469), + [anon_sym_strcapitalize] = ACTIONS(1469), + [anon_sym_strcompress] = ACTIONS(1469), + [anon_sym_strcontains] = ACTIONS(1469), + [anon_sym_strdecompress] = ACTIONS(1469), + [anon_sym_strdedent] = ACTIONS(1469), + [anon_sym_strdeunicode] = ACTIONS(1469), + [anon_sym_strdistance] = ACTIONS(1469), + [anon_sym_strdowncase] = ACTIONS(1469), + [anon_sym_strends_DASHwith] = ACTIONS(1469), + [anon_sym_strexpand] = ACTIONS(1469), + [anon_sym_strindent] = ACTIONS(1469), + [anon_sym_strindex_DASHof] = ACTIONS(1469), + [anon_sym_strjoin] = ACTIONS(1469), + [anon_sym_strkebab_DASHcase] = ACTIONS(1469), + [anon_sym_strlength] = ACTIONS(1469), + [anon_sym_strpascal_DASHcase] = ACTIONS(1469), + [anon_sym_strreplace] = ACTIONS(1469), + [anon_sym_strreverse] = ACTIONS(1469), + [anon_sym_strscreaming_DASHsnake_DASHcase] = ACTIONS(1469), + [anon_sym_strsimilarity] = ACTIONS(1469), + [anon_sym_strsnake_DASHcase] = ACTIONS(1469), + [anon_sym_strstarts_DASHwith] = ACTIONS(1469), + [anon_sym_strstats] = ACTIONS(1469), + [anon_sym_strsubstring] = ACTIONS(1469), + [anon_sym_strtitle_DASHcase] = ACTIONS(1469), + [anon_sym_strtrim] = ACTIONS(1469), + [anon_sym_strupcase] = ACTIONS(1469), + [anon_sym_strwrap] = ACTIONS(1469), + [anon_sym_syscpu] = ACTIONS(1469), + [anon_sym_sysdisks] = ACTIONS(1469), + [anon_sym_syshost] = ACTIONS(1469), + [anon_sym_sysmem] = ACTIONS(1469), + [anon_sym_sysnet] = ACTIONS(1469), + [anon_sym_systemp] = ACTIONS(1469), + [anon_sym_sysusers] = ACTIONS(1469), + [anon_sym_takeuntil] = ACTIONS(1469), + [anon_sym_takewhile] = ACTIONS(1469), + [anon_sym_termquery] = ACTIONS(1469), + [anon_sym_termsize] = ACTIONS(1469), + [anon_sym_tobz2] = ACTIONS(1469), + [anon_sym_tocsv] = ACTIONS(1469), + [anon_sym_togz] = ACTIONS(1469), + [anon_sym_tohtml] = ACTIONS(1469), + [anon_sym_tojson] = ACTIONS(1469), + [anon_sym_tomd] = ACTIONS(1469), + [anon_sym_tomsgpack] = ACTIONS(1469), + [anon_sym_tomsgpackz] = ACTIONS(1469), + [anon_sym_tonuon] = ACTIONS(1469), + [anon_sym_toparquet] = ACTIONS(1469), + [anon_sym_toplist] = ACTIONS(1469), + [anon_sym_topng] = ACTIONS(1469), + [anon_sym_totext] = ACTIONS(1469), + [anon_sym_totoml] = ACTIONS(1469), + [anon_sym_totsv] = ACTIONS(1469), + [anon_sym_toxml] = ACTIONS(1469), + [anon_sym_toxz] = ACTIONS(1469), + [anon_sym_toyaml] = ACTIONS(1469), + [anon_sym_tozst] = ACTIONS(1469), + [anon_sym_updatecells] = ACTIONS(1469), + [anon_sym_urlbuild_DASHquery] = ACTIONS(1469), + [anon_sym_urldecode] = ACTIONS(1469), + [anon_sym_urlencode] = ACTIONS(1469), + [anon_sym_urljoin] = ACTIONS(1469), + [anon_sym_urlparse] = ACTIONS(1469), + [anon_sym_urlsplit_DASHquery] = ACTIONS(1469), + [anon_sym_viewfiles] = ACTIONS(1469), + [anon_sym_viewir] = ACTIONS(1469), + [anon_sym_viewsource] = ACTIONS(1469), + [anon_sym_viewspan] = ACTIONS(1469), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1046), + [sym_raw_string_begin] = ACTIONS(1471), }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [323] = { + [sym_cell_path] = STATE(336), + [sym_path] = STATE(334), + [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(324), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1475), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1475), + [aux_sym_cmd_identifier_token3] = ACTIONS(1475), + [aux_sym_cmd_identifier_token4] = ACTIONS(1475), + [aux_sym_cmd_identifier_token5] = ACTIONS(1475), + [aux_sym_cmd_identifier_token6] = ACTIONS(1475), + [aux_sym_cmd_identifier_token7] = ACTIONS(1475), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1475), + [aux_sym_cmd_identifier_token11] = ACTIONS(1475), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1475), + [aux_sym_cmd_identifier_token17] = ACTIONS(1475), + [aux_sym_cmd_identifier_token18] = ACTIONS(1475), + [aux_sym_cmd_identifier_token19] = ACTIONS(1475), + [aux_sym_cmd_identifier_token20] = ACTIONS(1475), + [aux_sym_cmd_identifier_token21] = ACTIONS(1475), + [aux_sym_cmd_identifier_token22] = ACTIONS(1475), + [aux_sym_cmd_identifier_token23] = ACTIONS(1475), + [aux_sym_cmd_identifier_token24] = ACTIONS(1475), + [aux_sym_cmd_identifier_token25] = ACTIONS(1475), + [aux_sym_cmd_identifier_token26] = ACTIONS(1475), + [aux_sym_cmd_identifier_token27] = ACTIONS(1475), + [aux_sym_cmd_identifier_token28] = ACTIONS(1475), + [aux_sym_cmd_identifier_token29] = ACTIONS(1475), + [aux_sym_cmd_identifier_token30] = ACTIONS(1475), + [aux_sym_cmd_identifier_token31] = ACTIONS(1475), + [aux_sym_cmd_identifier_token32] = ACTIONS(1475), + [aux_sym_cmd_identifier_token33] = ACTIONS(1475), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1475), + [aux_sym_cmd_identifier_token36] = ACTIONS(1475), + [aux_sym_cmd_identifier_token37] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1473), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1473), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), }, - [490] = { - [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [324] = { + [sym_path] = STATE(334), + [sym_comment] = STATE(324), + [aux_sym_cell_path_repeat1] = STATE(325), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1481), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [aux_sym_cmd_identifier_token37] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [sym__newline] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1479), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1479), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [aux_sym_record_entry_token1] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [325] = { + [sym_path] = STATE(334), + [sym_comment] = STATE(325), + [aux_sym_cell_path_repeat1] = STATE(325), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1485), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1485), + [aux_sym_cmd_identifier_token3] = ACTIONS(1485), + [aux_sym_cmd_identifier_token4] = ACTIONS(1485), + [aux_sym_cmd_identifier_token5] = ACTIONS(1485), + [aux_sym_cmd_identifier_token6] = ACTIONS(1485), + [aux_sym_cmd_identifier_token7] = ACTIONS(1485), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1485), + [aux_sym_cmd_identifier_token11] = ACTIONS(1485), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1485), + [aux_sym_cmd_identifier_token17] = ACTIONS(1485), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1485), + [aux_sym_cmd_identifier_token20] = ACTIONS(1485), + [aux_sym_cmd_identifier_token21] = ACTIONS(1485), + [aux_sym_cmd_identifier_token22] = ACTIONS(1485), + [aux_sym_cmd_identifier_token23] = ACTIONS(1485), + [aux_sym_cmd_identifier_token24] = ACTIONS(1485), + [aux_sym_cmd_identifier_token25] = ACTIONS(1485), + [aux_sym_cmd_identifier_token26] = ACTIONS(1485), + [aux_sym_cmd_identifier_token27] = ACTIONS(1485), + [aux_sym_cmd_identifier_token28] = ACTIONS(1485), + [aux_sym_cmd_identifier_token29] = ACTIONS(1485), + [aux_sym_cmd_identifier_token30] = ACTIONS(1485), + [aux_sym_cmd_identifier_token31] = ACTIONS(1485), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1485), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1485), + [aux_sym_cmd_identifier_token36] = ACTIONS(1485), + [aux_sym_cmd_identifier_token37] = ACTIONS(1485), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1485), + [aux_sym_cmd_identifier_token40] = ACTIONS(1485), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1483), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1483), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1485), + [aux_sym_record_entry_token1] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [326] = { + [sym_comment] = STATE(326), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1492), + [aux_sym_cmd_identifier_token3] = ACTIONS(1492), + [aux_sym_cmd_identifier_token4] = ACTIONS(1492), + [aux_sym_cmd_identifier_token5] = ACTIONS(1492), + [aux_sym_cmd_identifier_token6] = ACTIONS(1492), + [aux_sym_cmd_identifier_token7] = ACTIONS(1492), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1492), + [aux_sym_cmd_identifier_token11] = ACTIONS(1492), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1492), + [aux_sym_cmd_identifier_token17] = ACTIONS(1492), + [aux_sym_cmd_identifier_token18] = ACTIONS(1492), + [aux_sym_cmd_identifier_token19] = ACTIONS(1492), + [aux_sym_cmd_identifier_token20] = ACTIONS(1492), + [aux_sym_cmd_identifier_token21] = ACTIONS(1492), + [aux_sym_cmd_identifier_token22] = ACTIONS(1492), + [aux_sym_cmd_identifier_token23] = ACTIONS(1492), + [aux_sym_cmd_identifier_token24] = ACTIONS(1492), + [aux_sym_cmd_identifier_token25] = ACTIONS(1492), + [aux_sym_cmd_identifier_token26] = ACTIONS(1492), + [aux_sym_cmd_identifier_token27] = ACTIONS(1492), + [aux_sym_cmd_identifier_token28] = ACTIONS(1492), + [aux_sym_cmd_identifier_token29] = ACTIONS(1492), + [aux_sym_cmd_identifier_token30] = ACTIONS(1492), + [aux_sym_cmd_identifier_token31] = ACTIONS(1492), + [aux_sym_cmd_identifier_token32] = ACTIONS(1492), + [aux_sym_cmd_identifier_token33] = ACTIONS(1492), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1492), + [aux_sym_cmd_identifier_token36] = ACTIONS(1492), + [aux_sym_cmd_identifier_token37] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [sym__newline] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1490), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [aux_sym_record_entry_token1] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, - [493] = { - [sym_cell_path] = STATE(757), - [sym_path] = STATE(623), - [sym_comment] = STATE(493), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [327] = { + [sym_comment] = STATE(327), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1498), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [aux_sym_cmd_identifier_token6] = ACTIONS(1498), + [aux_sym_cmd_identifier_token7] = ACTIONS(1498), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1498), + [aux_sym_cmd_identifier_token11] = ACTIONS(1498), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1498), + [aux_sym_cmd_identifier_token17] = ACTIONS(1498), + [aux_sym_cmd_identifier_token18] = ACTIONS(1498), + [aux_sym_cmd_identifier_token19] = ACTIONS(1498), + [aux_sym_cmd_identifier_token20] = ACTIONS(1498), + [aux_sym_cmd_identifier_token21] = ACTIONS(1498), + [aux_sym_cmd_identifier_token22] = ACTIONS(1498), + [aux_sym_cmd_identifier_token23] = ACTIONS(1498), + [aux_sym_cmd_identifier_token24] = ACTIONS(1498), + [aux_sym_cmd_identifier_token25] = ACTIONS(1498), + [aux_sym_cmd_identifier_token26] = ACTIONS(1498), + [aux_sym_cmd_identifier_token27] = ACTIONS(1498), + [aux_sym_cmd_identifier_token28] = ACTIONS(1498), + [aux_sym_cmd_identifier_token29] = ACTIONS(1498), + [aux_sym_cmd_identifier_token30] = ACTIONS(1498), + [aux_sym_cmd_identifier_token31] = ACTIONS(1498), + [aux_sym_cmd_identifier_token32] = ACTIONS(1498), + [aux_sym_cmd_identifier_token33] = ACTIONS(1498), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1498), + [aux_sym_cmd_identifier_token36] = ACTIONS(1498), + [aux_sym_cmd_identifier_token37] = ACTIONS(1498), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1498), + [aux_sym_cmd_identifier_token40] = ACTIONS(1498), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1498), + [aux_sym_record_entry_token1] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, - [494] = { - [sym_cell_path] = STATE(702), - [sym_path] = STATE(623), - [sym_comment] = STATE(494), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_alias] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_let_DASHenv] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [aux_sym_cmd_identifier_token1] = ACTIONS(1853), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1853), - [aux_sym_cmd_identifier_token9] = ACTIONS(1853), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1853), - [aux_sym_cmd_identifier_token13] = ACTIONS(1853), - [aux_sym_cmd_identifier_token14] = ACTIONS(1853), - [aux_sym_cmd_identifier_token15] = ACTIONS(1853), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1853), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [aux_sym_cmd_identifier_token37] = ACTIONS(1855), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1855), - [aux_sym_cmd_identifier_token40] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1853), - [anon_sym_export_DASHenv] = ACTIONS(1853), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_in2] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_make] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_source] = ACTIONS(1853), - [anon_sym_source_DASHenv] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_hide_DASHenv] = ACTIONS(1853), - [anon_sym_overlay] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1853), - [aux_sym__val_number_decimal_token2] = ACTIONS(1855), - [aux_sym__val_number_decimal_token3] = ACTIONS(1855), - [aux_sym__val_number_decimal_token4] = ACTIONS(1855), - [aux_sym__val_number_token1] = ACTIONS(1855), - [aux_sym__val_number_token2] = ACTIONS(1855), - [aux_sym__val_number_token3] = ACTIONS(1855), - [aux_sym__val_number_token4] = ACTIONS(1853), - [aux_sym__val_number_token5] = ACTIONS(1853), - [aux_sym__val_number_token6] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1855), + [328] = { + [sym_comment] = STATE(328), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1502), + [aux_sym_cmd_identifier_token3] = ACTIONS(1502), + [aux_sym_cmd_identifier_token4] = ACTIONS(1502), + [aux_sym_cmd_identifier_token5] = ACTIONS(1502), + [aux_sym_cmd_identifier_token6] = ACTIONS(1502), + [aux_sym_cmd_identifier_token7] = ACTIONS(1502), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1502), + [aux_sym_cmd_identifier_token11] = ACTIONS(1502), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1502), + [aux_sym_cmd_identifier_token17] = ACTIONS(1502), + [aux_sym_cmd_identifier_token18] = ACTIONS(1502), + [aux_sym_cmd_identifier_token19] = ACTIONS(1502), + [aux_sym_cmd_identifier_token20] = ACTIONS(1502), + [aux_sym_cmd_identifier_token21] = ACTIONS(1502), + [aux_sym_cmd_identifier_token22] = ACTIONS(1502), + [aux_sym_cmd_identifier_token23] = ACTIONS(1502), + [aux_sym_cmd_identifier_token24] = ACTIONS(1502), + [aux_sym_cmd_identifier_token25] = ACTIONS(1502), + [aux_sym_cmd_identifier_token26] = ACTIONS(1502), + [aux_sym_cmd_identifier_token27] = ACTIONS(1502), + [aux_sym_cmd_identifier_token28] = ACTIONS(1502), + [aux_sym_cmd_identifier_token29] = ACTIONS(1502), + [aux_sym_cmd_identifier_token30] = ACTIONS(1502), + [aux_sym_cmd_identifier_token31] = ACTIONS(1502), + [aux_sym_cmd_identifier_token32] = ACTIONS(1502), + [aux_sym_cmd_identifier_token33] = ACTIONS(1502), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1502), + [aux_sym_cmd_identifier_token36] = ACTIONS(1502), + [aux_sym_cmd_identifier_token37] = ACTIONS(1502), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1502), + [aux_sym_cmd_identifier_token40] = ACTIONS(1502), + [sym__newline] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1500), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1502), + [aux_sym_record_entry_token1] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, - [495] = { - [sym_path] = STATE(567), - [sym_comment] = STATE(495), - [aux_sym_cell_path_repeat1] = STATE(496), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(967), - [aux_sym_cmd_identifier_token3] = ACTIONS(967), - [aux_sym_cmd_identifier_token4] = ACTIONS(967), - [aux_sym_cmd_identifier_token5] = ACTIONS(967), - [aux_sym_cmd_identifier_token6] = ACTIONS(967), - [aux_sym_cmd_identifier_token7] = ACTIONS(967), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(967), - [aux_sym_cmd_identifier_token11] = ACTIONS(967), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(967), - [aux_sym_cmd_identifier_token17] = ACTIONS(967), - [aux_sym_cmd_identifier_token18] = ACTIONS(967), - [aux_sym_cmd_identifier_token19] = ACTIONS(967), - [aux_sym_cmd_identifier_token20] = ACTIONS(967), - [aux_sym_cmd_identifier_token21] = ACTIONS(967), - [aux_sym_cmd_identifier_token22] = ACTIONS(967), - [aux_sym_cmd_identifier_token23] = ACTIONS(967), - [aux_sym_cmd_identifier_token24] = ACTIONS(967), - [aux_sym_cmd_identifier_token25] = ACTIONS(967), - [aux_sym_cmd_identifier_token26] = ACTIONS(967), - [aux_sym_cmd_identifier_token27] = ACTIONS(967), - [aux_sym_cmd_identifier_token28] = ACTIONS(967), - [aux_sym_cmd_identifier_token29] = ACTIONS(967), - [aux_sym_cmd_identifier_token30] = ACTIONS(967), - [aux_sym_cmd_identifier_token31] = ACTIONS(967), - [aux_sym_cmd_identifier_token32] = ACTIONS(967), - [aux_sym_cmd_identifier_token33] = ACTIONS(967), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(967), - [aux_sym_cmd_identifier_token36] = ACTIONS(967), - [aux_sym_cmd_identifier_token37] = ACTIONS(967), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(967), - [aux_sym_cmd_identifier_token40] = ACTIONS(967), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(967), - [aux_sym__val_number_decimal_token3] = ACTIONS(967), - [aux_sym__val_number_decimal_token4] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), - [sym__entry_separator] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(969), + [329] = { + [sym_comment] = STATE(329), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1508), + [aux_sym_record_entry_token1] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, - [496] = { - [sym_path] = STATE(567), - [sym_comment] = STATE(496), - [aux_sym_cell_path_repeat1] = STATE(496), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [sym__entry_separator] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(973), + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [aux_sym_record_entry_token1] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [331] = { + [sym_comment] = STATE(331), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1514), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1516), + [aux_sym_record_entry_token1] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [332] = { + [sym_comment] = STATE(332), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1520), + [aux_sym_cmd_identifier_token3] = ACTIONS(1520), + [aux_sym_cmd_identifier_token4] = ACTIONS(1520), + [aux_sym_cmd_identifier_token5] = ACTIONS(1520), + [aux_sym_cmd_identifier_token6] = ACTIONS(1520), + [aux_sym_cmd_identifier_token7] = ACTIONS(1520), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1520), + [aux_sym_cmd_identifier_token11] = ACTIONS(1520), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1520), + [aux_sym_cmd_identifier_token17] = ACTIONS(1520), + [aux_sym_cmd_identifier_token18] = ACTIONS(1520), + [aux_sym_cmd_identifier_token19] = ACTIONS(1520), + [aux_sym_cmd_identifier_token20] = ACTIONS(1520), + [aux_sym_cmd_identifier_token21] = ACTIONS(1520), + [aux_sym_cmd_identifier_token22] = ACTIONS(1520), + [aux_sym_cmd_identifier_token23] = ACTIONS(1520), + [aux_sym_cmd_identifier_token24] = ACTIONS(1520), + [aux_sym_cmd_identifier_token25] = ACTIONS(1520), + [aux_sym_cmd_identifier_token26] = ACTIONS(1520), + [aux_sym_cmd_identifier_token27] = ACTIONS(1520), + [aux_sym_cmd_identifier_token28] = ACTIONS(1520), + [aux_sym_cmd_identifier_token29] = ACTIONS(1520), + [aux_sym_cmd_identifier_token30] = ACTIONS(1520), + [aux_sym_cmd_identifier_token31] = ACTIONS(1520), + [aux_sym_cmd_identifier_token32] = ACTIONS(1520), + [aux_sym_cmd_identifier_token33] = ACTIONS(1520), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1520), + [aux_sym_cmd_identifier_token36] = ACTIONS(1520), + [aux_sym_cmd_identifier_token37] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [333] = { + [sym_comment] = STATE(333), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1524), + [aux_sym_cmd_identifier_token3] = ACTIONS(1524), + [aux_sym_cmd_identifier_token4] = ACTIONS(1524), + [aux_sym_cmd_identifier_token5] = ACTIONS(1524), + [aux_sym_cmd_identifier_token6] = ACTIONS(1524), + [aux_sym_cmd_identifier_token7] = ACTIONS(1524), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1524), + [aux_sym_cmd_identifier_token11] = ACTIONS(1524), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1524), + [aux_sym_cmd_identifier_token17] = ACTIONS(1524), + [aux_sym_cmd_identifier_token18] = ACTIONS(1524), + [aux_sym_cmd_identifier_token19] = ACTIONS(1524), + [aux_sym_cmd_identifier_token20] = ACTIONS(1524), + [aux_sym_cmd_identifier_token21] = ACTIONS(1524), + [aux_sym_cmd_identifier_token22] = ACTIONS(1524), + [aux_sym_cmd_identifier_token23] = ACTIONS(1524), + [aux_sym_cmd_identifier_token24] = ACTIONS(1524), + [aux_sym_cmd_identifier_token25] = ACTIONS(1524), + [aux_sym_cmd_identifier_token26] = ACTIONS(1524), + [aux_sym_cmd_identifier_token27] = ACTIONS(1524), + [aux_sym_cmd_identifier_token28] = ACTIONS(1524), + [aux_sym_cmd_identifier_token29] = ACTIONS(1524), + [aux_sym_cmd_identifier_token30] = ACTIONS(1524), + [aux_sym_cmd_identifier_token31] = ACTIONS(1524), + [aux_sym_cmd_identifier_token32] = ACTIONS(1524), + [aux_sym_cmd_identifier_token33] = ACTIONS(1524), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1524), + [aux_sym_cmd_identifier_token36] = ACTIONS(1524), + [aux_sym_cmd_identifier_token37] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [sym__newline] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1522), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [aux_sym_record_entry_token1] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_alias] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_let_DASHenv] = ACTIONS(2157), - [anon_sym_mut] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [aux_sym_cmd_identifier_token1] = ACTIONS(2157), - [aux_sym_cmd_identifier_token2] = ACTIONS(2157), - [aux_sym_cmd_identifier_token3] = ACTIONS(2157), - [aux_sym_cmd_identifier_token4] = ACTIONS(2157), - [aux_sym_cmd_identifier_token5] = ACTIONS(2157), - [aux_sym_cmd_identifier_token6] = ACTIONS(2157), - [aux_sym_cmd_identifier_token7] = ACTIONS(2157), - [aux_sym_cmd_identifier_token8] = ACTIONS(2157), - [aux_sym_cmd_identifier_token9] = ACTIONS(2157), - [aux_sym_cmd_identifier_token10] = ACTIONS(2157), - [aux_sym_cmd_identifier_token11] = ACTIONS(2157), - [aux_sym_cmd_identifier_token12] = ACTIONS(2157), - [aux_sym_cmd_identifier_token13] = ACTIONS(2157), - [aux_sym_cmd_identifier_token14] = ACTIONS(2157), - [aux_sym_cmd_identifier_token15] = ACTIONS(2157), - [aux_sym_cmd_identifier_token16] = ACTIONS(2157), - [aux_sym_cmd_identifier_token17] = ACTIONS(2157), - [aux_sym_cmd_identifier_token18] = ACTIONS(2157), - [aux_sym_cmd_identifier_token19] = ACTIONS(2157), - [aux_sym_cmd_identifier_token20] = ACTIONS(2157), - [aux_sym_cmd_identifier_token21] = ACTIONS(2157), - [aux_sym_cmd_identifier_token22] = ACTIONS(2157), - [aux_sym_cmd_identifier_token23] = ACTIONS(2157), - [aux_sym_cmd_identifier_token24] = ACTIONS(2157), - [aux_sym_cmd_identifier_token25] = ACTIONS(2157), - [aux_sym_cmd_identifier_token26] = ACTIONS(2157), - [aux_sym_cmd_identifier_token27] = ACTIONS(2157), - [aux_sym_cmd_identifier_token28] = ACTIONS(2157), - [aux_sym_cmd_identifier_token29] = ACTIONS(2157), - [aux_sym_cmd_identifier_token30] = ACTIONS(2157), - [aux_sym_cmd_identifier_token31] = ACTIONS(2157), - [aux_sym_cmd_identifier_token32] = ACTIONS(2157), - [aux_sym_cmd_identifier_token33] = ACTIONS(2157), - [aux_sym_cmd_identifier_token34] = ACTIONS(2157), - [aux_sym_cmd_identifier_token35] = ACTIONS(2157), - [aux_sym_cmd_identifier_token36] = ACTIONS(2157), - [aux_sym_cmd_identifier_token37] = ACTIONS(2157), - [aux_sym_cmd_identifier_token38] = ACTIONS(2157), - [aux_sym_cmd_identifier_token39] = ACTIONS(2157), - [aux_sym_cmd_identifier_token40] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2157), - [anon_sym_export_DASHenv] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_module] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_error] = ACTIONS(2157), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_in2] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_make] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_source] = ACTIONS(2157), - [anon_sym_source_DASHenv] = ACTIONS(2157), - [anon_sym_register] = ACTIONS(2157), - [anon_sym_hide] = ACTIONS(2157), - [anon_sym_hide_DASHenv] = ACTIONS(2157), - [anon_sym_overlay] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_PLUS2] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), - [anon_sym_DOT_DOT2] = ACTIONS(2159), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2161), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2157), - [aux_sym__val_number_decimal_token3] = ACTIONS(2157), - [aux_sym__val_number_decimal_token4] = ACTIONS(2157), - [aux_sym__val_number_token1] = ACTIONS(2157), - [aux_sym__val_number_token2] = ACTIONS(2157), - [aux_sym__val_number_token3] = ACTIONS(2157), - [aux_sym__val_number_token4] = ACTIONS(2157), - [aux_sym__val_number_token5] = ACTIONS(2157), - [aux_sym__val_number_token6] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2157), - [sym__str_single_quotes] = ACTIONS(2157), - [sym__str_back_ticks] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), - [sym__entry_separator] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2163), + [334] = { + [sym_comment] = STATE(334), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [aux_sym_cmd_identifier_token37] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [sym__newline] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1526), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [aux_sym_record_entry_token1] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), - [aux_sym_cmd_identifier_token2] = ACTIONS(2165), - [aux_sym_cmd_identifier_token3] = ACTIONS(2165), - [aux_sym_cmd_identifier_token4] = ACTIONS(2165), - [aux_sym_cmd_identifier_token5] = ACTIONS(2165), - [aux_sym_cmd_identifier_token6] = ACTIONS(2165), - [aux_sym_cmd_identifier_token7] = ACTIONS(2165), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), - [aux_sym_cmd_identifier_token10] = ACTIONS(2165), - [aux_sym_cmd_identifier_token11] = ACTIONS(2165), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), - [aux_sym_cmd_identifier_token16] = ACTIONS(2165), - [aux_sym_cmd_identifier_token17] = ACTIONS(2165), - [aux_sym_cmd_identifier_token18] = ACTIONS(2165), - [aux_sym_cmd_identifier_token19] = ACTIONS(2165), - [aux_sym_cmd_identifier_token20] = ACTIONS(2165), - [aux_sym_cmd_identifier_token21] = ACTIONS(2165), - [aux_sym_cmd_identifier_token22] = ACTIONS(2165), - [aux_sym_cmd_identifier_token23] = ACTIONS(2165), - [aux_sym_cmd_identifier_token24] = ACTIONS(2165), - [aux_sym_cmd_identifier_token25] = ACTIONS(2165), - [aux_sym_cmd_identifier_token26] = ACTIONS(2165), - [aux_sym_cmd_identifier_token27] = ACTIONS(2165), - [aux_sym_cmd_identifier_token28] = ACTIONS(2165), - [aux_sym_cmd_identifier_token29] = ACTIONS(2165), - [aux_sym_cmd_identifier_token30] = ACTIONS(2165), - [aux_sym_cmd_identifier_token31] = ACTIONS(2165), - [aux_sym_cmd_identifier_token32] = ACTIONS(2165), - [aux_sym_cmd_identifier_token33] = ACTIONS(2165), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), - [aux_sym_cmd_identifier_token35] = ACTIONS(2165), - [aux_sym_cmd_identifier_token36] = ACTIONS(2165), - [aux_sym_cmd_identifier_token37] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2165), - [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT2] = ACTIONS(2167), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [sym__entry_separator] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2171), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [aux_sym_cmd_identifier_token37] = ACTIONS(1536), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1536), + [aux_sym_cmd_identifier_token40] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1544), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1536), + [aux_sym__val_number_decimal_token3] = ACTIONS(1536), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), + [aux_sym_record_entry_token1] = ACTIONS(1554), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1536), }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2173), - [aux_sym_cmd_identifier_token3] = ACTIONS(2173), - [aux_sym_cmd_identifier_token4] = ACTIONS(2173), - [aux_sym_cmd_identifier_token5] = ACTIONS(2173), - [aux_sym_cmd_identifier_token6] = ACTIONS(2173), - [aux_sym_cmd_identifier_token7] = ACTIONS(2173), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2173), - [aux_sym_cmd_identifier_token11] = ACTIONS(2173), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2173), - [aux_sym_cmd_identifier_token17] = ACTIONS(2173), - [aux_sym_cmd_identifier_token18] = ACTIONS(2173), - [aux_sym_cmd_identifier_token19] = ACTIONS(2173), - [aux_sym_cmd_identifier_token20] = ACTIONS(2173), - [aux_sym_cmd_identifier_token21] = ACTIONS(2173), - [aux_sym_cmd_identifier_token22] = ACTIONS(2173), - [aux_sym_cmd_identifier_token23] = ACTIONS(2173), - [aux_sym_cmd_identifier_token24] = ACTIONS(2173), - [aux_sym_cmd_identifier_token25] = ACTIONS(2173), - [aux_sym_cmd_identifier_token26] = ACTIONS(2173), - [aux_sym_cmd_identifier_token27] = ACTIONS(2173), - [aux_sym_cmd_identifier_token28] = ACTIONS(2173), - [aux_sym_cmd_identifier_token29] = ACTIONS(2173), - [aux_sym_cmd_identifier_token30] = ACTIONS(2173), - [aux_sym_cmd_identifier_token31] = ACTIONS(2173), - [aux_sym_cmd_identifier_token32] = ACTIONS(2173), - [aux_sym_cmd_identifier_token33] = ACTIONS(2173), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2173), - [aux_sym_cmd_identifier_token36] = ACTIONS(2173), - [aux_sym_cmd_identifier_token37] = ACTIONS(2173), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2173), - [aux_sym_cmd_identifier_token40] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), - [anon_sym_DOT_DOT2] = ACTIONS(2167), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), - [sym__entry_separator] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2175), + [336] = { + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_DASH_EQ] = ACTIONS(1558), + [anon_sym_STAR_EQ] = ACTIONS(1558), + [anon_sym_SLASH_EQ] = ACTIONS(1558), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1558), + [aux_sym_cmd_identifier_token3] = ACTIONS(1558), + [aux_sym_cmd_identifier_token4] = ACTIONS(1558), + [aux_sym_cmd_identifier_token5] = ACTIONS(1558), + [aux_sym_cmd_identifier_token6] = ACTIONS(1558), + [aux_sym_cmd_identifier_token7] = ACTIONS(1558), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1558), + [aux_sym_cmd_identifier_token11] = ACTIONS(1558), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1558), + [aux_sym_cmd_identifier_token17] = ACTIONS(1558), + [aux_sym_cmd_identifier_token18] = ACTIONS(1558), + [aux_sym_cmd_identifier_token19] = ACTIONS(1558), + [aux_sym_cmd_identifier_token20] = ACTIONS(1558), + [aux_sym_cmd_identifier_token21] = ACTIONS(1558), + [aux_sym_cmd_identifier_token22] = ACTIONS(1558), + [aux_sym_cmd_identifier_token23] = ACTIONS(1558), + [aux_sym_cmd_identifier_token24] = ACTIONS(1558), + [aux_sym_cmd_identifier_token25] = ACTIONS(1558), + [aux_sym_cmd_identifier_token26] = ACTIONS(1558), + [aux_sym_cmd_identifier_token27] = ACTIONS(1558), + [aux_sym_cmd_identifier_token28] = ACTIONS(1558), + [aux_sym_cmd_identifier_token29] = ACTIONS(1558), + [aux_sym_cmd_identifier_token30] = ACTIONS(1558), + [aux_sym_cmd_identifier_token31] = ACTIONS(1558), + [aux_sym_cmd_identifier_token32] = ACTIONS(1558), + [aux_sym_cmd_identifier_token33] = ACTIONS(1558), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1558), + [aux_sym_cmd_identifier_token36] = ACTIONS(1558), + [aux_sym_cmd_identifier_token37] = ACTIONS(1558), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1558), + [aux_sym_cmd_identifier_token40] = ACTIONS(1558), + [sym__newline] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_STAR2] = ACTIONS(1556), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1556), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1556), + [anon_sym_SLASH2] = ACTIONS(1556), + [anon_sym_mod2] = ACTIONS(1556), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1558), + [aux_sym_record_entry_token1] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), }, - [503] = { - [sym_cell_path] = STATE(720), - [sym_path] = STATE(623), - [sym_comment] = STATE(503), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in2] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_PLUS2] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1859), - [aux_sym__val_number_token5] = ACTIONS(1859), - [aux_sym__val_number_token6] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1861), + [337] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8144), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(337), + [aux_sym_shebang_repeat1] = STATE(347), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [504] = { - [sym_cell_path] = STATE(723), - [sym_path] = STATE(623), - [sym_comment] = STATE(504), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1865), - [aux_sym_cmd_identifier_token3] = ACTIONS(1865), - [aux_sym_cmd_identifier_token4] = ACTIONS(1865), - [aux_sym_cmd_identifier_token5] = ACTIONS(1865), - [aux_sym_cmd_identifier_token6] = ACTIONS(1865), - [aux_sym_cmd_identifier_token7] = ACTIONS(1865), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1865), - [aux_sym_cmd_identifier_token11] = ACTIONS(1865), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1865), - [aux_sym_cmd_identifier_token17] = ACTIONS(1865), - [aux_sym_cmd_identifier_token18] = ACTIONS(1865), - [aux_sym_cmd_identifier_token19] = ACTIONS(1865), - [aux_sym_cmd_identifier_token20] = ACTIONS(1865), - [aux_sym_cmd_identifier_token21] = ACTIONS(1865), - [aux_sym_cmd_identifier_token22] = ACTIONS(1865), - [aux_sym_cmd_identifier_token23] = ACTIONS(1865), - [aux_sym_cmd_identifier_token24] = ACTIONS(1865), - [aux_sym_cmd_identifier_token25] = ACTIONS(1865), - [aux_sym_cmd_identifier_token26] = ACTIONS(1865), - [aux_sym_cmd_identifier_token27] = ACTIONS(1865), - [aux_sym_cmd_identifier_token28] = ACTIONS(1865), - [aux_sym_cmd_identifier_token29] = ACTIONS(1865), - [aux_sym_cmd_identifier_token30] = ACTIONS(1865), - [aux_sym_cmd_identifier_token31] = ACTIONS(1865), - [aux_sym_cmd_identifier_token32] = ACTIONS(1865), - [aux_sym_cmd_identifier_token33] = ACTIONS(1865), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1865), - [aux_sym_cmd_identifier_token36] = ACTIONS(1865), - [aux_sym_cmd_identifier_token37] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in2] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1865), + [338] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7822), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(338), + [aux_sym_shebang_repeat1] = STATE(347), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [505] = { - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2177), - [aux_sym__immediate_decimal_token2] = ACTIONS(2179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [339] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8172), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(339), + [aux_sym_shebang_repeat1] = STATE(347), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [506] = { - [sym_cell_path] = STATE(726), - [sym_path] = STATE(623), - [sym_comment] = STATE(506), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1869), - [aux_sym_cmd_identifier_token3] = ACTIONS(1869), - [aux_sym_cmd_identifier_token4] = ACTIONS(1869), - [aux_sym_cmd_identifier_token5] = ACTIONS(1869), - [aux_sym_cmd_identifier_token6] = ACTIONS(1869), - [aux_sym_cmd_identifier_token7] = ACTIONS(1869), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1869), - [aux_sym_cmd_identifier_token11] = ACTIONS(1869), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1869), - [aux_sym_cmd_identifier_token17] = ACTIONS(1869), - [aux_sym_cmd_identifier_token18] = ACTIONS(1869), - [aux_sym_cmd_identifier_token19] = ACTIONS(1869), - [aux_sym_cmd_identifier_token20] = ACTIONS(1869), - [aux_sym_cmd_identifier_token21] = ACTIONS(1869), - [aux_sym_cmd_identifier_token22] = ACTIONS(1869), - [aux_sym_cmd_identifier_token23] = ACTIONS(1869), - [aux_sym_cmd_identifier_token24] = ACTIONS(1869), - [aux_sym_cmd_identifier_token25] = ACTIONS(1869), - [aux_sym_cmd_identifier_token26] = ACTIONS(1869), - [aux_sym_cmd_identifier_token27] = ACTIONS(1869), - [aux_sym_cmd_identifier_token28] = ACTIONS(1869), - [aux_sym_cmd_identifier_token29] = ACTIONS(1869), - [aux_sym_cmd_identifier_token30] = ACTIONS(1869), - [aux_sym_cmd_identifier_token31] = ACTIONS(1869), - [aux_sym_cmd_identifier_token32] = ACTIONS(1869), - [aux_sym_cmd_identifier_token33] = ACTIONS(1869), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1869), - [aux_sym_cmd_identifier_token36] = ACTIONS(1869), - [aux_sym_cmd_identifier_token37] = ACTIONS(1869), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1869), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_DASH2] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in2] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [aux_sym__val_number_token4] = ACTIONS(1867), - [aux_sym__val_number_token5] = ACTIONS(1867), - [aux_sym__val_number_token6] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1869), + [340] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(7925), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(340), + [aux_sym_shebang_repeat1] = STATE(347), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [507] = { - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [341] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_body] = STATE(8006), + [sym_record_entry] = STATE(6878), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(347), + [aux_sym_record_body_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [508] = { - [sym_cell_path] = STATE(727), - [sym_path] = STATE(623), - [sym_comment] = STATE(508), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in2] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1847), - [aux_sym__val_number_token5] = ACTIONS(1847), - [aux_sym__val_number_token6] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1851), + [342] = { + [sym_cmd_identifier] = STATE(8032), + [sym__match_pattern_record_variable] = STATE(751), + [sym_expr_parenthesized] = STATE(8164), + [sym__spread_parenthesized] = STATE(736), + [sym__spread_variable] = STATE(737), + [sym_val_variable] = STATE(615), + [sym_val_number] = STATE(8164), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(8164), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(736), + [sym_record_entry] = STATE(751), + [sym__record_key] = STATE(8032), + [sym_comment] = STATE(342), + [aux_sym__match_pattern_record_repeat1] = STATE(343), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1592), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [509] = { - [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(2167), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym__str_single_quotes] = ACTIONS(1026), - [sym__str_back_ticks] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), - [sym__entry_separator] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [343] = { + [sym_cmd_identifier] = STATE(8032), + [sym__match_pattern_record_variable] = STATE(751), + [sym_expr_parenthesized] = STATE(8164), + [sym__spread_parenthesized] = STATE(736), + [sym__spread_variable] = STATE(737), + [sym_val_variable] = STATE(615), + [sym_val_number] = STATE(8164), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(8164), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(736), + [sym_record_entry] = STATE(751), + [sym__record_key] = STATE(8032), + [sym_comment] = STATE(343), + [aux_sym__match_pattern_record_repeat1] = STATE(346), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1592), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [510] = { - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [344] = { + [sym_cmd_identifier] = STATE(8032), + [sym__match_pattern_record_variable] = STATE(751), + [sym_expr_parenthesized] = STATE(8164), + [sym__spread_parenthesized] = STATE(736), + [sym__spread_variable] = STATE(737), + [sym_val_variable] = STATE(615), + [sym_val_number] = STATE(8164), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(8164), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(736), + [sym_record_entry] = STATE(751), + [sym__record_key] = STATE(8032), + [sym_comment] = STATE(344), + [aux_sym__match_pattern_record_repeat1] = STATE(345), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1592), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [511] = { - [sym_cell_path] = STATE(697), - [sym_path] = STATE(623), - [sym_comment] = STATE(511), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(1946), - [anon_sym_alias] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_let_DASHenv] = ACTIONS(1946), - [anon_sym_mut] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [aux_sym_cmd_identifier_token1] = ACTIONS(1946), - [aux_sym_cmd_identifier_token2] = ACTIONS(1948), - [aux_sym_cmd_identifier_token3] = ACTIONS(1948), - [aux_sym_cmd_identifier_token4] = ACTIONS(1948), - [aux_sym_cmd_identifier_token5] = ACTIONS(1948), - [aux_sym_cmd_identifier_token6] = ACTIONS(1948), - [aux_sym_cmd_identifier_token7] = ACTIONS(1948), - [aux_sym_cmd_identifier_token8] = ACTIONS(1946), - [aux_sym_cmd_identifier_token9] = ACTIONS(1946), - [aux_sym_cmd_identifier_token10] = ACTIONS(1948), - [aux_sym_cmd_identifier_token11] = ACTIONS(1948), - [aux_sym_cmd_identifier_token12] = ACTIONS(1946), - [aux_sym_cmd_identifier_token13] = ACTIONS(1946), - [aux_sym_cmd_identifier_token14] = ACTIONS(1946), - [aux_sym_cmd_identifier_token15] = ACTIONS(1946), - [aux_sym_cmd_identifier_token16] = ACTIONS(1948), - [aux_sym_cmd_identifier_token17] = ACTIONS(1948), - [aux_sym_cmd_identifier_token18] = ACTIONS(1948), - [aux_sym_cmd_identifier_token19] = ACTIONS(1948), - [aux_sym_cmd_identifier_token20] = ACTIONS(1948), - [aux_sym_cmd_identifier_token21] = ACTIONS(1948), - [aux_sym_cmd_identifier_token22] = ACTIONS(1948), - [aux_sym_cmd_identifier_token23] = ACTIONS(1948), - [aux_sym_cmd_identifier_token24] = ACTIONS(1948), - [aux_sym_cmd_identifier_token25] = ACTIONS(1948), - [aux_sym_cmd_identifier_token26] = ACTIONS(1948), - [aux_sym_cmd_identifier_token27] = ACTIONS(1948), - [aux_sym_cmd_identifier_token28] = ACTIONS(1948), - [aux_sym_cmd_identifier_token29] = ACTIONS(1948), - [aux_sym_cmd_identifier_token30] = ACTIONS(1948), - [aux_sym_cmd_identifier_token31] = ACTIONS(1948), - [aux_sym_cmd_identifier_token32] = ACTIONS(1948), - [aux_sym_cmd_identifier_token33] = ACTIONS(1948), - [aux_sym_cmd_identifier_token34] = ACTIONS(1946), - [aux_sym_cmd_identifier_token35] = ACTIONS(1948), - [aux_sym_cmd_identifier_token36] = ACTIONS(1948), - [aux_sym_cmd_identifier_token37] = ACTIONS(1948), - [aux_sym_cmd_identifier_token38] = ACTIONS(1946), - [aux_sym_cmd_identifier_token39] = ACTIONS(1948), - [aux_sym_cmd_identifier_token40] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1946), - [anon_sym_export_DASHenv] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_module] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_error] = ACTIONS(1946), - [anon_sym_DASH2] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_in2] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_make] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_else] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1946), - [anon_sym_catch] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_source] = ACTIONS(1946), - [anon_sym_source_DASHenv] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_hide] = ACTIONS(1946), - [anon_sym_hide_DASHenv] = ACTIONS(1946), - [anon_sym_overlay] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1946), - [anon_sym_PLUS2] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), - [aux_sym__val_number_decimal_token1] = ACTIONS(1946), - [aux_sym__val_number_decimal_token2] = ACTIONS(1948), - [aux_sym__val_number_decimal_token3] = ACTIONS(1948), - [aux_sym__val_number_decimal_token4] = ACTIONS(1948), - [aux_sym__val_number_token1] = ACTIONS(1948), - [aux_sym__val_number_token2] = ACTIONS(1948), - [aux_sym__val_number_token3] = ACTIONS(1948), - [aux_sym__val_number_token4] = ACTIONS(1946), - [aux_sym__val_number_token5] = ACTIONS(1946), - [aux_sym__val_number_token6] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym__str_single_quotes] = ACTIONS(1948), - [sym__str_back_ticks] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1948), + [345] = { + [sym_cmd_identifier] = STATE(8032), + [sym__match_pattern_record_variable] = STATE(751), + [sym_expr_parenthesized] = STATE(8164), + [sym__spread_parenthesized] = STATE(736), + [sym__spread_variable] = STATE(737), + [sym_val_variable] = STATE(615), + [sym_val_number] = STATE(8164), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(8164), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(736), + [sym_record_entry] = STATE(751), + [sym__record_key] = STATE(8032), + [sym_comment] = STATE(345), + [aux_sym__match_pattern_record_repeat1] = STATE(346), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_alias] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_let_DASHenv] = ACTIONS(1584), + [anon_sym_mut] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(1584), + [anon_sym_export_DASHenv] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_error] = ACTIONS(1584), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_in2] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_make] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_try] = ACTIONS(1584), + [anon_sym_catch] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_source] = ACTIONS(1584), + [anon_sym_source_DASHenv] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_hide] = ACTIONS(1584), + [anon_sym_hide_DASHenv] = ACTIONS(1584), + [anon_sym_overlay] = ACTIONS(1584), + [anon_sym_as] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1590), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1592), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), }, - [512] = { - [sym_cell_path] = STATE(699), - [sym_path] = STATE(623), - [sym_comment] = STATE(512), - [aux_sym_cell_path_repeat1] = STATE(532), - [anon_sym_export] = ACTIONS(2018), - [anon_sym_alias] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_let_DASHenv] = ACTIONS(2018), - [anon_sym_mut] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [aux_sym_cmd_identifier_token1] = ACTIONS(2018), - [aux_sym_cmd_identifier_token2] = ACTIONS(2020), - [aux_sym_cmd_identifier_token3] = ACTIONS(2020), - [aux_sym_cmd_identifier_token4] = ACTIONS(2020), - [aux_sym_cmd_identifier_token5] = ACTIONS(2020), - [aux_sym_cmd_identifier_token6] = ACTIONS(2020), - [aux_sym_cmd_identifier_token7] = ACTIONS(2020), - [aux_sym_cmd_identifier_token8] = ACTIONS(2018), - [aux_sym_cmd_identifier_token9] = ACTIONS(2018), - [aux_sym_cmd_identifier_token10] = ACTIONS(2020), - [aux_sym_cmd_identifier_token11] = ACTIONS(2020), - [aux_sym_cmd_identifier_token12] = ACTIONS(2018), - [aux_sym_cmd_identifier_token13] = ACTIONS(2018), - [aux_sym_cmd_identifier_token14] = ACTIONS(2018), - [aux_sym_cmd_identifier_token15] = ACTIONS(2018), - [aux_sym_cmd_identifier_token16] = ACTIONS(2020), - [aux_sym_cmd_identifier_token17] = ACTIONS(2020), - [aux_sym_cmd_identifier_token18] = ACTIONS(2020), - [aux_sym_cmd_identifier_token19] = ACTIONS(2020), - [aux_sym_cmd_identifier_token20] = ACTIONS(2020), - [aux_sym_cmd_identifier_token21] = ACTIONS(2020), - [aux_sym_cmd_identifier_token22] = ACTIONS(2020), - [aux_sym_cmd_identifier_token23] = ACTIONS(2020), - [aux_sym_cmd_identifier_token24] = ACTIONS(2020), - [aux_sym_cmd_identifier_token25] = ACTIONS(2020), - [aux_sym_cmd_identifier_token26] = ACTIONS(2020), - [aux_sym_cmd_identifier_token27] = ACTIONS(2020), - [aux_sym_cmd_identifier_token28] = ACTIONS(2020), - [aux_sym_cmd_identifier_token29] = ACTIONS(2020), - [aux_sym_cmd_identifier_token30] = ACTIONS(2020), - [aux_sym_cmd_identifier_token31] = ACTIONS(2020), - [aux_sym_cmd_identifier_token32] = ACTIONS(2020), - [aux_sym_cmd_identifier_token33] = ACTIONS(2020), - [aux_sym_cmd_identifier_token34] = ACTIONS(2018), - [aux_sym_cmd_identifier_token35] = ACTIONS(2020), - [aux_sym_cmd_identifier_token36] = ACTIONS(2020), - [aux_sym_cmd_identifier_token37] = ACTIONS(2020), - [aux_sym_cmd_identifier_token38] = ACTIONS(2018), - [aux_sym_cmd_identifier_token39] = ACTIONS(2020), - [aux_sym_cmd_identifier_token40] = ACTIONS(2020), - [anon_sym_def] = ACTIONS(2018), - [anon_sym_export_DASHenv] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [anon_sym_error] = ACTIONS(2018), - [anon_sym_DASH2] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_in2] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_make] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_source] = ACTIONS(2018), - [anon_sym_source_DASHenv] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_hide] = ACTIONS(2018), - [anon_sym_hide_DASHenv] = ACTIONS(2018), - [anon_sym_overlay] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_PLUS2] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), - [aux_sym__val_number_decimal_token1] = ACTIONS(2018), - [aux_sym__val_number_decimal_token2] = ACTIONS(2020), - [aux_sym__val_number_decimal_token3] = ACTIONS(2020), - [aux_sym__val_number_decimal_token4] = ACTIONS(2020), - [aux_sym__val_number_token1] = ACTIONS(2020), - [aux_sym__val_number_token2] = ACTIONS(2020), - [aux_sym__val_number_token3] = ACTIONS(2020), - [aux_sym__val_number_token4] = ACTIONS(2018), - [aux_sym__val_number_token5] = ACTIONS(2018), - [aux_sym__val_number_token6] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym__str_single_quotes] = ACTIONS(2020), - [sym__str_back_ticks] = ACTIONS(2020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2020), + [346] = { + [sym_cmd_identifier] = STATE(8032), + [sym__match_pattern_record_variable] = STATE(751), + [sym_expr_parenthesized] = STATE(8164), + [sym__spread_parenthesized] = STATE(736), + [sym__spread_variable] = STATE(737), + [sym_val_variable] = STATE(615), + [sym_val_number] = STATE(8164), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(8164), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(736), + [sym_record_entry] = STATE(751), + [sym__record_key] = STATE(8032), + [sym_comment] = STATE(346), + [aux_sym__match_pattern_record_repeat1] = STATE(346), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_alias] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_let_DASHenv] = ACTIONS(1602), + [anon_sym_mut] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1608), + [aux_sym_cmd_identifier_token3] = ACTIONS(1608), + [aux_sym_cmd_identifier_token4] = ACTIONS(1608), + [aux_sym_cmd_identifier_token5] = ACTIONS(1608), + [aux_sym_cmd_identifier_token6] = ACTIONS(1608), + [aux_sym_cmd_identifier_token7] = ACTIONS(1608), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1608), + [aux_sym_cmd_identifier_token11] = ACTIONS(1608), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1608), + [aux_sym_cmd_identifier_token17] = ACTIONS(1608), + [aux_sym_cmd_identifier_token18] = ACTIONS(1608), + [aux_sym_cmd_identifier_token19] = ACTIONS(1608), + [aux_sym_cmd_identifier_token20] = ACTIONS(1608), + [aux_sym_cmd_identifier_token21] = ACTIONS(1608), + [aux_sym_cmd_identifier_token22] = ACTIONS(1608), + [aux_sym_cmd_identifier_token23] = ACTIONS(1608), + [aux_sym_cmd_identifier_token24] = ACTIONS(1608), + [aux_sym_cmd_identifier_token25] = ACTIONS(1608), + [aux_sym_cmd_identifier_token26] = ACTIONS(1608), + [aux_sym_cmd_identifier_token27] = ACTIONS(1608), + [aux_sym_cmd_identifier_token28] = ACTIONS(1608), + [aux_sym_cmd_identifier_token29] = ACTIONS(1608), + [aux_sym_cmd_identifier_token30] = ACTIONS(1608), + [aux_sym_cmd_identifier_token31] = ACTIONS(1608), + [aux_sym_cmd_identifier_token32] = ACTIONS(1608), + [aux_sym_cmd_identifier_token33] = ACTIONS(1608), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1608), + [aux_sym_cmd_identifier_token36] = ACTIONS(1608), + [aux_sym_cmd_identifier_token37] = ACTIONS(1608), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1608), + [aux_sym_cmd_identifier_token40] = ACTIONS(1608), + [anon_sym_def] = ACTIONS(1602), + [anon_sym_export_DASHenv] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_error] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_in2] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_make] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_try] = ACTIONS(1602), + [anon_sym_catch] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_source] = ACTIONS(1602), + [anon_sym_source_DASHenv] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_hide] = ACTIONS(1602), + [anon_sym_hide_DASHenv] = ACTIONS(1602), + [anon_sym_overlay] = ACTIONS(1602), + [anon_sym_as] = ACTIONS(1602), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1622), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1634), + [aux_sym__val_number_decimal_token4] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [aux_sym__val_number_token4] = ACTIONS(1643), + [aux_sym__val_number_token5] = ACTIONS(1643), + [aux_sym__val_number_token6] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1646), + [sym__str_single_quotes] = ACTIONS(1649), + [sym__str_back_ticks] = ACTIONS(1649), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1655), + }, + [347] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7087), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(347), + [aux_sym_shebang_repeat1] = STATE(657), + [aux_sym_record_body_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [sym__newline] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), + }, + [348] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7052), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(348), + [aux_sym_record_body_repeat1] = STATE(350), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), + }, + [349] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7109), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(349), + [aux_sym_record_body_repeat1] = STATE(350), + [anon_sym_export] = ACTIONS(289), + [anon_sym_alias] = ACTIONS(289), + [anon_sym_let] = ACTIONS(289), + [anon_sym_let_DASHenv] = ACTIONS(289), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_const] = ACTIONS(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1562), + [aux_sym_cmd_identifier_token3] = ACTIONS(1562), + [aux_sym_cmd_identifier_token4] = ACTIONS(1562), + [aux_sym_cmd_identifier_token5] = ACTIONS(1562), + [aux_sym_cmd_identifier_token6] = ACTIONS(1562), + [aux_sym_cmd_identifier_token7] = ACTIONS(1562), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1562), + [aux_sym_cmd_identifier_token11] = ACTIONS(1562), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1562), + [aux_sym_cmd_identifier_token17] = ACTIONS(1562), + [aux_sym_cmd_identifier_token18] = ACTIONS(1562), + [aux_sym_cmd_identifier_token19] = ACTIONS(1562), + [aux_sym_cmd_identifier_token20] = ACTIONS(1562), + [aux_sym_cmd_identifier_token21] = ACTIONS(1562), + [aux_sym_cmd_identifier_token22] = ACTIONS(1562), + [aux_sym_cmd_identifier_token23] = ACTIONS(1562), + [aux_sym_cmd_identifier_token24] = ACTIONS(1562), + [aux_sym_cmd_identifier_token25] = ACTIONS(1562), + [aux_sym_cmd_identifier_token26] = ACTIONS(1562), + [aux_sym_cmd_identifier_token27] = ACTIONS(1562), + [aux_sym_cmd_identifier_token28] = ACTIONS(1562), + [aux_sym_cmd_identifier_token29] = ACTIONS(1562), + [aux_sym_cmd_identifier_token30] = ACTIONS(1562), + [aux_sym_cmd_identifier_token31] = ACTIONS(1562), + [aux_sym_cmd_identifier_token32] = ACTIONS(1562), + [aux_sym_cmd_identifier_token33] = ACTIONS(1562), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1562), + [aux_sym_cmd_identifier_token36] = ACTIONS(1562), + [aux_sym_cmd_identifier_token37] = ACTIONS(1562), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1562), + [aux_sym_cmd_identifier_token40] = ACTIONS(1562), + [anon_sym_def] = ACTIONS(289), + [anon_sym_export_DASHenv] = ACTIONS(289), + [anon_sym_extern] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_use] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_error] = ACTIONS(289), + [anon_sym_DASH2] = ACTIONS(209), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_in2] = ACTIONS(289), + [anon_sym_loop] = ACTIONS(289), + [anon_sym_make] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_match] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_source] = ACTIONS(289), + [anon_sym_source_DASHenv] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_hide] = ACTIONS(289), + [anon_sym_hide_DASHenv] = ACTIONS(289), + [anon_sym_overlay] = ACTIONS(289), + [anon_sym_as] = ACTIONS(289), + [anon_sym_PLUS2] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1574), + [aux_sym__val_number_decimal_token3] = ACTIONS(1576), + [aux_sym__val_number_decimal_token4] = ACTIONS(1578), + [aux_sym__val_number_token1] = ACTIONS(229), + [aux_sym__val_number_token2] = ACTIONS(229), + [aux_sym__val_number_token3] = ACTIONS(229), + [aux_sym__val_number_token4] = ACTIONS(231), + [aux_sym__val_number_token5] = ACTIONS(231), + [aux_sym__val_number_token6] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(239), + [sym__str_single_quotes] = ACTIONS(241), + [sym__str_back_ticks] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(321), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(257), + }, + [350] = { + [sym_cmd_identifier] = STATE(8169), + [sym_expr_parenthesized] = STATE(7899), + [sym__spread_parenthesized] = STATE(7650), + [sym__spread_variable] = STATE(7523), + [sym_val_variable] = STATE(7899), + [sym_val_number] = STATE(7899), + [sym__val_number_decimal] = STATE(3681), + [sym__val_number] = STATE(2411), + [sym_val_string] = STATE(7899), + [sym__raw_str] = STATE(1541), + [sym__str_double_quotes] = STATE(1541), + [sym__spread_record] = STATE(7650), + [sym_record_entry] = STATE(7644), + [sym__record_key] = STATE(8169), + [sym_comment] = STATE(350), + [aux_sym_record_body_repeat1] = STATE(350), + [anon_sym_export] = ACTIONS(1658), + [anon_sym_alias] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_let_DASHenv] = ACTIONS(1658), + [anon_sym_mut] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [aux_sym_cmd_identifier_token1] = ACTIONS(1661), + [aux_sym_cmd_identifier_token2] = ACTIONS(1664), + [aux_sym_cmd_identifier_token3] = ACTIONS(1664), + [aux_sym_cmd_identifier_token4] = ACTIONS(1664), + [aux_sym_cmd_identifier_token5] = ACTIONS(1664), + [aux_sym_cmd_identifier_token6] = ACTIONS(1664), + [aux_sym_cmd_identifier_token7] = ACTIONS(1664), + [aux_sym_cmd_identifier_token8] = ACTIONS(1661), + [aux_sym_cmd_identifier_token9] = ACTIONS(1661), + [aux_sym_cmd_identifier_token10] = ACTIONS(1664), + [aux_sym_cmd_identifier_token11] = ACTIONS(1664), + [aux_sym_cmd_identifier_token12] = ACTIONS(1661), + [aux_sym_cmd_identifier_token13] = ACTIONS(1661), + [aux_sym_cmd_identifier_token14] = ACTIONS(1661), + [aux_sym_cmd_identifier_token15] = ACTIONS(1661), + [aux_sym_cmd_identifier_token16] = ACTIONS(1664), + [aux_sym_cmd_identifier_token17] = ACTIONS(1664), + [aux_sym_cmd_identifier_token18] = ACTIONS(1664), + [aux_sym_cmd_identifier_token19] = ACTIONS(1664), + [aux_sym_cmd_identifier_token20] = ACTIONS(1664), + [aux_sym_cmd_identifier_token21] = ACTIONS(1664), + [aux_sym_cmd_identifier_token22] = ACTIONS(1664), + [aux_sym_cmd_identifier_token23] = ACTIONS(1664), + [aux_sym_cmd_identifier_token24] = ACTIONS(1664), + [aux_sym_cmd_identifier_token25] = ACTIONS(1664), + [aux_sym_cmd_identifier_token26] = ACTIONS(1664), + [aux_sym_cmd_identifier_token27] = ACTIONS(1664), + [aux_sym_cmd_identifier_token28] = ACTIONS(1664), + [aux_sym_cmd_identifier_token29] = ACTIONS(1664), + [aux_sym_cmd_identifier_token30] = ACTIONS(1664), + [aux_sym_cmd_identifier_token31] = ACTIONS(1664), + [aux_sym_cmd_identifier_token32] = ACTIONS(1664), + [aux_sym_cmd_identifier_token33] = ACTIONS(1664), + [aux_sym_cmd_identifier_token34] = ACTIONS(1661), + [aux_sym_cmd_identifier_token35] = ACTIONS(1664), + [aux_sym_cmd_identifier_token36] = ACTIONS(1664), + [aux_sym_cmd_identifier_token37] = ACTIONS(1664), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1664), + [aux_sym_cmd_identifier_token40] = ACTIONS(1664), + [anon_sym_def] = ACTIONS(1658), + [anon_sym_export_DASHenv] = ACTIONS(1658), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_module] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_error] = ACTIONS(1658), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_in2] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_make] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_do] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_else] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1658), + [anon_sym_catch] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_source] = ACTIONS(1658), + [anon_sym_source_DASHenv] = ACTIONS(1658), + [anon_sym_register] = ACTIONS(1658), + [anon_sym_hide] = ACTIONS(1658), + [anon_sym_hide_DASHenv] = ACTIONS(1658), + [anon_sym_overlay] = ACTIONS(1658), + [anon_sym_as] = ACTIONS(1658), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1682), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1694), + [aux_sym__val_number_token2] = ACTIONS(1694), + [aux_sym__val_number_token3] = ACTIONS(1694), + [aux_sym__val_number_token4] = ACTIONS(1697), + [aux_sym__val_number_token5] = ACTIONS(1697), + [aux_sym__val_number_token6] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1700), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1709), }, - [513] = { - [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2183), - [aux_sym_cmd_identifier_token3] = ACTIONS(2183), - [aux_sym_cmd_identifier_token4] = ACTIONS(2183), - [aux_sym_cmd_identifier_token5] = ACTIONS(2183), - [aux_sym_cmd_identifier_token6] = ACTIONS(2183), - [aux_sym_cmd_identifier_token7] = ACTIONS(2183), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2183), - [aux_sym_cmd_identifier_token11] = ACTIONS(2183), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2183), - [aux_sym_cmd_identifier_token17] = ACTIONS(2183), - [aux_sym_cmd_identifier_token18] = ACTIONS(2183), - [aux_sym_cmd_identifier_token19] = ACTIONS(2183), - [aux_sym_cmd_identifier_token20] = ACTIONS(2183), - [aux_sym_cmd_identifier_token21] = ACTIONS(2183), - [aux_sym_cmd_identifier_token22] = ACTIONS(2183), - [aux_sym_cmd_identifier_token23] = ACTIONS(2183), - [aux_sym_cmd_identifier_token24] = ACTIONS(2183), - [aux_sym_cmd_identifier_token25] = ACTIONS(2183), - [aux_sym_cmd_identifier_token26] = ACTIONS(2183), - [aux_sym_cmd_identifier_token27] = ACTIONS(2183), - [aux_sym_cmd_identifier_token28] = ACTIONS(2183), - [aux_sym_cmd_identifier_token29] = ACTIONS(2183), - [aux_sym_cmd_identifier_token30] = ACTIONS(2183), - [aux_sym_cmd_identifier_token31] = ACTIONS(2183), - [aux_sym_cmd_identifier_token32] = ACTIONS(2183), - [aux_sym_cmd_identifier_token33] = ACTIONS(2183), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2183), - [aux_sym_cmd_identifier_token36] = ACTIONS(2183), - [aux_sym_cmd_identifier_token37] = ACTIONS(2183), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2183), - [aux_sym_cmd_identifier_token40] = ACTIONS(2183), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2183), - [aux_sym__val_number_decimal_token3] = ACTIONS(2183), - [aux_sym__val_number_decimal_token4] = ACTIONS(2183), - [aux_sym__val_number_token1] = ACTIONS(2183), - [aux_sym__val_number_token2] = ACTIONS(2183), - [aux_sym__val_number_token3] = ACTIONS(2183), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), - [sym__entry_separator] = ACTIONS(2185), + [351] = { + [sym__expr_parenthesized_immediate] = STATE(479), + [sym__immediate_decimal] = STATE(408), + [sym_val_variable] = STATE(479), + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_alias] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_let_DASHenv] = ACTIONS(1712), + [anon_sym_mut] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [aux_sym_cmd_identifier_token1] = ACTIONS(1712), + [aux_sym_cmd_identifier_token2] = ACTIONS(1712), + [aux_sym_cmd_identifier_token3] = ACTIONS(1712), + [aux_sym_cmd_identifier_token4] = ACTIONS(1712), + [aux_sym_cmd_identifier_token5] = ACTIONS(1712), + [aux_sym_cmd_identifier_token6] = ACTIONS(1712), + [aux_sym_cmd_identifier_token7] = ACTIONS(1712), + [aux_sym_cmd_identifier_token8] = ACTIONS(1712), + [aux_sym_cmd_identifier_token9] = ACTIONS(1712), + [aux_sym_cmd_identifier_token10] = ACTIONS(1712), + [aux_sym_cmd_identifier_token11] = ACTIONS(1712), + [aux_sym_cmd_identifier_token12] = ACTIONS(1712), + [aux_sym_cmd_identifier_token13] = ACTIONS(1712), + [aux_sym_cmd_identifier_token14] = ACTIONS(1712), + [aux_sym_cmd_identifier_token15] = ACTIONS(1712), + [aux_sym_cmd_identifier_token16] = ACTIONS(1712), + [aux_sym_cmd_identifier_token17] = ACTIONS(1712), + [aux_sym_cmd_identifier_token18] = ACTIONS(1712), + [aux_sym_cmd_identifier_token19] = ACTIONS(1712), + [aux_sym_cmd_identifier_token20] = ACTIONS(1712), + [aux_sym_cmd_identifier_token21] = ACTIONS(1712), + [aux_sym_cmd_identifier_token22] = ACTIONS(1712), + [aux_sym_cmd_identifier_token23] = ACTIONS(1712), + [aux_sym_cmd_identifier_token24] = ACTIONS(1712), + [aux_sym_cmd_identifier_token25] = ACTIONS(1712), + [aux_sym_cmd_identifier_token26] = ACTIONS(1712), + [aux_sym_cmd_identifier_token27] = ACTIONS(1712), + [aux_sym_cmd_identifier_token28] = ACTIONS(1712), + [aux_sym_cmd_identifier_token29] = ACTIONS(1712), + [aux_sym_cmd_identifier_token30] = ACTIONS(1712), + [aux_sym_cmd_identifier_token31] = ACTIONS(1712), + [aux_sym_cmd_identifier_token32] = ACTIONS(1712), + [aux_sym_cmd_identifier_token33] = ACTIONS(1712), + [aux_sym_cmd_identifier_token34] = ACTIONS(1712), + [aux_sym_cmd_identifier_token35] = ACTIONS(1712), + [aux_sym_cmd_identifier_token36] = ACTIONS(1712), + [aux_sym_cmd_identifier_token37] = ACTIONS(1712), + [aux_sym_cmd_identifier_token38] = ACTIONS(1712), + [aux_sym_cmd_identifier_token39] = ACTIONS(1712), + [aux_sym_cmd_identifier_token40] = ACTIONS(1712), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_export_DASHenv] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_error] = ACTIONS(1712), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_in2] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_make] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_catch] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_source] = ACTIONS(1712), + [anon_sym_source_DASHenv] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_hide] = ACTIONS(1712), + [anon_sym_hide_DASHenv] = ACTIONS(1712), + [anon_sym_overlay] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(1718), + [aux_sym__immediate_decimal_token1] = ACTIONS(1720), + [aux_sym__immediate_decimal_token3] = ACTIONS(1720), + [aux_sym__immediate_decimal_token4] = ACTIONS(1722), + [aux_sym__immediate_decimal_token5] = ACTIONS(1724), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1712), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1712), + [aux_sym__val_number_token2] = ACTIONS(1712), + [aux_sym__val_number_token3] = ACTIONS(1712), + [aux_sym__val_number_token4] = ACTIONS(1712), + [aux_sym__val_number_token5] = ACTIONS(1712), + [aux_sym__val_number_token6] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym__str_single_quotes] = ACTIONS(1712), + [sym__str_back_ticks] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1712), + [sym__entry_separator] = ACTIONS(1726), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2185), + [sym_raw_string_begin] = ACTIONS(1726), }, - [514] = { - [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1841), - [aux_sym_cmd_identifier_token3] = ACTIONS(1841), - [aux_sym_cmd_identifier_token4] = ACTIONS(1841), - [aux_sym_cmd_identifier_token5] = ACTIONS(1841), - [aux_sym_cmd_identifier_token6] = ACTIONS(1841), - [aux_sym_cmd_identifier_token7] = ACTIONS(1841), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1841), - [aux_sym_cmd_identifier_token11] = ACTIONS(1841), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1841), - [aux_sym_cmd_identifier_token17] = ACTIONS(1841), - [aux_sym_cmd_identifier_token18] = ACTIONS(1841), - [aux_sym_cmd_identifier_token19] = ACTIONS(1841), - [aux_sym_cmd_identifier_token20] = ACTIONS(1841), - [aux_sym_cmd_identifier_token21] = ACTIONS(1841), - [aux_sym_cmd_identifier_token22] = ACTIONS(1841), - [aux_sym_cmd_identifier_token23] = ACTIONS(1841), - [aux_sym_cmd_identifier_token24] = ACTIONS(1841), - [aux_sym_cmd_identifier_token25] = ACTIONS(1841), - [aux_sym_cmd_identifier_token26] = ACTIONS(1841), - [aux_sym_cmd_identifier_token27] = ACTIONS(1841), - [aux_sym_cmd_identifier_token28] = ACTIONS(1841), - [aux_sym_cmd_identifier_token29] = ACTIONS(1841), - [aux_sym_cmd_identifier_token30] = ACTIONS(1841), - [aux_sym_cmd_identifier_token31] = ACTIONS(1841), - [aux_sym_cmd_identifier_token32] = ACTIONS(1841), - [aux_sym_cmd_identifier_token33] = ACTIONS(1841), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1841), - [aux_sym_cmd_identifier_token36] = ACTIONS(1841), - [aux_sym_cmd_identifier_token37] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [sym__entry_separator] = ACTIONS(1843), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), + [352] = { + [sym__expr_parenthesized_immediate] = STATE(677), + [sym__immediate_decimal] = STATE(567), + [sym_val_variable] = STATE(677), + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_alias] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_let_DASHenv] = ACTIONS(1730), + [anon_sym_mut] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [aux_sym_cmd_identifier_token1] = ACTIONS(1730), + [aux_sym_cmd_identifier_token2] = ACTIONS(1730), + [aux_sym_cmd_identifier_token3] = ACTIONS(1730), + [aux_sym_cmd_identifier_token4] = ACTIONS(1730), + [aux_sym_cmd_identifier_token5] = ACTIONS(1730), + [aux_sym_cmd_identifier_token6] = ACTIONS(1730), + [aux_sym_cmd_identifier_token7] = ACTIONS(1730), + [aux_sym_cmd_identifier_token8] = ACTIONS(1730), + [aux_sym_cmd_identifier_token9] = ACTIONS(1730), + [aux_sym_cmd_identifier_token10] = ACTIONS(1730), + [aux_sym_cmd_identifier_token11] = ACTIONS(1730), + [aux_sym_cmd_identifier_token12] = ACTIONS(1730), + [aux_sym_cmd_identifier_token13] = ACTIONS(1730), + [aux_sym_cmd_identifier_token14] = ACTIONS(1730), + [aux_sym_cmd_identifier_token15] = ACTIONS(1730), + [aux_sym_cmd_identifier_token16] = ACTIONS(1730), + [aux_sym_cmd_identifier_token17] = ACTIONS(1730), + [aux_sym_cmd_identifier_token18] = ACTIONS(1730), + [aux_sym_cmd_identifier_token19] = ACTIONS(1730), + [aux_sym_cmd_identifier_token20] = ACTIONS(1730), + [aux_sym_cmd_identifier_token21] = ACTIONS(1730), + [aux_sym_cmd_identifier_token22] = ACTIONS(1730), + [aux_sym_cmd_identifier_token23] = ACTIONS(1730), + [aux_sym_cmd_identifier_token24] = ACTIONS(1730), + [aux_sym_cmd_identifier_token25] = ACTIONS(1730), + [aux_sym_cmd_identifier_token26] = ACTIONS(1730), + [aux_sym_cmd_identifier_token27] = ACTIONS(1730), + [aux_sym_cmd_identifier_token28] = ACTIONS(1730), + [aux_sym_cmd_identifier_token29] = ACTIONS(1730), + [aux_sym_cmd_identifier_token30] = ACTIONS(1730), + [aux_sym_cmd_identifier_token31] = ACTIONS(1730), + [aux_sym_cmd_identifier_token32] = ACTIONS(1730), + [aux_sym_cmd_identifier_token33] = ACTIONS(1730), + [aux_sym_cmd_identifier_token34] = ACTIONS(1730), + [aux_sym_cmd_identifier_token35] = ACTIONS(1730), + [aux_sym_cmd_identifier_token36] = ACTIONS(1730), + [aux_sym_cmd_identifier_token37] = ACTIONS(1730), + [aux_sym_cmd_identifier_token38] = ACTIONS(1730), + [aux_sym_cmd_identifier_token39] = ACTIONS(1730), + [aux_sym_cmd_identifier_token40] = ACTIONS(1730), + [anon_sym_def] = ACTIONS(1730), + [anon_sym_export_DASHenv] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_module] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_in2] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_make] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_try] = ACTIONS(1730), + [anon_sym_catch] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_source] = ACTIONS(1730), + [anon_sym_source_DASHenv] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_hide] = ACTIONS(1730), + [anon_sym_hide_DASHenv] = ACTIONS(1730), + [anon_sym_overlay] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1730), + [aux_sym__immediate_decimal_token1] = ACTIONS(1736), + [aux_sym__immediate_decimal_token3] = ACTIONS(1736), + [aux_sym__immediate_decimal_token4] = ACTIONS(1738), + [aux_sym__immediate_decimal_token5] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1730), + [aux_sym__val_number_decimal_token1] = ACTIONS(1730), + [aux_sym__val_number_decimal_token2] = ACTIONS(1730), + [aux_sym__val_number_decimal_token3] = ACTIONS(1730), + [aux_sym__val_number_decimal_token4] = ACTIONS(1730), + [aux_sym__val_number_token1] = ACTIONS(1730), + [aux_sym__val_number_token2] = ACTIONS(1730), + [aux_sym__val_number_token3] = ACTIONS(1730), + [aux_sym__val_number_token4] = ACTIONS(1730), + [aux_sym__val_number_token5] = ACTIONS(1730), + [aux_sym__val_number_token6] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [sym__str_single_quotes] = ACTIONS(1730), + [sym__str_back_ticks] = ACTIONS(1730), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1730), + [sym__entry_separator] = ACTIONS(1742), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1744), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1843), + [sym_raw_string_begin] = ACTIONS(1742), }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [aux_sym_cmd_identifier_token1] = ACTIONS(2122), - [aux_sym_cmd_identifier_token2] = ACTIONS(2128), - [aux_sym_cmd_identifier_token3] = ACTIONS(2128), - [aux_sym_cmd_identifier_token4] = ACTIONS(2128), - [aux_sym_cmd_identifier_token5] = ACTIONS(2128), - [aux_sym_cmd_identifier_token6] = ACTIONS(2128), - [aux_sym_cmd_identifier_token7] = ACTIONS(2128), - [aux_sym_cmd_identifier_token8] = ACTIONS(2122), - [aux_sym_cmd_identifier_token9] = ACTIONS(2122), - [aux_sym_cmd_identifier_token10] = ACTIONS(2128), - [aux_sym_cmd_identifier_token11] = ACTIONS(2128), - [aux_sym_cmd_identifier_token12] = ACTIONS(2122), - [aux_sym_cmd_identifier_token13] = ACTIONS(2122), - [aux_sym_cmd_identifier_token14] = ACTIONS(2122), - [aux_sym_cmd_identifier_token15] = ACTIONS(2122), - [aux_sym_cmd_identifier_token16] = ACTIONS(2128), - [aux_sym_cmd_identifier_token17] = ACTIONS(2128), - [aux_sym_cmd_identifier_token18] = ACTIONS(2128), - [aux_sym_cmd_identifier_token19] = ACTIONS(2128), - [aux_sym_cmd_identifier_token20] = ACTIONS(2128), - [aux_sym_cmd_identifier_token21] = ACTIONS(2128), - [aux_sym_cmd_identifier_token22] = ACTIONS(2128), - [aux_sym_cmd_identifier_token23] = ACTIONS(2128), - [aux_sym_cmd_identifier_token24] = ACTIONS(2128), - [aux_sym_cmd_identifier_token25] = ACTIONS(2128), - [aux_sym_cmd_identifier_token26] = ACTIONS(2128), - [aux_sym_cmd_identifier_token27] = ACTIONS(2128), - [aux_sym_cmd_identifier_token28] = ACTIONS(2128), - [aux_sym_cmd_identifier_token29] = ACTIONS(2128), - [aux_sym_cmd_identifier_token30] = ACTIONS(2128), - [aux_sym_cmd_identifier_token31] = ACTIONS(2128), - [aux_sym_cmd_identifier_token32] = ACTIONS(2128), - [aux_sym_cmd_identifier_token33] = ACTIONS(2128), - [aux_sym_cmd_identifier_token34] = ACTIONS(2122), - [aux_sym_cmd_identifier_token35] = ACTIONS(2128), - [aux_sym_cmd_identifier_token36] = ACTIONS(2128), - [aux_sym_cmd_identifier_token37] = ACTIONS(2128), - [aux_sym_cmd_identifier_token38] = ACTIONS(2122), - [aux_sym_cmd_identifier_token39] = ACTIONS(2128), - [aux_sym_cmd_identifier_token40] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_in2] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_make] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), - [anon_sym_DOT_DOT2] = ACTIONS(2187), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2189), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym__str_single_quotes] = ACTIONS(2128), - [sym__str_back_ticks] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2128), + [353] = { + [sym__expr_parenthesized_immediate] = STATE(569), + [sym__immediate_decimal] = STATE(464), + [sym_val_variable] = STATE(569), + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_alias] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_let_DASHenv] = ACTIONS(1712), + [anon_sym_mut] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [aux_sym_cmd_identifier_token1] = ACTIONS(1712), + [aux_sym_cmd_identifier_token2] = ACTIONS(1726), + [aux_sym_cmd_identifier_token3] = ACTIONS(1726), + [aux_sym_cmd_identifier_token4] = ACTIONS(1726), + [aux_sym_cmd_identifier_token5] = ACTIONS(1726), + [aux_sym_cmd_identifier_token6] = ACTIONS(1726), + [aux_sym_cmd_identifier_token7] = ACTIONS(1726), + [aux_sym_cmd_identifier_token8] = ACTIONS(1712), + [aux_sym_cmd_identifier_token9] = ACTIONS(1712), + [aux_sym_cmd_identifier_token10] = ACTIONS(1726), + [aux_sym_cmd_identifier_token11] = ACTIONS(1726), + [aux_sym_cmd_identifier_token12] = ACTIONS(1712), + [aux_sym_cmd_identifier_token13] = ACTIONS(1712), + [aux_sym_cmd_identifier_token14] = ACTIONS(1712), + [aux_sym_cmd_identifier_token15] = ACTIONS(1712), + [aux_sym_cmd_identifier_token16] = ACTIONS(1726), + [aux_sym_cmd_identifier_token17] = ACTIONS(1726), + [aux_sym_cmd_identifier_token18] = ACTIONS(1726), + [aux_sym_cmd_identifier_token19] = ACTIONS(1726), + [aux_sym_cmd_identifier_token20] = ACTIONS(1726), + [aux_sym_cmd_identifier_token21] = ACTIONS(1726), + [aux_sym_cmd_identifier_token22] = ACTIONS(1726), + [aux_sym_cmd_identifier_token23] = ACTIONS(1726), + [aux_sym_cmd_identifier_token24] = ACTIONS(1726), + [aux_sym_cmd_identifier_token25] = ACTIONS(1726), + [aux_sym_cmd_identifier_token26] = ACTIONS(1726), + [aux_sym_cmd_identifier_token27] = ACTIONS(1726), + [aux_sym_cmd_identifier_token28] = ACTIONS(1726), + [aux_sym_cmd_identifier_token29] = ACTIONS(1726), + [aux_sym_cmd_identifier_token30] = ACTIONS(1726), + [aux_sym_cmd_identifier_token31] = ACTIONS(1726), + [aux_sym_cmd_identifier_token32] = ACTIONS(1726), + [aux_sym_cmd_identifier_token33] = ACTIONS(1726), + [aux_sym_cmd_identifier_token34] = ACTIONS(1712), + [aux_sym_cmd_identifier_token35] = ACTIONS(1726), + [aux_sym_cmd_identifier_token36] = ACTIONS(1726), + [aux_sym_cmd_identifier_token37] = ACTIONS(1726), + [aux_sym_cmd_identifier_token38] = ACTIONS(1712), + [aux_sym_cmd_identifier_token39] = ACTIONS(1726), + [aux_sym_cmd_identifier_token40] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_export_DASHenv] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1746), + [anon_sym_error] = ACTIONS(1712), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_in2] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_make] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_catch] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_source] = ACTIONS(1712), + [anon_sym_source_DASHenv] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_hide] = ACTIONS(1712), + [anon_sym_hide_DASHenv] = ACTIONS(1712), + [anon_sym_overlay] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1748), + [anon_sym_PLUS2] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1750), + [aux_sym__immediate_decimal_token1] = ACTIONS(1752), + [aux_sym__immediate_decimal_token3] = ACTIONS(1754), + [aux_sym__immediate_decimal_token4] = ACTIONS(1756), + [aux_sym__immediate_decimal_token5] = ACTIONS(1758), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1712), + [aux_sym__val_number_token5] = ACTIONS(1712), + [aux_sym__val_number_token6] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1726), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2130), - [aux_sym_cmd_identifier_token9] = ACTIONS(2130), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2130), - [aux_sym_cmd_identifier_token13] = ACTIONS(2130), - [aux_sym_cmd_identifier_token14] = ACTIONS(2130), - [aux_sym_cmd_identifier_token15] = ACTIONS(2130), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2130), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2130), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_in2] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_make] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_as] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT2] = ACTIONS(2191), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2193), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2136), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1762), }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_let_DASHenv] = ACTIONS(2146), - [anon_sym_mut] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [aux_sym_cmd_identifier_token1] = ACTIONS(2146), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2146), - [aux_sym_cmd_identifier_token9] = ACTIONS(2146), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2146), - [aux_sym_cmd_identifier_token13] = ACTIONS(2146), - [aux_sym_cmd_identifier_token14] = ACTIONS(2146), - [aux_sym_cmd_identifier_token15] = ACTIONS(2146), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2146), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [aux_sym_cmd_identifier_token37] = ACTIONS(2152), - [aux_sym_cmd_identifier_token38] = ACTIONS(2146), - [aux_sym_cmd_identifier_token39] = ACTIONS(2152), - [aux_sym_cmd_identifier_token40] = ACTIONS(2152), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_export_DASHenv] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_module] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_error] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_in2] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_make] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_source] = ACTIONS(2146), - [anon_sym_source_DASHenv] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_hide] = ACTIONS(2146), - [anon_sym_hide_DASHenv] = ACTIONS(2146), - [anon_sym_overlay] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2195), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2197), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2146), - [aux_sym__val_number_token5] = ACTIONS(2146), - [aux_sym__val_number_token6] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2152), + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_alias] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_let_DASHenv] = ACTIONS(1768), + [anon_sym_mut] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [aux_sym_cmd_identifier_token1] = ACTIONS(1768), + [aux_sym_cmd_identifier_token2] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1768), + [aux_sym_cmd_identifier_token4] = ACTIONS(1768), + [aux_sym_cmd_identifier_token5] = ACTIONS(1768), + [aux_sym_cmd_identifier_token6] = ACTIONS(1768), + [aux_sym_cmd_identifier_token7] = ACTIONS(1768), + [aux_sym_cmd_identifier_token8] = ACTIONS(1768), + [aux_sym_cmd_identifier_token9] = ACTIONS(1768), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1768), + [aux_sym_cmd_identifier_token13] = ACTIONS(1768), + [aux_sym_cmd_identifier_token14] = ACTIONS(1768), + [aux_sym_cmd_identifier_token15] = ACTIONS(1768), + [aux_sym_cmd_identifier_token16] = ACTIONS(1768), + [aux_sym_cmd_identifier_token17] = ACTIONS(1768), + [aux_sym_cmd_identifier_token18] = ACTIONS(1768), + [aux_sym_cmd_identifier_token19] = ACTIONS(1768), + [aux_sym_cmd_identifier_token20] = ACTIONS(1768), + [aux_sym_cmd_identifier_token21] = ACTIONS(1768), + [aux_sym_cmd_identifier_token22] = ACTIONS(1768), + [aux_sym_cmd_identifier_token23] = ACTIONS(1768), + [aux_sym_cmd_identifier_token24] = ACTIONS(1768), + [aux_sym_cmd_identifier_token25] = ACTIONS(1768), + [aux_sym_cmd_identifier_token26] = ACTIONS(1768), + [aux_sym_cmd_identifier_token27] = ACTIONS(1768), + [aux_sym_cmd_identifier_token28] = ACTIONS(1768), + [aux_sym_cmd_identifier_token29] = ACTIONS(1768), + [aux_sym_cmd_identifier_token30] = ACTIONS(1768), + [aux_sym_cmd_identifier_token31] = ACTIONS(1768), + [aux_sym_cmd_identifier_token32] = ACTIONS(1768), + [aux_sym_cmd_identifier_token33] = ACTIONS(1768), + [aux_sym_cmd_identifier_token34] = ACTIONS(1768), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1768), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1768), + [anon_sym_export_DASHenv] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_error] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_make] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_catch] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_source] = ACTIONS(1768), + [anon_sym_source_DASHenv] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_hide] = ACTIONS(1768), + [anon_sym_hide_DASHenv] = ACTIONS(1768), + [anon_sym_overlay] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(1772), + [aux_sym__immediate_decimal_token2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [sym__entry_separator] = ACTIONS(1770), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), }, - [518] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_alias] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_let_DASHenv] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [aux_sym_cmd_identifier_token1] = ACTIONS(2199), - [aux_sym_cmd_identifier_token2] = ACTIONS(2199), - [aux_sym_cmd_identifier_token3] = ACTIONS(2199), - [aux_sym_cmd_identifier_token4] = ACTIONS(2199), - [aux_sym_cmd_identifier_token5] = ACTIONS(2199), - [aux_sym_cmd_identifier_token6] = ACTIONS(2199), - [aux_sym_cmd_identifier_token7] = ACTIONS(2199), - [aux_sym_cmd_identifier_token8] = ACTIONS(2199), - [aux_sym_cmd_identifier_token9] = ACTIONS(2199), - [aux_sym_cmd_identifier_token10] = ACTIONS(2199), - [aux_sym_cmd_identifier_token11] = ACTIONS(2199), - [aux_sym_cmd_identifier_token12] = ACTIONS(2199), - [aux_sym_cmd_identifier_token13] = ACTIONS(2199), - [aux_sym_cmd_identifier_token14] = ACTIONS(2199), - [aux_sym_cmd_identifier_token15] = ACTIONS(2199), - [aux_sym_cmd_identifier_token16] = ACTIONS(2199), - [aux_sym_cmd_identifier_token17] = ACTIONS(2199), - [aux_sym_cmd_identifier_token18] = ACTIONS(2199), - [aux_sym_cmd_identifier_token19] = ACTIONS(2199), - [aux_sym_cmd_identifier_token20] = ACTIONS(2199), - [aux_sym_cmd_identifier_token21] = ACTIONS(2199), - [aux_sym_cmd_identifier_token22] = ACTIONS(2199), - [aux_sym_cmd_identifier_token23] = ACTIONS(2199), - [aux_sym_cmd_identifier_token24] = ACTIONS(2199), - [aux_sym_cmd_identifier_token25] = ACTIONS(2199), - [aux_sym_cmd_identifier_token26] = ACTIONS(2199), - [aux_sym_cmd_identifier_token27] = ACTIONS(2199), - [aux_sym_cmd_identifier_token28] = ACTIONS(2199), - [aux_sym_cmd_identifier_token29] = ACTIONS(2199), - [aux_sym_cmd_identifier_token30] = ACTIONS(2199), - [aux_sym_cmd_identifier_token31] = ACTIONS(2199), - [aux_sym_cmd_identifier_token32] = ACTIONS(2199), - [aux_sym_cmd_identifier_token33] = ACTIONS(2199), - [aux_sym_cmd_identifier_token34] = ACTIONS(2199), - [aux_sym_cmd_identifier_token35] = ACTIONS(2199), - [aux_sym_cmd_identifier_token36] = ACTIONS(2199), - [aux_sym_cmd_identifier_token37] = ACTIONS(2199), - [aux_sym_cmd_identifier_token38] = ACTIONS(2199), - [aux_sym_cmd_identifier_token39] = ACTIONS(2199), - [aux_sym_cmd_identifier_token40] = ACTIONS(2199), - [anon_sym_def] = ACTIONS(2199), - [anon_sym_export_DASHenv] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2199), - [anon_sym_DASH2] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_in2] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_make] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_catch] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_source] = ACTIONS(2199), - [anon_sym_source_DASHenv] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_hide] = ACTIONS(2199), - [anon_sym_hide_DASHenv] = ACTIONS(2199), - [anon_sym_overlay] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), - [aux_sym__val_number_decimal_token1] = ACTIONS(2199), - [aux_sym__val_number_decimal_token2] = ACTIONS(2199), - [aux_sym__val_number_decimal_token3] = ACTIONS(2199), - [aux_sym__val_number_decimal_token4] = ACTIONS(2199), - [aux_sym__val_number_token1] = ACTIONS(2199), - [aux_sym__val_number_token2] = ACTIONS(2199), - [aux_sym__val_number_token3] = ACTIONS(2199), - [aux_sym__val_number_token4] = ACTIONS(2199), - [aux_sym__val_number_token5] = ACTIONS(2199), - [aux_sym__val_number_token6] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), - [sym__entry_separator] = ACTIONS(2201), + [356] = { + [sym__expr_parenthesized_immediate] = STATE(648), + [sym__immediate_decimal] = STATE(560), + [sym_val_variable] = STATE(648), + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_alias] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_let_DASHenv] = ACTIONS(1712), + [anon_sym_mut] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [aux_sym_cmd_identifier_token1] = ACTIONS(1712), + [aux_sym_cmd_identifier_token2] = ACTIONS(1712), + [aux_sym_cmd_identifier_token3] = ACTIONS(1712), + [aux_sym_cmd_identifier_token4] = ACTIONS(1712), + [aux_sym_cmd_identifier_token5] = ACTIONS(1712), + [aux_sym_cmd_identifier_token6] = ACTIONS(1712), + [aux_sym_cmd_identifier_token7] = ACTIONS(1712), + [aux_sym_cmd_identifier_token8] = ACTIONS(1712), + [aux_sym_cmd_identifier_token9] = ACTIONS(1712), + [aux_sym_cmd_identifier_token10] = ACTIONS(1712), + [aux_sym_cmd_identifier_token11] = ACTIONS(1712), + [aux_sym_cmd_identifier_token12] = ACTIONS(1712), + [aux_sym_cmd_identifier_token13] = ACTIONS(1712), + [aux_sym_cmd_identifier_token14] = ACTIONS(1712), + [aux_sym_cmd_identifier_token15] = ACTIONS(1712), + [aux_sym_cmd_identifier_token16] = ACTIONS(1712), + [aux_sym_cmd_identifier_token17] = ACTIONS(1712), + [aux_sym_cmd_identifier_token18] = ACTIONS(1712), + [aux_sym_cmd_identifier_token19] = ACTIONS(1712), + [aux_sym_cmd_identifier_token20] = ACTIONS(1712), + [aux_sym_cmd_identifier_token21] = ACTIONS(1712), + [aux_sym_cmd_identifier_token22] = ACTIONS(1712), + [aux_sym_cmd_identifier_token23] = ACTIONS(1712), + [aux_sym_cmd_identifier_token24] = ACTIONS(1712), + [aux_sym_cmd_identifier_token25] = ACTIONS(1712), + [aux_sym_cmd_identifier_token26] = ACTIONS(1712), + [aux_sym_cmd_identifier_token27] = ACTIONS(1712), + [aux_sym_cmd_identifier_token28] = ACTIONS(1712), + [aux_sym_cmd_identifier_token29] = ACTIONS(1712), + [aux_sym_cmd_identifier_token30] = ACTIONS(1712), + [aux_sym_cmd_identifier_token31] = ACTIONS(1712), + [aux_sym_cmd_identifier_token32] = ACTIONS(1712), + [aux_sym_cmd_identifier_token33] = ACTIONS(1712), + [aux_sym_cmd_identifier_token34] = ACTIONS(1712), + [aux_sym_cmd_identifier_token35] = ACTIONS(1712), + [aux_sym_cmd_identifier_token36] = ACTIONS(1712), + [aux_sym_cmd_identifier_token37] = ACTIONS(1712), + [aux_sym_cmd_identifier_token38] = ACTIONS(1712), + [aux_sym_cmd_identifier_token39] = ACTIONS(1712), + [aux_sym_cmd_identifier_token40] = ACTIONS(1712), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_export_DASHenv] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1712), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_in2] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_make] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_catch] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_source] = ACTIONS(1712), + [anon_sym_source_DASHenv] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_hide] = ACTIONS(1712), + [anon_sym_hide_DASHenv] = ACTIONS(1712), + [anon_sym_overlay] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1712), + [aux_sym__immediate_decimal_token1] = ACTIONS(1736), + [aux_sym__immediate_decimal_token3] = ACTIONS(1736), + [aux_sym__immediate_decimal_token4] = ACTIONS(1738), + [aux_sym__immediate_decimal_token5] = ACTIONS(1740), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1712), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1712), + [aux_sym__val_number_token2] = ACTIONS(1712), + [aux_sym__val_number_token3] = ACTIONS(1712), + [aux_sym__val_number_token4] = ACTIONS(1712), + [aux_sym__val_number_token5] = ACTIONS(1712), + [aux_sym__val_number_token6] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym__str_single_quotes] = ACTIONS(1712), + [sym__str_back_ticks] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1712), + [sym__entry_separator] = ACTIONS(1726), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2201), + [sym_raw_string_begin] = ACTIONS(1726), }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_alias] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_let_DASHenv] = ACTIONS(2157), - [anon_sym_mut] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [aux_sym_cmd_identifier_token1] = ACTIONS(2157), - [aux_sym_cmd_identifier_token2] = ACTIONS(2163), - [aux_sym_cmd_identifier_token3] = ACTIONS(2163), - [aux_sym_cmd_identifier_token4] = ACTIONS(2163), - [aux_sym_cmd_identifier_token5] = ACTIONS(2163), - [aux_sym_cmd_identifier_token6] = ACTIONS(2163), - [aux_sym_cmd_identifier_token7] = ACTIONS(2163), - [aux_sym_cmd_identifier_token8] = ACTIONS(2157), - [aux_sym_cmd_identifier_token9] = ACTIONS(2157), - [aux_sym_cmd_identifier_token10] = ACTIONS(2163), - [aux_sym_cmd_identifier_token11] = ACTIONS(2163), - [aux_sym_cmd_identifier_token12] = ACTIONS(2157), - [aux_sym_cmd_identifier_token13] = ACTIONS(2157), - [aux_sym_cmd_identifier_token14] = ACTIONS(2157), - [aux_sym_cmd_identifier_token15] = ACTIONS(2157), - [aux_sym_cmd_identifier_token16] = ACTIONS(2163), - [aux_sym_cmd_identifier_token17] = ACTIONS(2163), - [aux_sym_cmd_identifier_token18] = ACTIONS(2163), - [aux_sym_cmd_identifier_token19] = ACTIONS(2163), - [aux_sym_cmd_identifier_token20] = ACTIONS(2163), - [aux_sym_cmd_identifier_token21] = ACTIONS(2163), - [aux_sym_cmd_identifier_token22] = ACTIONS(2163), - [aux_sym_cmd_identifier_token23] = ACTIONS(2163), - [aux_sym_cmd_identifier_token24] = ACTIONS(2163), - [aux_sym_cmd_identifier_token25] = ACTIONS(2163), - [aux_sym_cmd_identifier_token26] = ACTIONS(2163), - [aux_sym_cmd_identifier_token27] = ACTIONS(2163), - [aux_sym_cmd_identifier_token28] = ACTIONS(2163), - [aux_sym_cmd_identifier_token29] = ACTIONS(2163), - [aux_sym_cmd_identifier_token30] = ACTIONS(2163), - [aux_sym_cmd_identifier_token31] = ACTIONS(2163), - [aux_sym_cmd_identifier_token32] = ACTIONS(2163), - [aux_sym_cmd_identifier_token33] = ACTIONS(2163), - [aux_sym_cmd_identifier_token34] = ACTIONS(2157), - [aux_sym_cmd_identifier_token35] = ACTIONS(2163), - [aux_sym_cmd_identifier_token36] = ACTIONS(2163), - [aux_sym_cmd_identifier_token37] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2157), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [anon_sym_def] = ACTIONS(2157), - [anon_sym_export_DASHenv] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_module] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_error] = ACTIONS(2157), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_in2] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_make] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_source] = ACTIONS(2157), - [anon_sym_source_DASHenv] = ACTIONS(2157), - [anon_sym_register] = ACTIONS(2157), - [anon_sym_hide] = ACTIONS(2157), - [anon_sym_hide_DASHenv] = ACTIONS(2157), - [anon_sym_overlay] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_PLUS2] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), - [anon_sym_DOT_DOT2] = ACTIONS(2203), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2205), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_decimal_token4] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [aux_sym__val_number_token4] = ACTIONS(2157), - [aux_sym__val_number_token5] = ACTIONS(2157), - [aux_sym__val_number_token6] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2163), + [357] = { + [sym__expr_parenthesized_immediate] = STATE(502), + [sym__immediate_decimal] = STATE(478), + [sym_val_variable] = STATE(502), + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_alias] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_let_DASHenv] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [aux_sym_cmd_identifier_token1] = ACTIONS(1776), + [aux_sym_cmd_identifier_token2] = ACTIONS(1776), + [aux_sym_cmd_identifier_token3] = ACTIONS(1776), + [aux_sym_cmd_identifier_token4] = ACTIONS(1776), + [aux_sym_cmd_identifier_token5] = ACTIONS(1776), + [aux_sym_cmd_identifier_token6] = ACTIONS(1776), + [aux_sym_cmd_identifier_token7] = ACTIONS(1776), + [aux_sym_cmd_identifier_token8] = ACTIONS(1776), + [aux_sym_cmd_identifier_token9] = ACTIONS(1776), + [aux_sym_cmd_identifier_token10] = ACTIONS(1776), + [aux_sym_cmd_identifier_token11] = ACTIONS(1776), + [aux_sym_cmd_identifier_token12] = ACTIONS(1776), + [aux_sym_cmd_identifier_token13] = ACTIONS(1776), + [aux_sym_cmd_identifier_token14] = ACTIONS(1776), + [aux_sym_cmd_identifier_token15] = ACTIONS(1776), + [aux_sym_cmd_identifier_token16] = ACTIONS(1776), + [aux_sym_cmd_identifier_token17] = ACTIONS(1776), + [aux_sym_cmd_identifier_token18] = ACTIONS(1776), + [aux_sym_cmd_identifier_token19] = ACTIONS(1776), + [aux_sym_cmd_identifier_token20] = ACTIONS(1776), + [aux_sym_cmd_identifier_token21] = ACTIONS(1776), + [aux_sym_cmd_identifier_token22] = ACTIONS(1776), + [aux_sym_cmd_identifier_token23] = ACTIONS(1776), + [aux_sym_cmd_identifier_token24] = ACTIONS(1776), + [aux_sym_cmd_identifier_token25] = ACTIONS(1776), + [aux_sym_cmd_identifier_token26] = ACTIONS(1776), + [aux_sym_cmd_identifier_token27] = ACTIONS(1776), + [aux_sym_cmd_identifier_token28] = ACTIONS(1776), + [aux_sym_cmd_identifier_token29] = ACTIONS(1776), + [aux_sym_cmd_identifier_token30] = ACTIONS(1776), + [aux_sym_cmd_identifier_token31] = ACTIONS(1776), + [aux_sym_cmd_identifier_token32] = ACTIONS(1776), + [aux_sym_cmd_identifier_token33] = ACTIONS(1776), + [aux_sym_cmd_identifier_token34] = ACTIONS(1776), + [aux_sym_cmd_identifier_token35] = ACTIONS(1776), + [aux_sym_cmd_identifier_token36] = ACTIONS(1776), + [aux_sym_cmd_identifier_token37] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [anon_sym_def] = ACTIONS(1776), + [anon_sym_export_DASHenv] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_module] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_error] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_in2] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_make] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_catch] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_source] = ACTIONS(1776), + [anon_sym_source_DASHenv] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_hide] = ACTIONS(1776), + [anon_sym_hide_DASHenv] = ACTIONS(1776), + [anon_sym_overlay] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1778), + [aux_sym__immediate_decimal_token1] = ACTIONS(1780), + [aux_sym__immediate_decimal_token3] = ACTIONS(1780), + [aux_sym__immediate_decimal_token4] = ACTIONS(1782), + [aux_sym__immediate_decimal_token5] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [aux_sym__val_number_token4] = ACTIONS(1776), + [aux_sym__val_number_token5] = ACTIONS(1776), + [aux_sym__val_number_token6] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1776), + [sym__entry_separator] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1786), }, - [520] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [aux_sym_cmd_identifier_token1] = ACTIONS(2207), - [aux_sym_cmd_identifier_token2] = ACTIONS(2207), - [aux_sym_cmd_identifier_token3] = ACTIONS(2207), - [aux_sym_cmd_identifier_token4] = ACTIONS(2207), - [aux_sym_cmd_identifier_token5] = ACTIONS(2207), - [aux_sym_cmd_identifier_token6] = ACTIONS(2207), - [aux_sym_cmd_identifier_token7] = ACTIONS(2207), - [aux_sym_cmd_identifier_token8] = ACTIONS(2207), - [aux_sym_cmd_identifier_token9] = ACTIONS(2207), - [aux_sym_cmd_identifier_token10] = ACTIONS(2207), - [aux_sym_cmd_identifier_token11] = ACTIONS(2207), - [aux_sym_cmd_identifier_token12] = ACTIONS(2207), - [aux_sym_cmd_identifier_token13] = ACTIONS(2207), - [aux_sym_cmd_identifier_token14] = ACTIONS(2207), - [aux_sym_cmd_identifier_token15] = ACTIONS(2207), - [aux_sym_cmd_identifier_token16] = ACTIONS(2207), - [aux_sym_cmd_identifier_token17] = ACTIONS(2207), - [aux_sym_cmd_identifier_token18] = ACTIONS(2207), - [aux_sym_cmd_identifier_token19] = ACTIONS(2207), - [aux_sym_cmd_identifier_token20] = ACTIONS(2207), - [aux_sym_cmd_identifier_token21] = ACTIONS(2207), - [aux_sym_cmd_identifier_token22] = ACTIONS(2207), - [aux_sym_cmd_identifier_token23] = ACTIONS(2207), - [aux_sym_cmd_identifier_token24] = ACTIONS(2207), - [aux_sym_cmd_identifier_token25] = ACTIONS(2207), - [aux_sym_cmd_identifier_token26] = ACTIONS(2207), - [aux_sym_cmd_identifier_token27] = ACTIONS(2207), - [aux_sym_cmd_identifier_token28] = ACTIONS(2207), - [aux_sym_cmd_identifier_token29] = ACTIONS(2207), - [aux_sym_cmd_identifier_token30] = ACTIONS(2207), - [aux_sym_cmd_identifier_token31] = ACTIONS(2207), - [aux_sym_cmd_identifier_token32] = ACTIONS(2207), - [aux_sym_cmd_identifier_token33] = ACTIONS(2207), - [aux_sym_cmd_identifier_token34] = ACTIONS(2207), - [aux_sym_cmd_identifier_token35] = ACTIONS(2207), - [aux_sym_cmd_identifier_token36] = ACTIONS(2207), - [aux_sym_cmd_identifier_token37] = ACTIONS(2207), - [aux_sym_cmd_identifier_token38] = ACTIONS(2207), - [aux_sym_cmd_identifier_token39] = ACTIONS(2207), - [aux_sym_cmd_identifier_token40] = ACTIONS(2207), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_DASH2] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_in2] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_make] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_catch] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2207), - [aux_sym__val_number_decimal_token1] = ACTIONS(2207), - [aux_sym__val_number_decimal_token2] = ACTIONS(2207), - [aux_sym__val_number_decimal_token3] = ACTIONS(2207), - [aux_sym__val_number_decimal_token4] = ACTIONS(2207), - [aux_sym__val_number_token1] = ACTIONS(2207), - [aux_sym__val_number_token2] = ACTIONS(2207), - [aux_sym__val_number_token3] = ACTIONS(2207), - [aux_sym__val_number_token4] = ACTIONS(2207), - [aux_sym__val_number_token5] = ACTIONS(2207), - [aux_sym__val_number_token6] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym__str_single_quotes] = ACTIONS(2207), - [sym__str_back_ticks] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2207), - [sym__entry_separator] = ACTIONS(2209), + [358] = { + [sym__expr_parenthesized_immediate] = STATE(7686), + [sym_comment] = STATE(358), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(1796), + [sym_duration_unit] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1800), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1802), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2209), + [sym_raw_string_begin] = ACTIONS(1800), }, - [521] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [aux_sym_cmd_identifier_token1] = ACTIONS(2211), - [aux_sym_cmd_identifier_token2] = ACTIONS(2211), - [aux_sym_cmd_identifier_token3] = ACTIONS(2211), - [aux_sym_cmd_identifier_token4] = ACTIONS(2211), - [aux_sym_cmd_identifier_token5] = ACTIONS(2211), - [aux_sym_cmd_identifier_token6] = ACTIONS(2211), - [aux_sym_cmd_identifier_token7] = ACTIONS(2211), - [aux_sym_cmd_identifier_token8] = ACTIONS(2211), - [aux_sym_cmd_identifier_token9] = ACTIONS(2211), - [aux_sym_cmd_identifier_token10] = ACTIONS(2211), - [aux_sym_cmd_identifier_token11] = ACTIONS(2211), - [aux_sym_cmd_identifier_token12] = ACTIONS(2211), - [aux_sym_cmd_identifier_token13] = ACTIONS(2211), - [aux_sym_cmd_identifier_token14] = ACTIONS(2211), - [aux_sym_cmd_identifier_token15] = ACTIONS(2211), - [aux_sym_cmd_identifier_token16] = ACTIONS(2211), - [aux_sym_cmd_identifier_token17] = ACTIONS(2211), - [aux_sym_cmd_identifier_token18] = ACTIONS(2211), - [aux_sym_cmd_identifier_token19] = ACTIONS(2211), - [aux_sym_cmd_identifier_token20] = ACTIONS(2211), - [aux_sym_cmd_identifier_token21] = ACTIONS(2211), - [aux_sym_cmd_identifier_token22] = ACTIONS(2211), - [aux_sym_cmd_identifier_token23] = ACTIONS(2211), - [aux_sym_cmd_identifier_token24] = ACTIONS(2211), - [aux_sym_cmd_identifier_token25] = ACTIONS(2211), - [aux_sym_cmd_identifier_token26] = ACTIONS(2211), - [aux_sym_cmd_identifier_token27] = ACTIONS(2211), - [aux_sym_cmd_identifier_token28] = ACTIONS(2211), - [aux_sym_cmd_identifier_token29] = ACTIONS(2211), - [aux_sym_cmd_identifier_token30] = ACTIONS(2211), - [aux_sym_cmd_identifier_token31] = ACTIONS(2211), - [aux_sym_cmd_identifier_token32] = ACTIONS(2211), - [aux_sym_cmd_identifier_token33] = ACTIONS(2211), - [aux_sym_cmd_identifier_token34] = ACTIONS(2211), - [aux_sym_cmd_identifier_token35] = ACTIONS(2211), - [aux_sym_cmd_identifier_token36] = ACTIONS(2211), - [aux_sym_cmd_identifier_token37] = ACTIONS(2211), - [aux_sym_cmd_identifier_token38] = ACTIONS(2211), - [aux_sym_cmd_identifier_token39] = ACTIONS(2211), - [aux_sym_cmd_identifier_token40] = ACTIONS(2211), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_DASH2] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_in2] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_make] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_else] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), - [aux_sym__val_number_decimal_token1] = ACTIONS(2211), - [aux_sym__val_number_decimal_token2] = ACTIONS(2211), - [aux_sym__val_number_decimal_token3] = ACTIONS(2211), - [aux_sym__val_number_decimal_token4] = ACTIONS(2211), - [aux_sym__val_number_token1] = ACTIONS(2211), - [aux_sym__val_number_token2] = ACTIONS(2211), - [aux_sym__val_number_token3] = ACTIONS(2211), - [aux_sym__val_number_token4] = ACTIONS(2211), - [aux_sym__val_number_token5] = ACTIONS(2211), - [aux_sym__val_number_token6] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym__str_single_quotes] = ACTIONS(2211), - [sym__str_back_ticks] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2211), - [sym__entry_separator] = ACTIONS(2213), + [359] = { + [sym__expr_parenthesized_immediate] = STATE(727), + [sym__immediate_decimal] = STATE(597), + [sym_val_variable] = STATE(727), + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_alias] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_let_DASHenv] = ACTIONS(1712), + [anon_sym_mut] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [aux_sym_cmd_identifier_token1] = ACTIONS(1712), + [aux_sym_cmd_identifier_token2] = ACTIONS(1726), + [aux_sym_cmd_identifier_token3] = ACTIONS(1726), + [aux_sym_cmd_identifier_token4] = ACTIONS(1726), + [aux_sym_cmd_identifier_token5] = ACTIONS(1726), + [aux_sym_cmd_identifier_token6] = ACTIONS(1726), + [aux_sym_cmd_identifier_token7] = ACTIONS(1726), + [aux_sym_cmd_identifier_token8] = ACTIONS(1712), + [aux_sym_cmd_identifier_token9] = ACTIONS(1712), + [aux_sym_cmd_identifier_token10] = ACTIONS(1726), + [aux_sym_cmd_identifier_token11] = ACTIONS(1726), + [aux_sym_cmd_identifier_token12] = ACTIONS(1712), + [aux_sym_cmd_identifier_token13] = ACTIONS(1712), + [aux_sym_cmd_identifier_token14] = ACTIONS(1712), + [aux_sym_cmd_identifier_token15] = ACTIONS(1712), + [aux_sym_cmd_identifier_token16] = ACTIONS(1726), + [aux_sym_cmd_identifier_token17] = ACTIONS(1726), + [aux_sym_cmd_identifier_token18] = ACTIONS(1726), + [aux_sym_cmd_identifier_token19] = ACTIONS(1726), + [aux_sym_cmd_identifier_token20] = ACTIONS(1726), + [aux_sym_cmd_identifier_token21] = ACTIONS(1726), + [aux_sym_cmd_identifier_token22] = ACTIONS(1726), + [aux_sym_cmd_identifier_token23] = ACTIONS(1726), + [aux_sym_cmd_identifier_token24] = ACTIONS(1726), + [aux_sym_cmd_identifier_token25] = ACTIONS(1726), + [aux_sym_cmd_identifier_token26] = ACTIONS(1726), + [aux_sym_cmd_identifier_token27] = ACTIONS(1726), + [aux_sym_cmd_identifier_token28] = ACTIONS(1726), + [aux_sym_cmd_identifier_token29] = ACTIONS(1726), + [aux_sym_cmd_identifier_token30] = ACTIONS(1726), + [aux_sym_cmd_identifier_token31] = ACTIONS(1726), + [aux_sym_cmd_identifier_token32] = ACTIONS(1726), + [aux_sym_cmd_identifier_token33] = ACTIONS(1726), + [aux_sym_cmd_identifier_token34] = ACTIONS(1712), + [aux_sym_cmd_identifier_token35] = ACTIONS(1726), + [aux_sym_cmd_identifier_token36] = ACTIONS(1726), + [aux_sym_cmd_identifier_token37] = ACTIONS(1726), + [aux_sym_cmd_identifier_token38] = ACTIONS(1712), + [aux_sym_cmd_identifier_token39] = ACTIONS(1726), + [aux_sym_cmd_identifier_token40] = ACTIONS(1726), + [anon_sym_def] = ACTIONS(1712), + [anon_sym_export_DASHenv] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1712), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_in2] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_make] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_catch] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_source] = ACTIONS(1712), + [anon_sym_source_DASHenv] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_hide] = ACTIONS(1712), + [anon_sym_hide_DASHenv] = ACTIONS(1712), + [anon_sym_overlay] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1712), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(1808), + [aux_sym__immediate_decimal_token3] = ACTIONS(1810), + [aux_sym__immediate_decimal_token4] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(1814), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1712), + [aux_sym__val_number_token5] = ACTIONS(1712), + [aux_sym__val_number_token6] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1726), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_alias] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_let_DASHenv] = ACTIONS(1768), + [anon_sym_mut] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [aux_sym_cmd_identifier_token1] = ACTIONS(1768), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1768), + [aux_sym_cmd_identifier_token9] = ACTIONS(1768), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1768), + [aux_sym_cmd_identifier_token13] = ACTIONS(1768), + [aux_sym_cmd_identifier_token14] = ACTIONS(1768), + [aux_sym_cmd_identifier_token15] = ACTIONS(1768), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1768), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [aux_sym_cmd_identifier_token37] = ACTIONS(1770), + [aux_sym_cmd_identifier_token38] = ACTIONS(1768), + [aux_sym_cmd_identifier_token39] = ACTIONS(1770), + [aux_sym_cmd_identifier_token40] = ACTIONS(1770), + [anon_sym_def] = ACTIONS(1768), + [anon_sym_export_DASHenv] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_error] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_make] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_catch] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_source] = ACTIONS(1768), + [anon_sym_source_DASHenv] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_hide] = ACTIONS(1768), + [anon_sym_hide_DASHenv] = ACTIONS(1768), + [anon_sym_overlay] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(1816), + [aux_sym__immediate_decimal_token2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2213), + [sym_raw_string_begin] = ACTIONS(1762), }, - [522] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [aux_sym_cmd_identifier_token1] = ACTIONS(2215), - [aux_sym_cmd_identifier_token2] = ACTIONS(2215), - [aux_sym_cmd_identifier_token3] = ACTIONS(2215), - [aux_sym_cmd_identifier_token4] = ACTIONS(2215), - [aux_sym_cmd_identifier_token5] = ACTIONS(2215), - [aux_sym_cmd_identifier_token6] = ACTIONS(2215), - [aux_sym_cmd_identifier_token7] = ACTIONS(2215), - [aux_sym_cmd_identifier_token8] = ACTIONS(2215), - [aux_sym_cmd_identifier_token9] = ACTIONS(2215), - [aux_sym_cmd_identifier_token10] = ACTIONS(2215), - [aux_sym_cmd_identifier_token11] = ACTIONS(2215), - [aux_sym_cmd_identifier_token12] = ACTIONS(2215), - [aux_sym_cmd_identifier_token13] = ACTIONS(2215), - [aux_sym_cmd_identifier_token14] = ACTIONS(2215), - [aux_sym_cmd_identifier_token15] = ACTIONS(2215), - [aux_sym_cmd_identifier_token16] = ACTIONS(2215), - [aux_sym_cmd_identifier_token17] = ACTIONS(2215), - [aux_sym_cmd_identifier_token18] = ACTIONS(2215), - [aux_sym_cmd_identifier_token19] = ACTIONS(2215), - [aux_sym_cmd_identifier_token20] = ACTIONS(2215), - [aux_sym_cmd_identifier_token21] = ACTIONS(2215), - [aux_sym_cmd_identifier_token22] = ACTIONS(2215), - [aux_sym_cmd_identifier_token23] = ACTIONS(2215), - [aux_sym_cmd_identifier_token24] = ACTIONS(2215), - [aux_sym_cmd_identifier_token25] = ACTIONS(2215), - [aux_sym_cmd_identifier_token26] = ACTIONS(2215), - [aux_sym_cmd_identifier_token27] = ACTIONS(2215), - [aux_sym_cmd_identifier_token28] = ACTIONS(2215), - [aux_sym_cmd_identifier_token29] = ACTIONS(2215), - [aux_sym_cmd_identifier_token30] = ACTIONS(2215), - [aux_sym_cmd_identifier_token31] = ACTIONS(2215), - [aux_sym_cmd_identifier_token32] = ACTIONS(2215), - [aux_sym_cmd_identifier_token33] = ACTIONS(2215), - [aux_sym_cmd_identifier_token34] = ACTIONS(2215), - [aux_sym_cmd_identifier_token35] = ACTIONS(2215), - [aux_sym_cmd_identifier_token36] = ACTIONS(2215), - [aux_sym_cmd_identifier_token37] = ACTIONS(2215), - [aux_sym_cmd_identifier_token38] = ACTIONS(2215), - [aux_sym_cmd_identifier_token39] = ACTIONS(2215), - [aux_sym_cmd_identifier_token40] = ACTIONS(2215), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_DASH2] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_in2] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_make] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_catch] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), - [aux_sym__val_number_decimal_token1] = ACTIONS(2215), - [aux_sym__val_number_decimal_token2] = ACTIONS(2215), - [aux_sym__val_number_decimal_token3] = ACTIONS(2215), - [aux_sym__val_number_decimal_token4] = ACTIONS(2215), - [aux_sym__val_number_token1] = ACTIONS(2215), - [aux_sym__val_number_token2] = ACTIONS(2215), - [aux_sym__val_number_token3] = ACTIONS(2215), - [aux_sym__val_number_token4] = ACTIONS(2215), - [aux_sym__val_number_token5] = ACTIONS(2215), - [aux_sym__val_number_token6] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym__str_single_quotes] = ACTIONS(2215), - [sym__str_back_ticks] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), - [sym__entry_separator] = ACTIONS(2217), + [362] = { + [sym_comment] = STATE(362), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [sym__entry_separator] = ACTIONS(1822), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2217), + [sym_raw_string_begin] = ACTIONS(1822), }, - [523] = { - [sym_comment] = STATE(523), + [363] = { + [sym__expr_parenthesized_immediate] = STATE(566), + [sym__immediate_decimal] = STATE(568), + [sym_val_variable] = STATE(566), + [sym_comment] = STATE(363), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_alias] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_let_DASHenv] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [aux_sym_cmd_identifier_token1] = ACTIONS(1776), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1776), + [aux_sym_cmd_identifier_token9] = ACTIONS(1776), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1776), + [aux_sym_cmd_identifier_token13] = ACTIONS(1776), + [aux_sym_cmd_identifier_token14] = ACTIONS(1776), + [aux_sym_cmd_identifier_token15] = ACTIONS(1776), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1776), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1776), + [anon_sym_export_DASHenv] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_module] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1746), + [anon_sym_error] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_in2] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_make] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_catch] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_source] = ACTIONS(1776), + [anon_sym_source_DASHenv] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_hide] = ACTIONS(1776), + [anon_sym_hide_DASHenv] = ACTIONS(1776), + [anon_sym_overlay] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1748), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1826), + [aux_sym__immediate_decimal_token1] = ACTIONS(1828), + [aux_sym__immediate_decimal_token3] = ACTIONS(1830), + [aux_sym__immediate_decimal_token4] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(1834), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1776), + [aux_sym__val_number_token5] = ACTIONS(1776), + [aux_sym__val_number_token6] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), + }, + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [365] = { + [sym__expr_parenthesized_immediate] = STATE(645), + [sym__immediate_decimal] = STATE(646), + [sym_val_variable] = STATE(645), + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_alias] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_let_DASHenv] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [aux_sym_cmd_identifier_token1] = ACTIONS(1776), + [aux_sym_cmd_identifier_token2] = ACTIONS(1776), + [aux_sym_cmd_identifier_token3] = ACTIONS(1776), + [aux_sym_cmd_identifier_token4] = ACTIONS(1776), + [aux_sym_cmd_identifier_token5] = ACTIONS(1776), + [aux_sym_cmd_identifier_token6] = ACTIONS(1776), + [aux_sym_cmd_identifier_token7] = ACTIONS(1776), + [aux_sym_cmd_identifier_token8] = ACTIONS(1776), + [aux_sym_cmd_identifier_token9] = ACTIONS(1776), + [aux_sym_cmd_identifier_token10] = ACTIONS(1776), + [aux_sym_cmd_identifier_token11] = ACTIONS(1776), + [aux_sym_cmd_identifier_token12] = ACTIONS(1776), + [aux_sym_cmd_identifier_token13] = ACTIONS(1776), + [aux_sym_cmd_identifier_token14] = ACTIONS(1776), + [aux_sym_cmd_identifier_token15] = ACTIONS(1776), + [aux_sym_cmd_identifier_token16] = ACTIONS(1776), + [aux_sym_cmd_identifier_token17] = ACTIONS(1776), + [aux_sym_cmd_identifier_token18] = ACTIONS(1776), + [aux_sym_cmd_identifier_token19] = ACTIONS(1776), + [aux_sym_cmd_identifier_token20] = ACTIONS(1776), + [aux_sym_cmd_identifier_token21] = ACTIONS(1776), + [aux_sym_cmd_identifier_token22] = ACTIONS(1776), + [aux_sym_cmd_identifier_token23] = ACTIONS(1776), + [aux_sym_cmd_identifier_token24] = ACTIONS(1776), + [aux_sym_cmd_identifier_token25] = ACTIONS(1776), + [aux_sym_cmd_identifier_token26] = ACTIONS(1776), + [aux_sym_cmd_identifier_token27] = ACTIONS(1776), + [aux_sym_cmd_identifier_token28] = ACTIONS(1776), + [aux_sym_cmd_identifier_token29] = ACTIONS(1776), + [aux_sym_cmd_identifier_token30] = ACTIONS(1776), + [aux_sym_cmd_identifier_token31] = ACTIONS(1776), + [aux_sym_cmd_identifier_token32] = ACTIONS(1776), + [aux_sym_cmd_identifier_token33] = ACTIONS(1776), + [aux_sym_cmd_identifier_token34] = ACTIONS(1776), + [aux_sym_cmd_identifier_token35] = ACTIONS(1776), + [aux_sym_cmd_identifier_token36] = ACTIONS(1776), + [aux_sym_cmd_identifier_token37] = ACTIONS(1776), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1776), + [aux_sym_cmd_identifier_token40] = ACTIONS(1776), + [anon_sym_def] = ACTIONS(1776), + [anon_sym_export_DASHenv] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_module] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_in2] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_make] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_catch] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_source] = ACTIONS(1776), + [anon_sym_source_DASHenv] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_hide] = ACTIONS(1776), + [anon_sym_hide_DASHenv] = ACTIONS(1776), + [anon_sym_overlay] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1776), + [aux_sym__immediate_decimal_token1] = ACTIONS(1840), + [aux_sym__immediate_decimal_token3] = ACTIONS(1840), + [aux_sym__immediate_decimal_token4] = ACTIONS(1842), + [aux_sym__immediate_decimal_token5] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1776), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1776), + [aux_sym__val_number_token2] = ACTIONS(1776), + [aux_sym__val_number_token3] = ACTIONS(1776), + [aux_sym__val_number_token4] = ACTIONS(1776), + [aux_sym__val_number_token5] = ACTIONS(1776), + [aux_sym__val_number_token6] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [sym__str_single_quotes] = ACTIONS(1776), + [sym__str_back_ticks] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1776), + [sym__entry_separator] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1786), + }, + [366] = { + [sym__expr_parenthesized_immediate] = STATE(664), + [sym__immediate_decimal] = STATE(668), + [sym_val_variable] = STATE(664), + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1846), + [anon_sym_alias] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_let_DASHenv] = ACTIONS(1846), + [anon_sym_mut] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [aux_sym_cmd_identifier_token1] = ACTIONS(1846), + [aux_sym_cmd_identifier_token2] = ACTIONS(1846), + [aux_sym_cmd_identifier_token3] = ACTIONS(1846), + [aux_sym_cmd_identifier_token4] = ACTIONS(1846), + [aux_sym_cmd_identifier_token5] = ACTIONS(1846), + [aux_sym_cmd_identifier_token6] = ACTIONS(1846), + [aux_sym_cmd_identifier_token7] = ACTIONS(1846), + [aux_sym_cmd_identifier_token8] = ACTIONS(1846), + [aux_sym_cmd_identifier_token9] = ACTIONS(1846), + [aux_sym_cmd_identifier_token10] = ACTIONS(1846), + [aux_sym_cmd_identifier_token11] = ACTIONS(1846), + [aux_sym_cmd_identifier_token12] = ACTIONS(1846), + [aux_sym_cmd_identifier_token13] = ACTIONS(1846), + [aux_sym_cmd_identifier_token14] = ACTIONS(1846), + [aux_sym_cmd_identifier_token15] = ACTIONS(1846), + [aux_sym_cmd_identifier_token16] = ACTIONS(1846), + [aux_sym_cmd_identifier_token17] = ACTIONS(1846), + [aux_sym_cmd_identifier_token18] = ACTIONS(1846), + [aux_sym_cmd_identifier_token19] = ACTIONS(1846), + [aux_sym_cmd_identifier_token20] = ACTIONS(1846), + [aux_sym_cmd_identifier_token21] = ACTIONS(1846), + [aux_sym_cmd_identifier_token22] = ACTIONS(1846), + [aux_sym_cmd_identifier_token23] = ACTIONS(1846), + [aux_sym_cmd_identifier_token24] = ACTIONS(1846), + [aux_sym_cmd_identifier_token25] = ACTIONS(1846), + [aux_sym_cmd_identifier_token26] = ACTIONS(1846), + [aux_sym_cmd_identifier_token27] = ACTIONS(1846), + [aux_sym_cmd_identifier_token28] = ACTIONS(1846), + [aux_sym_cmd_identifier_token29] = ACTIONS(1846), + [aux_sym_cmd_identifier_token30] = ACTIONS(1846), + [aux_sym_cmd_identifier_token31] = ACTIONS(1846), + [aux_sym_cmd_identifier_token32] = ACTIONS(1846), + [aux_sym_cmd_identifier_token33] = ACTIONS(1846), + [aux_sym_cmd_identifier_token34] = ACTIONS(1846), + [aux_sym_cmd_identifier_token35] = ACTIONS(1846), + [aux_sym_cmd_identifier_token36] = ACTIONS(1846), + [aux_sym_cmd_identifier_token37] = ACTIONS(1846), + [aux_sym_cmd_identifier_token38] = ACTIONS(1846), + [aux_sym_cmd_identifier_token39] = ACTIONS(1846), + [aux_sym_cmd_identifier_token40] = ACTIONS(1846), + [anon_sym_def] = ACTIONS(1846), + [anon_sym_export_DASHenv] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_module] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_in2] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_make] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_else] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [anon_sym_catch] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_source] = ACTIONS(1846), + [anon_sym_source_DASHenv] = ACTIONS(1846), + [anon_sym_register] = ACTIONS(1846), + [anon_sym_hide] = ACTIONS(1846), + [anon_sym_hide_DASHenv] = ACTIONS(1846), + [anon_sym_overlay] = ACTIONS(1846), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1846), + [aux_sym__immediate_decimal_token1] = ACTIONS(1840), + [aux_sym__immediate_decimal_token3] = ACTIONS(1840), + [aux_sym__immediate_decimal_token4] = ACTIONS(1842), + [aux_sym__immediate_decimal_token5] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1846), + [aux_sym__val_number_decimal_token1] = ACTIONS(1846), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1846), + [aux_sym__val_number_token2] = ACTIONS(1846), + [aux_sym__val_number_token3] = ACTIONS(1846), + [aux_sym__val_number_token4] = ACTIONS(1846), + [aux_sym__val_number_token5] = ACTIONS(1846), + [aux_sym__val_number_token6] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1846), + [sym__str_back_ticks] = ACTIONS(1846), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1846), + [sym__entry_separator] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [367] = { + [sym__expr_parenthesized_immediate] = STATE(713), + [sym__immediate_decimal] = STATE(674), + [sym_val_variable] = STATE(713), + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1850), + [anon_sym_alias] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_let_DASHenv] = ACTIONS(1850), + [anon_sym_mut] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [aux_sym_cmd_identifier_token1] = ACTIONS(1850), + [aux_sym_cmd_identifier_token2] = ACTIONS(1850), + [aux_sym_cmd_identifier_token3] = ACTIONS(1850), + [aux_sym_cmd_identifier_token4] = ACTIONS(1850), + [aux_sym_cmd_identifier_token5] = ACTIONS(1850), + [aux_sym_cmd_identifier_token6] = ACTIONS(1850), + [aux_sym_cmd_identifier_token7] = ACTIONS(1850), + [aux_sym_cmd_identifier_token8] = ACTIONS(1850), + [aux_sym_cmd_identifier_token9] = ACTIONS(1850), + [aux_sym_cmd_identifier_token10] = ACTIONS(1850), + [aux_sym_cmd_identifier_token11] = ACTIONS(1850), + [aux_sym_cmd_identifier_token12] = ACTIONS(1850), + [aux_sym_cmd_identifier_token13] = ACTIONS(1850), + [aux_sym_cmd_identifier_token14] = ACTIONS(1850), + [aux_sym_cmd_identifier_token15] = ACTIONS(1850), + [aux_sym_cmd_identifier_token16] = ACTIONS(1850), + [aux_sym_cmd_identifier_token17] = ACTIONS(1850), + [aux_sym_cmd_identifier_token18] = ACTIONS(1850), + [aux_sym_cmd_identifier_token19] = ACTIONS(1850), + [aux_sym_cmd_identifier_token20] = ACTIONS(1850), + [aux_sym_cmd_identifier_token21] = ACTIONS(1850), + [aux_sym_cmd_identifier_token22] = ACTIONS(1850), + [aux_sym_cmd_identifier_token23] = ACTIONS(1850), + [aux_sym_cmd_identifier_token24] = ACTIONS(1850), + [aux_sym_cmd_identifier_token25] = ACTIONS(1850), + [aux_sym_cmd_identifier_token26] = ACTIONS(1850), + [aux_sym_cmd_identifier_token27] = ACTIONS(1850), + [aux_sym_cmd_identifier_token28] = ACTIONS(1850), + [aux_sym_cmd_identifier_token29] = ACTIONS(1850), + [aux_sym_cmd_identifier_token30] = ACTIONS(1850), + [aux_sym_cmd_identifier_token31] = ACTIONS(1850), + [aux_sym_cmd_identifier_token32] = ACTIONS(1850), + [aux_sym_cmd_identifier_token33] = ACTIONS(1850), + [aux_sym_cmd_identifier_token34] = ACTIONS(1850), + [aux_sym_cmd_identifier_token35] = ACTIONS(1850), + [aux_sym_cmd_identifier_token36] = ACTIONS(1850), + [aux_sym_cmd_identifier_token37] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [anon_sym_def] = ACTIONS(1850), + [anon_sym_export_DASHenv] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_module] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1850), + [anon_sym_DASH2] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_in2] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_make] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_catch] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_source] = ACTIONS(1850), + [anon_sym_source_DASHenv] = ACTIONS(1850), + [anon_sym_register] = ACTIONS(1850), + [anon_sym_hide] = ACTIONS(1850), + [anon_sym_hide_DASHenv] = ACTIONS(1850), + [anon_sym_overlay] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1850), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), + [aux_sym__immediate_decimal_token1] = ACTIONS(1840), + [aux_sym__immediate_decimal_token3] = ACTIONS(1840), + [aux_sym__immediate_decimal_token4] = ACTIONS(1842), + [aux_sym__immediate_decimal_token5] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1850), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [aux_sym__val_number_token4] = ACTIONS(1850), + [aux_sym__val_number_token5] = ACTIONS(1850), + [aux_sym__val_number_token6] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), + [sym__entry_separator] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1852), + }, + [368] = { + [sym__expr_parenthesized_immediate] = STATE(675), + [sym__immediate_decimal] = STATE(676), + [sym_val_variable] = STATE(675), + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_alias] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_let_DASHenv] = ACTIONS(1854), + [anon_sym_mut] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [aux_sym_cmd_identifier_token1] = ACTIONS(1854), + [aux_sym_cmd_identifier_token2] = ACTIONS(1854), + [aux_sym_cmd_identifier_token3] = ACTIONS(1854), + [aux_sym_cmd_identifier_token4] = ACTIONS(1854), + [aux_sym_cmd_identifier_token5] = ACTIONS(1854), + [aux_sym_cmd_identifier_token6] = ACTIONS(1854), + [aux_sym_cmd_identifier_token7] = ACTIONS(1854), + [aux_sym_cmd_identifier_token8] = ACTIONS(1854), + [aux_sym_cmd_identifier_token9] = ACTIONS(1854), + [aux_sym_cmd_identifier_token10] = ACTIONS(1854), + [aux_sym_cmd_identifier_token11] = ACTIONS(1854), + [aux_sym_cmd_identifier_token12] = ACTIONS(1854), + [aux_sym_cmd_identifier_token13] = ACTIONS(1854), + [aux_sym_cmd_identifier_token14] = ACTIONS(1854), + [aux_sym_cmd_identifier_token15] = ACTIONS(1854), + [aux_sym_cmd_identifier_token16] = ACTIONS(1854), + [aux_sym_cmd_identifier_token17] = ACTIONS(1854), + [aux_sym_cmd_identifier_token18] = ACTIONS(1854), + [aux_sym_cmd_identifier_token19] = ACTIONS(1854), + [aux_sym_cmd_identifier_token20] = ACTIONS(1854), + [aux_sym_cmd_identifier_token21] = ACTIONS(1854), + [aux_sym_cmd_identifier_token22] = ACTIONS(1854), + [aux_sym_cmd_identifier_token23] = ACTIONS(1854), + [aux_sym_cmd_identifier_token24] = ACTIONS(1854), + [aux_sym_cmd_identifier_token25] = ACTIONS(1854), + [aux_sym_cmd_identifier_token26] = ACTIONS(1854), + [aux_sym_cmd_identifier_token27] = ACTIONS(1854), + [aux_sym_cmd_identifier_token28] = ACTIONS(1854), + [aux_sym_cmd_identifier_token29] = ACTIONS(1854), + [aux_sym_cmd_identifier_token30] = ACTIONS(1854), + [aux_sym_cmd_identifier_token31] = ACTIONS(1854), + [aux_sym_cmd_identifier_token32] = ACTIONS(1854), + [aux_sym_cmd_identifier_token33] = ACTIONS(1854), + [aux_sym_cmd_identifier_token34] = ACTIONS(1854), + [aux_sym_cmd_identifier_token35] = ACTIONS(1854), + [aux_sym_cmd_identifier_token36] = ACTIONS(1854), + [aux_sym_cmd_identifier_token37] = ACTIONS(1854), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1854), + [aux_sym_cmd_identifier_token40] = ACTIONS(1854), + [anon_sym_def] = ACTIONS(1854), + [anon_sym_export_DASHenv] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_error] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_in2] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_make] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_source] = ACTIONS(1854), + [anon_sym_source_DASHenv] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_hide] = ACTIONS(1854), + [anon_sym_hide_DASHenv] = ACTIONS(1854), + [anon_sym_overlay] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1854), + [aux_sym__immediate_decimal_token1] = ACTIONS(1840), + [aux_sym__immediate_decimal_token3] = ACTIONS(1840), + [aux_sym__immediate_decimal_token4] = ACTIONS(1842), + [aux_sym__immediate_decimal_token5] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1854), + [aux_sym__val_number_token2] = ACTIONS(1854), + [aux_sym__val_number_token3] = ACTIONS(1854), + [aux_sym__val_number_token4] = ACTIONS(1854), + [aux_sym__val_number_token5] = ACTIONS(1854), + [aux_sym__val_number_token6] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym__str_single_quotes] = ACTIONS(1854), + [sym__str_back_ticks] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1854), + [sym__entry_separator] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1856), + }, + [369] = { + [sym__expr_parenthesized_immediate] = STATE(728), + [sym__immediate_decimal] = STATE(613), + [sym_val_variable] = STATE(728), + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_alias] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_let_DASHenv] = ACTIONS(1730), + [anon_sym_mut] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [aux_sym_cmd_identifier_token1] = ACTIONS(1730), + [aux_sym_cmd_identifier_token2] = ACTIONS(1742), + [aux_sym_cmd_identifier_token3] = ACTIONS(1742), + [aux_sym_cmd_identifier_token4] = ACTIONS(1742), + [aux_sym_cmd_identifier_token5] = ACTIONS(1742), + [aux_sym_cmd_identifier_token6] = ACTIONS(1742), + [aux_sym_cmd_identifier_token7] = ACTIONS(1742), + [aux_sym_cmd_identifier_token8] = ACTIONS(1730), + [aux_sym_cmd_identifier_token9] = ACTIONS(1730), + [aux_sym_cmd_identifier_token10] = ACTIONS(1742), + [aux_sym_cmd_identifier_token11] = ACTIONS(1742), + [aux_sym_cmd_identifier_token12] = ACTIONS(1730), + [aux_sym_cmd_identifier_token13] = ACTIONS(1730), + [aux_sym_cmd_identifier_token14] = ACTIONS(1730), + [aux_sym_cmd_identifier_token15] = ACTIONS(1730), + [aux_sym_cmd_identifier_token16] = ACTIONS(1742), + [aux_sym_cmd_identifier_token17] = ACTIONS(1742), + [aux_sym_cmd_identifier_token18] = ACTIONS(1742), + [aux_sym_cmd_identifier_token19] = ACTIONS(1742), + [aux_sym_cmd_identifier_token20] = ACTIONS(1742), + [aux_sym_cmd_identifier_token21] = ACTIONS(1742), + [aux_sym_cmd_identifier_token22] = ACTIONS(1742), + [aux_sym_cmd_identifier_token23] = ACTIONS(1742), + [aux_sym_cmd_identifier_token24] = ACTIONS(1742), + [aux_sym_cmd_identifier_token25] = ACTIONS(1742), + [aux_sym_cmd_identifier_token26] = ACTIONS(1742), + [aux_sym_cmd_identifier_token27] = ACTIONS(1742), + [aux_sym_cmd_identifier_token28] = ACTIONS(1742), + [aux_sym_cmd_identifier_token29] = ACTIONS(1742), + [aux_sym_cmd_identifier_token30] = ACTIONS(1742), + [aux_sym_cmd_identifier_token31] = ACTIONS(1742), + [aux_sym_cmd_identifier_token32] = ACTIONS(1742), + [aux_sym_cmd_identifier_token33] = ACTIONS(1742), + [aux_sym_cmd_identifier_token34] = ACTIONS(1730), + [aux_sym_cmd_identifier_token35] = ACTIONS(1742), + [aux_sym_cmd_identifier_token36] = ACTIONS(1742), + [aux_sym_cmd_identifier_token37] = ACTIONS(1742), + [aux_sym_cmd_identifier_token38] = ACTIONS(1730), + [aux_sym_cmd_identifier_token39] = ACTIONS(1742), + [aux_sym_cmd_identifier_token40] = ACTIONS(1742), + [anon_sym_def] = ACTIONS(1730), + [anon_sym_export_DASHenv] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_module] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_in2] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_make] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1730), + [anon_sym_catch] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_source] = ACTIONS(1730), + [anon_sym_source_DASHenv] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_hide] = ACTIONS(1730), + [anon_sym_hide_DASHenv] = ACTIONS(1730), + [anon_sym_overlay] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1742), + [aux_sym__immediate_decimal_token1] = ACTIONS(1808), + [aux_sym__immediate_decimal_token3] = ACTIONS(1810), + [aux_sym__immediate_decimal_token4] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(1814), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1742), + [aux_sym__val_number_decimal_token1] = ACTIONS(1730), + [aux_sym__val_number_decimal_token2] = ACTIONS(1730), + [aux_sym__val_number_decimal_token3] = ACTIONS(1730), + [aux_sym__val_number_decimal_token4] = ACTIONS(1730), + [aux_sym__val_number_token1] = ACTIONS(1742), + [aux_sym__val_number_token2] = ACTIONS(1742), + [aux_sym__val_number_token3] = ACTIONS(1742), + [aux_sym__val_number_token4] = ACTIONS(1730), + [aux_sym__val_number_token5] = ACTIONS(1730), + [aux_sym__val_number_token6] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1742), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1742), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [371] = { + [sym__expr_parenthesized_immediate] = STATE(744), + [sym__immediate_decimal] = STATE(746), + [sym_val_variable] = STATE(744), + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1776), + [anon_sym_alias] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_let_DASHenv] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [aux_sym_cmd_identifier_token1] = ACTIONS(1776), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1776), + [aux_sym_cmd_identifier_token9] = ACTIONS(1776), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1776), + [aux_sym_cmd_identifier_token13] = ACTIONS(1776), + [aux_sym_cmd_identifier_token14] = ACTIONS(1776), + [aux_sym_cmd_identifier_token15] = ACTIONS(1776), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1776), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1776), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1776), + [anon_sym_export_DASHenv] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_module] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_in2] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_make] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_else] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_catch] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_source] = ACTIONS(1776), + [anon_sym_source_DASHenv] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_hide] = ACTIONS(1776), + [anon_sym_hide_DASHenv] = ACTIONS(1776), + [anon_sym_overlay] = ACTIONS(1776), + [anon_sym_as] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [aux_sym__immediate_decimal_token1] = ACTIONS(1858), + [aux_sym__immediate_decimal_token3] = ACTIONS(1860), + [aux_sym__immediate_decimal_token4] = ACTIONS(1862), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1776), + [aux_sym__val_number_token5] = ACTIONS(1776), + [aux_sym__val_number_token6] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), + }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_alias] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_let_DASHenv] = ACTIONS(1768), + [anon_sym_mut] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [aux_sym_cmd_identifier_token1] = ACTIONS(1768), + [aux_sym_cmd_identifier_token2] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1768), + [aux_sym_cmd_identifier_token4] = ACTIONS(1768), + [aux_sym_cmd_identifier_token5] = ACTIONS(1768), + [aux_sym_cmd_identifier_token6] = ACTIONS(1768), + [aux_sym_cmd_identifier_token7] = ACTIONS(1768), + [aux_sym_cmd_identifier_token8] = ACTIONS(1768), + [aux_sym_cmd_identifier_token9] = ACTIONS(1768), + [aux_sym_cmd_identifier_token10] = ACTIONS(1768), + [aux_sym_cmd_identifier_token11] = ACTIONS(1768), + [aux_sym_cmd_identifier_token12] = ACTIONS(1768), + [aux_sym_cmd_identifier_token13] = ACTIONS(1768), + [aux_sym_cmd_identifier_token14] = ACTIONS(1768), + [aux_sym_cmd_identifier_token15] = ACTIONS(1768), + [aux_sym_cmd_identifier_token16] = ACTIONS(1768), + [aux_sym_cmd_identifier_token17] = ACTIONS(1768), + [aux_sym_cmd_identifier_token18] = ACTIONS(1768), + [aux_sym_cmd_identifier_token19] = ACTIONS(1768), + [aux_sym_cmd_identifier_token20] = ACTIONS(1768), + [aux_sym_cmd_identifier_token21] = ACTIONS(1768), + [aux_sym_cmd_identifier_token22] = ACTIONS(1768), + [aux_sym_cmd_identifier_token23] = ACTIONS(1768), + [aux_sym_cmd_identifier_token24] = ACTIONS(1768), + [aux_sym_cmd_identifier_token25] = ACTIONS(1768), + [aux_sym_cmd_identifier_token26] = ACTIONS(1768), + [aux_sym_cmd_identifier_token27] = ACTIONS(1768), + [aux_sym_cmd_identifier_token28] = ACTIONS(1768), + [aux_sym_cmd_identifier_token29] = ACTIONS(1768), + [aux_sym_cmd_identifier_token30] = ACTIONS(1768), + [aux_sym_cmd_identifier_token31] = ACTIONS(1768), + [aux_sym_cmd_identifier_token32] = ACTIONS(1768), + [aux_sym_cmd_identifier_token33] = ACTIONS(1768), + [aux_sym_cmd_identifier_token34] = ACTIONS(1768), + [aux_sym_cmd_identifier_token35] = ACTIONS(1768), + [aux_sym_cmd_identifier_token36] = ACTIONS(1768), + [aux_sym_cmd_identifier_token37] = ACTIONS(1768), + [aux_sym_cmd_identifier_token38] = ACTIONS(1768), + [aux_sym_cmd_identifier_token39] = ACTIONS(1768), + [aux_sym_cmd_identifier_token40] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1768), + [anon_sym_export_DASHenv] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_error] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_make] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_catch] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_source] = ACTIONS(1768), + [anon_sym_source_DASHenv] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_hide] = ACTIONS(1768), + [anon_sym_hide_DASHenv] = ACTIONS(1768), + [anon_sym_overlay] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1768), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1768), + [aux_sym__val_number_decimal_token3] = ACTIONS(1768), + [aux_sym__val_number_decimal_token4] = ACTIONS(1768), + [aux_sym__val_number_token1] = ACTIONS(1768), + [aux_sym__val_number_token2] = ACTIONS(1768), + [aux_sym__val_number_token3] = ACTIONS(1768), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1768), + [sym__str_single_quotes] = ACTIONS(1768), + [sym__str_back_ticks] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1768), + [sym__entry_separator] = ACTIONS(1770), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1866), + [aux_sym_cmd_identifier_token3] = ACTIONS(1866), + [aux_sym_cmd_identifier_token4] = ACTIONS(1866), + [aux_sym_cmd_identifier_token5] = ACTIONS(1866), + [aux_sym_cmd_identifier_token6] = ACTIONS(1866), + [aux_sym_cmd_identifier_token7] = ACTIONS(1866), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1866), + [aux_sym_cmd_identifier_token11] = ACTIONS(1866), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1866), + [aux_sym_cmd_identifier_token17] = ACTIONS(1866), + [aux_sym_cmd_identifier_token18] = ACTIONS(1866), + [aux_sym_cmd_identifier_token19] = ACTIONS(1866), + [aux_sym_cmd_identifier_token20] = ACTIONS(1866), + [aux_sym_cmd_identifier_token21] = ACTIONS(1866), + [aux_sym_cmd_identifier_token22] = ACTIONS(1866), + [aux_sym_cmd_identifier_token23] = ACTIONS(1866), + [aux_sym_cmd_identifier_token24] = ACTIONS(1866), + [aux_sym_cmd_identifier_token25] = ACTIONS(1866), + [aux_sym_cmd_identifier_token26] = ACTIONS(1866), + [aux_sym_cmd_identifier_token27] = ACTIONS(1866), + [aux_sym_cmd_identifier_token28] = ACTIONS(1866), + [aux_sym_cmd_identifier_token29] = ACTIONS(1866), + [aux_sym_cmd_identifier_token30] = ACTIONS(1866), + [aux_sym_cmd_identifier_token31] = ACTIONS(1866), + [aux_sym_cmd_identifier_token32] = ACTIONS(1866), + [aux_sym_cmd_identifier_token33] = ACTIONS(1866), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1866), + [aux_sym_cmd_identifier_token36] = ACTIONS(1866), + [aux_sym_cmd_identifier_token37] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = ACTIONS(1866), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1866), + [aux_sym__val_number_decimal_token3] = ACTIONS(1866), + [aux_sym__val_number_decimal_token4] = ACTIONS(1866), + [aux_sym__val_number_token1] = ACTIONS(1866), + [aux_sym__val_number_token2] = ACTIONS(1866), + [aux_sym__val_number_token3] = ACTIONS(1866), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym__str_single_quotes] = ACTIONS(1866), + [sym__str_back_ticks] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), + [sym__entry_separator] = ACTIONS(1868), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1868), + }, + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [aux_sym_cmd_identifier_token37] = ACTIONS(1822), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1822), + [aux_sym_cmd_identifier_token40] = ACTIONS(1822), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(1870), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), + }, + [375] = { + [sym_comment] = STATE(375), [anon_sym_export] = ACTIONS(1820), [anon_sym_alias] = ACTIONS(1820), [anon_sym_let] = ACTIONS(1820), @@ -132467,6 +254844,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1822), [anon_sym_PLUS2] = ACTIONS(1820), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), [aux_sym__val_number_decimal_token2] = ACTIONS(1820), @@ -132478,3812 +254858,7502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1820), [aux_sym__val_number_token5] = ACTIONS(1820), [aux_sym__val_number_token6] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1820), [anon_sym_DQUOTE] = ACTIONS(1820), [sym__str_single_quotes] = ACTIONS(1820), [sym__str_back_ticks] = ACTIONS(1820), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [sym__entry_separator] = ACTIONS(1828), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [sym__entry_separator] = ACTIONS(1822), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), + [sym_raw_string_begin] = ACTIONS(1822), }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [aux_sym_cmd_identifier_token1] = ACTIONS(2118), - [aux_sym_cmd_identifier_token2] = ACTIONS(2120), - [aux_sym_cmd_identifier_token3] = ACTIONS(2120), - [aux_sym_cmd_identifier_token4] = ACTIONS(2120), - [aux_sym_cmd_identifier_token5] = ACTIONS(2120), - [aux_sym_cmd_identifier_token6] = ACTIONS(2120), - [aux_sym_cmd_identifier_token7] = ACTIONS(2120), - [aux_sym_cmd_identifier_token8] = ACTIONS(2118), - [aux_sym_cmd_identifier_token9] = ACTIONS(2118), - [aux_sym_cmd_identifier_token10] = ACTIONS(2120), - [aux_sym_cmd_identifier_token11] = ACTIONS(2120), - [aux_sym_cmd_identifier_token12] = ACTIONS(2118), - [aux_sym_cmd_identifier_token13] = ACTIONS(2118), - [aux_sym_cmd_identifier_token14] = ACTIONS(2118), - [aux_sym_cmd_identifier_token15] = ACTIONS(2118), - [aux_sym_cmd_identifier_token16] = ACTIONS(2120), - [aux_sym_cmd_identifier_token17] = ACTIONS(2120), - [aux_sym_cmd_identifier_token18] = ACTIONS(2120), - [aux_sym_cmd_identifier_token19] = ACTIONS(2120), - [aux_sym_cmd_identifier_token20] = ACTIONS(2120), - [aux_sym_cmd_identifier_token21] = ACTIONS(2120), - [aux_sym_cmd_identifier_token22] = ACTIONS(2120), - [aux_sym_cmd_identifier_token23] = ACTIONS(2120), - [aux_sym_cmd_identifier_token24] = ACTIONS(2120), - [aux_sym_cmd_identifier_token25] = ACTIONS(2120), - [aux_sym_cmd_identifier_token26] = ACTIONS(2120), - [aux_sym_cmd_identifier_token27] = ACTIONS(2120), - [aux_sym_cmd_identifier_token28] = ACTIONS(2120), - [aux_sym_cmd_identifier_token29] = ACTIONS(2120), - [aux_sym_cmd_identifier_token30] = ACTIONS(2120), - [aux_sym_cmd_identifier_token31] = ACTIONS(2120), - [aux_sym_cmd_identifier_token32] = ACTIONS(2120), - [aux_sym_cmd_identifier_token33] = ACTIONS(2120), - [aux_sym_cmd_identifier_token34] = ACTIONS(2118), - [aux_sym_cmd_identifier_token35] = ACTIONS(2120), - [aux_sym_cmd_identifier_token36] = ACTIONS(2120), - [aux_sym_cmd_identifier_token37] = ACTIONS(2120), - [aux_sym_cmd_identifier_token38] = ACTIONS(2118), - [aux_sym_cmd_identifier_token39] = ACTIONS(2120), - [aux_sym_cmd_identifier_token40] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_in2] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_make] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2120), + [376] = { + [sym__expr_parenthesized_immediate] = STATE(763), + [sym__immediate_decimal] = STATE(767), + [sym_val_variable] = STATE(763), + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1846), + [anon_sym_alias] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_let_DASHenv] = ACTIONS(1846), + [anon_sym_mut] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [aux_sym_cmd_identifier_token1] = ACTIONS(1846), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1846), + [aux_sym_cmd_identifier_token9] = ACTIONS(1846), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1846), + [aux_sym_cmd_identifier_token13] = ACTIONS(1846), + [aux_sym_cmd_identifier_token14] = ACTIONS(1846), + [aux_sym_cmd_identifier_token15] = ACTIONS(1846), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1846), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [aux_sym_cmd_identifier_token37] = ACTIONS(1848), + [aux_sym_cmd_identifier_token38] = ACTIONS(1846), + [aux_sym_cmd_identifier_token39] = ACTIONS(1848), + [aux_sym_cmd_identifier_token40] = ACTIONS(1848), + [anon_sym_def] = ACTIONS(1846), + [anon_sym_export_DASHenv] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_module] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_in2] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_make] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_else] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1846), + [anon_sym_catch] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_source] = ACTIONS(1846), + [anon_sym_source_DASHenv] = ACTIONS(1846), + [anon_sym_register] = ACTIONS(1846), + [anon_sym_hide] = ACTIONS(1846), + [anon_sym_hide_DASHenv] = ACTIONS(1846), + [anon_sym_overlay] = ACTIONS(1846), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), + [aux_sym__immediate_decimal_token1] = ACTIONS(1858), + [aux_sym__immediate_decimal_token3] = ACTIONS(1860), + [aux_sym__immediate_decimal_token4] = ACTIONS(1862), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1846), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1846), + [aux_sym__val_number_token5] = ACTIONS(1846), + [aux_sym__val_number_token6] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1848), }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2185), - [aux_sym_cmd_identifier_token3] = ACTIONS(2185), - [aux_sym_cmd_identifier_token4] = ACTIONS(2185), - [aux_sym_cmd_identifier_token5] = ACTIONS(2185), - [aux_sym_cmd_identifier_token6] = ACTIONS(2185), - [aux_sym_cmd_identifier_token7] = ACTIONS(2185), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2185), - [aux_sym_cmd_identifier_token11] = ACTIONS(2185), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2185), - [aux_sym_cmd_identifier_token17] = ACTIONS(2185), - [aux_sym_cmd_identifier_token18] = ACTIONS(2185), - [aux_sym_cmd_identifier_token19] = ACTIONS(2185), - [aux_sym_cmd_identifier_token20] = ACTIONS(2185), - [aux_sym_cmd_identifier_token21] = ACTIONS(2185), - [aux_sym_cmd_identifier_token22] = ACTIONS(2185), - [aux_sym_cmd_identifier_token23] = ACTIONS(2185), - [aux_sym_cmd_identifier_token24] = ACTIONS(2185), - [aux_sym_cmd_identifier_token25] = ACTIONS(2185), - [aux_sym_cmd_identifier_token26] = ACTIONS(2185), - [aux_sym_cmd_identifier_token27] = ACTIONS(2185), - [aux_sym_cmd_identifier_token28] = ACTIONS(2185), - [aux_sym_cmd_identifier_token29] = ACTIONS(2185), - [aux_sym_cmd_identifier_token30] = ACTIONS(2185), - [aux_sym_cmd_identifier_token31] = ACTIONS(2185), - [aux_sym_cmd_identifier_token32] = ACTIONS(2185), - [aux_sym_cmd_identifier_token33] = ACTIONS(2185), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2185), - [aux_sym_cmd_identifier_token36] = ACTIONS(2185), - [aux_sym_cmd_identifier_token37] = ACTIONS(2185), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2185), - [aux_sym_cmd_identifier_token40] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2185), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [378] = { + [sym__expr_parenthesized_immediate] = STATE(768), + [sym__immediate_decimal] = STATE(720), + [sym_val_variable] = STATE(768), + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1850), + [anon_sym_alias] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_let_DASHenv] = ACTIONS(1850), + [anon_sym_mut] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [aux_sym_cmd_identifier_token1] = ACTIONS(1850), + [aux_sym_cmd_identifier_token2] = ACTIONS(1852), + [aux_sym_cmd_identifier_token3] = ACTIONS(1852), + [aux_sym_cmd_identifier_token4] = ACTIONS(1852), + [aux_sym_cmd_identifier_token5] = ACTIONS(1852), + [aux_sym_cmd_identifier_token6] = ACTIONS(1852), + [aux_sym_cmd_identifier_token7] = ACTIONS(1852), + [aux_sym_cmd_identifier_token8] = ACTIONS(1850), + [aux_sym_cmd_identifier_token9] = ACTIONS(1850), + [aux_sym_cmd_identifier_token10] = ACTIONS(1852), + [aux_sym_cmd_identifier_token11] = ACTIONS(1852), + [aux_sym_cmd_identifier_token12] = ACTIONS(1850), + [aux_sym_cmd_identifier_token13] = ACTIONS(1850), + [aux_sym_cmd_identifier_token14] = ACTIONS(1850), + [aux_sym_cmd_identifier_token15] = ACTIONS(1850), + [aux_sym_cmd_identifier_token16] = ACTIONS(1852), + [aux_sym_cmd_identifier_token17] = ACTIONS(1852), + [aux_sym_cmd_identifier_token18] = ACTIONS(1852), + [aux_sym_cmd_identifier_token19] = ACTIONS(1852), + [aux_sym_cmd_identifier_token20] = ACTIONS(1852), + [aux_sym_cmd_identifier_token21] = ACTIONS(1852), + [aux_sym_cmd_identifier_token22] = ACTIONS(1852), + [aux_sym_cmd_identifier_token23] = ACTIONS(1852), + [aux_sym_cmd_identifier_token24] = ACTIONS(1852), + [aux_sym_cmd_identifier_token25] = ACTIONS(1852), + [aux_sym_cmd_identifier_token26] = ACTIONS(1852), + [aux_sym_cmd_identifier_token27] = ACTIONS(1852), + [aux_sym_cmd_identifier_token28] = ACTIONS(1852), + [aux_sym_cmd_identifier_token29] = ACTIONS(1852), + [aux_sym_cmd_identifier_token30] = ACTIONS(1852), + [aux_sym_cmd_identifier_token31] = ACTIONS(1852), + [aux_sym_cmd_identifier_token32] = ACTIONS(1852), + [aux_sym_cmd_identifier_token33] = ACTIONS(1852), + [aux_sym_cmd_identifier_token34] = ACTIONS(1850), + [aux_sym_cmd_identifier_token35] = ACTIONS(1852), + [aux_sym_cmd_identifier_token36] = ACTIONS(1852), + [aux_sym_cmd_identifier_token37] = ACTIONS(1852), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1852), + [aux_sym_cmd_identifier_token40] = ACTIONS(1852), + [anon_sym_def] = ACTIONS(1850), + [anon_sym_export_DASHenv] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_module] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1850), + [anon_sym_DASH2] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_in2] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_make] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_catch] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_source] = ACTIONS(1850), + [anon_sym_source_DASHenv] = ACTIONS(1850), + [anon_sym_register] = ACTIONS(1850), + [anon_sym_hide] = ACTIONS(1850), + [anon_sym_hide_DASHenv] = ACTIONS(1850), + [anon_sym_overlay] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1850), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1852), + [aux_sym__immediate_decimal_token1] = ACTIONS(1858), + [aux_sym__immediate_decimal_token3] = ACTIONS(1860), + [aux_sym__immediate_decimal_token4] = ACTIONS(1862), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1852), + [aux_sym__val_number_decimal_token1] = ACTIONS(1850), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1852), + [aux_sym__val_number_token2] = ACTIONS(1852), + [aux_sym__val_number_token3] = ACTIONS(1852), + [aux_sym__val_number_token4] = ACTIONS(1850), + [aux_sym__val_number_token5] = ACTIONS(1850), + [aux_sym__val_number_token6] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1852), + [sym__str_single_quotes] = ACTIONS(1852), + [sym__str_back_ticks] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1852), + }, + [379] = { + [sym__expr_parenthesized_immediate] = STATE(723), + [sym__immediate_decimal] = STATE(725), + [sym_val_variable] = STATE(723), + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_alias] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_let_DASHenv] = ACTIONS(1854), + [anon_sym_mut] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [aux_sym_cmd_identifier_token1] = ACTIONS(1854), + [aux_sym_cmd_identifier_token2] = ACTIONS(1856), + [aux_sym_cmd_identifier_token3] = ACTIONS(1856), + [aux_sym_cmd_identifier_token4] = ACTIONS(1856), + [aux_sym_cmd_identifier_token5] = ACTIONS(1856), + [aux_sym_cmd_identifier_token6] = ACTIONS(1856), + [aux_sym_cmd_identifier_token7] = ACTIONS(1856), + [aux_sym_cmd_identifier_token8] = ACTIONS(1854), + [aux_sym_cmd_identifier_token9] = ACTIONS(1854), + [aux_sym_cmd_identifier_token10] = ACTIONS(1856), + [aux_sym_cmd_identifier_token11] = ACTIONS(1856), + [aux_sym_cmd_identifier_token12] = ACTIONS(1854), + [aux_sym_cmd_identifier_token13] = ACTIONS(1854), + [aux_sym_cmd_identifier_token14] = ACTIONS(1854), + [aux_sym_cmd_identifier_token15] = ACTIONS(1854), + [aux_sym_cmd_identifier_token16] = ACTIONS(1856), + [aux_sym_cmd_identifier_token17] = ACTIONS(1856), + [aux_sym_cmd_identifier_token18] = ACTIONS(1856), + [aux_sym_cmd_identifier_token19] = ACTIONS(1856), + [aux_sym_cmd_identifier_token20] = ACTIONS(1856), + [aux_sym_cmd_identifier_token21] = ACTIONS(1856), + [aux_sym_cmd_identifier_token22] = ACTIONS(1856), + [aux_sym_cmd_identifier_token23] = ACTIONS(1856), + [aux_sym_cmd_identifier_token24] = ACTIONS(1856), + [aux_sym_cmd_identifier_token25] = ACTIONS(1856), + [aux_sym_cmd_identifier_token26] = ACTIONS(1856), + [aux_sym_cmd_identifier_token27] = ACTIONS(1856), + [aux_sym_cmd_identifier_token28] = ACTIONS(1856), + [aux_sym_cmd_identifier_token29] = ACTIONS(1856), + [aux_sym_cmd_identifier_token30] = ACTIONS(1856), + [aux_sym_cmd_identifier_token31] = ACTIONS(1856), + [aux_sym_cmd_identifier_token32] = ACTIONS(1856), + [aux_sym_cmd_identifier_token33] = ACTIONS(1856), + [aux_sym_cmd_identifier_token34] = ACTIONS(1854), + [aux_sym_cmd_identifier_token35] = ACTIONS(1856), + [aux_sym_cmd_identifier_token36] = ACTIONS(1856), + [aux_sym_cmd_identifier_token37] = ACTIONS(1856), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1856), + [aux_sym_cmd_identifier_token40] = ACTIONS(1856), + [anon_sym_def] = ACTIONS(1854), + [anon_sym_export_DASHenv] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_in2] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_make] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_source] = ACTIONS(1854), + [anon_sym_source_DASHenv] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_hide] = ACTIONS(1854), + [anon_sym_hide_DASHenv] = ACTIONS(1854), + [anon_sym_overlay] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1856), + [aux_sym__immediate_decimal_token1] = ACTIONS(1858), + [aux_sym__immediate_decimal_token3] = ACTIONS(1860), + [aux_sym__immediate_decimal_token4] = ACTIONS(1862), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1856), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1856), + [aux_sym__val_number_token2] = ACTIONS(1856), + [aux_sym__val_number_token3] = ACTIONS(1856), + [aux_sym__val_number_token4] = ACTIONS(1854), + [aux_sym__val_number_token5] = ACTIONS(1854), + [aux_sym__val_number_token6] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym__str_single_quotes] = ACTIONS(1856), + [sym__str_back_ticks] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1856), + }, + [380] = { + [sym_cell_path] = STATE(503), + [sym_path] = STATE(421), + [sym_comment] = STATE(380), + [aux_sym_cell_path_repeat1] = STATE(393), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_alias] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_let_DASHenv] = ACTIONS(1880), + [anon_sym_mut] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [aux_sym_cmd_identifier_token1] = ACTIONS(1880), + [aux_sym_cmd_identifier_token2] = ACTIONS(1880), + [aux_sym_cmd_identifier_token3] = ACTIONS(1880), + [aux_sym_cmd_identifier_token4] = ACTIONS(1880), + [aux_sym_cmd_identifier_token5] = ACTIONS(1880), + [aux_sym_cmd_identifier_token6] = ACTIONS(1880), + [aux_sym_cmd_identifier_token7] = ACTIONS(1880), + [aux_sym_cmd_identifier_token8] = ACTIONS(1880), + [aux_sym_cmd_identifier_token9] = ACTIONS(1880), + [aux_sym_cmd_identifier_token10] = ACTIONS(1880), + [aux_sym_cmd_identifier_token11] = ACTIONS(1880), + [aux_sym_cmd_identifier_token12] = ACTIONS(1880), + [aux_sym_cmd_identifier_token13] = ACTIONS(1880), + [aux_sym_cmd_identifier_token14] = ACTIONS(1880), + [aux_sym_cmd_identifier_token15] = ACTIONS(1880), + [aux_sym_cmd_identifier_token16] = ACTIONS(1880), + [aux_sym_cmd_identifier_token17] = ACTIONS(1880), + [aux_sym_cmd_identifier_token18] = ACTIONS(1880), + [aux_sym_cmd_identifier_token19] = ACTIONS(1880), + [aux_sym_cmd_identifier_token20] = ACTIONS(1880), + [aux_sym_cmd_identifier_token21] = ACTIONS(1880), + [aux_sym_cmd_identifier_token22] = ACTIONS(1880), + [aux_sym_cmd_identifier_token23] = ACTIONS(1880), + [aux_sym_cmd_identifier_token24] = ACTIONS(1880), + [aux_sym_cmd_identifier_token25] = ACTIONS(1880), + [aux_sym_cmd_identifier_token26] = ACTIONS(1880), + [aux_sym_cmd_identifier_token27] = ACTIONS(1880), + [aux_sym_cmd_identifier_token28] = ACTIONS(1880), + [aux_sym_cmd_identifier_token29] = ACTIONS(1880), + [aux_sym_cmd_identifier_token30] = ACTIONS(1880), + [aux_sym_cmd_identifier_token31] = ACTIONS(1880), + [aux_sym_cmd_identifier_token32] = ACTIONS(1880), + [aux_sym_cmd_identifier_token33] = ACTIONS(1880), + [aux_sym_cmd_identifier_token34] = ACTIONS(1880), + [aux_sym_cmd_identifier_token35] = ACTIONS(1880), + [aux_sym_cmd_identifier_token36] = ACTIONS(1880), + [aux_sym_cmd_identifier_token37] = ACTIONS(1880), + [aux_sym_cmd_identifier_token38] = ACTIONS(1880), + [aux_sym_cmd_identifier_token39] = ACTIONS(1880), + [aux_sym_cmd_identifier_token40] = ACTIONS(1880), + [anon_sym_def] = ACTIONS(1880), + [anon_sym_export_DASHenv] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_error] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_in2] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_make] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_source] = ACTIONS(1880), + [anon_sym_source_DASHenv] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_hide] = ACTIONS(1880), + [anon_sym_hide_DASHenv] = ACTIONS(1880), + [anon_sym_overlay] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1880), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1880), + [aux_sym__val_number_decimal_token3] = ACTIONS(1880), + [aux_sym__val_number_decimal_token4] = ACTIONS(1880), + [aux_sym__val_number_token1] = ACTIONS(1880), + [aux_sym__val_number_token2] = ACTIONS(1880), + [aux_sym__val_number_token3] = ACTIONS(1880), + [aux_sym__val_number_token4] = ACTIONS(1880), + [aux_sym__val_number_token5] = ACTIONS(1880), + [aux_sym__val_number_token6] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1880), + [sym__str_single_quotes] = ACTIONS(1880), + [sym__str_back_ticks] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1880), + [sym__entry_separator] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1884), + }, + [381] = { + [sym_cell_path] = STATE(508), + [sym_path] = STATE(421), + [sym_comment] = STATE(381), + [aux_sym_cell_path_repeat1] = STATE(393), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_alias] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_let_DASHenv] = ACTIONS(1886), + [anon_sym_mut] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [aux_sym_cmd_identifier_token1] = ACTIONS(1886), + [aux_sym_cmd_identifier_token2] = ACTIONS(1886), + [aux_sym_cmd_identifier_token3] = ACTIONS(1886), + [aux_sym_cmd_identifier_token4] = ACTIONS(1886), + [aux_sym_cmd_identifier_token5] = ACTIONS(1886), + [aux_sym_cmd_identifier_token6] = ACTIONS(1886), + [aux_sym_cmd_identifier_token7] = ACTIONS(1886), + [aux_sym_cmd_identifier_token8] = ACTIONS(1886), + [aux_sym_cmd_identifier_token9] = ACTIONS(1886), + [aux_sym_cmd_identifier_token10] = ACTIONS(1886), + [aux_sym_cmd_identifier_token11] = ACTIONS(1886), + [aux_sym_cmd_identifier_token12] = ACTIONS(1886), + [aux_sym_cmd_identifier_token13] = ACTIONS(1886), + [aux_sym_cmd_identifier_token14] = ACTIONS(1886), + [aux_sym_cmd_identifier_token15] = ACTIONS(1886), + [aux_sym_cmd_identifier_token16] = ACTIONS(1886), + [aux_sym_cmd_identifier_token17] = ACTIONS(1886), + [aux_sym_cmd_identifier_token18] = ACTIONS(1886), + [aux_sym_cmd_identifier_token19] = ACTIONS(1886), + [aux_sym_cmd_identifier_token20] = ACTIONS(1886), + [aux_sym_cmd_identifier_token21] = ACTIONS(1886), + [aux_sym_cmd_identifier_token22] = ACTIONS(1886), + [aux_sym_cmd_identifier_token23] = ACTIONS(1886), + [aux_sym_cmd_identifier_token24] = ACTIONS(1886), + [aux_sym_cmd_identifier_token25] = ACTIONS(1886), + [aux_sym_cmd_identifier_token26] = ACTIONS(1886), + [aux_sym_cmd_identifier_token27] = ACTIONS(1886), + [aux_sym_cmd_identifier_token28] = ACTIONS(1886), + [aux_sym_cmd_identifier_token29] = ACTIONS(1886), + [aux_sym_cmd_identifier_token30] = ACTIONS(1886), + [aux_sym_cmd_identifier_token31] = ACTIONS(1886), + [aux_sym_cmd_identifier_token32] = ACTIONS(1886), + [aux_sym_cmd_identifier_token33] = ACTIONS(1886), + [aux_sym_cmd_identifier_token34] = ACTIONS(1886), + [aux_sym_cmd_identifier_token35] = ACTIONS(1886), + [aux_sym_cmd_identifier_token36] = ACTIONS(1886), + [aux_sym_cmd_identifier_token37] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = ACTIONS(1886), + [anon_sym_def] = ACTIONS(1886), + [anon_sym_export_DASHenv] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_error] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_in2] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_make] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_source] = ACTIONS(1886), + [anon_sym_source_DASHenv] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_hide] = ACTIONS(1886), + [anon_sym_hide_DASHenv] = ACTIONS(1886), + [anon_sym_overlay] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1886), + [aux_sym__val_number_decimal_token3] = ACTIONS(1886), + [aux_sym__val_number_decimal_token4] = ACTIONS(1886), + [aux_sym__val_number_token1] = ACTIONS(1886), + [aux_sym__val_number_token2] = ACTIONS(1886), + [aux_sym__val_number_token3] = ACTIONS(1886), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym__str_single_quotes] = ACTIONS(1886), + [sym__str_back_ticks] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), + [sym__entry_separator] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1888), + }, + [382] = { + [sym_comment] = STATE(382), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(1894), + [aux_sym__immediate_decimal_token2] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [383] = { + [sym_cell_path] = STATE(507), + [sym_path] = STATE(421), + [sym_comment] = STATE(383), + [aux_sym_cell_path_repeat1] = STATE(393), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [aux_sym_cmd_identifier_token37] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [385] = { + [sym__expr_parenthesized_immediate] = STATE(7475), + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1800), + [aux_sym_cmd_identifier_token3] = ACTIONS(1800), + [aux_sym_cmd_identifier_token4] = ACTIONS(1800), + [aux_sym_cmd_identifier_token5] = ACTIONS(1800), + [aux_sym_cmd_identifier_token6] = ACTIONS(1800), + [aux_sym_cmd_identifier_token7] = ACTIONS(1800), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1800), + [aux_sym_cmd_identifier_token11] = ACTIONS(1800), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1800), + [aux_sym_cmd_identifier_token17] = ACTIONS(1800), + [aux_sym_cmd_identifier_token18] = ACTIONS(1800), + [aux_sym_cmd_identifier_token19] = ACTIONS(1800), + [aux_sym_cmd_identifier_token20] = ACTIONS(1800), + [aux_sym_cmd_identifier_token21] = ACTIONS(1800), + [aux_sym_cmd_identifier_token22] = ACTIONS(1800), + [aux_sym_cmd_identifier_token23] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1800), + [aux_sym_cmd_identifier_token25] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1800), + [aux_sym_cmd_identifier_token27] = ACTIONS(1800), + [aux_sym_cmd_identifier_token28] = ACTIONS(1800), + [aux_sym_cmd_identifier_token29] = ACTIONS(1800), + [aux_sym_cmd_identifier_token30] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1800), + [aux_sym_cmd_identifier_token32] = ACTIONS(1800), + [aux_sym_cmd_identifier_token33] = ACTIONS(1800), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1800), + [aux_sym_cmd_identifier_token36] = ACTIONS(1800), + [aux_sym_cmd_identifier_token37] = ACTIONS(1800), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1800), + [aux_sym_cmd_identifier_token40] = ACTIONS(1800), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1800), + [anon_sym_DOT_DOT2] = ACTIONS(1898), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(1902), + [sym_duration_unit] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1800), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), + }, + [386] = { + [sym_path] = STATE(421), + [sym_comment] = STATE(386), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1483), + [aux_sym_cmd_identifier_token3] = ACTIONS(1483), + [aux_sym_cmd_identifier_token4] = ACTIONS(1483), + [aux_sym_cmd_identifier_token5] = ACTIONS(1483), + [aux_sym_cmd_identifier_token6] = ACTIONS(1483), + [aux_sym_cmd_identifier_token7] = ACTIONS(1483), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1483), + [aux_sym_cmd_identifier_token11] = ACTIONS(1483), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1483), + [aux_sym_cmd_identifier_token17] = ACTIONS(1483), + [aux_sym_cmd_identifier_token18] = ACTIONS(1483), + [aux_sym_cmd_identifier_token19] = ACTIONS(1483), + [aux_sym_cmd_identifier_token20] = ACTIONS(1483), + [aux_sym_cmd_identifier_token21] = ACTIONS(1483), + [aux_sym_cmd_identifier_token22] = ACTIONS(1483), + [aux_sym_cmd_identifier_token23] = ACTIONS(1483), + [aux_sym_cmd_identifier_token24] = ACTIONS(1483), + [aux_sym_cmd_identifier_token25] = ACTIONS(1483), + [aux_sym_cmd_identifier_token26] = ACTIONS(1483), + [aux_sym_cmd_identifier_token27] = ACTIONS(1483), + [aux_sym_cmd_identifier_token28] = ACTIONS(1483), + [aux_sym_cmd_identifier_token29] = ACTIONS(1483), + [aux_sym_cmd_identifier_token30] = ACTIONS(1483), + [aux_sym_cmd_identifier_token31] = ACTIONS(1483), + [aux_sym_cmd_identifier_token32] = ACTIONS(1483), + [aux_sym_cmd_identifier_token33] = ACTIONS(1483), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1483), + [aux_sym_cmd_identifier_token36] = ACTIONS(1483), + [aux_sym_cmd_identifier_token37] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), + [sym__entry_separator] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1485), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1822), + [aux_sym_cmd_identifier_token3] = ACTIONS(1822), + [aux_sym_cmd_identifier_token4] = ACTIONS(1822), + [aux_sym_cmd_identifier_token5] = ACTIONS(1822), + [aux_sym_cmd_identifier_token6] = ACTIONS(1822), + [aux_sym_cmd_identifier_token7] = ACTIONS(1822), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1822), + [aux_sym_cmd_identifier_token11] = ACTIONS(1822), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1822), + [aux_sym_cmd_identifier_token17] = ACTIONS(1822), + [aux_sym_cmd_identifier_token18] = ACTIONS(1822), + [aux_sym_cmd_identifier_token19] = ACTIONS(1822), + [aux_sym_cmd_identifier_token20] = ACTIONS(1822), + [aux_sym_cmd_identifier_token21] = ACTIONS(1822), + [aux_sym_cmd_identifier_token22] = ACTIONS(1822), + [aux_sym_cmd_identifier_token23] = ACTIONS(1822), + [aux_sym_cmd_identifier_token24] = ACTIONS(1822), + [aux_sym_cmd_identifier_token25] = ACTIONS(1822), + [aux_sym_cmd_identifier_token26] = ACTIONS(1822), + [aux_sym_cmd_identifier_token27] = ACTIONS(1822), + [aux_sym_cmd_identifier_token28] = ACTIONS(1822), + [aux_sym_cmd_identifier_token29] = ACTIONS(1822), + [aux_sym_cmd_identifier_token30] = ACTIONS(1822), + [aux_sym_cmd_identifier_token31] = ACTIONS(1822), + [aux_sym_cmd_identifier_token32] = ACTIONS(1822), + [aux_sym_cmd_identifier_token33] = ACTIONS(1822), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1822), + [aux_sym_cmd_identifier_token36] = ACTIONS(1822), + [aux_sym_cmd_identifier_token37] = ACTIONS(1822), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1822), + [aux_sym_cmd_identifier_token40] = ACTIONS(1822), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), + }, + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1768), + [anon_sym_alias] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_let_DASHenv] = ACTIONS(1768), + [anon_sym_mut] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [aux_sym_cmd_identifier_token1] = ACTIONS(1768), + [aux_sym_cmd_identifier_token2] = ACTIONS(1770), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [aux_sym_cmd_identifier_token6] = ACTIONS(1770), + [aux_sym_cmd_identifier_token7] = ACTIONS(1770), + [aux_sym_cmd_identifier_token8] = ACTIONS(1768), + [aux_sym_cmd_identifier_token9] = ACTIONS(1768), + [aux_sym_cmd_identifier_token10] = ACTIONS(1770), + [aux_sym_cmd_identifier_token11] = ACTIONS(1770), + [aux_sym_cmd_identifier_token12] = ACTIONS(1768), + [aux_sym_cmd_identifier_token13] = ACTIONS(1768), + [aux_sym_cmd_identifier_token14] = ACTIONS(1768), + [aux_sym_cmd_identifier_token15] = ACTIONS(1768), + [aux_sym_cmd_identifier_token16] = ACTIONS(1770), + [aux_sym_cmd_identifier_token17] = ACTIONS(1770), + [aux_sym_cmd_identifier_token18] = ACTIONS(1770), + [aux_sym_cmd_identifier_token19] = ACTIONS(1770), + [aux_sym_cmd_identifier_token20] = ACTIONS(1770), + [aux_sym_cmd_identifier_token21] = ACTIONS(1770), + [aux_sym_cmd_identifier_token22] = ACTIONS(1770), + [aux_sym_cmd_identifier_token23] = ACTIONS(1770), + [aux_sym_cmd_identifier_token24] = ACTIONS(1770), + [aux_sym_cmd_identifier_token25] = ACTIONS(1770), + [aux_sym_cmd_identifier_token26] = ACTIONS(1770), + [aux_sym_cmd_identifier_token27] = ACTIONS(1770), + [aux_sym_cmd_identifier_token28] = ACTIONS(1770), + [aux_sym_cmd_identifier_token29] = ACTIONS(1770), + [aux_sym_cmd_identifier_token30] = ACTIONS(1770), + [aux_sym_cmd_identifier_token31] = ACTIONS(1770), + [aux_sym_cmd_identifier_token32] = ACTIONS(1770), + [aux_sym_cmd_identifier_token33] = ACTIONS(1770), + [aux_sym_cmd_identifier_token34] = ACTIONS(1768), + [aux_sym_cmd_identifier_token35] = ACTIONS(1770), + [aux_sym_cmd_identifier_token36] = ACTIONS(1770), + [aux_sym_cmd_identifier_token37] = ACTIONS(1770), + [aux_sym_cmd_identifier_token38] = ACTIONS(1768), + [aux_sym_cmd_identifier_token39] = ACTIONS(1770), + [aux_sym_cmd_identifier_token40] = ACTIONS(1770), + [anon_sym_def] = ACTIONS(1768), + [anon_sym_export_DASHenv] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_module] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_error] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_make] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_try] = ACTIONS(1768), + [anon_sym_catch] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_source] = ACTIONS(1768), + [anon_sym_source_DASHenv] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_hide] = ACTIONS(1768), + [anon_sym_hide_DASHenv] = ACTIONS(1768), + [anon_sym_overlay] = ACTIONS(1768), + [anon_sym_as] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1768), + [aux_sym__val_number_token5] = ACTIONS(1768), + [aux_sym__val_number_token6] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(1915), + [aux_sym__immediate_decimal_token2] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [391] = { + [sym_comment] = STATE(391), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1868), + [aux_sym_cmd_identifier_token3] = ACTIONS(1868), + [aux_sym_cmd_identifier_token4] = ACTIONS(1868), + [aux_sym_cmd_identifier_token5] = ACTIONS(1868), + [aux_sym_cmd_identifier_token6] = ACTIONS(1868), + [aux_sym_cmd_identifier_token7] = ACTIONS(1868), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1868), + [aux_sym_cmd_identifier_token11] = ACTIONS(1868), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1868), + [aux_sym_cmd_identifier_token17] = ACTIONS(1868), + [aux_sym_cmd_identifier_token18] = ACTIONS(1868), + [aux_sym_cmd_identifier_token19] = ACTIONS(1868), + [aux_sym_cmd_identifier_token20] = ACTIONS(1868), + [aux_sym_cmd_identifier_token21] = ACTIONS(1868), + [aux_sym_cmd_identifier_token22] = ACTIONS(1868), + [aux_sym_cmd_identifier_token23] = ACTIONS(1868), + [aux_sym_cmd_identifier_token24] = ACTIONS(1868), + [aux_sym_cmd_identifier_token25] = ACTIONS(1868), + [aux_sym_cmd_identifier_token26] = ACTIONS(1868), + [aux_sym_cmd_identifier_token27] = ACTIONS(1868), + [aux_sym_cmd_identifier_token28] = ACTIONS(1868), + [aux_sym_cmd_identifier_token29] = ACTIONS(1868), + [aux_sym_cmd_identifier_token30] = ACTIONS(1868), + [aux_sym_cmd_identifier_token31] = ACTIONS(1868), + [aux_sym_cmd_identifier_token32] = ACTIONS(1868), + [aux_sym_cmd_identifier_token33] = ACTIONS(1868), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1868), + [aux_sym_cmd_identifier_token36] = ACTIONS(1868), + [aux_sym_cmd_identifier_token37] = ACTIONS(1868), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1868), + [aux_sym_cmd_identifier_token40] = ACTIONS(1868), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1868), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1868), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1868), + }, + [393] = { + [sym_path] = STATE(421), + [sym_comment] = STATE(393), + [aux_sym_cell_path_repeat1] = STATE(386), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [aux_sym_cmd_identifier_token37] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1481), + }, + [394] = { + [sym_cell_path] = STATE(535), + [sym_path] = STATE(483), + [sym_comment] = STATE(394), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_alias] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_let_DASHenv] = ACTIONS(1886), + [anon_sym_mut] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [aux_sym_cmd_identifier_token1] = ACTIONS(1886), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1886), + [aux_sym_cmd_identifier_token9] = ACTIONS(1886), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1886), + [aux_sym_cmd_identifier_token13] = ACTIONS(1886), + [aux_sym_cmd_identifier_token14] = ACTIONS(1886), + [aux_sym_cmd_identifier_token15] = ACTIONS(1886), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1886), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [aux_sym_cmd_identifier_token37] = ACTIONS(1888), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1888), + [aux_sym_cmd_identifier_token40] = ACTIONS(1888), + [anon_sym_def] = ACTIONS(1886), + [anon_sym_export_DASHenv] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_error] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_in2] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_make] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_source] = ACTIONS(1886), + [anon_sym_source_DASHenv] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_hide] = ACTIONS(1886), + [anon_sym_hide_DASHenv] = ACTIONS(1886), + [anon_sym_overlay] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), + }, + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [396] = { + [sym_comment] = STATE(396), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [397] = { + [sym_cell_path] = STATE(557), + [sym_path] = STATE(483), + [sym_comment] = STATE(397), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_alias] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_let_DASHenv] = ACTIONS(1880), + [anon_sym_mut] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [aux_sym_cmd_identifier_token1] = ACTIONS(1880), + [aux_sym_cmd_identifier_token2] = ACTIONS(1884), + [aux_sym_cmd_identifier_token3] = ACTIONS(1884), + [aux_sym_cmd_identifier_token4] = ACTIONS(1884), + [aux_sym_cmd_identifier_token5] = ACTIONS(1884), + [aux_sym_cmd_identifier_token6] = ACTIONS(1884), + [aux_sym_cmd_identifier_token7] = ACTIONS(1884), + [aux_sym_cmd_identifier_token8] = ACTIONS(1880), + [aux_sym_cmd_identifier_token9] = ACTIONS(1880), + [aux_sym_cmd_identifier_token10] = ACTIONS(1884), + [aux_sym_cmd_identifier_token11] = ACTIONS(1884), + [aux_sym_cmd_identifier_token12] = ACTIONS(1880), + [aux_sym_cmd_identifier_token13] = ACTIONS(1880), + [aux_sym_cmd_identifier_token14] = ACTIONS(1880), + [aux_sym_cmd_identifier_token15] = ACTIONS(1880), + [aux_sym_cmd_identifier_token16] = ACTIONS(1884), + [aux_sym_cmd_identifier_token17] = ACTIONS(1884), + [aux_sym_cmd_identifier_token18] = ACTIONS(1884), + [aux_sym_cmd_identifier_token19] = ACTIONS(1884), + [aux_sym_cmd_identifier_token20] = ACTIONS(1884), + [aux_sym_cmd_identifier_token21] = ACTIONS(1884), + [aux_sym_cmd_identifier_token22] = ACTIONS(1884), + [aux_sym_cmd_identifier_token23] = ACTIONS(1884), + [aux_sym_cmd_identifier_token24] = ACTIONS(1884), + [aux_sym_cmd_identifier_token25] = ACTIONS(1884), + [aux_sym_cmd_identifier_token26] = ACTIONS(1884), + [aux_sym_cmd_identifier_token27] = ACTIONS(1884), + [aux_sym_cmd_identifier_token28] = ACTIONS(1884), + [aux_sym_cmd_identifier_token29] = ACTIONS(1884), + [aux_sym_cmd_identifier_token30] = ACTIONS(1884), + [aux_sym_cmd_identifier_token31] = ACTIONS(1884), + [aux_sym_cmd_identifier_token32] = ACTIONS(1884), + [aux_sym_cmd_identifier_token33] = ACTIONS(1884), + [aux_sym_cmd_identifier_token34] = ACTIONS(1880), + [aux_sym_cmd_identifier_token35] = ACTIONS(1884), + [aux_sym_cmd_identifier_token36] = ACTIONS(1884), + [aux_sym_cmd_identifier_token37] = ACTIONS(1884), + [aux_sym_cmd_identifier_token38] = ACTIONS(1880), + [aux_sym_cmd_identifier_token39] = ACTIONS(1884), + [aux_sym_cmd_identifier_token40] = ACTIONS(1884), + [anon_sym_def] = ACTIONS(1880), + [anon_sym_export_DASHenv] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_error] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_in2] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_make] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_source] = ACTIONS(1880), + [anon_sym_source_DASHenv] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_hide] = ACTIONS(1880), + [anon_sym_hide_DASHenv] = ACTIONS(1880), + [anon_sym_overlay] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1884), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1884), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1884), + [aux_sym__val_number_decimal_token3] = ACTIONS(1884), + [aux_sym__val_number_decimal_token4] = ACTIONS(1884), + [aux_sym__val_number_token1] = ACTIONS(1884), + [aux_sym__val_number_token2] = ACTIONS(1884), + [aux_sym__val_number_token3] = ACTIONS(1884), + [aux_sym__val_number_token4] = ACTIONS(1880), + [aux_sym__val_number_token5] = ACTIONS(1880), + [aux_sym__val_number_token6] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym__str_single_quotes] = ACTIONS(1884), + [sym__str_back_ticks] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1884), + }, + [398] = { + [sym_cell_path] = STATE(545), + [sym_path] = STATE(483), + [sym_comment] = STATE(398), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1475), + [aux_sym_cmd_identifier_token3] = ACTIONS(1475), + [aux_sym_cmd_identifier_token4] = ACTIONS(1475), + [aux_sym_cmd_identifier_token5] = ACTIONS(1475), + [aux_sym_cmd_identifier_token6] = ACTIONS(1475), + [aux_sym_cmd_identifier_token7] = ACTIONS(1475), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1475), + [aux_sym_cmd_identifier_token11] = ACTIONS(1475), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1475), + [aux_sym_cmd_identifier_token17] = ACTIONS(1475), + [aux_sym_cmd_identifier_token18] = ACTIONS(1475), + [aux_sym_cmd_identifier_token19] = ACTIONS(1475), + [aux_sym_cmd_identifier_token20] = ACTIONS(1475), + [aux_sym_cmd_identifier_token21] = ACTIONS(1475), + [aux_sym_cmd_identifier_token22] = ACTIONS(1475), + [aux_sym_cmd_identifier_token23] = ACTIONS(1475), + [aux_sym_cmd_identifier_token24] = ACTIONS(1475), + [aux_sym_cmd_identifier_token25] = ACTIONS(1475), + [aux_sym_cmd_identifier_token26] = ACTIONS(1475), + [aux_sym_cmd_identifier_token27] = ACTIONS(1475), + [aux_sym_cmd_identifier_token28] = ACTIONS(1475), + [aux_sym_cmd_identifier_token29] = ACTIONS(1475), + [aux_sym_cmd_identifier_token30] = ACTIONS(1475), + [aux_sym_cmd_identifier_token31] = ACTIONS(1475), + [aux_sym_cmd_identifier_token32] = ACTIONS(1475), + [aux_sym_cmd_identifier_token33] = ACTIONS(1475), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1475), + [aux_sym_cmd_identifier_token36] = ACTIONS(1475), + [aux_sym_cmd_identifier_token37] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [399] = { + [sym_path] = STATE(483), + [sym_comment] = STATE(399), + [aux_sym_cell_path_repeat1] = STATE(399), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1485), + [aux_sym_cmd_identifier_token3] = ACTIONS(1485), + [aux_sym_cmd_identifier_token4] = ACTIONS(1485), + [aux_sym_cmd_identifier_token5] = ACTIONS(1485), + [aux_sym_cmd_identifier_token6] = ACTIONS(1485), + [aux_sym_cmd_identifier_token7] = ACTIONS(1485), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1485), + [aux_sym_cmd_identifier_token11] = ACTIONS(1485), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1485), + [aux_sym_cmd_identifier_token17] = ACTIONS(1485), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1485), + [aux_sym_cmd_identifier_token20] = ACTIONS(1485), + [aux_sym_cmd_identifier_token21] = ACTIONS(1485), + [aux_sym_cmd_identifier_token22] = ACTIONS(1485), + [aux_sym_cmd_identifier_token23] = ACTIONS(1485), + [aux_sym_cmd_identifier_token24] = ACTIONS(1485), + [aux_sym_cmd_identifier_token25] = ACTIONS(1485), + [aux_sym_cmd_identifier_token26] = ACTIONS(1485), + [aux_sym_cmd_identifier_token27] = ACTIONS(1485), + [aux_sym_cmd_identifier_token28] = ACTIONS(1485), + [aux_sym_cmd_identifier_token29] = ACTIONS(1485), + [aux_sym_cmd_identifier_token30] = ACTIONS(1485), + [aux_sym_cmd_identifier_token31] = ACTIONS(1485), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1485), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1485), + [aux_sym_cmd_identifier_token36] = ACTIONS(1485), + [aux_sym_cmd_identifier_token37] = ACTIONS(1485), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1485), + [aux_sym_cmd_identifier_token40] = ACTIONS(1485), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1927), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), + }, + [400] = { + [sym_comment] = STATE(400), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(1930), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [401] = { + [sym_comment] = STATE(401), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(1932), + [aux_sym__immediate_decimal_token2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [402] = { + [sym_comment] = STATE(402), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [aux_sym_cmd_identifier_token37] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1512), + }, + [403] = { + [sym_comment] = STATE(403), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1506), + [aux_sym_cmd_identifier_token3] = ACTIONS(1506), + [aux_sym_cmd_identifier_token4] = ACTIONS(1506), + [aux_sym_cmd_identifier_token5] = ACTIONS(1506), + [aux_sym_cmd_identifier_token6] = ACTIONS(1506), + [aux_sym_cmd_identifier_token7] = ACTIONS(1506), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1506), + [aux_sym_cmd_identifier_token11] = ACTIONS(1506), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1506), + [aux_sym_cmd_identifier_token17] = ACTIONS(1506), + [aux_sym_cmd_identifier_token18] = ACTIONS(1506), + [aux_sym_cmd_identifier_token19] = ACTIONS(1506), + [aux_sym_cmd_identifier_token20] = ACTIONS(1506), + [aux_sym_cmd_identifier_token21] = ACTIONS(1506), + [aux_sym_cmd_identifier_token22] = ACTIONS(1506), + [aux_sym_cmd_identifier_token23] = ACTIONS(1506), + [aux_sym_cmd_identifier_token24] = ACTIONS(1506), + [aux_sym_cmd_identifier_token25] = ACTIONS(1506), + [aux_sym_cmd_identifier_token26] = ACTIONS(1506), + [aux_sym_cmd_identifier_token27] = ACTIONS(1506), + [aux_sym_cmd_identifier_token28] = ACTIONS(1506), + [aux_sym_cmd_identifier_token29] = ACTIONS(1506), + [aux_sym_cmd_identifier_token30] = ACTIONS(1506), + [aux_sym_cmd_identifier_token31] = ACTIONS(1506), + [aux_sym_cmd_identifier_token32] = ACTIONS(1506), + [aux_sym_cmd_identifier_token33] = ACTIONS(1506), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1506), + [aux_sym_cmd_identifier_token36] = ACTIONS(1506), + [aux_sym_cmd_identifier_token37] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [sym__entry_separator] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1508), + }, + [404] = { + [sym_comment] = STATE(404), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1936), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [sym__entry_separator] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1516), + }, + [406] = { + [sym_comment] = STATE(406), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_alias] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_let_DASHenv] = ACTIONS(1940), + [anon_sym_mut] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [aux_sym_cmd_identifier_token1] = ACTIONS(1940), + [aux_sym_cmd_identifier_token2] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1940), + [aux_sym_cmd_identifier_token4] = ACTIONS(1940), + [aux_sym_cmd_identifier_token5] = ACTIONS(1940), + [aux_sym_cmd_identifier_token6] = ACTIONS(1940), + [aux_sym_cmd_identifier_token7] = ACTIONS(1940), + [aux_sym_cmd_identifier_token8] = ACTIONS(1940), + [aux_sym_cmd_identifier_token9] = ACTIONS(1940), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1940), + [aux_sym_cmd_identifier_token13] = ACTIONS(1940), + [aux_sym_cmd_identifier_token14] = ACTIONS(1940), + [aux_sym_cmd_identifier_token15] = ACTIONS(1940), + [aux_sym_cmd_identifier_token16] = ACTIONS(1940), + [aux_sym_cmd_identifier_token17] = ACTIONS(1940), + [aux_sym_cmd_identifier_token18] = ACTIONS(1940), + [aux_sym_cmd_identifier_token19] = ACTIONS(1940), + [aux_sym_cmd_identifier_token20] = ACTIONS(1940), + [aux_sym_cmd_identifier_token21] = ACTIONS(1940), + [aux_sym_cmd_identifier_token22] = ACTIONS(1940), + [aux_sym_cmd_identifier_token23] = ACTIONS(1940), + [aux_sym_cmd_identifier_token24] = ACTIONS(1940), + [aux_sym_cmd_identifier_token25] = ACTIONS(1940), + [aux_sym_cmd_identifier_token26] = ACTIONS(1940), + [aux_sym_cmd_identifier_token27] = ACTIONS(1940), + [aux_sym_cmd_identifier_token28] = ACTIONS(1940), + [aux_sym_cmd_identifier_token29] = ACTIONS(1940), + [aux_sym_cmd_identifier_token30] = ACTIONS(1940), + [aux_sym_cmd_identifier_token31] = ACTIONS(1940), + [aux_sym_cmd_identifier_token32] = ACTIONS(1940), + [aux_sym_cmd_identifier_token33] = ACTIONS(1940), + [aux_sym_cmd_identifier_token34] = ACTIONS(1940), + [aux_sym_cmd_identifier_token35] = ACTIONS(1940), + [aux_sym_cmd_identifier_token36] = ACTIONS(1940), + [aux_sym_cmd_identifier_token37] = ACTIONS(1940), + [aux_sym_cmd_identifier_token38] = ACTIONS(1940), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1940), + [anon_sym_export_DASHenv] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_error] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_in2] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_make] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_source] = ACTIONS(1940), + [anon_sym_source_DASHenv] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_hide] = ACTIONS(1940), + [anon_sym_hide_DASHenv] = ACTIONS(1940), + [anon_sym_overlay] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT_DOT2] = ACTIONS(1944), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1940), + [aux_sym__val_number_decimal_token3] = ACTIONS(1940), + [aux_sym__val_number_decimal_token4] = ACTIONS(1940), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1940), + [aux_sym__val_number_token5] = ACTIONS(1940), + [aux_sym__val_number_token6] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [sym__entry_separator] = ACTIONS(1948), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1948), + }, + [407] = { + [sym_comment] = STATE(407), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [aux_sym_cmd_identifier_token37] = ACTIONS(1496), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1496), + [aux_sym_cmd_identifier_token40] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1496), + [aux_sym__val_number_token2] = ACTIONS(1496), + [aux_sym__val_number_token3] = ACTIONS(1496), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym__str_single_quotes] = ACTIONS(1496), + [sym__str_back_ticks] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1498), + }, + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_alias] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_let_DASHenv] = ACTIONS(1950), + [anon_sym_mut] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [aux_sym_cmd_identifier_token1] = ACTIONS(1950), + [aux_sym_cmd_identifier_token2] = ACTIONS(1950), + [aux_sym_cmd_identifier_token3] = ACTIONS(1950), + [aux_sym_cmd_identifier_token4] = ACTIONS(1950), + [aux_sym_cmd_identifier_token5] = ACTIONS(1950), + [aux_sym_cmd_identifier_token6] = ACTIONS(1950), + [aux_sym_cmd_identifier_token7] = ACTIONS(1950), + [aux_sym_cmd_identifier_token8] = ACTIONS(1950), + [aux_sym_cmd_identifier_token9] = ACTIONS(1950), + [aux_sym_cmd_identifier_token10] = ACTIONS(1950), + [aux_sym_cmd_identifier_token11] = ACTIONS(1950), + [aux_sym_cmd_identifier_token12] = ACTIONS(1950), + [aux_sym_cmd_identifier_token13] = ACTIONS(1950), + [aux_sym_cmd_identifier_token14] = ACTIONS(1950), + [aux_sym_cmd_identifier_token15] = ACTIONS(1950), + [aux_sym_cmd_identifier_token16] = ACTIONS(1950), + [aux_sym_cmd_identifier_token17] = ACTIONS(1950), + [aux_sym_cmd_identifier_token18] = ACTIONS(1950), + [aux_sym_cmd_identifier_token19] = ACTIONS(1950), + [aux_sym_cmd_identifier_token20] = ACTIONS(1950), + [aux_sym_cmd_identifier_token21] = ACTIONS(1950), + [aux_sym_cmd_identifier_token22] = ACTIONS(1950), + [aux_sym_cmd_identifier_token23] = ACTIONS(1950), + [aux_sym_cmd_identifier_token24] = ACTIONS(1950), + [aux_sym_cmd_identifier_token25] = ACTIONS(1950), + [aux_sym_cmd_identifier_token26] = ACTIONS(1950), + [aux_sym_cmd_identifier_token27] = ACTIONS(1950), + [aux_sym_cmd_identifier_token28] = ACTIONS(1950), + [aux_sym_cmd_identifier_token29] = ACTIONS(1950), + [aux_sym_cmd_identifier_token30] = ACTIONS(1950), + [aux_sym_cmd_identifier_token31] = ACTIONS(1950), + [aux_sym_cmd_identifier_token32] = ACTIONS(1950), + [aux_sym_cmd_identifier_token33] = ACTIONS(1950), + [aux_sym_cmd_identifier_token34] = ACTIONS(1950), + [aux_sym_cmd_identifier_token35] = ACTIONS(1950), + [aux_sym_cmd_identifier_token36] = ACTIONS(1950), + [aux_sym_cmd_identifier_token37] = ACTIONS(1950), + [aux_sym_cmd_identifier_token38] = ACTIONS(1950), + [aux_sym_cmd_identifier_token39] = ACTIONS(1950), + [aux_sym_cmd_identifier_token40] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_export_DASHenv] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_error] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_in2] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_make] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_else] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_catch] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_source] = ACTIONS(1950), + [anon_sym_source_DASHenv] = ACTIONS(1950), + [anon_sym_register] = ACTIONS(1950), + [anon_sym_hide] = ACTIONS(1950), + [anon_sym_hide_DASHenv] = ACTIONS(1950), + [anon_sym_overlay] = ACTIONS(1950), + [anon_sym_as] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), + [anon_sym_DOT_DOT2] = ACTIONS(1954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), + [sym__entry_separator] = ACTIONS(1958), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1958), + }, + [409] = { + [sym_comment] = STATE(409), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1500), + [aux_sym_cmd_identifier_token3] = ACTIONS(1500), + [aux_sym_cmd_identifier_token4] = ACTIONS(1500), + [aux_sym_cmd_identifier_token5] = ACTIONS(1500), + [aux_sym_cmd_identifier_token6] = ACTIONS(1500), + [aux_sym_cmd_identifier_token7] = ACTIONS(1500), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1500), + [aux_sym_cmd_identifier_token11] = ACTIONS(1500), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1500), + [aux_sym_cmd_identifier_token17] = ACTIONS(1500), + [aux_sym_cmd_identifier_token18] = ACTIONS(1500), + [aux_sym_cmd_identifier_token19] = ACTIONS(1500), + [aux_sym_cmd_identifier_token20] = ACTIONS(1500), + [aux_sym_cmd_identifier_token21] = ACTIONS(1500), + [aux_sym_cmd_identifier_token22] = ACTIONS(1500), + [aux_sym_cmd_identifier_token23] = ACTIONS(1500), + [aux_sym_cmd_identifier_token24] = ACTIONS(1500), + [aux_sym_cmd_identifier_token25] = ACTIONS(1500), + [aux_sym_cmd_identifier_token26] = ACTIONS(1500), + [aux_sym_cmd_identifier_token27] = ACTIONS(1500), + [aux_sym_cmd_identifier_token28] = ACTIONS(1500), + [aux_sym_cmd_identifier_token29] = ACTIONS(1500), + [aux_sym_cmd_identifier_token30] = ACTIONS(1500), + [aux_sym_cmd_identifier_token31] = ACTIONS(1500), + [aux_sym_cmd_identifier_token32] = ACTIONS(1500), + [aux_sym_cmd_identifier_token33] = ACTIONS(1500), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1500), + [aux_sym_cmd_identifier_token36] = ACTIONS(1500), + [aux_sym_cmd_identifier_token37] = ACTIONS(1500), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1500), + [aux_sym_cmd_identifier_token40] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(1962), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1500), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1500), + [aux_sym__val_number_decimal_token3] = ACTIONS(1500), + [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_token1] = ACTIONS(1500), + [aux_sym__val_number_token2] = ACTIONS(1500), + [aux_sym__val_number_token3] = ACTIONS(1500), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym__str_single_quotes] = ACTIONS(1500), + [sym__str_back_ticks] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1500), + [sym__entry_separator] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1502), + }, + [410] = { + [sym_comment] = STATE(410), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1490), + [aux_sym_cmd_identifier_token3] = ACTIONS(1490), + [aux_sym_cmd_identifier_token4] = ACTIONS(1490), + [aux_sym_cmd_identifier_token5] = ACTIONS(1490), + [aux_sym_cmd_identifier_token6] = ACTIONS(1490), + [aux_sym_cmd_identifier_token7] = ACTIONS(1490), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1490), + [aux_sym_cmd_identifier_token11] = ACTIONS(1490), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1490), + [aux_sym_cmd_identifier_token17] = ACTIONS(1490), + [aux_sym_cmd_identifier_token18] = ACTIONS(1490), + [aux_sym_cmd_identifier_token19] = ACTIONS(1490), + [aux_sym_cmd_identifier_token20] = ACTIONS(1490), + [aux_sym_cmd_identifier_token21] = ACTIONS(1490), + [aux_sym_cmd_identifier_token22] = ACTIONS(1490), + [aux_sym_cmd_identifier_token23] = ACTIONS(1490), + [aux_sym_cmd_identifier_token24] = ACTIONS(1490), + [aux_sym_cmd_identifier_token25] = ACTIONS(1490), + [aux_sym_cmd_identifier_token26] = ACTIONS(1490), + [aux_sym_cmd_identifier_token27] = ACTIONS(1490), + [aux_sym_cmd_identifier_token28] = ACTIONS(1490), + [aux_sym_cmd_identifier_token29] = ACTIONS(1490), + [aux_sym_cmd_identifier_token30] = ACTIONS(1490), + [aux_sym_cmd_identifier_token31] = ACTIONS(1490), + [aux_sym_cmd_identifier_token32] = ACTIONS(1490), + [aux_sym_cmd_identifier_token33] = ACTIONS(1490), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1490), + [aux_sym_cmd_identifier_token36] = ACTIONS(1490), + [aux_sym_cmd_identifier_token37] = ACTIONS(1490), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1490), + [aux_sym_cmd_identifier_token40] = ACTIONS(1490), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(1964), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1490), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1490), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1490), + [aux_sym__val_number_decimal_token4] = ACTIONS(1490), + [aux_sym__val_number_token1] = ACTIONS(1490), + [aux_sym__val_number_token2] = ACTIONS(1490), + [aux_sym__val_number_token3] = ACTIONS(1490), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym__str_single_quotes] = ACTIONS(1490), + [sym__str_back_ticks] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1490), + [sym__entry_separator] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1492), + }, + [411] = { + [sym_path] = STATE(483), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(399), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [aux_sym_cmd_identifier_token37] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), + }, + [412] = { + [sym_comment] = STATE(412), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [413] = { + [sym_comment] = STATE(413), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [415] = { + [sym_cell_path] = STATE(589), + [sym_path] = STATE(546), + [sym_comment] = STATE(415), + [aux_sym_cell_path_repeat1] = STATE(457), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1475), + [aux_sym_cmd_identifier_token3] = ACTIONS(1475), + [aux_sym_cmd_identifier_token4] = ACTIONS(1475), + [aux_sym_cmd_identifier_token5] = ACTIONS(1475), + [aux_sym_cmd_identifier_token6] = ACTIONS(1475), + [aux_sym_cmd_identifier_token7] = ACTIONS(1475), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1475), + [aux_sym_cmd_identifier_token11] = ACTIONS(1475), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1475), + [aux_sym_cmd_identifier_token17] = ACTIONS(1475), + [aux_sym_cmd_identifier_token18] = ACTIONS(1475), + [aux_sym_cmd_identifier_token19] = ACTIONS(1475), + [aux_sym_cmd_identifier_token20] = ACTIONS(1475), + [aux_sym_cmd_identifier_token21] = ACTIONS(1475), + [aux_sym_cmd_identifier_token22] = ACTIONS(1475), + [aux_sym_cmd_identifier_token23] = ACTIONS(1475), + [aux_sym_cmd_identifier_token24] = ACTIONS(1475), + [aux_sym_cmd_identifier_token25] = ACTIONS(1475), + [aux_sym_cmd_identifier_token26] = ACTIONS(1475), + [aux_sym_cmd_identifier_token27] = ACTIONS(1475), + [aux_sym_cmd_identifier_token28] = ACTIONS(1475), + [aux_sym_cmd_identifier_token29] = ACTIONS(1475), + [aux_sym_cmd_identifier_token30] = ACTIONS(1475), + [aux_sym_cmd_identifier_token31] = ACTIONS(1475), + [aux_sym_cmd_identifier_token32] = ACTIONS(1475), + [aux_sym_cmd_identifier_token33] = ACTIONS(1475), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1475), + [aux_sym_cmd_identifier_token36] = ACTIONS(1475), + [aux_sym_cmd_identifier_token37] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [417] = { + [sym_comment] = STATE(417), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1968), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(1970), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(2219), - [aux_sym__immediate_decimal_token2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), + [418] = { + [sym_cell_path] = STATE(647), + [sym_path] = STATE(618), + [sym_comment] = STATE(418), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [aux_sym_cmd_identifier_token37] = ACTIONS(1972), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1972), + [aux_sym_cmd_identifier_token40] = ACTIONS(1972), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1972), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1972), + [aux_sym__val_number_token2] = ACTIONS(1972), + [aux_sym__val_number_token3] = ACTIONS(1972), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym__str_single_quotes] = ACTIONS(1972), + [sym__str_back_ticks] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), + [sym__entry_separator] = ACTIONS(1976), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(1976), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [aux_sym_cmd_identifier_token37] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), + [419] = { + [sym_comment] = STATE(419), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [aux_sym_record_entry_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [420] = { + [sym_comment] = STATE(420), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1498), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [aux_sym_cmd_identifier_token6] = ACTIONS(1498), + [aux_sym_cmd_identifier_token7] = ACTIONS(1498), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1498), + [aux_sym_cmd_identifier_token11] = ACTIONS(1498), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1498), + [aux_sym_cmd_identifier_token17] = ACTIONS(1498), + [aux_sym_cmd_identifier_token18] = ACTIONS(1498), + [aux_sym_cmd_identifier_token19] = ACTIONS(1498), + [aux_sym_cmd_identifier_token20] = ACTIONS(1498), + [aux_sym_cmd_identifier_token21] = ACTIONS(1498), + [aux_sym_cmd_identifier_token22] = ACTIONS(1498), + [aux_sym_cmd_identifier_token23] = ACTIONS(1498), + [aux_sym_cmd_identifier_token24] = ACTIONS(1498), + [aux_sym_cmd_identifier_token25] = ACTIONS(1498), + [aux_sym_cmd_identifier_token26] = ACTIONS(1498), + [aux_sym_cmd_identifier_token27] = ACTIONS(1498), + [aux_sym_cmd_identifier_token28] = ACTIONS(1498), + [aux_sym_cmd_identifier_token29] = ACTIONS(1498), + [aux_sym_cmd_identifier_token30] = ACTIONS(1498), + [aux_sym_cmd_identifier_token31] = ACTIONS(1498), + [aux_sym_cmd_identifier_token32] = ACTIONS(1498), + [aux_sym_cmd_identifier_token33] = ACTIONS(1498), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1498), + [aux_sym_cmd_identifier_token36] = ACTIONS(1498), + [aux_sym_cmd_identifier_token37] = ACTIONS(1498), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1498), + [aux_sym_cmd_identifier_token40] = ACTIONS(1498), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [aux_sym_record_entry_token1] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [421] = { + [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1526), + [aux_sym_cmd_identifier_token3] = ACTIONS(1526), + [aux_sym_cmd_identifier_token4] = ACTIONS(1526), + [aux_sym_cmd_identifier_token5] = ACTIONS(1526), + [aux_sym_cmd_identifier_token6] = ACTIONS(1526), + [aux_sym_cmd_identifier_token7] = ACTIONS(1526), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1526), + [aux_sym_cmd_identifier_token11] = ACTIONS(1526), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1526), + [aux_sym_cmd_identifier_token17] = ACTIONS(1526), + [aux_sym_cmd_identifier_token18] = ACTIONS(1526), + [aux_sym_cmd_identifier_token19] = ACTIONS(1526), + [aux_sym_cmd_identifier_token20] = ACTIONS(1526), + [aux_sym_cmd_identifier_token21] = ACTIONS(1526), + [aux_sym_cmd_identifier_token22] = ACTIONS(1526), + [aux_sym_cmd_identifier_token23] = ACTIONS(1526), + [aux_sym_cmd_identifier_token24] = ACTIONS(1526), + [aux_sym_cmd_identifier_token25] = ACTIONS(1526), + [aux_sym_cmd_identifier_token26] = ACTIONS(1526), + [aux_sym_cmd_identifier_token27] = ACTIONS(1526), + [aux_sym_cmd_identifier_token28] = ACTIONS(1526), + [aux_sym_cmd_identifier_token29] = ACTIONS(1526), + [aux_sym_cmd_identifier_token30] = ACTIONS(1526), + [aux_sym_cmd_identifier_token31] = ACTIONS(1526), + [aux_sym_cmd_identifier_token32] = ACTIONS(1526), + [aux_sym_cmd_identifier_token33] = ACTIONS(1526), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1526), + [aux_sym_cmd_identifier_token36] = ACTIONS(1526), + [aux_sym_cmd_identifier_token37] = ACTIONS(1526), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1526), + [aux_sym_cmd_identifier_token40] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1526), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1526), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1526), + [aux_sym__val_number_decimal_token4] = ACTIONS(1526), + [aux_sym__val_number_token1] = ACTIONS(1526), + [aux_sym__val_number_token2] = ACTIONS(1526), + [aux_sym__val_number_token3] = ACTIONS(1526), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym__str_single_quotes] = ACTIONS(1526), + [sym__str_back_ticks] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1526), + [sym__entry_separator] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1528), }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [422] = { + [sym_comment] = STATE(422), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1492), + [aux_sym_cmd_identifier_token3] = ACTIONS(1492), + [aux_sym_cmd_identifier_token4] = ACTIONS(1492), + [aux_sym_cmd_identifier_token5] = ACTIONS(1492), + [aux_sym_cmd_identifier_token6] = ACTIONS(1492), + [aux_sym_cmd_identifier_token7] = ACTIONS(1492), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1492), + [aux_sym_cmd_identifier_token11] = ACTIONS(1492), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1492), + [aux_sym_cmd_identifier_token17] = ACTIONS(1492), + [aux_sym_cmd_identifier_token18] = ACTIONS(1492), + [aux_sym_cmd_identifier_token19] = ACTIONS(1492), + [aux_sym_cmd_identifier_token20] = ACTIONS(1492), + [aux_sym_cmd_identifier_token21] = ACTIONS(1492), + [aux_sym_cmd_identifier_token22] = ACTIONS(1492), + [aux_sym_cmd_identifier_token23] = ACTIONS(1492), + [aux_sym_cmd_identifier_token24] = ACTIONS(1492), + [aux_sym_cmd_identifier_token25] = ACTIONS(1492), + [aux_sym_cmd_identifier_token26] = ACTIONS(1492), + [aux_sym_cmd_identifier_token27] = ACTIONS(1492), + [aux_sym_cmd_identifier_token28] = ACTIONS(1492), + [aux_sym_cmd_identifier_token29] = ACTIONS(1492), + [aux_sym_cmd_identifier_token30] = ACTIONS(1492), + [aux_sym_cmd_identifier_token31] = ACTIONS(1492), + [aux_sym_cmd_identifier_token32] = ACTIONS(1492), + [aux_sym_cmd_identifier_token33] = ACTIONS(1492), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1492), + [aux_sym_cmd_identifier_token36] = ACTIONS(1492), + [aux_sym_cmd_identifier_token37] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(1980), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, - [532] = { - [sym_path] = STATE(623), - [sym_comment] = STATE(532), - [aux_sym_cell_path_repeat1] = STATE(533), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [423] = { + [sym_comment] = STATE(423), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), }, - [533] = { - [sym_path] = STATE(623), - [sym_comment] = STATE(533), - [aux_sym_cell_path_repeat1] = STATE(533), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(973), - [aux_sym_cmd_identifier_token23] = ACTIONS(973), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(973), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(973), - [aux_sym_cmd_identifier_token28] = ACTIONS(973), - [aux_sym_cmd_identifier_token29] = ACTIONS(973), - [aux_sym_cmd_identifier_token30] = ACTIONS(973), - [aux_sym_cmd_identifier_token31] = ACTIONS(973), - [aux_sym_cmd_identifier_token32] = ACTIONS(973), - [aux_sym_cmd_identifier_token33] = ACTIONS(973), - [aux_sym_cmd_identifier_token34] = ACTIONS(971), - [aux_sym_cmd_identifier_token35] = ACTIONS(973), - [aux_sym_cmd_identifier_token36] = ACTIONS(973), - [aux_sym_cmd_identifier_token37] = ACTIONS(973), - [aux_sym_cmd_identifier_token38] = ACTIONS(971), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [anon_sym_def] = ACTIONS(971), - [anon_sym_export_DASHenv] = ACTIONS(971), - [anon_sym_extern] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_make] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_source] = ACTIONS(971), - [anon_sym_source_DASHenv] = ACTIONS(971), - [anon_sym_register] = ACTIONS(971), - [anon_sym_hide] = ACTIONS(971), - [anon_sym_hide_DASHenv] = ACTIONS(971), - [anon_sym_overlay] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [424] = { + [sym_comment] = STATE(424), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym__str_single_quotes] = ACTIONS(1026), - [sym__str_back_ticks] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), - [sym__entry_separator] = ACTIONS(1028), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2228), + [425] = { + [sym_cell_path] = STATE(673), + [sym_path] = STATE(618), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1986), + [aux_sym_cmd_identifier_token3] = ACTIONS(1986), + [aux_sym_cmd_identifier_token4] = ACTIONS(1986), + [aux_sym_cmd_identifier_token5] = ACTIONS(1986), + [aux_sym_cmd_identifier_token6] = ACTIONS(1986), + [aux_sym_cmd_identifier_token7] = ACTIONS(1986), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1986), + [aux_sym_cmd_identifier_token11] = ACTIONS(1986), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1986), + [aux_sym_cmd_identifier_token17] = ACTIONS(1986), + [aux_sym_cmd_identifier_token18] = ACTIONS(1986), + [aux_sym_cmd_identifier_token19] = ACTIONS(1986), + [aux_sym_cmd_identifier_token20] = ACTIONS(1986), + [aux_sym_cmd_identifier_token21] = ACTIONS(1986), + [aux_sym_cmd_identifier_token22] = ACTIONS(1986), + [aux_sym_cmd_identifier_token23] = ACTIONS(1986), + [aux_sym_cmd_identifier_token24] = ACTIONS(1986), + [aux_sym_cmd_identifier_token25] = ACTIONS(1986), + [aux_sym_cmd_identifier_token26] = ACTIONS(1986), + [aux_sym_cmd_identifier_token27] = ACTIONS(1986), + [aux_sym_cmd_identifier_token28] = ACTIONS(1986), + [aux_sym_cmd_identifier_token29] = ACTIONS(1986), + [aux_sym_cmd_identifier_token30] = ACTIONS(1986), + [aux_sym_cmd_identifier_token31] = ACTIONS(1986), + [aux_sym_cmd_identifier_token32] = ACTIONS(1986), + [aux_sym_cmd_identifier_token33] = ACTIONS(1986), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1986), + [aux_sym_cmd_identifier_token36] = ACTIONS(1986), + [aux_sym_cmd_identifier_token37] = ACTIONS(1986), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1986), + [aux_sym_cmd_identifier_token40] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1986), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1986), + [sym__entry_separator] = ACTIONS(1988), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(1988), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [aux_sym_cmd_identifier_token37] = ACTIONS(2230), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2230), - [aux_sym_cmd_identifier_token40] = ACTIONS(2230), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in2] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [sym__entry_separator] = ACTIONS(2232), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [426] = { + [sym_comment] = STATE(426), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [aux_sym_cmd_identifier_token37] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2232), + [sym_raw_string_begin] = ACTIONS(1520), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(2234), - [aux_sym__immediate_decimal_token2] = ACTIONS(2236), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), + [427] = { + [sym_comment] = STATE(427), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1522), + [aux_sym_cmd_identifier_token3] = ACTIONS(1522), + [aux_sym_cmd_identifier_token4] = ACTIONS(1522), + [aux_sym_cmd_identifier_token5] = ACTIONS(1522), + [aux_sym_cmd_identifier_token6] = ACTIONS(1522), + [aux_sym_cmd_identifier_token7] = ACTIONS(1522), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1522), + [aux_sym_cmd_identifier_token11] = ACTIONS(1522), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1522), + [aux_sym_cmd_identifier_token17] = ACTIONS(1522), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1522), + [aux_sym_cmd_identifier_token20] = ACTIONS(1522), + [aux_sym_cmd_identifier_token21] = ACTIONS(1522), + [aux_sym_cmd_identifier_token22] = ACTIONS(1522), + [aux_sym_cmd_identifier_token23] = ACTIONS(1522), + [aux_sym_cmd_identifier_token24] = ACTIONS(1522), + [aux_sym_cmd_identifier_token25] = ACTIONS(1522), + [aux_sym_cmd_identifier_token26] = ACTIONS(1522), + [aux_sym_cmd_identifier_token27] = ACTIONS(1522), + [aux_sym_cmd_identifier_token28] = ACTIONS(1522), + [aux_sym_cmd_identifier_token29] = ACTIONS(1522), + [aux_sym_cmd_identifier_token30] = ACTIONS(1522), + [aux_sym_cmd_identifier_token31] = ACTIONS(1522), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1522), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1522), + [aux_sym_cmd_identifier_token36] = ACTIONS(1522), + [aux_sym_cmd_identifier_token37] = ACTIONS(1522), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1522), + [aux_sym_cmd_identifier_token40] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1522), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1522), + [aux_sym__val_number_token2] = ACTIONS(1522), + [aux_sym__val_number_token3] = ACTIONS(1522), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym__str_single_quotes] = ACTIONS(1522), + [sym__str_back_ticks] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1522), + [sym__entry_separator] = ACTIONS(1524), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(1524), }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_alias] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_let_DASHenv] = ACTIONS(2238), - [anon_sym_mut] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [aux_sym_cmd_identifier_token1] = ACTIONS(2238), - [aux_sym_cmd_identifier_token2] = ACTIONS(2238), - [aux_sym_cmd_identifier_token3] = ACTIONS(2238), - [aux_sym_cmd_identifier_token4] = ACTIONS(2238), - [aux_sym_cmd_identifier_token5] = ACTIONS(2238), - [aux_sym_cmd_identifier_token6] = ACTIONS(2238), - [aux_sym_cmd_identifier_token7] = ACTIONS(2238), - [aux_sym_cmd_identifier_token8] = ACTIONS(2238), - [aux_sym_cmd_identifier_token9] = ACTIONS(2238), - [aux_sym_cmd_identifier_token10] = ACTIONS(2238), - [aux_sym_cmd_identifier_token11] = ACTIONS(2238), - [aux_sym_cmd_identifier_token12] = ACTIONS(2238), - [aux_sym_cmd_identifier_token13] = ACTIONS(2238), - [aux_sym_cmd_identifier_token14] = ACTIONS(2238), - [aux_sym_cmd_identifier_token15] = ACTIONS(2238), - [aux_sym_cmd_identifier_token16] = ACTIONS(2238), - [aux_sym_cmd_identifier_token17] = ACTIONS(2238), - [aux_sym_cmd_identifier_token18] = ACTIONS(2238), - [aux_sym_cmd_identifier_token19] = ACTIONS(2238), - [aux_sym_cmd_identifier_token20] = ACTIONS(2238), - [aux_sym_cmd_identifier_token21] = ACTIONS(2238), - [aux_sym_cmd_identifier_token22] = ACTIONS(2238), - [aux_sym_cmd_identifier_token23] = ACTIONS(2238), - [aux_sym_cmd_identifier_token24] = ACTIONS(2238), - [aux_sym_cmd_identifier_token25] = ACTIONS(2238), - [aux_sym_cmd_identifier_token26] = ACTIONS(2238), - [aux_sym_cmd_identifier_token27] = ACTIONS(2238), - [aux_sym_cmd_identifier_token28] = ACTIONS(2238), - [aux_sym_cmd_identifier_token29] = ACTIONS(2238), - [aux_sym_cmd_identifier_token30] = ACTIONS(2238), - [aux_sym_cmd_identifier_token31] = ACTIONS(2238), - [aux_sym_cmd_identifier_token32] = ACTIONS(2238), - [aux_sym_cmd_identifier_token33] = ACTIONS(2238), - [aux_sym_cmd_identifier_token34] = ACTIONS(2238), - [aux_sym_cmd_identifier_token35] = ACTIONS(2238), - [aux_sym_cmd_identifier_token36] = ACTIONS(2238), - [aux_sym_cmd_identifier_token37] = ACTIONS(2238), - [aux_sym_cmd_identifier_token38] = ACTIONS(2238), - [aux_sym_cmd_identifier_token39] = ACTIONS(2238), - [aux_sym_cmd_identifier_token40] = ACTIONS(2238), - [anon_sym_def] = ACTIONS(2238), - [anon_sym_export_DASHenv] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_use] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_error] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_in2] = ACTIONS(2238), - [anon_sym_loop] = ACTIONS(2238), - [anon_sym_make] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_match] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_catch] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_source] = ACTIONS(2238), - [anon_sym_source_DASHenv] = ACTIONS(2238), - [anon_sym_register] = ACTIONS(2238), - [anon_sym_hide] = ACTIONS(2238), - [anon_sym_hide_DASHenv] = ACTIONS(2238), - [anon_sym_overlay] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2238), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_PLUS2] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2238), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2238), - [sym__entry_separator] = ACTIONS(2242), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [538] = { - [sym__expr_parenthesized_immediate] = STATE(7523), - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2173), - [aux_sym_cmd_identifier_token3] = ACTIONS(2173), - [aux_sym_cmd_identifier_token4] = ACTIONS(2173), - [aux_sym_cmd_identifier_token5] = ACTIONS(2173), - [aux_sym_cmd_identifier_token6] = ACTIONS(2173), - [aux_sym_cmd_identifier_token7] = ACTIONS(2173), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2173), - [aux_sym_cmd_identifier_token11] = ACTIONS(2173), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2173), - [aux_sym_cmd_identifier_token17] = ACTIONS(2173), - [aux_sym_cmd_identifier_token18] = ACTIONS(2173), - [aux_sym_cmd_identifier_token19] = ACTIONS(2173), - [aux_sym_cmd_identifier_token20] = ACTIONS(2173), - [aux_sym_cmd_identifier_token21] = ACTIONS(2173), - [aux_sym_cmd_identifier_token22] = ACTIONS(2173), - [aux_sym_cmd_identifier_token23] = ACTIONS(2173), - [aux_sym_cmd_identifier_token24] = ACTIONS(2173), - [aux_sym_cmd_identifier_token25] = ACTIONS(2173), - [aux_sym_cmd_identifier_token26] = ACTIONS(2173), - [aux_sym_cmd_identifier_token27] = ACTIONS(2173), - [aux_sym_cmd_identifier_token28] = ACTIONS(2173), - [aux_sym_cmd_identifier_token29] = ACTIONS(2173), - [aux_sym_cmd_identifier_token30] = ACTIONS(2173), - [aux_sym_cmd_identifier_token31] = ACTIONS(2173), - [aux_sym_cmd_identifier_token32] = ACTIONS(2173), - [aux_sym_cmd_identifier_token33] = ACTIONS(2173), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2173), - [aux_sym_cmd_identifier_token36] = ACTIONS(2173), - [aux_sym_cmd_identifier_token37] = ACTIONS(2173), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2173), - [aux_sym_cmd_identifier_token40] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), - [sym__entry_separator] = ACTIONS(2175), + [429] = { + [sym_cell_path] = STATE(682), + [sym_path] = STATE(618), + [sym_comment] = STATE(429), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1990), + [anon_sym_alias] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_let_DASHenv] = ACTIONS(1990), + [anon_sym_mut] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [aux_sym_cmd_identifier_token1] = ACTIONS(1990), + [aux_sym_cmd_identifier_token2] = ACTIONS(1990), + [aux_sym_cmd_identifier_token3] = ACTIONS(1990), + [aux_sym_cmd_identifier_token4] = ACTIONS(1990), + [aux_sym_cmd_identifier_token5] = ACTIONS(1990), + [aux_sym_cmd_identifier_token6] = ACTIONS(1990), + [aux_sym_cmd_identifier_token7] = ACTIONS(1990), + [aux_sym_cmd_identifier_token8] = ACTIONS(1990), + [aux_sym_cmd_identifier_token9] = ACTIONS(1990), + [aux_sym_cmd_identifier_token10] = ACTIONS(1990), + [aux_sym_cmd_identifier_token11] = ACTIONS(1990), + [aux_sym_cmd_identifier_token12] = ACTIONS(1990), + [aux_sym_cmd_identifier_token13] = ACTIONS(1990), + [aux_sym_cmd_identifier_token14] = ACTIONS(1990), + [aux_sym_cmd_identifier_token15] = ACTIONS(1990), + [aux_sym_cmd_identifier_token16] = ACTIONS(1990), + [aux_sym_cmd_identifier_token17] = ACTIONS(1990), + [aux_sym_cmd_identifier_token18] = ACTIONS(1990), + [aux_sym_cmd_identifier_token19] = ACTIONS(1990), + [aux_sym_cmd_identifier_token20] = ACTIONS(1990), + [aux_sym_cmd_identifier_token21] = ACTIONS(1990), + [aux_sym_cmd_identifier_token22] = ACTIONS(1990), + [aux_sym_cmd_identifier_token23] = ACTIONS(1990), + [aux_sym_cmd_identifier_token24] = ACTIONS(1990), + [aux_sym_cmd_identifier_token25] = ACTIONS(1990), + [aux_sym_cmd_identifier_token26] = ACTIONS(1990), + [aux_sym_cmd_identifier_token27] = ACTIONS(1990), + [aux_sym_cmd_identifier_token28] = ACTIONS(1990), + [aux_sym_cmd_identifier_token29] = ACTIONS(1990), + [aux_sym_cmd_identifier_token30] = ACTIONS(1990), + [aux_sym_cmd_identifier_token31] = ACTIONS(1990), + [aux_sym_cmd_identifier_token32] = ACTIONS(1990), + [aux_sym_cmd_identifier_token33] = ACTIONS(1990), + [aux_sym_cmd_identifier_token34] = ACTIONS(1990), + [aux_sym_cmd_identifier_token35] = ACTIONS(1990), + [aux_sym_cmd_identifier_token36] = ACTIONS(1990), + [aux_sym_cmd_identifier_token37] = ACTIONS(1990), + [aux_sym_cmd_identifier_token38] = ACTIONS(1990), + [aux_sym_cmd_identifier_token39] = ACTIONS(1990), + [aux_sym_cmd_identifier_token40] = ACTIONS(1990), + [anon_sym_def] = ACTIONS(1990), + [anon_sym_export_DASHenv] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_module] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_error] = ACTIONS(1990), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_in2] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_make] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1990), + [anon_sym_catch] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_source] = ACTIONS(1990), + [anon_sym_source_DASHenv] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_hide] = ACTIONS(1990), + [anon_sym_hide_DASHenv] = ACTIONS(1990), + [anon_sym_overlay] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1990), + [anon_sym_PLUS2] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1990), + [aux_sym__val_number_decimal_token1] = ACTIONS(1990), + [aux_sym__val_number_decimal_token2] = ACTIONS(1990), + [aux_sym__val_number_decimal_token3] = ACTIONS(1990), + [aux_sym__val_number_decimal_token4] = ACTIONS(1990), + [aux_sym__val_number_token1] = ACTIONS(1990), + [aux_sym__val_number_token2] = ACTIONS(1990), + [aux_sym__val_number_token3] = ACTIONS(1990), + [aux_sym__val_number_token4] = ACTIONS(1990), + [aux_sym__val_number_token5] = ACTIONS(1990), + [aux_sym__val_number_token6] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1990), + [sym__str_back_ticks] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1990), + [sym__entry_separator] = ACTIONS(1992), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2175), + [sym_raw_string_begin] = ACTIONS(1992), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_alias] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_let_DASHenv] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2246), - [aux_sym_cmd_identifier_token2] = ACTIONS(2246), - [aux_sym_cmd_identifier_token3] = ACTIONS(2246), - [aux_sym_cmd_identifier_token4] = ACTIONS(2246), - [aux_sym_cmd_identifier_token5] = ACTIONS(2246), - [aux_sym_cmd_identifier_token6] = ACTIONS(2246), - [aux_sym_cmd_identifier_token7] = ACTIONS(2246), - [aux_sym_cmd_identifier_token8] = ACTIONS(2246), - [aux_sym_cmd_identifier_token9] = ACTIONS(2246), - [aux_sym_cmd_identifier_token10] = ACTIONS(2246), - [aux_sym_cmd_identifier_token11] = ACTIONS(2246), - [aux_sym_cmd_identifier_token12] = ACTIONS(2246), - [aux_sym_cmd_identifier_token13] = ACTIONS(2246), - [aux_sym_cmd_identifier_token14] = ACTIONS(2246), - [aux_sym_cmd_identifier_token15] = ACTIONS(2246), - [aux_sym_cmd_identifier_token16] = ACTIONS(2246), - [aux_sym_cmd_identifier_token17] = ACTIONS(2246), - [aux_sym_cmd_identifier_token18] = ACTIONS(2246), - [aux_sym_cmd_identifier_token19] = ACTIONS(2246), - [aux_sym_cmd_identifier_token20] = ACTIONS(2246), - [aux_sym_cmd_identifier_token21] = ACTIONS(2246), - [aux_sym_cmd_identifier_token22] = ACTIONS(2246), - [aux_sym_cmd_identifier_token23] = ACTIONS(2246), - [aux_sym_cmd_identifier_token24] = ACTIONS(2246), - [aux_sym_cmd_identifier_token25] = ACTIONS(2246), - [aux_sym_cmd_identifier_token26] = ACTIONS(2246), - [aux_sym_cmd_identifier_token27] = ACTIONS(2246), - [aux_sym_cmd_identifier_token28] = ACTIONS(2246), - [aux_sym_cmd_identifier_token29] = ACTIONS(2246), - [aux_sym_cmd_identifier_token30] = ACTIONS(2246), - [aux_sym_cmd_identifier_token31] = ACTIONS(2246), - [aux_sym_cmd_identifier_token32] = ACTIONS(2246), - [aux_sym_cmd_identifier_token33] = ACTIONS(2246), - [aux_sym_cmd_identifier_token34] = ACTIONS(2246), - [aux_sym_cmd_identifier_token35] = ACTIONS(2246), - [aux_sym_cmd_identifier_token36] = ACTIONS(2246), - [aux_sym_cmd_identifier_token37] = ACTIONS(2246), - [aux_sym_cmd_identifier_token38] = ACTIONS(2246), - [aux_sym_cmd_identifier_token39] = ACTIONS(2246), - [aux_sym_cmd_identifier_token40] = ACTIONS(2246), - [anon_sym_def] = ACTIONS(2246), - [anon_sym_export_DASHenv] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_error] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_make] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_source] = ACTIONS(2246), - [anon_sym_source_DASHenv] = ACTIONS(2246), - [anon_sym_register] = ACTIONS(2246), - [anon_sym_hide] = ACTIONS(2246), - [anon_sym_hide_DASHenv] = ACTIONS(2246), - [anon_sym_overlay] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [aux_sym__val_number_token4] = ACTIONS(2246), - [aux_sym__val_number_token5] = ACTIONS(2246), - [aux_sym__val_number_token6] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [sym__str_single_quotes] = ACTIONS(2246), - [sym__str_back_ticks] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), - [sym__entry_separator] = ACTIONS(2250), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [430] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(618), + [sym_comment] = STATE(430), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1994), + [anon_sym_alias] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_let_DASHenv] = ACTIONS(1994), + [anon_sym_mut] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [aux_sym_cmd_identifier_token1] = ACTIONS(1994), + [aux_sym_cmd_identifier_token2] = ACTIONS(1994), + [aux_sym_cmd_identifier_token3] = ACTIONS(1994), + [aux_sym_cmd_identifier_token4] = ACTIONS(1994), + [aux_sym_cmd_identifier_token5] = ACTIONS(1994), + [aux_sym_cmd_identifier_token6] = ACTIONS(1994), + [aux_sym_cmd_identifier_token7] = ACTIONS(1994), + [aux_sym_cmd_identifier_token8] = ACTIONS(1994), + [aux_sym_cmd_identifier_token9] = ACTIONS(1994), + [aux_sym_cmd_identifier_token10] = ACTIONS(1994), + [aux_sym_cmd_identifier_token11] = ACTIONS(1994), + [aux_sym_cmd_identifier_token12] = ACTIONS(1994), + [aux_sym_cmd_identifier_token13] = ACTIONS(1994), + [aux_sym_cmd_identifier_token14] = ACTIONS(1994), + [aux_sym_cmd_identifier_token15] = ACTIONS(1994), + [aux_sym_cmd_identifier_token16] = ACTIONS(1994), + [aux_sym_cmd_identifier_token17] = ACTIONS(1994), + [aux_sym_cmd_identifier_token18] = ACTIONS(1994), + [aux_sym_cmd_identifier_token19] = ACTIONS(1994), + [aux_sym_cmd_identifier_token20] = ACTIONS(1994), + [aux_sym_cmd_identifier_token21] = ACTIONS(1994), + [aux_sym_cmd_identifier_token22] = ACTIONS(1994), + [aux_sym_cmd_identifier_token23] = ACTIONS(1994), + [aux_sym_cmd_identifier_token24] = ACTIONS(1994), + [aux_sym_cmd_identifier_token25] = ACTIONS(1994), + [aux_sym_cmd_identifier_token26] = ACTIONS(1994), + [aux_sym_cmd_identifier_token27] = ACTIONS(1994), + [aux_sym_cmd_identifier_token28] = ACTIONS(1994), + [aux_sym_cmd_identifier_token29] = ACTIONS(1994), + [aux_sym_cmd_identifier_token30] = ACTIONS(1994), + [aux_sym_cmd_identifier_token31] = ACTIONS(1994), + [aux_sym_cmd_identifier_token32] = ACTIONS(1994), + [aux_sym_cmd_identifier_token33] = ACTIONS(1994), + [aux_sym_cmd_identifier_token34] = ACTIONS(1994), + [aux_sym_cmd_identifier_token35] = ACTIONS(1994), + [aux_sym_cmd_identifier_token36] = ACTIONS(1994), + [aux_sym_cmd_identifier_token37] = ACTIONS(1994), + [aux_sym_cmd_identifier_token38] = ACTIONS(1994), + [aux_sym_cmd_identifier_token39] = ACTIONS(1994), + [aux_sym_cmd_identifier_token40] = ACTIONS(1994), + [anon_sym_def] = ACTIONS(1994), + [anon_sym_export_DASHenv] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_module] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_error] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_in2] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_make] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [anon_sym_catch] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_source] = ACTIONS(1994), + [anon_sym_source_DASHenv] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_hide] = ACTIONS(1994), + [anon_sym_hide_DASHenv] = ACTIONS(1994), + [anon_sym_overlay] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1994), + [anon_sym_PLUS2] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), + [sym__entry_separator] = ACTIONS(1996), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [sym_raw_string_begin] = ACTIONS(1996), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_alias] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_let_DASHenv] = ACTIONS(2254), - [anon_sym_mut] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [aux_sym_cmd_identifier_token1] = ACTIONS(2254), - [aux_sym_cmd_identifier_token2] = ACTIONS(2254), - [aux_sym_cmd_identifier_token3] = ACTIONS(2254), - [aux_sym_cmd_identifier_token4] = ACTIONS(2254), - [aux_sym_cmd_identifier_token5] = ACTIONS(2254), - [aux_sym_cmd_identifier_token6] = ACTIONS(2254), - [aux_sym_cmd_identifier_token7] = ACTIONS(2254), - [aux_sym_cmd_identifier_token8] = ACTIONS(2254), - [aux_sym_cmd_identifier_token9] = ACTIONS(2254), - [aux_sym_cmd_identifier_token10] = ACTIONS(2254), - [aux_sym_cmd_identifier_token11] = ACTIONS(2254), - [aux_sym_cmd_identifier_token12] = ACTIONS(2254), - [aux_sym_cmd_identifier_token13] = ACTIONS(2254), - [aux_sym_cmd_identifier_token14] = ACTIONS(2254), - [aux_sym_cmd_identifier_token15] = ACTIONS(2254), - [aux_sym_cmd_identifier_token16] = ACTIONS(2254), - [aux_sym_cmd_identifier_token17] = ACTIONS(2254), - [aux_sym_cmd_identifier_token18] = ACTIONS(2254), - [aux_sym_cmd_identifier_token19] = ACTIONS(2254), - [aux_sym_cmd_identifier_token20] = ACTIONS(2254), - [aux_sym_cmd_identifier_token21] = ACTIONS(2254), - [aux_sym_cmd_identifier_token22] = ACTIONS(2254), - [aux_sym_cmd_identifier_token23] = ACTIONS(2254), - [aux_sym_cmd_identifier_token24] = ACTIONS(2254), - [aux_sym_cmd_identifier_token25] = ACTIONS(2254), - [aux_sym_cmd_identifier_token26] = ACTIONS(2254), - [aux_sym_cmd_identifier_token27] = ACTIONS(2254), - [aux_sym_cmd_identifier_token28] = ACTIONS(2254), - [aux_sym_cmd_identifier_token29] = ACTIONS(2254), - [aux_sym_cmd_identifier_token30] = ACTIONS(2254), - [aux_sym_cmd_identifier_token31] = ACTIONS(2254), - [aux_sym_cmd_identifier_token32] = ACTIONS(2254), - [aux_sym_cmd_identifier_token33] = ACTIONS(2254), - [aux_sym_cmd_identifier_token34] = ACTIONS(2254), - [aux_sym_cmd_identifier_token35] = ACTIONS(2254), - [aux_sym_cmd_identifier_token36] = ACTIONS(2254), - [aux_sym_cmd_identifier_token37] = ACTIONS(2254), - [aux_sym_cmd_identifier_token38] = ACTIONS(2254), - [aux_sym_cmd_identifier_token39] = ACTIONS(2254), - [aux_sym_cmd_identifier_token40] = ACTIONS(2254), - [anon_sym_def] = ACTIONS(2254), - [anon_sym_export_DASHenv] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_error] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_make] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_catch] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_source] = ACTIONS(2254), - [anon_sym_source_DASHenv] = ACTIONS(2254), - [anon_sym_register] = ACTIONS(2254), - [anon_sym_hide] = ACTIONS(2254), - [anon_sym_hide_DASHenv] = ACTIONS(2254), - [anon_sym_overlay] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [sym__str_single_quotes] = ACTIONS(2254), - [sym__str_back_ticks] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2254), - [sym__entry_separator] = ACTIONS(2256), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [431] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(618), + [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1998), + [anon_sym_alias] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_let_DASHenv] = ACTIONS(1998), + [anon_sym_mut] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [aux_sym_cmd_identifier_token1] = ACTIONS(1998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(1998), + [aux_sym_cmd_identifier_token4] = ACTIONS(1998), + [aux_sym_cmd_identifier_token5] = ACTIONS(1998), + [aux_sym_cmd_identifier_token6] = ACTIONS(1998), + [aux_sym_cmd_identifier_token7] = ACTIONS(1998), + [aux_sym_cmd_identifier_token8] = ACTIONS(1998), + [aux_sym_cmd_identifier_token9] = ACTIONS(1998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1998), + [aux_sym_cmd_identifier_token11] = ACTIONS(1998), + [aux_sym_cmd_identifier_token12] = ACTIONS(1998), + [aux_sym_cmd_identifier_token13] = ACTIONS(1998), + [aux_sym_cmd_identifier_token14] = ACTIONS(1998), + [aux_sym_cmd_identifier_token15] = ACTIONS(1998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1998), + [aux_sym_cmd_identifier_token17] = ACTIONS(1998), + [aux_sym_cmd_identifier_token18] = ACTIONS(1998), + [aux_sym_cmd_identifier_token19] = ACTIONS(1998), + [aux_sym_cmd_identifier_token20] = ACTIONS(1998), + [aux_sym_cmd_identifier_token21] = ACTIONS(1998), + [aux_sym_cmd_identifier_token22] = ACTIONS(1998), + [aux_sym_cmd_identifier_token23] = ACTIONS(1998), + [aux_sym_cmd_identifier_token24] = ACTIONS(1998), + [aux_sym_cmd_identifier_token25] = ACTIONS(1998), + [aux_sym_cmd_identifier_token26] = ACTIONS(1998), + [aux_sym_cmd_identifier_token27] = ACTIONS(1998), + [aux_sym_cmd_identifier_token28] = ACTIONS(1998), + [aux_sym_cmd_identifier_token29] = ACTIONS(1998), + [aux_sym_cmd_identifier_token30] = ACTIONS(1998), + [aux_sym_cmd_identifier_token31] = ACTIONS(1998), + [aux_sym_cmd_identifier_token32] = ACTIONS(1998), + [aux_sym_cmd_identifier_token33] = ACTIONS(1998), + [aux_sym_cmd_identifier_token34] = ACTIONS(1998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1998), + [aux_sym_cmd_identifier_token36] = ACTIONS(1998), + [aux_sym_cmd_identifier_token37] = ACTIONS(1998), + [aux_sym_cmd_identifier_token38] = ACTIONS(1998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1998), + [aux_sym_cmd_identifier_token40] = ACTIONS(1998), + [anon_sym_def] = ACTIONS(1998), + [anon_sym_export_DASHenv] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_module] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_error] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_in2] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_make] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_do] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_else] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [anon_sym_catch] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_source] = ACTIONS(1998), + [anon_sym_source_DASHenv] = ACTIONS(1998), + [anon_sym_register] = ACTIONS(1998), + [anon_sym_hide] = ACTIONS(1998), + [anon_sym_hide_DASHenv] = ACTIONS(1998), + [anon_sym_overlay] = ACTIONS(1998), + [anon_sym_as] = ACTIONS(1998), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(1998), + [aux_sym__val_number_decimal_token4] = ACTIONS(1998), + [aux_sym__val_number_token1] = ACTIONS(1998), + [aux_sym__val_number_token2] = ACTIONS(1998), + [aux_sym__val_number_token3] = ACTIONS(1998), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1998), + [sym__entry_separator] = ACTIONS(2000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), + [sym_raw_string_begin] = ACTIONS(2000), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [aux_sym_cmd_identifier_token31] = ACTIONS(1802), - [aux_sym_cmd_identifier_token32] = ACTIONS(1802), - [aux_sym_cmd_identifier_token33] = ACTIONS(1802), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1802), - [aux_sym_cmd_identifier_token36] = ACTIONS(1802), - [aux_sym_cmd_identifier_token37] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_decimal_token4] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), - [sym__entry_separator] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_alias] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_let_DASHenv] = ACTIONS(1940), + [anon_sym_mut] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [aux_sym_cmd_identifier_token1] = ACTIONS(1940), + [aux_sym_cmd_identifier_token2] = ACTIONS(1948), + [aux_sym_cmd_identifier_token3] = ACTIONS(1948), + [aux_sym_cmd_identifier_token4] = ACTIONS(1948), + [aux_sym_cmd_identifier_token5] = ACTIONS(1948), + [aux_sym_cmd_identifier_token6] = ACTIONS(1948), + [aux_sym_cmd_identifier_token7] = ACTIONS(1948), + [aux_sym_cmd_identifier_token8] = ACTIONS(1940), + [aux_sym_cmd_identifier_token9] = ACTIONS(1940), + [aux_sym_cmd_identifier_token10] = ACTIONS(1948), + [aux_sym_cmd_identifier_token11] = ACTIONS(1948), + [aux_sym_cmd_identifier_token12] = ACTIONS(1940), + [aux_sym_cmd_identifier_token13] = ACTIONS(1940), + [aux_sym_cmd_identifier_token14] = ACTIONS(1940), + [aux_sym_cmd_identifier_token15] = ACTIONS(1940), + [aux_sym_cmd_identifier_token16] = ACTIONS(1948), + [aux_sym_cmd_identifier_token17] = ACTIONS(1948), + [aux_sym_cmd_identifier_token18] = ACTIONS(1948), + [aux_sym_cmd_identifier_token19] = ACTIONS(1948), + [aux_sym_cmd_identifier_token20] = ACTIONS(1948), + [aux_sym_cmd_identifier_token21] = ACTIONS(1948), + [aux_sym_cmd_identifier_token22] = ACTIONS(1948), + [aux_sym_cmd_identifier_token23] = ACTIONS(1948), + [aux_sym_cmd_identifier_token24] = ACTIONS(1948), + [aux_sym_cmd_identifier_token25] = ACTIONS(1948), + [aux_sym_cmd_identifier_token26] = ACTIONS(1948), + [aux_sym_cmd_identifier_token27] = ACTIONS(1948), + [aux_sym_cmd_identifier_token28] = ACTIONS(1948), + [aux_sym_cmd_identifier_token29] = ACTIONS(1948), + [aux_sym_cmd_identifier_token30] = ACTIONS(1948), + [aux_sym_cmd_identifier_token31] = ACTIONS(1948), + [aux_sym_cmd_identifier_token32] = ACTIONS(1948), + [aux_sym_cmd_identifier_token33] = ACTIONS(1948), + [aux_sym_cmd_identifier_token34] = ACTIONS(1940), + [aux_sym_cmd_identifier_token35] = ACTIONS(1948), + [aux_sym_cmd_identifier_token36] = ACTIONS(1948), + [aux_sym_cmd_identifier_token37] = ACTIONS(1948), + [aux_sym_cmd_identifier_token38] = ACTIONS(1940), + [aux_sym_cmd_identifier_token39] = ACTIONS(1948), + [aux_sym_cmd_identifier_token40] = ACTIONS(1948), + [anon_sym_def] = ACTIONS(1940), + [anon_sym_export_DASHenv] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_error] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_in2] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_make] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_source] = ACTIONS(1940), + [anon_sym_source_DASHenv] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_hide] = ACTIONS(1940), + [anon_sym_hide_DASHenv] = ACTIONS(1940), + [anon_sym_overlay] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), + [anon_sym_DOT_DOT2] = ACTIONS(2002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1940), + [aux_sym__val_number_token5] = ACTIONS(1940), + [aux_sym__val_number_token6] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), + }, + [433] = { + [sym_cell_path] = STATE(710), + [sym_path] = STATE(618), + [sym_comment] = STATE(433), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2006), + [anon_sym_alias] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_let_DASHenv] = ACTIONS(2006), + [anon_sym_mut] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [aux_sym_cmd_identifier_token1] = ACTIONS(2006), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2006), + [aux_sym_cmd_identifier_token9] = ACTIONS(2006), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2006), + [aux_sym_cmd_identifier_token13] = ACTIONS(2006), + [aux_sym_cmd_identifier_token14] = ACTIONS(2006), + [aux_sym_cmd_identifier_token15] = ACTIONS(2006), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2006), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2006), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2006), + [anon_sym_export_DASHenv] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_module] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_error] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_in2] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_make] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_source] = ACTIONS(2006), + [anon_sym_source_DASHenv] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2006), + [anon_sym_hide] = ACTIONS(2006), + [anon_sym_hide_DASHenv] = ACTIONS(2006), + [anon_sym_overlay] = ACTIONS(2006), + [anon_sym_as] = ACTIONS(2006), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [sym__entry_separator] = ACTIONS(2008), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1810), + [sym_raw_string_begin] = ACTIONS(2008), }, - [542] = { - [sym__expr_parenthesized_immediate] = STATE(7523), - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), - [aux_sym_cmd_identifier_token2] = ACTIONS(2165), - [aux_sym_cmd_identifier_token3] = ACTIONS(2165), - [aux_sym_cmd_identifier_token4] = ACTIONS(2165), - [aux_sym_cmd_identifier_token5] = ACTIONS(2165), - [aux_sym_cmd_identifier_token6] = ACTIONS(2165), - [aux_sym_cmd_identifier_token7] = ACTIONS(2165), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), - [aux_sym_cmd_identifier_token10] = ACTIONS(2165), - [aux_sym_cmd_identifier_token11] = ACTIONS(2165), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), - [aux_sym_cmd_identifier_token16] = ACTIONS(2165), - [aux_sym_cmd_identifier_token17] = ACTIONS(2165), - [aux_sym_cmd_identifier_token18] = ACTIONS(2165), - [aux_sym_cmd_identifier_token19] = ACTIONS(2165), - [aux_sym_cmd_identifier_token20] = ACTIONS(2165), - [aux_sym_cmd_identifier_token21] = ACTIONS(2165), - [aux_sym_cmd_identifier_token22] = ACTIONS(2165), - [aux_sym_cmd_identifier_token23] = ACTIONS(2165), - [aux_sym_cmd_identifier_token24] = ACTIONS(2165), - [aux_sym_cmd_identifier_token25] = ACTIONS(2165), - [aux_sym_cmd_identifier_token26] = ACTIONS(2165), - [aux_sym_cmd_identifier_token27] = ACTIONS(2165), - [aux_sym_cmd_identifier_token28] = ACTIONS(2165), - [aux_sym_cmd_identifier_token29] = ACTIONS(2165), - [aux_sym_cmd_identifier_token30] = ACTIONS(2165), - [aux_sym_cmd_identifier_token31] = ACTIONS(2165), - [aux_sym_cmd_identifier_token32] = ACTIONS(2165), - [aux_sym_cmd_identifier_token33] = ACTIONS(2165), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), - [aux_sym_cmd_identifier_token35] = ACTIONS(2165), - [aux_sym_cmd_identifier_token36] = ACTIONS(2165), - [aux_sym_cmd_identifier_token37] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2165), - [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [sym__entry_separator] = ACTIONS(2171), + [434] = { + [sym_cell_path] = STATE(644), + [sym_path] = STATE(618), + [sym_comment] = STATE(434), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2010), + [anon_sym_alias] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_let_DASHenv] = ACTIONS(2010), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2010), + [aux_sym_cmd_identifier_token2] = ACTIONS(2010), + [aux_sym_cmd_identifier_token3] = ACTIONS(2010), + [aux_sym_cmd_identifier_token4] = ACTIONS(2010), + [aux_sym_cmd_identifier_token5] = ACTIONS(2010), + [aux_sym_cmd_identifier_token6] = ACTIONS(2010), + [aux_sym_cmd_identifier_token7] = ACTIONS(2010), + [aux_sym_cmd_identifier_token8] = ACTIONS(2010), + [aux_sym_cmd_identifier_token9] = ACTIONS(2010), + [aux_sym_cmd_identifier_token10] = ACTIONS(2010), + [aux_sym_cmd_identifier_token11] = ACTIONS(2010), + [aux_sym_cmd_identifier_token12] = ACTIONS(2010), + [aux_sym_cmd_identifier_token13] = ACTIONS(2010), + [aux_sym_cmd_identifier_token14] = ACTIONS(2010), + [aux_sym_cmd_identifier_token15] = ACTIONS(2010), + [aux_sym_cmd_identifier_token16] = ACTIONS(2010), + [aux_sym_cmd_identifier_token17] = ACTIONS(2010), + [aux_sym_cmd_identifier_token18] = ACTIONS(2010), + [aux_sym_cmd_identifier_token19] = ACTIONS(2010), + [aux_sym_cmd_identifier_token20] = ACTIONS(2010), + [aux_sym_cmd_identifier_token21] = ACTIONS(2010), + [aux_sym_cmd_identifier_token22] = ACTIONS(2010), + [aux_sym_cmd_identifier_token23] = ACTIONS(2010), + [aux_sym_cmd_identifier_token24] = ACTIONS(2010), + [aux_sym_cmd_identifier_token25] = ACTIONS(2010), + [aux_sym_cmd_identifier_token26] = ACTIONS(2010), + [aux_sym_cmd_identifier_token27] = ACTIONS(2010), + [aux_sym_cmd_identifier_token28] = ACTIONS(2010), + [aux_sym_cmd_identifier_token29] = ACTIONS(2010), + [aux_sym_cmd_identifier_token30] = ACTIONS(2010), + [aux_sym_cmd_identifier_token31] = ACTIONS(2010), + [aux_sym_cmd_identifier_token32] = ACTIONS(2010), + [aux_sym_cmd_identifier_token33] = ACTIONS(2010), + [aux_sym_cmd_identifier_token34] = ACTIONS(2010), + [aux_sym_cmd_identifier_token35] = ACTIONS(2010), + [aux_sym_cmd_identifier_token36] = ACTIONS(2010), + [aux_sym_cmd_identifier_token37] = ACTIONS(2010), + [aux_sym_cmd_identifier_token38] = ACTIONS(2010), + [aux_sym_cmd_identifier_token39] = ACTIONS(2010), + [aux_sym_cmd_identifier_token40] = ACTIONS(2010), + [anon_sym_def] = ACTIONS(2010), + [anon_sym_export_DASHenv] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_in2] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_make] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_source] = ACTIONS(2010), + [anon_sym_source_DASHenv] = ACTIONS(2010), + [anon_sym_register] = ACTIONS(2010), + [anon_sym_hide] = ACTIONS(2010), + [anon_sym_hide_DASHenv] = ACTIONS(2010), + [anon_sym_overlay] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2010), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2010), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(2010), + [aux_sym__val_number_token2] = ACTIONS(2010), + [aux_sym__val_number_token3] = ACTIONS(2010), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym__str_single_quotes] = ACTIONS(2010), + [sym__str_back_ticks] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2010), + [sym__entry_separator] = ACTIONS(2012), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2171), + [sym_raw_string_begin] = ACTIONS(2012), }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_alias] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_let_DASHenv] = ACTIONS(2258), - [anon_sym_mut] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [aux_sym_cmd_identifier_token1] = ACTIONS(2258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2258), - [aux_sym_cmd_identifier_token3] = ACTIONS(2258), - [aux_sym_cmd_identifier_token4] = ACTIONS(2258), - [aux_sym_cmd_identifier_token5] = ACTIONS(2258), - [aux_sym_cmd_identifier_token6] = ACTIONS(2258), - [aux_sym_cmd_identifier_token7] = ACTIONS(2258), - [aux_sym_cmd_identifier_token8] = ACTIONS(2258), - [aux_sym_cmd_identifier_token9] = ACTIONS(2258), - [aux_sym_cmd_identifier_token10] = ACTIONS(2258), - [aux_sym_cmd_identifier_token11] = ACTIONS(2258), - [aux_sym_cmd_identifier_token12] = ACTIONS(2258), - [aux_sym_cmd_identifier_token13] = ACTIONS(2258), - [aux_sym_cmd_identifier_token14] = ACTIONS(2258), - [aux_sym_cmd_identifier_token15] = ACTIONS(2258), - [aux_sym_cmd_identifier_token16] = ACTIONS(2258), - [aux_sym_cmd_identifier_token17] = ACTIONS(2258), - [aux_sym_cmd_identifier_token18] = ACTIONS(2258), - [aux_sym_cmd_identifier_token19] = ACTIONS(2258), - [aux_sym_cmd_identifier_token20] = ACTIONS(2258), - [aux_sym_cmd_identifier_token21] = ACTIONS(2258), - [aux_sym_cmd_identifier_token22] = ACTIONS(2258), - [aux_sym_cmd_identifier_token23] = ACTIONS(2258), - [aux_sym_cmd_identifier_token24] = ACTIONS(2258), - [aux_sym_cmd_identifier_token25] = ACTIONS(2258), - [aux_sym_cmd_identifier_token26] = ACTIONS(2258), - [aux_sym_cmd_identifier_token27] = ACTIONS(2258), - [aux_sym_cmd_identifier_token28] = ACTIONS(2258), - [aux_sym_cmd_identifier_token29] = ACTIONS(2258), - [aux_sym_cmd_identifier_token30] = ACTIONS(2258), - [aux_sym_cmd_identifier_token31] = ACTIONS(2258), - [aux_sym_cmd_identifier_token32] = ACTIONS(2258), - [aux_sym_cmd_identifier_token33] = ACTIONS(2258), - [aux_sym_cmd_identifier_token34] = ACTIONS(2258), - [aux_sym_cmd_identifier_token35] = ACTIONS(2258), - [aux_sym_cmd_identifier_token36] = ACTIONS(2258), - [aux_sym_cmd_identifier_token37] = ACTIONS(2258), - [aux_sym_cmd_identifier_token38] = ACTIONS(2258), - [aux_sym_cmd_identifier_token39] = ACTIONS(2258), - [aux_sym_cmd_identifier_token40] = ACTIONS(2258), - [anon_sym_def] = ACTIONS(2258), - [anon_sym_export_DASHenv] = ACTIONS(2258), - [anon_sym_extern] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_use] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2258), - [anon_sym_error] = ACTIONS(2258), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_in2] = ACTIONS(2258), - [anon_sym_loop] = ACTIONS(2258), - [anon_sym_make] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_catch] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_source] = ACTIONS(2258), - [anon_sym_source_DASHenv] = ACTIONS(2258), - [anon_sym_register] = ACTIONS(2258), - [anon_sym_hide] = ACTIONS(2258), - [anon_sym_hide_DASHenv] = ACTIONS(2258), - [anon_sym_overlay] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_LPAREN2] = ACTIONS(2260), - [anon_sym_PLUS2] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2258), - [aux_sym__val_number_decimal_token1] = ACTIONS(2258), - [aux_sym__val_number_decimal_token2] = ACTIONS(2258), - [aux_sym__val_number_decimal_token3] = ACTIONS(2258), - [aux_sym__val_number_decimal_token4] = ACTIONS(2258), - [aux_sym__val_number_token1] = ACTIONS(2258), - [aux_sym__val_number_token2] = ACTIONS(2258), - [aux_sym__val_number_token3] = ACTIONS(2258), - [aux_sym__val_number_token4] = ACTIONS(2258), - [aux_sym__val_number_token5] = ACTIONS(2258), - [aux_sym__val_number_token6] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [sym__str_single_quotes] = ACTIONS(2258), - [sym__str_back_ticks] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2258), - [sym__entry_separator] = ACTIONS(2262), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [435] = { + [sym_comment] = STATE(435), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), + }, + [436] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(618), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [sym__entry_separator] = ACTIONS(2016), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2262), + [sym_raw_string_begin] = ACTIONS(2016), }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [437] = { + [sym_cell_path] = STATE(650), + [sym_path] = STATE(618), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(2020), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2264), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [sym__entry_separator] = ACTIONS(980), + [438] = { + [sym_cell_path] = STATE(651), + [sym_path] = STATE(618), + [sym_comment] = STATE(438), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2022), + [aux_sym_cmd_identifier_token3] = ACTIONS(2022), + [aux_sym_cmd_identifier_token4] = ACTIONS(2022), + [aux_sym_cmd_identifier_token5] = ACTIONS(2022), + [aux_sym_cmd_identifier_token6] = ACTIONS(2022), + [aux_sym_cmd_identifier_token7] = ACTIONS(2022), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2022), + [aux_sym_cmd_identifier_token11] = ACTIONS(2022), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2022), + [aux_sym_cmd_identifier_token17] = ACTIONS(2022), + [aux_sym_cmd_identifier_token18] = ACTIONS(2022), + [aux_sym_cmd_identifier_token19] = ACTIONS(2022), + [aux_sym_cmd_identifier_token20] = ACTIONS(2022), + [aux_sym_cmd_identifier_token21] = ACTIONS(2022), + [aux_sym_cmd_identifier_token22] = ACTIONS(2022), + [aux_sym_cmd_identifier_token23] = ACTIONS(2022), + [aux_sym_cmd_identifier_token24] = ACTIONS(2022), + [aux_sym_cmd_identifier_token25] = ACTIONS(2022), + [aux_sym_cmd_identifier_token26] = ACTIONS(2022), + [aux_sym_cmd_identifier_token27] = ACTIONS(2022), + [aux_sym_cmd_identifier_token28] = ACTIONS(2022), + [aux_sym_cmd_identifier_token29] = ACTIONS(2022), + [aux_sym_cmd_identifier_token30] = ACTIONS(2022), + [aux_sym_cmd_identifier_token31] = ACTIONS(2022), + [aux_sym_cmd_identifier_token32] = ACTIONS(2022), + [aux_sym_cmd_identifier_token33] = ACTIONS(2022), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2022), + [aux_sym_cmd_identifier_token36] = ACTIONS(2022), + [aux_sym_cmd_identifier_token37] = ACTIONS(2022), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2022), + [aux_sym_cmd_identifier_token40] = ACTIONS(2022), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_register] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2022), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2022), + [aux_sym__val_number_decimal_token3] = ACTIONS(2022), + [aux_sym__val_number_decimal_token4] = ACTIONS(2022), + [aux_sym__val_number_token1] = ACTIONS(2022), + [aux_sym__val_number_token2] = ACTIONS(2022), + [aux_sym__val_number_token3] = ACTIONS(2022), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym__str_single_quotes] = ACTIONS(2022), + [sym__str_back_ticks] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2022), + [sym__entry_separator] = ACTIONS(2024), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(980), + [sym_raw_string_begin] = ACTIONS(2024), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2266), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), + [439] = { + [sym_cell_path] = STATE(653), + [sym_path] = STATE(618), + [sym_comment] = STATE(439), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2026), + [aux_sym_cmd_identifier_token3] = ACTIONS(2026), + [aux_sym_cmd_identifier_token4] = ACTIONS(2026), + [aux_sym_cmd_identifier_token5] = ACTIONS(2026), + [aux_sym_cmd_identifier_token6] = ACTIONS(2026), + [aux_sym_cmd_identifier_token7] = ACTIONS(2026), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2026), + [aux_sym_cmd_identifier_token11] = ACTIONS(2026), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2026), + [aux_sym_cmd_identifier_token17] = ACTIONS(2026), + [aux_sym_cmd_identifier_token18] = ACTIONS(2026), + [aux_sym_cmd_identifier_token19] = ACTIONS(2026), + [aux_sym_cmd_identifier_token20] = ACTIONS(2026), + [aux_sym_cmd_identifier_token21] = ACTIONS(2026), + [aux_sym_cmd_identifier_token22] = ACTIONS(2026), + [aux_sym_cmd_identifier_token23] = ACTIONS(2026), + [aux_sym_cmd_identifier_token24] = ACTIONS(2026), + [aux_sym_cmd_identifier_token25] = ACTIONS(2026), + [aux_sym_cmd_identifier_token26] = ACTIONS(2026), + [aux_sym_cmd_identifier_token27] = ACTIONS(2026), + [aux_sym_cmd_identifier_token28] = ACTIONS(2026), + [aux_sym_cmd_identifier_token29] = ACTIONS(2026), + [aux_sym_cmd_identifier_token30] = ACTIONS(2026), + [aux_sym_cmd_identifier_token31] = ACTIONS(2026), + [aux_sym_cmd_identifier_token32] = ACTIONS(2026), + [aux_sym_cmd_identifier_token33] = ACTIONS(2026), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2026), + [aux_sym_cmd_identifier_token36] = ACTIONS(2026), + [aux_sym_cmd_identifier_token37] = ACTIONS(2026), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2026), + [aux_sym_cmd_identifier_token40] = ACTIONS(2026), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2026), + [aux_sym__val_number_decimal_token3] = ACTIONS(2026), + [aux_sym__val_number_decimal_token4] = ACTIONS(2026), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), + [sym__entry_separator] = ACTIONS(2028), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), + [sym_raw_string_begin] = ACTIONS(2028), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_alias] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_let_DASHenv] = ACTIONS(2268), - [anon_sym_mut] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [aux_sym_cmd_identifier_token1] = ACTIONS(2268), - [aux_sym_cmd_identifier_token2] = ACTIONS(2268), - [aux_sym_cmd_identifier_token3] = ACTIONS(2268), - [aux_sym_cmd_identifier_token4] = ACTIONS(2268), - [aux_sym_cmd_identifier_token5] = ACTIONS(2268), - [aux_sym_cmd_identifier_token6] = ACTIONS(2268), - [aux_sym_cmd_identifier_token7] = ACTIONS(2268), - [aux_sym_cmd_identifier_token8] = ACTIONS(2268), - [aux_sym_cmd_identifier_token9] = ACTIONS(2268), - [aux_sym_cmd_identifier_token10] = ACTIONS(2268), - [aux_sym_cmd_identifier_token11] = ACTIONS(2268), - [aux_sym_cmd_identifier_token12] = ACTIONS(2268), - [aux_sym_cmd_identifier_token13] = ACTIONS(2268), - [aux_sym_cmd_identifier_token14] = ACTIONS(2268), - [aux_sym_cmd_identifier_token15] = ACTIONS(2268), - [aux_sym_cmd_identifier_token16] = ACTIONS(2268), - [aux_sym_cmd_identifier_token17] = ACTIONS(2268), - [aux_sym_cmd_identifier_token18] = ACTIONS(2268), - [aux_sym_cmd_identifier_token19] = ACTIONS(2268), - [aux_sym_cmd_identifier_token20] = ACTIONS(2268), - [aux_sym_cmd_identifier_token21] = ACTIONS(2268), - [aux_sym_cmd_identifier_token22] = ACTIONS(2268), - [aux_sym_cmd_identifier_token23] = ACTIONS(2268), - [aux_sym_cmd_identifier_token24] = ACTIONS(2268), - [aux_sym_cmd_identifier_token25] = ACTIONS(2268), - [aux_sym_cmd_identifier_token26] = ACTIONS(2268), - [aux_sym_cmd_identifier_token27] = ACTIONS(2268), - [aux_sym_cmd_identifier_token28] = ACTIONS(2268), - [aux_sym_cmd_identifier_token29] = ACTIONS(2268), - [aux_sym_cmd_identifier_token30] = ACTIONS(2268), - [aux_sym_cmd_identifier_token31] = ACTIONS(2268), - [aux_sym_cmd_identifier_token32] = ACTIONS(2268), - [aux_sym_cmd_identifier_token33] = ACTIONS(2268), - [aux_sym_cmd_identifier_token34] = ACTIONS(2268), - [aux_sym_cmd_identifier_token35] = ACTIONS(2268), - [aux_sym_cmd_identifier_token36] = ACTIONS(2268), - [aux_sym_cmd_identifier_token37] = ACTIONS(2268), - [aux_sym_cmd_identifier_token38] = ACTIONS(2268), - [aux_sym_cmd_identifier_token39] = ACTIONS(2268), - [aux_sym_cmd_identifier_token40] = ACTIONS(2268), - [anon_sym_def] = ACTIONS(2268), - [anon_sym_export_DASHenv] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2268), - [anon_sym_error] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_in2] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_make] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_catch] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_source] = ACTIONS(2268), - [anon_sym_source_DASHenv] = ACTIONS(2268), - [anon_sym_register] = ACTIONS(2268), - [anon_sym_hide] = ACTIONS(2268), - [anon_sym_hide_DASHenv] = ACTIONS(2268), - [anon_sym_overlay] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_LPAREN2] = ACTIONS(2270), - [anon_sym_PLUS2] = ACTIONS(2268), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2268), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2268), - [aux_sym__val_number_decimal_token1] = ACTIONS(2268), - [aux_sym__val_number_decimal_token2] = ACTIONS(2268), - [aux_sym__val_number_decimal_token3] = ACTIONS(2268), - [aux_sym__val_number_decimal_token4] = ACTIONS(2268), - [aux_sym__val_number_token1] = ACTIONS(2268), - [aux_sym__val_number_token2] = ACTIONS(2268), - [aux_sym__val_number_token3] = ACTIONS(2268), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [sym__str_single_quotes] = ACTIONS(2268), - [sym__str_back_ticks] = ACTIONS(2268), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2268), - [sym__entry_separator] = ACTIONS(2270), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2268), + [440] = { + [sym_cell_path] = STATE(655), + [sym_path] = STATE(618), + [sym_comment] = STATE(440), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [sym__entry_separator] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), + [sym_raw_string_begin] = ACTIONS(2032), }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_alias] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_let_DASHenv] = ACTIONS(2272), - [anon_sym_mut] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [aux_sym_cmd_identifier_token1] = ACTIONS(2272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2272), - [aux_sym_cmd_identifier_token3] = ACTIONS(2272), - [aux_sym_cmd_identifier_token4] = ACTIONS(2272), - [aux_sym_cmd_identifier_token5] = ACTIONS(2272), - [aux_sym_cmd_identifier_token6] = ACTIONS(2272), - [aux_sym_cmd_identifier_token7] = ACTIONS(2272), - [aux_sym_cmd_identifier_token8] = ACTIONS(2272), - [aux_sym_cmd_identifier_token9] = ACTIONS(2272), - [aux_sym_cmd_identifier_token10] = ACTIONS(2272), - [aux_sym_cmd_identifier_token11] = ACTIONS(2272), - [aux_sym_cmd_identifier_token12] = ACTIONS(2272), - [aux_sym_cmd_identifier_token13] = ACTIONS(2272), - [aux_sym_cmd_identifier_token14] = ACTIONS(2272), - [aux_sym_cmd_identifier_token15] = ACTIONS(2272), - [aux_sym_cmd_identifier_token16] = ACTIONS(2272), - [aux_sym_cmd_identifier_token17] = ACTIONS(2272), - [aux_sym_cmd_identifier_token18] = ACTIONS(2272), - [aux_sym_cmd_identifier_token19] = ACTIONS(2272), - [aux_sym_cmd_identifier_token20] = ACTIONS(2272), - [aux_sym_cmd_identifier_token21] = ACTIONS(2272), - [aux_sym_cmd_identifier_token22] = ACTIONS(2272), - [aux_sym_cmd_identifier_token23] = ACTIONS(2272), - [aux_sym_cmd_identifier_token24] = ACTIONS(2272), - [aux_sym_cmd_identifier_token25] = ACTIONS(2272), - [aux_sym_cmd_identifier_token26] = ACTIONS(2272), - [aux_sym_cmd_identifier_token27] = ACTIONS(2272), - [aux_sym_cmd_identifier_token28] = ACTIONS(2272), - [aux_sym_cmd_identifier_token29] = ACTIONS(2272), - [aux_sym_cmd_identifier_token30] = ACTIONS(2272), - [aux_sym_cmd_identifier_token31] = ACTIONS(2272), - [aux_sym_cmd_identifier_token32] = ACTIONS(2272), - [aux_sym_cmd_identifier_token33] = ACTIONS(2272), - [aux_sym_cmd_identifier_token34] = ACTIONS(2272), - [aux_sym_cmd_identifier_token35] = ACTIONS(2272), - [aux_sym_cmd_identifier_token36] = ACTIONS(2272), - [aux_sym_cmd_identifier_token37] = ACTIONS(2272), - [aux_sym_cmd_identifier_token38] = ACTIONS(2272), - [aux_sym_cmd_identifier_token39] = ACTIONS(2272), - [aux_sym_cmd_identifier_token40] = ACTIONS(2272), - [anon_sym_def] = ACTIONS(2272), - [anon_sym_export_DASHenv] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_error] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_make] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_source] = ACTIONS(2272), - [anon_sym_source_DASHenv] = ACTIONS(2272), - [anon_sym_register] = ACTIONS(2272), - [anon_sym_hide] = ACTIONS(2272), - [anon_sym_hide_DASHenv] = ACTIONS(2272), - [anon_sym_overlay] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2274), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [sym__str_single_quotes] = ACTIONS(2272), - [sym__str_back_ticks] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), - [sym__entry_separator] = ACTIONS(2276), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2278), + [441] = { + [sym_cell_path] = STATE(658), + [sym_path] = STATE(618), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2034), + [aux_sym_cmd_identifier_token3] = ACTIONS(2034), + [aux_sym_cmd_identifier_token4] = ACTIONS(2034), + [aux_sym_cmd_identifier_token5] = ACTIONS(2034), + [aux_sym_cmd_identifier_token6] = ACTIONS(2034), + [aux_sym_cmd_identifier_token7] = ACTIONS(2034), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2034), + [aux_sym_cmd_identifier_token11] = ACTIONS(2034), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2034), + [aux_sym_cmd_identifier_token17] = ACTIONS(2034), + [aux_sym_cmd_identifier_token18] = ACTIONS(2034), + [aux_sym_cmd_identifier_token19] = ACTIONS(2034), + [aux_sym_cmd_identifier_token20] = ACTIONS(2034), + [aux_sym_cmd_identifier_token21] = ACTIONS(2034), + [aux_sym_cmd_identifier_token22] = ACTIONS(2034), + [aux_sym_cmd_identifier_token23] = ACTIONS(2034), + [aux_sym_cmd_identifier_token24] = ACTIONS(2034), + [aux_sym_cmd_identifier_token25] = ACTIONS(2034), + [aux_sym_cmd_identifier_token26] = ACTIONS(2034), + [aux_sym_cmd_identifier_token27] = ACTIONS(2034), + [aux_sym_cmd_identifier_token28] = ACTIONS(2034), + [aux_sym_cmd_identifier_token29] = ACTIONS(2034), + [aux_sym_cmd_identifier_token30] = ACTIONS(2034), + [aux_sym_cmd_identifier_token31] = ACTIONS(2034), + [aux_sym_cmd_identifier_token32] = ACTIONS(2034), + [aux_sym_cmd_identifier_token33] = ACTIONS(2034), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2034), + [aux_sym_cmd_identifier_token36] = ACTIONS(2034), + [aux_sym_cmd_identifier_token37] = ACTIONS(2034), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2034), + [aux_sym_cmd_identifier_token40] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token4] = ACTIONS(2034), + [aux_sym__val_number_token1] = ACTIONS(2034), + [aux_sym__val_number_token2] = ACTIONS(2034), + [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym__str_single_quotes] = ACTIONS(2034), + [sym__str_back_ticks] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), + [sym__entry_separator] = ACTIONS(2036), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2276), + [sym_raw_string_begin] = ACTIONS(2036), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), + [442] = { + [sym_comment] = STATE(442), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [443] = { + [sym_cell_path] = STATE(660), + [sym_path] = STATE(618), + [sym_comment] = STATE(443), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2038), + [aux_sym_cmd_identifier_token4] = ACTIONS(2038), + [aux_sym_cmd_identifier_token5] = ACTIONS(2038), + [aux_sym_cmd_identifier_token6] = ACTIONS(2038), + [aux_sym_cmd_identifier_token7] = ACTIONS(2038), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2038), + [aux_sym_cmd_identifier_token11] = ACTIONS(2038), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2038), + [aux_sym_cmd_identifier_token17] = ACTIONS(2038), + [aux_sym_cmd_identifier_token18] = ACTIONS(2038), + [aux_sym_cmd_identifier_token19] = ACTIONS(2038), + [aux_sym_cmd_identifier_token20] = ACTIONS(2038), + [aux_sym_cmd_identifier_token21] = ACTIONS(2038), + [aux_sym_cmd_identifier_token22] = ACTIONS(2038), + [aux_sym_cmd_identifier_token23] = ACTIONS(2038), + [aux_sym_cmd_identifier_token24] = ACTIONS(2038), + [aux_sym_cmd_identifier_token25] = ACTIONS(2038), + [aux_sym_cmd_identifier_token26] = ACTIONS(2038), + [aux_sym_cmd_identifier_token27] = ACTIONS(2038), + [aux_sym_cmd_identifier_token28] = ACTIONS(2038), + [aux_sym_cmd_identifier_token29] = ACTIONS(2038), + [aux_sym_cmd_identifier_token30] = ACTIONS(2038), + [aux_sym_cmd_identifier_token31] = ACTIONS(2038), + [aux_sym_cmd_identifier_token32] = ACTIONS(2038), + [aux_sym_cmd_identifier_token33] = ACTIONS(2038), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2038), + [aux_sym_cmd_identifier_token36] = ACTIONS(2038), + [aux_sym_cmd_identifier_token37] = ACTIONS(2038), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2038), + [aux_sym_cmd_identifier_token40] = ACTIONS(2038), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2038), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2038), + [aux_sym__val_number_token2] = ACTIONS(2038), + [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym__str_single_quotes] = ACTIONS(2038), + [sym__str_back_ticks] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), + [sym__entry_separator] = ACTIONS(2040), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), + [sym_raw_string_begin] = ACTIONS(2040), }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), + [444] = { + [sym_cell_path] = STATE(661), + [sym_path] = STATE(618), + [sym_comment] = STATE(444), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2042), + [aux_sym_cmd_identifier_token3] = ACTIONS(2042), + [aux_sym_cmd_identifier_token4] = ACTIONS(2042), + [aux_sym_cmd_identifier_token5] = ACTIONS(2042), + [aux_sym_cmd_identifier_token6] = ACTIONS(2042), + [aux_sym_cmd_identifier_token7] = ACTIONS(2042), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2042), + [aux_sym_cmd_identifier_token11] = ACTIONS(2042), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2042), + [aux_sym_cmd_identifier_token17] = ACTIONS(2042), + [aux_sym_cmd_identifier_token18] = ACTIONS(2042), + [aux_sym_cmd_identifier_token19] = ACTIONS(2042), + [aux_sym_cmd_identifier_token20] = ACTIONS(2042), + [aux_sym_cmd_identifier_token21] = ACTIONS(2042), + [aux_sym_cmd_identifier_token22] = ACTIONS(2042), + [aux_sym_cmd_identifier_token23] = ACTIONS(2042), + [aux_sym_cmd_identifier_token24] = ACTIONS(2042), + [aux_sym_cmd_identifier_token25] = ACTIONS(2042), + [aux_sym_cmd_identifier_token26] = ACTIONS(2042), + [aux_sym_cmd_identifier_token27] = ACTIONS(2042), + [aux_sym_cmd_identifier_token28] = ACTIONS(2042), + [aux_sym_cmd_identifier_token29] = ACTIONS(2042), + [aux_sym_cmd_identifier_token30] = ACTIONS(2042), + [aux_sym_cmd_identifier_token31] = ACTIONS(2042), + [aux_sym_cmd_identifier_token32] = ACTIONS(2042), + [aux_sym_cmd_identifier_token33] = ACTIONS(2042), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2042), + [aux_sym_cmd_identifier_token36] = ACTIONS(2042), + [aux_sym_cmd_identifier_token37] = ACTIONS(2042), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2042), + [aux_sym_cmd_identifier_token40] = ACTIONS(2042), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2042), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2042), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2042), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2042), + [aux_sym__val_number_decimal_token3] = ACTIONS(2042), + [aux_sym__val_number_decimal_token4] = ACTIONS(2042), + [aux_sym__val_number_token1] = ACTIONS(2042), + [aux_sym__val_number_token2] = ACTIONS(2042), + [aux_sym__val_number_token3] = ACTIONS(2042), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym__str_single_quotes] = ACTIONS(2042), + [sym__str_back_ticks] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2042), + [sym__entry_separator] = ACTIONS(2044), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), + [sym_raw_string_begin] = ACTIONS(2044), }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(1000), + [445] = { + [sym_cell_path] = STATE(662), + [sym_path] = STATE(618), + [sym_comment] = STATE(445), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2046), + [anon_sym_alias] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_let_DASHenv] = ACTIONS(2046), + [anon_sym_mut] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [aux_sym_cmd_identifier_token1] = ACTIONS(2046), + [aux_sym_cmd_identifier_token2] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2046), + [aux_sym_cmd_identifier_token4] = ACTIONS(2046), + [aux_sym_cmd_identifier_token5] = ACTIONS(2046), + [aux_sym_cmd_identifier_token6] = ACTIONS(2046), + [aux_sym_cmd_identifier_token7] = ACTIONS(2046), + [aux_sym_cmd_identifier_token8] = ACTIONS(2046), + [aux_sym_cmd_identifier_token9] = ACTIONS(2046), + [aux_sym_cmd_identifier_token10] = ACTIONS(2046), + [aux_sym_cmd_identifier_token11] = ACTIONS(2046), + [aux_sym_cmd_identifier_token12] = ACTIONS(2046), + [aux_sym_cmd_identifier_token13] = ACTIONS(2046), + [aux_sym_cmd_identifier_token14] = ACTIONS(2046), + [aux_sym_cmd_identifier_token15] = ACTIONS(2046), + [aux_sym_cmd_identifier_token16] = ACTIONS(2046), + [aux_sym_cmd_identifier_token17] = ACTIONS(2046), + [aux_sym_cmd_identifier_token18] = ACTIONS(2046), + [aux_sym_cmd_identifier_token19] = ACTIONS(2046), + [aux_sym_cmd_identifier_token20] = ACTIONS(2046), + [aux_sym_cmd_identifier_token21] = ACTIONS(2046), + [aux_sym_cmd_identifier_token22] = ACTIONS(2046), + [aux_sym_cmd_identifier_token23] = ACTIONS(2046), + [aux_sym_cmd_identifier_token24] = ACTIONS(2046), + [aux_sym_cmd_identifier_token25] = ACTIONS(2046), + [aux_sym_cmd_identifier_token26] = ACTIONS(2046), + [aux_sym_cmd_identifier_token27] = ACTIONS(2046), + [aux_sym_cmd_identifier_token28] = ACTIONS(2046), + [aux_sym_cmd_identifier_token29] = ACTIONS(2046), + [aux_sym_cmd_identifier_token30] = ACTIONS(2046), + [aux_sym_cmd_identifier_token31] = ACTIONS(2046), + [aux_sym_cmd_identifier_token32] = ACTIONS(2046), + [aux_sym_cmd_identifier_token33] = ACTIONS(2046), + [aux_sym_cmd_identifier_token34] = ACTIONS(2046), + [aux_sym_cmd_identifier_token35] = ACTIONS(2046), + [aux_sym_cmd_identifier_token36] = ACTIONS(2046), + [aux_sym_cmd_identifier_token37] = ACTIONS(2046), + [aux_sym_cmd_identifier_token38] = ACTIONS(2046), + [aux_sym_cmd_identifier_token39] = ACTIONS(2046), + [aux_sym_cmd_identifier_token40] = ACTIONS(2046), + [anon_sym_def] = ACTIONS(2046), + [anon_sym_export_DASHenv] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_module] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2046), + [anon_sym_error] = ACTIONS(2046), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_in2] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_make] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [anon_sym_catch] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_source] = ACTIONS(2046), + [anon_sym_source_DASHenv] = ACTIONS(2046), + [anon_sym_register] = ACTIONS(2046), + [anon_sym_hide] = ACTIONS(2046), + [anon_sym_hide_DASHenv] = ACTIONS(2046), + [anon_sym_overlay] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2046), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2046), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2046), + [aux_sym__val_number_decimal_token4] = ACTIONS(2046), + [aux_sym__val_number_token1] = ACTIONS(2046), + [aux_sym__val_number_token2] = ACTIONS(2046), + [aux_sym__val_number_token3] = ACTIONS(2046), + [aux_sym__val_number_token4] = ACTIONS(2046), + [aux_sym__val_number_token5] = ACTIONS(2046), + [aux_sym__val_number_token6] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym__str_single_quotes] = ACTIONS(2046), + [sym__str_back_ticks] = ACTIONS(2046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2046), + [sym__entry_separator] = ACTIONS(2048), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [sym_raw_string_begin] = ACTIONS(2048), }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), + [446] = { + [sym_cell_path] = STATE(663), + [sym_path] = STATE(618), + [sym_comment] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2050), + [anon_sym_alias] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_let_DASHenv] = ACTIONS(2050), + [anon_sym_mut] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [aux_sym_cmd_identifier_token1] = ACTIONS(2050), + [aux_sym_cmd_identifier_token2] = ACTIONS(2050), + [aux_sym_cmd_identifier_token3] = ACTIONS(2050), + [aux_sym_cmd_identifier_token4] = ACTIONS(2050), + [aux_sym_cmd_identifier_token5] = ACTIONS(2050), + [aux_sym_cmd_identifier_token6] = ACTIONS(2050), + [aux_sym_cmd_identifier_token7] = ACTIONS(2050), + [aux_sym_cmd_identifier_token8] = ACTIONS(2050), + [aux_sym_cmd_identifier_token9] = ACTIONS(2050), + [aux_sym_cmd_identifier_token10] = ACTIONS(2050), + [aux_sym_cmd_identifier_token11] = ACTIONS(2050), + [aux_sym_cmd_identifier_token12] = ACTIONS(2050), + [aux_sym_cmd_identifier_token13] = ACTIONS(2050), + [aux_sym_cmd_identifier_token14] = ACTIONS(2050), + [aux_sym_cmd_identifier_token15] = ACTIONS(2050), + [aux_sym_cmd_identifier_token16] = ACTIONS(2050), + [aux_sym_cmd_identifier_token17] = ACTIONS(2050), + [aux_sym_cmd_identifier_token18] = ACTIONS(2050), + [aux_sym_cmd_identifier_token19] = ACTIONS(2050), + [aux_sym_cmd_identifier_token20] = ACTIONS(2050), + [aux_sym_cmd_identifier_token21] = ACTIONS(2050), + [aux_sym_cmd_identifier_token22] = ACTIONS(2050), + [aux_sym_cmd_identifier_token23] = ACTIONS(2050), + [aux_sym_cmd_identifier_token24] = ACTIONS(2050), + [aux_sym_cmd_identifier_token25] = ACTIONS(2050), + [aux_sym_cmd_identifier_token26] = ACTIONS(2050), + [aux_sym_cmd_identifier_token27] = ACTIONS(2050), + [aux_sym_cmd_identifier_token28] = ACTIONS(2050), + [aux_sym_cmd_identifier_token29] = ACTIONS(2050), + [aux_sym_cmd_identifier_token30] = ACTIONS(2050), + [aux_sym_cmd_identifier_token31] = ACTIONS(2050), + [aux_sym_cmd_identifier_token32] = ACTIONS(2050), + [aux_sym_cmd_identifier_token33] = ACTIONS(2050), + [aux_sym_cmd_identifier_token34] = ACTIONS(2050), + [aux_sym_cmd_identifier_token35] = ACTIONS(2050), + [aux_sym_cmd_identifier_token36] = ACTIONS(2050), + [aux_sym_cmd_identifier_token37] = ACTIONS(2050), + [aux_sym_cmd_identifier_token38] = ACTIONS(2050), + [aux_sym_cmd_identifier_token39] = ACTIONS(2050), + [aux_sym_cmd_identifier_token40] = ACTIONS(2050), + [anon_sym_def] = ACTIONS(2050), + [anon_sym_export_DASHenv] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_module] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2050), + [anon_sym_error] = ACTIONS(2050), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_in2] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_make] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_catch] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_source] = ACTIONS(2050), + [anon_sym_source_DASHenv] = ACTIONS(2050), + [anon_sym_register] = ACTIONS(2050), + [anon_sym_hide] = ACTIONS(2050), + [anon_sym_hide_DASHenv] = ACTIONS(2050), + [anon_sym_overlay] = ACTIONS(2050), + [anon_sym_as] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2050), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_decimal_token2] = ACTIONS(2050), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(2050), + [aux_sym__val_number_token2] = ACTIONS(2050), + [aux_sym__val_number_token3] = ACTIONS(2050), + [aux_sym__val_number_token4] = ACTIONS(2050), + [aux_sym__val_number_token5] = ACTIONS(2050), + [aux_sym__val_number_token6] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2050), + [sym__entry_separator] = ACTIONS(2052), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [aux_sym_cmd_identifier_token37] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(2282), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), - }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1737), - [aux_sym_cmd_identifier_token3] = ACTIONS(1737), - [aux_sym_cmd_identifier_token4] = ACTIONS(1737), - [aux_sym_cmd_identifier_token5] = ACTIONS(1737), - [aux_sym_cmd_identifier_token6] = ACTIONS(1737), - [aux_sym_cmd_identifier_token7] = ACTIONS(1737), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1737), - [aux_sym_cmd_identifier_token11] = ACTIONS(1737), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1737), - [aux_sym_cmd_identifier_token17] = ACTIONS(1737), - [aux_sym_cmd_identifier_token18] = ACTIONS(1737), - [aux_sym_cmd_identifier_token19] = ACTIONS(1737), - [aux_sym_cmd_identifier_token20] = ACTIONS(1737), - [aux_sym_cmd_identifier_token21] = ACTIONS(1737), - [aux_sym_cmd_identifier_token22] = ACTIONS(1737), - [aux_sym_cmd_identifier_token23] = ACTIONS(1737), - [aux_sym_cmd_identifier_token24] = ACTIONS(1737), - [aux_sym_cmd_identifier_token25] = ACTIONS(1737), - [aux_sym_cmd_identifier_token26] = ACTIONS(1737), - [aux_sym_cmd_identifier_token27] = ACTIONS(1737), - [aux_sym_cmd_identifier_token28] = ACTIONS(1737), - [aux_sym_cmd_identifier_token29] = ACTIONS(1737), - [aux_sym_cmd_identifier_token30] = ACTIONS(1737), - [aux_sym_cmd_identifier_token31] = ACTIONS(1737), - [aux_sym_cmd_identifier_token32] = ACTIONS(1737), - [aux_sym_cmd_identifier_token33] = ACTIONS(1737), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1737), - [aux_sym_cmd_identifier_token36] = ACTIONS(1737), - [aux_sym_cmd_identifier_token37] = ACTIONS(1737), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [559] = { - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [560] = { - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [sym_raw_string_begin] = ACTIONS(2052), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2052), - [anon_sym_alias] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_let_DASHenv] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [aux_sym_cmd_identifier_token1] = ACTIONS(2052), + [447] = { + [sym_cell_path] = STATE(665), + [sym_path] = STATE(618), + [sym_comment] = STATE(447), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2054), + [anon_sym_alias] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_let_DASHenv] = ACTIONS(2054), + [anon_sym_mut] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [aux_sym_cmd_identifier_token1] = ACTIONS(2054), [aux_sym_cmd_identifier_token2] = ACTIONS(2054), [aux_sym_cmd_identifier_token3] = ACTIONS(2054), [aux_sym_cmd_identifier_token4] = ACTIONS(2054), [aux_sym_cmd_identifier_token5] = ACTIONS(2054), [aux_sym_cmd_identifier_token6] = ACTIONS(2054), [aux_sym_cmd_identifier_token7] = ACTIONS(2054), - [aux_sym_cmd_identifier_token8] = ACTIONS(2052), - [aux_sym_cmd_identifier_token9] = ACTIONS(2052), + [aux_sym_cmd_identifier_token8] = ACTIONS(2054), + [aux_sym_cmd_identifier_token9] = ACTIONS(2054), [aux_sym_cmd_identifier_token10] = ACTIONS(2054), [aux_sym_cmd_identifier_token11] = ACTIONS(2054), - [aux_sym_cmd_identifier_token12] = ACTIONS(2052), - [aux_sym_cmd_identifier_token13] = ACTIONS(2052), - [aux_sym_cmd_identifier_token14] = ACTIONS(2052), - [aux_sym_cmd_identifier_token15] = ACTIONS(2052), + [aux_sym_cmd_identifier_token12] = ACTIONS(2054), + [aux_sym_cmd_identifier_token13] = ACTIONS(2054), + [aux_sym_cmd_identifier_token14] = ACTIONS(2054), + [aux_sym_cmd_identifier_token15] = ACTIONS(2054), [aux_sym_cmd_identifier_token16] = ACTIONS(2054), [aux_sym_cmd_identifier_token17] = ACTIONS(2054), [aux_sym_cmd_identifier_token18] = ACTIONS(2054), @@ -136302,90 +262372,2276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2054), [aux_sym_cmd_identifier_token32] = ACTIONS(2054), [aux_sym_cmd_identifier_token33] = ACTIONS(2054), - [aux_sym_cmd_identifier_token34] = ACTIONS(2052), + [aux_sym_cmd_identifier_token34] = ACTIONS(2054), [aux_sym_cmd_identifier_token35] = ACTIONS(2054), [aux_sym_cmd_identifier_token36] = ACTIONS(2054), [aux_sym_cmd_identifier_token37] = ACTIONS(2054), - [aux_sym_cmd_identifier_token38] = ACTIONS(2052), + [aux_sym_cmd_identifier_token38] = ACTIONS(2054), [aux_sym_cmd_identifier_token39] = ACTIONS(2054), [aux_sym_cmd_identifier_token40] = ACTIONS(2054), - [anon_sym_def] = ACTIONS(2052), - [anon_sym_export_DASHenv] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_module] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2054), + [anon_sym_export_DASHenv] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_module] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), [anon_sym_LPAREN] = ACTIONS(2054), [anon_sym_DOLLAR] = ACTIONS(2054), - [anon_sym_error] = ACTIONS(2052), - [anon_sym_DASH2] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_in2] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_make] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_do] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_else] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), + [anon_sym_error] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_make] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_try] = ACTIONS(2052), - [anon_sym_catch] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_source] = ACTIONS(2052), - [anon_sym_source_DASHenv] = ACTIONS(2052), - [anon_sym_register] = ACTIONS(2052), - [anon_sym_hide] = ACTIONS(2052), - [anon_sym_hide_DASHenv] = ACTIONS(2052), - [anon_sym_overlay] = ACTIONS(2052), - [anon_sym_as] = ACTIONS(2052), - [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_source] = ACTIONS(2054), + [anon_sym_source_DASHenv] = ACTIONS(2054), + [anon_sym_register] = ACTIONS(2054), + [anon_sym_hide] = ACTIONS(2054), + [anon_sym_hide_DASHenv] = ACTIONS(2054), + [anon_sym_overlay] = ACTIONS(2054), + [anon_sym_as] = ACTIONS(2054), + [anon_sym_PLUS2] = ACTIONS(2054), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2054), - [anon_sym_DOT_DOT2] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_DOT] = ACTIONS(1974), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2054), - [aux_sym__val_number_decimal_token1] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), [aux_sym__val_number_decimal_token2] = ACTIONS(2054), [aux_sym__val_number_decimal_token3] = ACTIONS(2054), [aux_sym__val_number_decimal_token4] = ACTIONS(2054), [aux_sym__val_number_token1] = ACTIONS(2054), [aux_sym__val_number_token2] = ACTIONS(2054), [aux_sym__val_number_token3] = ACTIONS(2054), - [aux_sym__val_number_token4] = ACTIONS(2052), - [aux_sym__val_number_token5] = ACTIONS(2052), - [aux_sym__val_number_token6] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), [anon_sym_DQUOTE] = ACTIONS(2054), [sym__str_single_quotes] = ACTIONS(2054), [sym__str_back_ticks] = ACTIONS(2054), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2054), + [sym__entry_separator] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2056), }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [448] = { + [sym_cell_path] = STATE(666), + [sym_path] = STATE(618), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [aux_sym_cmd_identifier_token1] = ACTIONS(2058), + [aux_sym_cmd_identifier_token2] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [aux_sym_cmd_identifier_token6] = ACTIONS(2058), + [aux_sym_cmd_identifier_token7] = ACTIONS(2058), + [aux_sym_cmd_identifier_token8] = ACTIONS(2058), + [aux_sym_cmd_identifier_token9] = ACTIONS(2058), + [aux_sym_cmd_identifier_token10] = ACTIONS(2058), + [aux_sym_cmd_identifier_token11] = ACTIONS(2058), + [aux_sym_cmd_identifier_token12] = ACTIONS(2058), + [aux_sym_cmd_identifier_token13] = ACTIONS(2058), + [aux_sym_cmd_identifier_token14] = ACTIONS(2058), + [aux_sym_cmd_identifier_token15] = ACTIONS(2058), + [aux_sym_cmd_identifier_token16] = ACTIONS(2058), + [aux_sym_cmd_identifier_token17] = ACTIONS(2058), + [aux_sym_cmd_identifier_token18] = ACTIONS(2058), + [aux_sym_cmd_identifier_token19] = ACTIONS(2058), + [aux_sym_cmd_identifier_token20] = ACTIONS(2058), + [aux_sym_cmd_identifier_token21] = ACTIONS(2058), + [aux_sym_cmd_identifier_token22] = ACTIONS(2058), + [aux_sym_cmd_identifier_token23] = ACTIONS(2058), + [aux_sym_cmd_identifier_token24] = ACTIONS(2058), + [aux_sym_cmd_identifier_token25] = ACTIONS(2058), + [aux_sym_cmd_identifier_token26] = ACTIONS(2058), + [aux_sym_cmd_identifier_token27] = ACTIONS(2058), + [aux_sym_cmd_identifier_token28] = ACTIONS(2058), + [aux_sym_cmd_identifier_token29] = ACTIONS(2058), + [aux_sym_cmd_identifier_token30] = ACTIONS(2058), + [aux_sym_cmd_identifier_token31] = ACTIONS(2058), + [aux_sym_cmd_identifier_token32] = ACTIONS(2058), + [aux_sym_cmd_identifier_token33] = ACTIONS(2058), + [aux_sym_cmd_identifier_token34] = ACTIONS(2058), + [aux_sym_cmd_identifier_token35] = ACTIONS(2058), + [aux_sym_cmd_identifier_token36] = ACTIONS(2058), + [aux_sym_cmd_identifier_token37] = ACTIONS(2058), + [aux_sym_cmd_identifier_token38] = ACTIONS(2058), + [aux_sym_cmd_identifier_token39] = ACTIONS(2058), + [aux_sym_cmd_identifier_token40] = ACTIONS(2058), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_in2] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_make] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_PLUS2] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2058), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2058), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(2058), + [aux_sym__val_number_token2] = ACTIONS(2058), + [aux_sym__val_number_token3] = ACTIONS(2058), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym__str_single_quotes] = ACTIONS(2058), + [sym__str_back_ticks] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2058), + [sym__entry_separator] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2060), + }, + [449] = { + [sym_cell_path] = STATE(667), + [sym_path] = STATE(618), + [sym_comment] = STATE(449), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2062), + [anon_sym_alias] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_let_DASHenv] = ACTIONS(2062), + [anon_sym_mut] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [aux_sym_cmd_identifier_token1] = ACTIONS(2062), + [aux_sym_cmd_identifier_token2] = ACTIONS(2062), + [aux_sym_cmd_identifier_token3] = ACTIONS(2062), + [aux_sym_cmd_identifier_token4] = ACTIONS(2062), + [aux_sym_cmd_identifier_token5] = ACTIONS(2062), + [aux_sym_cmd_identifier_token6] = ACTIONS(2062), + [aux_sym_cmd_identifier_token7] = ACTIONS(2062), + [aux_sym_cmd_identifier_token8] = ACTIONS(2062), + [aux_sym_cmd_identifier_token9] = ACTIONS(2062), + [aux_sym_cmd_identifier_token10] = ACTIONS(2062), + [aux_sym_cmd_identifier_token11] = ACTIONS(2062), + [aux_sym_cmd_identifier_token12] = ACTIONS(2062), + [aux_sym_cmd_identifier_token13] = ACTIONS(2062), + [aux_sym_cmd_identifier_token14] = ACTIONS(2062), + [aux_sym_cmd_identifier_token15] = ACTIONS(2062), + [aux_sym_cmd_identifier_token16] = ACTIONS(2062), + [aux_sym_cmd_identifier_token17] = ACTIONS(2062), + [aux_sym_cmd_identifier_token18] = ACTIONS(2062), + [aux_sym_cmd_identifier_token19] = ACTIONS(2062), + [aux_sym_cmd_identifier_token20] = ACTIONS(2062), + [aux_sym_cmd_identifier_token21] = ACTIONS(2062), + [aux_sym_cmd_identifier_token22] = ACTIONS(2062), + [aux_sym_cmd_identifier_token23] = ACTIONS(2062), + [aux_sym_cmd_identifier_token24] = ACTIONS(2062), + [aux_sym_cmd_identifier_token25] = ACTIONS(2062), + [aux_sym_cmd_identifier_token26] = ACTIONS(2062), + [aux_sym_cmd_identifier_token27] = ACTIONS(2062), + [aux_sym_cmd_identifier_token28] = ACTIONS(2062), + [aux_sym_cmd_identifier_token29] = ACTIONS(2062), + [aux_sym_cmd_identifier_token30] = ACTIONS(2062), + [aux_sym_cmd_identifier_token31] = ACTIONS(2062), + [aux_sym_cmd_identifier_token32] = ACTIONS(2062), + [aux_sym_cmd_identifier_token33] = ACTIONS(2062), + [aux_sym_cmd_identifier_token34] = ACTIONS(2062), + [aux_sym_cmd_identifier_token35] = ACTIONS(2062), + [aux_sym_cmd_identifier_token36] = ACTIONS(2062), + [aux_sym_cmd_identifier_token37] = ACTIONS(2062), + [aux_sym_cmd_identifier_token38] = ACTIONS(2062), + [aux_sym_cmd_identifier_token39] = ACTIONS(2062), + [aux_sym_cmd_identifier_token40] = ACTIONS(2062), + [anon_sym_def] = ACTIONS(2062), + [anon_sym_export_DASHenv] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_module] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2062), + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_error] = ACTIONS(2062), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_in2] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_make] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [anon_sym_catch] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_source] = ACTIONS(2062), + [anon_sym_source_DASHenv] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_hide] = ACTIONS(2062), + [anon_sym_hide_DASHenv] = ACTIONS(2062), + [anon_sym_overlay] = ACTIONS(2062), + [anon_sym_as] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2062), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2062), + [aux_sym__val_number_decimal_token1] = ACTIONS(2062), + [aux_sym__val_number_decimal_token2] = ACTIONS(2062), + [aux_sym__val_number_decimal_token3] = ACTIONS(2062), + [aux_sym__val_number_decimal_token4] = ACTIONS(2062), + [aux_sym__val_number_token1] = ACTIONS(2062), + [aux_sym__val_number_token2] = ACTIONS(2062), + [aux_sym__val_number_token3] = ACTIONS(2062), + [aux_sym__val_number_token4] = ACTIONS(2062), + [aux_sym__val_number_token5] = ACTIONS(2062), + [aux_sym__val_number_token6] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym__str_single_quotes] = ACTIONS(2062), + [sym__str_back_ticks] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2062), + [sym__entry_separator] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2064), + }, + [450] = { + [sym_cell_path] = STATE(669), + [sym_path] = STATE(618), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [aux_sym_cmd_identifier_token37] = ACTIONS(2066), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2066), + [aux_sym_cmd_identifier_token40] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in2] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2066), + [aux_sym__val_number_decimal_token4] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), + [sym__entry_separator] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2068), + }, + [451] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(618), + [sym_comment] = STATE(451), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_alias] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_let_DASHenv] = ACTIONS(2070), + [anon_sym_mut] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [aux_sym_cmd_identifier_token1] = ACTIONS(2070), + [aux_sym_cmd_identifier_token2] = ACTIONS(2070), + [aux_sym_cmd_identifier_token3] = ACTIONS(2070), + [aux_sym_cmd_identifier_token4] = ACTIONS(2070), + [aux_sym_cmd_identifier_token5] = ACTIONS(2070), + [aux_sym_cmd_identifier_token6] = ACTIONS(2070), + [aux_sym_cmd_identifier_token7] = ACTIONS(2070), + [aux_sym_cmd_identifier_token8] = ACTIONS(2070), + [aux_sym_cmd_identifier_token9] = ACTIONS(2070), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2070), + [aux_sym_cmd_identifier_token13] = ACTIONS(2070), + [aux_sym_cmd_identifier_token14] = ACTIONS(2070), + [aux_sym_cmd_identifier_token15] = ACTIONS(2070), + [aux_sym_cmd_identifier_token16] = ACTIONS(2070), + [aux_sym_cmd_identifier_token17] = ACTIONS(2070), + [aux_sym_cmd_identifier_token18] = ACTIONS(2070), + [aux_sym_cmd_identifier_token19] = ACTIONS(2070), + [aux_sym_cmd_identifier_token20] = ACTIONS(2070), + [aux_sym_cmd_identifier_token21] = ACTIONS(2070), + [aux_sym_cmd_identifier_token22] = ACTIONS(2070), + [aux_sym_cmd_identifier_token23] = ACTIONS(2070), + [aux_sym_cmd_identifier_token24] = ACTIONS(2070), + [aux_sym_cmd_identifier_token25] = ACTIONS(2070), + [aux_sym_cmd_identifier_token26] = ACTIONS(2070), + [aux_sym_cmd_identifier_token27] = ACTIONS(2070), + [aux_sym_cmd_identifier_token28] = ACTIONS(2070), + [aux_sym_cmd_identifier_token29] = ACTIONS(2070), + [aux_sym_cmd_identifier_token30] = ACTIONS(2070), + [aux_sym_cmd_identifier_token31] = ACTIONS(2070), + [aux_sym_cmd_identifier_token32] = ACTIONS(2070), + [aux_sym_cmd_identifier_token33] = ACTIONS(2070), + [aux_sym_cmd_identifier_token34] = ACTIONS(2070), + [aux_sym_cmd_identifier_token35] = ACTIONS(2070), + [aux_sym_cmd_identifier_token36] = ACTIONS(2070), + [aux_sym_cmd_identifier_token37] = ACTIONS(2070), + [aux_sym_cmd_identifier_token38] = ACTIONS(2070), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2070), + [anon_sym_export_DASHenv] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_in2] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_make] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_source] = ACTIONS(2070), + [anon_sym_source_DASHenv] = ACTIONS(2070), + [anon_sym_register] = ACTIONS(2070), + [anon_sym_hide] = ACTIONS(2070), + [anon_sym_hide_DASHenv] = ACTIONS(2070), + [anon_sym_overlay] = ACTIONS(2070), + [anon_sym_as] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), + [sym__entry_separator] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(2074), + [aux_sym__immediate_decimal_token2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [453] = { + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [454] = { + [sym_cell_path] = STATE(691), + [sym_path] = STATE(618), + [sym_comment] = STATE(454), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2078), + [anon_sym_alias] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_let_DASHenv] = ACTIONS(2078), + [anon_sym_mut] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [aux_sym_cmd_identifier_token1] = ACTIONS(2078), + [aux_sym_cmd_identifier_token2] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2078), + [aux_sym_cmd_identifier_token4] = ACTIONS(2078), + [aux_sym_cmd_identifier_token5] = ACTIONS(2078), + [aux_sym_cmd_identifier_token6] = ACTIONS(2078), + [aux_sym_cmd_identifier_token7] = ACTIONS(2078), + [aux_sym_cmd_identifier_token8] = ACTIONS(2078), + [aux_sym_cmd_identifier_token9] = ACTIONS(2078), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [aux_sym_cmd_identifier_token12] = ACTIONS(2078), + [aux_sym_cmd_identifier_token13] = ACTIONS(2078), + [aux_sym_cmd_identifier_token14] = ACTIONS(2078), + [aux_sym_cmd_identifier_token15] = ACTIONS(2078), + [aux_sym_cmd_identifier_token16] = ACTIONS(2078), + [aux_sym_cmd_identifier_token17] = ACTIONS(2078), + [aux_sym_cmd_identifier_token18] = ACTIONS(2078), + [aux_sym_cmd_identifier_token19] = ACTIONS(2078), + [aux_sym_cmd_identifier_token20] = ACTIONS(2078), + [aux_sym_cmd_identifier_token21] = ACTIONS(2078), + [aux_sym_cmd_identifier_token22] = ACTIONS(2078), + [aux_sym_cmd_identifier_token23] = ACTIONS(2078), + [aux_sym_cmd_identifier_token24] = ACTIONS(2078), + [aux_sym_cmd_identifier_token25] = ACTIONS(2078), + [aux_sym_cmd_identifier_token26] = ACTIONS(2078), + [aux_sym_cmd_identifier_token27] = ACTIONS(2078), + [aux_sym_cmd_identifier_token28] = ACTIONS(2078), + [aux_sym_cmd_identifier_token29] = ACTIONS(2078), + [aux_sym_cmd_identifier_token30] = ACTIONS(2078), + [aux_sym_cmd_identifier_token31] = ACTIONS(2078), + [aux_sym_cmd_identifier_token32] = ACTIONS(2078), + [aux_sym_cmd_identifier_token33] = ACTIONS(2078), + [aux_sym_cmd_identifier_token34] = ACTIONS(2078), + [aux_sym_cmd_identifier_token35] = ACTIONS(2078), + [aux_sym_cmd_identifier_token36] = ACTIONS(2078), + [aux_sym_cmd_identifier_token37] = ACTIONS(2078), + [aux_sym_cmd_identifier_token38] = ACTIONS(2078), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [anon_sym_def] = ACTIONS(2078), + [anon_sym_export_DASHenv] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_module] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [anon_sym_error] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_in2] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_make] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_source] = ACTIONS(2078), + [anon_sym_source_DASHenv] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2078), + [anon_sym_hide] = ACTIONS(2078), + [anon_sym_hide_DASHenv] = ACTIONS(2078), + [anon_sym_overlay] = ACTIONS(2078), + [anon_sym_as] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2078), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), + [sym__entry_separator] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2080), + }, + [455] = { + [sym_cell_path] = STATE(698), + [sym_path] = STATE(618), + [sym_comment] = STATE(455), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2082), + [aux_sym_cmd_identifier_token3] = ACTIONS(2082), + [aux_sym_cmd_identifier_token4] = ACTIONS(2082), + [aux_sym_cmd_identifier_token5] = ACTIONS(2082), + [aux_sym_cmd_identifier_token6] = ACTIONS(2082), + [aux_sym_cmd_identifier_token7] = ACTIONS(2082), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2082), + [aux_sym_cmd_identifier_token11] = ACTIONS(2082), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2082), + [aux_sym_cmd_identifier_token17] = ACTIONS(2082), + [aux_sym_cmd_identifier_token18] = ACTIONS(2082), + [aux_sym_cmd_identifier_token19] = ACTIONS(2082), + [aux_sym_cmd_identifier_token20] = ACTIONS(2082), + [aux_sym_cmd_identifier_token21] = ACTIONS(2082), + [aux_sym_cmd_identifier_token22] = ACTIONS(2082), + [aux_sym_cmd_identifier_token23] = ACTIONS(2082), + [aux_sym_cmd_identifier_token24] = ACTIONS(2082), + [aux_sym_cmd_identifier_token25] = ACTIONS(2082), + [aux_sym_cmd_identifier_token26] = ACTIONS(2082), + [aux_sym_cmd_identifier_token27] = ACTIONS(2082), + [aux_sym_cmd_identifier_token28] = ACTIONS(2082), + [aux_sym_cmd_identifier_token29] = ACTIONS(2082), + [aux_sym_cmd_identifier_token30] = ACTIONS(2082), + [aux_sym_cmd_identifier_token31] = ACTIONS(2082), + [aux_sym_cmd_identifier_token32] = ACTIONS(2082), + [aux_sym_cmd_identifier_token33] = ACTIONS(2082), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2082), + [aux_sym_cmd_identifier_token36] = ACTIONS(2082), + [aux_sym_cmd_identifier_token37] = ACTIONS(2082), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2082), + [aux_sym_cmd_identifier_token40] = ACTIONS(2082), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2082), + [aux_sym__val_number_decimal_token3] = ACTIONS(2082), + [aux_sym__val_number_decimal_token4] = ACTIONS(2082), + [aux_sym__val_number_token1] = ACTIONS(2082), + [aux_sym__val_number_token2] = ACTIONS(2082), + [aux_sym__val_number_token3] = ACTIONS(2082), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym__str_single_quotes] = ACTIONS(2082), + [sym__str_back_ticks] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), + [sym__entry_separator] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2084), + }, + [456] = { + [sym_comment] = STATE(456), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), + }, + [457] = { + [sym_path] = STATE(546), + [sym_comment] = STATE(457), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [aux_sym_cmd_identifier_token37] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [aux_sym_record_entry_token1] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), + }, + [458] = { + [sym_path] = STATE(546), + [sym_comment] = STATE(458), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1485), + [aux_sym_cmd_identifier_token3] = ACTIONS(1485), + [aux_sym_cmd_identifier_token4] = ACTIONS(1485), + [aux_sym_cmd_identifier_token5] = ACTIONS(1485), + [aux_sym_cmd_identifier_token6] = ACTIONS(1485), + [aux_sym_cmd_identifier_token7] = ACTIONS(1485), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1485), + [aux_sym_cmd_identifier_token11] = ACTIONS(1485), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1485), + [aux_sym_cmd_identifier_token17] = ACTIONS(1485), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1485), + [aux_sym_cmd_identifier_token20] = ACTIONS(1485), + [aux_sym_cmd_identifier_token21] = ACTIONS(1485), + [aux_sym_cmd_identifier_token22] = ACTIONS(1485), + [aux_sym_cmd_identifier_token23] = ACTIONS(1485), + [aux_sym_cmd_identifier_token24] = ACTIONS(1485), + [aux_sym_cmd_identifier_token25] = ACTIONS(1485), + [aux_sym_cmd_identifier_token26] = ACTIONS(1485), + [aux_sym_cmd_identifier_token27] = ACTIONS(1485), + [aux_sym_cmd_identifier_token28] = ACTIONS(1485), + [aux_sym_cmd_identifier_token29] = ACTIONS(1485), + [aux_sym_cmd_identifier_token30] = ACTIONS(1485), + [aux_sym_cmd_identifier_token31] = ACTIONS(1485), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1485), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1485), + [aux_sym_cmd_identifier_token36] = ACTIONS(1485), + [aux_sym_cmd_identifier_token37] = ACTIONS(1485), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1485), + [aux_sym_cmd_identifier_token40] = ACTIONS(1485), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1485), + [aux_sym_record_entry_token1] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), + }, + [459] = { + [sym_comment] = STATE(459), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1502), + [aux_sym_cmd_identifier_token3] = ACTIONS(1502), + [aux_sym_cmd_identifier_token4] = ACTIONS(1502), + [aux_sym_cmd_identifier_token5] = ACTIONS(1502), + [aux_sym_cmd_identifier_token6] = ACTIONS(1502), + [aux_sym_cmd_identifier_token7] = ACTIONS(1502), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1502), + [aux_sym_cmd_identifier_token11] = ACTIONS(1502), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1502), + [aux_sym_cmd_identifier_token17] = ACTIONS(1502), + [aux_sym_cmd_identifier_token18] = ACTIONS(1502), + [aux_sym_cmd_identifier_token19] = ACTIONS(1502), + [aux_sym_cmd_identifier_token20] = ACTIONS(1502), + [aux_sym_cmd_identifier_token21] = ACTIONS(1502), + [aux_sym_cmd_identifier_token22] = ACTIONS(1502), + [aux_sym_cmd_identifier_token23] = ACTIONS(1502), + [aux_sym_cmd_identifier_token24] = ACTIONS(1502), + [aux_sym_cmd_identifier_token25] = ACTIONS(1502), + [aux_sym_cmd_identifier_token26] = ACTIONS(1502), + [aux_sym_cmd_identifier_token27] = ACTIONS(1502), + [aux_sym_cmd_identifier_token28] = ACTIONS(1502), + [aux_sym_cmd_identifier_token29] = ACTIONS(1502), + [aux_sym_cmd_identifier_token30] = ACTIONS(1502), + [aux_sym_cmd_identifier_token31] = ACTIONS(1502), + [aux_sym_cmd_identifier_token32] = ACTIONS(1502), + [aux_sym_cmd_identifier_token33] = ACTIONS(1502), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1502), + [aux_sym_cmd_identifier_token36] = ACTIONS(1502), + [aux_sym_cmd_identifier_token37] = ACTIONS(1502), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1502), + [aux_sym_cmd_identifier_token40] = ACTIONS(1502), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(2089), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), + }, + [460] = { + [sym_comment] = STATE(460), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(2091), + [aux_sym__immediate_decimal_token2] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [461] = { + [sym_expr_parenthesized] = STATE(4304), + [sym__spread_parenthesized] = STATE(4743), + [sym_val_range] = STATE(4744), + [sym__val_range] = STATE(7850), + [sym__val_range_with_end] = STATE(7616), + [sym__value] = STATE(4744), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym__spread_variable] = STATE(4745), + [sym_val_variable] = STATE(4233), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4046), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym__spread_list] = STATE(4743), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym__cmd_arg] = STATE(4746), + [sym_redirection] = STATE(4747), + [sym_short_flag] = STATE(4749), + [sym_long_flag] = STATE(4749), + [sym_unquoted] = STATE(4472), + [sym__unquoted_with_expr] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(7251), + [sym_comment] = STATE(461), + [sym__newline] = ACTIONS(2095), + [sym__space] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_err_GT_PIPE] = ACTIONS(2095), + [anon_sym_out_GT_PIPE] = ACTIONS(2095), + [anon_sym_e_GT_PIPE] = ACTIONS(2095), + [anon_sym_o_GT_PIPE] = ACTIONS(2095), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2095), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2095), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2095), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_DASH2] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT] = ACTIONS(2115), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2123), + [aux_sym__val_number_decimal_token3] = ACTIONS(2125), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2129), + [aux_sym__val_number_token2] = ACTIONS(2129), + [aux_sym__val_number_token3] = ACTIONS(2129), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2141), + [sym__str_back_ticks] = ACTIONS(2141), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2145), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2147), + [anon_sym_err_GT] = ACTIONS(2149), + [anon_sym_out_GT] = ACTIONS(2149), + [anon_sym_e_GT] = ACTIONS(2149), + [anon_sym_o_GT] = ACTIONS(2149), + [anon_sym_err_PLUSout_GT] = ACTIONS(2149), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2149), + [anon_sym_o_PLUSe_GT] = ACTIONS(2149), + [anon_sym_e_PLUSo_GT] = ACTIONS(2149), + [anon_sym_err_GT_GT] = ACTIONS(2149), + [anon_sym_out_GT_GT] = ACTIONS(2149), + [anon_sym_e_GT_GT] = ACTIONS(2149), + [anon_sym_o_GT_GT] = ACTIONS(2149), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2149), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2149), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2149), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2149), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2153), + }, + [462] = { + [sym_comment] = STATE(462), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), + }, + [463] = { + [sym_comment] = STATE(463), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [aux_sym__immediate_decimal_token1] = ACTIONS(2155), + [aux_sym__immediate_decimal_token2] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [464] = { + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_alias] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_let_DASHenv] = ACTIONS(1950), + [anon_sym_mut] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [aux_sym_cmd_identifier_token1] = ACTIONS(1950), + [aux_sym_cmd_identifier_token2] = ACTIONS(1958), + [aux_sym_cmd_identifier_token3] = ACTIONS(1958), + [aux_sym_cmd_identifier_token4] = ACTIONS(1958), + [aux_sym_cmd_identifier_token5] = ACTIONS(1958), + [aux_sym_cmd_identifier_token6] = ACTIONS(1958), + [aux_sym_cmd_identifier_token7] = ACTIONS(1958), + [aux_sym_cmd_identifier_token8] = ACTIONS(1950), + [aux_sym_cmd_identifier_token9] = ACTIONS(1950), + [aux_sym_cmd_identifier_token10] = ACTIONS(1958), + [aux_sym_cmd_identifier_token11] = ACTIONS(1958), + [aux_sym_cmd_identifier_token12] = ACTIONS(1950), + [aux_sym_cmd_identifier_token13] = ACTIONS(1950), + [aux_sym_cmd_identifier_token14] = ACTIONS(1950), + [aux_sym_cmd_identifier_token15] = ACTIONS(1950), + [aux_sym_cmd_identifier_token16] = ACTIONS(1958), + [aux_sym_cmd_identifier_token17] = ACTIONS(1958), + [aux_sym_cmd_identifier_token18] = ACTIONS(1958), + [aux_sym_cmd_identifier_token19] = ACTIONS(1958), + [aux_sym_cmd_identifier_token20] = ACTIONS(1958), + [aux_sym_cmd_identifier_token21] = ACTIONS(1958), + [aux_sym_cmd_identifier_token22] = ACTIONS(1958), + [aux_sym_cmd_identifier_token23] = ACTIONS(1958), + [aux_sym_cmd_identifier_token24] = ACTIONS(1958), + [aux_sym_cmd_identifier_token25] = ACTIONS(1958), + [aux_sym_cmd_identifier_token26] = ACTIONS(1958), + [aux_sym_cmd_identifier_token27] = ACTIONS(1958), + [aux_sym_cmd_identifier_token28] = ACTIONS(1958), + [aux_sym_cmd_identifier_token29] = ACTIONS(1958), + [aux_sym_cmd_identifier_token30] = ACTIONS(1958), + [aux_sym_cmd_identifier_token31] = ACTIONS(1958), + [aux_sym_cmd_identifier_token32] = ACTIONS(1958), + [aux_sym_cmd_identifier_token33] = ACTIONS(1958), + [aux_sym_cmd_identifier_token34] = ACTIONS(1950), + [aux_sym_cmd_identifier_token35] = ACTIONS(1958), + [aux_sym_cmd_identifier_token36] = ACTIONS(1958), + [aux_sym_cmd_identifier_token37] = ACTIONS(1958), + [aux_sym_cmd_identifier_token38] = ACTIONS(1950), + [aux_sym_cmd_identifier_token39] = ACTIONS(1958), + [aux_sym_cmd_identifier_token40] = ACTIONS(1958), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_export_DASHenv] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_error] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_in2] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_make] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_else] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_catch] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_source] = ACTIONS(1950), + [anon_sym_source_DASHenv] = ACTIONS(1950), + [anon_sym_register] = ACTIONS(1950), + [anon_sym_hide] = ACTIONS(1950), + [anon_sym_hide_DASHenv] = ACTIONS(1950), + [anon_sym_overlay] = ACTIONS(1950), + [anon_sym_as] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1958), + [anon_sym_DOT_DOT2] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2161), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2161), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1958), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), + }, + [465] = { + [sym_comment] = STATE(465), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [466] = { + [sym_cell_path] = STATE(707), + [sym_path] = STATE(618), + [sym_comment] = STATE(466), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [aux_sym_cmd_identifier_token37] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [467] = { + [sym_cell_path] = STATE(712), + [sym_path] = STATE(618), + [sym_comment] = STATE(467), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_alias] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_let_DASHenv] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [aux_sym_cmd_identifier_token1] = ACTIONS(2163), + [aux_sym_cmd_identifier_token2] = ACTIONS(2163), + [aux_sym_cmd_identifier_token3] = ACTIONS(2163), + [aux_sym_cmd_identifier_token4] = ACTIONS(2163), + [aux_sym_cmd_identifier_token5] = ACTIONS(2163), + [aux_sym_cmd_identifier_token6] = ACTIONS(2163), + [aux_sym_cmd_identifier_token7] = ACTIONS(2163), + [aux_sym_cmd_identifier_token8] = ACTIONS(2163), + [aux_sym_cmd_identifier_token9] = ACTIONS(2163), + [aux_sym_cmd_identifier_token10] = ACTIONS(2163), + [aux_sym_cmd_identifier_token11] = ACTIONS(2163), + [aux_sym_cmd_identifier_token12] = ACTIONS(2163), + [aux_sym_cmd_identifier_token13] = ACTIONS(2163), + [aux_sym_cmd_identifier_token14] = ACTIONS(2163), + [aux_sym_cmd_identifier_token15] = ACTIONS(2163), + [aux_sym_cmd_identifier_token16] = ACTIONS(2163), + [aux_sym_cmd_identifier_token17] = ACTIONS(2163), + [aux_sym_cmd_identifier_token18] = ACTIONS(2163), + [aux_sym_cmd_identifier_token19] = ACTIONS(2163), + [aux_sym_cmd_identifier_token20] = ACTIONS(2163), + [aux_sym_cmd_identifier_token21] = ACTIONS(2163), + [aux_sym_cmd_identifier_token22] = ACTIONS(2163), + [aux_sym_cmd_identifier_token23] = ACTIONS(2163), + [aux_sym_cmd_identifier_token24] = ACTIONS(2163), + [aux_sym_cmd_identifier_token25] = ACTIONS(2163), + [aux_sym_cmd_identifier_token26] = ACTIONS(2163), + [aux_sym_cmd_identifier_token27] = ACTIONS(2163), + [aux_sym_cmd_identifier_token28] = ACTIONS(2163), + [aux_sym_cmd_identifier_token29] = ACTIONS(2163), + [aux_sym_cmd_identifier_token30] = ACTIONS(2163), + [aux_sym_cmd_identifier_token31] = ACTIONS(2163), + [aux_sym_cmd_identifier_token32] = ACTIONS(2163), + [aux_sym_cmd_identifier_token33] = ACTIONS(2163), + [aux_sym_cmd_identifier_token34] = ACTIONS(2163), + [aux_sym_cmd_identifier_token35] = ACTIONS(2163), + [aux_sym_cmd_identifier_token36] = ACTIONS(2163), + [aux_sym_cmd_identifier_token37] = ACTIONS(2163), + [aux_sym_cmd_identifier_token38] = ACTIONS(2163), + [aux_sym_cmd_identifier_token39] = ACTIONS(2163), + [aux_sym_cmd_identifier_token40] = ACTIONS(2163), + [anon_sym_def] = ACTIONS(2163), + [anon_sym_export_DASHenv] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2163), + [anon_sym_error] = ACTIONS(2163), + [anon_sym_DASH2] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_in2] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_make] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_catch] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_source] = ACTIONS(2163), + [anon_sym_source_DASHenv] = ACTIONS(2163), + [anon_sym_register] = ACTIONS(2163), + [anon_sym_hide] = ACTIONS(2163), + [anon_sym_hide_DASHenv] = ACTIONS(2163), + [anon_sym_overlay] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_PLUS2] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2163), + [aux_sym__val_number_decimal_token2] = ACTIONS(2163), + [aux_sym__val_number_decimal_token3] = ACTIONS(2163), + [aux_sym__val_number_decimal_token4] = ACTIONS(2163), + [aux_sym__val_number_token1] = ACTIONS(2163), + [aux_sym__val_number_token2] = ACTIONS(2163), + [aux_sym__val_number_token3] = ACTIONS(2163), + [aux_sym__val_number_token4] = ACTIONS(2163), + [aux_sym__val_number_token5] = ACTIONS(2163), + [aux_sym__val_number_token6] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), + [sym__entry_separator] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2165), + }, + [468] = { + [sym_cell_path] = STATE(697), + [sym_path] = STATE(618), + [sym_comment] = STATE(468), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2167), + [aux_sym_cmd_identifier_token3] = ACTIONS(2167), + [aux_sym_cmd_identifier_token4] = ACTIONS(2167), + [aux_sym_cmd_identifier_token5] = ACTIONS(2167), + [aux_sym_cmd_identifier_token6] = ACTIONS(2167), + [aux_sym_cmd_identifier_token7] = ACTIONS(2167), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2167), + [aux_sym_cmd_identifier_token11] = ACTIONS(2167), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2167), + [aux_sym_cmd_identifier_token17] = ACTIONS(2167), + [aux_sym_cmd_identifier_token18] = ACTIONS(2167), + [aux_sym_cmd_identifier_token19] = ACTIONS(2167), + [aux_sym_cmd_identifier_token20] = ACTIONS(2167), + [aux_sym_cmd_identifier_token21] = ACTIONS(2167), + [aux_sym_cmd_identifier_token22] = ACTIONS(2167), + [aux_sym_cmd_identifier_token23] = ACTIONS(2167), + [aux_sym_cmd_identifier_token24] = ACTIONS(2167), + [aux_sym_cmd_identifier_token25] = ACTIONS(2167), + [aux_sym_cmd_identifier_token26] = ACTIONS(2167), + [aux_sym_cmd_identifier_token27] = ACTIONS(2167), + [aux_sym_cmd_identifier_token28] = ACTIONS(2167), + [aux_sym_cmd_identifier_token29] = ACTIONS(2167), + [aux_sym_cmd_identifier_token30] = ACTIONS(2167), + [aux_sym_cmd_identifier_token31] = ACTIONS(2167), + [aux_sym_cmd_identifier_token32] = ACTIONS(2167), + [aux_sym_cmd_identifier_token33] = ACTIONS(2167), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2167), + [aux_sym_cmd_identifier_token36] = ACTIONS(2167), + [aux_sym_cmd_identifier_token37] = ACTIONS(2167), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2167), + [aux_sym_cmd_identifier_token40] = ACTIONS(2167), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2167), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2167), + [aux_sym__val_number_decimal_token3] = ACTIONS(2167), + [aux_sym__val_number_decimal_token4] = ACTIONS(2167), + [aux_sym__val_number_token1] = ACTIONS(2167), + [aux_sym__val_number_token2] = ACTIONS(2167), + [aux_sym__val_number_token3] = ACTIONS(2167), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [sym__str_single_quotes] = ACTIONS(2167), + [sym__str_back_ticks] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2167), + [sym__entry_separator] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2169), + }, + [469] = { + [sym_cell_path] = STATE(659), + [sym_path] = STATE(618), + [sym_comment] = STATE(469), + [aux_sym_cell_path_repeat1] = STATE(530), + [anon_sym_export] = ACTIONS(2171), + [anon_sym_alias] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_let_DASHenv] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [aux_sym_cmd_identifier_token1] = ACTIONS(2171), [aux_sym_cmd_identifier_token2] = ACTIONS(2171), [aux_sym_cmd_identifier_token3] = ACTIONS(2171), [aux_sym_cmd_identifier_token4] = ACTIONS(2171), [aux_sym_cmd_identifier_token5] = ACTIONS(2171), [aux_sym_cmd_identifier_token6] = ACTIONS(2171), [aux_sym_cmd_identifier_token7] = ACTIONS(2171), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2171), + [aux_sym_cmd_identifier_token9] = ACTIONS(2171), [aux_sym_cmd_identifier_token10] = ACTIONS(2171), [aux_sym_cmd_identifier_token11] = ACTIONS(2171), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2171), + [aux_sym_cmd_identifier_token13] = ACTIONS(2171), + [aux_sym_cmd_identifier_token14] = ACTIONS(2171), + [aux_sym_cmd_identifier_token15] = ACTIONS(2171), [aux_sym_cmd_identifier_token16] = ACTIONS(2171), [aux_sym_cmd_identifier_token17] = ACTIONS(2171), [aux_sym_cmd_identifier_token18] = ACTIONS(2171), @@ -136404,4918 +264660,5633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2171), [aux_sym_cmd_identifier_token32] = ACTIONS(2171), [aux_sym_cmd_identifier_token33] = ACTIONS(2171), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2171), [aux_sym_cmd_identifier_token35] = ACTIONS(2171), [aux_sym_cmd_identifier_token36] = ACTIONS(2171), [aux_sym_cmd_identifier_token37] = ACTIONS(2171), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2171), [aux_sym_cmd_identifier_token39] = ACTIONS(2171), [aux_sym_cmd_identifier_token40] = ACTIONS(2171), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2171), + [anon_sym_export_DASHenv] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_module] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), [anon_sym_LPAREN] = ACTIONS(2171), [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2171), + [anon_sym_DASH2] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_in2] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_make] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_do] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2171), + [anon_sym_catch] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_source] = ACTIONS(2171), + [anon_sym_source_DASHenv] = ACTIONS(2171), + [anon_sym_register] = ACTIONS(2171), + [anon_sym_hide] = ACTIONS(2171), + [anon_sym_hide_DASHenv] = ACTIONS(2171), + [anon_sym_overlay] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_PLUS2] = ACTIONS(2171), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), - [anon_sym_DOT_DOT2] = ACTIONS(2282), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), + [anon_sym_DOT] = ACTIONS(1974), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2171), [aux_sym__val_number_decimal_token2] = ACTIONS(2171), [aux_sym__val_number_decimal_token3] = ACTIONS(2171), [aux_sym__val_number_decimal_token4] = ACTIONS(2171), [aux_sym__val_number_token1] = ACTIONS(2171), [aux_sym__val_number_token2] = ACTIONS(2171), [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2171), + [aux_sym__val_number_token5] = ACTIONS(2171), + [aux_sym__val_number_token6] = ACTIONS(2171), [anon_sym_DQUOTE] = ACTIONS(2171), [sym__str_single_quotes] = ACTIONS(2171), [sym__str_back_ticks] = ACTIONS(2171), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2171), + [sym__entry_separator] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2173), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2175), - [aux_sym_cmd_identifier_token3] = ACTIONS(2175), - [aux_sym_cmd_identifier_token4] = ACTIONS(2175), - [aux_sym_cmd_identifier_token5] = ACTIONS(2175), - [aux_sym_cmd_identifier_token6] = ACTIONS(2175), - [aux_sym_cmd_identifier_token7] = ACTIONS(2175), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2175), - [aux_sym_cmd_identifier_token11] = ACTIONS(2175), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2175), - [aux_sym_cmd_identifier_token17] = ACTIONS(2175), - [aux_sym_cmd_identifier_token18] = ACTIONS(2175), - [aux_sym_cmd_identifier_token19] = ACTIONS(2175), - [aux_sym_cmd_identifier_token20] = ACTIONS(2175), - [aux_sym_cmd_identifier_token21] = ACTIONS(2175), - [aux_sym_cmd_identifier_token22] = ACTIONS(2175), - [aux_sym_cmd_identifier_token23] = ACTIONS(2175), - [aux_sym_cmd_identifier_token24] = ACTIONS(2175), - [aux_sym_cmd_identifier_token25] = ACTIONS(2175), - [aux_sym_cmd_identifier_token26] = ACTIONS(2175), - [aux_sym_cmd_identifier_token27] = ACTIONS(2175), - [aux_sym_cmd_identifier_token28] = ACTIONS(2175), - [aux_sym_cmd_identifier_token29] = ACTIONS(2175), - [aux_sym_cmd_identifier_token30] = ACTIONS(2175), - [aux_sym_cmd_identifier_token31] = ACTIONS(2175), - [aux_sym_cmd_identifier_token32] = ACTIONS(2175), - [aux_sym_cmd_identifier_token33] = ACTIONS(2175), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2175), - [aux_sym_cmd_identifier_token36] = ACTIONS(2175), - [aux_sym_cmd_identifier_token37] = ACTIONS(2175), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2175), - [aux_sym_cmd_identifier_token40] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), - [anon_sym_DOT_DOT2] = ACTIONS(2282), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2175), - [aux_sym__val_number_decimal_token4] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2175), + [470] = { + [sym_cell_path] = STATE(757), + [sym_path] = STATE(693), + [sym_comment] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_alias] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_let_DASHenv] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [aux_sym_cmd_identifier_token1] = ACTIONS(2163), + [aux_sym_cmd_identifier_token2] = ACTIONS(2165), + [aux_sym_cmd_identifier_token3] = ACTIONS(2165), + [aux_sym_cmd_identifier_token4] = ACTIONS(2165), + [aux_sym_cmd_identifier_token5] = ACTIONS(2165), + [aux_sym_cmd_identifier_token6] = ACTIONS(2165), + [aux_sym_cmd_identifier_token7] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2163), + [aux_sym_cmd_identifier_token9] = ACTIONS(2163), + [aux_sym_cmd_identifier_token10] = ACTIONS(2165), + [aux_sym_cmd_identifier_token11] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2163), + [aux_sym_cmd_identifier_token13] = ACTIONS(2163), + [aux_sym_cmd_identifier_token14] = ACTIONS(2163), + [aux_sym_cmd_identifier_token15] = ACTIONS(2163), + [aux_sym_cmd_identifier_token16] = ACTIONS(2165), + [aux_sym_cmd_identifier_token17] = ACTIONS(2165), + [aux_sym_cmd_identifier_token18] = ACTIONS(2165), + [aux_sym_cmd_identifier_token19] = ACTIONS(2165), + [aux_sym_cmd_identifier_token20] = ACTIONS(2165), + [aux_sym_cmd_identifier_token21] = ACTIONS(2165), + [aux_sym_cmd_identifier_token22] = ACTIONS(2165), + [aux_sym_cmd_identifier_token23] = ACTIONS(2165), + [aux_sym_cmd_identifier_token24] = ACTIONS(2165), + [aux_sym_cmd_identifier_token25] = ACTIONS(2165), + [aux_sym_cmd_identifier_token26] = ACTIONS(2165), + [aux_sym_cmd_identifier_token27] = ACTIONS(2165), + [aux_sym_cmd_identifier_token28] = ACTIONS(2165), + [aux_sym_cmd_identifier_token29] = ACTIONS(2165), + [aux_sym_cmd_identifier_token30] = ACTIONS(2165), + [aux_sym_cmd_identifier_token31] = ACTIONS(2165), + [aux_sym_cmd_identifier_token32] = ACTIONS(2165), + [aux_sym_cmd_identifier_token33] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2163), + [aux_sym_cmd_identifier_token35] = ACTIONS(2165), + [aux_sym_cmd_identifier_token36] = ACTIONS(2165), + [aux_sym_cmd_identifier_token37] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2163), + [aux_sym_cmd_identifier_token39] = ACTIONS(2165), + [aux_sym_cmd_identifier_token40] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2163), + [anon_sym_export_DASHenv] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2163), + [anon_sym_DASH2] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_in2] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_make] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_catch] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_source] = ACTIONS(2163), + [anon_sym_source_DASHenv] = ACTIONS(2163), + [anon_sym_register] = ACTIONS(2163), + [anon_sym_hide] = ACTIONS(2163), + [anon_sym_hide_DASHenv] = ACTIONS(2163), + [anon_sym_overlay] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_PLUS2] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2163), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2163), + [aux_sym__val_number_token5] = ACTIONS(2163), + [aux_sym__val_number_token6] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2165), }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [471] = { + [sym_cell_path] = STATE(786), + [sym_path] = STATE(693), + [sym_comment] = STATE(471), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2046), + [anon_sym_alias] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_let_DASHenv] = ACTIONS(2046), + [anon_sym_mut] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [aux_sym_cmd_identifier_token1] = ACTIONS(2046), + [aux_sym_cmd_identifier_token2] = ACTIONS(2048), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [aux_sym_cmd_identifier_token6] = ACTIONS(2048), + [aux_sym_cmd_identifier_token7] = ACTIONS(2048), + [aux_sym_cmd_identifier_token8] = ACTIONS(2046), + [aux_sym_cmd_identifier_token9] = ACTIONS(2046), + [aux_sym_cmd_identifier_token10] = ACTIONS(2048), + [aux_sym_cmd_identifier_token11] = ACTIONS(2048), + [aux_sym_cmd_identifier_token12] = ACTIONS(2046), + [aux_sym_cmd_identifier_token13] = ACTIONS(2046), + [aux_sym_cmd_identifier_token14] = ACTIONS(2046), + [aux_sym_cmd_identifier_token15] = ACTIONS(2046), + [aux_sym_cmd_identifier_token16] = ACTIONS(2048), + [aux_sym_cmd_identifier_token17] = ACTIONS(2048), + [aux_sym_cmd_identifier_token18] = ACTIONS(2048), + [aux_sym_cmd_identifier_token19] = ACTIONS(2048), + [aux_sym_cmd_identifier_token20] = ACTIONS(2048), + [aux_sym_cmd_identifier_token21] = ACTIONS(2048), + [aux_sym_cmd_identifier_token22] = ACTIONS(2048), + [aux_sym_cmd_identifier_token23] = ACTIONS(2048), + [aux_sym_cmd_identifier_token24] = ACTIONS(2048), + [aux_sym_cmd_identifier_token25] = ACTIONS(2048), + [aux_sym_cmd_identifier_token26] = ACTIONS(2048), + [aux_sym_cmd_identifier_token27] = ACTIONS(2048), + [aux_sym_cmd_identifier_token28] = ACTIONS(2048), + [aux_sym_cmd_identifier_token29] = ACTIONS(2048), + [aux_sym_cmd_identifier_token30] = ACTIONS(2048), + [aux_sym_cmd_identifier_token31] = ACTIONS(2048), + [aux_sym_cmd_identifier_token32] = ACTIONS(2048), + [aux_sym_cmd_identifier_token33] = ACTIONS(2048), + [aux_sym_cmd_identifier_token34] = ACTIONS(2046), + [aux_sym_cmd_identifier_token35] = ACTIONS(2048), + [aux_sym_cmd_identifier_token36] = ACTIONS(2048), + [aux_sym_cmd_identifier_token37] = ACTIONS(2048), + [aux_sym_cmd_identifier_token38] = ACTIONS(2046), + [aux_sym_cmd_identifier_token39] = ACTIONS(2048), + [aux_sym_cmd_identifier_token40] = ACTIONS(2048), + [anon_sym_def] = ACTIONS(2046), + [anon_sym_export_DASHenv] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_module] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2048), + [anon_sym_error] = ACTIONS(2046), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_in2] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_make] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_do] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_else] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2046), + [anon_sym_catch] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_source] = ACTIONS(2046), + [anon_sym_source_DASHenv] = ACTIONS(2046), + [anon_sym_register] = ACTIONS(2046), + [anon_sym_hide] = ACTIONS(2046), + [anon_sym_hide_DASHenv] = ACTIONS(2046), + [anon_sym_overlay] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(2046), + [anon_sym_PLUS2] = ACTIONS(2046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2048), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2048), + [aux_sym__val_number_decimal_token4] = ACTIONS(2048), + [aux_sym__val_number_token1] = ACTIONS(2048), + [aux_sym__val_number_token2] = ACTIONS(2048), + [aux_sym__val_number_token3] = ACTIONS(2048), + [aux_sym__val_number_token4] = ACTIONS(2046), + [aux_sym__val_number_token5] = ACTIONS(2046), + [aux_sym__val_number_token6] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2048), + [sym__str_back_ticks] = ACTIONS(2048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2048), }, - [565] = { - [sym_comment] = STATE(565), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [472] = { + [sym_cell_path] = STATE(787), + [sym_path] = STATE(693), + [sym_comment] = STATE(472), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2050), + [anon_sym_alias] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_let_DASHenv] = ACTIONS(2050), + [anon_sym_mut] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [aux_sym_cmd_identifier_token1] = ACTIONS(2050), + [aux_sym_cmd_identifier_token2] = ACTIONS(2052), + [aux_sym_cmd_identifier_token3] = ACTIONS(2052), + [aux_sym_cmd_identifier_token4] = ACTIONS(2052), + [aux_sym_cmd_identifier_token5] = ACTIONS(2052), + [aux_sym_cmd_identifier_token6] = ACTIONS(2052), + [aux_sym_cmd_identifier_token7] = ACTIONS(2052), + [aux_sym_cmd_identifier_token8] = ACTIONS(2050), + [aux_sym_cmd_identifier_token9] = ACTIONS(2050), + [aux_sym_cmd_identifier_token10] = ACTIONS(2052), + [aux_sym_cmd_identifier_token11] = ACTIONS(2052), + [aux_sym_cmd_identifier_token12] = ACTIONS(2050), + [aux_sym_cmd_identifier_token13] = ACTIONS(2050), + [aux_sym_cmd_identifier_token14] = ACTIONS(2050), + [aux_sym_cmd_identifier_token15] = ACTIONS(2050), + [aux_sym_cmd_identifier_token16] = ACTIONS(2052), + [aux_sym_cmd_identifier_token17] = ACTIONS(2052), + [aux_sym_cmd_identifier_token18] = ACTIONS(2052), + [aux_sym_cmd_identifier_token19] = ACTIONS(2052), + [aux_sym_cmd_identifier_token20] = ACTIONS(2052), + [aux_sym_cmd_identifier_token21] = ACTIONS(2052), + [aux_sym_cmd_identifier_token22] = ACTIONS(2052), + [aux_sym_cmd_identifier_token23] = ACTIONS(2052), + [aux_sym_cmd_identifier_token24] = ACTIONS(2052), + [aux_sym_cmd_identifier_token25] = ACTIONS(2052), + [aux_sym_cmd_identifier_token26] = ACTIONS(2052), + [aux_sym_cmd_identifier_token27] = ACTIONS(2052), + [aux_sym_cmd_identifier_token28] = ACTIONS(2052), + [aux_sym_cmd_identifier_token29] = ACTIONS(2052), + [aux_sym_cmd_identifier_token30] = ACTIONS(2052), + [aux_sym_cmd_identifier_token31] = ACTIONS(2052), + [aux_sym_cmd_identifier_token32] = ACTIONS(2052), + [aux_sym_cmd_identifier_token33] = ACTIONS(2052), + [aux_sym_cmd_identifier_token34] = ACTIONS(2050), + [aux_sym_cmd_identifier_token35] = ACTIONS(2052), + [aux_sym_cmd_identifier_token36] = ACTIONS(2052), + [aux_sym_cmd_identifier_token37] = ACTIONS(2052), + [aux_sym_cmd_identifier_token38] = ACTIONS(2050), + [aux_sym_cmd_identifier_token39] = ACTIONS(2052), + [aux_sym_cmd_identifier_token40] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2050), + [anon_sym_export_DASHenv] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_module] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_error] = ACTIONS(2050), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_in2] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_make] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_do] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_else] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2050), + [anon_sym_catch] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_source] = ACTIONS(2050), + [anon_sym_source_DASHenv] = ACTIONS(2050), + [anon_sym_register] = ACTIONS(2050), + [anon_sym_hide] = ACTIONS(2050), + [anon_sym_hide_DASHenv] = ACTIONS(2050), + [anon_sym_overlay] = ACTIONS(2050), + [anon_sym_as] = ACTIONS(2050), + [anon_sym_PLUS2] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_decimal_token2] = ACTIONS(2052), + [aux_sym__val_number_decimal_token3] = ACTIONS(2052), + [aux_sym__val_number_decimal_token4] = ACTIONS(2052), + [aux_sym__val_number_token1] = ACTIONS(2052), + [aux_sym__val_number_token2] = ACTIONS(2052), + [aux_sym__val_number_token3] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2050), + [aux_sym__val_number_token5] = ACTIONS(2050), + [aux_sym__val_number_token6] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2052), }, - [566] = { - [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [473] = { + [sym_cell_path] = STATE(771), + [sym_path] = STATE(693), + [sym_comment] = STATE(473), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2054), + [anon_sym_alias] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_let_DASHenv] = ACTIONS(2054), + [anon_sym_mut] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [aux_sym_cmd_identifier_token1] = ACTIONS(2054), + [aux_sym_cmd_identifier_token2] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2056), + [aux_sym_cmd_identifier_token4] = ACTIONS(2056), + [aux_sym_cmd_identifier_token5] = ACTIONS(2056), + [aux_sym_cmd_identifier_token6] = ACTIONS(2056), + [aux_sym_cmd_identifier_token7] = ACTIONS(2056), + [aux_sym_cmd_identifier_token8] = ACTIONS(2054), + [aux_sym_cmd_identifier_token9] = ACTIONS(2054), + [aux_sym_cmd_identifier_token10] = ACTIONS(2056), + [aux_sym_cmd_identifier_token11] = ACTIONS(2056), + [aux_sym_cmd_identifier_token12] = ACTIONS(2054), + [aux_sym_cmd_identifier_token13] = ACTIONS(2054), + [aux_sym_cmd_identifier_token14] = ACTIONS(2054), + [aux_sym_cmd_identifier_token15] = ACTIONS(2054), + [aux_sym_cmd_identifier_token16] = ACTIONS(2056), + [aux_sym_cmd_identifier_token17] = ACTIONS(2056), + [aux_sym_cmd_identifier_token18] = ACTIONS(2056), + [aux_sym_cmd_identifier_token19] = ACTIONS(2056), + [aux_sym_cmd_identifier_token20] = ACTIONS(2056), + [aux_sym_cmd_identifier_token21] = ACTIONS(2056), + [aux_sym_cmd_identifier_token22] = ACTIONS(2056), + [aux_sym_cmd_identifier_token23] = ACTIONS(2056), + [aux_sym_cmd_identifier_token24] = ACTIONS(2056), + [aux_sym_cmd_identifier_token25] = ACTIONS(2056), + [aux_sym_cmd_identifier_token26] = ACTIONS(2056), + [aux_sym_cmd_identifier_token27] = ACTIONS(2056), + [aux_sym_cmd_identifier_token28] = ACTIONS(2056), + [aux_sym_cmd_identifier_token29] = ACTIONS(2056), + [aux_sym_cmd_identifier_token30] = ACTIONS(2056), + [aux_sym_cmd_identifier_token31] = ACTIONS(2056), + [aux_sym_cmd_identifier_token32] = ACTIONS(2056), + [aux_sym_cmd_identifier_token33] = ACTIONS(2056), + [aux_sym_cmd_identifier_token34] = ACTIONS(2054), + [aux_sym_cmd_identifier_token35] = ACTIONS(2056), + [aux_sym_cmd_identifier_token36] = ACTIONS(2056), + [aux_sym_cmd_identifier_token37] = ACTIONS(2056), + [aux_sym_cmd_identifier_token38] = ACTIONS(2054), + [aux_sym_cmd_identifier_token39] = ACTIONS(2056), + [aux_sym_cmd_identifier_token40] = ACTIONS(2056), + [anon_sym_def] = ACTIONS(2054), + [anon_sym_export_DASHenv] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_module] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(2056), + [anon_sym_error] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_make] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_source] = ACTIONS(2054), + [anon_sym_source_DASHenv] = ACTIONS(2054), + [anon_sym_register] = ACTIONS(2054), + [anon_sym_hide] = ACTIONS(2054), + [anon_sym_hide_DASHenv] = ACTIONS(2054), + [anon_sym_overlay] = ACTIONS(2054), + [anon_sym_as] = ACTIONS(2054), + [anon_sym_PLUS2] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2056), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2056), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2056), + [aux_sym__val_number_decimal_token4] = ACTIONS(2056), + [aux_sym__val_number_token1] = ACTIONS(2056), + [aux_sym__val_number_token2] = ACTIONS(2056), + [aux_sym__val_number_token3] = ACTIONS(2056), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym__str_single_quotes] = ACTIONS(2056), + [sym__str_back_ticks] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2056), }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1008), + [474] = { + [sym_cell_path] = STATE(718), + [sym_path] = STATE(693), + [sym_comment] = STATE(474), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [aux_sym_cmd_identifier_token1] = ACTIONS(2058), + [aux_sym_cmd_identifier_token2] = ACTIONS(2060), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [aux_sym_cmd_identifier_token6] = ACTIONS(2060), + [aux_sym_cmd_identifier_token7] = ACTIONS(2060), + [aux_sym_cmd_identifier_token8] = ACTIONS(2058), + [aux_sym_cmd_identifier_token9] = ACTIONS(2058), + [aux_sym_cmd_identifier_token10] = ACTIONS(2060), + [aux_sym_cmd_identifier_token11] = ACTIONS(2060), + [aux_sym_cmd_identifier_token12] = ACTIONS(2058), + [aux_sym_cmd_identifier_token13] = ACTIONS(2058), + [aux_sym_cmd_identifier_token14] = ACTIONS(2058), + [aux_sym_cmd_identifier_token15] = ACTIONS(2058), + [aux_sym_cmd_identifier_token16] = ACTIONS(2060), + [aux_sym_cmd_identifier_token17] = ACTIONS(2060), + [aux_sym_cmd_identifier_token18] = ACTIONS(2060), + [aux_sym_cmd_identifier_token19] = ACTIONS(2060), + [aux_sym_cmd_identifier_token20] = ACTIONS(2060), + [aux_sym_cmd_identifier_token21] = ACTIONS(2060), + [aux_sym_cmd_identifier_token22] = ACTIONS(2060), + [aux_sym_cmd_identifier_token23] = ACTIONS(2060), + [aux_sym_cmd_identifier_token24] = ACTIONS(2060), + [aux_sym_cmd_identifier_token25] = ACTIONS(2060), + [aux_sym_cmd_identifier_token26] = ACTIONS(2060), + [aux_sym_cmd_identifier_token27] = ACTIONS(2060), + [aux_sym_cmd_identifier_token28] = ACTIONS(2060), + [aux_sym_cmd_identifier_token29] = ACTIONS(2060), + [aux_sym_cmd_identifier_token30] = ACTIONS(2060), + [aux_sym_cmd_identifier_token31] = ACTIONS(2060), + [aux_sym_cmd_identifier_token32] = ACTIONS(2060), + [aux_sym_cmd_identifier_token33] = ACTIONS(2060), + [aux_sym_cmd_identifier_token34] = ACTIONS(2058), + [aux_sym_cmd_identifier_token35] = ACTIONS(2060), + [aux_sym_cmd_identifier_token36] = ACTIONS(2060), + [aux_sym_cmd_identifier_token37] = ACTIONS(2060), + [aux_sym_cmd_identifier_token38] = ACTIONS(2058), + [aux_sym_cmd_identifier_token39] = ACTIONS(2060), + [aux_sym_cmd_identifier_token40] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2060), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_in2] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_make] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_PLUS2] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2060), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2060), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2060), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2060), }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2296), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [475] = { + [sym_cell_path] = STATE(747), + [sym_path] = STATE(693), + [sym_comment] = STATE(475), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2062), + [anon_sym_alias] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_let_DASHenv] = ACTIONS(2062), + [anon_sym_mut] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [aux_sym_cmd_identifier_token1] = ACTIONS(2062), + [aux_sym_cmd_identifier_token2] = ACTIONS(2064), + [aux_sym_cmd_identifier_token3] = ACTIONS(2064), + [aux_sym_cmd_identifier_token4] = ACTIONS(2064), + [aux_sym_cmd_identifier_token5] = ACTIONS(2064), + [aux_sym_cmd_identifier_token6] = ACTIONS(2064), + [aux_sym_cmd_identifier_token7] = ACTIONS(2064), + [aux_sym_cmd_identifier_token8] = ACTIONS(2062), + [aux_sym_cmd_identifier_token9] = ACTIONS(2062), + [aux_sym_cmd_identifier_token10] = ACTIONS(2064), + [aux_sym_cmd_identifier_token11] = ACTIONS(2064), + [aux_sym_cmd_identifier_token12] = ACTIONS(2062), + [aux_sym_cmd_identifier_token13] = ACTIONS(2062), + [aux_sym_cmd_identifier_token14] = ACTIONS(2062), + [aux_sym_cmd_identifier_token15] = ACTIONS(2062), + [aux_sym_cmd_identifier_token16] = ACTIONS(2064), + [aux_sym_cmd_identifier_token17] = ACTIONS(2064), + [aux_sym_cmd_identifier_token18] = ACTIONS(2064), + [aux_sym_cmd_identifier_token19] = ACTIONS(2064), + [aux_sym_cmd_identifier_token20] = ACTIONS(2064), + [aux_sym_cmd_identifier_token21] = ACTIONS(2064), + [aux_sym_cmd_identifier_token22] = ACTIONS(2064), + [aux_sym_cmd_identifier_token23] = ACTIONS(2064), + [aux_sym_cmd_identifier_token24] = ACTIONS(2064), + [aux_sym_cmd_identifier_token25] = ACTIONS(2064), + [aux_sym_cmd_identifier_token26] = ACTIONS(2064), + [aux_sym_cmd_identifier_token27] = ACTIONS(2064), + [aux_sym_cmd_identifier_token28] = ACTIONS(2064), + [aux_sym_cmd_identifier_token29] = ACTIONS(2064), + [aux_sym_cmd_identifier_token30] = ACTIONS(2064), + [aux_sym_cmd_identifier_token31] = ACTIONS(2064), + [aux_sym_cmd_identifier_token32] = ACTIONS(2064), + [aux_sym_cmd_identifier_token33] = ACTIONS(2064), + [aux_sym_cmd_identifier_token34] = ACTIONS(2062), + [aux_sym_cmd_identifier_token35] = ACTIONS(2064), + [aux_sym_cmd_identifier_token36] = ACTIONS(2064), + [aux_sym_cmd_identifier_token37] = ACTIONS(2064), + [aux_sym_cmd_identifier_token38] = ACTIONS(2062), + [aux_sym_cmd_identifier_token39] = ACTIONS(2064), + [aux_sym_cmd_identifier_token40] = ACTIONS(2064), + [anon_sym_def] = ACTIONS(2062), + [anon_sym_export_DASHenv] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_module] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2064), + [anon_sym_error] = ACTIONS(2062), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_in2] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_make] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_else] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2062), + [anon_sym_catch] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_source] = ACTIONS(2062), + [anon_sym_source_DASHenv] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_hide] = ACTIONS(2062), + [anon_sym_hide_DASHenv] = ACTIONS(2062), + [anon_sym_overlay] = ACTIONS(2062), + [anon_sym_as] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2062), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2062), + [aux_sym__val_number_token5] = ACTIONS(2062), + [aux_sym__val_number_token6] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2064), }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [aux_sym__immediate_decimal_token2] = ACTIONS(2236), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [476] = { + [sym_cell_path] = STATE(748), + [sym_path] = STATE(693), + [sym_comment] = STATE(476), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2068), + [aux_sym_cmd_identifier_token3] = ACTIONS(2068), + [aux_sym_cmd_identifier_token4] = ACTIONS(2068), + [aux_sym_cmd_identifier_token5] = ACTIONS(2068), + [aux_sym_cmd_identifier_token6] = ACTIONS(2068), + [aux_sym_cmd_identifier_token7] = ACTIONS(2068), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2068), + [aux_sym_cmd_identifier_token11] = ACTIONS(2068), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2068), + [aux_sym_cmd_identifier_token17] = ACTIONS(2068), + [aux_sym_cmd_identifier_token18] = ACTIONS(2068), + [aux_sym_cmd_identifier_token19] = ACTIONS(2068), + [aux_sym_cmd_identifier_token20] = ACTIONS(2068), + [aux_sym_cmd_identifier_token21] = ACTIONS(2068), + [aux_sym_cmd_identifier_token22] = ACTIONS(2068), + [aux_sym_cmd_identifier_token23] = ACTIONS(2068), + [aux_sym_cmd_identifier_token24] = ACTIONS(2068), + [aux_sym_cmd_identifier_token25] = ACTIONS(2068), + [aux_sym_cmd_identifier_token26] = ACTIONS(2068), + [aux_sym_cmd_identifier_token27] = ACTIONS(2068), + [aux_sym_cmd_identifier_token28] = ACTIONS(2068), + [aux_sym_cmd_identifier_token29] = ACTIONS(2068), + [aux_sym_cmd_identifier_token30] = ACTIONS(2068), + [aux_sym_cmd_identifier_token31] = ACTIONS(2068), + [aux_sym_cmd_identifier_token32] = ACTIONS(2068), + [aux_sym_cmd_identifier_token33] = ACTIONS(2068), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2068), + [aux_sym_cmd_identifier_token36] = ACTIONS(2068), + [aux_sym_cmd_identifier_token37] = ACTIONS(2068), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2068), + [aux_sym_cmd_identifier_token40] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in2] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2068), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_alias] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_let_DASHenv] = ACTIONS(2298), - [anon_sym_mut] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [aux_sym_cmd_identifier_token1] = ACTIONS(2298), - [aux_sym_cmd_identifier_token2] = ACTIONS(2298), - [aux_sym_cmd_identifier_token3] = ACTIONS(2298), - [aux_sym_cmd_identifier_token4] = ACTIONS(2298), - [aux_sym_cmd_identifier_token5] = ACTIONS(2298), - [aux_sym_cmd_identifier_token6] = ACTIONS(2298), - [aux_sym_cmd_identifier_token7] = ACTIONS(2298), - [aux_sym_cmd_identifier_token8] = ACTIONS(2298), - [aux_sym_cmd_identifier_token9] = ACTIONS(2298), - [aux_sym_cmd_identifier_token10] = ACTIONS(2298), - [aux_sym_cmd_identifier_token11] = ACTIONS(2298), - [aux_sym_cmd_identifier_token12] = ACTIONS(2298), - [aux_sym_cmd_identifier_token13] = ACTIONS(2298), - [aux_sym_cmd_identifier_token14] = ACTIONS(2298), - [aux_sym_cmd_identifier_token15] = ACTIONS(2298), - [aux_sym_cmd_identifier_token16] = ACTIONS(2298), - [aux_sym_cmd_identifier_token17] = ACTIONS(2298), - [aux_sym_cmd_identifier_token18] = ACTIONS(2298), - [aux_sym_cmd_identifier_token19] = ACTIONS(2298), - [aux_sym_cmd_identifier_token20] = ACTIONS(2298), - [aux_sym_cmd_identifier_token21] = ACTIONS(2298), - [aux_sym_cmd_identifier_token22] = ACTIONS(2298), - [aux_sym_cmd_identifier_token23] = ACTIONS(2298), - [aux_sym_cmd_identifier_token24] = ACTIONS(2298), - [aux_sym_cmd_identifier_token25] = ACTIONS(2298), - [aux_sym_cmd_identifier_token26] = ACTIONS(2298), - [aux_sym_cmd_identifier_token27] = ACTIONS(2298), - [aux_sym_cmd_identifier_token28] = ACTIONS(2298), - [aux_sym_cmd_identifier_token29] = ACTIONS(2298), - [aux_sym_cmd_identifier_token30] = ACTIONS(2298), - [aux_sym_cmd_identifier_token31] = ACTIONS(2298), - [aux_sym_cmd_identifier_token32] = ACTIONS(2298), - [aux_sym_cmd_identifier_token33] = ACTIONS(2298), - [aux_sym_cmd_identifier_token34] = ACTIONS(2298), - [aux_sym_cmd_identifier_token35] = ACTIONS(2298), - [aux_sym_cmd_identifier_token36] = ACTIONS(2298), - [aux_sym_cmd_identifier_token37] = ACTIONS(2298), - [aux_sym_cmd_identifier_token38] = ACTIONS(2298), - [aux_sym_cmd_identifier_token39] = ACTIONS(2298), - [aux_sym_cmd_identifier_token40] = ACTIONS(2298), - [anon_sym_def] = ACTIONS(2298), - [anon_sym_export_DASHenv] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_error] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_make] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_source] = ACTIONS(2298), - [anon_sym_source_DASHenv] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2298), - [anon_sym_hide] = ACTIONS(2298), - [anon_sym_hide_DASHenv] = ACTIONS(2298), - [anon_sym_overlay] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2300), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [sym__str_single_quotes] = ACTIONS(2298), - [sym__str_back_ticks] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), - [sym__entry_separator] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), + [477] = { + [sym_cell_path] = STATE(750), + [sym_path] = STATE(693), + [sym_comment] = STATE(477), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_alias] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_let_DASHenv] = ACTIONS(2070), + [anon_sym_mut] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [aux_sym_cmd_identifier_token1] = ACTIONS(2070), + [aux_sym_cmd_identifier_token2] = ACTIONS(2072), + [aux_sym_cmd_identifier_token3] = ACTIONS(2072), + [aux_sym_cmd_identifier_token4] = ACTIONS(2072), + [aux_sym_cmd_identifier_token5] = ACTIONS(2072), + [aux_sym_cmd_identifier_token6] = ACTIONS(2072), + [aux_sym_cmd_identifier_token7] = ACTIONS(2072), + [aux_sym_cmd_identifier_token8] = ACTIONS(2070), + [aux_sym_cmd_identifier_token9] = ACTIONS(2070), + [aux_sym_cmd_identifier_token10] = ACTIONS(2072), + [aux_sym_cmd_identifier_token11] = ACTIONS(2072), + [aux_sym_cmd_identifier_token12] = ACTIONS(2070), + [aux_sym_cmd_identifier_token13] = ACTIONS(2070), + [aux_sym_cmd_identifier_token14] = ACTIONS(2070), + [aux_sym_cmd_identifier_token15] = ACTIONS(2070), + [aux_sym_cmd_identifier_token16] = ACTIONS(2072), + [aux_sym_cmd_identifier_token17] = ACTIONS(2072), + [aux_sym_cmd_identifier_token18] = ACTIONS(2072), + [aux_sym_cmd_identifier_token19] = ACTIONS(2072), + [aux_sym_cmd_identifier_token20] = ACTIONS(2072), + [aux_sym_cmd_identifier_token21] = ACTIONS(2072), + [aux_sym_cmd_identifier_token22] = ACTIONS(2072), + [aux_sym_cmd_identifier_token23] = ACTIONS(2072), + [aux_sym_cmd_identifier_token24] = ACTIONS(2072), + [aux_sym_cmd_identifier_token25] = ACTIONS(2072), + [aux_sym_cmd_identifier_token26] = ACTIONS(2072), + [aux_sym_cmd_identifier_token27] = ACTIONS(2072), + [aux_sym_cmd_identifier_token28] = ACTIONS(2072), + [aux_sym_cmd_identifier_token29] = ACTIONS(2072), + [aux_sym_cmd_identifier_token30] = ACTIONS(2072), + [aux_sym_cmd_identifier_token31] = ACTIONS(2072), + [aux_sym_cmd_identifier_token32] = ACTIONS(2072), + [aux_sym_cmd_identifier_token33] = ACTIONS(2072), + [aux_sym_cmd_identifier_token34] = ACTIONS(2070), + [aux_sym_cmd_identifier_token35] = ACTIONS(2072), + [aux_sym_cmd_identifier_token36] = ACTIONS(2072), + [aux_sym_cmd_identifier_token37] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2070), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2070), + [anon_sym_export_DASHenv] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_in2] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_make] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_source] = ACTIONS(2070), + [anon_sym_source_DASHenv] = ACTIONS(2070), + [anon_sym_register] = ACTIONS(2070), + [anon_sym_hide] = ACTIONS(2070), + [anon_sym_hide_DASHenv] = ACTIONS(2070), + [anon_sym_overlay] = ACTIONS(2070), + [anon_sym_as] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2072), }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1707), - [aux_sym_cmd_identifier_token3] = ACTIONS(1707), - [aux_sym_cmd_identifier_token4] = ACTIONS(1707), - [aux_sym_cmd_identifier_token5] = ACTIONS(1707), - [aux_sym_cmd_identifier_token6] = ACTIONS(1707), - [aux_sym_cmd_identifier_token7] = ACTIONS(1707), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1707), - [aux_sym_cmd_identifier_token17] = ACTIONS(1707), - [aux_sym_cmd_identifier_token18] = ACTIONS(1707), - [aux_sym_cmd_identifier_token19] = ACTIONS(1707), - [aux_sym_cmd_identifier_token20] = ACTIONS(1707), - [aux_sym_cmd_identifier_token21] = ACTIONS(1707), - [aux_sym_cmd_identifier_token22] = ACTIONS(1707), - [aux_sym_cmd_identifier_token23] = ACTIONS(1707), - [aux_sym_cmd_identifier_token24] = ACTIONS(1707), - [aux_sym_cmd_identifier_token25] = ACTIONS(1707), - [aux_sym_cmd_identifier_token26] = ACTIONS(1707), - [aux_sym_cmd_identifier_token27] = ACTIONS(1707), - [aux_sym_cmd_identifier_token28] = ACTIONS(1707), - [aux_sym_cmd_identifier_token29] = ACTIONS(1707), - [aux_sym_cmd_identifier_token30] = ACTIONS(1707), - [aux_sym_cmd_identifier_token31] = ACTIONS(1707), - [aux_sym_cmd_identifier_token32] = ACTIONS(1707), - [aux_sym_cmd_identifier_token33] = ACTIONS(1707), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1707), - [aux_sym_cmd_identifier_token36] = ACTIONS(1707), - [aux_sym_cmd_identifier_token37] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [sym__entry_separator] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [aux_sym_cmd_identifier_token1] = ACTIONS(2177), + [aux_sym_cmd_identifier_token2] = ACTIONS(2177), + [aux_sym_cmd_identifier_token3] = ACTIONS(2177), + [aux_sym_cmd_identifier_token4] = ACTIONS(2177), + [aux_sym_cmd_identifier_token5] = ACTIONS(2177), + [aux_sym_cmd_identifier_token6] = ACTIONS(2177), + [aux_sym_cmd_identifier_token7] = ACTIONS(2177), + [aux_sym_cmd_identifier_token8] = ACTIONS(2177), + [aux_sym_cmd_identifier_token9] = ACTIONS(2177), + [aux_sym_cmd_identifier_token10] = ACTIONS(2177), + [aux_sym_cmd_identifier_token11] = ACTIONS(2177), + [aux_sym_cmd_identifier_token12] = ACTIONS(2177), + [aux_sym_cmd_identifier_token13] = ACTIONS(2177), + [aux_sym_cmd_identifier_token14] = ACTIONS(2177), + [aux_sym_cmd_identifier_token15] = ACTIONS(2177), + [aux_sym_cmd_identifier_token16] = ACTIONS(2177), + [aux_sym_cmd_identifier_token17] = ACTIONS(2177), + [aux_sym_cmd_identifier_token18] = ACTIONS(2177), + [aux_sym_cmd_identifier_token19] = ACTIONS(2177), + [aux_sym_cmd_identifier_token20] = ACTIONS(2177), + [aux_sym_cmd_identifier_token21] = ACTIONS(2177), + [aux_sym_cmd_identifier_token22] = ACTIONS(2177), + [aux_sym_cmd_identifier_token23] = ACTIONS(2177), + [aux_sym_cmd_identifier_token24] = ACTIONS(2177), + [aux_sym_cmd_identifier_token25] = ACTIONS(2177), + [aux_sym_cmd_identifier_token26] = ACTIONS(2177), + [aux_sym_cmd_identifier_token27] = ACTIONS(2177), + [aux_sym_cmd_identifier_token28] = ACTIONS(2177), + [aux_sym_cmd_identifier_token29] = ACTIONS(2177), + [aux_sym_cmd_identifier_token30] = ACTIONS(2177), + [aux_sym_cmd_identifier_token31] = ACTIONS(2177), + [aux_sym_cmd_identifier_token32] = ACTIONS(2177), + [aux_sym_cmd_identifier_token33] = ACTIONS(2177), + [aux_sym_cmd_identifier_token34] = ACTIONS(2177), + [aux_sym_cmd_identifier_token35] = ACTIONS(2177), + [aux_sym_cmd_identifier_token36] = ACTIONS(2177), + [aux_sym_cmd_identifier_token37] = ACTIONS(2177), + [aux_sym_cmd_identifier_token38] = ACTIONS(2177), + [aux_sym_cmd_identifier_token39] = ACTIONS(2177), + [aux_sym_cmd_identifier_token40] = ACTIONS(2177), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_in2] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_make] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_catch] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_PLUS2] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2177), + [anon_sym_DOT_DOT2] = ACTIONS(2179), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2181), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2177), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2177), + [aux_sym__val_number_decimal_token3] = ACTIONS(2177), + [aux_sym__val_number_decimal_token4] = ACTIONS(2177), + [aux_sym__val_number_token1] = ACTIONS(2177), + [aux_sym__val_number_token2] = ACTIONS(2177), + [aux_sym__val_number_token3] = ACTIONS(2177), + [aux_sym__val_number_token4] = ACTIONS(2177), + [aux_sym__val_number_token5] = ACTIONS(2177), + [aux_sym__val_number_token6] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym__str_single_quotes] = ACTIONS(2177), + [sym__str_back_ticks] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2177), + [sym__entry_separator] = ACTIONS(2183), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1719), + [sym_raw_string_begin] = ACTIONS(2183), }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [sym__entry_separator] = ACTIONS(1012), + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [aux_sym_cmd_identifier_token1] = ACTIONS(2185), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2185), + [aux_sym_cmd_identifier_token9] = ACTIONS(2185), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2185), + [aux_sym_cmd_identifier_token13] = ACTIONS(2185), + [aux_sym_cmd_identifier_token14] = ACTIONS(2185), + [aux_sym_cmd_identifier_token15] = ACTIONS(2185), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2185), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2185), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_in2] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_make] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_PLUS2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), + [sym__entry_separator] = ACTIONS(2191), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1012), + [sym_raw_string_begin] = ACTIONS(2191), }, - [573] = { - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1014), - [aux_sym_cmd_identifier_token3] = ACTIONS(1014), - [aux_sym_cmd_identifier_token4] = ACTIONS(1014), - [aux_sym_cmd_identifier_token5] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [aux_sym_cmd_identifier_token7] = ACTIONS(1014), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1014), - [aux_sym_cmd_identifier_token17] = ACTIONS(1014), - [aux_sym_cmd_identifier_token18] = ACTIONS(1014), - [aux_sym_cmd_identifier_token19] = ACTIONS(1014), - [aux_sym_cmd_identifier_token20] = ACTIONS(1014), - [aux_sym_cmd_identifier_token21] = ACTIONS(1014), - [aux_sym_cmd_identifier_token22] = ACTIONS(1014), - [aux_sym_cmd_identifier_token23] = ACTIONS(1014), - [aux_sym_cmd_identifier_token24] = ACTIONS(1014), - [aux_sym_cmd_identifier_token25] = ACTIONS(1014), - [aux_sym_cmd_identifier_token26] = ACTIONS(1014), - [aux_sym_cmd_identifier_token27] = ACTIONS(1014), - [aux_sym_cmd_identifier_token28] = ACTIONS(1014), - [aux_sym_cmd_identifier_token29] = ACTIONS(1014), - [aux_sym_cmd_identifier_token30] = ACTIONS(1014), - [aux_sym_cmd_identifier_token31] = ACTIONS(1014), - [aux_sym_cmd_identifier_token32] = ACTIONS(1014), - [aux_sym_cmd_identifier_token33] = ACTIONS(1014), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1014), - [aux_sym_cmd_identifier_token36] = ACTIONS(1014), - [aux_sym_cmd_identifier_token37] = ACTIONS(1014), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1014), - [aux_sym__val_number_decimal_token4] = ACTIONS(1014), - [aux_sym__val_number_token1] = ACTIONS(1014), - [aux_sym__val_number_token2] = ACTIONS(1014), - [aux_sym__val_number_token3] = ACTIONS(1014), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), - [sym__entry_separator] = ACTIONS(1016), + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1016), + [sym_raw_string_begin] = ACTIONS(1970), }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_alias] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_let_DASHenv] = ACTIONS(2238), - [anon_sym_mut] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [aux_sym_cmd_identifier_token1] = ACTIONS(2238), - [aux_sym_cmd_identifier_token2] = ACTIONS(2238), - [aux_sym_cmd_identifier_token3] = ACTIONS(2238), - [aux_sym_cmd_identifier_token4] = ACTIONS(2238), - [aux_sym_cmd_identifier_token5] = ACTIONS(2238), - [aux_sym_cmd_identifier_token6] = ACTIONS(2238), - [aux_sym_cmd_identifier_token7] = ACTIONS(2238), - [aux_sym_cmd_identifier_token8] = ACTIONS(2238), - [aux_sym_cmd_identifier_token9] = ACTIONS(2238), - [aux_sym_cmd_identifier_token10] = ACTIONS(2238), - [aux_sym_cmd_identifier_token11] = ACTIONS(2238), - [aux_sym_cmd_identifier_token12] = ACTIONS(2238), - [aux_sym_cmd_identifier_token13] = ACTIONS(2238), - [aux_sym_cmd_identifier_token14] = ACTIONS(2238), - [aux_sym_cmd_identifier_token15] = ACTIONS(2238), - [aux_sym_cmd_identifier_token16] = ACTIONS(2238), - [aux_sym_cmd_identifier_token17] = ACTIONS(2238), - [aux_sym_cmd_identifier_token18] = ACTIONS(2238), - [aux_sym_cmd_identifier_token19] = ACTIONS(2238), - [aux_sym_cmd_identifier_token20] = ACTIONS(2238), - [aux_sym_cmd_identifier_token21] = ACTIONS(2238), - [aux_sym_cmd_identifier_token22] = ACTIONS(2238), - [aux_sym_cmd_identifier_token23] = ACTIONS(2238), - [aux_sym_cmd_identifier_token24] = ACTIONS(2238), - [aux_sym_cmd_identifier_token25] = ACTIONS(2238), - [aux_sym_cmd_identifier_token26] = ACTIONS(2238), - [aux_sym_cmd_identifier_token27] = ACTIONS(2238), - [aux_sym_cmd_identifier_token28] = ACTIONS(2238), - [aux_sym_cmd_identifier_token29] = ACTIONS(2238), - [aux_sym_cmd_identifier_token30] = ACTIONS(2238), - [aux_sym_cmd_identifier_token31] = ACTIONS(2238), - [aux_sym_cmd_identifier_token32] = ACTIONS(2238), - [aux_sym_cmd_identifier_token33] = ACTIONS(2238), - [aux_sym_cmd_identifier_token34] = ACTIONS(2238), - [aux_sym_cmd_identifier_token35] = ACTIONS(2238), - [aux_sym_cmd_identifier_token36] = ACTIONS(2238), - [aux_sym_cmd_identifier_token37] = ACTIONS(2238), - [aux_sym_cmd_identifier_token38] = ACTIONS(2238), - [aux_sym_cmd_identifier_token39] = ACTIONS(2238), - [aux_sym_cmd_identifier_token40] = ACTIONS(2238), - [anon_sym_def] = ACTIONS(2238), - [anon_sym_export_DASHenv] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_use] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_error] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_in2] = ACTIONS(2238), - [anon_sym_loop] = ACTIONS(2238), - [anon_sym_make] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_match] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_catch] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_source] = ACTIONS(2238), - [anon_sym_source_DASHenv] = ACTIONS(2238), - [anon_sym_register] = ACTIONS(2238), - [anon_sym_hide] = ACTIONS(2238), - [anon_sym_hide_DASHenv] = ACTIONS(2238), - [anon_sym_overlay] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2238), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_PLUS2] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2238), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2244), + [481] = { + [sym_comment] = STATE(481), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [sym_raw_string_begin] = ACTIONS(1874), }, - [575] = { - [sym_comment] = STATE(575), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(2193), + [aux_sym__immediate_decimal_token2] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [576] = { - [sym_comment] = STATE(576), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [aux_sym_cmd_identifier_token37] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), + }, + [484] = { + [sym_cell_path] = STATE(754), + [sym_path] = STATE(693), + [sym_comment] = STATE(484), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2084), + [aux_sym_cmd_identifier_token3] = ACTIONS(2084), + [aux_sym_cmd_identifier_token4] = ACTIONS(2084), + [aux_sym_cmd_identifier_token5] = ACTIONS(2084), + [aux_sym_cmd_identifier_token6] = ACTIONS(2084), + [aux_sym_cmd_identifier_token7] = ACTIONS(2084), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2084), + [aux_sym_cmd_identifier_token11] = ACTIONS(2084), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2084), + [aux_sym_cmd_identifier_token17] = ACTIONS(2084), + [aux_sym_cmd_identifier_token18] = ACTIONS(2084), + [aux_sym_cmd_identifier_token19] = ACTIONS(2084), + [aux_sym_cmd_identifier_token20] = ACTIONS(2084), + [aux_sym_cmd_identifier_token21] = ACTIONS(2084), + [aux_sym_cmd_identifier_token22] = ACTIONS(2084), + [aux_sym_cmd_identifier_token23] = ACTIONS(2084), + [aux_sym_cmd_identifier_token24] = ACTIONS(2084), + [aux_sym_cmd_identifier_token25] = ACTIONS(2084), + [aux_sym_cmd_identifier_token26] = ACTIONS(2084), + [aux_sym_cmd_identifier_token27] = ACTIONS(2084), + [aux_sym_cmd_identifier_token28] = ACTIONS(2084), + [aux_sym_cmd_identifier_token29] = ACTIONS(2084), + [aux_sym_cmd_identifier_token30] = ACTIONS(2084), + [aux_sym_cmd_identifier_token31] = ACTIONS(2084), + [aux_sym_cmd_identifier_token32] = ACTIONS(2084), + [aux_sym_cmd_identifier_token33] = ACTIONS(2084), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2084), + [aux_sym_cmd_identifier_token36] = ACTIONS(2084), + [aux_sym_cmd_identifier_token37] = ACTIONS(2084), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2084), + [aux_sym_cmd_identifier_token40] = ACTIONS(2084), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2084), + [aux_sym__val_number_decimal_token3] = ACTIONS(2084), + [aux_sym__val_number_decimal_token4] = ACTIONS(2084), + [aux_sym__val_number_token1] = ACTIONS(2084), + [aux_sym__val_number_token2] = ACTIONS(2084), + [aux_sym__val_number_token3] = ACTIONS(2084), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym__str_single_quotes] = ACTIONS(2084), + [sym__str_back_ticks] = ACTIONS(2084), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2084), + }, + [485] = { + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2197), + [aux_sym_cmd_identifier_token3] = ACTIONS(2197), + [aux_sym_cmd_identifier_token4] = ACTIONS(2197), + [aux_sym_cmd_identifier_token5] = ACTIONS(2197), + [aux_sym_cmd_identifier_token6] = ACTIONS(2197), + [aux_sym_cmd_identifier_token7] = ACTIONS(2197), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2197), + [aux_sym_cmd_identifier_token11] = ACTIONS(2197), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2197), + [aux_sym_cmd_identifier_token17] = ACTIONS(2197), + [aux_sym_cmd_identifier_token18] = ACTIONS(2197), + [aux_sym_cmd_identifier_token19] = ACTIONS(2197), + [aux_sym_cmd_identifier_token20] = ACTIONS(2197), + [aux_sym_cmd_identifier_token21] = ACTIONS(2197), + [aux_sym_cmd_identifier_token22] = ACTIONS(2197), + [aux_sym_cmd_identifier_token23] = ACTIONS(2197), + [aux_sym_cmd_identifier_token24] = ACTIONS(2197), + [aux_sym_cmd_identifier_token25] = ACTIONS(2197), + [aux_sym_cmd_identifier_token26] = ACTIONS(2197), + [aux_sym_cmd_identifier_token27] = ACTIONS(2197), + [aux_sym_cmd_identifier_token28] = ACTIONS(2197), + [aux_sym_cmd_identifier_token29] = ACTIONS(2197), + [aux_sym_cmd_identifier_token30] = ACTIONS(2197), + [aux_sym_cmd_identifier_token31] = ACTIONS(2197), + [aux_sym_cmd_identifier_token32] = ACTIONS(2197), + [aux_sym_cmd_identifier_token33] = ACTIONS(2197), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2197), + [aux_sym_cmd_identifier_token36] = ACTIONS(2197), + [aux_sym_cmd_identifier_token37] = ACTIONS(2197), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2197), + [aux_sym_cmd_identifier_token40] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), + [anon_sym_DOT_DOT2] = ACTIONS(2199), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2201), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2197), + [aux_sym__val_number_decimal_token3] = ACTIONS(2197), + [aux_sym__val_number_decimal_token4] = ACTIONS(2197), + [aux_sym__val_number_token1] = ACTIONS(2197), + [aux_sym__val_number_token2] = ACTIONS(2197), + [aux_sym__val_number_token3] = ACTIONS(2197), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), + [sym__entry_separator] = ACTIONS(2203), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [sym_raw_string_begin] = ACTIONS(2203), }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_alias] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_let_DASHenv] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2246), - [aux_sym_cmd_identifier_token2] = ACTIONS(2246), - [aux_sym_cmd_identifier_token3] = ACTIONS(2246), - [aux_sym_cmd_identifier_token4] = ACTIONS(2246), - [aux_sym_cmd_identifier_token5] = ACTIONS(2246), - [aux_sym_cmd_identifier_token6] = ACTIONS(2246), - [aux_sym_cmd_identifier_token7] = ACTIONS(2246), - [aux_sym_cmd_identifier_token8] = ACTIONS(2246), - [aux_sym_cmd_identifier_token9] = ACTIONS(2246), - [aux_sym_cmd_identifier_token10] = ACTIONS(2246), - [aux_sym_cmd_identifier_token11] = ACTIONS(2246), - [aux_sym_cmd_identifier_token12] = ACTIONS(2246), - [aux_sym_cmd_identifier_token13] = ACTIONS(2246), - [aux_sym_cmd_identifier_token14] = ACTIONS(2246), - [aux_sym_cmd_identifier_token15] = ACTIONS(2246), - [aux_sym_cmd_identifier_token16] = ACTIONS(2246), - [aux_sym_cmd_identifier_token17] = ACTIONS(2246), - [aux_sym_cmd_identifier_token18] = ACTIONS(2246), - [aux_sym_cmd_identifier_token19] = ACTIONS(2246), - [aux_sym_cmd_identifier_token20] = ACTIONS(2246), - [aux_sym_cmd_identifier_token21] = ACTIONS(2246), - [aux_sym_cmd_identifier_token22] = ACTIONS(2246), - [aux_sym_cmd_identifier_token23] = ACTIONS(2246), - [aux_sym_cmd_identifier_token24] = ACTIONS(2246), - [aux_sym_cmd_identifier_token25] = ACTIONS(2246), - [aux_sym_cmd_identifier_token26] = ACTIONS(2246), - [aux_sym_cmd_identifier_token27] = ACTIONS(2246), - [aux_sym_cmd_identifier_token28] = ACTIONS(2246), - [aux_sym_cmd_identifier_token29] = ACTIONS(2246), - [aux_sym_cmd_identifier_token30] = ACTIONS(2246), - [aux_sym_cmd_identifier_token31] = ACTIONS(2246), - [aux_sym_cmd_identifier_token32] = ACTIONS(2246), - [aux_sym_cmd_identifier_token33] = ACTIONS(2246), - [aux_sym_cmd_identifier_token34] = ACTIONS(2246), - [aux_sym_cmd_identifier_token35] = ACTIONS(2246), - [aux_sym_cmd_identifier_token36] = ACTIONS(2246), - [aux_sym_cmd_identifier_token37] = ACTIONS(2246), - [aux_sym_cmd_identifier_token38] = ACTIONS(2246), - [aux_sym_cmd_identifier_token39] = ACTIONS(2246), - [aux_sym_cmd_identifier_token40] = ACTIONS(2246), - [anon_sym_def] = ACTIONS(2246), - [anon_sym_export_DASHenv] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_error] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_make] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_source] = ACTIONS(2246), - [anon_sym_source_DASHenv] = ACTIONS(2246), - [anon_sym_register] = ACTIONS(2246), - [anon_sym_hide] = ACTIONS(2246), - [anon_sym_hide_DASHenv] = ACTIONS(2246), - [anon_sym_overlay] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [aux_sym__val_number_token4] = ACTIONS(2246), - [aux_sym__val_number_token5] = ACTIONS(2246), - [aux_sym__val_number_token6] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [486] = { + [sym_comment] = STATE(486), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(2205), + [aux_sym__immediate_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [487] = { + [sym_comment] = STATE(487), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [aux_sym__immediate_decimal_token2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [sym_raw_string_begin] = ACTIONS(1874), }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1024), + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1520), + [aux_sym_cmd_identifier_token3] = ACTIONS(1520), + [aux_sym_cmd_identifier_token4] = ACTIONS(1520), + [aux_sym_cmd_identifier_token5] = ACTIONS(1520), + [aux_sym_cmd_identifier_token6] = ACTIONS(1520), + [aux_sym_cmd_identifier_token7] = ACTIONS(1520), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1520), + [aux_sym_cmd_identifier_token11] = ACTIONS(1520), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1520), + [aux_sym_cmd_identifier_token17] = ACTIONS(1520), + [aux_sym_cmd_identifier_token18] = ACTIONS(1520), + [aux_sym_cmd_identifier_token19] = ACTIONS(1520), + [aux_sym_cmd_identifier_token20] = ACTIONS(1520), + [aux_sym_cmd_identifier_token21] = ACTIONS(1520), + [aux_sym_cmd_identifier_token22] = ACTIONS(1520), + [aux_sym_cmd_identifier_token23] = ACTIONS(1520), + [aux_sym_cmd_identifier_token24] = ACTIONS(1520), + [aux_sym_cmd_identifier_token25] = ACTIONS(1520), + [aux_sym_cmd_identifier_token26] = ACTIONS(1520), + [aux_sym_cmd_identifier_token27] = ACTIONS(1520), + [aux_sym_cmd_identifier_token28] = ACTIONS(1520), + [aux_sym_cmd_identifier_token29] = ACTIONS(1520), + [aux_sym_cmd_identifier_token30] = ACTIONS(1520), + [aux_sym_cmd_identifier_token31] = ACTIONS(1520), + [aux_sym_cmd_identifier_token32] = ACTIONS(1520), + [aux_sym_cmd_identifier_token33] = ACTIONS(1520), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1520), + [aux_sym_cmd_identifier_token36] = ACTIONS(1520), + [aux_sym_cmd_identifier_token37] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), }, - [579] = { - [sym_comment] = STATE(579), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [sym_raw_string_begin] = ACTIONS(1892), }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_alias] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_let_DASHenv] = ACTIONS(2254), - [anon_sym_mut] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [aux_sym_cmd_identifier_token1] = ACTIONS(2254), - [aux_sym_cmd_identifier_token2] = ACTIONS(2254), - [aux_sym_cmd_identifier_token3] = ACTIONS(2254), - [aux_sym_cmd_identifier_token4] = ACTIONS(2254), - [aux_sym_cmd_identifier_token5] = ACTIONS(2254), - [aux_sym_cmd_identifier_token6] = ACTIONS(2254), - [aux_sym_cmd_identifier_token7] = ACTIONS(2254), - [aux_sym_cmd_identifier_token8] = ACTIONS(2254), - [aux_sym_cmd_identifier_token9] = ACTIONS(2254), - [aux_sym_cmd_identifier_token10] = ACTIONS(2254), - [aux_sym_cmd_identifier_token11] = ACTIONS(2254), - [aux_sym_cmd_identifier_token12] = ACTIONS(2254), - [aux_sym_cmd_identifier_token13] = ACTIONS(2254), - [aux_sym_cmd_identifier_token14] = ACTIONS(2254), - [aux_sym_cmd_identifier_token15] = ACTIONS(2254), - [aux_sym_cmd_identifier_token16] = ACTIONS(2254), - [aux_sym_cmd_identifier_token17] = ACTIONS(2254), - [aux_sym_cmd_identifier_token18] = ACTIONS(2254), - [aux_sym_cmd_identifier_token19] = ACTIONS(2254), - [aux_sym_cmd_identifier_token20] = ACTIONS(2254), - [aux_sym_cmd_identifier_token21] = ACTIONS(2254), - [aux_sym_cmd_identifier_token22] = ACTIONS(2254), - [aux_sym_cmd_identifier_token23] = ACTIONS(2254), - [aux_sym_cmd_identifier_token24] = ACTIONS(2254), - [aux_sym_cmd_identifier_token25] = ACTIONS(2254), - [aux_sym_cmd_identifier_token26] = ACTIONS(2254), - [aux_sym_cmd_identifier_token27] = ACTIONS(2254), - [aux_sym_cmd_identifier_token28] = ACTIONS(2254), - [aux_sym_cmd_identifier_token29] = ACTIONS(2254), - [aux_sym_cmd_identifier_token30] = ACTIONS(2254), - [aux_sym_cmd_identifier_token31] = ACTIONS(2254), - [aux_sym_cmd_identifier_token32] = ACTIONS(2254), - [aux_sym_cmd_identifier_token33] = ACTIONS(2254), - [aux_sym_cmd_identifier_token34] = ACTIONS(2254), - [aux_sym_cmd_identifier_token35] = ACTIONS(2254), - [aux_sym_cmd_identifier_token36] = ACTIONS(2254), - [aux_sym_cmd_identifier_token37] = ACTIONS(2254), - [aux_sym_cmd_identifier_token38] = ACTIONS(2254), - [aux_sym_cmd_identifier_token39] = ACTIONS(2254), - [aux_sym_cmd_identifier_token40] = ACTIONS(2254), - [anon_sym_def] = ACTIONS(2254), - [anon_sym_export_DASHenv] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_error] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_make] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_catch] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_source] = ACTIONS(2254), - [anon_sym_source_DASHenv] = ACTIONS(2254), - [anon_sym_register] = ACTIONS(2254), - [anon_sym_hide] = ACTIONS(2254), - [anon_sym_hide_DASHenv] = ACTIONS(2254), - [anon_sym_overlay] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2256), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [490] = { + [sym_comment] = STATE(490), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [aux_sym__immediate_decimal_token2] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), + [sym_raw_string_begin] = ACTIONS(1921), }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2310), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), + [491] = { + [sym_cell_path] = STATE(770), + [sym_path] = STATE(693), + [sym_comment] = STATE(491), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1990), + [anon_sym_alias] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_let_DASHenv] = ACTIONS(1990), + [anon_sym_mut] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [aux_sym_cmd_identifier_token1] = ACTIONS(1990), + [aux_sym_cmd_identifier_token2] = ACTIONS(1992), + [aux_sym_cmd_identifier_token3] = ACTIONS(1992), + [aux_sym_cmd_identifier_token4] = ACTIONS(1992), + [aux_sym_cmd_identifier_token5] = ACTIONS(1992), + [aux_sym_cmd_identifier_token6] = ACTIONS(1992), + [aux_sym_cmd_identifier_token7] = ACTIONS(1992), + [aux_sym_cmd_identifier_token8] = ACTIONS(1990), + [aux_sym_cmd_identifier_token9] = ACTIONS(1990), + [aux_sym_cmd_identifier_token10] = ACTIONS(1992), + [aux_sym_cmd_identifier_token11] = ACTIONS(1992), + [aux_sym_cmd_identifier_token12] = ACTIONS(1990), + [aux_sym_cmd_identifier_token13] = ACTIONS(1990), + [aux_sym_cmd_identifier_token14] = ACTIONS(1990), + [aux_sym_cmd_identifier_token15] = ACTIONS(1990), + [aux_sym_cmd_identifier_token16] = ACTIONS(1992), + [aux_sym_cmd_identifier_token17] = ACTIONS(1992), + [aux_sym_cmd_identifier_token18] = ACTIONS(1992), + [aux_sym_cmd_identifier_token19] = ACTIONS(1992), + [aux_sym_cmd_identifier_token20] = ACTIONS(1992), + [aux_sym_cmd_identifier_token21] = ACTIONS(1992), + [aux_sym_cmd_identifier_token22] = ACTIONS(1992), + [aux_sym_cmd_identifier_token23] = ACTIONS(1992), + [aux_sym_cmd_identifier_token24] = ACTIONS(1992), + [aux_sym_cmd_identifier_token25] = ACTIONS(1992), + [aux_sym_cmd_identifier_token26] = ACTIONS(1992), + [aux_sym_cmd_identifier_token27] = ACTIONS(1992), + [aux_sym_cmd_identifier_token28] = ACTIONS(1992), + [aux_sym_cmd_identifier_token29] = ACTIONS(1992), + [aux_sym_cmd_identifier_token30] = ACTIONS(1992), + [aux_sym_cmd_identifier_token31] = ACTIONS(1992), + [aux_sym_cmd_identifier_token32] = ACTIONS(1992), + [aux_sym_cmd_identifier_token33] = ACTIONS(1992), + [aux_sym_cmd_identifier_token34] = ACTIONS(1990), + [aux_sym_cmd_identifier_token35] = ACTIONS(1992), + [aux_sym_cmd_identifier_token36] = ACTIONS(1992), + [aux_sym_cmd_identifier_token37] = ACTIONS(1992), + [aux_sym_cmd_identifier_token38] = ACTIONS(1990), + [aux_sym_cmd_identifier_token39] = ACTIONS(1992), + [aux_sym_cmd_identifier_token40] = ACTIONS(1992), + [anon_sym_def] = ACTIONS(1990), + [anon_sym_export_DASHenv] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_module] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(1992), + [anon_sym_error] = ACTIONS(1990), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_in2] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_make] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1990), + [anon_sym_catch] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_source] = ACTIONS(1990), + [anon_sym_source_DASHenv] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_hide] = ACTIONS(1990), + [anon_sym_hide_DASHenv] = ACTIONS(1990), + [anon_sym_overlay] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1990), + [anon_sym_PLUS2] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1990), + [aux_sym__val_number_decimal_token2] = ACTIONS(1992), + [aux_sym__val_number_decimal_token3] = ACTIONS(1992), + [aux_sym__val_number_decimal_token4] = ACTIONS(1992), + [aux_sym__val_number_token1] = ACTIONS(1992), + [aux_sym__val_number_token2] = ACTIONS(1992), + [aux_sym__val_number_token3] = ACTIONS(1992), + [aux_sym__val_number_token4] = ACTIONS(1990), + [aux_sym__val_number_token5] = ACTIONS(1990), + [aux_sym__val_number_token6] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1992), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1992), + }, + [492] = { + [sym_cell_path] = STATE(717), + [sym_path] = STATE(693), + [sym_comment] = STATE(492), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1994), + [anon_sym_alias] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_let_DASHenv] = ACTIONS(1994), + [anon_sym_mut] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [aux_sym_cmd_identifier_token1] = ACTIONS(1994), + [aux_sym_cmd_identifier_token2] = ACTIONS(1996), + [aux_sym_cmd_identifier_token3] = ACTIONS(1996), + [aux_sym_cmd_identifier_token4] = ACTIONS(1996), + [aux_sym_cmd_identifier_token5] = ACTIONS(1996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1996), + [aux_sym_cmd_identifier_token7] = ACTIONS(1996), + [aux_sym_cmd_identifier_token8] = ACTIONS(1994), + [aux_sym_cmd_identifier_token9] = ACTIONS(1994), + [aux_sym_cmd_identifier_token10] = ACTIONS(1996), + [aux_sym_cmd_identifier_token11] = ACTIONS(1996), + [aux_sym_cmd_identifier_token12] = ACTIONS(1994), + [aux_sym_cmd_identifier_token13] = ACTIONS(1994), + [aux_sym_cmd_identifier_token14] = ACTIONS(1994), + [aux_sym_cmd_identifier_token15] = ACTIONS(1994), + [aux_sym_cmd_identifier_token16] = ACTIONS(1996), + [aux_sym_cmd_identifier_token17] = ACTIONS(1996), + [aux_sym_cmd_identifier_token18] = ACTIONS(1996), + [aux_sym_cmd_identifier_token19] = ACTIONS(1996), + [aux_sym_cmd_identifier_token20] = ACTIONS(1996), + [aux_sym_cmd_identifier_token21] = ACTIONS(1996), + [aux_sym_cmd_identifier_token22] = ACTIONS(1996), + [aux_sym_cmd_identifier_token23] = ACTIONS(1996), + [aux_sym_cmd_identifier_token24] = ACTIONS(1996), + [aux_sym_cmd_identifier_token25] = ACTIONS(1996), + [aux_sym_cmd_identifier_token26] = ACTIONS(1996), + [aux_sym_cmd_identifier_token27] = ACTIONS(1996), + [aux_sym_cmd_identifier_token28] = ACTIONS(1996), + [aux_sym_cmd_identifier_token29] = ACTIONS(1996), + [aux_sym_cmd_identifier_token30] = ACTIONS(1996), + [aux_sym_cmd_identifier_token31] = ACTIONS(1996), + [aux_sym_cmd_identifier_token32] = ACTIONS(1996), + [aux_sym_cmd_identifier_token33] = ACTIONS(1996), + [aux_sym_cmd_identifier_token34] = ACTIONS(1994), + [aux_sym_cmd_identifier_token35] = ACTIONS(1996), + [aux_sym_cmd_identifier_token36] = ACTIONS(1996), + [aux_sym_cmd_identifier_token37] = ACTIONS(1996), + [aux_sym_cmd_identifier_token38] = ACTIONS(1994), + [aux_sym_cmd_identifier_token39] = ACTIONS(1996), + [aux_sym_cmd_identifier_token40] = ACTIONS(1996), + [anon_sym_def] = ACTIONS(1994), + [anon_sym_export_DASHenv] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_module] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_error] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_in2] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_make] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1994), + [anon_sym_catch] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_source] = ACTIONS(1994), + [anon_sym_source_DASHenv] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_hide] = ACTIONS(1994), + [anon_sym_hide_DASHenv] = ACTIONS(1994), + [anon_sym_overlay] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1994), + [anon_sym_PLUS2] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1996), + [aux_sym__val_number_decimal_token3] = ACTIONS(1996), + [aux_sym__val_number_decimal_token4] = ACTIONS(1996), + [aux_sym__val_number_token1] = ACTIONS(1996), + [aux_sym__val_number_token2] = ACTIONS(1996), + [aux_sym__val_number_token3] = ACTIONS(1996), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1996), + [sym__str_back_ticks] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1996), + }, + [493] = { + [sym_cell_path] = STATE(731), + [sym_path] = STATE(693), + [sym_comment] = STATE(493), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1998), + [anon_sym_alias] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_let_DASHenv] = ACTIONS(1998), + [anon_sym_mut] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [aux_sym_cmd_identifier_token1] = ACTIONS(1998), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1998), + [aux_sym_cmd_identifier_token9] = ACTIONS(1998), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1998), + [aux_sym_cmd_identifier_token13] = ACTIONS(1998), + [aux_sym_cmd_identifier_token14] = ACTIONS(1998), + [aux_sym_cmd_identifier_token15] = ACTIONS(1998), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1998), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1998), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(1998), + [anon_sym_export_DASHenv] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_module] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_in2] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_make] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_do] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_else] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(1998), + [anon_sym_catch] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_source] = ACTIONS(1998), + [anon_sym_source_DASHenv] = ACTIONS(1998), + [anon_sym_register] = ACTIONS(1998), + [anon_sym_hide] = ACTIONS(1998), + [anon_sym_hide_DASHenv] = ACTIONS(1998), + [anon_sym_overlay] = ACTIONS(1998), + [anon_sym_as] = ACTIONS(1998), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2000), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1524), + [aux_sym_cmd_identifier_token3] = ACTIONS(1524), + [aux_sym_cmd_identifier_token4] = ACTIONS(1524), + [aux_sym_cmd_identifier_token5] = ACTIONS(1524), + [aux_sym_cmd_identifier_token6] = ACTIONS(1524), + [aux_sym_cmd_identifier_token7] = ACTIONS(1524), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1524), + [aux_sym_cmd_identifier_token11] = ACTIONS(1524), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1524), + [aux_sym_cmd_identifier_token17] = ACTIONS(1524), + [aux_sym_cmd_identifier_token18] = ACTIONS(1524), + [aux_sym_cmd_identifier_token19] = ACTIONS(1524), + [aux_sym_cmd_identifier_token20] = ACTIONS(1524), + [aux_sym_cmd_identifier_token21] = ACTIONS(1524), + [aux_sym_cmd_identifier_token22] = ACTIONS(1524), + [aux_sym_cmd_identifier_token23] = ACTIONS(1524), + [aux_sym_cmd_identifier_token24] = ACTIONS(1524), + [aux_sym_cmd_identifier_token25] = ACTIONS(1524), + [aux_sym_cmd_identifier_token26] = ACTIONS(1524), + [aux_sym_cmd_identifier_token27] = ACTIONS(1524), + [aux_sym_cmd_identifier_token28] = ACTIONS(1524), + [aux_sym_cmd_identifier_token29] = ACTIONS(1524), + [aux_sym_cmd_identifier_token30] = ACTIONS(1524), + [aux_sym_cmd_identifier_token31] = ACTIONS(1524), + [aux_sym_cmd_identifier_token32] = ACTIONS(1524), + [aux_sym_cmd_identifier_token33] = ACTIONS(1524), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1524), + [aux_sym_cmd_identifier_token36] = ACTIONS(1524), + [aux_sym_cmd_identifier_token37] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), + }, + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(2211), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [sym__entry_separator] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(1540), }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_alias] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_let_DASHenv] = ACTIONS(2272), - [anon_sym_mut] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [aux_sym_cmd_identifier_token1] = ACTIONS(2272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2276), - [aux_sym_cmd_identifier_token3] = ACTIONS(2276), - [aux_sym_cmd_identifier_token4] = ACTIONS(2276), - [aux_sym_cmd_identifier_token5] = ACTIONS(2276), - [aux_sym_cmd_identifier_token6] = ACTIONS(2276), - [aux_sym_cmd_identifier_token7] = ACTIONS(2276), - [aux_sym_cmd_identifier_token8] = ACTIONS(2272), - [aux_sym_cmd_identifier_token9] = ACTIONS(2272), - [aux_sym_cmd_identifier_token10] = ACTIONS(2276), - [aux_sym_cmd_identifier_token11] = ACTIONS(2276), - [aux_sym_cmd_identifier_token12] = ACTIONS(2272), - [aux_sym_cmd_identifier_token13] = ACTIONS(2272), - [aux_sym_cmd_identifier_token14] = ACTIONS(2272), - [aux_sym_cmd_identifier_token15] = ACTIONS(2272), - [aux_sym_cmd_identifier_token16] = ACTIONS(2276), - [aux_sym_cmd_identifier_token17] = ACTIONS(2276), - [aux_sym_cmd_identifier_token18] = ACTIONS(2276), - [aux_sym_cmd_identifier_token19] = ACTIONS(2276), - [aux_sym_cmd_identifier_token20] = ACTIONS(2276), - [aux_sym_cmd_identifier_token21] = ACTIONS(2276), - [aux_sym_cmd_identifier_token22] = ACTIONS(2276), - [aux_sym_cmd_identifier_token23] = ACTIONS(2276), - [aux_sym_cmd_identifier_token24] = ACTIONS(2276), - [aux_sym_cmd_identifier_token25] = ACTIONS(2276), - [aux_sym_cmd_identifier_token26] = ACTIONS(2276), - [aux_sym_cmd_identifier_token27] = ACTIONS(2276), - [aux_sym_cmd_identifier_token28] = ACTIONS(2276), - [aux_sym_cmd_identifier_token29] = ACTIONS(2276), - [aux_sym_cmd_identifier_token30] = ACTIONS(2276), - [aux_sym_cmd_identifier_token31] = ACTIONS(2276), - [aux_sym_cmd_identifier_token32] = ACTIONS(2276), - [aux_sym_cmd_identifier_token33] = ACTIONS(2276), - [aux_sym_cmd_identifier_token34] = ACTIONS(2272), - [aux_sym_cmd_identifier_token35] = ACTIONS(2276), - [aux_sym_cmd_identifier_token36] = ACTIONS(2276), - [aux_sym_cmd_identifier_token37] = ACTIONS(2276), - [aux_sym_cmd_identifier_token38] = ACTIONS(2272), - [aux_sym_cmd_identifier_token39] = ACTIONS(2276), - [aux_sym_cmd_identifier_token40] = ACTIONS(2276), - [anon_sym_def] = ACTIONS(2272), - [anon_sym_export_DASHenv] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_error] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_make] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_source] = ACTIONS(2272), - [anon_sym_source_DASHenv] = ACTIONS(2272), - [anon_sym_register] = ACTIONS(2272), - [anon_sym_hide] = ACTIONS(2272), - [anon_sym_hide_DASHenv] = ACTIONS(2272), - [anon_sym_overlay] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2274), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2276), - [sym__str_back_ticks] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2276), + [496] = { + [sym_comment] = STATE(496), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [aux_sym_cmd_identifier_token6] = ACTIONS(2215), + [aux_sym_cmd_identifier_token7] = ACTIONS(2215), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2215), + [aux_sym_cmd_identifier_token11] = ACTIONS(2215), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2215), + [aux_sym_cmd_identifier_token17] = ACTIONS(2215), + [aux_sym_cmd_identifier_token18] = ACTIONS(2215), + [aux_sym_cmd_identifier_token19] = ACTIONS(2215), + [aux_sym_cmd_identifier_token20] = ACTIONS(2215), + [aux_sym_cmd_identifier_token21] = ACTIONS(2215), + [aux_sym_cmd_identifier_token22] = ACTIONS(2215), + [aux_sym_cmd_identifier_token23] = ACTIONS(2215), + [aux_sym_cmd_identifier_token24] = ACTIONS(2215), + [aux_sym_cmd_identifier_token25] = ACTIONS(2215), + [aux_sym_cmd_identifier_token26] = ACTIONS(2215), + [aux_sym_cmd_identifier_token27] = ACTIONS(2215), + [aux_sym_cmd_identifier_token28] = ACTIONS(2215), + [aux_sym_cmd_identifier_token29] = ACTIONS(2215), + [aux_sym_cmd_identifier_token30] = ACTIONS(2215), + [aux_sym_cmd_identifier_token31] = ACTIONS(2215), + [aux_sym_cmd_identifier_token32] = ACTIONS(2215), + [aux_sym_cmd_identifier_token33] = ACTIONS(2215), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2215), + [aux_sym_cmd_identifier_token36] = ACTIONS(2215), + [aux_sym_cmd_identifier_token37] = ACTIONS(2215), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2215), + [aux_sym_cmd_identifier_token40] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), + [anon_sym_DOT_DOT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2215), + [aux_sym__val_number_decimal_token3] = ACTIONS(2215), + [aux_sym__val_number_decimal_token4] = ACTIONS(2215), + [aux_sym__val_number_token1] = ACTIONS(2215), + [aux_sym__val_number_token2] = ACTIONS(2215), + [aux_sym__val_number_token3] = ACTIONS(2215), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [sym__str_single_quotes] = ACTIONS(2215), + [sym__str_back_ticks] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), + [sym__entry_separator] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2217), }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_alias] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_let_DASHenv] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [aux_sym_cmd_identifier_token1] = ACTIONS(2219), + [aux_sym_cmd_identifier_token2] = ACTIONS(2219), + [aux_sym_cmd_identifier_token3] = ACTIONS(2219), + [aux_sym_cmd_identifier_token4] = ACTIONS(2219), + [aux_sym_cmd_identifier_token5] = ACTIONS(2219), + [aux_sym_cmd_identifier_token6] = ACTIONS(2219), + [aux_sym_cmd_identifier_token7] = ACTIONS(2219), + [aux_sym_cmd_identifier_token8] = ACTIONS(2219), + [aux_sym_cmd_identifier_token9] = ACTIONS(2219), + [aux_sym_cmd_identifier_token10] = ACTIONS(2219), + [aux_sym_cmd_identifier_token11] = ACTIONS(2219), + [aux_sym_cmd_identifier_token12] = ACTIONS(2219), + [aux_sym_cmd_identifier_token13] = ACTIONS(2219), + [aux_sym_cmd_identifier_token14] = ACTIONS(2219), + [aux_sym_cmd_identifier_token15] = ACTIONS(2219), + [aux_sym_cmd_identifier_token16] = ACTIONS(2219), + [aux_sym_cmd_identifier_token17] = ACTIONS(2219), + [aux_sym_cmd_identifier_token18] = ACTIONS(2219), + [aux_sym_cmd_identifier_token19] = ACTIONS(2219), + [aux_sym_cmd_identifier_token20] = ACTIONS(2219), + [aux_sym_cmd_identifier_token21] = ACTIONS(2219), + [aux_sym_cmd_identifier_token22] = ACTIONS(2219), + [aux_sym_cmd_identifier_token23] = ACTIONS(2219), + [aux_sym_cmd_identifier_token24] = ACTIONS(2219), + [aux_sym_cmd_identifier_token25] = ACTIONS(2219), + [aux_sym_cmd_identifier_token26] = ACTIONS(2219), + [aux_sym_cmd_identifier_token27] = ACTIONS(2219), + [aux_sym_cmd_identifier_token28] = ACTIONS(2219), + [aux_sym_cmd_identifier_token29] = ACTIONS(2219), + [aux_sym_cmd_identifier_token30] = ACTIONS(2219), + [aux_sym_cmd_identifier_token31] = ACTIONS(2219), + [aux_sym_cmd_identifier_token32] = ACTIONS(2219), + [aux_sym_cmd_identifier_token33] = ACTIONS(2219), + [aux_sym_cmd_identifier_token34] = ACTIONS(2219), + [aux_sym_cmd_identifier_token35] = ACTIONS(2219), + [aux_sym_cmd_identifier_token36] = ACTIONS(2219), + [aux_sym_cmd_identifier_token37] = ACTIONS(2219), + [aux_sym_cmd_identifier_token38] = ACTIONS(2219), + [aux_sym_cmd_identifier_token39] = ACTIONS(2219), + [aux_sym_cmd_identifier_token40] = ACTIONS(2219), + [anon_sym_def] = ACTIONS(2219), + [anon_sym_export_DASHenv] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_error] = ACTIONS(2219), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_in2] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_make] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_source] = ACTIONS(2219), + [anon_sym_source_DASHenv] = ACTIONS(2219), + [anon_sym_register] = ACTIONS(2219), + [anon_sym_hide] = ACTIONS(2219), + [anon_sym_hide_DASHenv] = ACTIONS(2219), + [anon_sym_overlay] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2219), + [anon_sym_DOT_DOT2] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2219), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2219), + [aux_sym__val_number_decimal_token3] = ACTIONS(2219), + [aux_sym__val_number_decimal_token4] = ACTIONS(2219), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2219), + [aux_sym__val_number_token5] = ACTIONS(2219), + [aux_sym__val_number_token6] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [sym__str_single_quotes] = ACTIONS(2219), + [sym__str_back_ticks] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2219), + [sym__entry_separator] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2221), }, - [584] = { - [sym_comment] = STATE(584), - [aux_sym__multiple_types_repeat1] = STATE(565), - [anon_sym_export] = ACTIONS(2312), - [anon_sym_alias] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_let_DASHenv] = ACTIONS(2312), - [anon_sym_mut] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [aux_sym_cmd_identifier_token1] = ACTIONS(2312), - [aux_sym_cmd_identifier_token2] = ACTIONS(2312), - [aux_sym_cmd_identifier_token3] = ACTIONS(2312), - [aux_sym_cmd_identifier_token4] = ACTIONS(2312), - [aux_sym_cmd_identifier_token5] = ACTIONS(2312), - [aux_sym_cmd_identifier_token6] = ACTIONS(2312), - [aux_sym_cmd_identifier_token7] = ACTIONS(2312), - [aux_sym_cmd_identifier_token8] = ACTIONS(2312), - [aux_sym_cmd_identifier_token9] = ACTIONS(2312), - [aux_sym_cmd_identifier_token10] = ACTIONS(2312), - [aux_sym_cmd_identifier_token11] = ACTIONS(2312), - [aux_sym_cmd_identifier_token12] = ACTIONS(2312), - [aux_sym_cmd_identifier_token13] = ACTIONS(2312), - [aux_sym_cmd_identifier_token14] = ACTIONS(2312), - [aux_sym_cmd_identifier_token15] = ACTIONS(2312), - [aux_sym_cmd_identifier_token16] = ACTIONS(2312), - [aux_sym_cmd_identifier_token17] = ACTIONS(2312), - [aux_sym_cmd_identifier_token18] = ACTIONS(2312), - [aux_sym_cmd_identifier_token19] = ACTIONS(2312), - [aux_sym_cmd_identifier_token20] = ACTIONS(2312), - [aux_sym_cmd_identifier_token21] = ACTIONS(2312), - [aux_sym_cmd_identifier_token22] = ACTIONS(2312), - [aux_sym_cmd_identifier_token23] = ACTIONS(2312), - [aux_sym_cmd_identifier_token24] = ACTIONS(2312), - [aux_sym_cmd_identifier_token25] = ACTIONS(2312), - [aux_sym_cmd_identifier_token26] = ACTIONS(2312), - [aux_sym_cmd_identifier_token27] = ACTIONS(2312), - [aux_sym_cmd_identifier_token28] = ACTIONS(2312), - [aux_sym_cmd_identifier_token29] = ACTIONS(2312), - [aux_sym_cmd_identifier_token30] = ACTIONS(2312), - [aux_sym_cmd_identifier_token31] = ACTIONS(2312), - [aux_sym_cmd_identifier_token32] = ACTIONS(2312), - [aux_sym_cmd_identifier_token33] = ACTIONS(2312), - [aux_sym_cmd_identifier_token34] = ACTIONS(2312), - [aux_sym_cmd_identifier_token35] = ACTIONS(2312), - [aux_sym_cmd_identifier_token36] = ACTIONS(2312), - [aux_sym_cmd_identifier_token37] = ACTIONS(2312), - [aux_sym_cmd_identifier_token38] = ACTIONS(2312), - [aux_sym_cmd_identifier_token39] = ACTIONS(2312), - [aux_sym_cmd_identifier_token40] = ACTIONS(2312), - [anon_sym_def] = ACTIONS(2312), - [anon_sym_export_DASHenv] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_module] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2312), - [anon_sym_DOLLAR] = ACTIONS(2312), - [anon_sym_error] = ACTIONS(2312), - [anon_sym_DASH2] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_in2] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_make] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_else] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2312), - [anon_sym_catch] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_source] = ACTIONS(2312), - [anon_sym_source_DASHenv] = ACTIONS(2312), - [anon_sym_register] = ACTIONS(2312), - [anon_sym_hide] = ACTIONS(2312), - [anon_sym_hide_DASHenv] = ACTIONS(2312), - [anon_sym_overlay] = ACTIONS(2312), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_PLUS2] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), - [aux_sym__val_number_decimal_token1] = ACTIONS(2312), - [aux_sym__val_number_decimal_token2] = ACTIONS(2312), - [aux_sym__val_number_decimal_token3] = ACTIONS(2312), - [aux_sym__val_number_decimal_token4] = ACTIONS(2312), - [aux_sym__val_number_token1] = ACTIONS(2312), - [aux_sym__val_number_token2] = ACTIONS(2312), - [aux_sym__val_number_token3] = ACTIONS(2312), - [aux_sym__val_number_token4] = ACTIONS(2312), - [aux_sym__val_number_token5] = ACTIONS(2312), - [aux_sym__val_number_token6] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2312), - [sym__str_single_quotes] = ACTIONS(2312), - [sym__str_back_ticks] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), - [sym__entry_separator] = ACTIONS(2290), + [498] = { + [sym_path] = STATE(618), + [sym_comment] = STATE(498), + [aux_sym_cell_path_repeat1] = STATE(498), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1483), + [aux_sym_cmd_identifier_token3] = ACTIONS(1483), + [aux_sym_cmd_identifier_token4] = ACTIONS(1483), + [aux_sym_cmd_identifier_token5] = ACTIONS(1483), + [aux_sym_cmd_identifier_token6] = ACTIONS(1483), + [aux_sym_cmd_identifier_token7] = ACTIONS(1483), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1483), + [aux_sym_cmd_identifier_token11] = ACTIONS(1483), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1483), + [aux_sym_cmd_identifier_token17] = ACTIONS(1483), + [aux_sym_cmd_identifier_token18] = ACTIONS(1483), + [aux_sym_cmd_identifier_token19] = ACTIONS(1483), + [aux_sym_cmd_identifier_token20] = ACTIONS(1483), + [aux_sym_cmd_identifier_token21] = ACTIONS(1483), + [aux_sym_cmd_identifier_token22] = ACTIONS(1483), + [aux_sym_cmd_identifier_token23] = ACTIONS(1483), + [aux_sym_cmd_identifier_token24] = ACTIONS(1483), + [aux_sym_cmd_identifier_token25] = ACTIONS(1483), + [aux_sym_cmd_identifier_token26] = ACTIONS(1483), + [aux_sym_cmd_identifier_token27] = ACTIONS(1483), + [aux_sym_cmd_identifier_token28] = ACTIONS(1483), + [aux_sym_cmd_identifier_token29] = ACTIONS(1483), + [aux_sym_cmd_identifier_token30] = ACTIONS(1483), + [aux_sym_cmd_identifier_token31] = ACTIONS(1483), + [aux_sym_cmd_identifier_token32] = ACTIONS(1483), + [aux_sym_cmd_identifier_token33] = ACTIONS(1483), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1483), + [aux_sym_cmd_identifier_token36] = ACTIONS(1483), + [aux_sym_cmd_identifier_token37] = ACTIONS(1483), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1483), + [aux_sym_cmd_identifier_token40] = ACTIONS(1483), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(2223), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1483), + [aux_sym__val_number_decimal_token3] = ACTIONS(1483), + [aux_sym__val_number_decimal_token4] = ACTIONS(1483), + [aux_sym__val_number_token1] = ACTIONS(1483), + [aux_sym__val_number_token2] = ACTIONS(1483), + [aux_sym__val_number_token3] = ACTIONS(1483), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [sym__str_single_quotes] = ACTIONS(1483), + [sym__str_back_ticks] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), + [sym__entry_separator] = ACTIONS(1485), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2316), + [sym_raw_string_begin] = ACTIONS(1485), }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [aux_sym_cmd_identifier_token37] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in2] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2232), - [aux_sym_cmd_identifier_token3] = ACTIONS(2232), - [aux_sym_cmd_identifier_token4] = ACTIONS(2232), - [aux_sym_cmd_identifier_token5] = ACTIONS(2232), - [aux_sym_cmd_identifier_token6] = ACTIONS(2232), - [aux_sym_cmd_identifier_token7] = ACTIONS(2232), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2232), - [aux_sym_cmd_identifier_token11] = ACTIONS(2232), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2232), - [aux_sym_cmd_identifier_token17] = ACTIONS(2232), - [aux_sym_cmd_identifier_token18] = ACTIONS(2232), - [aux_sym_cmd_identifier_token19] = ACTIONS(2232), - [aux_sym_cmd_identifier_token20] = ACTIONS(2232), - [aux_sym_cmd_identifier_token21] = ACTIONS(2232), - [aux_sym_cmd_identifier_token22] = ACTIONS(2232), - [aux_sym_cmd_identifier_token23] = ACTIONS(2232), - [aux_sym_cmd_identifier_token24] = ACTIONS(2232), - [aux_sym_cmd_identifier_token25] = ACTIONS(2232), - [aux_sym_cmd_identifier_token26] = ACTIONS(2232), - [aux_sym_cmd_identifier_token27] = ACTIONS(2232), - [aux_sym_cmd_identifier_token28] = ACTIONS(2232), - [aux_sym_cmd_identifier_token29] = ACTIONS(2232), - [aux_sym_cmd_identifier_token30] = ACTIONS(2232), - [aux_sym_cmd_identifier_token31] = ACTIONS(2232), - [aux_sym_cmd_identifier_token32] = ACTIONS(2232), - [aux_sym_cmd_identifier_token33] = ACTIONS(2232), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2232), - [aux_sym_cmd_identifier_token36] = ACTIONS(2232), - [aux_sym_cmd_identifier_token37] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in2] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2232), + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1810), - [aux_sym_cmd_identifier_token3] = ACTIONS(1810), - [aux_sym_cmd_identifier_token4] = ACTIONS(1810), - [aux_sym_cmd_identifier_token5] = ACTIONS(1810), - [aux_sym_cmd_identifier_token6] = ACTIONS(1810), - [aux_sym_cmd_identifier_token7] = ACTIONS(1810), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1810), - [aux_sym_cmd_identifier_token11] = ACTIONS(1810), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1810), - [aux_sym_cmd_identifier_token17] = ACTIONS(1810), - [aux_sym_cmd_identifier_token18] = ACTIONS(1810), - [aux_sym_cmd_identifier_token19] = ACTIONS(1810), - [aux_sym_cmd_identifier_token20] = ACTIONS(1810), - [aux_sym_cmd_identifier_token21] = ACTIONS(1810), - [aux_sym_cmd_identifier_token22] = ACTIONS(1810), - [aux_sym_cmd_identifier_token23] = ACTIONS(1810), - [aux_sym_cmd_identifier_token24] = ACTIONS(1810), - [aux_sym_cmd_identifier_token25] = ACTIONS(1810), - [aux_sym_cmd_identifier_token26] = ACTIONS(1810), - [aux_sym_cmd_identifier_token27] = ACTIONS(1810), - [aux_sym_cmd_identifier_token28] = ACTIONS(1810), - [aux_sym_cmd_identifier_token29] = ACTIONS(1810), - [aux_sym_cmd_identifier_token30] = ACTIONS(1810), - [aux_sym_cmd_identifier_token31] = ACTIONS(1810), - [aux_sym_cmd_identifier_token32] = ACTIONS(1810), - [aux_sym_cmd_identifier_token33] = ACTIONS(1810), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1810), - [aux_sym_cmd_identifier_token36] = ACTIONS(1810), - [aux_sym_cmd_identifier_token37] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_in2] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_make] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_catch] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1802), - [aux_sym__val_number_token5] = ACTIONS(1802), - [aux_sym__val_number_token6] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_alias] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_let_DASHenv] = ACTIONS(2228), + [anon_sym_mut] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [aux_sym_cmd_identifier_token1] = ACTIONS(2228), + [aux_sym_cmd_identifier_token2] = ACTIONS(2228), + [aux_sym_cmd_identifier_token3] = ACTIONS(2228), + [aux_sym_cmd_identifier_token4] = ACTIONS(2228), + [aux_sym_cmd_identifier_token5] = ACTIONS(2228), + [aux_sym_cmd_identifier_token6] = ACTIONS(2228), + [aux_sym_cmd_identifier_token7] = ACTIONS(2228), + [aux_sym_cmd_identifier_token8] = ACTIONS(2228), + [aux_sym_cmd_identifier_token9] = ACTIONS(2228), + [aux_sym_cmd_identifier_token10] = ACTIONS(2228), + [aux_sym_cmd_identifier_token11] = ACTIONS(2228), + [aux_sym_cmd_identifier_token12] = ACTIONS(2228), + [aux_sym_cmd_identifier_token13] = ACTIONS(2228), + [aux_sym_cmd_identifier_token14] = ACTIONS(2228), + [aux_sym_cmd_identifier_token15] = ACTIONS(2228), + [aux_sym_cmd_identifier_token16] = ACTIONS(2228), + [aux_sym_cmd_identifier_token17] = ACTIONS(2228), + [aux_sym_cmd_identifier_token18] = ACTIONS(2228), + [aux_sym_cmd_identifier_token19] = ACTIONS(2228), + [aux_sym_cmd_identifier_token20] = ACTIONS(2228), + [aux_sym_cmd_identifier_token21] = ACTIONS(2228), + [aux_sym_cmd_identifier_token22] = ACTIONS(2228), + [aux_sym_cmd_identifier_token23] = ACTIONS(2228), + [aux_sym_cmd_identifier_token24] = ACTIONS(2228), + [aux_sym_cmd_identifier_token25] = ACTIONS(2228), + [aux_sym_cmd_identifier_token26] = ACTIONS(2228), + [aux_sym_cmd_identifier_token27] = ACTIONS(2228), + [aux_sym_cmd_identifier_token28] = ACTIONS(2228), + [aux_sym_cmd_identifier_token29] = ACTIONS(2228), + [aux_sym_cmd_identifier_token30] = ACTIONS(2228), + [aux_sym_cmd_identifier_token31] = ACTIONS(2228), + [aux_sym_cmd_identifier_token32] = ACTIONS(2228), + [aux_sym_cmd_identifier_token33] = ACTIONS(2228), + [aux_sym_cmd_identifier_token34] = ACTIONS(2228), + [aux_sym_cmd_identifier_token35] = ACTIONS(2228), + [aux_sym_cmd_identifier_token36] = ACTIONS(2228), + [aux_sym_cmd_identifier_token37] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2228), + [anon_sym_export_DASHenv] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_in2] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_make] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_catch] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_source] = ACTIONS(2228), + [anon_sym_source_DASHenv] = ACTIONS(2228), + [anon_sym_register] = ACTIONS(2228), + [anon_sym_hide] = ACTIONS(2228), + [anon_sym_hide_DASHenv] = ACTIONS(2228), + [anon_sym_overlay] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [sym__entry_separator] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2234), }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [503] = { + [sym_comment] = STATE(503), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_alias] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_let_DASHenv] = ACTIONS(1886), + [anon_sym_mut] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [aux_sym_cmd_identifier_token1] = ACTIONS(1886), + [aux_sym_cmd_identifier_token2] = ACTIONS(1886), + [aux_sym_cmd_identifier_token3] = ACTIONS(1886), + [aux_sym_cmd_identifier_token4] = ACTIONS(1886), + [aux_sym_cmd_identifier_token5] = ACTIONS(1886), + [aux_sym_cmd_identifier_token6] = ACTIONS(1886), + [aux_sym_cmd_identifier_token7] = ACTIONS(1886), + [aux_sym_cmd_identifier_token8] = ACTIONS(1886), + [aux_sym_cmd_identifier_token9] = ACTIONS(1886), + [aux_sym_cmd_identifier_token10] = ACTIONS(1886), + [aux_sym_cmd_identifier_token11] = ACTIONS(1886), + [aux_sym_cmd_identifier_token12] = ACTIONS(1886), + [aux_sym_cmd_identifier_token13] = ACTIONS(1886), + [aux_sym_cmd_identifier_token14] = ACTIONS(1886), + [aux_sym_cmd_identifier_token15] = ACTIONS(1886), + [aux_sym_cmd_identifier_token16] = ACTIONS(1886), + [aux_sym_cmd_identifier_token17] = ACTIONS(1886), + [aux_sym_cmd_identifier_token18] = ACTIONS(1886), + [aux_sym_cmd_identifier_token19] = ACTIONS(1886), + [aux_sym_cmd_identifier_token20] = ACTIONS(1886), + [aux_sym_cmd_identifier_token21] = ACTIONS(1886), + [aux_sym_cmd_identifier_token22] = ACTIONS(1886), + [aux_sym_cmd_identifier_token23] = ACTIONS(1886), + [aux_sym_cmd_identifier_token24] = ACTIONS(1886), + [aux_sym_cmd_identifier_token25] = ACTIONS(1886), + [aux_sym_cmd_identifier_token26] = ACTIONS(1886), + [aux_sym_cmd_identifier_token27] = ACTIONS(1886), + [aux_sym_cmd_identifier_token28] = ACTIONS(1886), + [aux_sym_cmd_identifier_token29] = ACTIONS(1886), + [aux_sym_cmd_identifier_token30] = ACTIONS(1886), + [aux_sym_cmd_identifier_token31] = ACTIONS(1886), + [aux_sym_cmd_identifier_token32] = ACTIONS(1886), + [aux_sym_cmd_identifier_token33] = ACTIONS(1886), + [aux_sym_cmd_identifier_token34] = ACTIONS(1886), + [aux_sym_cmd_identifier_token35] = ACTIONS(1886), + [aux_sym_cmd_identifier_token36] = ACTIONS(1886), + [aux_sym_cmd_identifier_token37] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = ACTIONS(1886), + [anon_sym_def] = ACTIONS(1886), + [anon_sym_export_DASHenv] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_error] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_in2] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_make] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_source] = ACTIONS(1886), + [anon_sym_source_DASHenv] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_hide] = ACTIONS(1886), + [anon_sym_hide_DASHenv] = ACTIONS(1886), + [anon_sym_overlay] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1886), + [aux_sym__val_number_decimal_token3] = ACTIONS(1886), + [aux_sym__val_number_decimal_token4] = ACTIONS(1886), + [aux_sym__val_number_token1] = ACTIONS(1886), + [aux_sym__val_number_token2] = ACTIONS(1886), + [aux_sym__val_number_token3] = ACTIONS(1886), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym__str_single_quotes] = ACTIONS(1886), + [sym__str_back_ticks] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), + [sym__entry_separator] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1888), }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [504] = { + [sym_comment] = STATE(504), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1502), + [aux_sym_cmd_identifier_token3] = ACTIONS(1502), + [aux_sym_cmd_identifier_token4] = ACTIONS(1502), + [aux_sym_cmd_identifier_token5] = ACTIONS(1502), + [aux_sym_cmd_identifier_token6] = ACTIONS(1502), + [aux_sym_cmd_identifier_token7] = ACTIONS(1502), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1502), + [aux_sym_cmd_identifier_token11] = ACTIONS(1502), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1502), + [aux_sym_cmd_identifier_token17] = ACTIONS(1502), + [aux_sym_cmd_identifier_token18] = ACTIONS(1502), + [aux_sym_cmd_identifier_token19] = ACTIONS(1502), + [aux_sym_cmd_identifier_token20] = ACTIONS(1502), + [aux_sym_cmd_identifier_token21] = ACTIONS(1502), + [aux_sym_cmd_identifier_token22] = ACTIONS(1502), + [aux_sym_cmd_identifier_token23] = ACTIONS(1502), + [aux_sym_cmd_identifier_token24] = ACTIONS(1502), + [aux_sym_cmd_identifier_token25] = ACTIONS(1502), + [aux_sym_cmd_identifier_token26] = ACTIONS(1502), + [aux_sym_cmd_identifier_token27] = ACTIONS(1502), + [aux_sym_cmd_identifier_token28] = ACTIONS(1502), + [aux_sym_cmd_identifier_token29] = ACTIONS(1502), + [aux_sym_cmd_identifier_token30] = ACTIONS(1502), + [aux_sym_cmd_identifier_token31] = ACTIONS(1502), + [aux_sym_cmd_identifier_token32] = ACTIONS(1502), + [aux_sym_cmd_identifier_token33] = ACTIONS(1502), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1502), + [aux_sym_cmd_identifier_token36] = ACTIONS(1502), + [aux_sym_cmd_identifier_token37] = ACTIONS(1502), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1502), + [aux_sym_cmd_identifier_token40] = ACTIONS(1502), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1502), + [aux_sym_record_entry_token1] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1492), + [aux_sym_cmd_identifier_token3] = ACTIONS(1492), + [aux_sym_cmd_identifier_token4] = ACTIONS(1492), + [aux_sym_cmd_identifier_token5] = ACTIONS(1492), + [aux_sym_cmd_identifier_token6] = ACTIONS(1492), + [aux_sym_cmd_identifier_token7] = ACTIONS(1492), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1492), + [aux_sym_cmd_identifier_token11] = ACTIONS(1492), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1492), + [aux_sym_cmd_identifier_token17] = ACTIONS(1492), + [aux_sym_cmd_identifier_token18] = ACTIONS(1492), + [aux_sym_cmd_identifier_token19] = ACTIONS(1492), + [aux_sym_cmd_identifier_token20] = ACTIONS(1492), + [aux_sym_cmd_identifier_token21] = ACTIONS(1492), + [aux_sym_cmd_identifier_token22] = ACTIONS(1492), + [aux_sym_cmd_identifier_token23] = ACTIONS(1492), + [aux_sym_cmd_identifier_token24] = ACTIONS(1492), + [aux_sym_cmd_identifier_token25] = ACTIONS(1492), + [aux_sym_cmd_identifier_token26] = ACTIONS(1492), + [aux_sym_cmd_identifier_token27] = ACTIONS(1492), + [aux_sym_cmd_identifier_token28] = ACTIONS(1492), + [aux_sym_cmd_identifier_token29] = ACTIONS(1492), + [aux_sym_cmd_identifier_token30] = ACTIONS(1492), + [aux_sym_cmd_identifier_token31] = ACTIONS(1492), + [aux_sym_cmd_identifier_token32] = ACTIONS(1492), + [aux_sym_cmd_identifier_token33] = ACTIONS(1492), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1492), + [aux_sym_cmd_identifier_token36] = ACTIONS(1492), + [aux_sym_cmd_identifier_token37] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(2238), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [aux_sym_record_entry_token1] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [506] = { + [sym_cell_path] = STATE(772), + [sym_path] = STATE(693), + [sym_comment] = STATE(506), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2010), + [anon_sym_alias] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_let_DASHenv] = ACTIONS(2010), + [anon_sym_mut] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2010), + [aux_sym_cmd_identifier_token2] = ACTIONS(2012), + [aux_sym_cmd_identifier_token3] = ACTIONS(2012), + [aux_sym_cmd_identifier_token4] = ACTIONS(2012), + [aux_sym_cmd_identifier_token5] = ACTIONS(2012), + [aux_sym_cmd_identifier_token6] = ACTIONS(2012), + [aux_sym_cmd_identifier_token7] = ACTIONS(2012), + [aux_sym_cmd_identifier_token8] = ACTIONS(2010), + [aux_sym_cmd_identifier_token9] = ACTIONS(2010), + [aux_sym_cmd_identifier_token10] = ACTIONS(2012), + [aux_sym_cmd_identifier_token11] = ACTIONS(2012), + [aux_sym_cmd_identifier_token12] = ACTIONS(2010), + [aux_sym_cmd_identifier_token13] = ACTIONS(2010), + [aux_sym_cmd_identifier_token14] = ACTIONS(2010), + [aux_sym_cmd_identifier_token15] = ACTIONS(2010), + [aux_sym_cmd_identifier_token16] = ACTIONS(2012), + [aux_sym_cmd_identifier_token17] = ACTIONS(2012), + [aux_sym_cmd_identifier_token18] = ACTIONS(2012), + [aux_sym_cmd_identifier_token19] = ACTIONS(2012), + [aux_sym_cmd_identifier_token20] = ACTIONS(2012), + [aux_sym_cmd_identifier_token21] = ACTIONS(2012), + [aux_sym_cmd_identifier_token22] = ACTIONS(2012), + [aux_sym_cmd_identifier_token23] = ACTIONS(2012), + [aux_sym_cmd_identifier_token24] = ACTIONS(2012), + [aux_sym_cmd_identifier_token25] = ACTIONS(2012), + [aux_sym_cmd_identifier_token26] = ACTIONS(2012), + [aux_sym_cmd_identifier_token27] = ACTIONS(2012), + [aux_sym_cmd_identifier_token28] = ACTIONS(2012), + [aux_sym_cmd_identifier_token29] = ACTIONS(2012), + [aux_sym_cmd_identifier_token30] = ACTIONS(2012), + [aux_sym_cmd_identifier_token31] = ACTIONS(2012), + [aux_sym_cmd_identifier_token32] = ACTIONS(2012), + [aux_sym_cmd_identifier_token33] = ACTIONS(2012), + [aux_sym_cmd_identifier_token34] = ACTIONS(2010), + [aux_sym_cmd_identifier_token35] = ACTIONS(2012), + [aux_sym_cmd_identifier_token36] = ACTIONS(2012), + [aux_sym_cmd_identifier_token37] = ACTIONS(2012), + [aux_sym_cmd_identifier_token38] = ACTIONS(2010), + [aux_sym_cmd_identifier_token39] = ACTIONS(2012), + [aux_sym_cmd_identifier_token40] = ACTIONS(2012), + [anon_sym_def] = ACTIONS(2010), + [anon_sym_export_DASHenv] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_module] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_error] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_in2] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_make] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2010), + [anon_sym_catch] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_source] = ACTIONS(2010), + [anon_sym_source_DASHenv] = ACTIONS(2010), + [anon_sym_register] = ACTIONS(2010), + [anon_sym_hide] = ACTIONS(2010), + [anon_sym_hide_DASHenv] = ACTIONS(2010), + [anon_sym_overlay] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2012), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2012), }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [aux_sym_cmd_identifier_token37] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), + [507] = { + [sym_comment] = STATE(507), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1556), + [aux_sym_cmd_identifier_token3] = ACTIONS(1556), + [aux_sym_cmd_identifier_token4] = ACTIONS(1556), + [aux_sym_cmd_identifier_token5] = ACTIONS(1556), + [aux_sym_cmd_identifier_token6] = ACTIONS(1556), + [aux_sym_cmd_identifier_token7] = ACTIONS(1556), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1556), + [aux_sym_cmd_identifier_token11] = ACTIONS(1556), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1556), + [aux_sym_cmd_identifier_token17] = ACTIONS(1556), + [aux_sym_cmd_identifier_token18] = ACTIONS(1556), + [aux_sym_cmd_identifier_token19] = ACTIONS(1556), + [aux_sym_cmd_identifier_token20] = ACTIONS(1556), + [aux_sym_cmd_identifier_token21] = ACTIONS(1556), + [aux_sym_cmd_identifier_token22] = ACTIONS(1556), + [aux_sym_cmd_identifier_token23] = ACTIONS(1556), + [aux_sym_cmd_identifier_token24] = ACTIONS(1556), + [aux_sym_cmd_identifier_token25] = ACTIONS(1556), + [aux_sym_cmd_identifier_token26] = ACTIONS(1556), + [aux_sym_cmd_identifier_token27] = ACTIONS(1556), + [aux_sym_cmd_identifier_token28] = ACTIONS(1556), + [aux_sym_cmd_identifier_token29] = ACTIONS(1556), + [aux_sym_cmd_identifier_token30] = ACTIONS(1556), + [aux_sym_cmd_identifier_token31] = ACTIONS(1556), + [aux_sym_cmd_identifier_token32] = ACTIONS(1556), + [aux_sym_cmd_identifier_token33] = ACTIONS(1556), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1556), + [aux_sym_cmd_identifier_token36] = ACTIONS(1556), + [aux_sym_cmd_identifier_token37] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), + [sym__entry_separator] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1558), }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2228), + [508] = { + [sym_comment] = STATE(508), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_alias] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_let_DASHenv] = ACTIONS(2240), + [anon_sym_mut] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [aux_sym_cmd_identifier_token1] = ACTIONS(2240), + [aux_sym_cmd_identifier_token2] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2240), + [aux_sym_cmd_identifier_token4] = ACTIONS(2240), + [aux_sym_cmd_identifier_token5] = ACTIONS(2240), + [aux_sym_cmd_identifier_token6] = ACTIONS(2240), + [aux_sym_cmd_identifier_token7] = ACTIONS(2240), + [aux_sym_cmd_identifier_token8] = ACTIONS(2240), + [aux_sym_cmd_identifier_token9] = ACTIONS(2240), + [aux_sym_cmd_identifier_token10] = ACTIONS(2240), + [aux_sym_cmd_identifier_token11] = ACTIONS(2240), + [aux_sym_cmd_identifier_token12] = ACTIONS(2240), + [aux_sym_cmd_identifier_token13] = ACTIONS(2240), + [aux_sym_cmd_identifier_token14] = ACTIONS(2240), + [aux_sym_cmd_identifier_token15] = ACTIONS(2240), + [aux_sym_cmd_identifier_token16] = ACTIONS(2240), + [aux_sym_cmd_identifier_token17] = ACTIONS(2240), + [aux_sym_cmd_identifier_token18] = ACTIONS(2240), + [aux_sym_cmd_identifier_token19] = ACTIONS(2240), + [aux_sym_cmd_identifier_token20] = ACTIONS(2240), + [aux_sym_cmd_identifier_token21] = ACTIONS(2240), + [aux_sym_cmd_identifier_token22] = ACTIONS(2240), + [aux_sym_cmd_identifier_token23] = ACTIONS(2240), + [aux_sym_cmd_identifier_token24] = ACTIONS(2240), + [aux_sym_cmd_identifier_token25] = ACTIONS(2240), + [aux_sym_cmd_identifier_token26] = ACTIONS(2240), + [aux_sym_cmd_identifier_token27] = ACTIONS(2240), + [aux_sym_cmd_identifier_token28] = ACTIONS(2240), + [aux_sym_cmd_identifier_token29] = ACTIONS(2240), + [aux_sym_cmd_identifier_token30] = ACTIONS(2240), + [aux_sym_cmd_identifier_token31] = ACTIONS(2240), + [aux_sym_cmd_identifier_token32] = ACTIONS(2240), + [aux_sym_cmd_identifier_token33] = ACTIONS(2240), + [aux_sym_cmd_identifier_token34] = ACTIONS(2240), + [aux_sym_cmd_identifier_token35] = ACTIONS(2240), + [aux_sym_cmd_identifier_token36] = ACTIONS(2240), + [aux_sym_cmd_identifier_token37] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [anon_sym_def] = ACTIONS(2240), + [anon_sym_export_DASHenv] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_error] = ACTIONS(2240), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_in2] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_make] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_catch] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_source] = ACTIONS(2240), + [anon_sym_source_DASHenv] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_hide] = ACTIONS(2240), + [anon_sym_hide_DASHenv] = ACTIONS(2240), + [anon_sym_overlay] = ACTIONS(2240), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_PLUS2] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [aux_sym__val_number_token4] = ACTIONS(2240), + [aux_sym__val_number_token5] = ACTIONS(2240), + [aux_sym__val_number_token6] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), + [sym__entry_separator] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(2242), }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [509] = { + [sym_comment] = STATE(509), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [aux_sym_record_entry_token1] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_alias] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_let_DASHenv] = ACTIONS(2258), - [anon_sym_mut] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [aux_sym_cmd_identifier_token1] = ACTIONS(2258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2262), - [aux_sym_cmd_identifier_token3] = ACTIONS(2262), - [aux_sym_cmd_identifier_token4] = ACTIONS(2262), - [aux_sym_cmd_identifier_token5] = ACTIONS(2262), - [aux_sym_cmd_identifier_token6] = ACTIONS(2262), - [aux_sym_cmd_identifier_token7] = ACTIONS(2262), - [aux_sym_cmd_identifier_token8] = ACTIONS(2258), - [aux_sym_cmd_identifier_token9] = ACTIONS(2258), - [aux_sym_cmd_identifier_token10] = ACTIONS(2262), - [aux_sym_cmd_identifier_token11] = ACTIONS(2262), - [aux_sym_cmd_identifier_token12] = ACTIONS(2258), - [aux_sym_cmd_identifier_token13] = ACTIONS(2258), - [aux_sym_cmd_identifier_token14] = ACTIONS(2258), - [aux_sym_cmd_identifier_token15] = ACTIONS(2258), - [aux_sym_cmd_identifier_token16] = ACTIONS(2262), - [aux_sym_cmd_identifier_token17] = ACTIONS(2262), - [aux_sym_cmd_identifier_token18] = ACTIONS(2262), - [aux_sym_cmd_identifier_token19] = ACTIONS(2262), - [aux_sym_cmd_identifier_token20] = ACTIONS(2262), - [aux_sym_cmd_identifier_token21] = ACTIONS(2262), - [aux_sym_cmd_identifier_token22] = ACTIONS(2262), - [aux_sym_cmd_identifier_token23] = ACTIONS(2262), - [aux_sym_cmd_identifier_token24] = ACTIONS(2262), - [aux_sym_cmd_identifier_token25] = ACTIONS(2262), - [aux_sym_cmd_identifier_token26] = ACTIONS(2262), - [aux_sym_cmd_identifier_token27] = ACTIONS(2262), - [aux_sym_cmd_identifier_token28] = ACTIONS(2262), - [aux_sym_cmd_identifier_token29] = ACTIONS(2262), - [aux_sym_cmd_identifier_token30] = ACTIONS(2262), - [aux_sym_cmd_identifier_token31] = ACTIONS(2262), - [aux_sym_cmd_identifier_token32] = ACTIONS(2262), - [aux_sym_cmd_identifier_token33] = ACTIONS(2262), - [aux_sym_cmd_identifier_token34] = ACTIONS(2258), - [aux_sym_cmd_identifier_token35] = ACTIONS(2262), - [aux_sym_cmd_identifier_token36] = ACTIONS(2262), - [aux_sym_cmd_identifier_token37] = ACTIONS(2262), - [aux_sym_cmd_identifier_token38] = ACTIONS(2258), - [aux_sym_cmd_identifier_token39] = ACTIONS(2262), - [aux_sym_cmd_identifier_token40] = ACTIONS(2262), - [anon_sym_def] = ACTIONS(2258), - [anon_sym_export_DASHenv] = ACTIONS(2258), - [anon_sym_extern] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_use] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2262), - [anon_sym_error] = ACTIONS(2258), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_in2] = ACTIONS(2258), - [anon_sym_loop] = ACTIONS(2258), - [anon_sym_make] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_catch] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_source] = ACTIONS(2258), - [anon_sym_source_DASHenv] = ACTIONS(2258), - [anon_sym_register] = ACTIONS(2258), - [anon_sym_hide] = ACTIONS(2258), - [anon_sym_hide_DASHenv] = ACTIONS(2258), - [anon_sym_overlay] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_LPAREN2] = ACTIONS(2260), - [anon_sym_PLUS2] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2262), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2262), - [aux_sym__val_number_decimal_token1] = ACTIONS(2258), - [aux_sym__val_number_decimal_token2] = ACTIONS(2262), - [aux_sym__val_number_decimal_token3] = ACTIONS(2262), - [aux_sym__val_number_decimal_token4] = ACTIONS(2262), - [aux_sym__val_number_token1] = ACTIONS(2262), - [aux_sym__val_number_token2] = ACTIONS(2262), - [aux_sym__val_number_token3] = ACTIONS(2262), - [aux_sym__val_number_token4] = ACTIONS(2258), - [aux_sym__val_number_token5] = ACTIONS(2258), - [aux_sym__val_number_token6] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2262), - [sym__str_single_quotes] = ACTIONS(2262), - [sym__str_back_ticks] = ACTIONS(2262), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2262), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2262), + [510] = { + [sym_cell_path] = STATE(774), + [sym_path] = STATE(693), + [sym_comment] = STATE(510), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1976), + [aux_sym_cmd_identifier_token3] = ACTIONS(1976), + [aux_sym_cmd_identifier_token4] = ACTIONS(1976), + [aux_sym_cmd_identifier_token5] = ACTIONS(1976), + [aux_sym_cmd_identifier_token6] = ACTIONS(1976), + [aux_sym_cmd_identifier_token7] = ACTIONS(1976), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1976), + [aux_sym_cmd_identifier_token11] = ACTIONS(1976), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1976), + [aux_sym_cmd_identifier_token17] = ACTIONS(1976), + [aux_sym_cmd_identifier_token18] = ACTIONS(1976), + [aux_sym_cmd_identifier_token19] = ACTIONS(1976), + [aux_sym_cmd_identifier_token20] = ACTIONS(1976), + [aux_sym_cmd_identifier_token21] = ACTIONS(1976), + [aux_sym_cmd_identifier_token22] = ACTIONS(1976), + [aux_sym_cmd_identifier_token23] = ACTIONS(1976), + [aux_sym_cmd_identifier_token24] = ACTIONS(1976), + [aux_sym_cmd_identifier_token25] = ACTIONS(1976), + [aux_sym_cmd_identifier_token26] = ACTIONS(1976), + [aux_sym_cmd_identifier_token27] = ACTIONS(1976), + [aux_sym_cmd_identifier_token28] = ACTIONS(1976), + [aux_sym_cmd_identifier_token29] = ACTIONS(1976), + [aux_sym_cmd_identifier_token30] = ACTIONS(1976), + [aux_sym_cmd_identifier_token31] = ACTIONS(1976), + [aux_sym_cmd_identifier_token32] = ACTIONS(1976), + [aux_sym_cmd_identifier_token33] = ACTIONS(1976), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1976), + [aux_sym_cmd_identifier_token36] = ACTIONS(1976), + [aux_sym_cmd_identifier_token37] = ACTIONS(1976), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1976), + [aux_sym_cmd_identifier_token40] = ACTIONS(1976), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1976), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(1976), + [aux_sym__val_number_decimal_token4] = ACTIONS(1976), + [aux_sym__val_number_token1] = ACTIONS(1976), + [aux_sym__val_number_token2] = ACTIONS(1976), + [aux_sym__val_number_token3] = ACTIONS(1976), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym__str_single_quotes] = ACTIONS(1976), + [sym__str_back_ticks] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1976), }, - [597] = { - [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2318), - [anon_sym_alias] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_let_DASHenv] = ACTIONS(2318), - [anon_sym_mut] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [aux_sym_cmd_identifier_token1] = ACTIONS(2318), - [aux_sym_cmd_identifier_token2] = ACTIONS(2318), - [aux_sym_cmd_identifier_token3] = ACTIONS(2318), - [aux_sym_cmd_identifier_token4] = ACTIONS(2318), - [aux_sym_cmd_identifier_token5] = ACTIONS(2318), - [aux_sym_cmd_identifier_token6] = ACTIONS(2318), - [aux_sym_cmd_identifier_token7] = ACTIONS(2318), - [aux_sym_cmd_identifier_token8] = ACTIONS(2318), - [aux_sym_cmd_identifier_token9] = ACTIONS(2318), - [aux_sym_cmd_identifier_token10] = ACTIONS(2318), - [aux_sym_cmd_identifier_token11] = ACTIONS(2318), - [aux_sym_cmd_identifier_token12] = ACTIONS(2318), - [aux_sym_cmd_identifier_token13] = ACTIONS(2318), - [aux_sym_cmd_identifier_token14] = ACTIONS(2318), - [aux_sym_cmd_identifier_token15] = ACTIONS(2318), - [aux_sym_cmd_identifier_token16] = ACTIONS(2318), - [aux_sym_cmd_identifier_token17] = ACTIONS(2318), - [aux_sym_cmd_identifier_token18] = ACTIONS(2318), - [aux_sym_cmd_identifier_token19] = ACTIONS(2318), - [aux_sym_cmd_identifier_token20] = ACTIONS(2318), - [aux_sym_cmd_identifier_token21] = ACTIONS(2318), - [aux_sym_cmd_identifier_token22] = ACTIONS(2318), - [aux_sym_cmd_identifier_token23] = ACTIONS(2318), - [aux_sym_cmd_identifier_token24] = ACTIONS(2318), - [aux_sym_cmd_identifier_token25] = ACTIONS(2318), - [aux_sym_cmd_identifier_token26] = ACTIONS(2318), - [aux_sym_cmd_identifier_token27] = ACTIONS(2318), - [aux_sym_cmd_identifier_token28] = ACTIONS(2318), - [aux_sym_cmd_identifier_token29] = ACTIONS(2318), - [aux_sym_cmd_identifier_token30] = ACTIONS(2318), - [aux_sym_cmd_identifier_token31] = ACTIONS(2318), - [aux_sym_cmd_identifier_token32] = ACTIONS(2318), - [aux_sym_cmd_identifier_token33] = ACTIONS(2318), - [aux_sym_cmd_identifier_token34] = ACTIONS(2318), - [aux_sym_cmd_identifier_token35] = ACTIONS(2318), - [aux_sym_cmd_identifier_token36] = ACTIONS(2318), - [aux_sym_cmd_identifier_token37] = ACTIONS(2318), - [aux_sym_cmd_identifier_token38] = ACTIONS(2318), - [aux_sym_cmd_identifier_token39] = ACTIONS(2318), - [aux_sym_cmd_identifier_token40] = ACTIONS(2318), - [anon_sym_def] = ACTIONS(2318), - [anon_sym_export_DASHenv] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_module] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_DOLLAR] = ACTIONS(2318), - [anon_sym_error] = ACTIONS(2318), - [anon_sym_DASH2] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_in2] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_make] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_else] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_try] = ACTIONS(2318), - [anon_sym_catch] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_source] = ACTIONS(2318), - [anon_sym_source_DASHenv] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_hide] = ACTIONS(2318), - [anon_sym_hide_DASHenv] = ACTIONS(2318), - [anon_sym_overlay] = ACTIONS(2318), - [anon_sym_as] = ACTIONS(2318), - [anon_sym_LPAREN2] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2318), - [aux_sym__val_number_decimal_token1] = ACTIONS(2318), - [aux_sym__val_number_decimal_token2] = ACTIONS(2318), - [aux_sym__val_number_decimal_token3] = ACTIONS(2318), - [aux_sym__val_number_decimal_token4] = ACTIONS(2318), - [aux_sym__val_number_token1] = ACTIONS(2318), - [aux_sym__val_number_token2] = ACTIONS(2318), - [aux_sym__val_number_token3] = ACTIONS(2318), - [aux_sym__val_number_token4] = ACTIONS(2318), - [aux_sym__val_number_token5] = ACTIONS(2318), - [aux_sym__val_number_token6] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2318), - [sym__str_single_quotes] = ACTIONS(2318), - [sym__str_back_ticks] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2318), - [sym__entry_separator] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2320), + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1508), + [aux_sym_record_entry_token1] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, - [598] = { - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(2322), - [anon_sym_alias] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2322), - [anon_sym_let_DASHenv] = ACTIONS(2322), - [anon_sym_mut] = ACTIONS(2322), - [anon_sym_const] = ACTIONS(2322), - [aux_sym_cmd_identifier_token1] = ACTIONS(2322), - [aux_sym_cmd_identifier_token2] = ACTIONS(2322), - [aux_sym_cmd_identifier_token3] = ACTIONS(2322), - [aux_sym_cmd_identifier_token4] = ACTIONS(2322), - [aux_sym_cmd_identifier_token5] = ACTIONS(2322), - [aux_sym_cmd_identifier_token6] = ACTIONS(2322), - [aux_sym_cmd_identifier_token7] = ACTIONS(2322), - [aux_sym_cmd_identifier_token8] = ACTIONS(2322), - [aux_sym_cmd_identifier_token9] = ACTIONS(2322), - [aux_sym_cmd_identifier_token10] = ACTIONS(2322), - [aux_sym_cmd_identifier_token11] = ACTIONS(2322), - [aux_sym_cmd_identifier_token12] = ACTIONS(2322), - [aux_sym_cmd_identifier_token13] = ACTIONS(2322), - [aux_sym_cmd_identifier_token14] = ACTIONS(2322), - [aux_sym_cmd_identifier_token15] = ACTIONS(2322), - [aux_sym_cmd_identifier_token16] = ACTIONS(2322), - [aux_sym_cmd_identifier_token17] = ACTIONS(2322), - [aux_sym_cmd_identifier_token18] = ACTIONS(2322), - [aux_sym_cmd_identifier_token19] = ACTIONS(2322), - [aux_sym_cmd_identifier_token20] = ACTIONS(2322), - [aux_sym_cmd_identifier_token21] = ACTIONS(2322), - [aux_sym_cmd_identifier_token22] = ACTIONS(2322), - [aux_sym_cmd_identifier_token23] = ACTIONS(2322), - [aux_sym_cmd_identifier_token24] = ACTIONS(2322), - [aux_sym_cmd_identifier_token25] = ACTIONS(2322), - [aux_sym_cmd_identifier_token26] = ACTIONS(2322), - [aux_sym_cmd_identifier_token27] = ACTIONS(2322), - [aux_sym_cmd_identifier_token28] = ACTIONS(2322), - [aux_sym_cmd_identifier_token29] = ACTIONS(2322), - [aux_sym_cmd_identifier_token30] = ACTIONS(2322), - [aux_sym_cmd_identifier_token31] = ACTIONS(2322), - [aux_sym_cmd_identifier_token32] = ACTIONS(2322), - [aux_sym_cmd_identifier_token33] = ACTIONS(2322), - [aux_sym_cmd_identifier_token34] = ACTIONS(2322), - [aux_sym_cmd_identifier_token35] = ACTIONS(2322), - [aux_sym_cmd_identifier_token36] = ACTIONS(2322), - [aux_sym_cmd_identifier_token37] = ACTIONS(2322), - [aux_sym_cmd_identifier_token38] = ACTIONS(2322), - [aux_sym_cmd_identifier_token39] = ACTIONS(2322), - [aux_sym_cmd_identifier_token40] = ACTIONS(2322), - [anon_sym_def] = ACTIONS(2322), - [anon_sym_export_DASHenv] = ACTIONS(2322), - [anon_sym_extern] = ACTIONS(2322), - [anon_sym_module] = ACTIONS(2322), - [anon_sym_use] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(2322), - [anon_sym_error] = ACTIONS(2322), - [anon_sym_DASH2] = ACTIONS(2322), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_in2] = ACTIONS(2322), - [anon_sym_loop] = ACTIONS(2322), - [anon_sym_make] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_else] = ACTIONS(2322), - [anon_sym_match] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2322), - [anon_sym_catch] = ACTIONS(2322), - [anon_sym_return] = ACTIONS(2322), - [anon_sym_source] = ACTIONS(2322), - [anon_sym_source_DASHenv] = ACTIONS(2322), - [anon_sym_register] = ACTIONS(2322), - [anon_sym_hide] = ACTIONS(2322), - [anon_sym_hide_DASHenv] = ACTIONS(2322), - [anon_sym_overlay] = ACTIONS(2322), - [anon_sym_as] = ACTIONS(2322), - [anon_sym_PLUS2] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2322), - [aux_sym__val_number_decimal_token2] = ACTIONS(2322), - [aux_sym__val_number_decimal_token3] = ACTIONS(2322), - [aux_sym__val_number_decimal_token4] = ACTIONS(2322), - [aux_sym__val_number_token1] = ACTIONS(2322), - [aux_sym__val_number_token2] = ACTIONS(2322), - [aux_sym__val_number_token3] = ACTIONS(2322), - [aux_sym__val_number_token4] = ACTIONS(2322), - [aux_sym__val_number_token5] = ACTIONS(2322), - [aux_sym__val_number_token6] = ACTIONS(2322), - [anon_sym_LBRACK2] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym__str_single_quotes] = ACTIONS(2322), - [sym__str_back_ticks] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), - [sym__entry_separator] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [512] = { + [sym_comment] = STATE(512), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1516), + [aux_sym_record_entry_token1] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, - [599] = { - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2328), - [aux_sym__immediate_decimal_token2] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [513] = { + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1498), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [aux_sym_cmd_identifier_token6] = ACTIONS(1498), + [aux_sym_cmd_identifier_token7] = ACTIONS(1498), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1498), + [aux_sym_cmd_identifier_token11] = ACTIONS(1498), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1498), + [aux_sym_cmd_identifier_token17] = ACTIONS(1498), + [aux_sym_cmd_identifier_token18] = ACTIONS(1498), + [aux_sym_cmd_identifier_token19] = ACTIONS(1498), + [aux_sym_cmd_identifier_token20] = ACTIONS(1498), + [aux_sym_cmd_identifier_token21] = ACTIONS(1498), + [aux_sym_cmd_identifier_token22] = ACTIONS(1498), + [aux_sym_cmd_identifier_token23] = ACTIONS(1498), + [aux_sym_cmd_identifier_token24] = ACTIONS(1498), + [aux_sym_cmd_identifier_token25] = ACTIONS(1498), + [aux_sym_cmd_identifier_token26] = ACTIONS(1498), + [aux_sym_cmd_identifier_token27] = ACTIONS(1498), + [aux_sym_cmd_identifier_token28] = ACTIONS(1498), + [aux_sym_cmd_identifier_token29] = ACTIONS(1498), + [aux_sym_cmd_identifier_token30] = ACTIONS(1498), + [aux_sym_cmd_identifier_token31] = ACTIONS(1498), + [aux_sym_cmd_identifier_token32] = ACTIONS(1498), + [aux_sym_cmd_identifier_token33] = ACTIONS(1498), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1498), + [aux_sym_cmd_identifier_token36] = ACTIONS(1498), + [aux_sym_cmd_identifier_token37] = ACTIONS(1498), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1498), + [aux_sym_cmd_identifier_token40] = ACTIONS(1498), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1498), + [aux_sym_record_entry_token1] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, - [600] = { - [sym_comment] = STATE(600), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [aux_sym_cmd_identifier_token37] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_DASH2] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in2] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_PLUS2] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [aux_sym__val_number_token4] = ACTIONS(2332), - [aux_sym__val_number_token5] = ACTIONS(2332), - [aux_sym__val_number_token6] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2334), + [514] = { + [sym_expr_parenthesized] = STATE(4304), + [sym__spread_parenthesized] = STATE(4743), + [sym_val_range] = STATE(4744), + [sym__val_range] = STATE(7850), + [sym__val_range_with_end] = STATE(7616), + [sym__value] = STATE(4744), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym__spread_variable] = STATE(4745), + [sym_val_variable] = STATE(4233), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4046), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym__spread_list] = STATE(4743), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym__cmd_arg] = STATE(4802), + [sym_redirection] = STATE(4747), + [sym_short_flag] = STATE(4749), + [sym_long_flag] = STATE(4749), + [sym_unquoted] = STATE(4472), + [sym__unquoted_with_expr] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(7251), + [sym_comment] = STATE(514), + [sym__newline] = ACTIONS(2244), + [sym__space] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_DASH2] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT] = ACTIONS(2115), + [anon_sym_null] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2123), + [aux_sym__val_number_decimal_token3] = ACTIONS(2125), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2129), + [aux_sym__val_number_token2] = ACTIONS(2129), + [aux_sym__val_number_token3] = ACTIONS(2129), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2141), + [sym__str_back_ticks] = ACTIONS(2141), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2145), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2147), + [anon_sym_err_GT] = ACTIONS(2149), + [anon_sym_out_GT] = ACTIONS(2149), + [anon_sym_e_GT] = ACTIONS(2149), + [anon_sym_o_GT] = ACTIONS(2149), + [anon_sym_err_PLUSout_GT] = ACTIONS(2149), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2149), + [anon_sym_o_PLUSe_GT] = ACTIONS(2149), + [anon_sym_e_PLUSo_GT] = ACTIONS(2149), + [anon_sym_err_GT_GT] = ACTIONS(2149), + [anon_sym_out_GT_GT] = ACTIONS(2149), + [anon_sym_e_GT_GT] = ACTIONS(2149), + [anon_sym_o_GT_GT] = ACTIONS(2149), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2149), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2149), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2149), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2149), + [aux_sym_unquoted_token1] = ACTIONS(2151), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2337), + [sym_raw_string_begin] = ACTIONS(2153), }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(2339), - [aux_sym__immediate_decimal_token2] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [515] = { + [sym_cell_path] = STATE(739), + [sym_path] = STATE(693), + [sym_comment] = STATE(515), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1475), + [aux_sym_cmd_identifier_token3] = ACTIONS(1475), + [aux_sym_cmd_identifier_token4] = ACTIONS(1475), + [aux_sym_cmd_identifier_token5] = ACTIONS(1475), + [aux_sym_cmd_identifier_token6] = ACTIONS(1475), + [aux_sym_cmd_identifier_token7] = ACTIONS(1475), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1475), + [aux_sym_cmd_identifier_token11] = ACTIONS(1475), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1475), + [aux_sym_cmd_identifier_token17] = ACTIONS(1475), + [aux_sym_cmd_identifier_token18] = ACTIONS(1475), + [aux_sym_cmd_identifier_token19] = ACTIONS(1475), + [aux_sym_cmd_identifier_token20] = ACTIONS(1475), + [aux_sym_cmd_identifier_token21] = ACTIONS(1475), + [aux_sym_cmd_identifier_token22] = ACTIONS(1475), + [aux_sym_cmd_identifier_token23] = ACTIONS(1475), + [aux_sym_cmd_identifier_token24] = ACTIONS(1475), + [aux_sym_cmd_identifier_token25] = ACTIONS(1475), + [aux_sym_cmd_identifier_token26] = ACTIONS(1475), + [aux_sym_cmd_identifier_token27] = ACTIONS(1475), + [aux_sym_cmd_identifier_token28] = ACTIONS(1475), + [aux_sym_cmd_identifier_token29] = ACTIONS(1475), + [aux_sym_cmd_identifier_token30] = ACTIONS(1475), + [aux_sym_cmd_identifier_token31] = ACTIONS(1475), + [aux_sym_cmd_identifier_token32] = ACTIONS(1475), + [aux_sym_cmd_identifier_token33] = ACTIONS(1475), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1475), + [aux_sym_cmd_identifier_token36] = ACTIONS(1475), + [aux_sym_cmd_identifier_token37] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), }, - [602] = { - [sym__expr_parenthesized_immediate] = STATE(7537), - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), - [aux_sym_cmd_identifier_token2] = ACTIONS(2171), - [aux_sym_cmd_identifier_token3] = ACTIONS(2171), - [aux_sym_cmd_identifier_token4] = ACTIONS(2171), - [aux_sym_cmd_identifier_token5] = ACTIONS(2171), - [aux_sym_cmd_identifier_token6] = ACTIONS(2171), - [aux_sym_cmd_identifier_token7] = ACTIONS(2171), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), - [aux_sym_cmd_identifier_token10] = ACTIONS(2171), - [aux_sym_cmd_identifier_token11] = ACTIONS(2171), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), - [aux_sym_cmd_identifier_token16] = ACTIONS(2171), - [aux_sym_cmd_identifier_token17] = ACTIONS(2171), - [aux_sym_cmd_identifier_token18] = ACTIONS(2171), - [aux_sym_cmd_identifier_token19] = ACTIONS(2171), - [aux_sym_cmd_identifier_token20] = ACTIONS(2171), - [aux_sym_cmd_identifier_token21] = ACTIONS(2171), - [aux_sym_cmd_identifier_token22] = ACTIONS(2171), - [aux_sym_cmd_identifier_token23] = ACTIONS(2171), - [aux_sym_cmd_identifier_token24] = ACTIONS(2171), - [aux_sym_cmd_identifier_token25] = ACTIONS(2171), - [aux_sym_cmd_identifier_token26] = ACTIONS(2171), - [aux_sym_cmd_identifier_token27] = ACTIONS(2171), - [aux_sym_cmd_identifier_token28] = ACTIONS(2171), - [aux_sym_cmd_identifier_token29] = ACTIONS(2171), - [aux_sym_cmd_identifier_token30] = ACTIONS(2171), - [aux_sym_cmd_identifier_token31] = ACTIONS(2171), - [aux_sym_cmd_identifier_token32] = ACTIONS(2171), - [aux_sym_cmd_identifier_token33] = ACTIONS(2171), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), - [aux_sym_cmd_identifier_token35] = ACTIONS(2171), - [aux_sym_cmd_identifier_token36] = ACTIONS(2171), - [aux_sym_cmd_identifier_token37] = ACTIONS(2171), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2171), - [aux_sym_cmd_identifier_token40] = ACTIONS(2171), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2171), - [aux_sym__val_number_decimal_token3] = ACTIONS(2171), - [aux_sym__val_number_decimal_token4] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2171), + [516] = { + [sym_cell_path] = STATE(775), + [sym_path] = STATE(693), + [sym_comment] = STATE(516), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2014), + [anon_sym_alias] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_let_DASHenv] = ACTIONS(2014), + [anon_sym_mut] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [aux_sym_cmd_identifier_token1] = ACTIONS(2014), + [aux_sym_cmd_identifier_token2] = ACTIONS(2016), + [aux_sym_cmd_identifier_token3] = ACTIONS(2016), + [aux_sym_cmd_identifier_token4] = ACTIONS(2016), + [aux_sym_cmd_identifier_token5] = ACTIONS(2016), + [aux_sym_cmd_identifier_token6] = ACTIONS(2016), + [aux_sym_cmd_identifier_token7] = ACTIONS(2016), + [aux_sym_cmd_identifier_token8] = ACTIONS(2014), + [aux_sym_cmd_identifier_token9] = ACTIONS(2014), + [aux_sym_cmd_identifier_token10] = ACTIONS(2016), + [aux_sym_cmd_identifier_token11] = ACTIONS(2016), + [aux_sym_cmd_identifier_token12] = ACTIONS(2014), + [aux_sym_cmd_identifier_token13] = ACTIONS(2014), + [aux_sym_cmd_identifier_token14] = ACTIONS(2014), + [aux_sym_cmd_identifier_token15] = ACTIONS(2014), + [aux_sym_cmd_identifier_token16] = ACTIONS(2016), + [aux_sym_cmd_identifier_token17] = ACTIONS(2016), + [aux_sym_cmd_identifier_token18] = ACTIONS(2016), + [aux_sym_cmd_identifier_token19] = ACTIONS(2016), + [aux_sym_cmd_identifier_token20] = ACTIONS(2016), + [aux_sym_cmd_identifier_token21] = ACTIONS(2016), + [aux_sym_cmd_identifier_token22] = ACTIONS(2016), + [aux_sym_cmd_identifier_token23] = ACTIONS(2016), + [aux_sym_cmd_identifier_token24] = ACTIONS(2016), + [aux_sym_cmd_identifier_token25] = ACTIONS(2016), + [aux_sym_cmd_identifier_token26] = ACTIONS(2016), + [aux_sym_cmd_identifier_token27] = ACTIONS(2016), + [aux_sym_cmd_identifier_token28] = ACTIONS(2016), + [aux_sym_cmd_identifier_token29] = ACTIONS(2016), + [aux_sym_cmd_identifier_token30] = ACTIONS(2016), + [aux_sym_cmd_identifier_token31] = ACTIONS(2016), + [aux_sym_cmd_identifier_token32] = ACTIONS(2016), + [aux_sym_cmd_identifier_token33] = ACTIONS(2016), + [aux_sym_cmd_identifier_token34] = ACTIONS(2014), + [aux_sym_cmd_identifier_token35] = ACTIONS(2016), + [aux_sym_cmd_identifier_token36] = ACTIONS(2016), + [aux_sym_cmd_identifier_token37] = ACTIONS(2016), + [aux_sym_cmd_identifier_token38] = ACTIONS(2014), + [aux_sym_cmd_identifier_token39] = ACTIONS(2016), + [aux_sym_cmd_identifier_token40] = ACTIONS(2016), + [anon_sym_def] = ACTIONS(2014), + [anon_sym_export_DASHenv] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_module] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2016), + [anon_sym_error] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_in2] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_make] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_source] = ACTIONS(2014), + [anon_sym_source_DASHenv] = ACTIONS(2014), + [anon_sym_register] = ACTIONS(2014), + [anon_sym_hide] = ACTIONS(2014), + [anon_sym_hide_DASHenv] = ACTIONS(2014), + [anon_sym_overlay] = ACTIONS(2014), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2016), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2014), + [aux_sym__val_number_token5] = ACTIONS(2014), + [aux_sym__val_number_token6] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2016), }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2268), - [anon_sym_alias] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_let_DASHenv] = ACTIONS(2268), - [anon_sym_mut] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [aux_sym_cmd_identifier_token1] = ACTIONS(2268), - [aux_sym_cmd_identifier_token2] = ACTIONS(2268), - [aux_sym_cmd_identifier_token3] = ACTIONS(2268), - [aux_sym_cmd_identifier_token4] = ACTIONS(2268), - [aux_sym_cmd_identifier_token5] = ACTIONS(2268), - [aux_sym_cmd_identifier_token6] = ACTIONS(2268), - [aux_sym_cmd_identifier_token7] = ACTIONS(2268), - [aux_sym_cmd_identifier_token8] = ACTIONS(2268), - [aux_sym_cmd_identifier_token9] = ACTIONS(2268), - [aux_sym_cmd_identifier_token10] = ACTIONS(2268), - [aux_sym_cmd_identifier_token11] = ACTIONS(2268), - [aux_sym_cmd_identifier_token12] = ACTIONS(2268), - [aux_sym_cmd_identifier_token13] = ACTIONS(2268), - [aux_sym_cmd_identifier_token14] = ACTIONS(2268), - [aux_sym_cmd_identifier_token15] = ACTIONS(2268), - [aux_sym_cmd_identifier_token16] = ACTIONS(2268), - [aux_sym_cmd_identifier_token17] = ACTIONS(2268), - [aux_sym_cmd_identifier_token18] = ACTIONS(2268), - [aux_sym_cmd_identifier_token19] = ACTIONS(2268), - [aux_sym_cmd_identifier_token20] = ACTIONS(2268), - [aux_sym_cmd_identifier_token21] = ACTIONS(2268), - [aux_sym_cmd_identifier_token22] = ACTIONS(2268), - [aux_sym_cmd_identifier_token23] = ACTIONS(2268), - [aux_sym_cmd_identifier_token24] = ACTIONS(2268), - [aux_sym_cmd_identifier_token25] = ACTIONS(2268), - [aux_sym_cmd_identifier_token26] = ACTIONS(2268), - [aux_sym_cmd_identifier_token27] = ACTIONS(2268), - [aux_sym_cmd_identifier_token28] = ACTIONS(2268), - [aux_sym_cmd_identifier_token29] = ACTIONS(2268), - [aux_sym_cmd_identifier_token30] = ACTIONS(2268), - [aux_sym_cmd_identifier_token31] = ACTIONS(2268), - [aux_sym_cmd_identifier_token32] = ACTIONS(2268), - [aux_sym_cmd_identifier_token33] = ACTIONS(2268), - [aux_sym_cmd_identifier_token34] = ACTIONS(2268), - [aux_sym_cmd_identifier_token35] = ACTIONS(2268), - [aux_sym_cmd_identifier_token36] = ACTIONS(2268), - [aux_sym_cmd_identifier_token37] = ACTIONS(2268), - [aux_sym_cmd_identifier_token38] = ACTIONS(2268), - [aux_sym_cmd_identifier_token39] = ACTIONS(2268), - [aux_sym_cmd_identifier_token40] = ACTIONS(2268), - [anon_sym_def] = ACTIONS(2268), - [anon_sym_export_DASHenv] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_module] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2268), - [anon_sym_error] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_in2] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_make] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_else] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2268), - [anon_sym_catch] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_source] = ACTIONS(2268), - [anon_sym_source_DASHenv] = ACTIONS(2268), - [anon_sym_register] = ACTIONS(2268), - [anon_sym_hide] = ACTIONS(2268), - [anon_sym_hide_DASHenv] = ACTIONS(2268), - [anon_sym_overlay] = ACTIONS(2268), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_LPAREN2] = ACTIONS(2270), - [anon_sym_PLUS2] = ACTIONS(2268), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2268), - [aux_sym__val_number_decimal_token1] = ACTIONS(2268), - [aux_sym__val_number_decimal_token2] = ACTIONS(2268), - [aux_sym__val_number_decimal_token3] = ACTIONS(2268), - [aux_sym__val_number_decimal_token4] = ACTIONS(2268), - [aux_sym__val_number_token1] = ACTIONS(2268), - [aux_sym__val_number_token2] = ACTIONS(2268), - [aux_sym__val_number_token3] = ACTIONS(2268), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2268), + [517] = { + [sym_expr_parenthesized] = STATE(4418), + [sym__spread_parenthesized] = STATE(4803), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(7833), + [sym__val_range_with_end] = STATE(7538), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4902), + [sym_val_bool] = STATE(4543), + [sym__spread_variable] = STATE(4951), + [sym_val_variable] = STATE(4356), + [sym_val_number] = STATE(4902), + [sym__val_number_decimal] = STATE(4080), + [sym__val_number] = STATE(4970), + [sym_val_duration] = STATE(4902), + [sym_val_filesize] = STATE(4902), + [sym_val_binary] = STATE(4902), + [sym_val_string] = STATE(4902), + [sym__raw_str] = STATE(4591), + [sym__str_double_quotes] = STATE(4591), + [sym_val_interpolated] = STATE(4902), + [sym__inter_single_quotes] = STATE(4933), + [sym__inter_double_quotes] = STATE(4935), + [sym_val_list] = STATE(4902), + [sym__spread_list] = STATE(4803), + [sym_val_record] = STATE(4902), + [sym_val_table] = STATE(4902), + [sym_val_closure] = STATE(4902), + [sym__cmd_arg] = STATE(4953), + [sym_redirection] = STATE(4963), + [sym_short_flag] = STATE(4969), + [sym_long_flag] = STATE(4969), + [sym_unquoted] = STATE(4619), + [sym__unquoted_with_expr] = STATE(4989), + [sym__unquoted_anonymous_prefix] = STATE(7200), + [sym_comment] = STATE(517), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym__newline] = ACTIONS(2095), + [sym__space] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_err_GT_PIPE] = ACTIONS(2095), + [anon_sym_out_GT_PIPE] = ACTIONS(2095), + [anon_sym_e_GT_PIPE] = ACTIONS(2095), + [anon_sym_o_GT_PIPE] = ACTIONS(2095), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2095), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2095), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2095), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2264), + [anon_sym_DOT_DOT_LT] = ACTIONS(2264), + [anon_sym_null] = ACTIONS(2266), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(2272), + [aux_sym__val_number_decimal_token3] = ACTIONS(2274), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2278), + [aux_sym__val_number_token2] = ACTIONS(2278), + [aux_sym__val_number_token3] = ACTIONS(2278), + [aux_sym__val_number_token4] = ACTIONS(2280), + [aux_sym__val_number_token5] = ACTIONS(2280), + [aux_sym__val_number_token6] = ACTIONS(2280), + [anon_sym_0b] = ACTIONS(2282), + [anon_sym_0o] = ACTIONS(2284), + [anon_sym_0x] = ACTIONS(2284), + [sym_val_date] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym__str_single_quotes] = ACTIONS(2290), + [sym__str_back_ticks] = ACTIONS(2290), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2296), + [anon_sym_err_GT] = ACTIONS(2298), + [anon_sym_out_GT] = ACTIONS(2298), + [anon_sym_e_GT] = ACTIONS(2298), + [anon_sym_o_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT] = ACTIONS(2298), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), + [aux_sym_unquoted_token1] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [604] = { - [sym__expr_parenthesized_immediate] = STATE(7537), - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2175), - [aux_sym_cmd_identifier_token3] = ACTIONS(2175), - [aux_sym_cmd_identifier_token4] = ACTIONS(2175), - [aux_sym_cmd_identifier_token5] = ACTIONS(2175), - [aux_sym_cmd_identifier_token6] = ACTIONS(2175), - [aux_sym_cmd_identifier_token7] = ACTIONS(2175), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2175), - [aux_sym_cmd_identifier_token11] = ACTIONS(2175), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2175), - [aux_sym_cmd_identifier_token17] = ACTIONS(2175), - [aux_sym_cmd_identifier_token18] = ACTIONS(2175), - [aux_sym_cmd_identifier_token19] = ACTIONS(2175), - [aux_sym_cmd_identifier_token20] = ACTIONS(2175), - [aux_sym_cmd_identifier_token21] = ACTIONS(2175), - [aux_sym_cmd_identifier_token22] = ACTIONS(2175), - [aux_sym_cmd_identifier_token23] = ACTIONS(2175), - [aux_sym_cmd_identifier_token24] = ACTIONS(2175), - [aux_sym_cmd_identifier_token25] = ACTIONS(2175), - [aux_sym_cmd_identifier_token26] = ACTIONS(2175), - [aux_sym_cmd_identifier_token27] = ACTIONS(2175), - [aux_sym_cmd_identifier_token28] = ACTIONS(2175), - [aux_sym_cmd_identifier_token29] = ACTIONS(2175), - [aux_sym_cmd_identifier_token30] = ACTIONS(2175), - [aux_sym_cmd_identifier_token31] = ACTIONS(2175), - [aux_sym_cmd_identifier_token32] = ACTIONS(2175), - [aux_sym_cmd_identifier_token33] = ACTIONS(2175), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2175), - [aux_sym_cmd_identifier_token36] = ACTIONS(2175), - [aux_sym_cmd_identifier_token37] = ACTIONS(2175), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2175), - [aux_sym_cmd_identifier_token40] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2175), - [aux_sym__val_number_decimal_token4] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2175), + [sym_raw_string_begin] = ACTIONS(2302), }, - [605] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_alias] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_let_DASHenv] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [aux_sym_cmd_identifier_token1] = ACTIONS(2199), - [aux_sym_cmd_identifier_token2] = ACTIONS(2201), - [aux_sym_cmd_identifier_token3] = ACTIONS(2201), - [aux_sym_cmd_identifier_token4] = ACTIONS(2201), - [aux_sym_cmd_identifier_token5] = ACTIONS(2201), - [aux_sym_cmd_identifier_token6] = ACTIONS(2201), - [aux_sym_cmd_identifier_token7] = ACTIONS(2201), - [aux_sym_cmd_identifier_token8] = ACTIONS(2199), - [aux_sym_cmd_identifier_token9] = ACTIONS(2199), - [aux_sym_cmd_identifier_token10] = ACTIONS(2201), - [aux_sym_cmd_identifier_token11] = ACTIONS(2201), - [aux_sym_cmd_identifier_token12] = ACTIONS(2199), - [aux_sym_cmd_identifier_token13] = ACTIONS(2199), - [aux_sym_cmd_identifier_token14] = ACTIONS(2199), - [aux_sym_cmd_identifier_token15] = ACTIONS(2199), - [aux_sym_cmd_identifier_token16] = ACTIONS(2201), - [aux_sym_cmd_identifier_token17] = ACTIONS(2201), - [aux_sym_cmd_identifier_token18] = ACTIONS(2201), - [aux_sym_cmd_identifier_token19] = ACTIONS(2201), - [aux_sym_cmd_identifier_token20] = ACTIONS(2201), - [aux_sym_cmd_identifier_token21] = ACTIONS(2201), - [aux_sym_cmd_identifier_token22] = ACTIONS(2201), - [aux_sym_cmd_identifier_token23] = ACTIONS(2201), - [aux_sym_cmd_identifier_token24] = ACTIONS(2201), - [aux_sym_cmd_identifier_token25] = ACTIONS(2201), - [aux_sym_cmd_identifier_token26] = ACTIONS(2201), - [aux_sym_cmd_identifier_token27] = ACTIONS(2201), - [aux_sym_cmd_identifier_token28] = ACTIONS(2201), - [aux_sym_cmd_identifier_token29] = ACTIONS(2201), - [aux_sym_cmd_identifier_token30] = ACTIONS(2201), - [aux_sym_cmd_identifier_token31] = ACTIONS(2201), - [aux_sym_cmd_identifier_token32] = ACTIONS(2201), - [aux_sym_cmd_identifier_token33] = ACTIONS(2201), - [aux_sym_cmd_identifier_token34] = ACTIONS(2199), - [aux_sym_cmd_identifier_token35] = ACTIONS(2201), - [aux_sym_cmd_identifier_token36] = ACTIONS(2201), - [aux_sym_cmd_identifier_token37] = ACTIONS(2201), - [aux_sym_cmd_identifier_token38] = ACTIONS(2199), - [aux_sym_cmd_identifier_token39] = ACTIONS(2201), - [aux_sym_cmd_identifier_token40] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2199), - [anon_sym_export_DASHenv] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_error] = ACTIONS(2199), - [anon_sym_DASH2] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_in2] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_make] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_catch] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_source] = ACTIONS(2199), - [anon_sym_source_DASHenv] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_hide] = ACTIONS(2199), - [anon_sym_hide_DASHenv] = ACTIONS(2199), - [anon_sym_overlay] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2201), - [aux_sym__val_number_decimal_token1] = ACTIONS(2199), - [aux_sym__val_number_decimal_token2] = ACTIONS(2201), - [aux_sym__val_number_decimal_token3] = ACTIONS(2201), - [aux_sym__val_number_decimal_token4] = ACTIONS(2201), - [aux_sym__val_number_token1] = ACTIONS(2201), - [aux_sym__val_number_token2] = ACTIONS(2201), - [aux_sym__val_number_token3] = ACTIONS(2201), - [aux_sym__val_number_token4] = ACTIONS(2199), - [aux_sym__val_number_token5] = ACTIONS(2199), - [aux_sym__val_number_token6] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2201), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2201), + [518] = { + [sym_cell_path] = STATE(777), + [sym_path] = STATE(693), + [sym_comment] = STATE(518), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2020), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2020), }, - [606] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [aux_sym_cmd_identifier_token1] = ACTIONS(2207), - [aux_sym_cmd_identifier_token2] = ACTIONS(2209), - [aux_sym_cmd_identifier_token3] = ACTIONS(2209), - [aux_sym_cmd_identifier_token4] = ACTIONS(2209), - [aux_sym_cmd_identifier_token5] = ACTIONS(2209), - [aux_sym_cmd_identifier_token6] = ACTIONS(2209), - [aux_sym_cmd_identifier_token7] = ACTIONS(2209), - [aux_sym_cmd_identifier_token8] = ACTIONS(2207), - [aux_sym_cmd_identifier_token9] = ACTIONS(2207), - [aux_sym_cmd_identifier_token10] = ACTIONS(2209), - [aux_sym_cmd_identifier_token11] = ACTIONS(2209), - [aux_sym_cmd_identifier_token12] = ACTIONS(2207), - [aux_sym_cmd_identifier_token13] = ACTIONS(2207), - [aux_sym_cmd_identifier_token14] = ACTIONS(2207), - [aux_sym_cmd_identifier_token15] = ACTIONS(2207), - [aux_sym_cmd_identifier_token16] = ACTIONS(2209), - [aux_sym_cmd_identifier_token17] = ACTIONS(2209), - [aux_sym_cmd_identifier_token18] = ACTIONS(2209), - [aux_sym_cmd_identifier_token19] = ACTIONS(2209), - [aux_sym_cmd_identifier_token20] = ACTIONS(2209), - [aux_sym_cmd_identifier_token21] = ACTIONS(2209), - [aux_sym_cmd_identifier_token22] = ACTIONS(2209), - [aux_sym_cmd_identifier_token23] = ACTIONS(2209), - [aux_sym_cmd_identifier_token24] = ACTIONS(2209), - [aux_sym_cmd_identifier_token25] = ACTIONS(2209), - [aux_sym_cmd_identifier_token26] = ACTIONS(2209), - [aux_sym_cmd_identifier_token27] = ACTIONS(2209), - [aux_sym_cmd_identifier_token28] = ACTIONS(2209), - [aux_sym_cmd_identifier_token29] = ACTIONS(2209), - [aux_sym_cmd_identifier_token30] = ACTIONS(2209), - [aux_sym_cmd_identifier_token31] = ACTIONS(2209), - [aux_sym_cmd_identifier_token32] = ACTIONS(2209), - [aux_sym_cmd_identifier_token33] = ACTIONS(2209), - [aux_sym_cmd_identifier_token34] = ACTIONS(2207), - [aux_sym_cmd_identifier_token35] = ACTIONS(2209), - [aux_sym_cmd_identifier_token36] = ACTIONS(2209), - [aux_sym_cmd_identifier_token37] = ACTIONS(2209), - [aux_sym_cmd_identifier_token38] = ACTIONS(2207), - [aux_sym_cmd_identifier_token39] = ACTIONS(2209), - [aux_sym_cmd_identifier_token40] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2209), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_DASH2] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_in2] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_make] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_catch] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), - [aux_sym__val_number_decimal_token1] = ACTIONS(2207), - [aux_sym__val_number_decimal_token2] = ACTIONS(2209), - [aux_sym__val_number_decimal_token3] = ACTIONS(2209), - [aux_sym__val_number_decimal_token4] = ACTIONS(2209), - [aux_sym__val_number_token1] = ACTIONS(2209), - [aux_sym__val_number_token2] = ACTIONS(2209), - [aux_sym__val_number_token3] = ACTIONS(2209), - [aux_sym__val_number_token4] = ACTIONS(2207), - [aux_sym__val_number_token5] = ACTIONS(2207), - [aux_sym__val_number_token6] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2209), - [sym__str_single_quotes] = ACTIONS(2209), - [sym__str_back_ticks] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2209), + [519] = { + [sym_cell_path] = STATE(778), + [sym_path] = STATE(693), + [sym_comment] = STATE(519), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_alias] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_let_DASHenv] = ACTIONS(2022), + [anon_sym_mut] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [aux_sym_cmd_identifier_token1] = ACTIONS(2022), + [aux_sym_cmd_identifier_token2] = ACTIONS(2024), + [aux_sym_cmd_identifier_token3] = ACTIONS(2024), + [aux_sym_cmd_identifier_token4] = ACTIONS(2024), + [aux_sym_cmd_identifier_token5] = ACTIONS(2024), + [aux_sym_cmd_identifier_token6] = ACTIONS(2024), + [aux_sym_cmd_identifier_token7] = ACTIONS(2024), + [aux_sym_cmd_identifier_token8] = ACTIONS(2022), + [aux_sym_cmd_identifier_token9] = ACTIONS(2022), + [aux_sym_cmd_identifier_token10] = ACTIONS(2024), + [aux_sym_cmd_identifier_token11] = ACTIONS(2024), + [aux_sym_cmd_identifier_token12] = ACTIONS(2022), + [aux_sym_cmd_identifier_token13] = ACTIONS(2022), + [aux_sym_cmd_identifier_token14] = ACTIONS(2022), + [aux_sym_cmd_identifier_token15] = ACTIONS(2022), + [aux_sym_cmd_identifier_token16] = ACTIONS(2024), + [aux_sym_cmd_identifier_token17] = ACTIONS(2024), + [aux_sym_cmd_identifier_token18] = ACTIONS(2024), + [aux_sym_cmd_identifier_token19] = ACTIONS(2024), + [aux_sym_cmd_identifier_token20] = ACTIONS(2024), + [aux_sym_cmd_identifier_token21] = ACTIONS(2024), + [aux_sym_cmd_identifier_token22] = ACTIONS(2024), + [aux_sym_cmd_identifier_token23] = ACTIONS(2024), + [aux_sym_cmd_identifier_token24] = ACTIONS(2024), + [aux_sym_cmd_identifier_token25] = ACTIONS(2024), + [aux_sym_cmd_identifier_token26] = ACTIONS(2024), + [aux_sym_cmd_identifier_token27] = ACTIONS(2024), + [aux_sym_cmd_identifier_token28] = ACTIONS(2024), + [aux_sym_cmd_identifier_token29] = ACTIONS(2024), + [aux_sym_cmd_identifier_token30] = ACTIONS(2024), + [aux_sym_cmd_identifier_token31] = ACTIONS(2024), + [aux_sym_cmd_identifier_token32] = ACTIONS(2024), + [aux_sym_cmd_identifier_token33] = ACTIONS(2024), + [aux_sym_cmd_identifier_token34] = ACTIONS(2022), + [aux_sym_cmd_identifier_token35] = ACTIONS(2024), + [aux_sym_cmd_identifier_token36] = ACTIONS(2024), + [aux_sym_cmd_identifier_token37] = ACTIONS(2024), + [aux_sym_cmd_identifier_token38] = ACTIONS(2022), + [aux_sym_cmd_identifier_token39] = ACTIONS(2024), + [aux_sym_cmd_identifier_token40] = ACTIONS(2024), + [anon_sym_def] = ACTIONS(2022), + [anon_sym_export_DASHenv] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_error] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_in2] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_make] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_source] = ACTIONS(2022), + [anon_sym_source_DASHenv] = ACTIONS(2022), + [anon_sym_register] = ACTIONS(2022), + [anon_sym_hide] = ACTIONS(2022), + [anon_sym_hide_DASHenv] = ACTIONS(2022), + [anon_sym_overlay] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2022), + [aux_sym__val_number_token5] = ACTIONS(2022), + [aux_sym__val_number_token6] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2024), }, - [607] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [aux_sym_cmd_identifier_token1] = ACTIONS(2211), - [aux_sym_cmd_identifier_token2] = ACTIONS(2213), - [aux_sym_cmd_identifier_token3] = ACTIONS(2213), - [aux_sym_cmd_identifier_token4] = ACTIONS(2213), - [aux_sym_cmd_identifier_token5] = ACTIONS(2213), - [aux_sym_cmd_identifier_token6] = ACTIONS(2213), - [aux_sym_cmd_identifier_token7] = ACTIONS(2213), - [aux_sym_cmd_identifier_token8] = ACTIONS(2211), - [aux_sym_cmd_identifier_token9] = ACTIONS(2211), - [aux_sym_cmd_identifier_token10] = ACTIONS(2213), - [aux_sym_cmd_identifier_token11] = ACTIONS(2213), - [aux_sym_cmd_identifier_token12] = ACTIONS(2211), - [aux_sym_cmd_identifier_token13] = ACTIONS(2211), - [aux_sym_cmd_identifier_token14] = ACTIONS(2211), - [aux_sym_cmd_identifier_token15] = ACTIONS(2211), - [aux_sym_cmd_identifier_token16] = ACTIONS(2213), - [aux_sym_cmd_identifier_token17] = ACTIONS(2213), - [aux_sym_cmd_identifier_token18] = ACTIONS(2213), - [aux_sym_cmd_identifier_token19] = ACTIONS(2213), - [aux_sym_cmd_identifier_token20] = ACTIONS(2213), - [aux_sym_cmd_identifier_token21] = ACTIONS(2213), - [aux_sym_cmd_identifier_token22] = ACTIONS(2213), - [aux_sym_cmd_identifier_token23] = ACTIONS(2213), - [aux_sym_cmd_identifier_token24] = ACTIONS(2213), - [aux_sym_cmd_identifier_token25] = ACTIONS(2213), - [aux_sym_cmd_identifier_token26] = ACTIONS(2213), - [aux_sym_cmd_identifier_token27] = ACTIONS(2213), - [aux_sym_cmd_identifier_token28] = ACTIONS(2213), - [aux_sym_cmd_identifier_token29] = ACTIONS(2213), - [aux_sym_cmd_identifier_token30] = ACTIONS(2213), - [aux_sym_cmd_identifier_token31] = ACTIONS(2213), - [aux_sym_cmd_identifier_token32] = ACTIONS(2213), - [aux_sym_cmd_identifier_token33] = ACTIONS(2213), - [aux_sym_cmd_identifier_token34] = ACTIONS(2211), - [aux_sym_cmd_identifier_token35] = ACTIONS(2213), - [aux_sym_cmd_identifier_token36] = ACTIONS(2213), - [aux_sym_cmd_identifier_token37] = ACTIONS(2213), - [aux_sym_cmd_identifier_token38] = ACTIONS(2211), - [aux_sym_cmd_identifier_token39] = ACTIONS(2213), - [aux_sym_cmd_identifier_token40] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_DASH2] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_in2] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_make] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_else] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2213), - [aux_sym__val_number_decimal_token1] = ACTIONS(2211), - [aux_sym__val_number_decimal_token2] = ACTIONS(2213), - [aux_sym__val_number_decimal_token3] = ACTIONS(2213), - [aux_sym__val_number_decimal_token4] = ACTIONS(2213), - [aux_sym__val_number_token1] = ACTIONS(2213), - [aux_sym__val_number_token2] = ACTIONS(2213), - [aux_sym__val_number_token3] = ACTIONS(2213), - [aux_sym__val_number_token4] = ACTIONS(2211), - [aux_sym__val_number_token5] = ACTIONS(2211), - [aux_sym__val_number_token6] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym__str_single_quotes] = ACTIONS(2213), - [sym__str_back_ticks] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2213), + [520] = { + [sym_cell_path] = STATE(741), + [sym_path] = STATE(693), + [sym_comment] = STATE(520), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2169), + [aux_sym_cmd_identifier_token3] = ACTIONS(2169), + [aux_sym_cmd_identifier_token4] = ACTIONS(2169), + [aux_sym_cmd_identifier_token5] = ACTIONS(2169), + [aux_sym_cmd_identifier_token6] = ACTIONS(2169), + [aux_sym_cmd_identifier_token7] = ACTIONS(2169), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2169), + [aux_sym_cmd_identifier_token11] = ACTIONS(2169), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2169), + [aux_sym_cmd_identifier_token17] = ACTIONS(2169), + [aux_sym_cmd_identifier_token18] = ACTIONS(2169), + [aux_sym_cmd_identifier_token19] = ACTIONS(2169), + [aux_sym_cmd_identifier_token20] = ACTIONS(2169), + [aux_sym_cmd_identifier_token21] = ACTIONS(2169), + [aux_sym_cmd_identifier_token22] = ACTIONS(2169), + [aux_sym_cmd_identifier_token23] = ACTIONS(2169), + [aux_sym_cmd_identifier_token24] = ACTIONS(2169), + [aux_sym_cmd_identifier_token25] = ACTIONS(2169), + [aux_sym_cmd_identifier_token26] = ACTIONS(2169), + [aux_sym_cmd_identifier_token27] = ACTIONS(2169), + [aux_sym_cmd_identifier_token28] = ACTIONS(2169), + [aux_sym_cmd_identifier_token29] = ACTIONS(2169), + [aux_sym_cmd_identifier_token30] = ACTIONS(2169), + [aux_sym_cmd_identifier_token31] = ACTIONS(2169), + [aux_sym_cmd_identifier_token32] = ACTIONS(2169), + [aux_sym_cmd_identifier_token33] = ACTIONS(2169), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2169), + [aux_sym_cmd_identifier_token36] = ACTIONS(2169), + [aux_sym_cmd_identifier_token37] = ACTIONS(2169), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2169), + [aux_sym_cmd_identifier_token40] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2169), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2169), + [aux_sym__val_number_decimal_token3] = ACTIONS(2169), + [aux_sym__val_number_decimal_token4] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2169), + [aux_sym__val_number_token2] = ACTIONS(2169), + [aux_sym__val_number_token3] = ACTIONS(2169), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2169), + [sym__str_single_quotes] = ACTIONS(2169), + [sym__str_back_ticks] = ACTIONS(2169), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2169), }, - [608] = { - [sym__expr_parenthesized_immediate] = STATE(8152), - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [aux_sym_cmd_identifier_token1] = ACTIONS(2215), - [aux_sym_cmd_identifier_token2] = ACTIONS(2217), - [aux_sym_cmd_identifier_token3] = ACTIONS(2217), - [aux_sym_cmd_identifier_token4] = ACTIONS(2217), - [aux_sym_cmd_identifier_token5] = ACTIONS(2217), - [aux_sym_cmd_identifier_token6] = ACTIONS(2217), - [aux_sym_cmd_identifier_token7] = ACTIONS(2217), - [aux_sym_cmd_identifier_token8] = ACTIONS(2215), - [aux_sym_cmd_identifier_token9] = ACTIONS(2215), - [aux_sym_cmd_identifier_token10] = ACTIONS(2217), - [aux_sym_cmd_identifier_token11] = ACTIONS(2217), - [aux_sym_cmd_identifier_token12] = ACTIONS(2215), - [aux_sym_cmd_identifier_token13] = ACTIONS(2215), - [aux_sym_cmd_identifier_token14] = ACTIONS(2215), - [aux_sym_cmd_identifier_token15] = ACTIONS(2215), - [aux_sym_cmd_identifier_token16] = ACTIONS(2217), - [aux_sym_cmd_identifier_token17] = ACTIONS(2217), - [aux_sym_cmd_identifier_token18] = ACTIONS(2217), - [aux_sym_cmd_identifier_token19] = ACTIONS(2217), - [aux_sym_cmd_identifier_token20] = ACTIONS(2217), - [aux_sym_cmd_identifier_token21] = ACTIONS(2217), - [aux_sym_cmd_identifier_token22] = ACTIONS(2217), - [aux_sym_cmd_identifier_token23] = ACTIONS(2217), - [aux_sym_cmd_identifier_token24] = ACTIONS(2217), - [aux_sym_cmd_identifier_token25] = ACTIONS(2217), - [aux_sym_cmd_identifier_token26] = ACTIONS(2217), - [aux_sym_cmd_identifier_token27] = ACTIONS(2217), - [aux_sym_cmd_identifier_token28] = ACTIONS(2217), - [aux_sym_cmd_identifier_token29] = ACTIONS(2217), - [aux_sym_cmd_identifier_token30] = ACTIONS(2217), - [aux_sym_cmd_identifier_token31] = ACTIONS(2217), - [aux_sym_cmd_identifier_token32] = ACTIONS(2217), - [aux_sym_cmd_identifier_token33] = ACTIONS(2217), - [aux_sym_cmd_identifier_token34] = ACTIONS(2215), - [aux_sym_cmd_identifier_token35] = ACTIONS(2217), - [aux_sym_cmd_identifier_token36] = ACTIONS(2217), - [aux_sym_cmd_identifier_token37] = ACTIONS(2217), - [aux_sym_cmd_identifier_token38] = ACTIONS(2215), - [aux_sym_cmd_identifier_token39] = ACTIONS(2217), - [aux_sym_cmd_identifier_token40] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2217), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_DASH2] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_in2] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_make] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_catch] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), - [aux_sym__val_number_decimal_token1] = ACTIONS(2215), - [aux_sym__val_number_decimal_token2] = ACTIONS(2217), - [aux_sym__val_number_decimal_token3] = ACTIONS(2217), - [aux_sym__val_number_decimal_token4] = ACTIONS(2217), - [aux_sym__val_number_token1] = ACTIONS(2217), - [aux_sym__val_number_token2] = ACTIONS(2217), - [aux_sym__val_number_token3] = ACTIONS(2217), - [aux_sym__val_number_token4] = ACTIONS(2215), - [aux_sym__val_number_token5] = ACTIONS(2215), - [aux_sym__val_number_token6] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym__str_single_quotes] = ACTIONS(2217), - [sym__str_back_ticks] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2217), + [521] = { + [sym_cell_path] = STATE(779), + [sym_path] = STATE(693), + [sym_comment] = STATE(521), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2028), }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [522] = { + [sym_cell_path] = STATE(780), + [sym_path] = STATE(693), + [sym_comment] = STATE(522), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2032), + [aux_sym_cmd_identifier_token3] = ACTIONS(2032), + [aux_sym_cmd_identifier_token4] = ACTIONS(2032), + [aux_sym_cmd_identifier_token5] = ACTIONS(2032), + [aux_sym_cmd_identifier_token6] = ACTIONS(2032), + [aux_sym_cmd_identifier_token7] = ACTIONS(2032), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2032), + [aux_sym_cmd_identifier_token11] = ACTIONS(2032), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2032), + [aux_sym_cmd_identifier_token17] = ACTIONS(2032), + [aux_sym_cmd_identifier_token18] = ACTIONS(2032), + [aux_sym_cmd_identifier_token19] = ACTIONS(2032), + [aux_sym_cmd_identifier_token20] = ACTIONS(2032), + [aux_sym_cmd_identifier_token21] = ACTIONS(2032), + [aux_sym_cmd_identifier_token22] = ACTIONS(2032), + [aux_sym_cmd_identifier_token23] = ACTIONS(2032), + [aux_sym_cmd_identifier_token24] = ACTIONS(2032), + [aux_sym_cmd_identifier_token25] = ACTIONS(2032), + [aux_sym_cmd_identifier_token26] = ACTIONS(2032), + [aux_sym_cmd_identifier_token27] = ACTIONS(2032), + [aux_sym_cmd_identifier_token28] = ACTIONS(2032), + [aux_sym_cmd_identifier_token29] = ACTIONS(2032), + [aux_sym_cmd_identifier_token30] = ACTIONS(2032), + [aux_sym_cmd_identifier_token31] = ACTIONS(2032), + [aux_sym_cmd_identifier_token32] = ACTIONS(2032), + [aux_sym_cmd_identifier_token33] = ACTIONS(2032), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2032), + [aux_sym_cmd_identifier_token36] = ACTIONS(2032), + [aux_sym_cmd_identifier_token37] = ACTIONS(2032), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2032), + [aux_sym_cmd_identifier_token40] = ACTIONS(2032), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2032), + [aux_sym__val_number_decimal_token3] = ACTIONS(2032), + [aux_sym__val_number_decimal_token4] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2032), }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [523] = { + [sym_cell_path] = STATE(762), + [sym_path] = STATE(693), + [sym_comment] = STATE(523), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1988), + [aux_sym_cmd_identifier_token4] = ACTIONS(1988), + [aux_sym_cmd_identifier_token5] = ACTIONS(1988), + [aux_sym_cmd_identifier_token6] = ACTIONS(1988), + [aux_sym_cmd_identifier_token7] = ACTIONS(1988), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1988), + [aux_sym_cmd_identifier_token11] = ACTIONS(1988), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1988), + [aux_sym_cmd_identifier_token17] = ACTIONS(1988), + [aux_sym_cmd_identifier_token18] = ACTIONS(1988), + [aux_sym_cmd_identifier_token19] = ACTIONS(1988), + [aux_sym_cmd_identifier_token20] = ACTIONS(1988), + [aux_sym_cmd_identifier_token21] = ACTIONS(1988), + [aux_sym_cmd_identifier_token22] = ACTIONS(1988), + [aux_sym_cmd_identifier_token23] = ACTIONS(1988), + [aux_sym_cmd_identifier_token24] = ACTIONS(1988), + [aux_sym_cmd_identifier_token25] = ACTIONS(1988), + [aux_sym_cmd_identifier_token26] = ACTIONS(1988), + [aux_sym_cmd_identifier_token27] = ACTIONS(1988), + [aux_sym_cmd_identifier_token28] = ACTIONS(1988), + [aux_sym_cmd_identifier_token29] = ACTIONS(1988), + [aux_sym_cmd_identifier_token30] = ACTIONS(1988), + [aux_sym_cmd_identifier_token31] = ACTIONS(1988), + [aux_sym_cmd_identifier_token32] = ACTIONS(1988), + [aux_sym_cmd_identifier_token33] = ACTIONS(1988), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1988), + [aux_sym_cmd_identifier_token36] = ACTIONS(1988), + [aux_sym_cmd_identifier_token37] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1988), + [aux_sym_cmd_identifier_token40] = ACTIONS(1988), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1988), }, - [611] = { - [sym_comment] = STATE(611), + [524] = { + [sym_cell_path] = STATE(781), + [sym_path] = STATE(693), + [sym_comment] = STATE(524), + [aux_sym_cell_path_repeat1] = STATE(553), [anon_sym_export] = ACTIONS(2034), [anon_sym_alias] = ACTIONS(2034), [anon_sym_let] = ACTIONS(2034), @@ -141323,52 +270294,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2034), [anon_sym_const] = ACTIONS(2034), [aux_sym_cmd_identifier_token1] = ACTIONS(2034), - [aux_sym_cmd_identifier_token2] = ACTIONS(2034), - [aux_sym_cmd_identifier_token3] = ACTIONS(2034), - [aux_sym_cmd_identifier_token4] = ACTIONS(2034), - [aux_sym_cmd_identifier_token5] = ACTIONS(2034), - [aux_sym_cmd_identifier_token6] = ACTIONS(2034), - [aux_sym_cmd_identifier_token7] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), [aux_sym_cmd_identifier_token8] = ACTIONS(2034), [aux_sym_cmd_identifier_token9] = ACTIONS(2034), - [aux_sym_cmd_identifier_token10] = ACTIONS(2034), - [aux_sym_cmd_identifier_token11] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), [aux_sym_cmd_identifier_token12] = ACTIONS(2034), [aux_sym_cmd_identifier_token13] = ACTIONS(2034), [aux_sym_cmd_identifier_token14] = ACTIONS(2034), [aux_sym_cmd_identifier_token15] = ACTIONS(2034), - [aux_sym_cmd_identifier_token16] = ACTIONS(2034), - [aux_sym_cmd_identifier_token17] = ACTIONS(2034), - [aux_sym_cmd_identifier_token18] = ACTIONS(2034), - [aux_sym_cmd_identifier_token19] = ACTIONS(2034), - [aux_sym_cmd_identifier_token20] = ACTIONS(2034), - [aux_sym_cmd_identifier_token21] = ACTIONS(2034), - [aux_sym_cmd_identifier_token22] = ACTIONS(2034), - [aux_sym_cmd_identifier_token23] = ACTIONS(2034), - [aux_sym_cmd_identifier_token24] = ACTIONS(2034), - [aux_sym_cmd_identifier_token25] = ACTIONS(2034), - [aux_sym_cmd_identifier_token26] = ACTIONS(2034), - [aux_sym_cmd_identifier_token27] = ACTIONS(2034), - [aux_sym_cmd_identifier_token28] = ACTIONS(2034), - [aux_sym_cmd_identifier_token29] = ACTIONS(2034), - [aux_sym_cmd_identifier_token30] = ACTIONS(2034), - [aux_sym_cmd_identifier_token31] = ACTIONS(2034), - [aux_sym_cmd_identifier_token32] = ACTIONS(2034), - [aux_sym_cmd_identifier_token33] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), [aux_sym_cmd_identifier_token34] = ACTIONS(2034), - [aux_sym_cmd_identifier_token35] = ACTIONS(2034), - [aux_sym_cmd_identifier_token36] = ACTIONS(2034), - [aux_sym_cmd_identifier_token37] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), [aux_sym_cmd_identifier_token38] = ACTIONS(2034), - [aux_sym_cmd_identifier_token39] = ACTIONS(2034), - [aux_sym_cmd_identifier_token40] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), [anon_sym_def] = ACTIONS(2034), [anon_sym_export_DASHenv] = ACTIONS(2034), [anon_sym_extern] = ACTIONS(2034), [anon_sym_module] = ACTIONS(2034), [anon_sym_use] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), [anon_sym_error] = ACTIONS(2034), [anon_sym_DASH2] = ACTIONS(2034), [anon_sym_break] = ACTIONS(2034), @@ -141382,7 +270353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2034), [anon_sym_else] = ACTIONS(2034), [anon_sym_match] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2036), [anon_sym_try] = ACTIONS(2034), [anon_sym_catch] = ACTIONS(2034), [anon_sym_return] = ACTIONS(2034), @@ -141394,1628 +270365,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2034), [anon_sym_as] = ACTIONS(2034), [anon_sym_PLUS2] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2034), - [aux_sym__val_number_decimal_token3] = ACTIONS(2034), - [aux_sym__val_number_decimal_token4] = ACTIONS(2034), - [aux_sym__val_number_token1] = ACTIONS(2034), - [aux_sym__val_number_token2] = ACTIONS(2034), - [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), [aux_sym__val_number_token4] = ACTIONS(2034), [aux_sym__val_number_token5] = ACTIONS(2034), [aux_sym__val_number_token6] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2034), - [sym__str_single_quotes] = ACTIONS(2034), - [sym__str_back_ticks] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), - [sym__entry_separator] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2036), }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2343), - [anon_sym_alias] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_DASHenv] = ACTIONS(2343), - [anon_sym_mut] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [aux_sym_cmd_identifier_token1] = ACTIONS(2343), - [aux_sym_cmd_identifier_token2] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2343), - [aux_sym_cmd_identifier_token4] = ACTIONS(2343), - [aux_sym_cmd_identifier_token5] = ACTIONS(2343), - [aux_sym_cmd_identifier_token6] = ACTIONS(2343), - [aux_sym_cmd_identifier_token7] = ACTIONS(2343), - [aux_sym_cmd_identifier_token8] = ACTIONS(2343), - [aux_sym_cmd_identifier_token9] = ACTIONS(2343), - [aux_sym_cmd_identifier_token10] = ACTIONS(2343), - [aux_sym_cmd_identifier_token11] = ACTIONS(2343), - [aux_sym_cmd_identifier_token12] = ACTIONS(2343), - [aux_sym_cmd_identifier_token13] = ACTIONS(2343), - [aux_sym_cmd_identifier_token14] = ACTIONS(2343), - [aux_sym_cmd_identifier_token15] = ACTIONS(2343), - [aux_sym_cmd_identifier_token16] = ACTIONS(2343), - [aux_sym_cmd_identifier_token17] = ACTIONS(2343), - [aux_sym_cmd_identifier_token18] = ACTIONS(2343), - [aux_sym_cmd_identifier_token19] = ACTIONS(2343), - [aux_sym_cmd_identifier_token20] = ACTIONS(2343), - [aux_sym_cmd_identifier_token21] = ACTIONS(2343), - [aux_sym_cmd_identifier_token22] = ACTIONS(2343), - [aux_sym_cmd_identifier_token23] = ACTIONS(2343), - [aux_sym_cmd_identifier_token24] = ACTIONS(2343), - [aux_sym_cmd_identifier_token25] = ACTIONS(2343), - [aux_sym_cmd_identifier_token26] = ACTIONS(2343), - [aux_sym_cmd_identifier_token27] = ACTIONS(2343), - [aux_sym_cmd_identifier_token28] = ACTIONS(2343), - [aux_sym_cmd_identifier_token29] = ACTIONS(2343), - [aux_sym_cmd_identifier_token30] = ACTIONS(2343), - [aux_sym_cmd_identifier_token31] = ACTIONS(2343), - [aux_sym_cmd_identifier_token32] = ACTIONS(2343), - [aux_sym_cmd_identifier_token33] = ACTIONS(2343), - [aux_sym_cmd_identifier_token34] = ACTIONS(2343), - [aux_sym_cmd_identifier_token35] = ACTIONS(2343), - [aux_sym_cmd_identifier_token36] = ACTIONS(2343), - [aux_sym_cmd_identifier_token37] = ACTIONS(2343), - [aux_sym_cmd_identifier_token38] = ACTIONS(2343), - [aux_sym_cmd_identifier_token39] = ACTIONS(2343), - [aux_sym_cmd_identifier_token40] = ACTIONS(2343), - [anon_sym_def] = ACTIONS(2343), - [anon_sym_export_DASHenv] = ACTIONS(2343), - [anon_sym_extern] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_error] = ACTIONS(2343), - [anon_sym_DASH2] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_in2] = ACTIONS(2343), - [anon_sym_loop] = ACTIONS(2343), - [anon_sym_make] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_catch] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_source] = ACTIONS(2343), - [anon_sym_source_DASHenv] = ACTIONS(2343), - [anon_sym_register] = ACTIONS(2343), - [anon_sym_hide] = ACTIONS(2343), - [anon_sym_hide_DASHenv] = ACTIONS(2343), - [anon_sym_overlay] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_PLUS2] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2343), - [aux_sym__val_number_decimal_token1] = ACTIONS(2343), - [aux_sym__val_number_decimal_token2] = ACTIONS(2343), - [aux_sym__val_number_decimal_token3] = ACTIONS(2343), - [aux_sym__val_number_decimal_token4] = ACTIONS(2343), - [aux_sym__val_number_token1] = ACTIONS(2343), - [aux_sym__val_number_token2] = ACTIONS(2343), - [aux_sym__val_number_token3] = ACTIONS(2343), - [aux_sym__val_number_token4] = ACTIONS(2343), - [aux_sym__val_number_token5] = ACTIONS(2343), - [aux_sym__val_number_token6] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2343), - [sym__str_single_quotes] = ACTIONS(2343), - [sym__str_back_ticks] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2343), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2345), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_alias] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_let_DASHenv] = ACTIONS(2347), - [anon_sym_mut] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [aux_sym_cmd_identifier_token1] = ACTIONS(2347), - [aux_sym_cmd_identifier_token2] = ACTIONS(2347), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [aux_sym_cmd_identifier_token6] = ACTIONS(2347), - [aux_sym_cmd_identifier_token7] = ACTIONS(2347), - [aux_sym_cmd_identifier_token8] = ACTIONS(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2347), - [aux_sym_cmd_identifier_token11] = ACTIONS(2347), - [aux_sym_cmd_identifier_token12] = ACTIONS(2347), - [aux_sym_cmd_identifier_token13] = ACTIONS(2347), - [aux_sym_cmd_identifier_token14] = ACTIONS(2347), - [aux_sym_cmd_identifier_token15] = ACTIONS(2347), - [aux_sym_cmd_identifier_token16] = ACTIONS(2347), - [aux_sym_cmd_identifier_token17] = ACTIONS(2347), - [aux_sym_cmd_identifier_token18] = ACTIONS(2347), - [aux_sym_cmd_identifier_token19] = ACTIONS(2347), - [aux_sym_cmd_identifier_token20] = ACTIONS(2347), - [aux_sym_cmd_identifier_token21] = ACTIONS(2347), - [aux_sym_cmd_identifier_token22] = ACTIONS(2347), - [aux_sym_cmd_identifier_token23] = ACTIONS(2347), - [aux_sym_cmd_identifier_token24] = ACTIONS(2347), - [aux_sym_cmd_identifier_token25] = ACTIONS(2347), - [aux_sym_cmd_identifier_token26] = ACTIONS(2347), - [aux_sym_cmd_identifier_token27] = ACTIONS(2347), - [aux_sym_cmd_identifier_token28] = ACTIONS(2347), - [aux_sym_cmd_identifier_token29] = ACTIONS(2347), - [aux_sym_cmd_identifier_token30] = ACTIONS(2347), - [aux_sym_cmd_identifier_token31] = ACTIONS(2347), - [aux_sym_cmd_identifier_token32] = ACTIONS(2347), - [aux_sym_cmd_identifier_token33] = ACTIONS(2347), - [aux_sym_cmd_identifier_token34] = ACTIONS(2347), - [aux_sym_cmd_identifier_token35] = ACTIONS(2347), - [aux_sym_cmd_identifier_token36] = ACTIONS(2347), - [aux_sym_cmd_identifier_token37] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_export_DASHenv] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_error] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_in2] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_make] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_catch] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_source] = ACTIONS(2347), - [anon_sym_source_DASHenv] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_hide_DASHenv] = ACTIONS(2347), - [anon_sym_overlay] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_decimal_token4] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [aux_sym__val_number_token4] = ACTIONS(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), - [sym__entry_separator] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2349), - }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_alias] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_let_DASHenv] = ACTIONS(2351), - [anon_sym_mut] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [aux_sym_cmd_identifier_token1] = ACTIONS(2351), - [aux_sym_cmd_identifier_token2] = ACTIONS(2351), - [aux_sym_cmd_identifier_token3] = ACTIONS(2351), - [aux_sym_cmd_identifier_token4] = ACTIONS(2351), - [aux_sym_cmd_identifier_token5] = ACTIONS(2351), - [aux_sym_cmd_identifier_token6] = ACTIONS(2351), - [aux_sym_cmd_identifier_token7] = ACTIONS(2351), - [aux_sym_cmd_identifier_token8] = ACTIONS(2351), - [aux_sym_cmd_identifier_token9] = ACTIONS(2351), - [aux_sym_cmd_identifier_token10] = ACTIONS(2351), - [aux_sym_cmd_identifier_token11] = ACTIONS(2351), - [aux_sym_cmd_identifier_token12] = ACTIONS(2351), - [aux_sym_cmd_identifier_token13] = ACTIONS(2351), - [aux_sym_cmd_identifier_token14] = ACTIONS(2351), - [aux_sym_cmd_identifier_token15] = ACTIONS(2351), - [aux_sym_cmd_identifier_token16] = ACTIONS(2351), - [aux_sym_cmd_identifier_token17] = ACTIONS(2351), - [aux_sym_cmd_identifier_token18] = ACTIONS(2351), - [aux_sym_cmd_identifier_token19] = ACTIONS(2351), - [aux_sym_cmd_identifier_token20] = ACTIONS(2351), - [aux_sym_cmd_identifier_token21] = ACTIONS(2351), - [aux_sym_cmd_identifier_token22] = ACTIONS(2351), - [aux_sym_cmd_identifier_token23] = ACTIONS(2351), - [aux_sym_cmd_identifier_token24] = ACTIONS(2351), - [aux_sym_cmd_identifier_token25] = ACTIONS(2351), - [aux_sym_cmd_identifier_token26] = ACTIONS(2351), - [aux_sym_cmd_identifier_token27] = ACTIONS(2351), - [aux_sym_cmd_identifier_token28] = ACTIONS(2351), - [aux_sym_cmd_identifier_token29] = ACTIONS(2351), - [aux_sym_cmd_identifier_token30] = ACTIONS(2351), - [aux_sym_cmd_identifier_token31] = ACTIONS(2351), - [aux_sym_cmd_identifier_token32] = ACTIONS(2351), - [aux_sym_cmd_identifier_token33] = ACTIONS(2351), - [aux_sym_cmd_identifier_token34] = ACTIONS(2351), - [aux_sym_cmd_identifier_token35] = ACTIONS(2351), - [aux_sym_cmd_identifier_token36] = ACTIONS(2351), - [aux_sym_cmd_identifier_token37] = ACTIONS(2351), - [aux_sym_cmd_identifier_token38] = ACTIONS(2351), - [aux_sym_cmd_identifier_token39] = ACTIONS(2351), - [aux_sym_cmd_identifier_token40] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_export_DASHenv] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_error] = ACTIONS(2351), - [anon_sym_DASH2] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_in2] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_make] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_catch] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_source] = ACTIONS(2351), - [anon_sym_source_DASHenv] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_hide_DASHenv] = ACTIONS(2351), - [anon_sym_overlay] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_PLUS2] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2351), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2351), - [aux_sym__val_number_decimal_token3] = ACTIONS(2351), - [aux_sym__val_number_decimal_token4] = ACTIONS(2351), - [aux_sym__val_number_token1] = ACTIONS(2351), - [aux_sym__val_number_token2] = ACTIONS(2351), - [aux_sym__val_number_token3] = ACTIONS(2351), - [aux_sym__val_number_token4] = ACTIONS(2351), - [aux_sym__val_number_token5] = ACTIONS(2351), - [aux_sym__val_number_token6] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2351), - [sym__entry_separator] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2353), - }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_alias] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_let_DASHenv] = ACTIONS(2157), - [anon_sym_mut] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [aux_sym_cmd_identifier_token1] = ACTIONS(2157), - [aux_sym_cmd_identifier_token2] = ACTIONS(2157), - [aux_sym_cmd_identifier_token3] = ACTIONS(2157), - [aux_sym_cmd_identifier_token4] = ACTIONS(2157), - [aux_sym_cmd_identifier_token5] = ACTIONS(2157), - [aux_sym_cmd_identifier_token6] = ACTIONS(2157), - [aux_sym_cmd_identifier_token7] = ACTIONS(2157), - [aux_sym_cmd_identifier_token8] = ACTIONS(2157), - [aux_sym_cmd_identifier_token9] = ACTIONS(2157), - [aux_sym_cmd_identifier_token10] = ACTIONS(2157), - [aux_sym_cmd_identifier_token11] = ACTIONS(2157), - [aux_sym_cmd_identifier_token12] = ACTIONS(2157), - [aux_sym_cmd_identifier_token13] = ACTIONS(2157), - [aux_sym_cmd_identifier_token14] = ACTIONS(2157), - [aux_sym_cmd_identifier_token15] = ACTIONS(2157), - [aux_sym_cmd_identifier_token16] = ACTIONS(2157), - [aux_sym_cmd_identifier_token17] = ACTIONS(2157), - [aux_sym_cmd_identifier_token18] = ACTIONS(2157), - [aux_sym_cmd_identifier_token19] = ACTIONS(2157), - [aux_sym_cmd_identifier_token20] = ACTIONS(2157), - [aux_sym_cmd_identifier_token21] = ACTIONS(2157), - [aux_sym_cmd_identifier_token22] = ACTIONS(2157), - [aux_sym_cmd_identifier_token23] = ACTIONS(2157), - [aux_sym_cmd_identifier_token24] = ACTIONS(2157), - [aux_sym_cmd_identifier_token25] = ACTIONS(2157), - [aux_sym_cmd_identifier_token26] = ACTIONS(2157), - [aux_sym_cmd_identifier_token27] = ACTIONS(2157), - [aux_sym_cmd_identifier_token28] = ACTIONS(2157), - [aux_sym_cmd_identifier_token29] = ACTIONS(2157), - [aux_sym_cmd_identifier_token30] = ACTIONS(2157), - [aux_sym_cmd_identifier_token31] = ACTIONS(2157), - [aux_sym_cmd_identifier_token32] = ACTIONS(2157), - [aux_sym_cmd_identifier_token33] = ACTIONS(2157), - [aux_sym_cmd_identifier_token34] = ACTIONS(2157), - [aux_sym_cmd_identifier_token35] = ACTIONS(2157), - [aux_sym_cmd_identifier_token36] = ACTIONS(2157), - [aux_sym_cmd_identifier_token37] = ACTIONS(2157), - [aux_sym_cmd_identifier_token38] = ACTIONS(2157), - [aux_sym_cmd_identifier_token39] = ACTIONS(2157), - [aux_sym_cmd_identifier_token40] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2157), - [anon_sym_export_DASHenv] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_module] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_error] = ACTIONS(2157), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_in2] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_make] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_source] = ACTIONS(2157), - [anon_sym_source_DASHenv] = ACTIONS(2157), - [anon_sym_register] = ACTIONS(2157), - [anon_sym_hide] = ACTIONS(2157), - [anon_sym_hide_DASHenv] = ACTIONS(2157), - [anon_sym_overlay] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_PLUS2] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2157), - [aux_sym__val_number_decimal_token3] = ACTIONS(2157), - [aux_sym__val_number_decimal_token4] = ACTIONS(2157), - [aux_sym__val_number_token1] = ACTIONS(2157), - [aux_sym__val_number_token2] = ACTIONS(2157), - [aux_sym__val_number_token3] = ACTIONS(2157), - [aux_sym__val_number_token4] = ACTIONS(2157), - [aux_sym__val_number_token5] = ACTIONS(2157), - [aux_sym__val_number_token6] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2157), - [sym__str_single_quotes] = ACTIONS(2157), - [sym__str_back_ticks] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), - [sym__entry_separator] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2163), - }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [aux_sym_cmd_identifier_token1] = ACTIONS(2118), - [aux_sym_cmd_identifier_token2] = ACTIONS(2118), - [aux_sym_cmd_identifier_token3] = ACTIONS(2118), - [aux_sym_cmd_identifier_token4] = ACTIONS(2118), - [aux_sym_cmd_identifier_token5] = ACTIONS(2118), - [aux_sym_cmd_identifier_token6] = ACTIONS(2118), - [aux_sym_cmd_identifier_token7] = ACTIONS(2118), - [aux_sym_cmd_identifier_token8] = ACTIONS(2118), - [aux_sym_cmd_identifier_token9] = ACTIONS(2118), - [aux_sym_cmd_identifier_token10] = ACTIONS(2118), - [aux_sym_cmd_identifier_token11] = ACTIONS(2118), - [aux_sym_cmd_identifier_token12] = ACTIONS(2118), - [aux_sym_cmd_identifier_token13] = ACTIONS(2118), - [aux_sym_cmd_identifier_token14] = ACTIONS(2118), - [aux_sym_cmd_identifier_token15] = ACTIONS(2118), - [aux_sym_cmd_identifier_token16] = ACTIONS(2118), - [aux_sym_cmd_identifier_token17] = ACTIONS(2118), - [aux_sym_cmd_identifier_token18] = ACTIONS(2118), - [aux_sym_cmd_identifier_token19] = ACTIONS(2118), - [aux_sym_cmd_identifier_token20] = ACTIONS(2118), - [aux_sym_cmd_identifier_token21] = ACTIONS(2118), - [aux_sym_cmd_identifier_token22] = ACTIONS(2118), - [aux_sym_cmd_identifier_token23] = ACTIONS(2118), - [aux_sym_cmd_identifier_token24] = ACTIONS(2118), - [aux_sym_cmd_identifier_token25] = ACTIONS(2118), - [aux_sym_cmd_identifier_token26] = ACTIONS(2118), - [aux_sym_cmd_identifier_token27] = ACTIONS(2118), - [aux_sym_cmd_identifier_token28] = ACTIONS(2118), - [aux_sym_cmd_identifier_token29] = ACTIONS(2118), - [aux_sym_cmd_identifier_token30] = ACTIONS(2118), - [aux_sym_cmd_identifier_token31] = ACTIONS(2118), - [aux_sym_cmd_identifier_token32] = ACTIONS(2118), - [aux_sym_cmd_identifier_token33] = ACTIONS(2118), - [aux_sym_cmd_identifier_token34] = ACTIONS(2118), - [aux_sym_cmd_identifier_token35] = ACTIONS(2118), - [aux_sym_cmd_identifier_token36] = ACTIONS(2118), - [aux_sym_cmd_identifier_token37] = ACTIONS(2118), - [aux_sym_cmd_identifier_token38] = ACTIONS(2118), - [aux_sym_cmd_identifier_token39] = ACTIONS(2118), - [aux_sym_cmd_identifier_token40] = ACTIONS(2118), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_in2] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_make] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), - [sym__entry_separator] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2120), - }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_DASHenv] = ACTIONS(2355), - [anon_sym_mut] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [aux_sym_cmd_identifier_token2] = ACTIONS(2355), - [aux_sym_cmd_identifier_token3] = ACTIONS(2355), - [aux_sym_cmd_identifier_token4] = ACTIONS(2355), - [aux_sym_cmd_identifier_token5] = ACTIONS(2355), - [aux_sym_cmd_identifier_token6] = ACTIONS(2355), - [aux_sym_cmd_identifier_token7] = ACTIONS(2355), - [aux_sym_cmd_identifier_token8] = ACTIONS(2355), - [aux_sym_cmd_identifier_token9] = ACTIONS(2355), - [aux_sym_cmd_identifier_token10] = ACTIONS(2355), - [aux_sym_cmd_identifier_token11] = ACTIONS(2355), - [aux_sym_cmd_identifier_token12] = ACTIONS(2355), - [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2355), - [aux_sym_cmd_identifier_token17] = ACTIONS(2355), - [aux_sym_cmd_identifier_token18] = ACTIONS(2355), - [aux_sym_cmd_identifier_token19] = ACTIONS(2355), - [aux_sym_cmd_identifier_token20] = ACTIONS(2355), - [aux_sym_cmd_identifier_token21] = ACTIONS(2355), - [aux_sym_cmd_identifier_token22] = ACTIONS(2355), - [aux_sym_cmd_identifier_token23] = ACTIONS(2355), - [aux_sym_cmd_identifier_token24] = ACTIONS(2355), - [aux_sym_cmd_identifier_token25] = ACTIONS(2355), - [aux_sym_cmd_identifier_token26] = ACTIONS(2355), - [aux_sym_cmd_identifier_token27] = ACTIONS(2355), - [aux_sym_cmd_identifier_token28] = ACTIONS(2355), - [aux_sym_cmd_identifier_token29] = ACTIONS(2355), - [aux_sym_cmd_identifier_token30] = ACTIONS(2355), - [aux_sym_cmd_identifier_token31] = ACTIONS(2355), - [aux_sym_cmd_identifier_token32] = ACTIONS(2355), - [aux_sym_cmd_identifier_token33] = ACTIONS(2355), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2355), - [aux_sym_cmd_identifier_token36] = ACTIONS(2355), - [aux_sym_cmd_identifier_token37] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in2] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_PLUS2] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [aux_sym__val_number_token4] = ACTIONS(2355), - [aux_sym__val_number_token5] = ACTIONS(2355), - [aux_sym__val_number_token6] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), - [sym__entry_separator] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2357), - }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [aux_sym_cmd_identifier_token37] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH2] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in2] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS2] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_decimal_token4] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [sym__entry_separator] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2361), - }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [aux_sym_cmd_identifier_token37] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in2] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_decimal_token4] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [aux_sym__val_number_token4] = ACTIONS(2363), - [aux_sym__val_number_token5] = ACTIONS(2363), - [aux_sym__val_number_token6] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), - [sym__entry_separator] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2365), - }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2183), - [aux_sym_cmd_identifier_token3] = ACTIONS(2183), - [aux_sym_cmd_identifier_token4] = ACTIONS(2183), - [aux_sym_cmd_identifier_token5] = ACTIONS(2183), - [aux_sym_cmd_identifier_token6] = ACTIONS(2183), - [aux_sym_cmd_identifier_token7] = ACTIONS(2183), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2183), - [aux_sym_cmd_identifier_token11] = ACTIONS(2183), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2183), - [aux_sym_cmd_identifier_token17] = ACTIONS(2183), - [aux_sym_cmd_identifier_token18] = ACTIONS(2183), - [aux_sym_cmd_identifier_token19] = ACTIONS(2183), - [aux_sym_cmd_identifier_token20] = ACTIONS(2183), - [aux_sym_cmd_identifier_token21] = ACTIONS(2183), - [aux_sym_cmd_identifier_token22] = ACTIONS(2183), - [aux_sym_cmd_identifier_token23] = ACTIONS(2183), - [aux_sym_cmd_identifier_token24] = ACTIONS(2183), - [aux_sym_cmd_identifier_token25] = ACTIONS(2183), - [aux_sym_cmd_identifier_token26] = ACTIONS(2183), - [aux_sym_cmd_identifier_token27] = ACTIONS(2183), - [aux_sym_cmd_identifier_token28] = ACTIONS(2183), - [aux_sym_cmd_identifier_token29] = ACTIONS(2183), - [aux_sym_cmd_identifier_token30] = ACTIONS(2183), - [aux_sym_cmd_identifier_token31] = ACTIONS(2183), - [aux_sym_cmd_identifier_token32] = ACTIONS(2183), - [aux_sym_cmd_identifier_token33] = ACTIONS(2183), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2183), - [aux_sym_cmd_identifier_token36] = ACTIONS(2183), - [aux_sym_cmd_identifier_token37] = ACTIONS(2183), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2183), - [aux_sym_cmd_identifier_token40] = ACTIONS(2183), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2183), - [aux_sym__val_number_decimal_token3] = ACTIONS(2183), - [aux_sym__val_number_decimal_token4] = ACTIONS(2183), - [aux_sym__val_number_token1] = ACTIONS(2183), - [aux_sym__val_number_token2] = ACTIONS(2183), - [aux_sym__val_number_token3] = ACTIONS(2183), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), - [sym__entry_separator] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2185), - }, - [621] = { - [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2367), - [aux_sym_cmd_identifier_token3] = ACTIONS(2367), - [aux_sym_cmd_identifier_token4] = ACTIONS(2367), - [aux_sym_cmd_identifier_token5] = ACTIONS(2367), - [aux_sym_cmd_identifier_token6] = ACTIONS(2367), - [aux_sym_cmd_identifier_token7] = ACTIONS(2367), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2367), - [aux_sym_cmd_identifier_token17] = ACTIONS(2367), - [aux_sym_cmd_identifier_token18] = ACTIONS(2367), - [aux_sym_cmd_identifier_token19] = ACTIONS(2367), - [aux_sym_cmd_identifier_token20] = ACTIONS(2367), - [aux_sym_cmd_identifier_token21] = ACTIONS(2367), - [aux_sym_cmd_identifier_token22] = ACTIONS(2367), - [aux_sym_cmd_identifier_token23] = ACTIONS(2367), - [aux_sym_cmd_identifier_token24] = ACTIONS(2367), - [aux_sym_cmd_identifier_token25] = ACTIONS(2367), - [aux_sym_cmd_identifier_token26] = ACTIONS(2367), - [aux_sym_cmd_identifier_token27] = ACTIONS(2367), - [aux_sym_cmd_identifier_token28] = ACTIONS(2367), - [aux_sym_cmd_identifier_token29] = ACTIONS(2367), - [aux_sym_cmd_identifier_token30] = ACTIONS(2367), - [aux_sym_cmd_identifier_token31] = ACTIONS(2367), - [aux_sym_cmd_identifier_token32] = ACTIONS(2367), - [aux_sym_cmd_identifier_token33] = ACTIONS(2367), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2367), - [aux_sym_cmd_identifier_token36] = ACTIONS(2367), - [aux_sym_cmd_identifier_token37] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in2] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_decimal_token4] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [aux_sym__val_number_token4] = ACTIONS(2367), - [aux_sym__val_number_token5] = ACTIONS(2367), - [aux_sym__val_number_token6] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), - [sym__entry_separator] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2369), - }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2371), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [aux_sym_cmd_identifier_token6] = ACTIONS(2371), - [aux_sym_cmd_identifier_token7] = ACTIONS(2371), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2371), - [aux_sym_cmd_identifier_token17] = ACTIONS(2371), - [aux_sym_cmd_identifier_token18] = ACTIONS(2371), - [aux_sym_cmd_identifier_token19] = ACTIONS(2371), - [aux_sym_cmd_identifier_token20] = ACTIONS(2371), - [aux_sym_cmd_identifier_token21] = ACTIONS(2371), - [aux_sym_cmd_identifier_token22] = ACTIONS(2371), - [aux_sym_cmd_identifier_token23] = ACTIONS(2371), - [aux_sym_cmd_identifier_token24] = ACTIONS(2371), - [aux_sym_cmd_identifier_token25] = ACTIONS(2371), - [aux_sym_cmd_identifier_token26] = ACTIONS(2371), - [aux_sym_cmd_identifier_token27] = ACTIONS(2371), - [aux_sym_cmd_identifier_token28] = ACTIONS(2371), - [aux_sym_cmd_identifier_token29] = ACTIONS(2371), - [aux_sym_cmd_identifier_token30] = ACTIONS(2371), - [aux_sym_cmd_identifier_token31] = ACTIONS(2371), - [aux_sym_cmd_identifier_token32] = ACTIONS(2371), - [aux_sym_cmd_identifier_token33] = ACTIONS(2371), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2371), - [aux_sym_cmd_identifier_token36] = ACTIONS(2371), - [aux_sym_cmd_identifier_token37] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in2] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [aux_sym__val_number_token4] = ACTIONS(2371), - [aux_sym__val_number_token5] = ACTIONS(2371), - [aux_sym__val_number_token6] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), - [sym__entry_separator] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2373), - }, - [623] = { - [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), - }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2375), - [aux_sym_cmd_identifier_token3] = ACTIONS(2375), - [aux_sym_cmd_identifier_token4] = ACTIONS(2375), - [aux_sym_cmd_identifier_token5] = ACTIONS(2375), - [aux_sym_cmd_identifier_token6] = ACTIONS(2375), - [aux_sym_cmd_identifier_token7] = ACTIONS(2375), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2375), - [aux_sym_cmd_identifier_token17] = ACTIONS(2375), - [aux_sym_cmd_identifier_token18] = ACTIONS(2375), - [aux_sym_cmd_identifier_token19] = ACTIONS(2375), - [aux_sym_cmd_identifier_token20] = ACTIONS(2375), - [aux_sym_cmd_identifier_token21] = ACTIONS(2375), - [aux_sym_cmd_identifier_token22] = ACTIONS(2375), - [aux_sym_cmd_identifier_token23] = ACTIONS(2375), - [aux_sym_cmd_identifier_token24] = ACTIONS(2375), - [aux_sym_cmd_identifier_token25] = ACTIONS(2375), - [aux_sym_cmd_identifier_token26] = ACTIONS(2375), - [aux_sym_cmd_identifier_token27] = ACTIONS(2375), - [aux_sym_cmd_identifier_token28] = ACTIONS(2375), - [aux_sym_cmd_identifier_token29] = ACTIONS(2375), - [aux_sym_cmd_identifier_token30] = ACTIONS(2375), - [aux_sym_cmd_identifier_token31] = ACTIONS(2375), - [aux_sym_cmd_identifier_token32] = ACTIONS(2375), - [aux_sym_cmd_identifier_token33] = ACTIONS(2375), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2375), - [aux_sym_cmd_identifier_token36] = ACTIONS(2375), - [aux_sym_cmd_identifier_token37] = ACTIONS(2375), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in2] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2375), - [aux_sym__val_number_decimal_token3] = ACTIONS(2375), - [aux_sym__val_number_decimal_token4] = ACTIONS(2375), - [aux_sym__val_number_token1] = ACTIONS(2375), - [aux_sym__val_number_token2] = ACTIONS(2375), - [aux_sym__val_number_token3] = ACTIONS(2375), - [aux_sym__val_number_token4] = ACTIONS(2375), - [aux_sym__val_number_token5] = ACTIONS(2375), - [aux_sym__val_number_token6] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym__str_single_quotes] = ACTIONS(2375), - [sym__str_back_ticks] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), - [sym__entry_separator] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2377), - }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2379), - [aux_sym_cmd_identifier_token3] = ACTIONS(2379), - [aux_sym_cmd_identifier_token4] = ACTIONS(2379), - [aux_sym_cmd_identifier_token5] = ACTIONS(2379), - [aux_sym_cmd_identifier_token6] = ACTIONS(2379), - [aux_sym_cmd_identifier_token7] = ACTIONS(2379), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2379), - [aux_sym_cmd_identifier_token11] = ACTIONS(2379), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2379), - [aux_sym_cmd_identifier_token17] = ACTIONS(2379), - [aux_sym_cmd_identifier_token18] = ACTIONS(2379), - [aux_sym_cmd_identifier_token19] = ACTIONS(2379), - [aux_sym_cmd_identifier_token20] = ACTIONS(2379), - [aux_sym_cmd_identifier_token21] = ACTIONS(2379), - [aux_sym_cmd_identifier_token22] = ACTIONS(2379), - [aux_sym_cmd_identifier_token23] = ACTIONS(2379), - [aux_sym_cmd_identifier_token24] = ACTIONS(2379), - [aux_sym_cmd_identifier_token25] = ACTIONS(2379), - [aux_sym_cmd_identifier_token26] = ACTIONS(2379), - [aux_sym_cmd_identifier_token27] = ACTIONS(2379), - [aux_sym_cmd_identifier_token28] = ACTIONS(2379), - [aux_sym_cmd_identifier_token29] = ACTIONS(2379), - [aux_sym_cmd_identifier_token30] = ACTIONS(2379), - [aux_sym_cmd_identifier_token31] = ACTIONS(2379), - [aux_sym_cmd_identifier_token32] = ACTIONS(2379), - [aux_sym_cmd_identifier_token33] = ACTIONS(2379), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2379), - [aux_sym_cmd_identifier_token36] = ACTIONS(2379), - [aux_sym_cmd_identifier_token37] = ACTIONS(2379), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2379), - [aux_sym_cmd_identifier_token40] = ACTIONS(2379), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in2] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2379), - [aux_sym__val_number_decimal_token3] = ACTIONS(2379), - [aux_sym__val_number_decimal_token4] = ACTIONS(2379), - [aux_sym__val_number_token1] = ACTIONS(2379), - [aux_sym__val_number_token2] = ACTIONS(2379), - [aux_sym__val_number_token3] = ACTIONS(2379), - [aux_sym__val_number_token4] = ACTIONS(2379), - [aux_sym__val_number_token5] = ACTIONS(2379), - [aux_sym__val_number_token6] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2379), - [sym__str_single_quotes] = ACTIONS(2379), - [sym__str_back_ticks] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), - [sym__entry_separator] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2381), - }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2383), - [aux_sym_cmd_identifier_token3] = ACTIONS(2383), - [aux_sym_cmd_identifier_token4] = ACTIONS(2383), - [aux_sym_cmd_identifier_token5] = ACTIONS(2383), - [aux_sym_cmd_identifier_token6] = ACTIONS(2383), - [aux_sym_cmd_identifier_token7] = ACTIONS(2383), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2383), - [aux_sym_cmd_identifier_token11] = ACTIONS(2383), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2383), - [aux_sym_cmd_identifier_token17] = ACTIONS(2383), - [aux_sym_cmd_identifier_token18] = ACTIONS(2383), - [aux_sym_cmd_identifier_token19] = ACTIONS(2383), - [aux_sym_cmd_identifier_token20] = ACTIONS(2383), - [aux_sym_cmd_identifier_token21] = ACTIONS(2383), - [aux_sym_cmd_identifier_token22] = ACTIONS(2383), - [aux_sym_cmd_identifier_token23] = ACTIONS(2383), - [aux_sym_cmd_identifier_token24] = ACTIONS(2383), - [aux_sym_cmd_identifier_token25] = ACTIONS(2383), - [aux_sym_cmd_identifier_token26] = ACTIONS(2383), - [aux_sym_cmd_identifier_token27] = ACTIONS(2383), - [aux_sym_cmd_identifier_token28] = ACTIONS(2383), - [aux_sym_cmd_identifier_token29] = ACTIONS(2383), - [aux_sym_cmd_identifier_token30] = ACTIONS(2383), - [aux_sym_cmd_identifier_token31] = ACTIONS(2383), - [aux_sym_cmd_identifier_token32] = ACTIONS(2383), - [aux_sym_cmd_identifier_token33] = ACTIONS(2383), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2383), - [aux_sym_cmd_identifier_token36] = ACTIONS(2383), - [aux_sym_cmd_identifier_token37] = ACTIONS(2383), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2383), - [aux_sym_cmd_identifier_token40] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in2] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_decimal_token4] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), - [sym__entry_separator] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2385), + [525] = { + [sym_cell_path] = STATE(783), + [sym_path] = STATE(693), + [sym_comment] = STATE(525), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2171), + [anon_sym_alias] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_let_DASHenv] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [aux_sym_cmd_identifier_token1] = ACTIONS(2171), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2171), + [aux_sym_cmd_identifier_token9] = ACTIONS(2171), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2171), + [aux_sym_cmd_identifier_token13] = ACTIONS(2171), + [aux_sym_cmd_identifier_token14] = ACTIONS(2171), + [aux_sym_cmd_identifier_token15] = ACTIONS(2171), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2171), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2171), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2171), + [anon_sym_export_DASHenv] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_module] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2171), + [anon_sym_DASH2] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_in2] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_make] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_do] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_else] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2171), + [anon_sym_catch] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_source] = ACTIONS(2171), + [anon_sym_source_DASHenv] = ACTIONS(2171), + [anon_sym_register] = ACTIONS(2171), + [anon_sym_hide] = ACTIONS(2171), + [anon_sym_hide_DASHenv] = ACTIONS(2171), + [anon_sym_overlay] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_PLUS2] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2171), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2171), + [aux_sym__val_number_token5] = ACTIONS(2171), + [aux_sym__val_number_token6] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2173), }, - [627] = { - [sym_comment] = STATE(627), - [aux_sym__multiple_types_repeat1] = STATE(600), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT2] = ACTIONS(2211), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [sym__entry_separator] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [sym_raw_string_begin] = ACTIONS(2306), }, - [628] = { - [sym_comment] = STATE(628), + [527] = { + [sym_cell_path] = STATE(784), + [sym_path] = STATE(693), + [sym_comment] = STATE(527), + [aux_sym_cell_path_repeat1] = STATE(553), [anon_sym_export] = ACTIONS(2038), [anon_sym_alias] = ACTIONS(2038), [anon_sym_let] = ACTIONS(2038), @@ -143023,52 +270603,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2038), [anon_sym_const] = ACTIONS(2038), [aux_sym_cmd_identifier_token1] = ACTIONS(2038), - [aux_sym_cmd_identifier_token2] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2038), - [aux_sym_cmd_identifier_token4] = ACTIONS(2038), - [aux_sym_cmd_identifier_token5] = ACTIONS(2038), - [aux_sym_cmd_identifier_token6] = ACTIONS(2038), - [aux_sym_cmd_identifier_token7] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2040), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [aux_sym_cmd_identifier_token6] = ACTIONS(2040), + [aux_sym_cmd_identifier_token7] = ACTIONS(2040), [aux_sym_cmd_identifier_token8] = ACTIONS(2038), [aux_sym_cmd_identifier_token9] = ACTIONS(2038), - [aux_sym_cmd_identifier_token10] = ACTIONS(2038), - [aux_sym_cmd_identifier_token11] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2040), + [aux_sym_cmd_identifier_token11] = ACTIONS(2040), [aux_sym_cmd_identifier_token12] = ACTIONS(2038), [aux_sym_cmd_identifier_token13] = ACTIONS(2038), [aux_sym_cmd_identifier_token14] = ACTIONS(2038), [aux_sym_cmd_identifier_token15] = ACTIONS(2038), - [aux_sym_cmd_identifier_token16] = ACTIONS(2038), - [aux_sym_cmd_identifier_token17] = ACTIONS(2038), - [aux_sym_cmd_identifier_token18] = ACTIONS(2038), - [aux_sym_cmd_identifier_token19] = ACTIONS(2038), - [aux_sym_cmd_identifier_token20] = ACTIONS(2038), - [aux_sym_cmd_identifier_token21] = ACTIONS(2038), - [aux_sym_cmd_identifier_token22] = ACTIONS(2038), - [aux_sym_cmd_identifier_token23] = ACTIONS(2038), - [aux_sym_cmd_identifier_token24] = ACTIONS(2038), - [aux_sym_cmd_identifier_token25] = ACTIONS(2038), - [aux_sym_cmd_identifier_token26] = ACTIONS(2038), - [aux_sym_cmd_identifier_token27] = ACTIONS(2038), - [aux_sym_cmd_identifier_token28] = ACTIONS(2038), - [aux_sym_cmd_identifier_token29] = ACTIONS(2038), - [aux_sym_cmd_identifier_token30] = ACTIONS(2038), - [aux_sym_cmd_identifier_token31] = ACTIONS(2038), - [aux_sym_cmd_identifier_token32] = ACTIONS(2038), - [aux_sym_cmd_identifier_token33] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2040), + [aux_sym_cmd_identifier_token17] = ACTIONS(2040), + [aux_sym_cmd_identifier_token18] = ACTIONS(2040), + [aux_sym_cmd_identifier_token19] = ACTIONS(2040), + [aux_sym_cmd_identifier_token20] = ACTIONS(2040), + [aux_sym_cmd_identifier_token21] = ACTIONS(2040), + [aux_sym_cmd_identifier_token22] = ACTIONS(2040), + [aux_sym_cmd_identifier_token23] = ACTIONS(2040), + [aux_sym_cmd_identifier_token24] = ACTIONS(2040), + [aux_sym_cmd_identifier_token25] = ACTIONS(2040), + [aux_sym_cmd_identifier_token26] = ACTIONS(2040), + [aux_sym_cmd_identifier_token27] = ACTIONS(2040), + [aux_sym_cmd_identifier_token28] = ACTIONS(2040), + [aux_sym_cmd_identifier_token29] = ACTIONS(2040), + [aux_sym_cmd_identifier_token30] = ACTIONS(2040), + [aux_sym_cmd_identifier_token31] = ACTIONS(2040), + [aux_sym_cmd_identifier_token32] = ACTIONS(2040), + [aux_sym_cmd_identifier_token33] = ACTIONS(2040), [aux_sym_cmd_identifier_token34] = ACTIONS(2038), - [aux_sym_cmd_identifier_token35] = ACTIONS(2038), - [aux_sym_cmd_identifier_token36] = ACTIONS(2038), - [aux_sym_cmd_identifier_token37] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2040), + [aux_sym_cmd_identifier_token36] = ACTIONS(2040), + [aux_sym_cmd_identifier_token37] = ACTIONS(2040), [aux_sym_cmd_identifier_token38] = ACTIONS(2038), - [aux_sym_cmd_identifier_token39] = ACTIONS(2038), - [aux_sym_cmd_identifier_token40] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2040), + [aux_sym_cmd_identifier_token40] = ACTIONS(2040), [anon_sym_def] = ACTIONS(2038), [anon_sym_export_DASHenv] = ACTIONS(2038), [anon_sym_extern] = ACTIONS(2038), [anon_sym_module] = ACTIONS(2038), [anon_sym_use] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2040), [anon_sym_error] = ACTIONS(2038), [anon_sym_DASH2] = ACTIONS(2038), [anon_sym_break] = ACTIONS(2038), @@ -143082,7 +270662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2038), [anon_sym_else] = ACTIONS(2038), [anon_sym_match] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2040), [anon_sym_try] = ACTIONS(2038), [anon_sym_catch] = ACTIONS(2038), [anon_sym_return] = ACTIONS(2038), @@ -143094,7243 +270674,8695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2038), [anon_sym_as] = ACTIONS(2038), [anon_sym_PLUS2] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), [aux_sym__val_number_decimal_token1] = ACTIONS(2038), - [aux_sym__val_number_decimal_token2] = ACTIONS(2038), - [aux_sym__val_number_decimal_token3] = ACTIONS(2038), - [aux_sym__val_number_decimal_token4] = ACTIONS(2038), - [aux_sym__val_number_token1] = ACTIONS(2038), - [aux_sym__val_number_token2] = ACTIONS(2038), - [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), [aux_sym__val_number_token4] = ACTIONS(2038), [aux_sym__val_number_token5] = ACTIONS(2038), [aux_sym__val_number_token6] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(2038), - [sym__str_single_quotes] = ACTIONS(2038), - [sym__str_back_ticks] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), - [sym__entry_separator] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2040), }, - [629] = { - [sym_comment] = STATE(629), - [aux_sym_shebang_repeat1] = STATE(629), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1294), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1294), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in2] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_make] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_PLUS2] = ACTIONS(1294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), + [528] = { + [sym_cell_path] = STATE(785), + [sym_path] = STATE(693), + [sym_comment] = STATE(528), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2044), + [aux_sym_cmd_identifier_token3] = ACTIONS(2044), + [aux_sym_cmd_identifier_token4] = ACTIONS(2044), + [aux_sym_cmd_identifier_token5] = ACTIONS(2044), + [aux_sym_cmd_identifier_token6] = ACTIONS(2044), + [aux_sym_cmd_identifier_token7] = ACTIONS(2044), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2044), + [aux_sym_cmd_identifier_token11] = ACTIONS(2044), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2044), + [aux_sym_cmd_identifier_token17] = ACTIONS(2044), + [aux_sym_cmd_identifier_token18] = ACTIONS(2044), + [aux_sym_cmd_identifier_token19] = ACTIONS(2044), + [aux_sym_cmd_identifier_token20] = ACTIONS(2044), + [aux_sym_cmd_identifier_token21] = ACTIONS(2044), + [aux_sym_cmd_identifier_token22] = ACTIONS(2044), + [aux_sym_cmd_identifier_token23] = ACTIONS(2044), + [aux_sym_cmd_identifier_token24] = ACTIONS(2044), + [aux_sym_cmd_identifier_token25] = ACTIONS(2044), + [aux_sym_cmd_identifier_token26] = ACTIONS(2044), + [aux_sym_cmd_identifier_token27] = ACTIONS(2044), + [aux_sym_cmd_identifier_token28] = ACTIONS(2044), + [aux_sym_cmd_identifier_token29] = ACTIONS(2044), + [aux_sym_cmd_identifier_token30] = ACTIONS(2044), + [aux_sym_cmd_identifier_token31] = ACTIONS(2044), + [aux_sym_cmd_identifier_token32] = ACTIONS(2044), + [aux_sym_cmd_identifier_token33] = ACTIONS(2044), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2044), + [aux_sym_cmd_identifier_token36] = ACTIONS(2044), + [aux_sym_cmd_identifier_token37] = ACTIONS(2044), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2044), + [aux_sym_cmd_identifier_token40] = ACTIONS(2044), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2044), + [aux_sym__val_number_decimal_token3] = ACTIONS(2044), + [aux_sym__val_number_decimal_token4] = ACTIONS(2044), + [aux_sym__val_number_token1] = ACTIONS(2044), + [aux_sym__val_number_token2] = ACTIONS(2044), + [aux_sym__val_number_token3] = ACTIONS(2044), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym__str_single_quotes] = ACTIONS(2044), + [sym__str_back_ticks] = ACTIONS(2044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2044), }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2308), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT2] = ACTIONS(2211), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2213), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [sym__entry_separator] = ACTIONS(2310), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(2310), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym__str_single_quotes] = ACTIONS(1026), - [sym__str_back_ticks] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), - [sym__entry_separator] = ACTIONS(1028), + [530] = { + [sym_path] = STATE(618), + [sym_comment] = STATE(530), + [aux_sym_cell_path_repeat1] = STATE(498), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [aux_sym_cmd_identifier_token37] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1481), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(1481), }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_alias] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_let_DASHenv] = ACTIONS(2390), - [anon_sym_mut] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [aux_sym_cmd_identifier_token1] = ACTIONS(2390), - [aux_sym_cmd_identifier_token2] = ACTIONS(2390), - [aux_sym_cmd_identifier_token3] = ACTIONS(2390), - [aux_sym_cmd_identifier_token4] = ACTIONS(2390), - [aux_sym_cmd_identifier_token5] = ACTIONS(2390), - [aux_sym_cmd_identifier_token6] = ACTIONS(2390), - [aux_sym_cmd_identifier_token7] = ACTIONS(2390), - [aux_sym_cmd_identifier_token8] = ACTIONS(2390), - [aux_sym_cmd_identifier_token9] = ACTIONS(2390), - [aux_sym_cmd_identifier_token10] = ACTIONS(2390), - [aux_sym_cmd_identifier_token11] = ACTIONS(2390), - [aux_sym_cmd_identifier_token12] = ACTIONS(2390), - [aux_sym_cmd_identifier_token13] = ACTIONS(2390), - [aux_sym_cmd_identifier_token14] = ACTIONS(2390), - [aux_sym_cmd_identifier_token15] = ACTIONS(2390), - [aux_sym_cmd_identifier_token16] = ACTIONS(2390), - [aux_sym_cmd_identifier_token17] = ACTIONS(2390), - [aux_sym_cmd_identifier_token18] = ACTIONS(2390), - [aux_sym_cmd_identifier_token19] = ACTIONS(2390), - [aux_sym_cmd_identifier_token20] = ACTIONS(2390), - [aux_sym_cmd_identifier_token21] = ACTIONS(2390), - [aux_sym_cmd_identifier_token22] = ACTIONS(2390), - [aux_sym_cmd_identifier_token23] = ACTIONS(2390), - [aux_sym_cmd_identifier_token24] = ACTIONS(2390), - [aux_sym_cmd_identifier_token25] = ACTIONS(2390), - [aux_sym_cmd_identifier_token26] = ACTIONS(2390), - [aux_sym_cmd_identifier_token27] = ACTIONS(2390), - [aux_sym_cmd_identifier_token28] = ACTIONS(2390), - [aux_sym_cmd_identifier_token29] = ACTIONS(2390), - [aux_sym_cmd_identifier_token30] = ACTIONS(2390), - [aux_sym_cmd_identifier_token31] = ACTIONS(2390), - [aux_sym_cmd_identifier_token32] = ACTIONS(2390), - [aux_sym_cmd_identifier_token33] = ACTIONS(2390), - [aux_sym_cmd_identifier_token34] = ACTIONS(2390), - [aux_sym_cmd_identifier_token35] = ACTIONS(2390), - [aux_sym_cmd_identifier_token36] = ACTIONS(2390), - [aux_sym_cmd_identifier_token37] = ACTIONS(2390), - [aux_sym_cmd_identifier_token38] = ACTIONS(2390), - [aux_sym_cmd_identifier_token39] = ACTIONS(2390), - [aux_sym_cmd_identifier_token40] = ACTIONS(2390), - [anon_sym_def] = ACTIONS(2390), - [anon_sym_export_DASHenv] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_error] = ACTIONS(2390), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_in2] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_make] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_catch] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_source] = ACTIONS(2390), - [anon_sym_source_DASHenv] = ACTIONS(2390), - [anon_sym_register] = ACTIONS(2390), - [anon_sym_hide] = ACTIONS(2390), - [anon_sym_hide_DASHenv] = ACTIONS(2390), - [anon_sym_overlay] = ACTIONS(2390), - [anon_sym_as] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), - [aux_sym__val_number_decimal_token1] = ACTIONS(2390), - [aux_sym__val_number_decimal_token2] = ACTIONS(2390), - [aux_sym__val_number_decimal_token3] = ACTIONS(2390), - [aux_sym__val_number_decimal_token4] = ACTIONS(2390), - [aux_sym__val_number_token1] = ACTIONS(2390), - [aux_sym__val_number_token2] = ACTIONS(2390), - [aux_sym__val_number_token3] = ACTIONS(2390), - [aux_sym__val_number_token4] = ACTIONS(2390), - [aux_sym__val_number_token5] = ACTIONS(2390), - [aux_sym__val_number_token6] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2390), - [sym__str_single_quotes] = ACTIONS(2390), - [sym__str_back_ticks] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), - [sym__entry_separator] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2392), + [531] = { + [sym_cell_path] = STATE(788), + [sym_path] = STATE(693), + [sym_comment] = STATE(531), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2078), + [anon_sym_alias] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_let_DASHenv] = ACTIONS(2078), + [anon_sym_mut] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [aux_sym_cmd_identifier_token1] = ACTIONS(2078), + [aux_sym_cmd_identifier_token2] = ACTIONS(2080), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [aux_sym_cmd_identifier_token6] = ACTIONS(2080), + [aux_sym_cmd_identifier_token7] = ACTIONS(2080), + [aux_sym_cmd_identifier_token8] = ACTIONS(2078), + [aux_sym_cmd_identifier_token9] = ACTIONS(2078), + [aux_sym_cmd_identifier_token10] = ACTIONS(2080), + [aux_sym_cmd_identifier_token11] = ACTIONS(2080), + [aux_sym_cmd_identifier_token12] = ACTIONS(2078), + [aux_sym_cmd_identifier_token13] = ACTIONS(2078), + [aux_sym_cmd_identifier_token14] = ACTIONS(2078), + [aux_sym_cmd_identifier_token15] = ACTIONS(2078), + [aux_sym_cmd_identifier_token16] = ACTIONS(2080), + [aux_sym_cmd_identifier_token17] = ACTIONS(2080), + [aux_sym_cmd_identifier_token18] = ACTIONS(2080), + [aux_sym_cmd_identifier_token19] = ACTIONS(2080), + [aux_sym_cmd_identifier_token20] = ACTIONS(2080), + [aux_sym_cmd_identifier_token21] = ACTIONS(2080), + [aux_sym_cmd_identifier_token22] = ACTIONS(2080), + [aux_sym_cmd_identifier_token23] = ACTIONS(2080), + [aux_sym_cmd_identifier_token24] = ACTIONS(2080), + [aux_sym_cmd_identifier_token25] = ACTIONS(2080), + [aux_sym_cmd_identifier_token26] = ACTIONS(2080), + [aux_sym_cmd_identifier_token27] = ACTIONS(2080), + [aux_sym_cmd_identifier_token28] = ACTIONS(2080), + [aux_sym_cmd_identifier_token29] = ACTIONS(2080), + [aux_sym_cmd_identifier_token30] = ACTIONS(2080), + [aux_sym_cmd_identifier_token31] = ACTIONS(2080), + [aux_sym_cmd_identifier_token32] = ACTIONS(2080), + [aux_sym_cmd_identifier_token33] = ACTIONS(2080), + [aux_sym_cmd_identifier_token34] = ACTIONS(2078), + [aux_sym_cmd_identifier_token35] = ACTIONS(2080), + [aux_sym_cmd_identifier_token36] = ACTIONS(2080), + [aux_sym_cmd_identifier_token37] = ACTIONS(2080), + [aux_sym_cmd_identifier_token38] = ACTIONS(2078), + [aux_sym_cmd_identifier_token39] = ACTIONS(2080), + [aux_sym_cmd_identifier_token40] = ACTIONS(2080), + [anon_sym_def] = ACTIONS(2078), + [anon_sym_export_DASHenv] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_module] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_error] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_in2] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_make] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_source] = ACTIONS(2078), + [anon_sym_source_DASHenv] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2078), + [anon_sym_hide] = ACTIONS(2078), + [anon_sym_hide_DASHenv] = ACTIONS(2078), + [anon_sym_overlay] = ACTIONS(2078), + [anon_sym_as] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2080), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2080), + [aux_sym__val_number_decimal_token1] = ACTIONS(2078), + [aux_sym__val_number_decimal_token2] = ACTIONS(2080), + [aux_sym__val_number_decimal_token3] = ACTIONS(2080), + [aux_sym__val_number_decimal_token4] = ACTIONS(2080), + [aux_sym__val_number_token1] = ACTIONS(2080), + [aux_sym__val_number_token2] = ACTIONS(2080), + [aux_sym__val_number_token3] = ACTIONS(2080), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2080), + [sym__str_single_quotes] = ACTIONS(2080), + [sym__str_back_ticks] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2080), }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_alias] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_let_DASHenv] = ACTIONS(2394), - [anon_sym_mut] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [aux_sym_cmd_identifier_token1] = ACTIONS(2394), - [aux_sym_cmd_identifier_token2] = ACTIONS(2394), - [aux_sym_cmd_identifier_token3] = ACTIONS(2394), - [aux_sym_cmd_identifier_token4] = ACTIONS(2394), - [aux_sym_cmd_identifier_token5] = ACTIONS(2394), - [aux_sym_cmd_identifier_token6] = ACTIONS(2394), - [aux_sym_cmd_identifier_token7] = ACTIONS(2394), - [aux_sym_cmd_identifier_token8] = ACTIONS(2394), - [aux_sym_cmd_identifier_token9] = ACTIONS(2394), - [aux_sym_cmd_identifier_token10] = ACTIONS(2394), - [aux_sym_cmd_identifier_token11] = ACTIONS(2394), - [aux_sym_cmd_identifier_token12] = ACTIONS(2394), - [aux_sym_cmd_identifier_token13] = ACTIONS(2394), - [aux_sym_cmd_identifier_token14] = ACTIONS(2394), - [aux_sym_cmd_identifier_token15] = ACTIONS(2394), - [aux_sym_cmd_identifier_token16] = ACTIONS(2394), - [aux_sym_cmd_identifier_token17] = ACTIONS(2394), - [aux_sym_cmd_identifier_token18] = ACTIONS(2394), - [aux_sym_cmd_identifier_token19] = ACTIONS(2394), - [aux_sym_cmd_identifier_token20] = ACTIONS(2394), - [aux_sym_cmd_identifier_token21] = ACTIONS(2394), - [aux_sym_cmd_identifier_token22] = ACTIONS(2394), - [aux_sym_cmd_identifier_token23] = ACTIONS(2394), - [aux_sym_cmd_identifier_token24] = ACTIONS(2394), - [aux_sym_cmd_identifier_token25] = ACTIONS(2394), - [aux_sym_cmd_identifier_token26] = ACTIONS(2394), - [aux_sym_cmd_identifier_token27] = ACTIONS(2394), - [aux_sym_cmd_identifier_token28] = ACTIONS(2394), - [aux_sym_cmd_identifier_token29] = ACTIONS(2394), - [aux_sym_cmd_identifier_token30] = ACTIONS(2394), - [aux_sym_cmd_identifier_token31] = ACTIONS(2394), - [aux_sym_cmd_identifier_token32] = ACTIONS(2394), - [aux_sym_cmd_identifier_token33] = ACTIONS(2394), - [aux_sym_cmd_identifier_token34] = ACTIONS(2394), - [aux_sym_cmd_identifier_token35] = ACTIONS(2394), - [aux_sym_cmd_identifier_token36] = ACTIONS(2394), - [aux_sym_cmd_identifier_token37] = ACTIONS(2394), - [aux_sym_cmd_identifier_token38] = ACTIONS(2394), - [aux_sym_cmd_identifier_token39] = ACTIONS(2394), - [aux_sym_cmd_identifier_token40] = ACTIONS(2394), - [anon_sym_def] = ACTIONS(2394), - [anon_sym_export_DASHenv] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_DOLLAR] = ACTIONS(2394), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_DASH2] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in2] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_make] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_catch] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_source] = ACTIONS(2394), - [anon_sym_source_DASHenv] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_hide] = ACTIONS(2394), - [anon_sym_hide_DASHenv] = ACTIONS(2394), - [anon_sym_overlay] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2394), - [anon_sym_PLUS2] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), - [aux_sym__val_number_decimal_token1] = ACTIONS(2394), - [aux_sym__val_number_decimal_token2] = ACTIONS(2394), - [aux_sym__val_number_decimal_token3] = ACTIONS(2394), - [aux_sym__val_number_decimal_token4] = ACTIONS(2394), - [aux_sym__val_number_token1] = ACTIONS(2394), - [aux_sym__val_number_token2] = ACTIONS(2394), - [aux_sym__val_number_token3] = ACTIONS(2394), - [aux_sym__val_number_token4] = ACTIONS(2394), - [aux_sym__val_number_token5] = ACTIONS(2394), - [aux_sym__val_number_token6] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [sym__str_single_quotes] = ACTIONS(2394), - [sym__str_back_ticks] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), - [sym__entry_separator] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2396), + [532] = { + [sym_cell_path] = STATE(733), + [sym_path] = STATE(693), + [sym_comment] = STATE(532), + [aux_sym_cell_path_repeat1] = STATE(553), + [anon_sym_export] = ACTIONS(2006), + [anon_sym_alias] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_let_DASHenv] = ACTIONS(2006), + [anon_sym_mut] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [aux_sym_cmd_identifier_token1] = ACTIONS(2006), + [aux_sym_cmd_identifier_token2] = ACTIONS(2008), + [aux_sym_cmd_identifier_token3] = ACTIONS(2008), + [aux_sym_cmd_identifier_token4] = ACTIONS(2008), + [aux_sym_cmd_identifier_token5] = ACTIONS(2008), + [aux_sym_cmd_identifier_token6] = ACTIONS(2008), + [aux_sym_cmd_identifier_token7] = ACTIONS(2008), + [aux_sym_cmd_identifier_token8] = ACTIONS(2006), + [aux_sym_cmd_identifier_token9] = ACTIONS(2006), + [aux_sym_cmd_identifier_token10] = ACTIONS(2008), + [aux_sym_cmd_identifier_token11] = ACTIONS(2008), + [aux_sym_cmd_identifier_token12] = ACTIONS(2006), + [aux_sym_cmd_identifier_token13] = ACTIONS(2006), + [aux_sym_cmd_identifier_token14] = ACTIONS(2006), + [aux_sym_cmd_identifier_token15] = ACTIONS(2006), + [aux_sym_cmd_identifier_token16] = ACTIONS(2008), + [aux_sym_cmd_identifier_token17] = ACTIONS(2008), + [aux_sym_cmd_identifier_token18] = ACTIONS(2008), + [aux_sym_cmd_identifier_token19] = ACTIONS(2008), + [aux_sym_cmd_identifier_token20] = ACTIONS(2008), + [aux_sym_cmd_identifier_token21] = ACTIONS(2008), + [aux_sym_cmd_identifier_token22] = ACTIONS(2008), + [aux_sym_cmd_identifier_token23] = ACTIONS(2008), + [aux_sym_cmd_identifier_token24] = ACTIONS(2008), + [aux_sym_cmd_identifier_token25] = ACTIONS(2008), + [aux_sym_cmd_identifier_token26] = ACTIONS(2008), + [aux_sym_cmd_identifier_token27] = ACTIONS(2008), + [aux_sym_cmd_identifier_token28] = ACTIONS(2008), + [aux_sym_cmd_identifier_token29] = ACTIONS(2008), + [aux_sym_cmd_identifier_token30] = ACTIONS(2008), + [aux_sym_cmd_identifier_token31] = ACTIONS(2008), + [aux_sym_cmd_identifier_token32] = ACTIONS(2008), + [aux_sym_cmd_identifier_token33] = ACTIONS(2008), + [aux_sym_cmd_identifier_token34] = ACTIONS(2006), + [aux_sym_cmd_identifier_token35] = ACTIONS(2008), + [aux_sym_cmd_identifier_token36] = ACTIONS(2008), + [aux_sym_cmd_identifier_token37] = ACTIONS(2008), + [aux_sym_cmd_identifier_token38] = ACTIONS(2006), + [aux_sym_cmd_identifier_token39] = ACTIONS(2008), + [aux_sym_cmd_identifier_token40] = ACTIONS(2008), + [anon_sym_def] = ACTIONS(2006), + [anon_sym_export_DASHenv] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_module] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_error] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_in2] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_make] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_source] = ACTIONS(2006), + [anon_sym_source_DASHenv] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2006), + [anon_sym_hide] = ACTIONS(2006), + [anon_sym_hide_DASHenv] = ACTIONS(2006), + [anon_sym_overlay] = ACTIONS(2006), + [anon_sym_as] = ACTIONS(2006), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2008), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2008), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2008), + [aux_sym__val_number_token2] = ACTIONS(2008), + [aux_sym__val_number_token3] = ACTIONS(2008), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2008), + [sym__str_single_quotes] = ACTIONS(2008), + [sym__str_back_ticks] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2008), }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [aux_sym_cmd_identifier_token1] = ACTIONS(2122), - [aux_sym_cmd_identifier_token2] = ACTIONS(2122), - [aux_sym_cmd_identifier_token3] = ACTIONS(2122), - [aux_sym_cmd_identifier_token4] = ACTIONS(2122), - [aux_sym_cmd_identifier_token5] = ACTIONS(2122), - [aux_sym_cmd_identifier_token6] = ACTIONS(2122), - [aux_sym_cmd_identifier_token7] = ACTIONS(2122), - [aux_sym_cmd_identifier_token8] = ACTIONS(2122), - [aux_sym_cmd_identifier_token9] = ACTIONS(2122), - [aux_sym_cmd_identifier_token10] = ACTIONS(2122), - [aux_sym_cmd_identifier_token11] = ACTIONS(2122), - [aux_sym_cmd_identifier_token12] = ACTIONS(2122), - [aux_sym_cmd_identifier_token13] = ACTIONS(2122), - [aux_sym_cmd_identifier_token14] = ACTIONS(2122), - [aux_sym_cmd_identifier_token15] = ACTIONS(2122), - [aux_sym_cmd_identifier_token16] = ACTIONS(2122), - [aux_sym_cmd_identifier_token17] = ACTIONS(2122), - [aux_sym_cmd_identifier_token18] = ACTIONS(2122), - [aux_sym_cmd_identifier_token19] = ACTIONS(2122), - [aux_sym_cmd_identifier_token20] = ACTIONS(2122), - [aux_sym_cmd_identifier_token21] = ACTIONS(2122), - [aux_sym_cmd_identifier_token22] = ACTIONS(2122), - [aux_sym_cmd_identifier_token23] = ACTIONS(2122), - [aux_sym_cmd_identifier_token24] = ACTIONS(2122), - [aux_sym_cmd_identifier_token25] = ACTIONS(2122), - [aux_sym_cmd_identifier_token26] = ACTIONS(2122), - [aux_sym_cmd_identifier_token27] = ACTIONS(2122), - [aux_sym_cmd_identifier_token28] = ACTIONS(2122), - [aux_sym_cmd_identifier_token29] = ACTIONS(2122), - [aux_sym_cmd_identifier_token30] = ACTIONS(2122), - [aux_sym_cmd_identifier_token31] = ACTIONS(2122), - [aux_sym_cmd_identifier_token32] = ACTIONS(2122), - [aux_sym_cmd_identifier_token33] = ACTIONS(2122), - [aux_sym_cmd_identifier_token34] = ACTIONS(2122), - [aux_sym_cmd_identifier_token35] = ACTIONS(2122), - [aux_sym_cmd_identifier_token36] = ACTIONS(2122), - [aux_sym_cmd_identifier_token37] = ACTIONS(2122), - [aux_sym_cmd_identifier_token38] = ACTIONS(2122), - [aux_sym_cmd_identifier_token39] = ACTIONS(2122), - [aux_sym_cmd_identifier_token40] = ACTIONS(2122), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_in2] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_make] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), - [sym__entry_separator] = ACTIONS(2128), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1506), + [aux_sym_cmd_identifier_token3] = ACTIONS(1506), + [aux_sym_cmd_identifier_token4] = ACTIONS(1506), + [aux_sym_cmd_identifier_token5] = ACTIONS(1506), + [aux_sym_cmd_identifier_token6] = ACTIONS(1506), + [aux_sym_cmd_identifier_token7] = ACTIONS(1506), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1506), + [aux_sym_cmd_identifier_token11] = ACTIONS(1506), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1506), + [aux_sym_cmd_identifier_token17] = ACTIONS(1506), + [aux_sym_cmd_identifier_token18] = ACTIONS(1506), + [aux_sym_cmd_identifier_token19] = ACTIONS(1506), + [aux_sym_cmd_identifier_token20] = ACTIONS(1506), + [aux_sym_cmd_identifier_token21] = ACTIONS(1506), + [aux_sym_cmd_identifier_token22] = ACTIONS(1506), + [aux_sym_cmd_identifier_token23] = ACTIONS(1506), + [aux_sym_cmd_identifier_token24] = ACTIONS(1506), + [aux_sym_cmd_identifier_token25] = ACTIONS(1506), + [aux_sym_cmd_identifier_token26] = ACTIONS(1506), + [aux_sym_cmd_identifier_token27] = ACTIONS(1506), + [aux_sym_cmd_identifier_token28] = ACTIONS(1506), + [aux_sym_cmd_identifier_token29] = ACTIONS(1506), + [aux_sym_cmd_identifier_token30] = ACTIONS(1506), + [aux_sym_cmd_identifier_token31] = ACTIONS(1506), + [aux_sym_cmd_identifier_token32] = ACTIONS(1506), + [aux_sym_cmd_identifier_token33] = ACTIONS(1506), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1506), + [aux_sym_cmd_identifier_token36] = ACTIONS(1506), + [aux_sym_cmd_identifier_token37] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [sym__entry_separator] = ACTIONS(1508), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2128), + [sym_raw_string_begin] = ACTIONS(1508), }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in2] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [sym__entry_separator] = ACTIONS(1865), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1865), + [sym_raw_string_begin] = ACTIONS(1874), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [aux_sym_cmd_identifier_token2] = ACTIONS(2398), - [aux_sym_cmd_identifier_token3] = ACTIONS(2398), - [aux_sym_cmd_identifier_token4] = ACTIONS(2398), - [aux_sym_cmd_identifier_token5] = ACTIONS(2398), - [aux_sym_cmd_identifier_token6] = ACTIONS(2398), - [aux_sym_cmd_identifier_token7] = ACTIONS(2398), - [aux_sym_cmd_identifier_token8] = ACTIONS(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2398), - [aux_sym_cmd_identifier_token11] = ACTIONS(2398), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [aux_sym_cmd_identifier_token16] = ACTIONS(2398), - [aux_sym_cmd_identifier_token17] = ACTIONS(2398), - [aux_sym_cmd_identifier_token18] = ACTIONS(2398), - [aux_sym_cmd_identifier_token19] = ACTIONS(2398), - [aux_sym_cmd_identifier_token20] = ACTIONS(2398), - [aux_sym_cmd_identifier_token21] = ACTIONS(2398), - [aux_sym_cmd_identifier_token22] = ACTIONS(2398), - [aux_sym_cmd_identifier_token23] = ACTIONS(2398), - [aux_sym_cmd_identifier_token24] = ACTIONS(2398), - [aux_sym_cmd_identifier_token25] = ACTIONS(2398), - [aux_sym_cmd_identifier_token26] = ACTIONS(2398), - [aux_sym_cmd_identifier_token27] = ACTIONS(2398), - [aux_sym_cmd_identifier_token28] = ACTIONS(2398), - [aux_sym_cmd_identifier_token29] = ACTIONS(2398), - [aux_sym_cmd_identifier_token30] = ACTIONS(2398), - [aux_sym_cmd_identifier_token31] = ACTIONS(2398), - [aux_sym_cmd_identifier_token32] = ACTIONS(2398), - [aux_sym_cmd_identifier_token33] = ACTIONS(2398), - [aux_sym_cmd_identifier_token34] = ACTIONS(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2398), - [aux_sym_cmd_identifier_token36] = ACTIONS(2398), - [aux_sym_cmd_identifier_token37] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2398), - [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_DASH2] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in2] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_PLUS2] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), - [aux_sym__val_number_decimal_token1] = ACTIONS(2398), - [aux_sym__val_number_decimal_token2] = ACTIONS(2398), - [aux_sym__val_number_decimal_token3] = ACTIONS(2398), - [aux_sym__val_number_decimal_token4] = ACTIONS(2398), - [aux_sym__val_number_token1] = ACTIONS(2398), - [aux_sym__val_number_token2] = ACTIONS(2398), - [aux_sym__val_number_token3] = ACTIONS(2398), - [aux_sym__val_number_token4] = ACTIONS(2398), - [aux_sym__val_number_token5] = ACTIONS(2398), - [aux_sym__val_number_token6] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [sym__str_single_quotes] = ACTIONS(2398), - [sym__str_back_ticks] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [sym__entry_separator] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2400), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_alias] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_let_DASHenv] = ACTIONS(2240), + [anon_sym_mut] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [aux_sym_cmd_identifier_token1] = ACTIONS(2240), + [aux_sym_cmd_identifier_token2] = ACTIONS(2242), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [aux_sym_cmd_identifier_token6] = ACTIONS(2242), + [aux_sym_cmd_identifier_token7] = ACTIONS(2242), + [aux_sym_cmd_identifier_token8] = ACTIONS(2240), + [aux_sym_cmd_identifier_token9] = ACTIONS(2240), + [aux_sym_cmd_identifier_token10] = ACTIONS(2242), + [aux_sym_cmd_identifier_token11] = ACTIONS(2242), + [aux_sym_cmd_identifier_token12] = ACTIONS(2240), + [aux_sym_cmd_identifier_token13] = ACTIONS(2240), + [aux_sym_cmd_identifier_token14] = ACTIONS(2240), + [aux_sym_cmd_identifier_token15] = ACTIONS(2240), + [aux_sym_cmd_identifier_token16] = ACTIONS(2242), + [aux_sym_cmd_identifier_token17] = ACTIONS(2242), + [aux_sym_cmd_identifier_token18] = ACTIONS(2242), + [aux_sym_cmd_identifier_token19] = ACTIONS(2242), + [aux_sym_cmd_identifier_token20] = ACTIONS(2242), + [aux_sym_cmd_identifier_token21] = ACTIONS(2242), + [aux_sym_cmd_identifier_token22] = ACTIONS(2242), + [aux_sym_cmd_identifier_token23] = ACTIONS(2242), + [aux_sym_cmd_identifier_token24] = ACTIONS(2242), + [aux_sym_cmd_identifier_token25] = ACTIONS(2242), + [aux_sym_cmd_identifier_token26] = ACTIONS(2242), + [aux_sym_cmd_identifier_token27] = ACTIONS(2242), + [aux_sym_cmd_identifier_token28] = ACTIONS(2242), + [aux_sym_cmd_identifier_token29] = ACTIONS(2242), + [aux_sym_cmd_identifier_token30] = ACTIONS(2242), + [aux_sym_cmd_identifier_token31] = ACTIONS(2242), + [aux_sym_cmd_identifier_token32] = ACTIONS(2242), + [aux_sym_cmd_identifier_token33] = ACTIONS(2242), + [aux_sym_cmd_identifier_token34] = ACTIONS(2240), + [aux_sym_cmd_identifier_token35] = ACTIONS(2242), + [aux_sym_cmd_identifier_token36] = ACTIONS(2242), + [aux_sym_cmd_identifier_token37] = ACTIONS(2242), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2242), + [aux_sym_cmd_identifier_token40] = ACTIONS(2242), + [anon_sym_def] = ACTIONS(2240), + [anon_sym_export_DASHenv] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_error] = ACTIONS(2240), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_in2] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_make] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_catch] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_source] = ACTIONS(2240), + [anon_sym_source_DASHenv] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_hide] = ACTIONS(2240), + [anon_sym_hide_DASHenv] = ACTIONS(2240), + [anon_sym_overlay] = ACTIONS(2240), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_PLUS2] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2242), + [aux_sym__val_number_decimal_token4] = ACTIONS(2242), + [aux_sym__val_number_token1] = ACTIONS(2242), + [aux_sym__val_number_token2] = ACTIONS(2242), + [aux_sym__val_number_token3] = ACTIONS(2242), + [aux_sym__val_number_token4] = ACTIONS(2240), + [aux_sym__val_number_token5] = ACTIONS(2240), + [aux_sym__val_number_token6] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2242), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_alias] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_let_DASHenv] = ACTIONS(2402), - [anon_sym_mut] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [aux_sym_cmd_identifier_token1] = ACTIONS(2402), - [aux_sym_cmd_identifier_token2] = ACTIONS(2402), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), - [aux_sym_cmd_identifier_token6] = ACTIONS(2402), - [aux_sym_cmd_identifier_token7] = ACTIONS(2402), - [aux_sym_cmd_identifier_token8] = ACTIONS(2402), - [aux_sym_cmd_identifier_token9] = ACTIONS(2402), - [aux_sym_cmd_identifier_token10] = ACTIONS(2402), - [aux_sym_cmd_identifier_token11] = ACTIONS(2402), - [aux_sym_cmd_identifier_token12] = ACTIONS(2402), - [aux_sym_cmd_identifier_token13] = ACTIONS(2402), - [aux_sym_cmd_identifier_token14] = ACTIONS(2402), - [aux_sym_cmd_identifier_token15] = ACTIONS(2402), - [aux_sym_cmd_identifier_token16] = ACTIONS(2402), - [aux_sym_cmd_identifier_token17] = ACTIONS(2402), - [aux_sym_cmd_identifier_token18] = ACTIONS(2402), - [aux_sym_cmd_identifier_token19] = ACTIONS(2402), - [aux_sym_cmd_identifier_token20] = ACTIONS(2402), - [aux_sym_cmd_identifier_token21] = ACTIONS(2402), - [aux_sym_cmd_identifier_token22] = ACTIONS(2402), - [aux_sym_cmd_identifier_token23] = ACTIONS(2402), - [aux_sym_cmd_identifier_token24] = ACTIONS(2402), - [aux_sym_cmd_identifier_token25] = ACTIONS(2402), - [aux_sym_cmd_identifier_token26] = ACTIONS(2402), - [aux_sym_cmd_identifier_token27] = ACTIONS(2402), - [aux_sym_cmd_identifier_token28] = ACTIONS(2402), - [aux_sym_cmd_identifier_token29] = ACTIONS(2402), - [aux_sym_cmd_identifier_token30] = ACTIONS(2402), - [aux_sym_cmd_identifier_token31] = ACTIONS(2402), - [aux_sym_cmd_identifier_token32] = ACTIONS(2402), - [aux_sym_cmd_identifier_token33] = ACTIONS(2402), - [aux_sym_cmd_identifier_token34] = ACTIONS(2402), - [aux_sym_cmd_identifier_token35] = ACTIONS(2402), - [aux_sym_cmd_identifier_token36] = ACTIONS(2402), - [aux_sym_cmd_identifier_token37] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2402), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2402), - [anon_sym_export_DASHenv] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2402), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_in2] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_make] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_source] = ACTIONS(2402), - [anon_sym_source_DASHenv] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_hide] = ACTIONS(2402), - [anon_sym_hide_DASHenv] = ACTIONS(2402), - [anon_sym_overlay] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2402), - [aux_sym__val_number_decimal_token2] = ACTIONS(2402), - [aux_sym__val_number_decimal_token3] = ACTIONS(2402), - [aux_sym__val_number_decimal_token4] = ACTIONS(2402), - [aux_sym__val_number_token1] = ACTIONS(2402), - [aux_sym__val_number_token2] = ACTIONS(2402), - [aux_sym__val_number_token3] = ACTIONS(2402), - [aux_sym__val_number_token4] = ACTIONS(2402), - [aux_sym__val_number_token5] = ACTIONS(2402), - [aux_sym__val_number_token6] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [sym__str_single_quotes] = ACTIONS(2402), - [sym__str_back_ticks] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [sym__entry_separator] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2404), + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2406), - [aux_sym_cmd_identifier_token3] = ACTIONS(2406), - [aux_sym_cmd_identifier_token4] = ACTIONS(2406), - [aux_sym_cmd_identifier_token5] = ACTIONS(2406), - [aux_sym_cmd_identifier_token6] = ACTIONS(2406), - [aux_sym_cmd_identifier_token7] = ACTIONS(2406), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2406), - [aux_sym_cmd_identifier_token11] = ACTIONS(2406), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2406), - [aux_sym_cmd_identifier_token17] = ACTIONS(2406), - [aux_sym_cmd_identifier_token18] = ACTIONS(2406), - [aux_sym_cmd_identifier_token19] = ACTIONS(2406), - [aux_sym_cmd_identifier_token20] = ACTIONS(2406), - [aux_sym_cmd_identifier_token21] = ACTIONS(2406), - [aux_sym_cmd_identifier_token22] = ACTIONS(2406), - [aux_sym_cmd_identifier_token23] = ACTIONS(2406), - [aux_sym_cmd_identifier_token24] = ACTIONS(2406), - [aux_sym_cmd_identifier_token25] = ACTIONS(2406), - [aux_sym_cmd_identifier_token26] = ACTIONS(2406), - [aux_sym_cmd_identifier_token27] = ACTIONS(2406), - [aux_sym_cmd_identifier_token28] = ACTIONS(2406), - [aux_sym_cmd_identifier_token29] = ACTIONS(2406), - [aux_sym_cmd_identifier_token30] = ACTIONS(2406), - [aux_sym_cmd_identifier_token31] = ACTIONS(2406), - [aux_sym_cmd_identifier_token32] = ACTIONS(2406), - [aux_sym_cmd_identifier_token33] = ACTIONS(2406), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2406), - [aux_sym_cmd_identifier_token36] = ACTIONS(2406), - [aux_sym_cmd_identifier_token37] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2406), - [aux_sym_cmd_identifier_token40] = ACTIONS(2406), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_DASH2] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in2] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_PLUS2] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [aux_sym__val_number_decimal_token2] = ACTIONS(2406), - [aux_sym__val_number_decimal_token3] = ACTIONS(2406), - [aux_sym__val_number_decimal_token4] = ACTIONS(2406), - [aux_sym__val_number_token1] = ACTIONS(2406), - [aux_sym__val_number_token2] = ACTIONS(2406), - [aux_sym__val_number_token3] = ACTIONS(2406), - [aux_sym__val_number_token4] = ACTIONS(2406), - [aux_sym__val_number_token5] = ACTIONS(2406), - [aux_sym__val_number_token6] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym__str_single_quotes] = ACTIONS(2406), - [sym__str_back_ticks] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), - [sym__entry_separator] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2408), + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2217), + [aux_sym_cmd_identifier_token3] = ACTIONS(2217), + [aux_sym_cmd_identifier_token4] = ACTIONS(2217), + [aux_sym_cmd_identifier_token5] = ACTIONS(2217), + [aux_sym_cmd_identifier_token6] = ACTIONS(2217), + [aux_sym_cmd_identifier_token7] = ACTIONS(2217), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2217), + [aux_sym_cmd_identifier_token11] = ACTIONS(2217), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2217), + [aux_sym_cmd_identifier_token17] = ACTIONS(2217), + [aux_sym_cmd_identifier_token18] = ACTIONS(2217), + [aux_sym_cmd_identifier_token19] = ACTIONS(2217), + [aux_sym_cmd_identifier_token20] = ACTIONS(2217), + [aux_sym_cmd_identifier_token21] = ACTIONS(2217), + [aux_sym_cmd_identifier_token22] = ACTIONS(2217), + [aux_sym_cmd_identifier_token23] = ACTIONS(2217), + [aux_sym_cmd_identifier_token24] = ACTIONS(2217), + [aux_sym_cmd_identifier_token25] = ACTIONS(2217), + [aux_sym_cmd_identifier_token26] = ACTIONS(2217), + [aux_sym_cmd_identifier_token27] = ACTIONS(2217), + [aux_sym_cmd_identifier_token28] = ACTIONS(2217), + [aux_sym_cmd_identifier_token29] = ACTIONS(2217), + [aux_sym_cmd_identifier_token30] = ACTIONS(2217), + [aux_sym_cmd_identifier_token31] = ACTIONS(2217), + [aux_sym_cmd_identifier_token32] = ACTIONS(2217), + [aux_sym_cmd_identifier_token33] = ACTIONS(2217), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2217), + [aux_sym_cmd_identifier_token36] = ACTIONS(2217), + [aux_sym_cmd_identifier_token37] = ACTIONS(2217), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2217), + [aux_sym_cmd_identifier_token40] = ACTIONS(2217), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), + [anon_sym_DOT_DOT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2217), }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2410), - [aux_sym_cmd_identifier_token3] = ACTIONS(2410), - [aux_sym_cmd_identifier_token4] = ACTIONS(2410), - [aux_sym_cmd_identifier_token5] = ACTIONS(2410), - [aux_sym_cmd_identifier_token6] = ACTIONS(2410), - [aux_sym_cmd_identifier_token7] = ACTIONS(2410), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2410), - [aux_sym_cmd_identifier_token11] = ACTIONS(2410), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2410), - [aux_sym_cmd_identifier_token17] = ACTIONS(2410), - [aux_sym_cmd_identifier_token18] = ACTIONS(2410), - [aux_sym_cmd_identifier_token19] = ACTIONS(2410), - [aux_sym_cmd_identifier_token20] = ACTIONS(2410), - [aux_sym_cmd_identifier_token21] = ACTIONS(2410), - [aux_sym_cmd_identifier_token22] = ACTIONS(2410), - [aux_sym_cmd_identifier_token23] = ACTIONS(2410), - [aux_sym_cmd_identifier_token24] = ACTIONS(2410), - [aux_sym_cmd_identifier_token25] = ACTIONS(2410), - [aux_sym_cmd_identifier_token26] = ACTIONS(2410), - [aux_sym_cmd_identifier_token27] = ACTIONS(2410), - [aux_sym_cmd_identifier_token28] = ACTIONS(2410), - [aux_sym_cmd_identifier_token29] = ACTIONS(2410), - [aux_sym_cmd_identifier_token30] = ACTIONS(2410), - [aux_sym_cmd_identifier_token31] = ACTIONS(2410), - [aux_sym_cmd_identifier_token32] = ACTIONS(2410), - [aux_sym_cmd_identifier_token33] = ACTIONS(2410), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2410), - [aux_sym_cmd_identifier_token36] = ACTIONS(2410), - [aux_sym_cmd_identifier_token37] = ACTIONS(2410), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2410), - [aux_sym_cmd_identifier_token40] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_DASH2] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in2] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_PLUS2] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2410), - [aux_sym__val_number_decimal_token3] = ACTIONS(2410), - [aux_sym__val_number_decimal_token4] = ACTIONS(2410), - [aux_sym__val_number_token1] = ACTIONS(2410), - [aux_sym__val_number_token2] = ACTIONS(2410), - [aux_sym__val_number_token3] = ACTIONS(2410), - [aux_sym__val_number_token4] = ACTIONS(2410), - [aux_sym__val_number_token5] = ACTIONS(2410), - [aux_sym__val_number_token6] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [sym__str_single_quotes] = ACTIONS(2410), - [sym__str_back_ticks] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), - [sym__entry_separator] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2412), + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_alias] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_let_DASHenv] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [aux_sym_cmd_identifier_token1] = ACTIONS(2219), + [aux_sym_cmd_identifier_token2] = ACTIONS(2221), + [aux_sym_cmd_identifier_token3] = ACTIONS(2221), + [aux_sym_cmd_identifier_token4] = ACTIONS(2221), + [aux_sym_cmd_identifier_token5] = ACTIONS(2221), + [aux_sym_cmd_identifier_token6] = ACTIONS(2221), + [aux_sym_cmd_identifier_token7] = ACTIONS(2221), + [aux_sym_cmd_identifier_token8] = ACTIONS(2219), + [aux_sym_cmd_identifier_token9] = ACTIONS(2219), + [aux_sym_cmd_identifier_token10] = ACTIONS(2221), + [aux_sym_cmd_identifier_token11] = ACTIONS(2221), + [aux_sym_cmd_identifier_token12] = ACTIONS(2219), + [aux_sym_cmd_identifier_token13] = ACTIONS(2219), + [aux_sym_cmd_identifier_token14] = ACTIONS(2219), + [aux_sym_cmd_identifier_token15] = ACTIONS(2219), + [aux_sym_cmd_identifier_token16] = ACTIONS(2221), + [aux_sym_cmd_identifier_token17] = ACTIONS(2221), + [aux_sym_cmd_identifier_token18] = ACTIONS(2221), + [aux_sym_cmd_identifier_token19] = ACTIONS(2221), + [aux_sym_cmd_identifier_token20] = ACTIONS(2221), + [aux_sym_cmd_identifier_token21] = ACTIONS(2221), + [aux_sym_cmd_identifier_token22] = ACTIONS(2221), + [aux_sym_cmd_identifier_token23] = ACTIONS(2221), + [aux_sym_cmd_identifier_token24] = ACTIONS(2221), + [aux_sym_cmd_identifier_token25] = ACTIONS(2221), + [aux_sym_cmd_identifier_token26] = ACTIONS(2221), + [aux_sym_cmd_identifier_token27] = ACTIONS(2221), + [aux_sym_cmd_identifier_token28] = ACTIONS(2221), + [aux_sym_cmd_identifier_token29] = ACTIONS(2221), + [aux_sym_cmd_identifier_token30] = ACTIONS(2221), + [aux_sym_cmd_identifier_token31] = ACTIONS(2221), + [aux_sym_cmd_identifier_token32] = ACTIONS(2221), + [aux_sym_cmd_identifier_token33] = ACTIONS(2221), + [aux_sym_cmd_identifier_token34] = ACTIONS(2219), + [aux_sym_cmd_identifier_token35] = ACTIONS(2221), + [aux_sym_cmd_identifier_token36] = ACTIONS(2221), + [aux_sym_cmd_identifier_token37] = ACTIONS(2221), + [aux_sym_cmd_identifier_token38] = ACTIONS(2219), + [aux_sym_cmd_identifier_token39] = ACTIONS(2221), + [aux_sym_cmd_identifier_token40] = ACTIONS(2221), + [anon_sym_def] = ACTIONS(2219), + [anon_sym_export_DASHenv] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_error] = ACTIONS(2219), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_in2] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_make] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_source] = ACTIONS(2219), + [anon_sym_source_DASHenv] = ACTIONS(2219), + [anon_sym_register] = ACTIONS(2219), + [anon_sym_hide] = ACTIONS(2219), + [anon_sym_hide_DASHenv] = ACTIONS(2219), + [anon_sym_overlay] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2221), + [anon_sym_DOT_DOT2] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2221), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2221), + [aux_sym__val_number_decimal_token3] = ACTIONS(2221), + [aux_sym__val_number_decimal_token4] = ACTIONS(2221), + [aux_sym__val_number_token1] = ACTIONS(2221), + [aux_sym__val_number_token2] = ACTIONS(2221), + [aux_sym__val_number_token3] = ACTIONS(2221), + [aux_sym__val_number_token4] = ACTIONS(2219), + [aux_sym__val_number_token5] = ACTIONS(2219), + [aux_sym__val_number_token6] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2221), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2414), - [aux_sym_cmd_identifier_token3] = ACTIONS(2414), - [aux_sym_cmd_identifier_token4] = ACTIONS(2414), - [aux_sym_cmd_identifier_token5] = ACTIONS(2414), - [aux_sym_cmd_identifier_token6] = ACTIONS(2414), - [aux_sym_cmd_identifier_token7] = ACTIONS(2414), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2414), - [aux_sym_cmd_identifier_token11] = ACTIONS(2414), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2414), - [aux_sym_cmd_identifier_token17] = ACTIONS(2414), - [aux_sym_cmd_identifier_token18] = ACTIONS(2414), - [aux_sym_cmd_identifier_token19] = ACTIONS(2414), - [aux_sym_cmd_identifier_token20] = ACTIONS(2414), - [aux_sym_cmd_identifier_token21] = ACTIONS(2414), - [aux_sym_cmd_identifier_token22] = ACTIONS(2414), - [aux_sym_cmd_identifier_token23] = ACTIONS(2414), - [aux_sym_cmd_identifier_token24] = ACTIONS(2414), - [aux_sym_cmd_identifier_token25] = ACTIONS(2414), - [aux_sym_cmd_identifier_token26] = ACTIONS(2414), - [aux_sym_cmd_identifier_token27] = ACTIONS(2414), - [aux_sym_cmd_identifier_token28] = ACTIONS(2414), - [aux_sym_cmd_identifier_token29] = ACTIONS(2414), - [aux_sym_cmd_identifier_token30] = ACTIONS(2414), - [aux_sym_cmd_identifier_token31] = ACTIONS(2414), - [aux_sym_cmd_identifier_token32] = ACTIONS(2414), - [aux_sym_cmd_identifier_token33] = ACTIONS(2414), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2414), - [aux_sym_cmd_identifier_token36] = ACTIONS(2414), - [aux_sym_cmd_identifier_token37] = ACTIONS(2414), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2414), - [aux_sym_cmd_identifier_token40] = ACTIONS(2414), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_DASH2] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in2] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_PLUS2] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [aux_sym__val_number_decimal_token2] = ACTIONS(2414), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), - [aux_sym__val_number_token1] = ACTIONS(2414), - [aux_sym__val_number_token2] = ACTIONS(2414), - [aux_sym__val_number_token3] = ACTIONS(2414), - [aux_sym__val_number_token4] = ACTIONS(2414), - [aux_sym__val_number_token5] = ACTIONS(2414), - [aux_sym__val_number_token6] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2414), - [sym__str_single_quotes] = ACTIONS(2414), - [sym__str_back_ticks] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [sym__entry_separator] = ACTIONS(2416), + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1490), + [aux_sym_cmd_identifier_token3] = ACTIONS(1490), + [aux_sym_cmd_identifier_token4] = ACTIONS(1490), + [aux_sym_cmd_identifier_token5] = ACTIONS(1490), + [aux_sym_cmd_identifier_token6] = ACTIONS(1490), + [aux_sym_cmd_identifier_token7] = ACTIONS(1490), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1490), + [aux_sym_cmd_identifier_token11] = ACTIONS(1490), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1490), + [aux_sym_cmd_identifier_token17] = ACTIONS(1490), + [aux_sym_cmd_identifier_token18] = ACTIONS(1490), + [aux_sym_cmd_identifier_token19] = ACTIONS(1490), + [aux_sym_cmd_identifier_token20] = ACTIONS(1490), + [aux_sym_cmd_identifier_token21] = ACTIONS(1490), + [aux_sym_cmd_identifier_token22] = ACTIONS(1490), + [aux_sym_cmd_identifier_token23] = ACTIONS(1490), + [aux_sym_cmd_identifier_token24] = ACTIONS(1490), + [aux_sym_cmd_identifier_token25] = ACTIONS(1490), + [aux_sym_cmd_identifier_token26] = ACTIONS(1490), + [aux_sym_cmd_identifier_token27] = ACTIONS(1490), + [aux_sym_cmd_identifier_token28] = ACTIONS(1490), + [aux_sym_cmd_identifier_token29] = ACTIONS(1490), + [aux_sym_cmd_identifier_token30] = ACTIONS(1490), + [aux_sym_cmd_identifier_token31] = ACTIONS(1490), + [aux_sym_cmd_identifier_token32] = ACTIONS(1490), + [aux_sym_cmd_identifier_token33] = ACTIONS(1490), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1490), + [aux_sym_cmd_identifier_token36] = ACTIONS(1490), + [aux_sym_cmd_identifier_token37] = ACTIONS(1490), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1490), + [aux_sym_cmd_identifier_token40] = ACTIONS(1490), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(2312), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1490), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1490), + [aux_sym__val_number_decimal_token4] = ACTIONS(1490), + [aux_sym__val_number_token1] = ACTIONS(1490), + [aux_sym__val_number_token2] = ACTIONS(1490), + [aux_sym__val_number_token3] = ACTIONS(1490), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym__str_single_quotes] = ACTIONS(1490), + [sym__str_back_ticks] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1490), + [sym__entry_separator] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2416), + [sym_raw_string_begin] = ACTIONS(1492), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2418), - [aux_sym_cmd_identifier_token3] = ACTIONS(2418), - [aux_sym_cmd_identifier_token4] = ACTIONS(2418), - [aux_sym_cmd_identifier_token5] = ACTIONS(2418), - [aux_sym_cmd_identifier_token6] = ACTIONS(2418), - [aux_sym_cmd_identifier_token7] = ACTIONS(2418), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2418), - [aux_sym_cmd_identifier_token11] = ACTIONS(2418), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2418), - [aux_sym_cmd_identifier_token17] = ACTIONS(2418), - [aux_sym_cmd_identifier_token18] = ACTIONS(2418), - [aux_sym_cmd_identifier_token19] = ACTIONS(2418), - [aux_sym_cmd_identifier_token20] = ACTIONS(2418), - [aux_sym_cmd_identifier_token21] = ACTIONS(2418), - [aux_sym_cmd_identifier_token22] = ACTIONS(2418), - [aux_sym_cmd_identifier_token23] = ACTIONS(2418), - [aux_sym_cmd_identifier_token24] = ACTIONS(2418), - [aux_sym_cmd_identifier_token25] = ACTIONS(2418), - [aux_sym_cmd_identifier_token26] = ACTIONS(2418), - [aux_sym_cmd_identifier_token27] = ACTIONS(2418), - [aux_sym_cmd_identifier_token28] = ACTIONS(2418), - [aux_sym_cmd_identifier_token29] = ACTIONS(2418), - [aux_sym_cmd_identifier_token30] = ACTIONS(2418), - [aux_sym_cmd_identifier_token31] = ACTIONS(2418), - [aux_sym_cmd_identifier_token32] = ACTIONS(2418), - [aux_sym_cmd_identifier_token33] = ACTIONS(2418), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2418), - [aux_sym_cmd_identifier_token36] = ACTIONS(2418), - [aux_sym_cmd_identifier_token37] = ACTIONS(2418), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2418), - [aux_sym_cmd_identifier_token40] = ACTIONS(2418), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in2] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [aux_sym__val_number_decimal_token2] = ACTIONS(2418), - [aux_sym__val_number_decimal_token3] = ACTIONS(2418), - [aux_sym__val_number_decimal_token4] = ACTIONS(2418), - [aux_sym__val_number_token1] = ACTIONS(2418), - [aux_sym__val_number_token2] = ACTIONS(2418), - [aux_sym__val_number_token3] = ACTIONS(2418), - [aux_sym__val_number_token4] = ACTIONS(2418), - [aux_sym__val_number_token5] = ACTIONS(2418), - [aux_sym__val_number_token6] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2418), - [sym__str_single_quotes] = ACTIONS(2418), - [sym__str_back_ticks] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), - [sym__entry_separator] = ACTIONS(2420), + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(2314), + [aux_sym__immediate_decimal_token2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2420), + [sym_raw_string_begin] = ACTIONS(1874), }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2203), + [aux_sym_cmd_identifier_token3] = ACTIONS(2203), + [aux_sym_cmd_identifier_token4] = ACTIONS(2203), + [aux_sym_cmd_identifier_token5] = ACTIONS(2203), + [aux_sym_cmd_identifier_token6] = ACTIONS(2203), + [aux_sym_cmd_identifier_token7] = ACTIONS(2203), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2203), + [aux_sym_cmd_identifier_token11] = ACTIONS(2203), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2203), + [aux_sym_cmd_identifier_token17] = ACTIONS(2203), + [aux_sym_cmd_identifier_token18] = ACTIONS(2203), + [aux_sym_cmd_identifier_token19] = ACTIONS(2203), + [aux_sym_cmd_identifier_token20] = ACTIONS(2203), + [aux_sym_cmd_identifier_token21] = ACTIONS(2203), + [aux_sym_cmd_identifier_token22] = ACTIONS(2203), + [aux_sym_cmd_identifier_token23] = ACTIONS(2203), + [aux_sym_cmd_identifier_token24] = ACTIONS(2203), + [aux_sym_cmd_identifier_token25] = ACTIONS(2203), + [aux_sym_cmd_identifier_token26] = ACTIONS(2203), + [aux_sym_cmd_identifier_token27] = ACTIONS(2203), + [aux_sym_cmd_identifier_token28] = ACTIONS(2203), + [aux_sym_cmd_identifier_token29] = ACTIONS(2203), + [aux_sym_cmd_identifier_token30] = ACTIONS(2203), + [aux_sym_cmd_identifier_token31] = ACTIONS(2203), + [aux_sym_cmd_identifier_token32] = ACTIONS(2203), + [aux_sym_cmd_identifier_token33] = ACTIONS(2203), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2203), + [aux_sym_cmd_identifier_token36] = ACTIONS(2203), + [aux_sym_cmd_identifier_token37] = ACTIONS(2203), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2203), + [aux_sym_cmd_identifier_token40] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), + [anon_sym_DOT_DOT2] = ACTIONS(2318), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2320), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2203), + [aux_sym__val_number_decimal_token3] = ACTIONS(2203), + [aux_sym__val_number_decimal_token4] = ACTIONS(2203), + [aux_sym__val_number_token1] = ACTIONS(2203), + [aux_sym__val_number_token2] = ACTIONS(2203), + [aux_sym__val_number_token3] = ACTIONS(2203), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2203), + [sym__str_single_quotes] = ACTIONS(2203), + [sym__str_back_ticks] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2203), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2422), - [aux_sym_cmd_identifier_token3] = ACTIONS(2422), - [aux_sym_cmd_identifier_token4] = ACTIONS(2422), - [aux_sym_cmd_identifier_token5] = ACTIONS(2422), - [aux_sym_cmd_identifier_token6] = ACTIONS(2422), - [aux_sym_cmd_identifier_token7] = ACTIONS(2422), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2422), - [aux_sym_cmd_identifier_token11] = ACTIONS(2422), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2422), - [aux_sym_cmd_identifier_token17] = ACTIONS(2422), - [aux_sym_cmd_identifier_token18] = ACTIONS(2422), - [aux_sym_cmd_identifier_token19] = ACTIONS(2422), - [aux_sym_cmd_identifier_token20] = ACTIONS(2422), - [aux_sym_cmd_identifier_token21] = ACTIONS(2422), - [aux_sym_cmd_identifier_token22] = ACTIONS(2422), - [aux_sym_cmd_identifier_token23] = ACTIONS(2422), - [aux_sym_cmd_identifier_token24] = ACTIONS(2422), - [aux_sym_cmd_identifier_token25] = ACTIONS(2422), - [aux_sym_cmd_identifier_token26] = ACTIONS(2422), - [aux_sym_cmd_identifier_token27] = ACTIONS(2422), - [aux_sym_cmd_identifier_token28] = ACTIONS(2422), - [aux_sym_cmd_identifier_token29] = ACTIONS(2422), - [aux_sym_cmd_identifier_token30] = ACTIONS(2422), - [aux_sym_cmd_identifier_token31] = ACTIONS(2422), - [aux_sym_cmd_identifier_token32] = ACTIONS(2422), - [aux_sym_cmd_identifier_token33] = ACTIONS(2422), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2422), - [aux_sym_cmd_identifier_token36] = ACTIONS(2422), - [aux_sym_cmd_identifier_token37] = ACTIONS(2422), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2422), - [aux_sym_cmd_identifier_token40] = ACTIONS(2422), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in2] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [aux_sym__val_number_decimal_token2] = ACTIONS(2422), - [aux_sym__val_number_decimal_token3] = ACTIONS(2422), - [aux_sym__val_number_decimal_token4] = ACTIONS(2422), - [aux_sym__val_number_token1] = ACTIONS(2422), - [aux_sym__val_number_token2] = ACTIONS(2422), - [aux_sym__val_number_token3] = ACTIONS(2422), - [aux_sym__val_number_token4] = ACTIONS(2422), - [aux_sym__val_number_token5] = ACTIONS(2422), - [aux_sym__val_number_token6] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2422), - [sym__str_single_quotes] = ACTIONS(2422), - [sym__str_back_ticks] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), - [sym__entry_separator] = ACTIONS(2424), + [542] = { + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2424), + [sym_raw_string_begin] = ACTIONS(1892), }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2426), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), - [aux_sym_cmd_identifier_token6] = ACTIONS(2426), - [aux_sym_cmd_identifier_token7] = ACTIONS(2426), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2426), - [aux_sym_cmd_identifier_token11] = ACTIONS(2426), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2426), - [aux_sym_cmd_identifier_token17] = ACTIONS(2426), - [aux_sym_cmd_identifier_token18] = ACTIONS(2426), - [aux_sym_cmd_identifier_token19] = ACTIONS(2426), - [aux_sym_cmd_identifier_token20] = ACTIONS(2426), - [aux_sym_cmd_identifier_token21] = ACTIONS(2426), - [aux_sym_cmd_identifier_token22] = ACTIONS(2426), - [aux_sym_cmd_identifier_token23] = ACTIONS(2426), - [aux_sym_cmd_identifier_token24] = ACTIONS(2426), - [aux_sym_cmd_identifier_token25] = ACTIONS(2426), - [aux_sym_cmd_identifier_token26] = ACTIONS(2426), - [aux_sym_cmd_identifier_token27] = ACTIONS(2426), - [aux_sym_cmd_identifier_token28] = ACTIONS(2426), - [aux_sym_cmd_identifier_token29] = ACTIONS(2426), - [aux_sym_cmd_identifier_token30] = ACTIONS(2426), - [aux_sym_cmd_identifier_token31] = ACTIONS(2426), - [aux_sym_cmd_identifier_token32] = ACTIONS(2426), - [aux_sym_cmd_identifier_token33] = ACTIONS(2426), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2426), - [aux_sym_cmd_identifier_token36] = ACTIONS(2426), - [aux_sym_cmd_identifier_token37] = ACTIONS(2426), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2426), - [aux_sym_cmd_identifier_token40] = ACTIONS(2426), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in2] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [aux_sym__val_number_decimal_token2] = ACTIONS(2426), - [aux_sym__val_number_decimal_token3] = ACTIONS(2426), - [aux_sym__val_number_decimal_token4] = ACTIONS(2426), - [aux_sym__val_number_token1] = ACTIONS(2426), - [aux_sym__val_number_token2] = ACTIONS(2426), - [aux_sym__val_number_token3] = ACTIONS(2426), - [aux_sym__val_number_token4] = ACTIONS(2426), - [aux_sym__val_number_token5] = ACTIONS(2426), - [aux_sym__val_number_token6] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [sym__str_single_quotes] = ACTIONS(2426), - [sym__str_back_ticks] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), - [sym__entry_separator] = ACTIONS(2428), + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2428), + [sym_raw_string_begin] = ACTIONS(1921), }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_alias] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_let_DASHenv] = ACTIONS(2430), - [anon_sym_mut] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [aux_sym_cmd_identifier_token1] = ACTIONS(2430), - [aux_sym_cmd_identifier_token2] = ACTIONS(2430), - [aux_sym_cmd_identifier_token3] = ACTIONS(2430), - [aux_sym_cmd_identifier_token4] = ACTIONS(2430), - [aux_sym_cmd_identifier_token5] = ACTIONS(2430), - [aux_sym_cmd_identifier_token6] = ACTIONS(2430), - [aux_sym_cmd_identifier_token7] = ACTIONS(2430), - [aux_sym_cmd_identifier_token8] = ACTIONS(2430), - [aux_sym_cmd_identifier_token9] = ACTIONS(2430), - [aux_sym_cmd_identifier_token10] = ACTIONS(2430), - [aux_sym_cmd_identifier_token11] = ACTIONS(2430), - [aux_sym_cmd_identifier_token12] = ACTIONS(2430), - [aux_sym_cmd_identifier_token13] = ACTIONS(2430), - [aux_sym_cmd_identifier_token14] = ACTIONS(2430), - [aux_sym_cmd_identifier_token15] = ACTIONS(2430), - [aux_sym_cmd_identifier_token16] = ACTIONS(2430), - [aux_sym_cmd_identifier_token17] = ACTIONS(2430), - [aux_sym_cmd_identifier_token18] = ACTIONS(2430), - [aux_sym_cmd_identifier_token19] = ACTIONS(2430), - [aux_sym_cmd_identifier_token20] = ACTIONS(2430), - [aux_sym_cmd_identifier_token21] = ACTIONS(2430), - [aux_sym_cmd_identifier_token22] = ACTIONS(2430), - [aux_sym_cmd_identifier_token23] = ACTIONS(2430), - [aux_sym_cmd_identifier_token24] = ACTIONS(2430), - [aux_sym_cmd_identifier_token25] = ACTIONS(2430), - [aux_sym_cmd_identifier_token26] = ACTIONS(2430), - [aux_sym_cmd_identifier_token27] = ACTIONS(2430), - [aux_sym_cmd_identifier_token28] = ACTIONS(2430), - [aux_sym_cmd_identifier_token29] = ACTIONS(2430), - [aux_sym_cmd_identifier_token30] = ACTIONS(2430), - [aux_sym_cmd_identifier_token31] = ACTIONS(2430), - [aux_sym_cmd_identifier_token32] = ACTIONS(2430), - [aux_sym_cmd_identifier_token33] = ACTIONS(2430), - [aux_sym_cmd_identifier_token34] = ACTIONS(2430), - [aux_sym_cmd_identifier_token35] = ACTIONS(2430), - [aux_sym_cmd_identifier_token36] = ACTIONS(2430), - [aux_sym_cmd_identifier_token37] = ACTIONS(2430), - [aux_sym_cmd_identifier_token38] = ACTIONS(2430), - [aux_sym_cmd_identifier_token39] = ACTIONS(2430), - [aux_sym_cmd_identifier_token40] = ACTIONS(2430), - [anon_sym_def] = ACTIONS(2430), - [anon_sym_export_DASHenv] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_DOLLAR] = ACTIONS(2430), - [anon_sym_error] = ACTIONS(2430), - [anon_sym_DASH2] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_in2] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_make] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_catch] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_source] = ACTIONS(2430), - [anon_sym_source_DASHenv] = ACTIONS(2430), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_hide] = ACTIONS(2430), - [anon_sym_hide_DASHenv] = ACTIONS(2430), - [anon_sym_overlay] = ACTIONS(2430), - [anon_sym_as] = ACTIONS(2430), - [anon_sym_PLUS2] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2430), - [aux_sym__val_number_decimal_token3] = ACTIONS(2430), - [aux_sym__val_number_decimal_token4] = ACTIONS(2430), - [aux_sym__val_number_token1] = ACTIONS(2430), - [aux_sym__val_number_token2] = ACTIONS(2430), - [aux_sym__val_number_token3] = ACTIONS(2430), - [aux_sym__val_number_token4] = ACTIONS(2430), - [aux_sym__val_number_token5] = ACTIONS(2430), - [aux_sym__val_number_token6] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2430), - [sym__str_single_quotes] = ACTIONS(2430), - [sym__str_back_ticks] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), - [sym__entry_separator] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2432), + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [aux_sym_cmd_identifier_token37] = ACTIONS(1540), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1540), + [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2324), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1540), }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(2322), - [anon_sym_alias] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2322), - [anon_sym_let_DASHenv] = ACTIONS(2322), - [anon_sym_mut] = ACTIONS(2322), - [anon_sym_const] = ACTIONS(2322), - [aux_sym_cmd_identifier_token1] = ACTIONS(2322), - [aux_sym_cmd_identifier_token2] = ACTIONS(2326), - [aux_sym_cmd_identifier_token3] = ACTIONS(2326), - [aux_sym_cmd_identifier_token4] = ACTIONS(2326), - [aux_sym_cmd_identifier_token5] = ACTIONS(2326), - [aux_sym_cmd_identifier_token6] = ACTIONS(2326), - [aux_sym_cmd_identifier_token7] = ACTIONS(2326), - [aux_sym_cmd_identifier_token8] = ACTIONS(2322), - [aux_sym_cmd_identifier_token9] = ACTIONS(2322), - [aux_sym_cmd_identifier_token10] = ACTIONS(2326), - [aux_sym_cmd_identifier_token11] = ACTIONS(2326), - [aux_sym_cmd_identifier_token12] = ACTIONS(2322), - [aux_sym_cmd_identifier_token13] = ACTIONS(2322), - [aux_sym_cmd_identifier_token14] = ACTIONS(2322), - [aux_sym_cmd_identifier_token15] = ACTIONS(2322), - [aux_sym_cmd_identifier_token16] = ACTIONS(2326), - [aux_sym_cmd_identifier_token17] = ACTIONS(2326), - [aux_sym_cmd_identifier_token18] = ACTIONS(2326), - [aux_sym_cmd_identifier_token19] = ACTIONS(2326), - [aux_sym_cmd_identifier_token20] = ACTIONS(2326), - [aux_sym_cmd_identifier_token21] = ACTIONS(2326), - [aux_sym_cmd_identifier_token22] = ACTIONS(2326), - [aux_sym_cmd_identifier_token23] = ACTIONS(2326), - [aux_sym_cmd_identifier_token24] = ACTIONS(2326), - [aux_sym_cmd_identifier_token25] = ACTIONS(2326), - [aux_sym_cmd_identifier_token26] = ACTIONS(2326), - [aux_sym_cmd_identifier_token27] = ACTIONS(2326), - [aux_sym_cmd_identifier_token28] = ACTIONS(2326), - [aux_sym_cmd_identifier_token29] = ACTIONS(2326), - [aux_sym_cmd_identifier_token30] = ACTIONS(2326), - [aux_sym_cmd_identifier_token31] = ACTIONS(2326), - [aux_sym_cmd_identifier_token32] = ACTIONS(2326), - [aux_sym_cmd_identifier_token33] = ACTIONS(2326), - [aux_sym_cmd_identifier_token34] = ACTIONS(2322), - [aux_sym_cmd_identifier_token35] = ACTIONS(2326), - [aux_sym_cmd_identifier_token36] = ACTIONS(2326), - [aux_sym_cmd_identifier_token37] = ACTIONS(2326), - [aux_sym_cmd_identifier_token38] = ACTIONS(2322), - [aux_sym_cmd_identifier_token39] = ACTIONS(2326), - [aux_sym_cmd_identifier_token40] = ACTIONS(2326), - [anon_sym_def] = ACTIONS(2322), - [anon_sym_export_DASHenv] = ACTIONS(2322), - [anon_sym_extern] = ACTIONS(2322), - [anon_sym_module] = ACTIONS(2322), - [anon_sym_use] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2326), - [anon_sym_error] = ACTIONS(2322), - [anon_sym_DASH2] = ACTIONS(2322), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_in2] = ACTIONS(2322), - [anon_sym_loop] = ACTIONS(2322), - [anon_sym_make] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_else] = ACTIONS(2322), - [anon_sym_match] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2322), - [anon_sym_catch] = ACTIONS(2322), - [anon_sym_return] = ACTIONS(2322), - [anon_sym_source] = ACTIONS(2322), - [anon_sym_source_DASHenv] = ACTIONS(2322), - [anon_sym_register] = ACTIONS(2322), - [anon_sym_hide] = ACTIONS(2322), - [anon_sym_hide_DASHenv] = ACTIONS(2322), - [anon_sym_overlay] = ACTIONS(2322), - [anon_sym_as] = ACTIONS(2322), - [anon_sym_PLUS2] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2322), - [aux_sym__val_number_decimal_token2] = ACTIONS(2326), - [aux_sym__val_number_decimal_token3] = ACTIONS(2326), - [aux_sym__val_number_decimal_token4] = ACTIONS(2326), - [aux_sym__val_number_token1] = ACTIONS(2326), - [aux_sym__val_number_token2] = ACTIONS(2326), - [aux_sym__val_number_token3] = ACTIONS(2326), - [aux_sym__val_number_token4] = ACTIONS(2322), - [aux_sym__val_number_token5] = ACTIONS(2322), - [aux_sym__val_number_token6] = ACTIONS(2322), - [anon_sym_LBRACK2] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym__str_single_quotes] = ACTIONS(2326), - [sym__str_back_ticks] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2326), + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1558), + [aux_sym_cmd_identifier_token3] = ACTIONS(1558), + [aux_sym_cmd_identifier_token4] = ACTIONS(1558), + [aux_sym_cmd_identifier_token5] = ACTIONS(1558), + [aux_sym_cmd_identifier_token6] = ACTIONS(1558), + [aux_sym_cmd_identifier_token7] = ACTIONS(1558), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1558), + [aux_sym_cmd_identifier_token11] = ACTIONS(1558), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1558), + [aux_sym_cmd_identifier_token17] = ACTIONS(1558), + [aux_sym_cmd_identifier_token18] = ACTIONS(1558), + [aux_sym_cmd_identifier_token19] = ACTIONS(1558), + [aux_sym_cmd_identifier_token20] = ACTIONS(1558), + [aux_sym_cmd_identifier_token21] = ACTIONS(1558), + [aux_sym_cmd_identifier_token22] = ACTIONS(1558), + [aux_sym_cmd_identifier_token23] = ACTIONS(1558), + [aux_sym_cmd_identifier_token24] = ACTIONS(1558), + [aux_sym_cmd_identifier_token25] = ACTIONS(1558), + [aux_sym_cmd_identifier_token26] = ACTIONS(1558), + [aux_sym_cmd_identifier_token27] = ACTIONS(1558), + [aux_sym_cmd_identifier_token28] = ACTIONS(1558), + [aux_sym_cmd_identifier_token29] = ACTIONS(1558), + [aux_sym_cmd_identifier_token30] = ACTIONS(1558), + [aux_sym_cmd_identifier_token31] = ACTIONS(1558), + [aux_sym_cmd_identifier_token32] = ACTIONS(1558), + [aux_sym_cmd_identifier_token33] = ACTIONS(1558), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1558), + [aux_sym_cmd_identifier_token36] = ACTIONS(1558), + [aux_sym_cmd_identifier_token37] = ACTIONS(1558), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1558), + [aux_sym_cmd_identifier_token40] = ACTIONS(1558), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_alias] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_let_DASHenv] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [aux_sym_cmd_identifier_token37] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1899), - [anon_sym_export_DASHenv] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in2] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_source] = ACTIONS(1899), - [anon_sym_source_DASHenv] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_hide_DASHenv] = ACTIONS(1899), - [anon_sym_overlay] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [sym__entry_separator] = ACTIONS(1901), + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [aux_sym_cmd_identifier_token37] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [aux_sym_record_entry_token1] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), + }, + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1968), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1901), + [sym_raw_string_begin] = ACTIONS(1970), }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_alias] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_let_DASHenv] = ACTIONS(2436), - [anon_sym_mut] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [aux_sym_cmd_identifier_token1] = ACTIONS(2436), - [aux_sym_cmd_identifier_token2] = ACTIONS(2436), - [aux_sym_cmd_identifier_token3] = ACTIONS(2436), - [aux_sym_cmd_identifier_token4] = ACTIONS(2436), - [aux_sym_cmd_identifier_token5] = ACTIONS(2436), - [aux_sym_cmd_identifier_token6] = ACTIONS(2436), - [aux_sym_cmd_identifier_token7] = ACTIONS(2436), - [aux_sym_cmd_identifier_token8] = ACTIONS(2436), - [aux_sym_cmd_identifier_token9] = ACTIONS(2436), - [aux_sym_cmd_identifier_token10] = ACTIONS(2436), - [aux_sym_cmd_identifier_token11] = ACTIONS(2436), - [aux_sym_cmd_identifier_token12] = ACTIONS(2436), - [aux_sym_cmd_identifier_token13] = ACTIONS(2436), - [aux_sym_cmd_identifier_token14] = ACTIONS(2436), - [aux_sym_cmd_identifier_token15] = ACTIONS(2436), - [aux_sym_cmd_identifier_token16] = ACTIONS(2436), - [aux_sym_cmd_identifier_token17] = ACTIONS(2436), - [aux_sym_cmd_identifier_token18] = ACTIONS(2436), - [aux_sym_cmd_identifier_token19] = ACTIONS(2436), - [aux_sym_cmd_identifier_token20] = ACTIONS(2436), - [aux_sym_cmd_identifier_token21] = ACTIONS(2436), - [aux_sym_cmd_identifier_token22] = ACTIONS(2436), - [aux_sym_cmd_identifier_token23] = ACTIONS(2436), - [aux_sym_cmd_identifier_token24] = ACTIONS(2436), - [aux_sym_cmd_identifier_token25] = ACTIONS(2436), - [aux_sym_cmd_identifier_token26] = ACTIONS(2436), - [aux_sym_cmd_identifier_token27] = ACTIONS(2436), - [aux_sym_cmd_identifier_token28] = ACTIONS(2436), - [aux_sym_cmd_identifier_token29] = ACTIONS(2436), - [aux_sym_cmd_identifier_token30] = ACTIONS(2436), - [aux_sym_cmd_identifier_token31] = ACTIONS(2436), - [aux_sym_cmd_identifier_token32] = ACTIONS(2436), - [aux_sym_cmd_identifier_token33] = ACTIONS(2436), - [aux_sym_cmd_identifier_token34] = ACTIONS(2436), - [aux_sym_cmd_identifier_token35] = ACTIONS(2436), - [aux_sym_cmd_identifier_token36] = ACTIONS(2436), - [aux_sym_cmd_identifier_token37] = ACTIONS(2436), - [aux_sym_cmd_identifier_token38] = ACTIONS(2436), - [aux_sym_cmd_identifier_token39] = ACTIONS(2436), - [aux_sym_cmd_identifier_token40] = ACTIONS(2436), - [anon_sym_def] = ACTIONS(2436), - [anon_sym_export_DASHenv] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_DOLLAR] = ACTIONS(2436), - [anon_sym_error] = ACTIONS(2436), - [anon_sym_DASH2] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_in2] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_make] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_source] = ACTIONS(2436), - [anon_sym_source_DASHenv] = ACTIONS(2436), - [anon_sym_register] = ACTIONS(2436), - [anon_sym_hide] = ACTIONS(2436), - [anon_sym_hide_DASHenv] = ACTIONS(2436), - [anon_sym_overlay] = ACTIONS(2436), - [anon_sym_as] = ACTIONS(2436), - [anon_sym_PLUS2] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), - [aux_sym__val_number_decimal_token1] = ACTIONS(2436), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_decimal_token4] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2436), - [aux_sym__val_number_token2] = ACTIONS(2436), - [aux_sym__val_number_token3] = ACTIONS(2436), - [aux_sym__val_number_token4] = ACTIONS(2436), - [aux_sym__val_number_token5] = ACTIONS(2436), - [aux_sym__val_number_token6] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2436), - [sym__str_single_quotes] = ACTIONS(2436), - [sym__str_back_ticks] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), - [sym__entry_separator] = ACTIONS(2438), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_alias] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_let_DASHenv] = ACTIONS(1940), + [anon_sym_mut] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [aux_sym_cmd_identifier_token1] = ACTIONS(1940), + [aux_sym_cmd_identifier_token2] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1940), + [aux_sym_cmd_identifier_token4] = ACTIONS(1940), + [aux_sym_cmd_identifier_token5] = ACTIONS(1940), + [aux_sym_cmd_identifier_token6] = ACTIONS(1940), + [aux_sym_cmd_identifier_token7] = ACTIONS(1940), + [aux_sym_cmd_identifier_token8] = ACTIONS(1940), + [aux_sym_cmd_identifier_token9] = ACTIONS(1940), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1940), + [aux_sym_cmd_identifier_token13] = ACTIONS(1940), + [aux_sym_cmd_identifier_token14] = ACTIONS(1940), + [aux_sym_cmd_identifier_token15] = ACTIONS(1940), + [aux_sym_cmd_identifier_token16] = ACTIONS(1940), + [aux_sym_cmd_identifier_token17] = ACTIONS(1940), + [aux_sym_cmd_identifier_token18] = ACTIONS(1940), + [aux_sym_cmd_identifier_token19] = ACTIONS(1940), + [aux_sym_cmd_identifier_token20] = ACTIONS(1940), + [aux_sym_cmd_identifier_token21] = ACTIONS(1940), + [aux_sym_cmd_identifier_token22] = ACTIONS(1940), + [aux_sym_cmd_identifier_token23] = ACTIONS(1940), + [aux_sym_cmd_identifier_token24] = ACTIONS(1940), + [aux_sym_cmd_identifier_token25] = ACTIONS(1940), + [aux_sym_cmd_identifier_token26] = ACTIONS(1940), + [aux_sym_cmd_identifier_token27] = ACTIONS(1940), + [aux_sym_cmd_identifier_token28] = ACTIONS(1940), + [aux_sym_cmd_identifier_token29] = ACTIONS(1940), + [aux_sym_cmd_identifier_token30] = ACTIONS(1940), + [aux_sym_cmd_identifier_token31] = ACTIONS(1940), + [aux_sym_cmd_identifier_token32] = ACTIONS(1940), + [aux_sym_cmd_identifier_token33] = ACTIONS(1940), + [aux_sym_cmd_identifier_token34] = ACTIONS(1940), + [aux_sym_cmd_identifier_token35] = ACTIONS(1940), + [aux_sym_cmd_identifier_token36] = ACTIONS(1940), + [aux_sym_cmd_identifier_token37] = ACTIONS(1940), + [aux_sym_cmd_identifier_token38] = ACTIONS(1940), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1940), + [anon_sym_export_DASHenv] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_error] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_in2] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_make] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_source] = ACTIONS(1940), + [anon_sym_source_DASHenv] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_hide] = ACTIONS(1940), + [anon_sym_hide_DASHenv] = ACTIONS(1940), + [anon_sym_overlay] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1940), + [aux_sym__val_number_decimal_token3] = ACTIONS(1940), + [aux_sym__val_number_decimal_token4] = ACTIONS(1940), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1940), + [aux_sym__val_number_token5] = ACTIONS(1940), + [aux_sym__val_number_token6] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [sym__entry_separator] = ACTIONS(1948), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2438), + [sym_raw_string_begin] = ACTIONS(1948), }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_alias] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_let_DASHenv] = ACTIONS(2440), - [anon_sym_mut] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [aux_sym_cmd_identifier_token1] = ACTIONS(2440), - [aux_sym_cmd_identifier_token2] = ACTIONS(2440), - [aux_sym_cmd_identifier_token3] = ACTIONS(2440), - [aux_sym_cmd_identifier_token4] = ACTIONS(2440), - [aux_sym_cmd_identifier_token5] = ACTIONS(2440), - [aux_sym_cmd_identifier_token6] = ACTIONS(2440), - [aux_sym_cmd_identifier_token7] = ACTIONS(2440), - [aux_sym_cmd_identifier_token8] = ACTIONS(2440), - [aux_sym_cmd_identifier_token9] = ACTIONS(2440), - [aux_sym_cmd_identifier_token10] = ACTIONS(2440), - [aux_sym_cmd_identifier_token11] = ACTIONS(2440), - [aux_sym_cmd_identifier_token12] = ACTIONS(2440), - [aux_sym_cmd_identifier_token13] = ACTIONS(2440), - [aux_sym_cmd_identifier_token14] = ACTIONS(2440), - [aux_sym_cmd_identifier_token15] = ACTIONS(2440), - [aux_sym_cmd_identifier_token16] = ACTIONS(2440), - [aux_sym_cmd_identifier_token17] = ACTIONS(2440), - [aux_sym_cmd_identifier_token18] = ACTIONS(2440), - [aux_sym_cmd_identifier_token19] = ACTIONS(2440), - [aux_sym_cmd_identifier_token20] = ACTIONS(2440), - [aux_sym_cmd_identifier_token21] = ACTIONS(2440), - [aux_sym_cmd_identifier_token22] = ACTIONS(2440), - [aux_sym_cmd_identifier_token23] = ACTIONS(2440), - [aux_sym_cmd_identifier_token24] = ACTIONS(2440), - [aux_sym_cmd_identifier_token25] = ACTIONS(2440), - [aux_sym_cmd_identifier_token26] = ACTIONS(2440), - [aux_sym_cmd_identifier_token27] = ACTIONS(2440), - [aux_sym_cmd_identifier_token28] = ACTIONS(2440), - [aux_sym_cmd_identifier_token29] = ACTIONS(2440), - [aux_sym_cmd_identifier_token30] = ACTIONS(2440), - [aux_sym_cmd_identifier_token31] = ACTIONS(2440), - [aux_sym_cmd_identifier_token32] = ACTIONS(2440), - [aux_sym_cmd_identifier_token33] = ACTIONS(2440), - [aux_sym_cmd_identifier_token34] = ACTIONS(2440), - [aux_sym_cmd_identifier_token35] = ACTIONS(2440), - [aux_sym_cmd_identifier_token36] = ACTIONS(2440), - [aux_sym_cmd_identifier_token37] = ACTIONS(2440), - [aux_sym_cmd_identifier_token38] = ACTIONS(2440), - [aux_sym_cmd_identifier_token39] = ACTIONS(2440), - [aux_sym_cmd_identifier_token40] = ACTIONS(2440), - [anon_sym_def] = ACTIONS(2440), - [anon_sym_export_DASHenv] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_use] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_error] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_in2] = ACTIONS(2440), - [anon_sym_loop] = ACTIONS(2440), - [anon_sym_make] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_do] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_else] = ACTIONS(2440), - [anon_sym_match] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2440), - [anon_sym_catch] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_source] = ACTIONS(2440), - [anon_sym_source_DASHenv] = ACTIONS(2440), - [anon_sym_register] = ACTIONS(2440), - [anon_sym_hide] = ACTIONS(2440), - [anon_sym_hide_DASHenv] = ACTIONS(2440), - [anon_sym_overlay] = ACTIONS(2440), - [anon_sym_as] = ACTIONS(2440), - [anon_sym_PLUS2] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2440), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2440), - [aux_sym__val_number_decimal_token3] = ACTIONS(2440), - [aux_sym__val_number_decimal_token4] = ACTIONS(2440), - [aux_sym__val_number_token1] = ACTIONS(2440), - [aux_sym__val_number_token2] = ACTIONS(2440), - [aux_sym__val_number_token3] = ACTIONS(2440), - [aux_sym__val_number_token4] = ACTIONS(2440), - [aux_sym__val_number_token5] = ACTIONS(2440), - [aux_sym__val_number_token6] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym__str_single_quotes] = ACTIONS(2440), - [sym__str_back_ticks] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), - [sym__entry_separator] = ACTIONS(2442), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1520), + [aux_sym_cmd_identifier_token3] = ACTIONS(1520), + [aux_sym_cmd_identifier_token4] = ACTIONS(1520), + [aux_sym_cmd_identifier_token5] = ACTIONS(1520), + [aux_sym_cmd_identifier_token6] = ACTIONS(1520), + [aux_sym_cmd_identifier_token7] = ACTIONS(1520), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1520), + [aux_sym_cmd_identifier_token11] = ACTIONS(1520), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1520), + [aux_sym_cmd_identifier_token17] = ACTIONS(1520), + [aux_sym_cmd_identifier_token18] = ACTIONS(1520), + [aux_sym_cmd_identifier_token19] = ACTIONS(1520), + [aux_sym_cmd_identifier_token20] = ACTIONS(1520), + [aux_sym_cmd_identifier_token21] = ACTIONS(1520), + [aux_sym_cmd_identifier_token22] = ACTIONS(1520), + [aux_sym_cmd_identifier_token23] = ACTIONS(1520), + [aux_sym_cmd_identifier_token24] = ACTIONS(1520), + [aux_sym_cmd_identifier_token25] = ACTIONS(1520), + [aux_sym_cmd_identifier_token26] = ACTIONS(1520), + [aux_sym_cmd_identifier_token27] = ACTIONS(1520), + [aux_sym_cmd_identifier_token28] = ACTIONS(1520), + [aux_sym_cmd_identifier_token29] = ACTIONS(1520), + [aux_sym_cmd_identifier_token30] = ACTIONS(1520), + [aux_sym_cmd_identifier_token31] = ACTIONS(1520), + [aux_sym_cmd_identifier_token32] = ACTIONS(1520), + [aux_sym_cmd_identifier_token33] = ACTIONS(1520), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1520), + [aux_sym_cmd_identifier_token36] = ACTIONS(1520), + [aux_sym_cmd_identifier_token37] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), + }, + [552] = { + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1524), + [aux_sym_cmd_identifier_token3] = ACTIONS(1524), + [aux_sym_cmd_identifier_token4] = ACTIONS(1524), + [aux_sym_cmd_identifier_token5] = ACTIONS(1524), + [aux_sym_cmd_identifier_token6] = ACTIONS(1524), + [aux_sym_cmd_identifier_token7] = ACTIONS(1524), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1524), + [aux_sym_cmd_identifier_token11] = ACTIONS(1524), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1524), + [aux_sym_cmd_identifier_token17] = ACTIONS(1524), + [aux_sym_cmd_identifier_token18] = ACTIONS(1524), + [aux_sym_cmd_identifier_token19] = ACTIONS(1524), + [aux_sym_cmd_identifier_token20] = ACTIONS(1524), + [aux_sym_cmd_identifier_token21] = ACTIONS(1524), + [aux_sym_cmd_identifier_token22] = ACTIONS(1524), + [aux_sym_cmd_identifier_token23] = ACTIONS(1524), + [aux_sym_cmd_identifier_token24] = ACTIONS(1524), + [aux_sym_cmd_identifier_token25] = ACTIONS(1524), + [aux_sym_cmd_identifier_token26] = ACTIONS(1524), + [aux_sym_cmd_identifier_token27] = ACTIONS(1524), + [aux_sym_cmd_identifier_token28] = ACTIONS(1524), + [aux_sym_cmd_identifier_token29] = ACTIONS(1524), + [aux_sym_cmd_identifier_token30] = ACTIONS(1524), + [aux_sym_cmd_identifier_token31] = ACTIONS(1524), + [aux_sym_cmd_identifier_token32] = ACTIONS(1524), + [aux_sym_cmd_identifier_token33] = ACTIONS(1524), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1524), + [aux_sym_cmd_identifier_token36] = ACTIONS(1524), + [aux_sym_cmd_identifier_token37] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [aux_sym_record_entry_token1] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), + }, + [553] = { + [sym_path] = STATE(693), + [sym_comment] = STATE(553), + [aux_sym_cell_path_repeat1] = STATE(554), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token3] = ACTIONS(1481), + [aux_sym_cmd_identifier_token4] = ACTIONS(1481), + [aux_sym_cmd_identifier_token5] = ACTIONS(1481), + [aux_sym_cmd_identifier_token6] = ACTIONS(1481), + [aux_sym_cmd_identifier_token7] = ACTIONS(1481), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1481), + [aux_sym_cmd_identifier_token11] = ACTIONS(1481), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1481), + [aux_sym_cmd_identifier_token17] = ACTIONS(1481), + [aux_sym_cmd_identifier_token18] = ACTIONS(1481), + [aux_sym_cmd_identifier_token19] = ACTIONS(1481), + [aux_sym_cmd_identifier_token20] = ACTIONS(1481), + [aux_sym_cmd_identifier_token21] = ACTIONS(1481), + [aux_sym_cmd_identifier_token22] = ACTIONS(1481), + [aux_sym_cmd_identifier_token23] = ACTIONS(1481), + [aux_sym_cmd_identifier_token24] = ACTIONS(1481), + [aux_sym_cmd_identifier_token25] = ACTIONS(1481), + [aux_sym_cmd_identifier_token26] = ACTIONS(1481), + [aux_sym_cmd_identifier_token27] = ACTIONS(1481), + [aux_sym_cmd_identifier_token28] = ACTIONS(1481), + [aux_sym_cmd_identifier_token29] = ACTIONS(1481), + [aux_sym_cmd_identifier_token30] = ACTIONS(1481), + [aux_sym_cmd_identifier_token31] = ACTIONS(1481), + [aux_sym_cmd_identifier_token32] = ACTIONS(1481), + [aux_sym_cmd_identifier_token33] = ACTIONS(1481), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1481), + [aux_sym_cmd_identifier_token36] = ACTIONS(1481), + [aux_sym_cmd_identifier_token37] = ACTIONS(1481), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1481), + [aux_sym_cmd_identifier_token40] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), + }, + [554] = { + [sym_path] = STATE(693), + [sym_comment] = STATE(554), + [aux_sym_cell_path_repeat1] = STATE(554), + [anon_sym_export] = ACTIONS(1483), + [anon_sym_alias] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_let_DASHenv] = ACTIONS(1483), + [anon_sym_mut] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [aux_sym_cmd_identifier_token1] = ACTIONS(1483), + [aux_sym_cmd_identifier_token2] = ACTIONS(1485), + [aux_sym_cmd_identifier_token3] = ACTIONS(1485), + [aux_sym_cmd_identifier_token4] = ACTIONS(1485), + [aux_sym_cmd_identifier_token5] = ACTIONS(1485), + [aux_sym_cmd_identifier_token6] = ACTIONS(1485), + [aux_sym_cmd_identifier_token7] = ACTIONS(1485), + [aux_sym_cmd_identifier_token8] = ACTIONS(1483), + [aux_sym_cmd_identifier_token9] = ACTIONS(1483), + [aux_sym_cmd_identifier_token10] = ACTIONS(1485), + [aux_sym_cmd_identifier_token11] = ACTIONS(1485), + [aux_sym_cmd_identifier_token12] = ACTIONS(1483), + [aux_sym_cmd_identifier_token13] = ACTIONS(1483), + [aux_sym_cmd_identifier_token14] = ACTIONS(1483), + [aux_sym_cmd_identifier_token15] = ACTIONS(1483), + [aux_sym_cmd_identifier_token16] = ACTIONS(1485), + [aux_sym_cmd_identifier_token17] = ACTIONS(1485), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1485), + [aux_sym_cmd_identifier_token20] = ACTIONS(1485), + [aux_sym_cmd_identifier_token21] = ACTIONS(1485), + [aux_sym_cmd_identifier_token22] = ACTIONS(1485), + [aux_sym_cmd_identifier_token23] = ACTIONS(1485), + [aux_sym_cmd_identifier_token24] = ACTIONS(1485), + [aux_sym_cmd_identifier_token25] = ACTIONS(1485), + [aux_sym_cmd_identifier_token26] = ACTIONS(1485), + [aux_sym_cmd_identifier_token27] = ACTIONS(1485), + [aux_sym_cmd_identifier_token28] = ACTIONS(1485), + [aux_sym_cmd_identifier_token29] = ACTIONS(1485), + [aux_sym_cmd_identifier_token30] = ACTIONS(1485), + [aux_sym_cmd_identifier_token31] = ACTIONS(1485), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1485), + [aux_sym_cmd_identifier_token34] = ACTIONS(1483), + [aux_sym_cmd_identifier_token35] = ACTIONS(1485), + [aux_sym_cmd_identifier_token36] = ACTIONS(1485), + [aux_sym_cmd_identifier_token37] = ACTIONS(1485), + [aux_sym_cmd_identifier_token38] = ACTIONS(1483), + [aux_sym_cmd_identifier_token39] = ACTIONS(1485), + [aux_sym_cmd_identifier_token40] = ACTIONS(1485), + [anon_sym_def] = ACTIONS(1483), + [anon_sym_export_DASHenv] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_module] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_make] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_source] = ACTIONS(1483), + [anon_sym_source_DASHenv] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_hide] = ACTIONS(1483), + [anon_sym_hide_DASHenv] = ACTIONS(1483), + [anon_sym_overlay] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1483), + [aux_sym__val_number_token5] = ACTIONS(1483), + [aux_sym__val_number_token6] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), + }, + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [sym__entry_separator] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2331), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2442), + [sym_raw_string_begin] = ACTIONS(1540), }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(1010), - [anon_sym_alias] = ACTIONS(1010), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_let_DASHenv] = ACTIONS(1010), - [anon_sym_mut] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1010), - [aux_sym_cmd_identifier_token2] = ACTIONS(1012), - [aux_sym_cmd_identifier_token3] = ACTIONS(1012), - [aux_sym_cmd_identifier_token4] = ACTIONS(1012), - [aux_sym_cmd_identifier_token5] = ACTIONS(1012), - [aux_sym_cmd_identifier_token6] = ACTIONS(1012), - [aux_sym_cmd_identifier_token7] = ACTIONS(1012), - [aux_sym_cmd_identifier_token8] = ACTIONS(1010), - [aux_sym_cmd_identifier_token9] = ACTIONS(1010), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1010), - [aux_sym_cmd_identifier_token13] = ACTIONS(1010), - [aux_sym_cmd_identifier_token14] = ACTIONS(1010), - [aux_sym_cmd_identifier_token15] = ACTIONS(1010), - [aux_sym_cmd_identifier_token16] = ACTIONS(1012), - [aux_sym_cmd_identifier_token17] = ACTIONS(1012), - [aux_sym_cmd_identifier_token18] = ACTIONS(1012), - [aux_sym_cmd_identifier_token19] = ACTIONS(1012), - [aux_sym_cmd_identifier_token20] = ACTIONS(1012), - [aux_sym_cmd_identifier_token21] = ACTIONS(1012), - [aux_sym_cmd_identifier_token22] = ACTIONS(1012), - [aux_sym_cmd_identifier_token23] = ACTIONS(1012), - [aux_sym_cmd_identifier_token24] = ACTIONS(1012), - [aux_sym_cmd_identifier_token25] = ACTIONS(1012), - [aux_sym_cmd_identifier_token26] = ACTIONS(1012), - [aux_sym_cmd_identifier_token27] = ACTIONS(1012), - [aux_sym_cmd_identifier_token28] = ACTIONS(1012), - [aux_sym_cmd_identifier_token29] = ACTIONS(1012), - [aux_sym_cmd_identifier_token30] = ACTIONS(1012), - [aux_sym_cmd_identifier_token31] = ACTIONS(1012), - [aux_sym_cmd_identifier_token32] = ACTIONS(1012), - [aux_sym_cmd_identifier_token33] = ACTIONS(1012), - [aux_sym_cmd_identifier_token34] = ACTIONS(1010), - [aux_sym_cmd_identifier_token35] = ACTIONS(1012), - [aux_sym_cmd_identifier_token36] = ACTIONS(1012), - [aux_sym_cmd_identifier_token37] = ACTIONS(1012), - [aux_sym_cmd_identifier_token38] = ACTIONS(1010), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1010), - [anon_sym_export_DASHenv] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_module] = ACTIONS(1010), - [anon_sym_use] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1010), - [anon_sym_continue] = ACTIONS(1010), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_loop] = ACTIONS(1010), - [anon_sym_make] = ACTIONS(1010), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(1010), - [anon_sym_match] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1010), - [anon_sym_catch] = ACTIONS(1010), - [anon_sym_return] = ACTIONS(1010), - [anon_sym_source] = ACTIONS(1010), - [anon_sym_source_DASHenv] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_hide] = ACTIONS(1010), - [anon_sym_hide_DASHenv] = ACTIONS(1010), - [anon_sym_overlay] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_alias] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_let_DASHenv] = ACTIONS(1886), + [anon_sym_mut] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [aux_sym_cmd_identifier_token1] = ACTIONS(1886), + [aux_sym_cmd_identifier_token2] = ACTIONS(1888), + [aux_sym_cmd_identifier_token3] = ACTIONS(1888), + [aux_sym_cmd_identifier_token4] = ACTIONS(1888), + [aux_sym_cmd_identifier_token5] = ACTIONS(1888), + [aux_sym_cmd_identifier_token6] = ACTIONS(1888), + [aux_sym_cmd_identifier_token7] = ACTIONS(1888), + [aux_sym_cmd_identifier_token8] = ACTIONS(1886), + [aux_sym_cmd_identifier_token9] = ACTIONS(1886), + [aux_sym_cmd_identifier_token10] = ACTIONS(1888), + [aux_sym_cmd_identifier_token11] = ACTIONS(1888), + [aux_sym_cmd_identifier_token12] = ACTIONS(1886), + [aux_sym_cmd_identifier_token13] = ACTIONS(1886), + [aux_sym_cmd_identifier_token14] = ACTIONS(1886), + [aux_sym_cmd_identifier_token15] = ACTIONS(1886), + [aux_sym_cmd_identifier_token16] = ACTIONS(1888), + [aux_sym_cmd_identifier_token17] = ACTIONS(1888), + [aux_sym_cmd_identifier_token18] = ACTIONS(1888), + [aux_sym_cmd_identifier_token19] = ACTIONS(1888), + [aux_sym_cmd_identifier_token20] = ACTIONS(1888), + [aux_sym_cmd_identifier_token21] = ACTIONS(1888), + [aux_sym_cmd_identifier_token22] = ACTIONS(1888), + [aux_sym_cmd_identifier_token23] = ACTIONS(1888), + [aux_sym_cmd_identifier_token24] = ACTIONS(1888), + [aux_sym_cmd_identifier_token25] = ACTIONS(1888), + [aux_sym_cmd_identifier_token26] = ACTIONS(1888), + [aux_sym_cmd_identifier_token27] = ACTIONS(1888), + [aux_sym_cmd_identifier_token28] = ACTIONS(1888), + [aux_sym_cmd_identifier_token29] = ACTIONS(1888), + [aux_sym_cmd_identifier_token30] = ACTIONS(1888), + [aux_sym_cmd_identifier_token31] = ACTIONS(1888), + [aux_sym_cmd_identifier_token32] = ACTIONS(1888), + [aux_sym_cmd_identifier_token33] = ACTIONS(1888), + [aux_sym_cmd_identifier_token34] = ACTIONS(1886), + [aux_sym_cmd_identifier_token35] = ACTIONS(1888), + [aux_sym_cmd_identifier_token36] = ACTIONS(1888), + [aux_sym_cmd_identifier_token37] = ACTIONS(1888), + [aux_sym_cmd_identifier_token38] = ACTIONS(1886), + [aux_sym_cmd_identifier_token39] = ACTIONS(1888), + [aux_sym_cmd_identifier_token40] = ACTIONS(1888), + [anon_sym_def] = ACTIONS(1886), + [anon_sym_export_DASHenv] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1888), + [anon_sym_error] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_in2] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_make] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_catch] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_source] = ACTIONS(1886), + [anon_sym_source_DASHenv] = ACTIONS(1886), + [anon_sym_register] = ACTIONS(1886), + [anon_sym_hide] = ACTIONS(1886), + [anon_sym_hide_DASHenv] = ACTIONS(1886), + [anon_sym_overlay] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_alias] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_let_DASHenv] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [aux_sym_cmd_identifier_token1] = ACTIONS(1853), - [aux_sym_cmd_identifier_token2] = ACTIONS(1853), - [aux_sym_cmd_identifier_token3] = ACTIONS(1853), - [aux_sym_cmd_identifier_token4] = ACTIONS(1853), - [aux_sym_cmd_identifier_token5] = ACTIONS(1853), - [aux_sym_cmd_identifier_token6] = ACTIONS(1853), - [aux_sym_cmd_identifier_token7] = ACTIONS(1853), - [aux_sym_cmd_identifier_token8] = ACTIONS(1853), - [aux_sym_cmd_identifier_token9] = ACTIONS(1853), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1853), - [aux_sym_cmd_identifier_token13] = ACTIONS(1853), - [aux_sym_cmd_identifier_token14] = ACTIONS(1853), - [aux_sym_cmd_identifier_token15] = ACTIONS(1853), - [aux_sym_cmd_identifier_token16] = ACTIONS(1853), - [aux_sym_cmd_identifier_token17] = ACTIONS(1853), - [aux_sym_cmd_identifier_token18] = ACTIONS(1853), - [aux_sym_cmd_identifier_token19] = ACTIONS(1853), - [aux_sym_cmd_identifier_token20] = ACTIONS(1853), - [aux_sym_cmd_identifier_token21] = ACTIONS(1853), - [aux_sym_cmd_identifier_token22] = ACTIONS(1853), - [aux_sym_cmd_identifier_token23] = ACTIONS(1853), - [aux_sym_cmd_identifier_token24] = ACTIONS(1853), - [aux_sym_cmd_identifier_token25] = ACTIONS(1853), - [aux_sym_cmd_identifier_token26] = ACTIONS(1853), - [aux_sym_cmd_identifier_token27] = ACTIONS(1853), - [aux_sym_cmd_identifier_token28] = ACTIONS(1853), - [aux_sym_cmd_identifier_token29] = ACTIONS(1853), - [aux_sym_cmd_identifier_token30] = ACTIONS(1853), - [aux_sym_cmd_identifier_token31] = ACTIONS(1853), - [aux_sym_cmd_identifier_token32] = ACTIONS(1853), - [aux_sym_cmd_identifier_token33] = ACTIONS(1853), - [aux_sym_cmd_identifier_token34] = ACTIONS(1853), - [aux_sym_cmd_identifier_token35] = ACTIONS(1853), - [aux_sym_cmd_identifier_token36] = ACTIONS(1853), - [aux_sym_cmd_identifier_token37] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1853), - [anon_sym_export_DASHenv] = ACTIONS(1853), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1853), - [anon_sym_error] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_in2] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_make] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_source] = ACTIONS(1853), - [anon_sym_source_DASHenv] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_hide_DASHenv] = ACTIONS(1853), - [anon_sym_overlay] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1853), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [aux_sym__val_number_token4] = ACTIONS(1853), - [aux_sym__val_number_token5] = ACTIONS(1853), - [aux_sym__val_number_token6] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [sym__entry_separator] = ACTIONS(1855), + [558] = { + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_alias] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_let_DASHenv] = ACTIONS(2333), + [anon_sym_mut] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [aux_sym_cmd_identifier_token1] = ACTIONS(2333), + [aux_sym_cmd_identifier_token2] = ACTIONS(2333), + [aux_sym_cmd_identifier_token3] = ACTIONS(2333), + [aux_sym_cmd_identifier_token4] = ACTIONS(2333), + [aux_sym_cmd_identifier_token5] = ACTIONS(2333), + [aux_sym_cmd_identifier_token6] = ACTIONS(2333), + [aux_sym_cmd_identifier_token7] = ACTIONS(2333), + [aux_sym_cmd_identifier_token8] = ACTIONS(2333), + [aux_sym_cmd_identifier_token9] = ACTIONS(2333), + [aux_sym_cmd_identifier_token10] = ACTIONS(2333), + [aux_sym_cmd_identifier_token11] = ACTIONS(2333), + [aux_sym_cmd_identifier_token12] = ACTIONS(2333), + [aux_sym_cmd_identifier_token13] = ACTIONS(2333), + [aux_sym_cmd_identifier_token14] = ACTIONS(2333), + [aux_sym_cmd_identifier_token15] = ACTIONS(2333), + [aux_sym_cmd_identifier_token16] = ACTIONS(2333), + [aux_sym_cmd_identifier_token17] = ACTIONS(2333), + [aux_sym_cmd_identifier_token18] = ACTIONS(2333), + [aux_sym_cmd_identifier_token19] = ACTIONS(2333), + [aux_sym_cmd_identifier_token20] = ACTIONS(2333), + [aux_sym_cmd_identifier_token21] = ACTIONS(2333), + [aux_sym_cmd_identifier_token22] = ACTIONS(2333), + [aux_sym_cmd_identifier_token23] = ACTIONS(2333), + [aux_sym_cmd_identifier_token24] = ACTIONS(2333), + [aux_sym_cmd_identifier_token25] = ACTIONS(2333), + [aux_sym_cmd_identifier_token26] = ACTIONS(2333), + [aux_sym_cmd_identifier_token27] = ACTIONS(2333), + [aux_sym_cmd_identifier_token28] = ACTIONS(2333), + [aux_sym_cmd_identifier_token29] = ACTIONS(2333), + [aux_sym_cmd_identifier_token30] = ACTIONS(2333), + [aux_sym_cmd_identifier_token31] = ACTIONS(2333), + [aux_sym_cmd_identifier_token32] = ACTIONS(2333), + [aux_sym_cmd_identifier_token33] = ACTIONS(2333), + [aux_sym_cmd_identifier_token34] = ACTIONS(2333), + [aux_sym_cmd_identifier_token35] = ACTIONS(2333), + [aux_sym_cmd_identifier_token36] = ACTIONS(2333), + [aux_sym_cmd_identifier_token37] = ACTIONS(2333), + [aux_sym_cmd_identifier_token38] = ACTIONS(2333), + [aux_sym_cmd_identifier_token39] = ACTIONS(2333), + [aux_sym_cmd_identifier_token40] = ACTIONS(2333), + [anon_sym_def] = ACTIONS(2333), + [anon_sym_export_DASHenv] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_error] = ACTIONS(2333), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_in2] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_make] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_catch] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_source] = ACTIONS(2333), + [anon_sym_source_DASHenv] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_hide] = ACTIONS(2333), + [anon_sym_hide_DASHenv] = ACTIONS(2333), + [anon_sym_overlay] = ACTIONS(2333), + [anon_sym_as] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2333), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2333), + [aux_sym__val_number_decimal_token3] = ACTIONS(2333), + [aux_sym__val_number_decimal_token4] = ACTIONS(2333), + [aux_sym__val_number_token1] = ACTIONS(2333), + [aux_sym__val_number_token2] = ACTIONS(2333), + [aux_sym__val_number_token3] = ACTIONS(2333), + [aux_sym__val_number_token4] = ACTIONS(2333), + [aux_sym__val_number_token5] = ACTIONS(2333), + [aux_sym__val_number_token6] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [sym__str_single_quotes] = ACTIONS(2333), + [sym__str_back_ticks] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2333), + [sym__entry_separator] = ACTIONS(2335), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1855), + [sym_raw_string_begin] = ACTIONS(2335), }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1044), - [aux_sym_cmd_identifier_token3] = ACTIONS(1044), - [aux_sym_cmd_identifier_token4] = ACTIONS(1044), - [aux_sym_cmd_identifier_token5] = ACTIONS(1044), - [aux_sym_cmd_identifier_token6] = ACTIONS(1044), - [aux_sym_cmd_identifier_token7] = ACTIONS(1044), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1044), - [aux_sym_cmd_identifier_token11] = ACTIONS(1044), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1044), - [aux_sym_cmd_identifier_token17] = ACTIONS(1044), - [aux_sym_cmd_identifier_token18] = ACTIONS(1044), - [aux_sym_cmd_identifier_token19] = ACTIONS(1044), - [aux_sym_cmd_identifier_token20] = ACTIONS(1044), - [aux_sym_cmd_identifier_token21] = ACTIONS(1044), - [aux_sym_cmd_identifier_token22] = ACTIONS(1044), - [aux_sym_cmd_identifier_token23] = ACTIONS(1044), - [aux_sym_cmd_identifier_token24] = ACTIONS(1044), - [aux_sym_cmd_identifier_token25] = ACTIONS(1044), - [aux_sym_cmd_identifier_token26] = ACTIONS(1044), - [aux_sym_cmd_identifier_token27] = ACTIONS(1044), - [aux_sym_cmd_identifier_token28] = ACTIONS(1044), - [aux_sym_cmd_identifier_token29] = ACTIONS(1044), - [aux_sym_cmd_identifier_token30] = ACTIONS(1044), - [aux_sym_cmd_identifier_token31] = ACTIONS(1044), - [aux_sym_cmd_identifier_token32] = ACTIONS(1044), - [aux_sym_cmd_identifier_token33] = ACTIONS(1044), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1044), - [aux_sym_cmd_identifier_token36] = ACTIONS(1044), - [aux_sym_cmd_identifier_token37] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [sym__entry_separator] = ACTIONS(1046), + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [sym__entry_separator] = ACTIONS(1516), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1046), + [sym_raw_string_begin] = ACTIONS(1516), }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_alias] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_let_DASHenv] = ACTIONS(2444), - [anon_sym_mut] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [aux_sym_cmd_identifier_token1] = ACTIONS(2444), - [aux_sym_cmd_identifier_token2] = ACTIONS(2444), - [aux_sym_cmd_identifier_token3] = ACTIONS(2444), - [aux_sym_cmd_identifier_token4] = ACTIONS(2444), - [aux_sym_cmd_identifier_token5] = ACTIONS(2444), - [aux_sym_cmd_identifier_token6] = ACTIONS(2444), - [aux_sym_cmd_identifier_token7] = ACTIONS(2444), - [aux_sym_cmd_identifier_token8] = ACTIONS(2444), - [aux_sym_cmd_identifier_token9] = ACTIONS(2444), - [aux_sym_cmd_identifier_token10] = ACTIONS(2444), - [aux_sym_cmd_identifier_token11] = ACTIONS(2444), - [aux_sym_cmd_identifier_token12] = ACTIONS(2444), - [aux_sym_cmd_identifier_token13] = ACTIONS(2444), - [aux_sym_cmd_identifier_token14] = ACTIONS(2444), - [aux_sym_cmd_identifier_token15] = ACTIONS(2444), - [aux_sym_cmd_identifier_token16] = ACTIONS(2444), - [aux_sym_cmd_identifier_token17] = ACTIONS(2444), - [aux_sym_cmd_identifier_token18] = ACTIONS(2444), - [aux_sym_cmd_identifier_token19] = ACTIONS(2444), - [aux_sym_cmd_identifier_token20] = ACTIONS(2444), - [aux_sym_cmd_identifier_token21] = ACTIONS(2444), - [aux_sym_cmd_identifier_token22] = ACTIONS(2444), - [aux_sym_cmd_identifier_token23] = ACTIONS(2444), - [aux_sym_cmd_identifier_token24] = ACTIONS(2444), - [aux_sym_cmd_identifier_token25] = ACTIONS(2444), - [aux_sym_cmd_identifier_token26] = ACTIONS(2444), - [aux_sym_cmd_identifier_token27] = ACTIONS(2444), - [aux_sym_cmd_identifier_token28] = ACTIONS(2444), - [aux_sym_cmd_identifier_token29] = ACTIONS(2444), - [aux_sym_cmd_identifier_token30] = ACTIONS(2444), - [aux_sym_cmd_identifier_token31] = ACTIONS(2444), - [aux_sym_cmd_identifier_token32] = ACTIONS(2444), - [aux_sym_cmd_identifier_token33] = ACTIONS(2444), - [aux_sym_cmd_identifier_token34] = ACTIONS(2444), - [aux_sym_cmd_identifier_token35] = ACTIONS(2444), - [aux_sym_cmd_identifier_token36] = ACTIONS(2444), - [aux_sym_cmd_identifier_token37] = ACTIONS(2444), - [aux_sym_cmd_identifier_token38] = ACTIONS(2444), - [aux_sym_cmd_identifier_token39] = ACTIONS(2444), - [aux_sym_cmd_identifier_token40] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_export_DASHenv] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_use] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_error] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_in2] = ACTIONS(2444), - [anon_sym_loop] = ACTIONS(2444), - [anon_sym_make] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_catch] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_source] = ACTIONS(2444), - [anon_sym_source_DASHenv] = ACTIONS(2444), - [anon_sym_register] = ACTIONS(2444), - [anon_sym_hide] = ACTIONS(2444), - [anon_sym_hide_DASHenv] = ACTIONS(2444), - [anon_sym_overlay] = ACTIONS(2444), - [anon_sym_as] = ACTIONS(2444), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), - [aux_sym__val_number_decimal_token1] = ACTIONS(2444), - [aux_sym__val_number_decimal_token2] = ACTIONS(2444), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [aux_sym__val_number_token1] = ACTIONS(2444), - [aux_sym__val_number_token2] = ACTIONS(2444), - [aux_sym__val_number_token3] = ACTIONS(2444), - [aux_sym__val_number_token4] = ACTIONS(2444), - [aux_sym__val_number_token5] = ACTIONS(2444), - [aux_sym__val_number_token6] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [sym__str_single_quotes] = ACTIONS(2444), - [sym__str_back_ticks] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), - [sym__entry_separator] = ACTIONS(2446), + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_alias] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_let_DASHenv] = ACTIONS(1950), + [anon_sym_mut] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [aux_sym_cmd_identifier_token1] = ACTIONS(1950), + [aux_sym_cmd_identifier_token2] = ACTIONS(1950), + [aux_sym_cmd_identifier_token3] = ACTIONS(1950), + [aux_sym_cmd_identifier_token4] = ACTIONS(1950), + [aux_sym_cmd_identifier_token5] = ACTIONS(1950), + [aux_sym_cmd_identifier_token6] = ACTIONS(1950), + [aux_sym_cmd_identifier_token7] = ACTIONS(1950), + [aux_sym_cmd_identifier_token8] = ACTIONS(1950), + [aux_sym_cmd_identifier_token9] = ACTIONS(1950), + [aux_sym_cmd_identifier_token10] = ACTIONS(1950), + [aux_sym_cmd_identifier_token11] = ACTIONS(1950), + [aux_sym_cmd_identifier_token12] = ACTIONS(1950), + [aux_sym_cmd_identifier_token13] = ACTIONS(1950), + [aux_sym_cmd_identifier_token14] = ACTIONS(1950), + [aux_sym_cmd_identifier_token15] = ACTIONS(1950), + [aux_sym_cmd_identifier_token16] = ACTIONS(1950), + [aux_sym_cmd_identifier_token17] = ACTIONS(1950), + [aux_sym_cmd_identifier_token18] = ACTIONS(1950), + [aux_sym_cmd_identifier_token19] = ACTIONS(1950), + [aux_sym_cmd_identifier_token20] = ACTIONS(1950), + [aux_sym_cmd_identifier_token21] = ACTIONS(1950), + [aux_sym_cmd_identifier_token22] = ACTIONS(1950), + [aux_sym_cmd_identifier_token23] = ACTIONS(1950), + [aux_sym_cmd_identifier_token24] = ACTIONS(1950), + [aux_sym_cmd_identifier_token25] = ACTIONS(1950), + [aux_sym_cmd_identifier_token26] = ACTIONS(1950), + [aux_sym_cmd_identifier_token27] = ACTIONS(1950), + [aux_sym_cmd_identifier_token28] = ACTIONS(1950), + [aux_sym_cmd_identifier_token29] = ACTIONS(1950), + [aux_sym_cmd_identifier_token30] = ACTIONS(1950), + [aux_sym_cmd_identifier_token31] = ACTIONS(1950), + [aux_sym_cmd_identifier_token32] = ACTIONS(1950), + [aux_sym_cmd_identifier_token33] = ACTIONS(1950), + [aux_sym_cmd_identifier_token34] = ACTIONS(1950), + [aux_sym_cmd_identifier_token35] = ACTIONS(1950), + [aux_sym_cmd_identifier_token36] = ACTIONS(1950), + [aux_sym_cmd_identifier_token37] = ACTIONS(1950), + [aux_sym_cmd_identifier_token38] = ACTIONS(1950), + [aux_sym_cmd_identifier_token39] = ACTIONS(1950), + [aux_sym_cmd_identifier_token40] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_export_DASHenv] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_error] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_in2] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_make] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_else] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_catch] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_source] = ACTIONS(1950), + [anon_sym_source_DASHenv] = ACTIONS(1950), + [anon_sym_register] = ACTIONS(1950), + [anon_sym_hide] = ACTIONS(1950), + [anon_sym_hide_DASHenv] = ACTIONS(1950), + [anon_sym_overlay] = ACTIONS(1950), + [anon_sym_as] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), + [sym__entry_separator] = ACTIONS(1958), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2446), + [sym_raw_string_begin] = ACTIONS(1958), }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(2448), - [anon_sym_alias] = ACTIONS(2448), - [anon_sym_let] = ACTIONS(2448), - [anon_sym_let_DASHenv] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(2448), - [anon_sym_const] = ACTIONS(2448), - [aux_sym_cmd_identifier_token1] = ACTIONS(2448), - [aux_sym_cmd_identifier_token2] = ACTIONS(2448), - [aux_sym_cmd_identifier_token3] = ACTIONS(2448), - [aux_sym_cmd_identifier_token4] = ACTIONS(2448), - [aux_sym_cmd_identifier_token5] = ACTIONS(2448), - [aux_sym_cmd_identifier_token6] = ACTIONS(2448), - [aux_sym_cmd_identifier_token7] = ACTIONS(2448), - [aux_sym_cmd_identifier_token8] = ACTIONS(2448), - [aux_sym_cmd_identifier_token9] = ACTIONS(2448), - [aux_sym_cmd_identifier_token10] = ACTIONS(2448), - [aux_sym_cmd_identifier_token11] = ACTIONS(2448), - [aux_sym_cmd_identifier_token12] = ACTIONS(2448), - [aux_sym_cmd_identifier_token13] = ACTIONS(2448), - [aux_sym_cmd_identifier_token14] = ACTIONS(2448), - [aux_sym_cmd_identifier_token15] = ACTIONS(2448), - [aux_sym_cmd_identifier_token16] = ACTIONS(2448), - [aux_sym_cmd_identifier_token17] = ACTIONS(2448), - [aux_sym_cmd_identifier_token18] = ACTIONS(2448), - [aux_sym_cmd_identifier_token19] = ACTIONS(2448), - [aux_sym_cmd_identifier_token20] = ACTIONS(2448), - [aux_sym_cmd_identifier_token21] = ACTIONS(2448), - [aux_sym_cmd_identifier_token22] = ACTIONS(2448), - [aux_sym_cmd_identifier_token23] = ACTIONS(2448), - [aux_sym_cmd_identifier_token24] = ACTIONS(2448), - [aux_sym_cmd_identifier_token25] = ACTIONS(2448), - [aux_sym_cmd_identifier_token26] = ACTIONS(2448), - [aux_sym_cmd_identifier_token27] = ACTIONS(2448), - [aux_sym_cmd_identifier_token28] = ACTIONS(2448), - [aux_sym_cmd_identifier_token29] = ACTIONS(2448), - [aux_sym_cmd_identifier_token30] = ACTIONS(2448), - [aux_sym_cmd_identifier_token31] = ACTIONS(2448), - [aux_sym_cmd_identifier_token32] = ACTIONS(2448), - [aux_sym_cmd_identifier_token33] = ACTIONS(2448), - [aux_sym_cmd_identifier_token34] = ACTIONS(2448), - [aux_sym_cmd_identifier_token35] = ACTIONS(2448), - [aux_sym_cmd_identifier_token36] = ACTIONS(2448), - [aux_sym_cmd_identifier_token37] = ACTIONS(2448), - [aux_sym_cmd_identifier_token38] = ACTIONS(2448), - [aux_sym_cmd_identifier_token39] = ACTIONS(2448), - [aux_sym_cmd_identifier_token40] = ACTIONS(2448), - [anon_sym_def] = ACTIONS(2448), - [anon_sym_export_DASHenv] = ACTIONS(2448), - [anon_sym_extern] = ACTIONS(2448), - [anon_sym_module] = ACTIONS(2448), - [anon_sym_use] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_DOLLAR] = ACTIONS(2448), - [anon_sym_error] = ACTIONS(2448), - [anon_sym_DASH2] = ACTIONS(2448), - [anon_sym_break] = ACTIONS(2448), - [anon_sym_continue] = ACTIONS(2448), - [anon_sym_for] = ACTIONS(2448), - [anon_sym_in2] = ACTIONS(2448), - [anon_sym_loop] = ACTIONS(2448), - [anon_sym_make] = ACTIONS(2448), - [anon_sym_while] = ACTIONS(2448), - [anon_sym_do] = ACTIONS(2448), - [anon_sym_if] = ACTIONS(2448), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_try] = ACTIONS(2448), - [anon_sym_catch] = ACTIONS(2448), - [anon_sym_return] = ACTIONS(2448), - [anon_sym_source] = ACTIONS(2448), - [anon_sym_source_DASHenv] = ACTIONS(2448), - [anon_sym_register] = ACTIONS(2448), - [anon_sym_hide] = ACTIONS(2448), - [anon_sym_hide_DASHenv] = ACTIONS(2448), - [anon_sym_overlay] = ACTIONS(2448), - [anon_sym_as] = ACTIONS(2448), - [anon_sym_PLUS2] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2448), - [aux_sym__val_number_decimal_token1] = ACTIONS(2448), - [aux_sym__val_number_decimal_token2] = ACTIONS(2448), - [aux_sym__val_number_decimal_token3] = ACTIONS(2448), - [aux_sym__val_number_decimal_token4] = ACTIONS(2448), - [aux_sym__val_number_token1] = ACTIONS(2448), - [aux_sym__val_number_token2] = ACTIONS(2448), - [aux_sym__val_number_token3] = ACTIONS(2448), - [aux_sym__val_number_token4] = ACTIONS(2448), - [aux_sym__val_number_token5] = ACTIONS(2448), - [aux_sym__val_number_token6] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [sym__str_single_quotes] = ACTIONS(2448), - [sym__str_back_ticks] = ACTIONS(2448), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), - [sym__entry_separator] = ACTIONS(2450), + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2337), + [anon_sym_alias] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_let_DASHenv] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [aux_sym_cmd_identifier_token1] = ACTIONS(2337), + [aux_sym_cmd_identifier_token2] = ACTIONS(2337), + [aux_sym_cmd_identifier_token3] = ACTIONS(2337), + [aux_sym_cmd_identifier_token4] = ACTIONS(2337), + [aux_sym_cmd_identifier_token5] = ACTIONS(2337), + [aux_sym_cmd_identifier_token6] = ACTIONS(2337), + [aux_sym_cmd_identifier_token7] = ACTIONS(2337), + [aux_sym_cmd_identifier_token8] = ACTIONS(2337), + [aux_sym_cmd_identifier_token9] = ACTIONS(2337), + [aux_sym_cmd_identifier_token10] = ACTIONS(2337), + [aux_sym_cmd_identifier_token11] = ACTIONS(2337), + [aux_sym_cmd_identifier_token12] = ACTIONS(2337), + [aux_sym_cmd_identifier_token13] = ACTIONS(2337), + [aux_sym_cmd_identifier_token14] = ACTIONS(2337), + [aux_sym_cmd_identifier_token15] = ACTIONS(2337), + [aux_sym_cmd_identifier_token16] = ACTIONS(2337), + [aux_sym_cmd_identifier_token17] = ACTIONS(2337), + [aux_sym_cmd_identifier_token18] = ACTIONS(2337), + [aux_sym_cmd_identifier_token19] = ACTIONS(2337), + [aux_sym_cmd_identifier_token20] = ACTIONS(2337), + [aux_sym_cmd_identifier_token21] = ACTIONS(2337), + [aux_sym_cmd_identifier_token22] = ACTIONS(2337), + [aux_sym_cmd_identifier_token23] = ACTIONS(2337), + [aux_sym_cmd_identifier_token24] = ACTIONS(2337), + [aux_sym_cmd_identifier_token25] = ACTIONS(2337), + [aux_sym_cmd_identifier_token26] = ACTIONS(2337), + [aux_sym_cmd_identifier_token27] = ACTIONS(2337), + [aux_sym_cmd_identifier_token28] = ACTIONS(2337), + [aux_sym_cmd_identifier_token29] = ACTIONS(2337), + [aux_sym_cmd_identifier_token30] = ACTIONS(2337), + [aux_sym_cmd_identifier_token31] = ACTIONS(2337), + [aux_sym_cmd_identifier_token32] = ACTIONS(2337), + [aux_sym_cmd_identifier_token33] = ACTIONS(2337), + [aux_sym_cmd_identifier_token34] = ACTIONS(2337), + [aux_sym_cmd_identifier_token35] = ACTIONS(2337), + [aux_sym_cmd_identifier_token36] = ACTIONS(2337), + [aux_sym_cmd_identifier_token37] = ACTIONS(2337), + [aux_sym_cmd_identifier_token38] = ACTIONS(2337), + [aux_sym_cmd_identifier_token39] = ACTIONS(2337), + [aux_sym_cmd_identifier_token40] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2337), + [anon_sym_export_DASHenv] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_module] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_error] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in2] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_make] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_source] = ACTIONS(2337), + [anon_sym_source_DASHenv] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_hide] = ACTIONS(2337), + [anon_sym_hide_DASHenv] = ACTIONS(2337), + [anon_sym_overlay] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_PLUS2] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2337), + [sym__str_single_quotes] = ACTIONS(2337), + [sym__str_back_ticks] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), + [sym__entry_separator] = ACTIONS(2341), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2450), + [sym_raw_string_begin] = ACTIONS(2341), }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1847), - [aux_sym_cmd_identifier_token3] = ACTIONS(1847), - [aux_sym_cmd_identifier_token4] = ACTIONS(1847), - [aux_sym_cmd_identifier_token5] = ACTIONS(1847), - [aux_sym_cmd_identifier_token6] = ACTIONS(1847), - [aux_sym_cmd_identifier_token7] = ACTIONS(1847), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1847), - [aux_sym_cmd_identifier_token17] = ACTIONS(1847), - [aux_sym_cmd_identifier_token18] = ACTIONS(1847), - [aux_sym_cmd_identifier_token19] = ACTIONS(1847), - [aux_sym_cmd_identifier_token20] = ACTIONS(1847), - [aux_sym_cmd_identifier_token21] = ACTIONS(1847), - [aux_sym_cmd_identifier_token22] = ACTIONS(1847), - [aux_sym_cmd_identifier_token23] = ACTIONS(1847), - [aux_sym_cmd_identifier_token24] = ACTIONS(1847), - [aux_sym_cmd_identifier_token25] = ACTIONS(1847), - [aux_sym_cmd_identifier_token26] = ACTIONS(1847), - [aux_sym_cmd_identifier_token27] = ACTIONS(1847), - [aux_sym_cmd_identifier_token28] = ACTIONS(1847), - [aux_sym_cmd_identifier_token29] = ACTIONS(1847), - [aux_sym_cmd_identifier_token30] = ACTIONS(1847), - [aux_sym_cmd_identifier_token31] = ACTIONS(1847), - [aux_sym_cmd_identifier_token32] = ACTIONS(1847), - [aux_sym_cmd_identifier_token33] = ACTIONS(1847), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [aux_sym_cmd_identifier_token37] = ACTIONS(1847), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1847), - [aux_sym_cmd_identifier_token40] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in2] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1847), - [aux_sym__val_number_decimal_token3] = ACTIONS(1847), - [aux_sym__val_number_decimal_token4] = ACTIONS(1847), - [aux_sym__val_number_token1] = ACTIONS(1847), - [aux_sym__val_number_token2] = ACTIONS(1847), - [aux_sym__val_number_token3] = ACTIONS(1847), - [aux_sym__val_number_token4] = ACTIONS(1847), - [aux_sym__val_number_token5] = ACTIONS(1847), - [aux_sym__val_number_token6] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym__str_single_quotes] = ACTIONS(1847), - [sym__str_back_ticks] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), - [sym__entry_separator] = ACTIONS(1851), + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(2345), + [anon_sym_alias] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_let_DASHenv] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [aux_sym_cmd_identifier_token1] = ACTIONS(2345), + [aux_sym_cmd_identifier_token2] = ACTIONS(2345), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [aux_sym_cmd_identifier_token6] = ACTIONS(2345), + [aux_sym_cmd_identifier_token7] = ACTIONS(2345), + [aux_sym_cmd_identifier_token8] = ACTIONS(2345), + [aux_sym_cmd_identifier_token9] = ACTIONS(2345), + [aux_sym_cmd_identifier_token10] = ACTIONS(2345), + [aux_sym_cmd_identifier_token11] = ACTIONS(2345), + [aux_sym_cmd_identifier_token12] = ACTIONS(2345), + [aux_sym_cmd_identifier_token13] = ACTIONS(2345), + [aux_sym_cmd_identifier_token14] = ACTIONS(2345), + [aux_sym_cmd_identifier_token15] = ACTIONS(2345), + [aux_sym_cmd_identifier_token16] = ACTIONS(2345), + [aux_sym_cmd_identifier_token17] = ACTIONS(2345), + [aux_sym_cmd_identifier_token18] = ACTIONS(2345), + [aux_sym_cmd_identifier_token19] = ACTIONS(2345), + [aux_sym_cmd_identifier_token20] = ACTIONS(2345), + [aux_sym_cmd_identifier_token21] = ACTIONS(2345), + [aux_sym_cmd_identifier_token22] = ACTIONS(2345), + [aux_sym_cmd_identifier_token23] = ACTIONS(2345), + [aux_sym_cmd_identifier_token24] = ACTIONS(2345), + [aux_sym_cmd_identifier_token25] = ACTIONS(2345), + [aux_sym_cmd_identifier_token26] = ACTIONS(2345), + [aux_sym_cmd_identifier_token27] = ACTIONS(2345), + [aux_sym_cmd_identifier_token28] = ACTIONS(2345), + [aux_sym_cmd_identifier_token29] = ACTIONS(2345), + [aux_sym_cmd_identifier_token30] = ACTIONS(2345), + [aux_sym_cmd_identifier_token31] = ACTIONS(2345), + [aux_sym_cmd_identifier_token32] = ACTIONS(2345), + [aux_sym_cmd_identifier_token33] = ACTIONS(2345), + [aux_sym_cmd_identifier_token34] = ACTIONS(2345), + [aux_sym_cmd_identifier_token35] = ACTIONS(2345), + [aux_sym_cmd_identifier_token36] = ACTIONS(2345), + [aux_sym_cmd_identifier_token37] = ACTIONS(2345), + [aux_sym_cmd_identifier_token38] = ACTIONS(2345), + [aux_sym_cmd_identifier_token39] = ACTIONS(2345), + [aux_sym_cmd_identifier_token40] = ACTIONS(2345), + [anon_sym_def] = ACTIONS(2345), + [anon_sym_export_DASHenv] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_module] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_error] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_make] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_catch] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_source] = ACTIONS(2345), + [anon_sym_source_DASHenv] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_hide] = ACTIONS(2345), + [anon_sym_hide_DASHenv] = ACTIONS(2345), + [anon_sym_overlay] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [aux_sym__val_number_token4] = ACTIONS(2345), + [aux_sym__val_number_token5] = ACTIONS(2345), + [aux_sym__val_number_token6] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2345), + [sym__str_single_quotes] = ACTIONS(2345), + [sym__str_back_ticks] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), + [sym__entry_separator] = ACTIONS(2349), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1851), + [sym_raw_string_begin] = ACTIONS(2349), }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_alias] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_let_DASHenv] = ACTIONS(2452), - [anon_sym_mut] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [aux_sym_cmd_identifier_token1] = ACTIONS(2452), - [aux_sym_cmd_identifier_token2] = ACTIONS(2452), - [aux_sym_cmd_identifier_token3] = ACTIONS(2452), - [aux_sym_cmd_identifier_token4] = ACTIONS(2452), - [aux_sym_cmd_identifier_token5] = ACTIONS(2452), - [aux_sym_cmd_identifier_token6] = ACTIONS(2452), - [aux_sym_cmd_identifier_token7] = ACTIONS(2452), - [aux_sym_cmd_identifier_token8] = ACTIONS(2452), - [aux_sym_cmd_identifier_token9] = ACTIONS(2452), - [aux_sym_cmd_identifier_token10] = ACTIONS(2452), - [aux_sym_cmd_identifier_token11] = ACTIONS(2452), - [aux_sym_cmd_identifier_token12] = ACTIONS(2452), - [aux_sym_cmd_identifier_token13] = ACTIONS(2452), - [aux_sym_cmd_identifier_token14] = ACTIONS(2452), - [aux_sym_cmd_identifier_token15] = ACTIONS(2452), - [aux_sym_cmd_identifier_token16] = ACTIONS(2452), - [aux_sym_cmd_identifier_token17] = ACTIONS(2452), - [aux_sym_cmd_identifier_token18] = ACTIONS(2452), - [aux_sym_cmd_identifier_token19] = ACTIONS(2452), - [aux_sym_cmd_identifier_token20] = ACTIONS(2452), - [aux_sym_cmd_identifier_token21] = ACTIONS(2452), - [aux_sym_cmd_identifier_token22] = ACTIONS(2452), - [aux_sym_cmd_identifier_token23] = ACTIONS(2452), - [aux_sym_cmd_identifier_token24] = ACTIONS(2452), - [aux_sym_cmd_identifier_token25] = ACTIONS(2452), - [aux_sym_cmd_identifier_token26] = ACTIONS(2452), - [aux_sym_cmd_identifier_token27] = ACTIONS(2452), - [aux_sym_cmd_identifier_token28] = ACTIONS(2452), - [aux_sym_cmd_identifier_token29] = ACTIONS(2452), - [aux_sym_cmd_identifier_token30] = ACTIONS(2452), - [aux_sym_cmd_identifier_token31] = ACTIONS(2452), - [aux_sym_cmd_identifier_token32] = ACTIONS(2452), - [aux_sym_cmd_identifier_token33] = ACTIONS(2452), - [aux_sym_cmd_identifier_token34] = ACTIONS(2452), - [aux_sym_cmd_identifier_token35] = ACTIONS(2452), - [aux_sym_cmd_identifier_token36] = ACTIONS(2452), - [aux_sym_cmd_identifier_token37] = ACTIONS(2452), - [aux_sym_cmd_identifier_token38] = ACTIONS(2452), - [aux_sym_cmd_identifier_token39] = ACTIONS(2452), - [aux_sym_cmd_identifier_token40] = ACTIONS(2452), - [anon_sym_def] = ACTIONS(2452), - [anon_sym_export_DASHenv] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_error] = ACTIONS(2452), - [anon_sym_DASH2] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_in2] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_make] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_source] = ACTIONS(2452), - [anon_sym_source_DASHenv] = ACTIONS(2452), - [anon_sym_register] = ACTIONS(2452), - [anon_sym_hide] = ACTIONS(2452), - [anon_sym_hide_DASHenv] = ACTIONS(2452), - [anon_sym_overlay] = ACTIONS(2452), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_PLUS2] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2452), - [aux_sym__val_number_decimal_token3] = ACTIONS(2452), - [aux_sym__val_number_decimal_token4] = ACTIONS(2452), - [aux_sym__val_number_token1] = ACTIONS(2452), - [aux_sym__val_number_token2] = ACTIONS(2452), - [aux_sym__val_number_token3] = ACTIONS(2452), - [aux_sym__val_number_token4] = ACTIONS(2452), - [aux_sym__val_number_token5] = ACTIONS(2452), - [aux_sym__val_number_token6] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2452), - [sym__str_single_quotes] = ACTIONS(2452), - [sym__str_back_ticks] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), - [sym__entry_separator] = ACTIONS(2454), + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(2353), + [anon_sym_alias] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_let_DASHenv] = ACTIONS(2353), + [anon_sym_mut] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [aux_sym_cmd_identifier_token1] = ACTIONS(2353), + [aux_sym_cmd_identifier_token2] = ACTIONS(2353), + [aux_sym_cmd_identifier_token3] = ACTIONS(2353), + [aux_sym_cmd_identifier_token4] = ACTIONS(2353), + [aux_sym_cmd_identifier_token5] = ACTIONS(2353), + [aux_sym_cmd_identifier_token6] = ACTIONS(2353), + [aux_sym_cmd_identifier_token7] = ACTIONS(2353), + [aux_sym_cmd_identifier_token8] = ACTIONS(2353), + [aux_sym_cmd_identifier_token9] = ACTIONS(2353), + [aux_sym_cmd_identifier_token10] = ACTIONS(2353), + [aux_sym_cmd_identifier_token11] = ACTIONS(2353), + [aux_sym_cmd_identifier_token12] = ACTIONS(2353), + [aux_sym_cmd_identifier_token13] = ACTIONS(2353), + [aux_sym_cmd_identifier_token14] = ACTIONS(2353), + [aux_sym_cmd_identifier_token15] = ACTIONS(2353), + [aux_sym_cmd_identifier_token16] = ACTIONS(2353), + [aux_sym_cmd_identifier_token17] = ACTIONS(2353), + [aux_sym_cmd_identifier_token18] = ACTIONS(2353), + [aux_sym_cmd_identifier_token19] = ACTIONS(2353), + [aux_sym_cmd_identifier_token20] = ACTIONS(2353), + [aux_sym_cmd_identifier_token21] = ACTIONS(2353), + [aux_sym_cmd_identifier_token22] = ACTIONS(2353), + [aux_sym_cmd_identifier_token23] = ACTIONS(2353), + [aux_sym_cmd_identifier_token24] = ACTIONS(2353), + [aux_sym_cmd_identifier_token25] = ACTIONS(2353), + [aux_sym_cmd_identifier_token26] = ACTIONS(2353), + [aux_sym_cmd_identifier_token27] = ACTIONS(2353), + [aux_sym_cmd_identifier_token28] = ACTIONS(2353), + [aux_sym_cmd_identifier_token29] = ACTIONS(2353), + [aux_sym_cmd_identifier_token30] = ACTIONS(2353), + [aux_sym_cmd_identifier_token31] = ACTIONS(2353), + [aux_sym_cmd_identifier_token32] = ACTIONS(2353), + [aux_sym_cmd_identifier_token33] = ACTIONS(2353), + [aux_sym_cmd_identifier_token34] = ACTIONS(2353), + [aux_sym_cmd_identifier_token35] = ACTIONS(2353), + [aux_sym_cmd_identifier_token36] = ACTIONS(2353), + [aux_sym_cmd_identifier_token37] = ACTIONS(2353), + [aux_sym_cmd_identifier_token38] = ACTIONS(2353), + [aux_sym_cmd_identifier_token39] = ACTIONS(2353), + [aux_sym_cmd_identifier_token40] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2353), + [anon_sym_export_DASHenv] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_module] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_error] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_make] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_catch] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_source] = ACTIONS(2353), + [anon_sym_source_DASHenv] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_hide] = ACTIONS(2353), + [anon_sym_hide_DASHenv] = ACTIONS(2353), + [anon_sym_overlay] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2353), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2353), + [aux_sym__val_number_token5] = ACTIONS(2353), + [aux_sym__val_number_token6] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2353), + [sym__str_single_quotes] = ACTIONS(2353), + [sym__str_back_ticks] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), + [sym__entry_separator] = ACTIONS(2355), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2454), + [sym_raw_string_begin] = ACTIONS(2355), }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), - [aux_sym_cmd_identifier_token2] = ACTIONS(2165), - [aux_sym_cmd_identifier_token3] = ACTIONS(2165), - [aux_sym_cmd_identifier_token4] = ACTIONS(2165), - [aux_sym_cmd_identifier_token5] = ACTIONS(2165), - [aux_sym_cmd_identifier_token6] = ACTIONS(2165), - [aux_sym_cmd_identifier_token7] = ACTIONS(2165), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), - [aux_sym_cmd_identifier_token10] = ACTIONS(2165), - [aux_sym_cmd_identifier_token11] = ACTIONS(2165), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), - [aux_sym_cmd_identifier_token16] = ACTIONS(2165), - [aux_sym_cmd_identifier_token17] = ACTIONS(2165), - [aux_sym_cmd_identifier_token18] = ACTIONS(2165), - [aux_sym_cmd_identifier_token19] = ACTIONS(2165), - [aux_sym_cmd_identifier_token20] = ACTIONS(2165), - [aux_sym_cmd_identifier_token21] = ACTIONS(2165), - [aux_sym_cmd_identifier_token22] = ACTIONS(2165), - [aux_sym_cmd_identifier_token23] = ACTIONS(2165), - [aux_sym_cmd_identifier_token24] = ACTIONS(2165), - [aux_sym_cmd_identifier_token25] = ACTIONS(2165), - [aux_sym_cmd_identifier_token26] = ACTIONS(2165), - [aux_sym_cmd_identifier_token27] = ACTIONS(2165), - [aux_sym_cmd_identifier_token28] = ACTIONS(2165), - [aux_sym_cmd_identifier_token29] = ACTIONS(2165), - [aux_sym_cmd_identifier_token30] = ACTIONS(2165), - [aux_sym_cmd_identifier_token31] = ACTIONS(2165), - [aux_sym_cmd_identifier_token32] = ACTIONS(2165), - [aux_sym_cmd_identifier_token33] = ACTIONS(2165), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), - [aux_sym_cmd_identifier_token35] = ACTIONS(2165), - [aux_sym_cmd_identifier_token36] = ACTIONS(2165), - [aux_sym_cmd_identifier_token37] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2165), - [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [sym__entry_separator] = ACTIONS(2171), + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(2357), + [anon_sym_alias] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_let_DASHenv] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [aux_sym_cmd_identifier_token1] = ACTIONS(2357), + [aux_sym_cmd_identifier_token2] = ACTIONS(2357), + [aux_sym_cmd_identifier_token3] = ACTIONS(2357), + [aux_sym_cmd_identifier_token4] = ACTIONS(2357), + [aux_sym_cmd_identifier_token5] = ACTIONS(2357), + [aux_sym_cmd_identifier_token6] = ACTIONS(2357), + [aux_sym_cmd_identifier_token7] = ACTIONS(2357), + [aux_sym_cmd_identifier_token8] = ACTIONS(2357), + [aux_sym_cmd_identifier_token9] = ACTIONS(2357), + [aux_sym_cmd_identifier_token10] = ACTIONS(2357), + [aux_sym_cmd_identifier_token11] = ACTIONS(2357), + [aux_sym_cmd_identifier_token12] = ACTIONS(2357), + [aux_sym_cmd_identifier_token13] = ACTIONS(2357), + [aux_sym_cmd_identifier_token14] = ACTIONS(2357), + [aux_sym_cmd_identifier_token15] = ACTIONS(2357), + [aux_sym_cmd_identifier_token16] = ACTIONS(2357), + [aux_sym_cmd_identifier_token17] = ACTIONS(2357), + [aux_sym_cmd_identifier_token18] = ACTIONS(2357), + [aux_sym_cmd_identifier_token19] = ACTIONS(2357), + [aux_sym_cmd_identifier_token20] = ACTIONS(2357), + [aux_sym_cmd_identifier_token21] = ACTIONS(2357), + [aux_sym_cmd_identifier_token22] = ACTIONS(2357), + [aux_sym_cmd_identifier_token23] = ACTIONS(2357), + [aux_sym_cmd_identifier_token24] = ACTIONS(2357), + [aux_sym_cmd_identifier_token25] = ACTIONS(2357), + [aux_sym_cmd_identifier_token26] = ACTIONS(2357), + [aux_sym_cmd_identifier_token27] = ACTIONS(2357), + [aux_sym_cmd_identifier_token28] = ACTIONS(2357), + [aux_sym_cmd_identifier_token29] = ACTIONS(2357), + [aux_sym_cmd_identifier_token30] = ACTIONS(2357), + [aux_sym_cmd_identifier_token31] = ACTIONS(2357), + [aux_sym_cmd_identifier_token32] = ACTIONS(2357), + [aux_sym_cmd_identifier_token33] = ACTIONS(2357), + [aux_sym_cmd_identifier_token34] = ACTIONS(2357), + [aux_sym_cmd_identifier_token35] = ACTIONS(2357), + [aux_sym_cmd_identifier_token36] = ACTIONS(2357), + [aux_sym_cmd_identifier_token37] = ACTIONS(2357), + [aux_sym_cmd_identifier_token38] = ACTIONS(2357), + [aux_sym_cmd_identifier_token39] = ACTIONS(2357), + [aux_sym_cmd_identifier_token40] = ACTIONS(2357), + [anon_sym_def] = ACTIONS(2357), + [anon_sym_export_DASHenv] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_module] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_error] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_in2] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_make] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_catch] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_source] = ACTIONS(2357), + [anon_sym_source_DASHenv] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_hide] = ACTIONS(2357), + [anon_sym_hide_DASHenv] = ACTIONS(2357), + [anon_sym_overlay] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), + [aux_sym__val_number_decimal_token1] = ACTIONS(2357), + [aux_sym__val_number_decimal_token2] = ACTIONS(2357), + [aux_sym__val_number_decimal_token3] = ACTIONS(2357), + [aux_sym__val_number_decimal_token4] = ACTIONS(2357), + [aux_sym__val_number_token1] = ACTIONS(2357), + [aux_sym__val_number_token2] = ACTIONS(2357), + [aux_sym__val_number_token3] = ACTIONS(2357), + [aux_sym__val_number_token4] = ACTIONS(2357), + [aux_sym__val_number_token5] = ACTIONS(2357), + [aux_sym__val_number_token6] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym__str_single_quotes] = ACTIONS(2357), + [sym__str_back_ticks] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), + [sym__entry_separator] = ACTIONS(2361), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2361), + }, + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_alias] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_let_DASHenv] = ACTIONS(2228), + [anon_sym_mut] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [aux_sym_cmd_identifier_token1] = ACTIONS(2228), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2228), + [aux_sym_cmd_identifier_token9] = ACTIONS(2228), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2228), + [aux_sym_cmd_identifier_token13] = ACTIONS(2228), + [aux_sym_cmd_identifier_token14] = ACTIONS(2228), + [aux_sym_cmd_identifier_token15] = ACTIONS(2228), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2228), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [aux_sym_cmd_identifier_token37] = ACTIONS(2234), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2234), + [aux_sym_cmd_identifier_token40] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2228), + [anon_sym_export_DASHenv] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_error] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_in2] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_make] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_catch] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_source] = ACTIONS(2228), + [anon_sym_source_DASHenv] = ACTIONS(2228), + [anon_sym_register] = ACTIONS(2228), + [anon_sym_hide] = ACTIONS(2228), + [anon_sym_hide_DASHenv] = ACTIONS(2228), + [anon_sym_overlay] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), + [anon_sym_DOT_DOT2] = ACTIONS(2365), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2367), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2369), + [anon_sym_alias] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_let_DASHenv] = ACTIONS(2369), + [anon_sym_mut] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [aux_sym_cmd_identifier_token1] = ACTIONS(2369), + [aux_sym_cmd_identifier_token2] = ACTIONS(2369), + [aux_sym_cmd_identifier_token3] = ACTIONS(2369), + [aux_sym_cmd_identifier_token4] = ACTIONS(2369), + [aux_sym_cmd_identifier_token5] = ACTIONS(2369), + [aux_sym_cmd_identifier_token6] = ACTIONS(2369), + [aux_sym_cmd_identifier_token7] = ACTIONS(2369), + [aux_sym_cmd_identifier_token8] = ACTIONS(2369), + [aux_sym_cmd_identifier_token9] = ACTIONS(2369), + [aux_sym_cmd_identifier_token10] = ACTIONS(2369), + [aux_sym_cmd_identifier_token11] = ACTIONS(2369), + [aux_sym_cmd_identifier_token12] = ACTIONS(2369), + [aux_sym_cmd_identifier_token13] = ACTIONS(2369), + [aux_sym_cmd_identifier_token14] = ACTIONS(2369), + [aux_sym_cmd_identifier_token15] = ACTIONS(2369), + [aux_sym_cmd_identifier_token16] = ACTIONS(2369), + [aux_sym_cmd_identifier_token17] = ACTIONS(2369), + [aux_sym_cmd_identifier_token18] = ACTIONS(2369), + [aux_sym_cmd_identifier_token19] = ACTIONS(2369), + [aux_sym_cmd_identifier_token20] = ACTIONS(2369), + [aux_sym_cmd_identifier_token21] = ACTIONS(2369), + [aux_sym_cmd_identifier_token22] = ACTIONS(2369), + [aux_sym_cmd_identifier_token23] = ACTIONS(2369), + [aux_sym_cmd_identifier_token24] = ACTIONS(2369), + [aux_sym_cmd_identifier_token25] = ACTIONS(2369), + [aux_sym_cmd_identifier_token26] = ACTIONS(2369), + [aux_sym_cmd_identifier_token27] = ACTIONS(2369), + [aux_sym_cmd_identifier_token28] = ACTIONS(2369), + [aux_sym_cmd_identifier_token29] = ACTIONS(2369), + [aux_sym_cmd_identifier_token30] = ACTIONS(2369), + [aux_sym_cmd_identifier_token31] = ACTIONS(2369), + [aux_sym_cmd_identifier_token32] = ACTIONS(2369), + [aux_sym_cmd_identifier_token33] = ACTIONS(2369), + [aux_sym_cmd_identifier_token34] = ACTIONS(2369), + [aux_sym_cmd_identifier_token35] = ACTIONS(2369), + [aux_sym_cmd_identifier_token36] = ACTIONS(2369), + [aux_sym_cmd_identifier_token37] = ACTIONS(2369), + [aux_sym_cmd_identifier_token38] = ACTIONS(2369), + [aux_sym_cmd_identifier_token39] = ACTIONS(2369), + [aux_sym_cmd_identifier_token40] = ACTIONS(2369), + [anon_sym_def] = ACTIONS(2369), + [anon_sym_export_DASHenv] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_module] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_error] = ACTIONS(2369), + [anon_sym_DASH2] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_in2] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_make] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_catch] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_source] = ACTIONS(2369), + [anon_sym_source_DASHenv] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_hide] = ACTIONS(2369), + [anon_sym_hide_DASHenv] = ACTIONS(2369), + [anon_sym_overlay] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_PLUS2] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), + [aux_sym__val_number_decimal_token1] = ACTIONS(2369), + [aux_sym__val_number_decimal_token2] = ACTIONS(2369), + [aux_sym__val_number_decimal_token3] = ACTIONS(2369), + [aux_sym__val_number_decimal_token4] = ACTIONS(2369), + [aux_sym__val_number_token1] = ACTIONS(2369), + [aux_sym__val_number_token2] = ACTIONS(2369), + [aux_sym__val_number_token3] = ACTIONS(2369), + [aux_sym__val_number_token4] = ACTIONS(2369), + [aux_sym__val_number_token5] = ACTIONS(2369), + [aux_sym__val_number_token6] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [sym__str_single_quotes] = ACTIONS(2369), + [sym__str_back_ticks] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), + [sym__entry_separator] = ACTIONS(2373), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2375), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2171), + [sym_raw_string_begin] = ACTIONS(2373), + }, + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [aux_sym_cmd_identifier_token1] = ACTIONS(2177), + [aux_sym_cmd_identifier_token2] = ACTIONS(2183), + [aux_sym_cmd_identifier_token3] = ACTIONS(2183), + [aux_sym_cmd_identifier_token4] = ACTIONS(2183), + [aux_sym_cmd_identifier_token5] = ACTIONS(2183), + [aux_sym_cmd_identifier_token6] = ACTIONS(2183), + [aux_sym_cmd_identifier_token7] = ACTIONS(2183), + [aux_sym_cmd_identifier_token8] = ACTIONS(2177), + [aux_sym_cmd_identifier_token9] = ACTIONS(2177), + [aux_sym_cmd_identifier_token10] = ACTIONS(2183), + [aux_sym_cmd_identifier_token11] = ACTIONS(2183), + [aux_sym_cmd_identifier_token12] = ACTIONS(2177), + [aux_sym_cmd_identifier_token13] = ACTIONS(2177), + [aux_sym_cmd_identifier_token14] = ACTIONS(2177), + [aux_sym_cmd_identifier_token15] = ACTIONS(2177), + [aux_sym_cmd_identifier_token16] = ACTIONS(2183), + [aux_sym_cmd_identifier_token17] = ACTIONS(2183), + [aux_sym_cmd_identifier_token18] = ACTIONS(2183), + [aux_sym_cmd_identifier_token19] = ACTIONS(2183), + [aux_sym_cmd_identifier_token20] = ACTIONS(2183), + [aux_sym_cmd_identifier_token21] = ACTIONS(2183), + [aux_sym_cmd_identifier_token22] = ACTIONS(2183), + [aux_sym_cmd_identifier_token23] = ACTIONS(2183), + [aux_sym_cmd_identifier_token24] = ACTIONS(2183), + [aux_sym_cmd_identifier_token25] = ACTIONS(2183), + [aux_sym_cmd_identifier_token26] = ACTIONS(2183), + [aux_sym_cmd_identifier_token27] = ACTIONS(2183), + [aux_sym_cmd_identifier_token28] = ACTIONS(2183), + [aux_sym_cmd_identifier_token29] = ACTIONS(2183), + [aux_sym_cmd_identifier_token30] = ACTIONS(2183), + [aux_sym_cmd_identifier_token31] = ACTIONS(2183), + [aux_sym_cmd_identifier_token32] = ACTIONS(2183), + [aux_sym_cmd_identifier_token33] = ACTIONS(2183), + [aux_sym_cmd_identifier_token34] = ACTIONS(2177), + [aux_sym_cmd_identifier_token35] = ACTIONS(2183), + [aux_sym_cmd_identifier_token36] = ACTIONS(2183), + [aux_sym_cmd_identifier_token37] = ACTIONS(2183), + [aux_sym_cmd_identifier_token38] = ACTIONS(2177), + [aux_sym_cmd_identifier_token39] = ACTIONS(2183), + [aux_sym_cmd_identifier_token40] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_in2] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_make] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_catch] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_PLUS2] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), + [anon_sym_DOT_DOT2] = ACTIONS(2377), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2379), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2177), + [aux_sym__val_number_token5] = ACTIONS(2177), + [aux_sym__val_number_token6] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2183), }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_let_DASHenv] = ACTIONS(2146), - [anon_sym_mut] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [aux_sym_cmd_identifier_token1] = ACTIONS(2146), - [aux_sym_cmd_identifier_token2] = ACTIONS(2146), - [aux_sym_cmd_identifier_token3] = ACTIONS(2146), - [aux_sym_cmd_identifier_token4] = ACTIONS(2146), - [aux_sym_cmd_identifier_token5] = ACTIONS(2146), - [aux_sym_cmd_identifier_token6] = ACTIONS(2146), - [aux_sym_cmd_identifier_token7] = ACTIONS(2146), - [aux_sym_cmd_identifier_token8] = ACTIONS(2146), - [aux_sym_cmd_identifier_token9] = ACTIONS(2146), - [aux_sym_cmd_identifier_token10] = ACTIONS(2146), - [aux_sym_cmd_identifier_token11] = ACTIONS(2146), - [aux_sym_cmd_identifier_token12] = ACTIONS(2146), - [aux_sym_cmd_identifier_token13] = ACTIONS(2146), - [aux_sym_cmd_identifier_token14] = ACTIONS(2146), - [aux_sym_cmd_identifier_token15] = ACTIONS(2146), - [aux_sym_cmd_identifier_token16] = ACTIONS(2146), - [aux_sym_cmd_identifier_token17] = ACTIONS(2146), - [aux_sym_cmd_identifier_token18] = ACTIONS(2146), - [aux_sym_cmd_identifier_token19] = ACTIONS(2146), - [aux_sym_cmd_identifier_token20] = ACTIONS(2146), - [aux_sym_cmd_identifier_token21] = ACTIONS(2146), - [aux_sym_cmd_identifier_token22] = ACTIONS(2146), - [aux_sym_cmd_identifier_token23] = ACTIONS(2146), - [aux_sym_cmd_identifier_token24] = ACTIONS(2146), - [aux_sym_cmd_identifier_token25] = ACTIONS(2146), - [aux_sym_cmd_identifier_token26] = ACTIONS(2146), - [aux_sym_cmd_identifier_token27] = ACTIONS(2146), - [aux_sym_cmd_identifier_token28] = ACTIONS(2146), - [aux_sym_cmd_identifier_token29] = ACTIONS(2146), - [aux_sym_cmd_identifier_token30] = ACTIONS(2146), - [aux_sym_cmd_identifier_token31] = ACTIONS(2146), - [aux_sym_cmd_identifier_token32] = ACTIONS(2146), - [aux_sym_cmd_identifier_token33] = ACTIONS(2146), - [aux_sym_cmd_identifier_token34] = ACTIONS(2146), - [aux_sym_cmd_identifier_token35] = ACTIONS(2146), - [aux_sym_cmd_identifier_token36] = ACTIONS(2146), - [aux_sym_cmd_identifier_token37] = ACTIONS(2146), - [aux_sym_cmd_identifier_token38] = ACTIONS(2146), - [aux_sym_cmd_identifier_token39] = ACTIONS(2146), - [aux_sym_cmd_identifier_token40] = ACTIONS(2146), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_export_DASHenv] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_module] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_error] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_in2] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_make] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_source] = ACTIONS(2146), - [anon_sym_source_DASHenv] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_hide] = ACTIONS(2146), - [anon_sym_hide_DASHenv] = ACTIONS(2146), - [anon_sym_overlay] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2146), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2146), - [aux_sym__val_number_decimal_token3] = ACTIONS(2146), - [aux_sym__val_number_decimal_token4] = ACTIONS(2146), - [aux_sym__val_number_token1] = ACTIONS(2146), - [aux_sym__val_number_token2] = ACTIONS(2146), - [aux_sym__val_number_token3] = ACTIONS(2146), - [aux_sym__val_number_token4] = ACTIONS(2146), - [aux_sym__val_number_token5] = ACTIONS(2146), - [aux_sym__val_number_token6] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2146), - [sym__entry_separator] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2152), + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [aux_sym_cmd_identifier_token1] = ACTIONS(2185), + [aux_sym_cmd_identifier_token2] = ACTIONS(2191), + [aux_sym_cmd_identifier_token3] = ACTIONS(2191), + [aux_sym_cmd_identifier_token4] = ACTIONS(2191), + [aux_sym_cmd_identifier_token5] = ACTIONS(2191), + [aux_sym_cmd_identifier_token6] = ACTIONS(2191), + [aux_sym_cmd_identifier_token7] = ACTIONS(2191), + [aux_sym_cmd_identifier_token8] = ACTIONS(2185), + [aux_sym_cmd_identifier_token9] = ACTIONS(2185), + [aux_sym_cmd_identifier_token10] = ACTIONS(2191), + [aux_sym_cmd_identifier_token11] = ACTIONS(2191), + [aux_sym_cmd_identifier_token12] = ACTIONS(2185), + [aux_sym_cmd_identifier_token13] = ACTIONS(2185), + [aux_sym_cmd_identifier_token14] = ACTIONS(2185), + [aux_sym_cmd_identifier_token15] = ACTIONS(2185), + [aux_sym_cmd_identifier_token16] = ACTIONS(2191), + [aux_sym_cmd_identifier_token17] = ACTIONS(2191), + [aux_sym_cmd_identifier_token18] = ACTIONS(2191), + [aux_sym_cmd_identifier_token19] = ACTIONS(2191), + [aux_sym_cmd_identifier_token20] = ACTIONS(2191), + [aux_sym_cmd_identifier_token21] = ACTIONS(2191), + [aux_sym_cmd_identifier_token22] = ACTIONS(2191), + [aux_sym_cmd_identifier_token23] = ACTIONS(2191), + [aux_sym_cmd_identifier_token24] = ACTIONS(2191), + [aux_sym_cmd_identifier_token25] = ACTIONS(2191), + [aux_sym_cmd_identifier_token26] = ACTIONS(2191), + [aux_sym_cmd_identifier_token27] = ACTIONS(2191), + [aux_sym_cmd_identifier_token28] = ACTIONS(2191), + [aux_sym_cmd_identifier_token29] = ACTIONS(2191), + [aux_sym_cmd_identifier_token30] = ACTIONS(2191), + [aux_sym_cmd_identifier_token31] = ACTIONS(2191), + [aux_sym_cmd_identifier_token32] = ACTIONS(2191), + [aux_sym_cmd_identifier_token33] = ACTIONS(2191), + [aux_sym_cmd_identifier_token34] = ACTIONS(2185), + [aux_sym_cmd_identifier_token35] = ACTIONS(2191), + [aux_sym_cmd_identifier_token36] = ACTIONS(2191), + [aux_sym_cmd_identifier_token37] = ACTIONS(2191), + [aux_sym_cmd_identifier_token38] = ACTIONS(2185), + [aux_sym_cmd_identifier_token39] = ACTIONS(2191), + [aux_sym_cmd_identifier_token40] = ACTIONS(2191), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_in2] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_make] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_PLUS2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2191), + [anon_sym_DOT_DOT2] = ACTIONS(2381), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2383), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2191), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2191), + [aux_sym__val_number_decimal_token3] = ACTIONS(2191), + [aux_sym__val_number_decimal_token4] = ACTIONS(2191), + [aux_sym__val_number_token1] = ACTIONS(2191), + [aux_sym__val_number_token2] = ACTIONS(2191), + [aux_sym__val_number_token3] = ACTIONS(2191), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2191), + [sym__str_single_quotes] = ACTIONS(2191), + [sym__str_back_ticks] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2191), }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1907), - [aux_sym_cmd_identifier_token3] = ACTIONS(1907), - [aux_sym_cmd_identifier_token4] = ACTIONS(1907), - [aux_sym_cmd_identifier_token5] = ACTIONS(1907), - [aux_sym_cmd_identifier_token6] = ACTIONS(1907), - [aux_sym_cmd_identifier_token7] = ACTIONS(1907), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1907), - [aux_sym_cmd_identifier_token11] = ACTIONS(1907), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1907), - [aux_sym_cmd_identifier_token17] = ACTIONS(1907), - [aux_sym_cmd_identifier_token18] = ACTIONS(1907), - [aux_sym_cmd_identifier_token19] = ACTIONS(1907), - [aux_sym_cmd_identifier_token20] = ACTIONS(1907), - [aux_sym_cmd_identifier_token21] = ACTIONS(1907), - [aux_sym_cmd_identifier_token22] = ACTIONS(1907), - [aux_sym_cmd_identifier_token23] = ACTIONS(1907), - [aux_sym_cmd_identifier_token24] = ACTIONS(1907), - [aux_sym_cmd_identifier_token25] = ACTIONS(1907), - [aux_sym_cmd_identifier_token26] = ACTIONS(1907), - [aux_sym_cmd_identifier_token27] = ACTIONS(1907), - [aux_sym_cmd_identifier_token28] = ACTIONS(1907), - [aux_sym_cmd_identifier_token29] = ACTIONS(1907), - [aux_sym_cmd_identifier_token30] = ACTIONS(1907), - [aux_sym_cmd_identifier_token31] = ACTIONS(1907), - [aux_sym_cmd_identifier_token32] = ACTIONS(1907), - [aux_sym_cmd_identifier_token33] = ACTIONS(1907), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1907), - [aux_sym_cmd_identifier_token36] = ACTIONS(1907), - [aux_sym_cmd_identifier_token37] = ACTIONS(1907), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [sym__entry_separator] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1909), + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2306), + [aux_sym_cmd_identifier_token3] = ACTIONS(2306), + [aux_sym_cmd_identifier_token4] = ACTIONS(2306), + [aux_sym_cmd_identifier_token5] = ACTIONS(2306), + [aux_sym_cmd_identifier_token6] = ACTIONS(2306), + [aux_sym_cmd_identifier_token7] = ACTIONS(2306), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2306), + [aux_sym_cmd_identifier_token11] = ACTIONS(2306), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2306), + [aux_sym_cmd_identifier_token17] = ACTIONS(2306), + [aux_sym_cmd_identifier_token18] = ACTIONS(2306), + [aux_sym_cmd_identifier_token19] = ACTIONS(2306), + [aux_sym_cmd_identifier_token20] = ACTIONS(2306), + [aux_sym_cmd_identifier_token21] = ACTIONS(2306), + [aux_sym_cmd_identifier_token22] = ACTIONS(2306), + [aux_sym_cmd_identifier_token23] = ACTIONS(2306), + [aux_sym_cmd_identifier_token24] = ACTIONS(2306), + [aux_sym_cmd_identifier_token25] = ACTIONS(2306), + [aux_sym_cmd_identifier_token26] = ACTIONS(2306), + [aux_sym_cmd_identifier_token27] = ACTIONS(2306), + [aux_sym_cmd_identifier_token28] = ACTIONS(2306), + [aux_sym_cmd_identifier_token29] = ACTIONS(2306), + [aux_sym_cmd_identifier_token30] = ACTIONS(2306), + [aux_sym_cmd_identifier_token31] = ACTIONS(2306), + [aux_sym_cmd_identifier_token32] = ACTIONS(2306), + [aux_sym_cmd_identifier_token33] = ACTIONS(2306), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2306), + [aux_sym_cmd_identifier_token36] = ACTIONS(2306), + [aux_sym_cmd_identifier_token37] = ACTIONS(2306), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2306), + [aux_sym_cmd_identifier_token40] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2306), + [anon_sym_DOT_DOT2] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2324), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2306), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2306), + [aux_sym__val_number_decimal_token4] = ACTIONS(2306), + [aux_sym__val_number_token1] = ACTIONS(2306), + [aux_sym__val_number_token2] = ACTIONS(2306), + [aux_sym__val_number_token3] = ACTIONS(2306), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2306), + [sym__str_single_quotes] = ACTIONS(2306), + [sym__str_back_ticks] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2306), }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_alias] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_let_DASHenv] = ACTIONS(1915), - [anon_sym_mut] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [aux_sym_cmd_identifier_token1] = ACTIONS(1915), - [aux_sym_cmd_identifier_token2] = ACTIONS(1915), - [aux_sym_cmd_identifier_token3] = ACTIONS(1915), - [aux_sym_cmd_identifier_token4] = ACTIONS(1915), - [aux_sym_cmd_identifier_token5] = ACTIONS(1915), - [aux_sym_cmd_identifier_token6] = ACTIONS(1915), - [aux_sym_cmd_identifier_token7] = ACTIONS(1915), - [aux_sym_cmd_identifier_token8] = ACTIONS(1915), - [aux_sym_cmd_identifier_token9] = ACTIONS(1915), - [aux_sym_cmd_identifier_token10] = ACTIONS(1915), - [aux_sym_cmd_identifier_token11] = ACTIONS(1915), - [aux_sym_cmd_identifier_token12] = ACTIONS(1915), - [aux_sym_cmd_identifier_token13] = ACTIONS(1915), - [aux_sym_cmd_identifier_token14] = ACTIONS(1915), - [aux_sym_cmd_identifier_token15] = ACTIONS(1915), - [aux_sym_cmd_identifier_token16] = ACTIONS(1915), - [aux_sym_cmd_identifier_token17] = ACTIONS(1915), - [aux_sym_cmd_identifier_token18] = ACTIONS(1915), - [aux_sym_cmd_identifier_token19] = ACTIONS(1915), - [aux_sym_cmd_identifier_token20] = ACTIONS(1915), - [aux_sym_cmd_identifier_token21] = ACTIONS(1915), - [aux_sym_cmd_identifier_token22] = ACTIONS(1915), - [aux_sym_cmd_identifier_token23] = ACTIONS(1915), - [aux_sym_cmd_identifier_token24] = ACTIONS(1915), - [aux_sym_cmd_identifier_token25] = ACTIONS(1915), - [aux_sym_cmd_identifier_token26] = ACTIONS(1915), - [aux_sym_cmd_identifier_token27] = ACTIONS(1915), - [aux_sym_cmd_identifier_token28] = ACTIONS(1915), - [aux_sym_cmd_identifier_token29] = ACTIONS(1915), - [aux_sym_cmd_identifier_token30] = ACTIONS(1915), - [aux_sym_cmd_identifier_token31] = ACTIONS(1915), - [aux_sym_cmd_identifier_token32] = ACTIONS(1915), - [aux_sym_cmd_identifier_token33] = ACTIONS(1915), - [aux_sym_cmd_identifier_token34] = ACTIONS(1915), - [aux_sym_cmd_identifier_token35] = ACTIONS(1915), - [aux_sym_cmd_identifier_token36] = ACTIONS(1915), - [aux_sym_cmd_identifier_token37] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1915), - [anon_sym_export_DASHenv] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_make] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_source] = ACTIONS(1915), - [anon_sym_source_DASHenv] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_hide_DASHenv] = ACTIONS(1915), - [anon_sym_overlay] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [sym__entry_separator] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1917), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [aux_sym_cmd_identifier_token6] = ACTIONS(2310), + [aux_sym_cmd_identifier_token7] = ACTIONS(2310), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2310), + [aux_sym_cmd_identifier_token11] = ACTIONS(2310), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2310), + [aux_sym_cmd_identifier_token17] = ACTIONS(2310), + [aux_sym_cmd_identifier_token18] = ACTIONS(2310), + [aux_sym_cmd_identifier_token19] = ACTIONS(2310), + [aux_sym_cmd_identifier_token20] = ACTIONS(2310), + [aux_sym_cmd_identifier_token21] = ACTIONS(2310), + [aux_sym_cmd_identifier_token22] = ACTIONS(2310), + [aux_sym_cmd_identifier_token23] = ACTIONS(2310), + [aux_sym_cmd_identifier_token24] = ACTIONS(2310), + [aux_sym_cmd_identifier_token25] = ACTIONS(2310), + [aux_sym_cmd_identifier_token26] = ACTIONS(2310), + [aux_sym_cmd_identifier_token27] = ACTIONS(2310), + [aux_sym_cmd_identifier_token28] = ACTIONS(2310), + [aux_sym_cmd_identifier_token29] = ACTIONS(2310), + [aux_sym_cmd_identifier_token30] = ACTIONS(2310), + [aux_sym_cmd_identifier_token31] = ACTIONS(2310), + [aux_sym_cmd_identifier_token32] = ACTIONS(2310), + [aux_sym_cmd_identifier_token33] = ACTIONS(2310), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2310), + [aux_sym_cmd_identifier_token36] = ACTIONS(2310), + [aux_sym_cmd_identifier_token37] = ACTIONS(2310), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2310), + [aux_sym_cmd_identifier_token40] = ACTIONS(2310), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), + [anon_sym_DOT_DOT2] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2324), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [sym__str_single_quotes] = ACTIONS(2310), + [sym__str_back_ticks] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2310), }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(1000), + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [aux_sym_cmd_identifier_token37] = ACTIONS(1496), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1496), + [aux_sym_cmd_identifier_token40] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1496), + [aux_sym__val_number_token2] = ACTIONS(1496), + [aux_sym__val_number_token3] = ACTIONS(1496), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym__str_single_quotes] = ACTIONS(1496), + [sym__str_back_ticks] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [sym_raw_string_begin] = ACTIONS(1498), }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_alias] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_let_DASHenv] = ACTIONS(2456), - [anon_sym_mut] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [aux_sym_cmd_identifier_token1] = ACTIONS(2456), - [aux_sym_cmd_identifier_token2] = ACTIONS(2456), - [aux_sym_cmd_identifier_token3] = ACTIONS(2456), - [aux_sym_cmd_identifier_token4] = ACTIONS(2456), - [aux_sym_cmd_identifier_token5] = ACTIONS(2456), - [aux_sym_cmd_identifier_token6] = ACTIONS(2456), - [aux_sym_cmd_identifier_token7] = ACTIONS(2456), - [aux_sym_cmd_identifier_token8] = ACTIONS(2456), - [aux_sym_cmd_identifier_token9] = ACTIONS(2456), - [aux_sym_cmd_identifier_token10] = ACTIONS(2456), - [aux_sym_cmd_identifier_token11] = ACTIONS(2456), - [aux_sym_cmd_identifier_token12] = ACTIONS(2456), - [aux_sym_cmd_identifier_token13] = ACTIONS(2456), - [aux_sym_cmd_identifier_token14] = ACTIONS(2456), - [aux_sym_cmd_identifier_token15] = ACTIONS(2456), - [aux_sym_cmd_identifier_token16] = ACTIONS(2456), - [aux_sym_cmd_identifier_token17] = ACTIONS(2456), - [aux_sym_cmd_identifier_token18] = ACTIONS(2456), - [aux_sym_cmd_identifier_token19] = ACTIONS(2456), - [aux_sym_cmd_identifier_token20] = ACTIONS(2456), - [aux_sym_cmd_identifier_token21] = ACTIONS(2456), - [aux_sym_cmd_identifier_token22] = ACTIONS(2456), - [aux_sym_cmd_identifier_token23] = ACTIONS(2456), - [aux_sym_cmd_identifier_token24] = ACTIONS(2456), - [aux_sym_cmd_identifier_token25] = ACTIONS(2456), - [aux_sym_cmd_identifier_token26] = ACTIONS(2456), - [aux_sym_cmd_identifier_token27] = ACTIONS(2456), - [aux_sym_cmd_identifier_token28] = ACTIONS(2456), - [aux_sym_cmd_identifier_token29] = ACTIONS(2456), - [aux_sym_cmd_identifier_token30] = ACTIONS(2456), - [aux_sym_cmd_identifier_token31] = ACTIONS(2456), - [aux_sym_cmd_identifier_token32] = ACTIONS(2456), - [aux_sym_cmd_identifier_token33] = ACTIONS(2456), - [aux_sym_cmd_identifier_token34] = ACTIONS(2456), - [aux_sym_cmd_identifier_token35] = ACTIONS(2456), - [aux_sym_cmd_identifier_token36] = ACTIONS(2456), - [aux_sym_cmd_identifier_token37] = ACTIONS(2456), - [aux_sym_cmd_identifier_token38] = ACTIONS(2456), - [aux_sym_cmd_identifier_token39] = ACTIONS(2456), - [aux_sym_cmd_identifier_token40] = ACTIONS(2456), - [anon_sym_def] = ACTIONS(2456), - [anon_sym_export_DASHenv] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_DOLLAR] = ACTIONS(2456), - [anon_sym_error] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_in2] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_make] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_source] = ACTIONS(2456), - [anon_sym_source_DASHenv] = ACTIONS(2456), - [anon_sym_register] = ACTIONS(2456), - [anon_sym_hide] = ACTIONS(2456), - [anon_sym_hide_DASHenv] = ACTIONS(2456), - [anon_sym_overlay] = ACTIONS(2456), - [anon_sym_as] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), - [aux_sym__val_number_decimal_token1] = ACTIONS(2456), - [aux_sym__val_number_decimal_token2] = ACTIONS(2456), - [aux_sym__val_number_decimal_token3] = ACTIONS(2456), - [aux_sym__val_number_decimal_token4] = ACTIONS(2456), - [aux_sym__val_number_token1] = ACTIONS(2456), - [aux_sym__val_number_token2] = ACTIONS(2456), - [aux_sym__val_number_token3] = ACTIONS(2456), - [aux_sym__val_number_token4] = ACTIONS(2456), - [aux_sym__val_number_token5] = ACTIONS(2456), - [aux_sym__val_number_token6] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2456), - [sym__str_single_quotes] = ACTIONS(2456), - [sym__str_back_ticks] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), - [sym__entry_separator] = ACTIONS(2458), + [574] = { + [sym__expr_parenthesized_immediate] = STATE(7687), + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [sym__entry_separator] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2458), + [sym_raw_string_begin] = ACTIONS(2306), }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [aux_sym_cmd_identifier_token2] = ACTIONS(2130), - [aux_sym_cmd_identifier_token3] = ACTIONS(2130), - [aux_sym_cmd_identifier_token4] = ACTIONS(2130), - [aux_sym_cmd_identifier_token5] = ACTIONS(2130), - [aux_sym_cmd_identifier_token6] = ACTIONS(2130), - [aux_sym_cmd_identifier_token7] = ACTIONS(2130), - [aux_sym_cmd_identifier_token8] = ACTIONS(2130), - [aux_sym_cmd_identifier_token9] = ACTIONS(2130), - [aux_sym_cmd_identifier_token10] = ACTIONS(2130), - [aux_sym_cmd_identifier_token11] = ACTIONS(2130), - [aux_sym_cmd_identifier_token12] = ACTIONS(2130), - [aux_sym_cmd_identifier_token13] = ACTIONS(2130), - [aux_sym_cmd_identifier_token14] = ACTIONS(2130), - [aux_sym_cmd_identifier_token15] = ACTIONS(2130), - [aux_sym_cmd_identifier_token16] = ACTIONS(2130), - [aux_sym_cmd_identifier_token17] = ACTIONS(2130), - [aux_sym_cmd_identifier_token18] = ACTIONS(2130), - [aux_sym_cmd_identifier_token19] = ACTIONS(2130), - [aux_sym_cmd_identifier_token20] = ACTIONS(2130), - [aux_sym_cmd_identifier_token21] = ACTIONS(2130), - [aux_sym_cmd_identifier_token22] = ACTIONS(2130), - [aux_sym_cmd_identifier_token23] = ACTIONS(2130), - [aux_sym_cmd_identifier_token24] = ACTIONS(2130), - [aux_sym_cmd_identifier_token25] = ACTIONS(2130), - [aux_sym_cmd_identifier_token26] = ACTIONS(2130), - [aux_sym_cmd_identifier_token27] = ACTIONS(2130), - [aux_sym_cmd_identifier_token28] = ACTIONS(2130), - [aux_sym_cmd_identifier_token29] = ACTIONS(2130), - [aux_sym_cmd_identifier_token30] = ACTIONS(2130), - [aux_sym_cmd_identifier_token31] = ACTIONS(2130), - [aux_sym_cmd_identifier_token32] = ACTIONS(2130), - [aux_sym_cmd_identifier_token33] = ACTIONS(2130), - [aux_sym_cmd_identifier_token34] = ACTIONS(2130), - [aux_sym_cmd_identifier_token35] = ACTIONS(2130), - [aux_sym_cmd_identifier_token36] = ACTIONS(2130), - [aux_sym_cmd_identifier_token37] = ACTIONS(2130), - [aux_sym_cmd_identifier_token38] = ACTIONS(2130), - [aux_sym_cmd_identifier_token39] = ACTIONS(2130), - [aux_sym_cmd_identifier_token40] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_in2] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_make] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_as] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2130), - [aux_sym__val_number_decimal_token3] = ACTIONS(2130), - [aux_sym__val_number_decimal_token4] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), - [sym__entry_separator] = ACTIONS(2136), + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [aux_sym__immediate_decimal_token1] = ACTIONS(2385), + [aux_sym__immediate_decimal_token2] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2136), + [sym_raw_string_begin] = ACTIONS(1892), }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1500), + [aux_sym_cmd_identifier_token3] = ACTIONS(1500), + [aux_sym_cmd_identifier_token4] = ACTIONS(1500), + [aux_sym_cmd_identifier_token5] = ACTIONS(1500), + [aux_sym_cmd_identifier_token6] = ACTIONS(1500), + [aux_sym_cmd_identifier_token7] = ACTIONS(1500), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1500), + [aux_sym_cmd_identifier_token11] = ACTIONS(1500), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1500), + [aux_sym_cmd_identifier_token17] = ACTIONS(1500), + [aux_sym_cmd_identifier_token18] = ACTIONS(1500), + [aux_sym_cmd_identifier_token19] = ACTIONS(1500), + [aux_sym_cmd_identifier_token20] = ACTIONS(1500), + [aux_sym_cmd_identifier_token21] = ACTIONS(1500), + [aux_sym_cmd_identifier_token22] = ACTIONS(1500), + [aux_sym_cmd_identifier_token23] = ACTIONS(1500), + [aux_sym_cmd_identifier_token24] = ACTIONS(1500), + [aux_sym_cmd_identifier_token25] = ACTIONS(1500), + [aux_sym_cmd_identifier_token26] = ACTIONS(1500), + [aux_sym_cmd_identifier_token27] = ACTIONS(1500), + [aux_sym_cmd_identifier_token28] = ACTIONS(1500), + [aux_sym_cmd_identifier_token29] = ACTIONS(1500), + [aux_sym_cmd_identifier_token30] = ACTIONS(1500), + [aux_sym_cmd_identifier_token31] = ACTIONS(1500), + [aux_sym_cmd_identifier_token32] = ACTIONS(1500), + [aux_sym_cmd_identifier_token33] = ACTIONS(1500), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1500), + [aux_sym_cmd_identifier_token36] = ACTIONS(1500), + [aux_sym_cmd_identifier_token37] = ACTIONS(1500), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1500), + [aux_sym_cmd_identifier_token40] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1500), + [aux_sym__val_number_decimal_token3] = ACTIONS(1500), + [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_token1] = ACTIONS(1500), + [aux_sym__val_number_token2] = ACTIONS(1500), + [aux_sym__val_number_token3] = ACTIONS(1500), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym__str_single_quotes] = ACTIONS(1500), + [sym__str_back_ticks] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1500), + [sym__entry_separator] = ACTIONS(1502), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(1502), }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_alias] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_let_DASHenv] = ACTIONS(2460), - [anon_sym_mut] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [aux_sym_cmd_identifier_token1] = ACTIONS(2460), - [aux_sym_cmd_identifier_token2] = ACTIONS(2460), - [aux_sym_cmd_identifier_token3] = ACTIONS(2460), - [aux_sym_cmd_identifier_token4] = ACTIONS(2460), - [aux_sym_cmd_identifier_token5] = ACTIONS(2460), - [aux_sym_cmd_identifier_token6] = ACTIONS(2460), - [aux_sym_cmd_identifier_token7] = ACTIONS(2460), - [aux_sym_cmd_identifier_token8] = ACTIONS(2460), - [aux_sym_cmd_identifier_token9] = ACTIONS(2460), - [aux_sym_cmd_identifier_token10] = ACTIONS(2460), - [aux_sym_cmd_identifier_token11] = ACTIONS(2460), - [aux_sym_cmd_identifier_token12] = ACTIONS(2460), - [aux_sym_cmd_identifier_token13] = ACTIONS(2460), - [aux_sym_cmd_identifier_token14] = ACTIONS(2460), - [aux_sym_cmd_identifier_token15] = ACTIONS(2460), - [aux_sym_cmd_identifier_token16] = ACTIONS(2460), - [aux_sym_cmd_identifier_token17] = ACTIONS(2460), - [aux_sym_cmd_identifier_token18] = ACTIONS(2460), - [aux_sym_cmd_identifier_token19] = ACTIONS(2460), - [aux_sym_cmd_identifier_token20] = ACTIONS(2460), - [aux_sym_cmd_identifier_token21] = ACTIONS(2460), - [aux_sym_cmd_identifier_token22] = ACTIONS(2460), - [aux_sym_cmd_identifier_token23] = ACTIONS(2460), - [aux_sym_cmd_identifier_token24] = ACTIONS(2460), - [aux_sym_cmd_identifier_token25] = ACTIONS(2460), - [aux_sym_cmd_identifier_token26] = ACTIONS(2460), - [aux_sym_cmd_identifier_token27] = ACTIONS(2460), - [aux_sym_cmd_identifier_token28] = ACTIONS(2460), - [aux_sym_cmd_identifier_token29] = ACTIONS(2460), - [aux_sym_cmd_identifier_token30] = ACTIONS(2460), - [aux_sym_cmd_identifier_token31] = ACTIONS(2460), - [aux_sym_cmd_identifier_token32] = ACTIONS(2460), - [aux_sym_cmd_identifier_token33] = ACTIONS(2460), - [aux_sym_cmd_identifier_token34] = ACTIONS(2460), - [aux_sym_cmd_identifier_token35] = ACTIONS(2460), - [aux_sym_cmd_identifier_token36] = ACTIONS(2460), - [aux_sym_cmd_identifier_token37] = ACTIONS(2460), - [aux_sym_cmd_identifier_token38] = ACTIONS(2460), - [aux_sym_cmd_identifier_token39] = ACTIONS(2460), - [aux_sym_cmd_identifier_token40] = ACTIONS(2460), - [anon_sym_def] = ACTIONS(2460), - [anon_sym_export_DASHenv] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2460), - [anon_sym_error] = ACTIONS(2460), - [anon_sym_DASH2] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_in2] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_make] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_source] = ACTIONS(2460), - [anon_sym_source_DASHenv] = ACTIONS(2460), - [anon_sym_register] = ACTIONS(2460), - [anon_sym_hide] = ACTIONS(2460), - [anon_sym_hide_DASHenv] = ACTIONS(2460), - [anon_sym_overlay] = ACTIONS(2460), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_PLUS2] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), - [aux_sym__val_number_decimal_token1] = ACTIONS(2460), - [aux_sym__val_number_decimal_token2] = ACTIONS(2460), - [aux_sym__val_number_decimal_token3] = ACTIONS(2460), - [aux_sym__val_number_decimal_token4] = ACTIONS(2460), - [aux_sym__val_number_token1] = ACTIONS(2460), - [aux_sym__val_number_token2] = ACTIONS(2460), - [aux_sym__val_number_token3] = ACTIONS(2460), - [aux_sym__val_number_token4] = ACTIONS(2460), - [aux_sym__val_number_token5] = ACTIONS(2460), - [aux_sym__val_number_token6] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2460), - [sym__str_single_quotes] = ACTIONS(2460), - [sym__str_back_ticks] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), - [sym__entry_separator] = ACTIONS(2462), + [577] = { + [sym__expr_parenthesized_immediate] = STATE(7687), + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2308), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [sym__entry_separator] = ACTIONS(2310), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2462), + [sym_raw_string_begin] = ACTIONS(2310), }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2464), - [aux_sym_cmd_identifier_token3] = ACTIONS(2464), - [aux_sym_cmd_identifier_token4] = ACTIONS(2464), - [aux_sym_cmd_identifier_token5] = ACTIONS(2464), - [aux_sym_cmd_identifier_token6] = ACTIONS(2464), - [aux_sym_cmd_identifier_token7] = ACTIONS(2464), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2464), - [aux_sym_cmd_identifier_token11] = ACTIONS(2464), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2464), - [aux_sym_cmd_identifier_token17] = ACTIONS(2464), - [aux_sym_cmd_identifier_token18] = ACTIONS(2464), - [aux_sym_cmd_identifier_token19] = ACTIONS(2464), - [aux_sym_cmd_identifier_token20] = ACTIONS(2464), - [aux_sym_cmd_identifier_token21] = ACTIONS(2464), - [aux_sym_cmd_identifier_token22] = ACTIONS(2464), - [aux_sym_cmd_identifier_token23] = ACTIONS(2464), - [aux_sym_cmd_identifier_token24] = ACTIONS(2464), - [aux_sym_cmd_identifier_token25] = ACTIONS(2464), - [aux_sym_cmd_identifier_token26] = ACTIONS(2464), - [aux_sym_cmd_identifier_token27] = ACTIONS(2464), - [aux_sym_cmd_identifier_token28] = ACTIONS(2464), - [aux_sym_cmd_identifier_token29] = ACTIONS(2464), - [aux_sym_cmd_identifier_token30] = ACTIONS(2464), - [aux_sym_cmd_identifier_token31] = ACTIONS(2464), - [aux_sym_cmd_identifier_token32] = ACTIONS(2464), - [aux_sym_cmd_identifier_token33] = ACTIONS(2464), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2464), - [aux_sym_cmd_identifier_token36] = ACTIONS(2464), - [aux_sym_cmd_identifier_token37] = ACTIONS(2464), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2464), - [aux_sym_cmd_identifier_token40] = ACTIONS(2464), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2464), - [aux_sym__val_number_decimal_token3] = ACTIONS(2464), - [aux_sym__val_number_decimal_token4] = ACTIONS(2464), - [aux_sym__val_number_token1] = ACTIONS(2464), - [aux_sym__val_number_token2] = ACTIONS(2464), - [aux_sym__val_number_token3] = ACTIONS(2464), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2464), - [sym__str_back_ticks] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), - [sym__entry_separator] = ACTIONS(2466), + [578] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [aux_sym_cmd_identifier_token1] = ACTIONS(2391), + [aux_sym_cmd_identifier_token2] = ACTIONS(2391), + [aux_sym_cmd_identifier_token3] = ACTIONS(2391), + [aux_sym_cmd_identifier_token4] = ACTIONS(2391), + [aux_sym_cmd_identifier_token5] = ACTIONS(2391), + [aux_sym_cmd_identifier_token6] = ACTIONS(2391), + [aux_sym_cmd_identifier_token7] = ACTIONS(2391), + [aux_sym_cmd_identifier_token8] = ACTIONS(2391), + [aux_sym_cmd_identifier_token9] = ACTIONS(2391), + [aux_sym_cmd_identifier_token10] = ACTIONS(2391), + [aux_sym_cmd_identifier_token11] = ACTIONS(2391), + [aux_sym_cmd_identifier_token12] = ACTIONS(2391), + [aux_sym_cmd_identifier_token13] = ACTIONS(2391), + [aux_sym_cmd_identifier_token14] = ACTIONS(2391), + [aux_sym_cmd_identifier_token15] = ACTIONS(2391), + [aux_sym_cmd_identifier_token16] = ACTIONS(2391), + [aux_sym_cmd_identifier_token17] = ACTIONS(2391), + [aux_sym_cmd_identifier_token18] = ACTIONS(2391), + [aux_sym_cmd_identifier_token19] = ACTIONS(2391), + [aux_sym_cmd_identifier_token20] = ACTIONS(2391), + [aux_sym_cmd_identifier_token21] = ACTIONS(2391), + [aux_sym_cmd_identifier_token22] = ACTIONS(2391), + [aux_sym_cmd_identifier_token23] = ACTIONS(2391), + [aux_sym_cmd_identifier_token24] = ACTIONS(2391), + [aux_sym_cmd_identifier_token25] = ACTIONS(2391), + [aux_sym_cmd_identifier_token26] = ACTIONS(2391), + [aux_sym_cmd_identifier_token27] = ACTIONS(2391), + [aux_sym_cmd_identifier_token28] = ACTIONS(2391), + [aux_sym_cmd_identifier_token29] = ACTIONS(2391), + [aux_sym_cmd_identifier_token30] = ACTIONS(2391), + [aux_sym_cmd_identifier_token31] = ACTIONS(2391), + [aux_sym_cmd_identifier_token32] = ACTIONS(2391), + [aux_sym_cmd_identifier_token33] = ACTIONS(2391), + [aux_sym_cmd_identifier_token34] = ACTIONS(2391), + [aux_sym_cmd_identifier_token35] = ACTIONS(2391), + [aux_sym_cmd_identifier_token36] = ACTIONS(2391), + [aux_sym_cmd_identifier_token37] = ACTIONS(2391), + [aux_sym_cmd_identifier_token38] = ACTIONS(2391), + [aux_sym_cmd_identifier_token39] = ACTIONS(2391), + [aux_sym_cmd_identifier_token40] = ACTIONS(2391), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_in2] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_make] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_else] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_catch] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), + [aux_sym__val_number_decimal_token1] = ACTIONS(2391), + [aux_sym__val_number_decimal_token2] = ACTIONS(2391), + [aux_sym__val_number_decimal_token3] = ACTIONS(2391), + [aux_sym__val_number_decimal_token4] = ACTIONS(2391), + [aux_sym__val_number_token1] = ACTIONS(2391), + [aux_sym__val_number_token2] = ACTIONS(2391), + [aux_sym__val_number_token3] = ACTIONS(2391), + [aux_sym__val_number_token4] = ACTIONS(2391), + [aux_sym__val_number_token5] = ACTIONS(2391), + [aux_sym__val_number_token6] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [sym__entry_separator] = ACTIONS(2393), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2466), + [sym_raw_string_begin] = ACTIONS(2393), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2468), - [anon_sym_alias] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_let_DASHenv] = ACTIONS(2468), - [anon_sym_mut] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [aux_sym_cmd_identifier_token1] = ACTIONS(2468), - [aux_sym_cmd_identifier_token2] = ACTIONS(2468), - [aux_sym_cmd_identifier_token3] = ACTIONS(2468), - [aux_sym_cmd_identifier_token4] = ACTIONS(2468), - [aux_sym_cmd_identifier_token5] = ACTIONS(2468), - [aux_sym_cmd_identifier_token6] = ACTIONS(2468), - [aux_sym_cmd_identifier_token7] = ACTIONS(2468), - [aux_sym_cmd_identifier_token8] = ACTIONS(2468), - [aux_sym_cmd_identifier_token9] = ACTIONS(2468), - [aux_sym_cmd_identifier_token10] = ACTIONS(2468), - [aux_sym_cmd_identifier_token11] = ACTIONS(2468), - [aux_sym_cmd_identifier_token12] = ACTIONS(2468), - [aux_sym_cmd_identifier_token13] = ACTIONS(2468), - [aux_sym_cmd_identifier_token14] = ACTIONS(2468), - [aux_sym_cmd_identifier_token15] = ACTIONS(2468), - [aux_sym_cmd_identifier_token16] = ACTIONS(2468), - [aux_sym_cmd_identifier_token17] = ACTIONS(2468), - [aux_sym_cmd_identifier_token18] = ACTIONS(2468), - [aux_sym_cmd_identifier_token19] = ACTIONS(2468), - [aux_sym_cmd_identifier_token20] = ACTIONS(2468), - [aux_sym_cmd_identifier_token21] = ACTIONS(2468), - [aux_sym_cmd_identifier_token22] = ACTIONS(2468), - [aux_sym_cmd_identifier_token23] = ACTIONS(2468), - [aux_sym_cmd_identifier_token24] = ACTIONS(2468), - [aux_sym_cmd_identifier_token25] = ACTIONS(2468), - [aux_sym_cmd_identifier_token26] = ACTIONS(2468), - [aux_sym_cmd_identifier_token27] = ACTIONS(2468), - [aux_sym_cmd_identifier_token28] = ACTIONS(2468), - [aux_sym_cmd_identifier_token29] = ACTIONS(2468), - [aux_sym_cmd_identifier_token30] = ACTIONS(2468), - [aux_sym_cmd_identifier_token31] = ACTIONS(2468), - [aux_sym_cmd_identifier_token32] = ACTIONS(2468), - [aux_sym_cmd_identifier_token33] = ACTIONS(2468), - [aux_sym_cmd_identifier_token34] = ACTIONS(2468), - [aux_sym_cmd_identifier_token35] = ACTIONS(2468), - [aux_sym_cmd_identifier_token36] = ACTIONS(2468), - [aux_sym_cmd_identifier_token37] = ACTIONS(2468), - [aux_sym_cmd_identifier_token38] = ACTIONS(2468), - [aux_sym_cmd_identifier_token39] = ACTIONS(2468), - [aux_sym_cmd_identifier_token40] = ACTIONS(2468), - [anon_sym_def] = ACTIONS(2468), - [anon_sym_export_DASHenv] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_module] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_error] = ACTIONS(2468), - [anon_sym_DASH2] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_in2] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_make] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_source] = ACTIONS(2468), - [anon_sym_source_DASHenv] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_hide] = ACTIONS(2468), - [anon_sym_hide_DASHenv] = ACTIONS(2468), - [anon_sym_overlay] = ACTIONS(2468), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_PLUS2] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), - [aux_sym__val_number_decimal_token1] = ACTIONS(2468), - [aux_sym__val_number_decimal_token2] = ACTIONS(2468), - [aux_sym__val_number_decimal_token3] = ACTIONS(2468), - [aux_sym__val_number_decimal_token4] = ACTIONS(2468), - [aux_sym__val_number_token1] = ACTIONS(2468), - [aux_sym__val_number_token2] = ACTIONS(2468), - [aux_sym__val_number_token3] = ACTIONS(2468), - [aux_sym__val_number_token4] = ACTIONS(2468), - [aux_sym__val_number_token5] = ACTIONS(2468), - [aux_sym__val_number_token6] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym__str_single_quotes] = ACTIONS(2468), - [sym__str_back_ticks] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), - [sym__entry_separator] = ACTIONS(2470), + [579] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(579), + [anon_sym_export] = ACTIONS(2395), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_let_DASHenv] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2395), + [aux_sym_cmd_identifier_token2] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [aux_sym_cmd_identifier_token6] = ACTIONS(2395), + [aux_sym_cmd_identifier_token7] = ACTIONS(2395), + [aux_sym_cmd_identifier_token8] = ACTIONS(2395), + [aux_sym_cmd_identifier_token9] = ACTIONS(2395), + [aux_sym_cmd_identifier_token10] = ACTIONS(2395), + [aux_sym_cmd_identifier_token11] = ACTIONS(2395), + [aux_sym_cmd_identifier_token12] = ACTIONS(2395), + [aux_sym_cmd_identifier_token13] = ACTIONS(2395), + [aux_sym_cmd_identifier_token14] = ACTIONS(2395), + [aux_sym_cmd_identifier_token15] = ACTIONS(2395), + [aux_sym_cmd_identifier_token16] = ACTIONS(2395), + [aux_sym_cmd_identifier_token17] = ACTIONS(2395), + [aux_sym_cmd_identifier_token18] = ACTIONS(2395), + [aux_sym_cmd_identifier_token19] = ACTIONS(2395), + [aux_sym_cmd_identifier_token20] = ACTIONS(2395), + [aux_sym_cmd_identifier_token21] = ACTIONS(2395), + [aux_sym_cmd_identifier_token22] = ACTIONS(2395), + [aux_sym_cmd_identifier_token23] = ACTIONS(2395), + [aux_sym_cmd_identifier_token24] = ACTIONS(2395), + [aux_sym_cmd_identifier_token25] = ACTIONS(2395), + [aux_sym_cmd_identifier_token26] = ACTIONS(2395), + [aux_sym_cmd_identifier_token27] = ACTIONS(2395), + [aux_sym_cmd_identifier_token28] = ACTIONS(2395), + [aux_sym_cmd_identifier_token29] = ACTIONS(2395), + [aux_sym_cmd_identifier_token30] = ACTIONS(2395), + [aux_sym_cmd_identifier_token31] = ACTIONS(2395), + [aux_sym_cmd_identifier_token32] = ACTIONS(2395), + [aux_sym_cmd_identifier_token33] = ACTIONS(2395), + [aux_sym_cmd_identifier_token34] = ACTIONS(2395), + [aux_sym_cmd_identifier_token35] = ACTIONS(2395), + [aux_sym_cmd_identifier_token36] = ACTIONS(2395), + [aux_sym_cmd_identifier_token37] = ACTIONS(2395), + [aux_sym_cmd_identifier_token38] = ACTIONS(2395), + [aux_sym_cmd_identifier_token39] = ACTIONS(2395), + [aux_sym_cmd_identifier_token40] = ACTIONS(2395), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_error] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_in2] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_make] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_source] = ACTIONS(2395), + [anon_sym_source_DASHenv] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_hide] = ACTIONS(2395), + [anon_sym_hide_DASHenv] = ACTIONS(2395), + [anon_sym_overlay] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2395), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2395), + [aux_sym__val_number_token2] = ACTIONS(2395), + [aux_sym__val_number_token3] = ACTIONS(2395), + [aux_sym__val_number_token4] = ACTIONS(2395), + [aux_sym__val_number_token5] = ACTIONS(2395), + [aux_sym__val_number_token6] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2395), + [sym__str_back_ticks] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), + [sym__entry_separator] = ACTIONS(2397), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2470), + [sym_raw_string_begin] = ACTIONS(2397), }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2464), - [aux_sym_cmd_identifier_token3] = ACTIONS(2464), - [aux_sym_cmd_identifier_token4] = ACTIONS(2464), - [aux_sym_cmd_identifier_token5] = ACTIONS(2464), - [aux_sym_cmd_identifier_token6] = ACTIONS(2464), - [aux_sym_cmd_identifier_token7] = ACTIONS(2464), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2464), - [aux_sym_cmd_identifier_token11] = ACTIONS(2464), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2464), - [aux_sym_cmd_identifier_token17] = ACTIONS(2464), - [aux_sym_cmd_identifier_token18] = ACTIONS(2464), - [aux_sym_cmd_identifier_token19] = ACTIONS(2464), - [aux_sym_cmd_identifier_token20] = ACTIONS(2464), - [aux_sym_cmd_identifier_token21] = ACTIONS(2464), - [aux_sym_cmd_identifier_token22] = ACTIONS(2464), - [aux_sym_cmd_identifier_token23] = ACTIONS(2464), - [aux_sym_cmd_identifier_token24] = ACTIONS(2464), - [aux_sym_cmd_identifier_token25] = ACTIONS(2464), - [aux_sym_cmd_identifier_token26] = ACTIONS(2464), - [aux_sym_cmd_identifier_token27] = ACTIONS(2464), - [aux_sym_cmd_identifier_token28] = ACTIONS(2464), - [aux_sym_cmd_identifier_token29] = ACTIONS(2464), - [aux_sym_cmd_identifier_token30] = ACTIONS(2464), - [aux_sym_cmd_identifier_token31] = ACTIONS(2464), - [aux_sym_cmd_identifier_token32] = ACTIONS(2464), - [aux_sym_cmd_identifier_token33] = ACTIONS(2464), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2464), - [aux_sym_cmd_identifier_token36] = ACTIONS(2464), - [aux_sym_cmd_identifier_token37] = ACTIONS(2464), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2464), - [aux_sym_cmd_identifier_token40] = ACTIONS(2464), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2464), - [aux_sym__val_number_decimal_token3] = ACTIONS(2464), - [aux_sym__val_number_decimal_token4] = ACTIONS(2464), - [aux_sym__val_number_token1] = ACTIONS(2464), - [aux_sym__val_number_token2] = ACTIONS(2464), - [aux_sym__val_number_token3] = ACTIONS(2464), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2464), - [sym__str_back_ticks] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), - [sym__entry_separator] = ACTIONS(2466), + [580] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2399), + [anon_sym_alias] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_let_DASHenv] = ACTIONS(2399), + [anon_sym_mut] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [aux_sym_cmd_identifier_token1] = ACTIONS(2399), + [aux_sym_cmd_identifier_token2] = ACTIONS(2399), + [aux_sym_cmd_identifier_token3] = ACTIONS(2399), + [aux_sym_cmd_identifier_token4] = ACTIONS(2399), + [aux_sym_cmd_identifier_token5] = ACTIONS(2399), + [aux_sym_cmd_identifier_token6] = ACTIONS(2399), + [aux_sym_cmd_identifier_token7] = ACTIONS(2399), + [aux_sym_cmd_identifier_token8] = ACTIONS(2399), + [aux_sym_cmd_identifier_token9] = ACTIONS(2399), + [aux_sym_cmd_identifier_token10] = ACTIONS(2399), + [aux_sym_cmd_identifier_token11] = ACTIONS(2399), + [aux_sym_cmd_identifier_token12] = ACTIONS(2399), + [aux_sym_cmd_identifier_token13] = ACTIONS(2399), + [aux_sym_cmd_identifier_token14] = ACTIONS(2399), + [aux_sym_cmd_identifier_token15] = ACTIONS(2399), + [aux_sym_cmd_identifier_token16] = ACTIONS(2399), + [aux_sym_cmd_identifier_token17] = ACTIONS(2399), + [aux_sym_cmd_identifier_token18] = ACTIONS(2399), + [aux_sym_cmd_identifier_token19] = ACTIONS(2399), + [aux_sym_cmd_identifier_token20] = ACTIONS(2399), + [aux_sym_cmd_identifier_token21] = ACTIONS(2399), + [aux_sym_cmd_identifier_token22] = ACTIONS(2399), + [aux_sym_cmd_identifier_token23] = ACTIONS(2399), + [aux_sym_cmd_identifier_token24] = ACTIONS(2399), + [aux_sym_cmd_identifier_token25] = ACTIONS(2399), + [aux_sym_cmd_identifier_token26] = ACTIONS(2399), + [aux_sym_cmd_identifier_token27] = ACTIONS(2399), + [aux_sym_cmd_identifier_token28] = ACTIONS(2399), + [aux_sym_cmd_identifier_token29] = ACTIONS(2399), + [aux_sym_cmd_identifier_token30] = ACTIONS(2399), + [aux_sym_cmd_identifier_token31] = ACTIONS(2399), + [aux_sym_cmd_identifier_token32] = ACTIONS(2399), + [aux_sym_cmd_identifier_token33] = ACTIONS(2399), + [aux_sym_cmd_identifier_token34] = ACTIONS(2399), + [aux_sym_cmd_identifier_token35] = ACTIONS(2399), + [aux_sym_cmd_identifier_token36] = ACTIONS(2399), + [aux_sym_cmd_identifier_token37] = ACTIONS(2399), + [aux_sym_cmd_identifier_token38] = ACTIONS(2399), + [aux_sym_cmd_identifier_token39] = ACTIONS(2399), + [aux_sym_cmd_identifier_token40] = ACTIONS(2399), + [anon_sym_def] = ACTIONS(2399), + [anon_sym_export_DASHenv] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_error] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_in2] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_make] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_catch] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_source] = ACTIONS(2399), + [anon_sym_source_DASHenv] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_hide] = ACTIONS(2399), + [anon_sym_hide_DASHenv] = ACTIONS(2399), + [anon_sym_overlay] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), + [aux_sym__val_number_decimal_token1] = ACTIONS(2399), + [aux_sym__val_number_decimal_token2] = ACTIONS(2399), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), + [aux_sym__val_number_token1] = ACTIONS(2399), + [aux_sym__val_number_token2] = ACTIONS(2399), + [aux_sym__val_number_token3] = ACTIONS(2399), + [aux_sym__val_number_token4] = ACTIONS(2399), + [aux_sym__val_number_token5] = ACTIONS(2399), + [aux_sym__val_number_token6] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym__str_single_quotes] = ACTIONS(2399), + [sym__str_back_ticks] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), + [sym__entry_separator] = ACTIONS(2401), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2466), + [sym_raw_string_begin] = ACTIONS(2401), }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), + [581] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2403), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [aux_sym_cmd_identifier_token6] = ACTIONS(2403), + [aux_sym_cmd_identifier_token7] = ACTIONS(2403), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2403), + [aux_sym_cmd_identifier_token11] = ACTIONS(2403), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2403), + [aux_sym_cmd_identifier_token17] = ACTIONS(2403), + [aux_sym_cmd_identifier_token18] = ACTIONS(2403), + [aux_sym_cmd_identifier_token19] = ACTIONS(2403), + [aux_sym_cmd_identifier_token20] = ACTIONS(2403), + [aux_sym_cmd_identifier_token21] = ACTIONS(2403), + [aux_sym_cmd_identifier_token22] = ACTIONS(2403), + [aux_sym_cmd_identifier_token23] = ACTIONS(2403), + [aux_sym_cmd_identifier_token24] = ACTIONS(2403), + [aux_sym_cmd_identifier_token25] = ACTIONS(2403), + [aux_sym_cmd_identifier_token26] = ACTIONS(2403), + [aux_sym_cmd_identifier_token27] = ACTIONS(2403), + [aux_sym_cmd_identifier_token28] = ACTIONS(2403), + [aux_sym_cmd_identifier_token29] = ACTIONS(2403), + [aux_sym_cmd_identifier_token30] = ACTIONS(2403), + [aux_sym_cmd_identifier_token31] = ACTIONS(2403), + [aux_sym_cmd_identifier_token32] = ACTIONS(2403), + [aux_sym_cmd_identifier_token33] = ACTIONS(2403), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2403), + [aux_sym_cmd_identifier_token36] = ACTIONS(2403), + [aux_sym_cmd_identifier_token37] = ACTIONS(2403), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2403), + [aux_sym_cmd_identifier_token40] = ACTIONS(2403), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2403), + [aux_sym__val_number_decimal_token3] = ACTIONS(2403), + [aux_sym__val_number_decimal_token4] = ACTIONS(2403), + [aux_sym__val_number_token1] = ACTIONS(2403), + [aux_sym__val_number_token2] = ACTIONS(2403), + [aux_sym__val_number_token3] = ACTIONS(2403), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym__str_single_quotes] = ACTIONS(2403), + [sym__str_back_ticks] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), + [sym__entry_separator] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), + [sym_raw_string_begin] = ACTIONS(2405), }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2173), - [aux_sym_cmd_identifier_token3] = ACTIONS(2173), - [aux_sym_cmd_identifier_token4] = ACTIONS(2173), - [aux_sym_cmd_identifier_token5] = ACTIONS(2173), - [aux_sym_cmd_identifier_token6] = ACTIONS(2173), - [aux_sym_cmd_identifier_token7] = ACTIONS(2173), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2173), - [aux_sym_cmd_identifier_token11] = ACTIONS(2173), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2173), - [aux_sym_cmd_identifier_token17] = ACTIONS(2173), - [aux_sym_cmd_identifier_token18] = ACTIONS(2173), - [aux_sym_cmd_identifier_token19] = ACTIONS(2173), - [aux_sym_cmd_identifier_token20] = ACTIONS(2173), - [aux_sym_cmd_identifier_token21] = ACTIONS(2173), - [aux_sym_cmd_identifier_token22] = ACTIONS(2173), - [aux_sym_cmd_identifier_token23] = ACTIONS(2173), - [aux_sym_cmd_identifier_token24] = ACTIONS(2173), - [aux_sym_cmd_identifier_token25] = ACTIONS(2173), - [aux_sym_cmd_identifier_token26] = ACTIONS(2173), - [aux_sym_cmd_identifier_token27] = ACTIONS(2173), - [aux_sym_cmd_identifier_token28] = ACTIONS(2173), - [aux_sym_cmd_identifier_token29] = ACTIONS(2173), - [aux_sym_cmd_identifier_token30] = ACTIONS(2173), - [aux_sym_cmd_identifier_token31] = ACTIONS(2173), - [aux_sym_cmd_identifier_token32] = ACTIONS(2173), - [aux_sym_cmd_identifier_token33] = ACTIONS(2173), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2173), - [aux_sym_cmd_identifier_token36] = ACTIONS(2173), - [aux_sym_cmd_identifier_token37] = ACTIONS(2173), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2173), - [aux_sym_cmd_identifier_token40] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), - [sym__entry_separator] = ACTIONS(2175), + [582] = { + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [aux_sym_cmd_identifier_token37] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2175), + [sym_raw_string_begin] = ACTIONS(1512), }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1841), - [aux_sym_cmd_identifier_token3] = ACTIONS(1841), - [aux_sym_cmd_identifier_token4] = ACTIONS(1841), - [aux_sym_cmd_identifier_token5] = ACTIONS(1841), - [aux_sym_cmd_identifier_token6] = ACTIONS(1841), - [aux_sym_cmd_identifier_token7] = ACTIONS(1841), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1841), - [aux_sym_cmd_identifier_token11] = ACTIONS(1841), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1841), - [aux_sym_cmd_identifier_token17] = ACTIONS(1841), - [aux_sym_cmd_identifier_token18] = ACTIONS(1841), - [aux_sym_cmd_identifier_token19] = ACTIONS(1841), - [aux_sym_cmd_identifier_token20] = ACTIONS(1841), - [aux_sym_cmd_identifier_token21] = ACTIONS(1841), - [aux_sym_cmd_identifier_token22] = ACTIONS(1841), - [aux_sym_cmd_identifier_token23] = ACTIONS(1841), - [aux_sym_cmd_identifier_token24] = ACTIONS(1841), - [aux_sym_cmd_identifier_token25] = ACTIONS(1841), - [aux_sym_cmd_identifier_token26] = ACTIONS(1841), - [aux_sym_cmd_identifier_token27] = ACTIONS(1841), - [aux_sym_cmd_identifier_token28] = ACTIONS(1841), - [aux_sym_cmd_identifier_token29] = ACTIONS(1841), - [aux_sym_cmd_identifier_token30] = ACTIONS(1841), - [aux_sym_cmd_identifier_token31] = ACTIONS(1841), - [aux_sym_cmd_identifier_token32] = ACTIONS(1841), - [aux_sym_cmd_identifier_token33] = ACTIONS(1841), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1841), - [aux_sym_cmd_identifier_token36] = ACTIONS(1841), - [aux_sym_cmd_identifier_token37] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [sym__entry_separator] = ACTIONS(1843), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2407), + [aux_sym_cmd_identifier_token3] = ACTIONS(2407), + [aux_sym_cmd_identifier_token4] = ACTIONS(2407), + [aux_sym_cmd_identifier_token5] = ACTIONS(2407), + [aux_sym_cmd_identifier_token6] = ACTIONS(2407), + [aux_sym_cmd_identifier_token7] = ACTIONS(2407), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2407), + [aux_sym_cmd_identifier_token17] = ACTIONS(2407), + [aux_sym_cmd_identifier_token18] = ACTIONS(2407), + [aux_sym_cmd_identifier_token19] = ACTIONS(2407), + [aux_sym_cmd_identifier_token20] = ACTIONS(2407), + [aux_sym_cmd_identifier_token21] = ACTIONS(2407), + [aux_sym_cmd_identifier_token22] = ACTIONS(2407), + [aux_sym_cmd_identifier_token23] = ACTIONS(2407), + [aux_sym_cmd_identifier_token24] = ACTIONS(2407), + [aux_sym_cmd_identifier_token25] = ACTIONS(2407), + [aux_sym_cmd_identifier_token26] = ACTIONS(2407), + [aux_sym_cmd_identifier_token27] = ACTIONS(2407), + [aux_sym_cmd_identifier_token28] = ACTIONS(2407), + [aux_sym_cmd_identifier_token29] = ACTIONS(2407), + [aux_sym_cmd_identifier_token30] = ACTIONS(2407), + [aux_sym_cmd_identifier_token31] = ACTIONS(2407), + [aux_sym_cmd_identifier_token32] = ACTIONS(2407), + [aux_sym_cmd_identifier_token33] = ACTIONS(2407), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2407), + [aux_sym_cmd_identifier_token36] = ACTIONS(2407), + [aux_sym_cmd_identifier_token37] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [sym__entry_separator] = ACTIONS(2409), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2407), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1843), + [sym_raw_string_begin] = ACTIONS(2409), }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_alias] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2472), - [anon_sym_let_DASHenv] = ACTIONS(2472), - [anon_sym_mut] = ACTIONS(2472), - [anon_sym_const] = ACTIONS(2472), - [aux_sym_cmd_identifier_token1] = ACTIONS(2472), - [aux_sym_cmd_identifier_token2] = ACTIONS(2472), - [aux_sym_cmd_identifier_token3] = ACTIONS(2472), - [aux_sym_cmd_identifier_token4] = ACTIONS(2472), - [aux_sym_cmd_identifier_token5] = ACTIONS(2472), - [aux_sym_cmd_identifier_token6] = ACTIONS(2472), - [aux_sym_cmd_identifier_token7] = ACTIONS(2472), - [aux_sym_cmd_identifier_token8] = ACTIONS(2472), - [aux_sym_cmd_identifier_token9] = ACTIONS(2472), - [aux_sym_cmd_identifier_token10] = ACTIONS(2472), - [aux_sym_cmd_identifier_token11] = ACTIONS(2472), - [aux_sym_cmd_identifier_token12] = ACTIONS(2472), - [aux_sym_cmd_identifier_token13] = ACTIONS(2472), - [aux_sym_cmd_identifier_token14] = ACTIONS(2472), - [aux_sym_cmd_identifier_token15] = ACTIONS(2472), - [aux_sym_cmd_identifier_token16] = ACTIONS(2472), - [aux_sym_cmd_identifier_token17] = ACTIONS(2472), - [aux_sym_cmd_identifier_token18] = ACTIONS(2472), - [aux_sym_cmd_identifier_token19] = ACTIONS(2472), - [aux_sym_cmd_identifier_token20] = ACTIONS(2472), - [aux_sym_cmd_identifier_token21] = ACTIONS(2472), - [aux_sym_cmd_identifier_token22] = ACTIONS(2472), - [aux_sym_cmd_identifier_token23] = ACTIONS(2472), - [aux_sym_cmd_identifier_token24] = ACTIONS(2472), - [aux_sym_cmd_identifier_token25] = ACTIONS(2472), - [aux_sym_cmd_identifier_token26] = ACTIONS(2472), - [aux_sym_cmd_identifier_token27] = ACTIONS(2472), - [aux_sym_cmd_identifier_token28] = ACTIONS(2472), - [aux_sym_cmd_identifier_token29] = ACTIONS(2472), - [aux_sym_cmd_identifier_token30] = ACTIONS(2472), - [aux_sym_cmd_identifier_token31] = ACTIONS(2472), - [aux_sym_cmd_identifier_token32] = ACTIONS(2472), - [aux_sym_cmd_identifier_token33] = ACTIONS(2472), - [aux_sym_cmd_identifier_token34] = ACTIONS(2472), - [aux_sym_cmd_identifier_token35] = ACTIONS(2472), - [aux_sym_cmd_identifier_token36] = ACTIONS(2472), - [aux_sym_cmd_identifier_token37] = ACTIONS(2472), - [aux_sym_cmd_identifier_token38] = ACTIONS(2472), - [aux_sym_cmd_identifier_token39] = ACTIONS(2472), - [aux_sym_cmd_identifier_token40] = ACTIONS(2472), - [anon_sym_def] = ACTIONS(2472), - [anon_sym_export_DASHenv] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_module] = ACTIONS(2472), - [anon_sym_use] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_DOLLAR] = ACTIONS(2472), - [anon_sym_error] = ACTIONS(2472), - [anon_sym_DASH2] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_in2] = ACTIONS(2472), - [anon_sym_loop] = ACTIONS(2472), - [anon_sym_make] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2472), - [anon_sym_match] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2472), - [anon_sym_catch] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_source] = ACTIONS(2472), - [anon_sym_source_DASHenv] = ACTIONS(2472), - [anon_sym_register] = ACTIONS(2472), - [anon_sym_hide] = ACTIONS(2472), - [anon_sym_hide_DASHenv] = ACTIONS(2472), - [anon_sym_overlay] = ACTIONS(2472), - [anon_sym_as] = ACTIONS(2472), - [anon_sym_PLUS2] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), - [aux_sym__val_number_decimal_token1] = ACTIONS(2472), - [aux_sym__val_number_decimal_token2] = ACTIONS(2472), - [aux_sym__val_number_decimal_token3] = ACTIONS(2472), - [aux_sym__val_number_decimal_token4] = ACTIONS(2472), - [aux_sym__val_number_token1] = ACTIONS(2472), - [aux_sym__val_number_token2] = ACTIONS(2472), - [aux_sym__val_number_token3] = ACTIONS(2472), - [aux_sym__val_number_token4] = ACTIONS(2472), - [aux_sym__val_number_token5] = ACTIONS(2472), - [aux_sym__val_number_token6] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym__str_single_quotes] = ACTIONS(2472), - [sym__str_back_ticks] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), - [sym__entry_separator] = ACTIONS(2474), + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [aux_sym__immediate_decimal_token2] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2474), + [sym_raw_string_begin] = ACTIONS(1921), }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1707), - [aux_sym_cmd_identifier_token3] = ACTIONS(1707), - [aux_sym_cmd_identifier_token4] = ACTIONS(1707), - [aux_sym_cmd_identifier_token5] = ACTIONS(1707), - [aux_sym_cmd_identifier_token6] = ACTIONS(1707), - [aux_sym_cmd_identifier_token7] = ACTIONS(1707), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1707), - [aux_sym_cmd_identifier_token17] = ACTIONS(1707), - [aux_sym_cmd_identifier_token18] = ACTIONS(1707), - [aux_sym_cmd_identifier_token19] = ACTIONS(1707), - [aux_sym_cmd_identifier_token20] = ACTIONS(1707), - [aux_sym_cmd_identifier_token21] = ACTIONS(1707), - [aux_sym_cmd_identifier_token22] = ACTIONS(1707), - [aux_sym_cmd_identifier_token23] = ACTIONS(1707), - [aux_sym_cmd_identifier_token24] = ACTIONS(1707), - [aux_sym_cmd_identifier_token25] = ACTIONS(1707), - [aux_sym_cmd_identifier_token26] = ACTIONS(1707), - [aux_sym_cmd_identifier_token27] = ACTIONS(1707), - [aux_sym_cmd_identifier_token28] = ACTIONS(1707), - [aux_sym_cmd_identifier_token29] = ACTIONS(1707), - [aux_sym_cmd_identifier_token30] = ACTIONS(1707), - [aux_sym_cmd_identifier_token31] = ACTIONS(1707), - [aux_sym_cmd_identifier_token32] = ACTIONS(1707), - [aux_sym_cmd_identifier_token33] = ACTIONS(1707), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1707), - [aux_sym_cmd_identifier_token36] = ACTIONS(1707), - [aux_sym_cmd_identifier_token37] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [sym__entry_separator] = ACTIONS(1719), + [585] = { + [sym_comment] = STATE(585), + [aux_sym__multiple_types_repeat1] = STATE(609), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2413), + [aux_sym_cmd_identifier_token3] = ACTIONS(2413), + [aux_sym_cmd_identifier_token4] = ACTIONS(2413), + [aux_sym_cmd_identifier_token5] = ACTIONS(2413), + [aux_sym_cmd_identifier_token6] = ACTIONS(2413), + [aux_sym_cmd_identifier_token7] = ACTIONS(2413), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2413), + [aux_sym_cmd_identifier_token17] = ACTIONS(2413), + [aux_sym_cmd_identifier_token18] = ACTIONS(2413), + [aux_sym_cmd_identifier_token19] = ACTIONS(2413), + [aux_sym_cmd_identifier_token20] = ACTIONS(2413), + [aux_sym_cmd_identifier_token21] = ACTIONS(2413), + [aux_sym_cmd_identifier_token22] = ACTIONS(2413), + [aux_sym_cmd_identifier_token23] = ACTIONS(2413), + [aux_sym_cmd_identifier_token24] = ACTIONS(2413), + [aux_sym_cmd_identifier_token25] = ACTIONS(2413), + [aux_sym_cmd_identifier_token26] = ACTIONS(2413), + [aux_sym_cmd_identifier_token27] = ACTIONS(2413), + [aux_sym_cmd_identifier_token28] = ACTIONS(2413), + [aux_sym_cmd_identifier_token29] = ACTIONS(2413), + [aux_sym_cmd_identifier_token30] = ACTIONS(2413), + [aux_sym_cmd_identifier_token31] = ACTIONS(2413), + [aux_sym_cmd_identifier_token32] = ACTIONS(2413), + [aux_sym_cmd_identifier_token33] = ACTIONS(2413), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2413), + [aux_sym_cmd_identifier_token36] = ACTIONS(2413), + [aux_sym_cmd_identifier_token37] = ACTIONS(2413), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2413), + [aux_sym_cmd_identifier_token40] = ACTIONS(2413), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2413), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(2413), + [aux_sym__val_number_token2] = ACTIONS(2413), + [aux_sym__val_number_token3] = ACTIONS(2413), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym__str_single_quotes] = ACTIONS(2413), + [sym__str_back_ticks] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2417), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1719), + [sym_raw_string_begin] = ACTIONS(2419), }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2318), - [anon_sym_alias] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_let_DASHenv] = ACTIONS(2318), - [anon_sym_mut] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [aux_sym_cmd_identifier_token1] = ACTIONS(2318), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2318), - [aux_sym_cmd_identifier_token9] = ACTIONS(2318), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2318), - [aux_sym_cmd_identifier_token13] = ACTIONS(2318), - [aux_sym_cmd_identifier_token14] = ACTIONS(2318), - [aux_sym_cmd_identifier_token15] = ACTIONS(2318), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2318), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2318), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2318), - [anon_sym_export_DASHenv] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_module] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2318), - [anon_sym_DASH2] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_in2] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_make] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_else] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2318), - [anon_sym_catch] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_source] = ACTIONS(2318), - [anon_sym_source_DASHenv] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_hide] = ACTIONS(2318), - [anon_sym_hide_DASHenv] = ACTIONS(2318), - [anon_sym_overlay] = ACTIONS(2318), - [anon_sym_as] = ACTIONS(2318), - [anon_sym_LPAREN2] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2318), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2318), - [aux_sym__val_number_token5] = ACTIONS(2318), - [aux_sym__val_number_token6] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2320), + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2357), + [anon_sym_alias] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_let_DASHenv] = ACTIONS(2357), + [anon_sym_mut] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [aux_sym_cmd_identifier_token1] = ACTIONS(2357), + [aux_sym_cmd_identifier_token2] = ACTIONS(2361), + [aux_sym_cmd_identifier_token3] = ACTIONS(2361), + [aux_sym_cmd_identifier_token4] = ACTIONS(2361), + [aux_sym_cmd_identifier_token5] = ACTIONS(2361), + [aux_sym_cmd_identifier_token6] = ACTIONS(2361), + [aux_sym_cmd_identifier_token7] = ACTIONS(2361), + [aux_sym_cmd_identifier_token8] = ACTIONS(2357), + [aux_sym_cmd_identifier_token9] = ACTIONS(2357), + [aux_sym_cmd_identifier_token10] = ACTIONS(2361), + [aux_sym_cmd_identifier_token11] = ACTIONS(2361), + [aux_sym_cmd_identifier_token12] = ACTIONS(2357), + [aux_sym_cmd_identifier_token13] = ACTIONS(2357), + [aux_sym_cmd_identifier_token14] = ACTIONS(2357), + [aux_sym_cmd_identifier_token15] = ACTIONS(2357), + [aux_sym_cmd_identifier_token16] = ACTIONS(2361), + [aux_sym_cmd_identifier_token17] = ACTIONS(2361), + [aux_sym_cmd_identifier_token18] = ACTIONS(2361), + [aux_sym_cmd_identifier_token19] = ACTIONS(2361), + [aux_sym_cmd_identifier_token20] = ACTIONS(2361), + [aux_sym_cmd_identifier_token21] = ACTIONS(2361), + [aux_sym_cmd_identifier_token22] = ACTIONS(2361), + [aux_sym_cmd_identifier_token23] = ACTIONS(2361), + [aux_sym_cmd_identifier_token24] = ACTIONS(2361), + [aux_sym_cmd_identifier_token25] = ACTIONS(2361), + [aux_sym_cmd_identifier_token26] = ACTIONS(2361), + [aux_sym_cmd_identifier_token27] = ACTIONS(2361), + [aux_sym_cmd_identifier_token28] = ACTIONS(2361), + [aux_sym_cmd_identifier_token29] = ACTIONS(2361), + [aux_sym_cmd_identifier_token30] = ACTIONS(2361), + [aux_sym_cmd_identifier_token31] = ACTIONS(2361), + [aux_sym_cmd_identifier_token32] = ACTIONS(2361), + [aux_sym_cmd_identifier_token33] = ACTIONS(2361), + [aux_sym_cmd_identifier_token34] = ACTIONS(2357), + [aux_sym_cmd_identifier_token35] = ACTIONS(2361), + [aux_sym_cmd_identifier_token36] = ACTIONS(2361), + [aux_sym_cmd_identifier_token37] = ACTIONS(2361), + [aux_sym_cmd_identifier_token38] = ACTIONS(2357), + [aux_sym_cmd_identifier_token39] = ACTIONS(2361), + [aux_sym_cmd_identifier_token40] = ACTIONS(2361), + [anon_sym_def] = ACTIONS(2357), + [anon_sym_export_DASHenv] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_module] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_error] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_in2] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_make] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_do] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_else] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_catch] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_source] = ACTIONS(2357), + [anon_sym_source_DASHenv] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_hide] = ACTIONS(2357), + [anon_sym_hide_DASHenv] = ACTIONS(2357), + [anon_sym_overlay] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2357), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [aux_sym__val_number_token4] = ACTIONS(2357), + [aux_sym__val_number_token5] = ACTIONS(2357), + [aux_sym__val_number_token6] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2361), }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [sym__entry_separator] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1929), + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1498), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [aux_sym_cmd_identifier_token6] = ACTIONS(1498), + [aux_sym_cmd_identifier_token7] = ACTIONS(1498), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1498), + [aux_sym_cmd_identifier_token11] = ACTIONS(1498), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1498), + [aux_sym_cmd_identifier_token17] = ACTIONS(1498), + [aux_sym_cmd_identifier_token18] = ACTIONS(1498), + [aux_sym_cmd_identifier_token19] = ACTIONS(1498), + [aux_sym_cmd_identifier_token20] = ACTIONS(1498), + [aux_sym_cmd_identifier_token21] = ACTIONS(1498), + [aux_sym_cmd_identifier_token22] = ACTIONS(1498), + [aux_sym_cmd_identifier_token23] = ACTIONS(1498), + [aux_sym_cmd_identifier_token24] = ACTIONS(1498), + [aux_sym_cmd_identifier_token25] = ACTIONS(1498), + [aux_sym_cmd_identifier_token26] = ACTIONS(1498), + [aux_sym_cmd_identifier_token27] = ACTIONS(1498), + [aux_sym_cmd_identifier_token28] = ACTIONS(1498), + [aux_sym_cmd_identifier_token29] = ACTIONS(1498), + [aux_sym_cmd_identifier_token30] = ACTIONS(1498), + [aux_sym_cmd_identifier_token31] = ACTIONS(1498), + [aux_sym_cmd_identifier_token32] = ACTIONS(1498), + [aux_sym_cmd_identifier_token33] = ACTIONS(1498), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1498), + [aux_sym_cmd_identifier_token36] = ACTIONS(1498), + [aux_sym_cmd_identifier_token37] = ACTIONS(1498), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1498), + [aux_sym_cmd_identifier_token40] = ACTIONS(1498), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(1490), + [anon_sym_alias] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_let_DASHenv] = ACTIONS(1490), + [anon_sym_mut] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [aux_sym_cmd_identifier_token1] = ACTIONS(1490), + [aux_sym_cmd_identifier_token2] = ACTIONS(1492), + [aux_sym_cmd_identifier_token3] = ACTIONS(1492), + [aux_sym_cmd_identifier_token4] = ACTIONS(1492), + [aux_sym_cmd_identifier_token5] = ACTIONS(1492), + [aux_sym_cmd_identifier_token6] = ACTIONS(1492), + [aux_sym_cmd_identifier_token7] = ACTIONS(1492), + [aux_sym_cmd_identifier_token8] = ACTIONS(1490), + [aux_sym_cmd_identifier_token9] = ACTIONS(1490), + [aux_sym_cmd_identifier_token10] = ACTIONS(1492), + [aux_sym_cmd_identifier_token11] = ACTIONS(1492), + [aux_sym_cmd_identifier_token12] = ACTIONS(1490), + [aux_sym_cmd_identifier_token13] = ACTIONS(1490), + [aux_sym_cmd_identifier_token14] = ACTIONS(1490), + [aux_sym_cmd_identifier_token15] = ACTIONS(1490), + [aux_sym_cmd_identifier_token16] = ACTIONS(1492), + [aux_sym_cmd_identifier_token17] = ACTIONS(1492), + [aux_sym_cmd_identifier_token18] = ACTIONS(1492), + [aux_sym_cmd_identifier_token19] = ACTIONS(1492), + [aux_sym_cmd_identifier_token20] = ACTIONS(1492), + [aux_sym_cmd_identifier_token21] = ACTIONS(1492), + [aux_sym_cmd_identifier_token22] = ACTIONS(1492), + [aux_sym_cmd_identifier_token23] = ACTIONS(1492), + [aux_sym_cmd_identifier_token24] = ACTIONS(1492), + [aux_sym_cmd_identifier_token25] = ACTIONS(1492), + [aux_sym_cmd_identifier_token26] = ACTIONS(1492), + [aux_sym_cmd_identifier_token27] = ACTIONS(1492), + [aux_sym_cmd_identifier_token28] = ACTIONS(1492), + [aux_sym_cmd_identifier_token29] = ACTIONS(1492), + [aux_sym_cmd_identifier_token30] = ACTIONS(1492), + [aux_sym_cmd_identifier_token31] = ACTIONS(1492), + [aux_sym_cmd_identifier_token32] = ACTIONS(1492), + [aux_sym_cmd_identifier_token33] = ACTIONS(1492), + [aux_sym_cmd_identifier_token34] = ACTIONS(1490), + [aux_sym_cmd_identifier_token35] = ACTIONS(1492), + [aux_sym_cmd_identifier_token36] = ACTIONS(1492), + [aux_sym_cmd_identifier_token37] = ACTIONS(1492), + [aux_sym_cmd_identifier_token38] = ACTIONS(1490), + [aux_sym_cmd_identifier_token39] = ACTIONS(1492), + [aux_sym_cmd_identifier_token40] = ACTIONS(1492), + [anon_sym_def] = ACTIONS(1490), + [anon_sym_export_DASHenv] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_module] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_error] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_make] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1490), + [anon_sym_catch] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_source] = ACTIONS(1490), + [anon_sym_source_DASHenv] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_hide] = ACTIONS(1490), + [anon_sym_hide_DASHenv] = ACTIONS(1490), + [anon_sym_overlay] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1490), + [aux_sym__val_number_token5] = ACTIONS(1490), + [aux_sym__val_number_token6] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, - [680] = { - [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [aux_sym_cmd_identifier_token37] = ACTIONS(2478), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2478), - [aux_sym_cmd_identifier_token40] = ACTIONS(2478), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2478), - [aux_sym__val_number_decimal_token3] = ACTIONS(2478), - [aux_sym__val_number_decimal_token4] = ACTIONS(2478), - [aux_sym__val_number_token1] = ACTIONS(2478), - [aux_sym__val_number_token2] = ACTIONS(2478), - [aux_sym__val_number_token3] = ACTIONS(2478), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym__str_single_quotes] = ACTIONS(2478), - [sym__str_back_ticks] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), - [sym__entry_separator] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2480), + [589] = { + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1558), + [aux_sym_cmd_identifier_token3] = ACTIONS(1558), + [aux_sym_cmd_identifier_token4] = ACTIONS(1558), + [aux_sym_cmd_identifier_token5] = ACTIONS(1558), + [aux_sym_cmd_identifier_token6] = ACTIONS(1558), + [aux_sym_cmd_identifier_token7] = ACTIONS(1558), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1558), + [aux_sym_cmd_identifier_token11] = ACTIONS(1558), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1558), + [aux_sym_cmd_identifier_token17] = ACTIONS(1558), + [aux_sym_cmd_identifier_token18] = ACTIONS(1558), + [aux_sym_cmd_identifier_token19] = ACTIONS(1558), + [aux_sym_cmd_identifier_token20] = ACTIONS(1558), + [aux_sym_cmd_identifier_token21] = ACTIONS(1558), + [aux_sym_cmd_identifier_token22] = ACTIONS(1558), + [aux_sym_cmd_identifier_token23] = ACTIONS(1558), + [aux_sym_cmd_identifier_token24] = ACTIONS(1558), + [aux_sym_cmd_identifier_token25] = ACTIONS(1558), + [aux_sym_cmd_identifier_token26] = ACTIONS(1558), + [aux_sym_cmd_identifier_token27] = ACTIONS(1558), + [aux_sym_cmd_identifier_token28] = ACTIONS(1558), + [aux_sym_cmd_identifier_token29] = ACTIONS(1558), + [aux_sym_cmd_identifier_token30] = ACTIONS(1558), + [aux_sym_cmd_identifier_token31] = ACTIONS(1558), + [aux_sym_cmd_identifier_token32] = ACTIONS(1558), + [aux_sym_cmd_identifier_token33] = ACTIONS(1558), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1558), + [aux_sym_cmd_identifier_token36] = ACTIONS(1558), + [aux_sym_cmd_identifier_token37] = ACTIONS(1558), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1558), + [aux_sym_cmd_identifier_token40] = ACTIONS(1558), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1558), + [aux_sym_record_entry_token1] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), }, - [681] = { - [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [aux_sym_cmd_identifier_token37] = ACTIONS(2482), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2482), - [aux_sym_cmd_identifier_token40] = ACTIONS(2482), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in2] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2482), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2482), - [aux_sym__val_number_token2] = ACTIONS(2482), - [aux_sym__val_number_token3] = ACTIONS(2482), - [aux_sym__val_number_token4] = ACTIONS(2482), - [aux_sym__val_number_token5] = ACTIONS(2482), - [aux_sym__val_number_token6] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym__str_single_quotes] = ACTIONS(2482), - [sym__str_back_ticks] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), - [sym__entry_separator] = ACTIONS(2484), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(2423), + [anon_sym_alias] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_let_DASHenv] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [aux_sym_cmd_identifier_token1] = ACTIONS(2423), + [aux_sym_cmd_identifier_token2] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2423), + [aux_sym_cmd_identifier_token4] = ACTIONS(2423), + [aux_sym_cmd_identifier_token5] = ACTIONS(2423), + [aux_sym_cmd_identifier_token6] = ACTIONS(2423), + [aux_sym_cmd_identifier_token7] = ACTIONS(2423), + [aux_sym_cmd_identifier_token8] = ACTIONS(2423), + [aux_sym_cmd_identifier_token9] = ACTIONS(2423), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [aux_sym_cmd_identifier_token12] = ACTIONS(2423), + [aux_sym_cmd_identifier_token13] = ACTIONS(2423), + [aux_sym_cmd_identifier_token14] = ACTIONS(2423), + [aux_sym_cmd_identifier_token15] = ACTIONS(2423), + [aux_sym_cmd_identifier_token16] = ACTIONS(2423), + [aux_sym_cmd_identifier_token17] = ACTIONS(2423), + [aux_sym_cmd_identifier_token18] = ACTIONS(2423), + [aux_sym_cmd_identifier_token19] = ACTIONS(2423), + [aux_sym_cmd_identifier_token20] = ACTIONS(2423), + [aux_sym_cmd_identifier_token21] = ACTIONS(2423), + [aux_sym_cmd_identifier_token22] = ACTIONS(2423), + [aux_sym_cmd_identifier_token23] = ACTIONS(2423), + [aux_sym_cmd_identifier_token24] = ACTIONS(2423), + [aux_sym_cmd_identifier_token25] = ACTIONS(2423), + [aux_sym_cmd_identifier_token26] = ACTIONS(2423), + [aux_sym_cmd_identifier_token27] = ACTIONS(2423), + [aux_sym_cmd_identifier_token28] = ACTIONS(2423), + [aux_sym_cmd_identifier_token29] = ACTIONS(2423), + [aux_sym_cmd_identifier_token30] = ACTIONS(2423), + [aux_sym_cmd_identifier_token31] = ACTIONS(2423), + [aux_sym_cmd_identifier_token32] = ACTIONS(2423), + [aux_sym_cmd_identifier_token33] = ACTIONS(2423), + [aux_sym_cmd_identifier_token34] = ACTIONS(2423), + [aux_sym_cmd_identifier_token35] = ACTIONS(2423), + [aux_sym_cmd_identifier_token36] = ACTIONS(2423), + [aux_sym_cmd_identifier_token37] = ACTIONS(2423), + [aux_sym_cmd_identifier_token38] = ACTIONS(2423), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2423), + [anon_sym_export_DASHenv] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_module] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_in2] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_make] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_else] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2423), + [anon_sym_catch] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_source] = ACTIONS(2423), + [anon_sym_source_DASHenv] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_hide] = ACTIONS(2423), + [anon_sym_hide_DASHenv] = ACTIONS(2423), + [anon_sym_overlay] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [aux_sym__val_number_decimal_token2] = ACTIONS(2423), + [aux_sym__val_number_decimal_token3] = ACTIONS(2423), + [aux_sym__val_number_decimal_token4] = ACTIONS(2423), + [aux_sym__val_number_token1] = ACTIONS(2423), + [aux_sym__val_number_token2] = ACTIONS(2423), + [aux_sym__val_number_token3] = ACTIONS(2423), + [aux_sym__val_number_token4] = ACTIONS(2423), + [aux_sym__val_number_token5] = ACTIONS(2423), + [aux_sym__val_number_token6] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [sym__entry_separator] = ACTIONS(2427), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2484), + [sym_raw_string_begin] = ACTIONS(2427), }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1887), - [aux_sym_cmd_identifier_token3] = ACTIONS(1887), - [aux_sym_cmd_identifier_token4] = ACTIONS(1887), - [aux_sym_cmd_identifier_token5] = ACTIONS(1887), - [aux_sym_cmd_identifier_token6] = ACTIONS(1887), - [aux_sym_cmd_identifier_token7] = ACTIONS(1887), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1887), - [aux_sym_cmd_identifier_token11] = ACTIONS(1887), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1887), - [aux_sym_cmd_identifier_token17] = ACTIONS(1887), - [aux_sym_cmd_identifier_token18] = ACTIONS(1887), - [aux_sym_cmd_identifier_token19] = ACTIONS(1887), - [aux_sym_cmd_identifier_token20] = ACTIONS(1887), - [aux_sym_cmd_identifier_token21] = ACTIONS(1887), - [aux_sym_cmd_identifier_token22] = ACTIONS(1887), - [aux_sym_cmd_identifier_token23] = ACTIONS(1887), - [aux_sym_cmd_identifier_token24] = ACTIONS(1887), - [aux_sym_cmd_identifier_token25] = ACTIONS(1887), - [aux_sym_cmd_identifier_token26] = ACTIONS(1887), - [aux_sym_cmd_identifier_token27] = ACTIONS(1887), - [aux_sym_cmd_identifier_token28] = ACTIONS(1887), - [aux_sym_cmd_identifier_token29] = ACTIONS(1887), - [aux_sym_cmd_identifier_token30] = ACTIONS(1887), - [aux_sym_cmd_identifier_token31] = ACTIONS(1887), - [aux_sym_cmd_identifier_token32] = ACTIONS(1887), - [aux_sym_cmd_identifier_token33] = ACTIONS(1887), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1887), - [aux_sym_cmd_identifier_token36] = ACTIONS(1887), - [aux_sym_cmd_identifier_token37] = ACTIONS(1887), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1887), - [aux_sym_cmd_identifier_token40] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), - [sym__entry_separator] = ACTIONS(1889), + [591] = { + [sym_comment] = STATE(591), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2417), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1889), + [sym_raw_string_begin] = ACTIONS(2433), }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_alias] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_let_DASHenv] = ACTIONS(1942), - [anon_sym_mut] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [aux_sym_cmd_identifier_token1] = ACTIONS(1942), - [aux_sym_cmd_identifier_token2] = ACTIONS(1942), - [aux_sym_cmd_identifier_token3] = ACTIONS(1942), - [aux_sym_cmd_identifier_token4] = ACTIONS(1942), - [aux_sym_cmd_identifier_token5] = ACTIONS(1942), - [aux_sym_cmd_identifier_token6] = ACTIONS(1942), - [aux_sym_cmd_identifier_token7] = ACTIONS(1942), - [aux_sym_cmd_identifier_token8] = ACTIONS(1942), - [aux_sym_cmd_identifier_token9] = ACTIONS(1942), - [aux_sym_cmd_identifier_token10] = ACTIONS(1942), - [aux_sym_cmd_identifier_token11] = ACTIONS(1942), - [aux_sym_cmd_identifier_token12] = ACTIONS(1942), - [aux_sym_cmd_identifier_token13] = ACTIONS(1942), - [aux_sym_cmd_identifier_token14] = ACTIONS(1942), - [aux_sym_cmd_identifier_token15] = ACTIONS(1942), - [aux_sym_cmd_identifier_token16] = ACTIONS(1942), - [aux_sym_cmd_identifier_token17] = ACTIONS(1942), - [aux_sym_cmd_identifier_token18] = ACTIONS(1942), - [aux_sym_cmd_identifier_token19] = ACTIONS(1942), - [aux_sym_cmd_identifier_token20] = ACTIONS(1942), - [aux_sym_cmd_identifier_token21] = ACTIONS(1942), - [aux_sym_cmd_identifier_token22] = ACTIONS(1942), - [aux_sym_cmd_identifier_token23] = ACTIONS(1942), - [aux_sym_cmd_identifier_token24] = ACTIONS(1942), - [aux_sym_cmd_identifier_token25] = ACTIONS(1942), - [aux_sym_cmd_identifier_token26] = ACTIONS(1942), - [aux_sym_cmd_identifier_token27] = ACTIONS(1942), - [aux_sym_cmd_identifier_token28] = ACTIONS(1942), - [aux_sym_cmd_identifier_token29] = ACTIONS(1942), - [aux_sym_cmd_identifier_token30] = ACTIONS(1942), - [aux_sym_cmd_identifier_token31] = ACTIONS(1942), - [aux_sym_cmd_identifier_token32] = ACTIONS(1942), - [aux_sym_cmd_identifier_token33] = ACTIONS(1942), - [aux_sym_cmd_identifier_token34] = ACTIONS(1942), - [aux_sym_cmd_identifier_token35] = ACTIONS(1942), - [aux_sym_cmd_identifier_token36] = ACTIONS(1942), - [aux_sym_cmd_identifier_token37] = ACTIONS(1942), - [aux_sym_cmd_identifier_token38] = ACTIONS(1942), - [aux_sym_cmd_identifier_token39] = ACTIONS(1942), - [aux_sym_cmd_identifier_token40] = ACTIONS(1942), - [anon_sym_def] = ACTIONS(1942), - [anon_sym_export_DASHenv] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_error] = ACTIONS(1942), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_in2] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_make] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_source] = ACTIONS(1942), - [anon_sym_source_DASHenv] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_hide] = ACTIONS(1942), - [anon_sym_hide_DASHenv] = ACTIONS(1942), - [anon_sym_overlay] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1942), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1942), - [aux_sym__val_number_decimal_token3] = ACTIONS(1942), - [aux_sym__val_number_decimal_token4] = ACTIONS(1942), - [aux_sym__val_number_token1] = ACTIONS(1942), - [aux_sym__val_number_token2] = ACTIONS(1942), - [aux_sym__val_number_token3] = ACTIONS(1942), - [aux_sym__val_number_token4] = ACTIONS(1942), - [aux_sym__val_number_token5] = ACTIONS(1942), - [aux_sym__val_number_token6] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym__str_single_quotes] = ACTIONS(1942), - [sym__str_back_ticks] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1942), - [sym__entry_separator] = ACTIONS(1944), + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(2337), + [anon_sym_alias] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_let_DASHenv] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [aux_sym_cmd_identifier_token1] = ACTIONS(2337), + [aux_sym_cmd_identifier_token2] = ACTIONS(2337), + [aux_sym_cmd_identifier_token3] = ACTIONS(2337), + [aux_sym_cmd_identifier_token4] = ACTIONS(2337), + [aux_sym_cmd_identifier_token5] = ACTIONS(2337), + [aux_sym_cmd_identifier_token6] = ACTIONS(2337), + [aux_sym_cmd_identifier_token7] = ACTIONS(2337), + [aux_sym_cmd_identifier_token8] = ACTIONS(2337), + [aux_sym_cmd_identifier_token9] = ACTIONS(2337), + [aux_sym_cmd_identifier_token10] = ACTIONS(2337), + [aux_sym_cmd_identifier_token11] = ACTIONS(2337), + [aux_sym_cmd_identifier_token12] = ACTIONS(2337), + [aux_sym_cmd_identifier_token13] = ACTIONS(2337), + [aux_sym_cmd_identifier_token14] = ACTIONS(2337), + [aux_sym_cmd_identifier_token15] = ACTIONS(2337), + [aux_sym_cmd_identifier_token16] = ACTIONS(2337), + [aux_sym_cmd_identifier_token17] = ACTIONS(2337), + [aux_sym_cmd_identifier_token18] = ACTIONS(2337), + [aux_sym_cmd_identifier_token19] = ACTIONS(2337), + [aux_sym_cmd_identifier_token20] = ACTIONS(2337), + [aux_sym_cmd_identifier_token21] = ACTIONS(2337), + [aux_sym_cmd_identifier_token22] = ACTIONS(2337), + [aux_sym_cmd_identifier_token23] = ACTIONS(2337), + [aux_sym_cmd_identifier_token24] = ACTIONS(2337), + [aux_sym_cmd_identifier_token25] = ACTIONS(2337), + [aux_sym_cmd_identifier_token26] = ACTIONS(2337), + [aux_sym_cmd_identifier_token27] = ACTIONS(2337), + [aux_sym_cmd_identifier_token28] = ACTIONS(2337), + [aux_sym_cmd_identifier_token29] = ACTIONS(2337), + [aux_sym_cmd_identifier_token30] = ACTIONS(2337), + [aux_sym_cmd_identifier_token31] = ACTIONS(2337), + [aux_sym_cmd_identifier_token32] = ACTIONS(2337), + [aux_sym_cmd_identifier_token33] = ACTIONS(2337), + [aux_sym_cmd_identifier_token34] = ACTIONS(2337), + [aux_sym_cmd_identifier_token35] = ACTIONS(2337), + [aux_sym_cmd_identifier_token36] = ACTIONS(2337), + [aux_sym_cmd_identifier_token37] = ACTIONS(2337), + [aux_sym_cmd_identifier_token38] = ACTIONS(2337), + [aux_sym_cmd_identifier_token39] = ACTIONS(2337), + [aux_sym_cmd_identifier_token40] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2337), + [anon_sym_export_DASHenv] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_module] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_error] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in2] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_make] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_source] = ACTIONS(2337), + [anon_sym_source_DASHenv] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_hide] = ACTIONS(2337), + [anon_sym_hide_DASHenv] = ACTIONS(2337), + [anon_sym_overlay] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_PLUS2] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1944), + [sym_raw_string_begin] = ACTIONS(2341), }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), - [aux_sym_cmd_identifier_token2] = ACTIONS(2486), - [aux_sym_cmd_identifier_token3] = ACTIONS(2486), - [aux_sym_cmd_identifier_token4] = ACTIONS(2486), - [aux_sym_cmd_identifier_token5] = ACTIONS(2486), - [aux_sym_cmd_identifier_token6] = ACTIONS(2486), - [aux_sym_cmd_identifier_token7] = ACTIONS(2486), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), - [aux_sym_cmd_identifier_token10] = ACTIONS(2486), - [aux_sym_cmd_identifier_token11] = ACTIONS(2486), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), - [aux_sym_cmd_identifier_token16] = ACTIONS(2486), - [aux_sym_cmd_identifier_token17] = ACTIONS(2486), - [aux_sym_cmd_identifier_token18] = ACTIONS(2486), - [aux_sym_cmd_identifier_token19] = ACTIONS(2486), - [aux_sym_cmd_identifier_token20] = ACTIONS(2486), - [aux_sym_cmd_identifier_token21] = ACTIONS(2486), - [aux_sym_cmd_identifier_token22] = ACTIONS(2486), - [aux_sym_cmd_identifier_token23] = ACTIONS(2486), - [aux_sym_cmd_identifier_token24] = ACTIONS(2486), - [aux_sym_cmd_identifier_token25] = ACTIONS(2486), - [aux_sym_cmd_identifier_token26] = ACTIONS(2486), - [aux_sym_cmd_identifier_token27] = ACTIONS(2486), - [aux_sym_cmd_identifier_token28] = ACTIONS(2486), - [aux_sym_cmd_identifier_token29] = ACTIONS(2486), - [aux_sym_cmd_identifier_token30] = ACTIONS(2486), - [aux_sym_cmd_identifier_token31] = ACTIONS(2486), - [aux_sym_cmd_identifier_token32] = ACTIONS(2486), - [aux_sym_cmd_identifier_token33] = ACTIONS(2486), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), - [aux_sym_cmd_identifier_token35] = ACTIONS(2486), - [aux_sym_cmd_identifier_token36] = ACTIONS(2486), - [aux_sym_cmd_identifier_token37] = ACTIONS(2486), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), - [aux_sym_cmd_identifier_token39] = ACTIONS(2486), - [aux_sym_cmd_identifier_token40] = ACTIONS(2486), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_DOLLAR] = ACTIONS(2486), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_DASH2] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in2] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_PLUS2] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), - [aux_sym__val_number_decimal_token2] = ACTIONS(2486), - [aux_sym__val_number_decimal_token3] = ACTIONS(2486), - [aux_sym__val_number_decimal_token4] = ACTIONS(2486), - [aux_sym__val_number_token1] = ACTIONS(2486), - [aux_sym__val_number_token2] = ACTIONS(2486), - [aux_sym__val_number_token3] = ACTIONS(2486), - [aux_sym__val_number_token4] = ACTIONS(2486), - [aux_sym__val_number_token5] = ACTIONS(2486), - [aux_sym__val_number_token6] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(2486), - [sym__str_single_quotes] = ACTIONS(2486), - [sym__str_back_ticks] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), - [sym__entry_separator] = ACTIONS(2488), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2345), + [anon_sym_alias] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_let_DASHenv] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [aux_sym_cmd_identifier_token1] = ACTIONS(2345), + [aux_sym_cmd_identifier_token2] = ACTIONS(2345), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [aux_sym_cmd_identifier_token6] = ACTIONS(2345), + [aux_sym_cmd_identifier_token7] = ACTIONS(2345), + [aux_sym_cmd_identifier_token8] = ACTIONS(2345), + [aux_sym_cmd_identifier_token9] = ACTIONS(2345), + [aux_sym_cmd_identifier_token10] = ACTIONS(2345), + [aux_sym_cmd_identifier_token11] = ACTIONS(2345), + [aux_sym_cmd_identifier_token12] = ACTIONS(2345), + [aux_sym_cmd_identifier_token13] = ACTIONS(2345), + [aux_sym_cmd_identifier_token14] = ACTIONS(2345), + [aux_sym_cmd_identifier_token15] = ACTIONS(2345), + [aux_sym_cmd_identifier_token16] = ACTIONS(2345), + [aux_sym_cmd_identifier_token17] = ACTIONS(2345), + [aux_sym_cmd_identifier_token18] = ACTIONS(2345), + [aux_sym_cmd_identifier_token19] = ACTIONS(2345), + [aux_sym_cmd_identifier_token20] = ACTIONS(2345), + [aux_sym_cmd_identifier_token21] = ACTIONS(2345), + [aux_sym_cmd_identifier_token22] = ACTIONS(2345), + [aux_sym_cmd_identifier_token23] = ACTIONS(2345), + [aux_sym_cmd_identifier_token24] = ACTIONS(2345), + [aux_sym_cmd_identifier_token25] = ACTIONS(2345), + [aux_sym_cmd_identifier_token26] = ACTIONS(2345), + [aux_sym_cmd_identifier_token27] = ACTIONS(2345), + [aux_sym_cmd_identifier_token28] = ACTIONS(2345), + [aux_sym_cmd_identifier_token29] = ACTIONS(2345), + [aux_sym_cmd_identifier_token30] = ACTIONS(2345), + [aux_sym_cmd_identifier_token31] = ACTIONS(2345), + [aux_sym_cmd_identifier_token32] = ACTIONS(2345), + [aux_sym_cmd_identifier_token33] = ACTIONS(2345), + [aux_sym_cmd_identifier_token34] = ACTIONS(2345), + [aux_sym_cmd_identifier_token35] = ACTIONS(2345), + [aux_sym_cmd_identifier_token36] = ACTIONS(2345), + [aux_sym_cmd_identifier_token37] = ACTIONS(2345), + [aux_sym_cmd_identifier_token38] = ACTIONS(2345), + [aux_sym_cmd_identifier_token39] = ACTIONS(2345), + [aux_sym_cmd_identifier_token40] = ACTIONS(2345), + [anon_sym_def] = ACTIONS(2345), + [anon_sym_export_DASHenv] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_module] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_error] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_make] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_catch] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_source] = ACTIONS(2345), + [anon_sym_source_DASHenv] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_hide] = ACTIONS(2345), + [anon_sym_hide_DASHenv] = ACTIONS(2345), + [anon_sym_overlay] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [aux_sym__val_number_token4] = ACTIONS(2345), + [aux_sym__val_number_token5] = ACTIONS(2345), + [aux_sym__val_number_token6] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2488), + [sym_raw_string_begin] = ACTIONS(2349), }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_alias] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_let_DASHenv] = ACTIONS(2298), - [anon_sym_mut] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [aux_sym_cmd_identifier_token1] = ACTIONS(2298), - [aux_sym_cmd_identifier_token2] = ACTIONS(2300), - [aux_sym_cmd_identifier_token3] = ACTIONS(2300), - [aux_sym_cmd_identifier_token4] = ACTIONS(2300), - [aux_sym_cmd_identifier_token5] = ACTIONS(2300), - [aux_sym_cmd_identifier_token6] = ACTIONS(2300), - [aux_sym_cmd_identifier_token7] = ACTIONS(2300), - [aux_sym_cmd_identifier_token8] = ACTIONS(2298), - [aux_sym_cmd_identifier_token9] = ACTIONS(2298), - [aux_sym_cmd_identifier_token10] = ACTIONS(2300), - [aux_sym_cmd_identifier_token11] = ACTIONS(2300), - [aux_sym_cmd_identifier_token12] = ACTIONS(2298), - [aux_sym_cmd_identifier_token13] = ACTIONS(2298), - [aux_sym_cmd_identifier_token14] = ACTIONS(2298), - [aux_sym_cmd_identifier_token15] = ACTIONS(2298), - [aux_sym_cmd_identifier_token16] = ACTIONS(2300), - [aux_sym_cmd_identifier_token17] = ACTIONS(2300), - [aux_sym_cmd_identifier_token18] = ACTIONS(2300), - [aux_sym_cmd_identifier_token19] = ACTIONS(2300), - [aux_sym_cmd_identifier_token20] = ACTIONS(2300), - [aux_sym_cmd_identifier_token21] = ACTIONS(2300), - [aux_sym_cmd_identifier_token22] = ACTIONS(2300), - [aux_sym_cmd_identifier_token23] = ACTIONS(2300), - [aux_sym_cmd_identifier_token24] = ACTIONS(2300), - [aux_sym_cmd_identifier_token25] = ACTIONS(2300), - [aux_sym_cmd_identifier_token26] = ACTIONS(2300), - [aux_sym_cmd_identifier_token27] = ACTIONS(2300), - [aux_sym_cmd_identifier_token28] = ACTIONS(2300), - [aux_sym_cmd_identifier_token29] = ACTIONS(2300), - [aux_sym_cmd_identifier_token30] = ACTIONS(2300), - [aux_sym_cmd_identifier_token31] = ACTIONS(2300), - [aux_sym_cmd_identifier_token32] = ACTIONS(2300), - [aux_sym_cmd_identifier_token33] = ACTIONS(2300), - [aux_sym_cmd_identifier_token34] = ACTIONS(2298), - [aux_sym_cmd_identifier_token35] = ACTIONS(2300), - [aux_sym_cmd_identifier_token36] = ACTIONS(2300), - [aux_sym_cmd_identifier_token37] = ACTIONS(2300), - [aux_sym_cmd_identifier_token38] = ACTIONS(2298), - [aux_sym_cmd_identifier_token39] = ACTIONS(2300), - [aux_sym_cmd_identifier_token40] = ACTIONS(2300), - [anon_sym_def] = ACTIONS(2298), - [anon_sym_export_DASHenv] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2300), - [anon_sym_error] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_make] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_source] = ACTIONS(2298), - [anon_sym_source_DASHenv] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2298), - [anon_sym_hide] = ACTIONS(2298), - [anon_sym_hide_DASHenv] = ACTIONS(2298), - [anon_sym_overlay] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2300), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2300), - [aux_sym__val_number_decimal_token3] = ACTIONS(2300), - [aux_sym__val_number_decimal_token4] = ACTIONS(2300), - [aux_sym__val_number_token1] = ACTIONS(2300), - [aux_sym__val_number_token2] = ACTIONS(2300), - [aux_sym__val_number_token3] = ACTIONS(2300), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2300), + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_alias] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_let_DASHenv] = ACTIONS(2333), + [anon_sym_mut] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [aux_sym_cmd_identifier_token1] = ACTIONS(2333), + [aux_sym_cmd_identifier_token2] = ACTIONS(2335), + [aux_sym_cmd_identifier_token3] = ACTIONS(2335), + [aux_sym_cmd_identifier_token4] = ACTIONS(2335), + [aux_sym_cmd_identifier_token5] = ACTIONS(2335), + [aux_sym_cmd_identifier_token6] = ACTIONS(2335), + [aux_sym_cmd_identifier_token7] = ACTIONS(2335), + [aux_sym_cmd_identifier_token8] = ACTIONS(2333), + [aux_sym_cmd_identifier_token9] = ACTIONS(2333), + [aux_sym_cmd_identifier_token10] = ACTIONS(2335), + [aux_sym_cmd_identifier_token11] = ACTIONS(2335), + [aux_sym_cmd_identifier_token12] = ACTIONS(2333), + [aux_sym_cmd_identifier_token13] = ACTIONS(2333), + [aux_sym_cmd_identifier_token14] = ACTIONS(2333), + [aux_sym_cmd_identifier_token15] = ACTIONS(2333), + [aux_sym_cmd_identifier_token16] = ACTIONS(2335), + [aux_sym_cmd_identifier_token17] = ACTIONS(2335), + [aux_sym_cmd_identifier_token18] = ACTIONS(2335), + [aux_sym_cmd_identifier_token19] = ACTIONS(2335), + [aux_sym_cmd_identifier_token20] = ACTIONS(2335), + [aux_sym_cmd_identifier_token21] = ACTIONS(2335), + [aux_sym_cmd_identifier_token22] = ACTIONS(2335), + [aux_sym_cmd_identifier_token23] = ACTIONS(2335), + [aux_sym_cmd_identifier_token24] = ACTIONS(2335), + [aux_sym_cmd_identifier_token25] = ACTIONS(2335), + [aux_sym_cmd_identifier_token26] = ACTIONS(2335), + [aux_sym_cmd_identifier_token27] = ACTIONS(2335), + [aux_sym_cmd_identifier_token28] = ACTIONS(2335), + [aux_sym_cmd_identifier_token29] = ACTIONS(2335), + [aux_sym_cmd_identifier_token30] = ACTIONS(2335), + [aux_sym_cmd_identifier_token31] = ACTIONS(2335), + [aux_sym_cmd_identifier_token32] = ACTIONS(2335), + [aux_sym_cmd_identifier_token33] = ACTIONS(2335), + [aux_sym_cmd_identifier_token34] = ACTIONS(2333), + [aux_sym_cmd_identifier_token35] = ACTIONS(2335), + [aux_sym_cmd_identifier_token36] = ACTIONS(2335), + [aux_sym_cmd_identifier_token37] = ACTIONS(2335), + [aux_sym_cmd_identifier_token38] = ACTIONS(2333), + [aux_sym_cmd_identifier_token39] = ACTIONS(2335), + [aux_sym_cmd_identifier_token40] = ACTIONS(2335), + [anon_sym_def] = ACTIONS(2333), + [anon_sym_export_DASHenv] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2333), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_in2] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_make] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_catch] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_source] = ACTIONS(2333), + [anon_sym_source_DASHenv] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_hide] = ACTIONS(2333), + [anon_sym_hide_DASHenv] = ACTIONS(2333), + [anon_sym_overlay] = ACTIONS(2333), + [anon_sym_as] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2335), + [aux_sym__val_number_decimal_token3] = ACTIONS(2335), + [aux_sym__val_number_decimal_token4] = ACTIONS(2335), + [aux_sym__val_number_token1] = ACTIONS(2335), + [aux_sym__val_number_token2] = ACTIONS(2335), + [aux_sym__val_number_token3] = ACTIONS(2335), + [aux_sym__val_number_token4] = ACTIONS(2333), + [aux_sym__val_number_token5] = ACTIONS(2333), + [aux_sym__val_number_token6] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2335), }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_alias] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_let_DASHenv] = ACTIONS(2490), - [anon_sym_mut] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [aux_sym_cmd_identifier_token1] = ACTIONS(2490), - [aux_sym_cmd_identifier_token2] = ACTIONS(2490), - [aux_sym_cmd_identifier_token3] = ACTIONS(2490), - [aux_sym_cmd_identifier_token4] = ACTIONS(2490), - [aux_sym_cmd_identifier_token5] = ACTIONS(2490), - [aux_sym_cmd_identifier_token6] = ACTIONS(2490), - [aux_sym_cmd_identifier_token7] = ACTIONS(2490), - [aux_sym_cmd_identifier_token8] = ACTIONS(2490), - [aux_sym_cmd_identifier_token9] = ACTIONS(2490), - [aux_sym_cmd_identifier_token10] = ACTIONS(2490), - [aux_sym_cmd_identifier_token11] = ACTIONS(2490), - [aux_sym_cmd_identifier_token12] = ACTIONS(2490), - [aux_sym_cmd_identifier_token13] = ACTIONS(2490), - [aux_sym_cmd_identifier_token14] = ACTIONS(2490), - [aux_sym_cmd_identifier_token15] = ACTIONS(2490), - [aux_sym_cmd_identifier_token16] = ACTIONS(2490), - [aux_sym_cmd_identifier_token17] = ACTIONS(2490), - [aux_sym_cmd_identifier_token18] = ACTIONS(2490), - [aux_sym_cmd_identifier_token19] = ACTIONS(2490), - [aux_sym_cmd_identifier_token20] = ACTIONS(2490), - [aux_sym_cmd_identifier_token21] = ACTIONS(2490), - [aux_sym_cmd_identifier_token22] = ACTIONS(2490), - [aux_sym_cmd_identifier_token23] = ACTIONS(2490), - [aux_sym_cmd_identifier_token24] = ACTIONS(2490), - [aux_sym_cmd_identifier_token25] = ACTIONS(2490), - [aux_sym_cmd_identifier_token26] = ACTIONS(2490), - [aux_sym_cmd_identifier_token27] = ACTIONS(2490), - [aux_sym_cmd_identifier_token28] = ACTIONS(2490), - [aux_sym_cmd_identifier_token29] = ACTIONS(2490), - [aux_sym_cmd_identifier_token30] = ACTIONS(2490), - [aux_sym_cmd_identifier_token31] = ACTIONS(2490), - [aux_sym_cmd_identifier_token32] = ACTIONS(2490), - [aux_sym_cmd_identifier_token33] = ACTIONS(2490), - [aux_sym_cmd_identifier_token34] = ACTIONS(2490), - [aux_sym_cmd_identifier_token35] = ACTIONS(2490), - [aux_sym_cmd_identifier_token36] = ACTIONS(2490), - [aux_sym_cmd_identifier_token37] = ACTIONS(2490), - [aux_sym_cmd_identifier_token38] = ACTIONS(2490), - [aux_sym_cmd_identifier_token39] = ACTIONS(2490), - [aux_sym_cmd_identifier_token40] = ACTIONS(2490), - [anon_sym_def] = ACTIONS(2490), - [anon_sym_export_DASHenv] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_error] = ACTIONS(2490), - [anon_sym_DASH2] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_in2] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_make] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_catch] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_source] = ACTIONS(2490), - [anon_sym_source_DASHenv] = ACTIONS(2490), - [anon_sym_register] = ACTIONS(2490), - [anon_sym_hide] = ACTIONS(2490), - [anon_sym_hide_DASHenv] = ACTIONS(2490), - [anon_sym_overlay] = ACTIONS(2490), - [anon_sym_as] = ACTIONS(2490), - [anon_sym_PLUS2] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), - [aux_sym__val_number_decimal_token1] = ACTIONS(2490), - [aux_sym__val_number_decimal_token2] = ACTIONS(2490), - [aux_sym__val_number_decimal_token3] = ACTIONS(2490), - [aux_sym__val_number_decimal_token4] = ACTIONS(2490), - [aux_sym__val_number_token1] = ACTIONS(2490), - [aux_sym__val_number_token2] = ACTIONS(2490), - [aux_sym__val_number_token3] = ACTIONS(2490), - [aux_sym__val_number_token4] = ACTIONS(2490), - [aux_sym__val_number_token5] = ACTIONS(2490), - [aux_sym__val_number_token6] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym__str_single_quotes] = ACTIONS(2490), - [sym__str_back_ticks] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), - [sym__entry_separator] = ACTIONS(2492), + [595] = { + [sym_comment] = STATE(595), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2435), + [anon_sym_alias] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_let_DASHenv] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [aux_sym_cmd_identifier_token1] = ACTIONS(2435), + [aux_sym_cmd_identifier_token2] = ACTIONS(2435), + [aux_sym_cmd_identifier_token3] = ACTIONS(2435), + [aux_sym_cmd_identifier_token4] = ACTIONS(2435), + [aux_sym_cmd_identifier_token5] = ACTIONS(2435), + [aux_sym_cmd_identifier_token6] = ACTIONS(2435), + [aux_sym_cmd_identifier_token7] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2435), + [aux_sym_cmd_identifier_token9] = ACTIONS(2435), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2435), + [aux_sym_cmd_identifier_token13] = ACTIONS(2435), + [aux_sym_cmd_identifier_token14] = ACTIONS(2435), + [aux_sym_cmd_identifier_token15] = ACTIONS(2435), + [aux_sym_cmd_identifier_token16] = ACTIONS(2435), + [aux_sym_cmd_identifier_token17] = ACTIONS(2435), + [aux_sym_cmd_identifier_token18] = ACTIONS(2435), + [aux_sym_cmd_identifier_token19] = ACTIONS(2435), + [aux_sym_cmd_identifier_token20] = ACTIONS(2435), + [aux_sym_cmd_identifier_token21] = ACTIONS(2435), + [aux_sym_cmd_identifier_token22] = ACTIONS(2435), + [aux_sym_cmd_identifier_token23] = ACTIONS(2435), + [aux_sym_cmd_identifier_token24] = ACTIONS(2435), + [aux_sym_cmd_identifier_token25] = ACTIONS(2435), + [aux_sym_cmd_identifier_token26] = ACTIONS(2435), + [aux_sym_cmd_identifier_token27] = ACTIONS(2435), + [aux_sym_cmd_identifier_token28] = ACTIONS(2435), + [aux_sym_cmd_identifier_token29] = ACTIONS(2435), + [aux_sym_cmd_identifier_token30] = ACTIONS(2435), + [aux_sym_cmd_identifier_token31] = ACTIONS(2435), + [aux_sym_cmd_identifier_token32] = ACTIONS(2435), + [aux_sym_cmd_identifier_token33] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2435), + [aux_sym_cmd_identifier_token35] = ACTIONS(2435), + [aux_sym_cmd_identifier_token36] = ACTIONS(2435), + [aux_sym_cmd_identifier_token37] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2435), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2435), + [anon_sym_export_DASHenv] = ACTIONS(2435), + [anon_sym_extern] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2435), + [anon_sym_DASH2] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_in2] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_make] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [anon_sym_do] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2435), + [anon_sym_catch] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_source] = ACTIONS(2435), + [anon_sym_source_DASHenv] = ACTIONS(2435), + [anon_sym_register] = ACTIONS(2435), + [anon_sym_hide] = ACTIONS(2435), + [anon_sym_hide_DASHenv] = ACTIONS(2435), + [anon_sym_overlay] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_PLUS2] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2435), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2435), + [aux_sym__val_number_decimal_token4] = ACTIONS(2435), + [aux_sym__val_number_token1] = ACTIONS(2435), + [aux_sym__val_number_token2] = ACTIONS(2435), + [aux_sym__val_number_token3] = ACTIONS(2435), + [aux_sym__val_number_token4] = ACTIONS(2435), + [aux_sym__val_number_token5] = ACTIONS(2435), + [aux_sym__val_number_token6] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [sym__entry_separator] = ACTIONS(2437), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2492), + [sym_raw_string_begin] = ACTIONS(2440), }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(2018), - [anon_sym_alias] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_let_DASHenv] = ACTIONS(2018), - [anon_sym_mut] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [aux_sym_cmd_identifier_token1] = ACTIONS(2018), - [aux_sym_cmd_identifier_token2] = ACTIONS(2018), - [aux_sym_cmd_identifier_token3] = ACTIONS(2018), - [aux_sym_cmd_identifier_token4] = ACTIONS(2018), - [aux_sym_cmd_identifier_token5] = ACTIONS(2018), - [aux_sym_cmd_identifier_token6] = ACTIONS(2018), - [aux_sym_cmd_identifier_token7] = ACTIONS(2018), - [aux_sym_cmd_identifier_token8] = ACTIONS(2018), - [aux_sym_cmd_identifier_token9] = ACTIONS(2018), - [aux_sym_cmd_identifier_token10] = ACTIONS(2018), - [aux_sym_cmd_identifier_token11] = ACTIONS(2018), - [aux_sym_cmd_identifier_token12] = ACTIONS(2018), - [aux_sym_cmd_identifier_token13] = ACTIONS(2018), - [aux_sym_cmd_identifier_token14] = ACTIONS(2018), - [aux_sym_cmd_identifier_token15] = ACTIONS(2018), - [aux_sym_cmd_identifier_token16] = ACTIONS(2018), - [aux_sym_cmd_identifier_token17] = ACTIONS(2018), - [aux_sym_cmd_identifier_token18] = ACTIONS(2018), - [aux_sym_cmd_identifier_token19] = ACTIONS(2018), - [aux_sym_cmd_identifier_token20] = ACTIONS(2018), - [aux_sym_cmd_identifier_token21] = ACTIONS(2018), - [aux_sym_cmd_identifier_token22] = ACTIONS(2018), - [aux_sym_cmd_identifier_token23] = ACTIONS(2018), - [aux_sym_cmd_identifier_token24] = ACTIONS(2018), - [aux_sym_cmd_identifier_token25] = ACTIONS(2018), - [aux_sym_cmd_identifier_token26] = ACTIONS(2018), - [aux_sym_cmd_identifier_token27] = ACTIONS(2018), - [aux_sym_cmd_identifier_token28] = ACTIONS(2018), - [aux_sym_cmd_identifier_token29] = ACTIONS(2018), - [aux_sym_cmd_identifier_token30] = ACTIONS(2018), - [aux_sym_cmd_identifier_token31] = ACTIONS(2018), - [aux_sym_cmd_identifier_token32] = ACTIONS(2018), - [aux_sym_cmd_identifier_token33] = ACTIONS(2018), - [aux_sym_cmd_identifier_token34] = ACTIONS(2018), - [aux_sym_cmd_identifier_token35] = ACTIONS(2018), - [aux_sym_cmd_identifier_token36] = ACTIONS(2018), - [aux_sym_cmd_identifier_token37] = ACTIONS(2018), - [aux_sym_cmd_identifier_token38] = ACTIONS(2018), - [aux_sym_cmd_identifier_token39] = ACTIONS(2018), - [aux_sym_cmd_identifier_token40] = ACTIONS(2018), - [anon_sym_def] = ACTIONS(2018), - [anon_sym_export_DASHenv] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_error] = ACTIONS(2018), - [anon_sym_DASH2] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_in2] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_make] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_source] = ACTIONS(2018), - [anon_sym_source_DASHenv] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_hide] = ACTIONS(2018), - [anon_sym_hide_DASHenv] = ACTIONS(2018), - [anon_sym_overlay] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_PLUS2] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), - [aux_sym__val_number_decimal_token1] = ACTIONS(2018), - [aux_sym__val_number_decimal_token2] = ACTIONS(2018), - [aux_sym__val_number_decimal_token3] = ACTIONS(2018), - [aux_sym__val_number_decimal_token4] = ACTIONS(2018), - [aux_sym__val_number_token1] = ACTIONS(2018), - [aux_sym__val_number_token2] = ACTIONS(2018), - [aux_sym__val_number_token3] = ACTIONS(2018), - [aux_sym__val_number_token4] = ACTIONS(2018), - [aux_sym__val_number_token5] = ACTIONS(2018), - [aux_sym__val_number_token6] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2018), - [sym__str_single_quotes] = ACTIONS(2018), - [sym__str_back_ticks] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), - [sym__entry_separator] = ACTIONS(2020), + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [597] = { + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(1950), + [anon_sym_alias] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_let_DASHenv] = ACTIONS(1950), + [anon_sym_mut] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [aux_sym_cmd_identifier_token1] = ACTIONS(1950), + [aux_sym_cmd_identifier_token2] = ACTIONS(1958), + [aux_sym_cmd_identifier_token3] = ACTIONS(1958), + [aux_sym_cmd_identifier_token4] = ACTIONS(1958), + [aux_sym_cmd_identifier_token5] = ACTIONS(1958), + [aux_sym_cmd_identifier_token6] = ACTIONS(1958), + [aux_sym_cmd_identifier_token7] = ACTIONS(1958), + [aux_sym_cmd_identifier_token8] = ACTIONS(1950), + [aux_sym_cmd_identifier_token9] = ACTIONS(1950), + [aux_sym_cmd_identifier_token10] = ACTIONS(1958), + [aux_sym_cmd_identifier_token11] = ACTIONS(1958), + [aux_sym_cmd_identifier_token12] = ACTIONS(1950), + [aux_sym_cmd_identifier_token13] = ACTIONS(1950), + [aux_sym_cmd_identifier_token14] = ACTIONS(1950), + [aux_sym_cmd_identifier_token15] = ACTIONS(1950), + [aux_sym_cmd_identifier_token16] = ACTIONS(1958), + [aux_sym_cmd_identifier_token17] = ACTIONS(1958), + [aux_sym_cmd_identifier_token18] = ACTIONS(1958), + [aux_sym_cmd_identifier_token19] = ACTIONS(1958), + [aux_sym_cmd_identifier_token20] = ACTIONS(1958), + [aux_sym_cmd_identifier_token21] = ACTIONS(1958), + [aux_sym_cmd_identifier_token22] = ACTIONS(1958), + [aux_sym_cmd_identifier_token23] = ACTIONS(1958), + [aux_sym_cmd_identifier_token24] = ACTIONS(1958), + [aux_sym_cmd_identifier_token25] = ACTIONS(1958), + [aux_sym_cmd_identifier_token26] = ACTIONS(1958), + [aux_sym_cmd_identifier_token27] = ACTIONS(1958), + [aux_sym_cmd_identifier_token28] = ACTIONS(1958), + [aux_sym_cmd_identifier_token29] = ACTIONS(1958), + [aux_sym_cmd_identifier_token30] = ACTIONS(1958), + [aux_sym_cmd_identifier_token31] = ACTIONS(1958), + [aux_sym_cmd_identifier_token32] = ACTIONS(1958), + [aux_sym_cmd_identifier_token33] = ACTIONS(1958), + [aux_sym_cmd_identifier_token34] = ACTIONS(1950), + [aux_sym_cmd_identifier_token35] = ACTIONS(1958), + [aux_sym_cmd_identifier_token36] = ACTIONS(1958), + [aux_sym_cmd_identifier_token37] = ACTIONS(1958), + [aux_sym_cmd_identifier_token38] = ACTIONS(1950), + [aux_sym_cmd_identifier_token39] = ACTIONS(1958), + [aux_sym_cmd_identifier_token40] = ACTIONS(1958), + [anon_sym_def] = ACTIONS(1950), + [anon_sym_export_DASHenv] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_module] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_error] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_in2] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_make] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_else] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1950), + [anon_sym_catch] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_source] = ACTIONS(1950), + [anon_sym_source_DASHenv] = ACTIONS(1950), + [anon_sym_register] = ACTIONS(1950), + [anon_sym_hide] = ACTIONS(1950), + [anon_sym_hide_DASHenv] = ACTIONS(1950), + [anon_sym_overlay] = ACTIONS(1950), + [anon_sym_as] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1958), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), + }, + [598] = { + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(2353), + [anon_sym_alias] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_let_DASHenv] = ACTIONS(2353), + [anon_sym_mut] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [aux_sym_cmd_identifier_token1] = ACTIONS(2353), + [aux_sym_cmd_identifier_token2] = ACTIONS(2353), + [aux_sym_cmd_identifier_token3] = ACTIONS(2353), + [aux_sym_cmd_identifier_token4] = ACTIONS(2353), + [aux_sym_cmd_identifier_token5] = ACTIONS(2353), + [aux_sym_cmd_identifier_token6] = ACTIONS(2353), + [aux_sym_cmd_identifier_token7] = ACTIONS(2353), + [aux_sym_cmd_identifier_token8] = ACTIONS(2353), + [aux_sym_cmd_identifier_token9] = ACTIONS(2353), + [aux_sym_cmd_identifier_token10] = ACTIONS(2353), + [aux_sym_cmd_identifier_token11] = ACTIONS(2353), + [aux_sym_cmd_identifier_token12] = ACTIONS(2353), + [aux_sym_cmd_identifier_token13] = ACTIONS(2353), + [aux_sym_cmd_identifier_token14] = ACTIONS(2353), + [aux_sym_cmd_identifier_token15] = ACTIONS(2353), + [aux_sym_cmd_identifier_token16] = ACTIONS(2353), + [aux_sym_cmd_identifier_token17] = ACTIONS(2353), + [aux_sym_cmd_identifier_token18] = ACTIONS(2353), + [aux_sym_cmd_identifier_token19] = ACTIONS(2353), + [aux_sym_cmd_identifier_token20] = ACTIONS(2353), + [aux_sym_cmd_identifier_token21] = ACTIONS(2353), + [aux_sym_cmd_identifier_token22] = ACTIONS(2353), + [aux_sym_cmd_identifier_token23] = ACTIONS(2353), + [aux_sym_cmd_identifier_token24] = ACTIONS(2353), + [aux_sym_cmd_identifier_token25] = ACTIONS(2353), + [aux_sym_cmd_identifier_token26] = ACTIONS(2353), + [aux_sym_cmd_identifier_token27] = ACTIONS(2353), + [aux_sym_cmd_identifier_token28] = ACTIONS(2353), + [aux_sym_cmd_identifier_token29] = ACTIONS(2353), + [aux_sym_cmd_identifier_token30] = ACTIONS(2353), + [aux_sym_cmd_identifier_token31] = ACTIONS(2353), + [aux_sym_cmd_identifier_token32] = ACTIONS(2353), + [aux_sym_cmd_identifier_token33] = ACTIONS(2353), + [aux_sym_cmd_identifier_token34] = ACTIONS(2353), + [aux_sym_cmd_identifier_token35] = ACTIONS(2353), + [aux_sym_cmd_identifier_token36] = ACTIONS(2353), + [aux_sym_cmd_identifier_token37] = ACTIONS(2353), + [aux_sym_cmd_identifier_token38] = ACTIONS(2353), + [aux_sym_cmd_identifier_token39] = ACTIONS(2353), + [aux_sym_cmd_identifier_token40] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2353), + [anon_sym_export_DASHenv] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2353), + [anon_sym_module] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_error] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_make] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_else] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_catch] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_source] = ACTIONS(2353), + [anon_sym_source_DASHenv] = ACTIONS(2353), + [anon_sym_register] = ACTIONS(2353), + [anon_sym_hide] = ACTIONS(2353), + [anon_sym_hide_DASHenv] = ACTIONS(2353), + [anon_sym_overlay] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2353), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2353), + [aux_sym__val_number_token5] = ACTIONS(2353), + [aux_sym__val_number_token6] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2020), + [sym_raw_string_begin] = ACTIONS(2355), }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [aux_sym_cmd_identifier_token37] = ACTIONS(2494), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2494), - [aux_sym_cmd_identifier_token40] = ACTIONS(2494), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in2] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2494), - [aux_sym__val_number_decimal_token3] = ACTIONS(2494), - [aux_sym__val_number_decimal_token4] = ACTIONS(2494), - [aux_sym__val_number_token1] = ACTIONS(2494), - [aux_sym__val_number_token2] = ACTIONS(2494), - [aux_sym__val_number_token3] = ACTIONS(2494), - [aux_sym__val_number_token4] = ACTIONS(2494), - [aux_sym__val_number_token5] = ACTIONS(2494), - [aux_sym__val_number_token6] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym__str_single_quotes] = ACTIONS(2494), - [sym__str_back_ticks] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), - [sym__entry_separator] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2496), + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), }, - [689] = { - [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_alias] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_let_DASHenv] = ACTIONS(2498), - [anon_sym_mut] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [aux_sym_cmd_identifier_token1] = ACTIONS(2498), - [aux_sym_cmd_identifier_token2] = ACTIONS(2498), - [aux_sym_cmd_identifier_token3] = ACTIONS(2498), - [aux_sym_cmd_identifier_token4] = ACTIONS(2498), - [aux_sym_cmd_identifier_token5] = ACTIONS(2498), - [aux_sym_cmd_identifier_token6] = ACTIONS(2498), - [aux_sym_cmd_identifier_token7] = ACTIONS(2498), - [aux_sym_cmd_identifier_token8] = ACTIONS(2498), - [aux_sym_cmd_identifier_token9] = ACTIONS(2498), - [aux_sym_cmd_identifier_token10] = ACTIONS(2498), - [aux_sym_cmd_identifier_token11] = ACTIONS(2498), - [aux_sym_cmd_identifier_token12] = ACTIONS(2498), - [aux_sym_cmd_identifier_token13] = ACTIONS(2498), - [aux_sym_cmd_identifier_token14] = ACTIONS(2498), - [aux_sym_cmd_identifier_token15] = ACTIONS(2498), - [aux_sym_cmd_identifier_token16] = ACTIONS(2498), - [aux_sym_cmd_identifier_token17] = ACTIONS(2498), - [aux_sym_cmd_identifier_token18] = ACTIONS(2498), - [aux_sym_cmd_identifier_token19] = ACTIONS(2498), - [aux_sym_cmd_identifier_token20] = ACTIONS(2498), - [aux_sym_cmd_identifier_token21] = ACTIONS(2498), - [aux_sym_cmd_identifier_token22] = ACTIONS(2498), - [aux_sym_cmd_identifier_token23] = ACTIONS(2498), - [aux_sym_cmd_identifier_token24] = ACTIONS(2498), - [aux_sym_cmd_identifier_token25] = ACTIONS(2498), - [aux_sym_cmd_identifier_token26] = ACTIONS(2498), - [aux_sym_cmd_identifier_token27] = ACTIONS(2498), - [aux_sym_cmd_identifier_token28] = ACTIONS(2498), - [aux_sym_cmd_identifier_token29] = ACTIONS(2498), - [aux_sym_cmd_identifier_token30] = ACTIONS(2498), - [aux_sym_cmd_identifier_token31] = ACTIONS(2498), - [aux_sym_cmd_identifier_token32] = ACTIONS(2498), - [aux_sym_cmd_identifier_token33] = ACTIONS(2498), - [aux_sym_cmd_identifier_token34] = ACTIONS(2498), - [aux_sym_cmd_identifier_token35] = ACTIONS(2498), - [aux_sym_cmd_identifier_token36] = ACTIONS(2498), - [aux_sym_cmd_identifier_token37] = ACTIONS(2498), - [aux_sym_cmd_identifier_token38] = ACTIONS(2498), - [aux_sym_cmd_identifier_token39] = ACTIONS(2498), - [aux_sym_cmd_identifier_token40] = ACTIONS(2498), - [anon_sym_def] = ACTIONS(2498), - [anon_sym_export_DASHenv] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_DOLLAR] = ACTIONS(2498), - [anon_sym_error] = ACTIONS(2498), - [anon_sym_DASH2] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_in2] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_make] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_catch] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_source] = ACTIONS(2498), - [anon_sym_source_DASHenv] = ACTIONS(2498), - [anon_sym_register] = ACTIONS(2498), - [anon_sym_hide] = ACTIONS(2498), - [anon_sym_hide_DASHenv] = ACTIONS(2498), - [anon_sym_overlay] = ACTIONS(2498), - [anon_sym_as] = ACTIONS(2498), - [anon_sym_PLUS2] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), - [aux_sym__val_number_decimal_token1] = ACTIONS(2498), - [aux_sym__val_number_decimal_token2] = ACTIONS(2498), - [aux_sym__val_number_decimal_token3] = ACTIONS(2498), - [aux_sym__val_number_decimal_token4] = ACTIONS(2498), - [aux_sym__val_number_token1] = ACTIONS(2498), - [aux_sym__val_number_token2] = ACTIONS(2498), - [aux_sym__val_number_token3] = ACTIONS(2498), - [aux_sym__val_number_token4] = ACTIONS(2498), - [aux_sym__val_number_token5] = ACTIONS(2498), - [aux_sym__val_number_token6] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym__str_single_quotes] = ACTIONS(2498), - [sym__str_back_ticks] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), - [sym__entry_separator] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2500), + [600] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2306), + [aux_sym_cmd_identifier_token3] = ACTIONS(2306), + [aux_sym_cmd_identifier_token4] = ACTIONS(2306), + [aux_sym_cmd_identifier_token5] = ACTIONS(2306), + [aux_sym_cmd_identifier_token6] = ACTIONS(2306), + [aux_sym_cmd_identifier_token7] = ACTIONS(2306), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2306), + [aux_sym_cmd_identifier_token11] = ACTIONS(2306), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2306), + [aux_sym_cmd_identifier_token17] = ACTIONS(2306), + [aux_sym_cmd_identifier_token18] = ACTIONS(2306), + [aux_sym_cmd_identifier_token19] = ACTIONS(2306), + [aux_sym_cmd_identifier_token20] = ACTIONS(2306), + [aux_sym_cmd_identifier_token21] = ACTIONS(2306), + [aux_sym_cmd_identifier_token22] = ACTIONS(2306), + [aux_sym_cmd_identifier_token23] = ACTIONS(2306), + [aux_sym_cmd_identifier_token24] = ACTIONS(2306), + [aux_sym_cmd_identifier_token25] = ACTIONS(2306), + [aux_sym_cmd_identifier_token26] = ACTIONS(2306), + [aux_sym_cmd_identifier_token27] = ACTIONS(2306), + [aux_sym_cmd_identifier_token28] = ACTIONS(2306), + [aux_sym_cmd_identifier_token29] = ACTIONS(2306), + [aux_sym_cmd_identifier_token30] = ACTIONS(2306), + [aux_sym_cmd_identifier_token31] = ACTIONS(2306), + [aux_sym_cmd_identifier_token32] = ACTIONS(2306), + [aux_sym_cmd_identifier_token33] = ACTIONS(2306), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2306), + [aux_sym_cmd_identifier_token36] = ACTIONS(2306), + [aux_sym_cmd_identifier_token37] = ACTIONS(2306), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2306), + [aux_sym_cmd_identifier_token40] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2306), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2306), + [aux_sym__val_number_decimal_token4] = ACTIONS(2306), + [aux_sym__val_number_token1] = ACTIONS(2306), + [aux_sym__val_number_token2] = ACTIONS(2306), + [aux_sym__val_number_token3] = ACTIONS(2306), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2306), + [sym__str_single_quotes] = ACTIONS(2306), + [sym__str_back_ticks] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2306), }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_alias] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_let_DASHenv] = ACTIONS(2502), - [anon_sym_mut] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [aux_sym_cmd_identifier_token1] = ACTIONS(2502), - [aux_sym_cmd_identifier_token2] = ACTIONS(2502), - [aux_sym_cmd_identifier_token3] = ACTIONS(2502), - [aux_sym_cmd_identifier_token4] = ACTIONS(2502), - [aux_sym_cmd_identifier_token5] = ACTIONS(2502), - [aux_sym_cmd_identifier_token6] = ACTIONS(2502), - [aux_sym_cmd_identifier_token7] = ACTIONS(2502), - [aux_sym_cmd_identifier_token8] = ACTIONS(2502), - [aux_sym_cmd_identifier_token9] = ACTIONS(2502), - [aux_sym_cmd_identifier_token10] = ACTIONS(2502), - [aux_sym_cmd_identifier_token11] = ACTIONS(2502), - [aux_sym_cmd_identifier_token12] = ACTIONS(2502), - [aux_sym_cmd_identifier_token13] = ACTIONS(2502), - [aux_sym_cmd_identifier_token14] = ACTIONS(2502), - [aux_sym_cmd_identifier_token15] = ACTIONS(2502), - [aux_sym_cmd_identifier_token16] = ACTIONS(2502), - [aux_sym_cmd_identifier_token17] = ACTIONS(2502), - [aux_sym_cmd_identifier_token18] = ACTIONS(2502), - [aux_sym_cmd_identifier_token19] = ACTIONS(2502), - [aux_sym_cmd_identifier_token20] = ACTIONS(2502), - [aux_sym_cmd_identifier_token21] = ACTIONS(2502), - [aux_sym_cmd_identifier_token22] = ACTIONS(2502), - [aux_sym_cmd_identifier_token23] = ACTIONS(2502), - [aux_sym_cmd_identifier_token24] = ACTIONS(2502), - [aux_sym_cmd_identifier_token25] = ACTIONS(2502), - [aux_sym_cmd_identifier_token26] = ACTIONS(2502), - [aux_sym_cmd_identifier_token27] = ACTIONS(2502), - [aux_sym_cmd_identifier_token28] = ACTIONS(2502), - [aux_sym_cmd_identifier_token29] = ACTIONS(2502), - [aux_sym_cmd_identifier_token30] = ACTIONS(2502), - [aux_sym_cmd_identifier_token31] = ACTIONS(2502), - [aux_sym_cmd_identifier_token32] = ACTIONS(2502), - [aux_sym_cmd_identifier_token33] = ACTIONS(2502), - [aux_sym_cmd_identifier_token34] = ACTIONS(2502), - [aux_sym_cmd_identifier_token35] = ACTIONS(2502), - [aux_sym_cmd_identifier_token36] = ACTIONS(2502), - [aux_sym_cmd_identifier_token37] = ACTIONS(2502), - [aux_sym_cmd_identifier_token38] = ACTIONS(2502), - [aux_sym_cmd_identifier_token39] = ACTIONS(2502), - [aux_sym_cmd_identifier_token40] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_export_DASHenv] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2502), - [anon_sym_error] = ACTIONS(2502), - [anon_sym_DASH2] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_in2] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_make] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_catch] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_source] = ACTIONS(2502), - [anon_sym_source_DASHenv] = ACTIONS(2502), - [anon_sym_register] = ACTIONS(2502), - [anon_sym_hide] = ACTIONS(2502), - [anon_sym_hide_DASHenv] = ACTIONS(2502), - [anon_sym_overlay] = ACTIONS(2502), - [anon_sym_as] = ACTIONS(2502), - [anon_sym_PLUS2] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2502), - [aux_sym__val_number_decimal_token2] = ACTIONS(2502), - [aux_sym__val_number_decimal_token3] = ACTIONS(2502), - [aux_sym__val_number_decimal_token4] = ACTIONS(2502), - [aux_sym__val_number_token1] = ACTIONS(2502), - [aux_sym__val_number_token2] = ACTIONS(2502), - [aux_sym__val_number_token3] = ACTIONS(2502), - [aux_sym__val_number_token4] = ACTIONS(2502), - [aux_sym__val_number_token5] = ACTIONS(2502), - [aux_sym__val_number_token6] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym__str_single_quotes] = ACTIONS(2502), - [sym__str_back_ticks] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), - [sym__entry_separator] = ACTIONS(2504), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1518), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1518), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [aux_sym_cmd_identifier_token37] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), + [sym__entry_separator] = ACTIONS(1520), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2504), + [sym_raw_string_begin] = ACTIONS(1520), }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_alias] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_let_DASHenv] = ACTIONS(2506), - [anon_sym_mut] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [aux_sym_cmd_identifier_token1] = ACTIONS(2506), - [aux_sym_cmd_identifier_token2] = ACTIONS(2506), - [aux_sym_cmd_identifier_token3] = ACTIONS(2506), - [aux_sym_cmd_identifier_token4] = ACTIONS(2506), - [aux_sym_cmd_identifier_token5] = ACTIONS(2506), - [aux_sym_cmd_identifier_token6] = ACTIONS(2506), - [aux_sym_cmd_identifier_token7] = ACTIONS(2506), - [aux_sym_cmd_identifier_token8] = ACTIONS(2506), - [aux_sym_cmd_identifier_token9] = ACTIONS(2506), - [aux_sym_cmd_identifier_token10] = ACTIONS(2506), - [aux_sym_cmd_identifier_token11] = ACTIONS(2506), - [aux_sym_cmd_identifier_token12] = ACTIONS(2506), - [aux_sym_cmd_identifier_token13] = ACTIONS(2506), - [aux_sym_cmd_identifier_token14] = ACTIONS(2506), - [aux_sym_cmd_identifier_token15] = ACTIONS(2506), - [aux_sym_cmd_identifier_token16] = ACTIONS(2506), - [aux_sym_cmd_identifier_token17] = ACTIONS(2506), - [aux_sym_cmd_identifier_token18] = ACTIONS(2506), - [aux_sym_cmd_identifier_token19] = ACTIONS(2506), - [aux_sym_cmd_identifier_token20] = ACTIONS(2506), - [aux_sym_cmd_identifier_token21] = ACTIONS(2506), - [aux_sym_cmd_identifier_token22] = ACTIONS(2506), - [aux_sym_cmd_identifier_token23] = ACTIONS(2506), - [aux_sym_cmd_identifier_token24] = ACTIONS(2506), - [aux_sym_cmd_identifier_token25] = ACTIONS(2506), - [aux_sym_cmd_identifier_token26] = ACTIONS(2506), - [aux_sym_cmd_identifier_token27] = ACTIONS(2506), - [aux_sym_cmd_identifier_token28] = ACTIONS(2506), - [aux_sym_cmd_identifier_token29] = ACTIONS(2506), - [aux_sym_cmd_identifier_token30] = ACTIONS(2506), - [aux_sym_cmd_identifier_token31] = ACTIONS(2506), - [aux_sym_cmd_identifier_token32] = ACTIONS(2506), - [aux_sym_cmd_identifier_token33] = ACTIONS(2506), - [aux_sym_cmd_identifier_token34] = ACTIONS(2506), - [aux_sym_cmd_identifier_token35] = ACTIONS(2506), - [aux_sym_cmd_identifier_token36] = ACTIONS(2506), - [aux_sym_cmd_identifier_token37] = ACTIONS(2506), - [aux_sym_cmd_identifier_token38] = ACTIONS(2506), - [aux_sym_cmd_identifier_token39] = ACTIONS(2506), - [aux_sym_cmd_identifier_token40] = ACTIONS(2506), - [anon_sym_def] = ACTIONS(2506), - [anon_sym_export_DASHenv] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_error] = ACTIONS(2506), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_in2] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_make] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_catch] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_source] = ACTIONS(2506), - [anon_sym_source_DASHenv] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_hide] = ACTIONS(2506), - [anon_sym_hide_DASHenv] = ACTIONS(2506), - [anon_sym_overlay] = ACTIONS(2506), - [anon_sym_as] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), - [aux_sym__val_number_decimal_token1] = ACTIONS(2506), - [aux_sym__val_number_decimal_token2] = ACTIONS(2506), - [aux_sym__val_number_decimal_token3] = ACTIONS(2506), - [aux_sym__val_number_decimal_token4] = ACTIONS(2506), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2506), - [aux_sym__val_number_token5] = ACTIONS(2506), - [aux_sym__val_number_token6] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym__str_single_quotes] = ACTIONS(2506), - [sym__str_back_ticks] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), - [sym__entry_separator] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2508), + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_alias] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_let_DASHenv] = ACTIONS(1940), + [anon_sym_mut] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [aux_sym_cmd_identifier_token1] = ACTIONS(1940), + [aux_sym_cmd_identifier_token2] = ACTIONS(1948), + [aux_sym_cmd_identifier_token3] = ACTIONS(1948), + [aux_sym_cmd_identifier_token4] = ACTIONS(1948), + [aux_sym_cmd_identifier_token5] = ACTIONS(1948), + [aux_sym_cmd_identifier_token6] = ACTIONS(1948), + [aux_sym_cmd_identifier_token7] = ACTIONS(1948), + [aux_sym_cmd_identifier_token8] = ACTIONS(1940), + [aux_sym_cmd_identifier_token9] = ACTIONS(1940), + [aux_sym_cmd_identifier_token10] = ACTIONS(1948), + [aux_sym_cmd_identifier_token11] = ACTIONS(1948), + [aux_sym_cmd_identifier_token12] = ACTIONS(1940), + [aux_sym_cmd_identifier_token13] = ACTIONS(1940), + [aux_sym_cmd_identifier_token14] = ACTIONS(1940), + [aux_sym_cmd_identifier_token15] = ACTIONS(1940), + [aux_sym_cmd_identifier_token16] = ACTIONS(1948), + [aux_sym_cmd_identifier_token17] = ACTIONS(1948), + [aux_sym_cmd_identifier_token18] = ACTIONS(1948), + [aux_sym_cmd_identifier_token19] = ACTIONS(1948), + [aux_sym_cmd_identifier_token20] = ACTIONS(1948), + [aux_sym_cmd_identifier_token21] = ACTIONS(1948), + [aux_sym_cmd_identifier_token22] = ACTIONS(1948), + [aux_sym_cmd_identifier_token23] = ACTIONS(1948), + [aux_sym_cmd_identifier_token24] = ACTIONS(1948), + [aux_sym_cmd_identifier_token25] = ACTIONS(1948), + [aux_sym_cmd_identifier_token26] = ACTIONS(1948), + [aux_sym_cmd_identifier_token27] = ACTIONS(1948), + [aux_sym_cmd_identifier_token28] = ACTIONS(1948), + [aux_sym_cmd_identifier_token29] = ACTIONS(1948), + [aux_sym_cmd_identifier_token30] = ACTIONS(1948), + [aux_sym_cmd_identifier_token31] = ACTIONS(1948), + [aux_sym_cmd_identifier_token32] = ACTIONS(1948), + [aux_sym_cmd_identifier_token33] = ACTIONS(1948), + [aux_sym_cmd_identifier_token34] = ACTIONS(1940), + [aux_sym_cmd_identifier_token35] = ACTIONS(1948), + [aux_sym_cmd_identifier_token36] = ACTIONS(1948), + [aux_sym_cmd_identifier_token37] = ACTIONS(1948), + [aux_sym_cmd_identifier_token38] = ACTIONS(1940), + [aux_sym_cmd_identifier_token39] = ACTIONS(1948), + [aux_sym_cmd_identifier_token40] = ACTIONS(1948), + [anon_sym_def] = ACTIONS(1940), + [anon_sym_export_DASHenv] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_error] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_in2] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_make] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_catch] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_source] = ACTIONS(1940), + [anon_sym_source_DASHenv] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_hide] = ACTIONS(1940), + [anon_sym_hide_DASHenv] = ACTIONS(1940), + [anon_sym_overlay] = ACTIONS(1940), + [anon_sym_as] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1940), + [aux_sym__val_number_token5] = ACTIONS(1940), + [aux_sym__val_number_token6] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), }, - [692] = { - [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_alias] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_let_DASHenv] = ACTIONS(2510), - [anon_sym_mut] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [aux_sym_cmd_identifier_token1] = ACTIONS(2510), - [aux_sym_cmd_identifier_token2] = ACTIONS(2510), - [aux_sym_cmd_identifier_token3] = ACTIONS(2510), - [aux_sym_cmd_identifier_token4] = ACTIONS(2510), - [aux_sym_cmd_identifier_token5] = ACTIONS(2510), - [aux_sym_cmd_identifier_token6] = ACTIONS(2510), - [aux_sym_cmd_identifier_token7] = ACTIONS(2510), - [aux_sym_cmd_identifier_token8] = ACTIONS(2510), - [aux_sym_cmd_identifier_token9] = ACTIONS(2510), - [aux_sym_cmd_identifier_token10] = ACTIONS(2510), - [aux_sym_cmd_identifier_token11] = ACTIONS(2510), - [aux_sym_cmd_identifier_token12] = ACTIONS(2510), - [aux_sym_cmd_identifier_token13] = ACTIONS(2510), - [aux_sym_cmd_identifier_token14] = ACTIONS(2510), - [aux_sym_cmd_identifier_token15] = ACTIONS(2510), - [aux_sym_cmd_identifier_token16] = ACTIONS(2510), - [aux_sym_cmd_identifier_token17] = ACTIONS(2510), - [aux_sym_cmd_identifier_token18] = ACTIONS(2510), - [aux_sym_cmd_identifier_token19] = ACTIONS(2510), - [aux_sym_cmd_identifier_token20] = ACTIONS(2510), - [aux_sym_cmd_identifier_token21] = ACTIONS(2510), - [aux_sym_cmd_identifier_token22] = ACTIONS(2510), - [aux_sym_cmd_identifier_token23] = ACTIONS(2510), - [aux_sym_cmd_identifier_token24] = ACTIONS(2510), - [aux_sym_cmd_identifier_token25] = ACTIONS(2510), - [aux_sym_cmd_identifier_token26] = ACTIONS(2510), - [aux_sym_cmd_identifier_token27] = ACTIONS(2510), - [aux_sym_cmd_identifier_token28] = ACTIONS(2510), - [aux_sym_cmd_identifier_token29] = ACTIONS(2510), - [aux_sym_cmd_identifier_token30] = ACTIONS(2510), - [aux_sym_cmd_identifier_token31] = ACTIONS(2510), - [aux_sym_cmd_identifier_token32] = ACTIONS(2510), - [aux_sym_cmd_identifier_token33] = ACTIONS(2510), - [aux_sym_cmd_identifier_token34] = ACTIONS(2510), - [aux_sym_cmd_identifier_token35] = ACTIONS(2510), - [aux_sym_cmd_identifier_token36] = ACTIONS(2510), - [aux_sym_cmd_identifier_token37] = ACTIONS(2510), - [aux_sym_cmd_identifier_token38] = ACTIONS(2510), - [aux_sym_cmd_identifier_token39] = ACTIONS(2510), - [aux_sym_cmd_identifier_token40] = ACTIONS(2510), - [anon_sym_def] = ACTIONS(2510), - [anon_sym_export_DASHenv] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_DOLLAR] = ACTIONS(2510), - [anon_sym_error] = ACTIONS(2510), - [anon_sym_DASH2] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_in2] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_make] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_catch] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_source] = ACTIONS(2510), - [anon_sym_source_DASHenv] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_hide] = ACTIONS(2510), - [anon_sym_hide_DASHenv] = ACTIONS(2510), - [anon_sym_overlay] = ACTIONS(2510), - [anon_sym_as] = ACTIONS(2510), - [anon_sym_PLUS2] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), - [aux_sym__val_number_decimal_token1] = ACTIONS(2510), - [aux_sym__val_number_decimal_token2] = ACTIONS(2510), - [aux_sym__val_number_decimal_token3] = ACTIONS(2510), - [aux_sym__val_number_decimal_token4] = ACTIONS(2510), - [aux_sym__val_number_token1] = ACTIONS(2510), - [aux_sym__val_number_token2] = ACTIONS(2510), - [aux_sym__val_number_token3] = ACTIONS(2510), - [aux_sym__val_number_token4] = ACTIONS(2510), - [aux_sym__val_number_token5] = ACTIONS(2510), - [aux_sym__val_number_token6] = ACTIONS(2510), - [anon_sym_DQUOTE] = ACTIONS(2510), - [sym__str_single_quotes] = ACTIONS(2510), - [sym__str_back_ticks] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), - [sym__entry_separator] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2512), + [603] = { + [sym__expr_parenthesized_immediate] = STATE(7477), + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [aux_sym_cmd_identifier_token6] = ACTIONS(2310), + [aux_sym_cmd_identifier_token7] = ACTIONS(2310), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2310), + [aux_sym_cmd_identifier_token11] = ACTIONS(2310), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2310), + [aux_sym_cmd_identifier_token17] = ACTIONS(2310), + [aux_sym_cmd_identifier_token18] = ACTIONS(2310), + [aux_sym_cmd_identifier_token19] = ACTIONS(2310), + [aux_sym_cmd_identifier_token20] = ACTIONS(2310), + [aux_sym_cmd_identifier_token21] = ACTIONS(2310), + [aux_sym_cmd_identifier_token22] = ACTIONS(2310), + [aux_sym_cmd_identifier_token23] = ACTIONS(2310), + [aux_sym_cmd_identifier_token24] = ACTIONS(2310), + [aux_sym_cmd_identifier_token25] = ACTIONS(2310), + [aux_sym_cmd_identifier_token26] = ACTIONS(2310), + [aux_sym_cmd_identifier_token27] = ACTIONS(2310), + [aux_sym_cmd_identifier_token28] = ACTIONS(2310), + [aux_sym_cmd_identifier_token29] = ACTIONS(2310), + [aux_sym_cmd_identifier_token30] = ACTIONS(2310), + [aux_sym_cmd_identifier_token31] = ACTIONS(2310), + [aux_sym_cmd_identifier_token32] = ACTIONS(2310), + [aux_sym_cmd_identifier_token33] = ACTIONS(2310), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2310), + [aux_sym_cmd_identifier_token36] = ACTIONS(2310), + [aux_sym_cmd_identifier_token37] = ACTIONS(2310), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2310), + [aux_sym_cmd_identifier_token40] = ACTIONS(2310), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [sym__str_single_quotes] = ACTIONS(2310), + [sym__str_back_ticks] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2310), }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_alias] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_let_DASHenv] = ACTIONS(2514), - [anon_sym_mut] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [aux_sym_cmd_identifier_token1] = ACTIONS(2514), - [aux_sym_cmd_identifier_token2] = ACTIONS(2514), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [aux_sym_cmd_identifier_token6] = ACTIONS(2514), - [aux_sym_cmd_identifier_token7] = ACTIONS(2514), - [aux_sym_cmd_identifier_token8] = ACTIONS(2514), - [aux_sym_cmd_identifier_token9] = ACTIONS(2514), - [aux_sym_cmd_identifier_token10] = ACTIONS(2514), - [aux_sym_cmd_identifier_token11] = ACTIONS(2514), - [aux_sym_cmd_identifier_token12] = ACTIONS(2514), - [aux_sym_cmd_identifier_token13] = ACTIONS(2514), - [aux_sym_cmd_identifier_token14] = ACTIONS(2514), - [aux_sym_cmd_identifier_token15] = ACTIONS(2514), - [aux_sym_cmd_identifier_token16] = ACTIONS(2514), - [aux_sym_cmd_identifier_token17] = ACTIONS(2514), - [aux_sym_cmd_identifier_token18] = ACTIONS(2514), - [aux_sym_cmd_identifier_token19] = ACTIONS(2514), - [aux_sym_cmd_identifier_token20] = ACTIONS(2514), - [aux_sym_cmd_identifier_token21] = ACTIONS(2514), - [aux_sym_cmd_identifier_token22] = ACTIONS(2514), - [aux_sym_cmd_identifier_token23] = ACTIONS(2514), - [aux_sym_cmd_identifier_token24] = ACTIONS(2514), - [aux_sym_cmd_identifier_token25] = ACTIONS(2514), - [aux_sym_cmd_identifier_token26] = ACTIONS(2514), - [aux_sym_cmd_identifier_token27] = ACTIONS(2514), - [aux_sym_cmd_identifier_token28] = ACTIONS(2514), - [aux_sym_cmd_identifier_token29] = ACTIONS(2514), - [aux_sym_cmd_identifier_token30] = ACTIONS(2514), - [aux_sym_cmd_identifier_token31] = ACTIONS(2514), - [aux_sym_cmd_identifier_token32] = ACTIONS(2514), - [aux_sym_cmd_identifier_token33] = ACTIONS(2514), - [aux_sym_cmd_identifier_token34] = ACTIONS(2514), - [aux_sym_cmd_identifier_token35] = ACTIONS(2514), - [aux_sym_cmd_identifier_token36] = ACTIONS(2514), - [aux_sym_cmd_identifier_token37] = ACTIONS(2514), - [aux_sym_cmd_identifier_token38] = ACTIONS(2514), - [aux_sym_cmd_identifier_token39] = ACTIONS(2514), - [aux_sym_cmd_identifier_token40] = ACTIONS(2514), - [anon_sym_def] = ACTIONS(2514), - [anon_sym_export_DASHenv] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym_module] = ACTIONS(2514), - [anon_sym_use] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_DOLLAR] = ACTIONS(2514), - [anon_sym_error] = ACTIONS(2514), - [anon_sym_DASH2] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_in2] = ACTIONS(2514), - [anon_sym_loop] = ACTIONS(2514), - [anon_sym_make] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_match] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_catch] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_source] = ACTIONS(2514), - [anon_sym_source_DASHenv] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_hide] = ACTIONS(2514), - [anon_sym_hide_DASHenv] = ACTIONS(2514), - [anon_sym_overlay] = ACTIONS(2514), - [anon_sym_as] = ACTIONS(2514), - [anon_sym_PLUS2] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2514), - [aux_sym__val_number_decimal_token1] = ACTIONS(2514), - [aux_sym__val_number_decimal_token2] = ACTIONS(2514), - [aux_sym__val_number_decimal_token3] = ACTIONS(2514), - [aux_sym__val_number_decimal_token4] = ACTIONS(2514), - [aux_sym__val_number_token1] = ACTIONS(2514), - [aux_sym__val_number_token2] = ACTIONS(2514), - [aux_sym__val_number_token3] = ACTIONS(2514), - [aux_sym__val_number_token4] = ACTIONS(2514), - [aux_sym__val_number_token5] = ACTIONS(2514), - [aux_sym__val_number_token6] = ACTIONS(2514), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2514), - [sym__str_back_ticks] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2514), - [sym__entry_separator] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2516), + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_alias] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_let_DASHenv] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [aux_sym_cmd_identifier_token1] = ACTIONS(1500), + [aux_sym_cmd_identifier_token2] = ACTIONS(1502), + [aux_sym_cmd_identifier_token3] = ACTIONS(1502), + [aux_sym_cmd_identifier_token4] = ACTIONS(1502), + [aux_sym_cmd_identifier_token5] = ACTIONS(1502), + [aux_sym_cmd_identifier_token6] = ACTIONS(1502), + [aux_sym_cmd_identifier_token7] = ACTIONS(1502), + [aux_sym_cmd_identifier_token8] = ACTIONS(1500), + [aux_sym_cmd_identifier_token9] = ACTIONS(1500), + [aux_sym_cmd_identifier_token10] = ACTIONS(1502), + [aux_sym_cmd_identifier_token11] = ACTIONS(1502), + [aux_sym_cmd_identifier_token12] = ACTIONS(1500), + [aux_sym_cmd_identifier_token13] = ACTIONS(1500), + [aux_sym_cmd_identifier_token14] = ACTIONS(1500), + [aux_sym_cmd_identifier_token15] = ACTIONS(1500), + [aux_sym_cmd_identifier_token16] = ACTIONS(1502), + [aux_sym_cmd_identifier_token17] = ACTIONS(1502), + [aux_sym_cmd_identifier_token18] = ACTIONS(1502), + [aux_sym_cmd_identifier_token19] = ACTIONS(1502), + [aux_sym_cmd_identifier_token20] = ACTIONS(1502), + [aux_sym_cmd_identifier_token21] = ACTIONS(1502), + [aux_sym_cmd_identifier_token22] = ACTIONS(1502), + [aux_sym_cmd_identifier_token23] = ACTIONS(1502), + [aux_sym_cmd_identifier_token24] = ACTIONS(1502), + [aux_sym_cmd_identifier_token25] = ACTIONS(1502), + [aux_sym_cmd_identifier_token26] = ACTIONS(1502), + [aux_sym_cmd_identifier_token27] = ACTIONS(1502), + [aux_sym_cmd_identifier_token28] = ACTIONS(1502), + [aux_sym_cmd_identifier_token29] = ACTIONS(1502), + [aux_sym_cmd_identifier_token30] = ACTIONS(1502), + [aux_sym_cmd_identifier_token31] = ACTIONS(1502), + [aux_sym_cmd_identifier_token32] = ACTIONS(1502), + [aux_sym_cmd_identifier_token33] = ACTIONS(1502), + [aux_sym_cmd_identifier_token34] = ACTIONS(1500), + [aux_sym_cmd_identifier_token35] = ACTIONS(1502), + [aux_sym_cmd_identifier_token36] = ACTIONS(1502), + [aux_sym_cmd_identifier_token37] = ACTIONS(1502), + [aux_sym_cmd_identifier_token38] = ACTIONS(1500), + [aux_sym_cmd_identifier_token39] = ACTIONS(1502), + [aux_sym_cmd_identifier_token40] = ACTIONS(1502), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_export_DASHenv] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [anon_sym_error] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_make] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_catch] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_source] = ACTIONS(1500), + [anon_sym_source_DASHenv] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_hide] = ACTIONS(1500), + [anon_sym_hide_DASHenv] = ACTIONS(1500), + [anon_sym_overlay] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1500), + [aux_sym__val_number_token5] = ACTIONS(1500), + [aux_sym__val_number_token6] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), + [605] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [aux_sym_cmd_identifier_token1] = ACTIONS(2391), + [aux_sym_cmd_identifier_token2] = ACTIONS(2393), + [aux_sym_cmd_identifier_token3] = ACTIONS(2393), + [aux_sym_cmd_identifier_token4] = ACTIONS(2393), + [aux_sym_cmd_identifier_token5] = ACTIONS(2393), + [aux_sym_cmd_identifier_token6] = ACTIONS(2393), + [aux_sym_cmd_identifier_token7] = ACTIONS(2393), + [aux_sym_cmd_identifier_token8] = ACTIONS(2391), + [aux_sym_cmd_identifier_token9] = ACTIONS(2391), + [aux_sym_cmd_identifier_token10] = ACTIONS(2393), + [aux_sym_cmd_identifier_token11] = ACTIONS(2393), + [aux_sym_cmd_identifier_token12] = ACTIONS(2391), + [aux_sym_cmd_identifier_token13] = ACTIONS(2391), + [aux_sym_cmd_identifier_token14] = ACTIONS(2391), + [aux_sym_cmd_identifier_token15] = ACTIONS(2391), + [aux_sym_cmd_identifier_token16] = ACTIONS(2393), + [aux_sym_cmd_identifier_token17] = ACTIONS(2393), + [aux_sym_cmd_identifier_token18] = ACTIONS(2393), + [aux_sym_cmd_identifier_token19] = ACTIONS(2393), + [aux_sym_cmd_identifier_token20] = ACTIONS(2393), + [aux_sym_cmd_identifier_token21] = ACTIONS(2393), + [aux_sym_cmd_identifier_token22] = ACTIONS(2393), + [aux_sym_cmd_identifier_token23] = ACTIONS(2393), + [aux_sym_cmd_identifier_token24] = ACTIONS(2393), + [aux_sym_cmd_identifier_token25] = ACTIONS(2393), + [aux_sym_cmd_identifier_token26] = ACTIONS(2393), + [aux_sym_cmd_identifier_token27] = ACTIONS(2393), + [aux_sym_cmd_identifier_token28] = ACTIONS(2393), + [aux_sym_cmd_identifier_token29] = ACTIONS(2393), + [aux_sym_cmd_identifier_token30] = ACTIONS(2393), + [aux_sym_cmd_identifier_token31] = ACTIONS(2393), + [aux_sym_cmd_identifier_token32] = ACTIONS(2393), + [aux_sym_cmd_identifier_token33] = ACTIONS(2393), + [aux_sym_cmd_identifier_token34] = ACTIONS(2391), + [aux_sym_cmd_identifier_token35] = ACTIONS(2393), + [aux_sym_cmd_identifier_token36] = ACTIONS(2393), + [aux_sym_cmd_identifier_token37] = ACTIONS(2393), + [aux_sym_cmd_identifier_token38] = ACTIONS(2391), + [aux_sym_cmd_identifier_token39] = ACTIONS(2393), + [aux_sym_cmd_identifier_token40] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_in2] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_make] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_else] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_catch] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2391), + [aux_sym__val_number_decimal_token2] = ACTIONS(2393), + [aux_sym__val_number_decimal_token3] = ACTIONS(2393), + [aux_sym__val_number_decimal_token4] = ACTIONS(2393), + [aux_sym__val_number_token1] = ACTIONS(2393), + [aux_sym__val_number_token2] = ACTIONS(2393), + [aux_sym__val_number_token3] = ACTIONS(2393), + [aux_sym__val_number_token4] = ACTIONS(2391), + [aux_sym__val_number_token5] = ACTIONS(2391), + [aux_sym__val_number_token6] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2393), + [sym__str_single_quotes] = ACTIONS(2393), + [sym__str_back_ticks] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2393), }, - [695] = { - [sym_comment] = STATE(695), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2381), - [aux_sym_cmd_identifier_token3] = ACTIONS(2381), - [aux_sym_cmd_identifier_token4] = ACTIONS(2381), - [aux_sym_cmd_identifier_token5] = ACTIONS(2381), - [aux_sym_cmd_identifier_token6] = ACTIONS(2381), - [aux_sym_cmd_identifier_token7] = ACTIONS(2381), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2381), - [aux_sym_cmd_identifier_token11] = ACTIONS(2381), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2381), - [aux_sym_cmd_identifier_token17] = ACTIONS(2381), - [aux_sym_cmd_identifier_token18] = ACTIONS(2381), - [aux_sym_cmd_identifier_token19] = ACTIONS(2381), - [aux_sym_cmd_identifier_token20] = ACTIONS(2381), - [aux_sym_cmd_identifier_token21] = ACTIONS(2381), - [aux_sym_cmd_identifier_token22] = ACTIONS(2381), - [aux_sym_cmd_identifier_token23] = ACTIONS(2381), - [aux_sym_cmd_identifier_token24] = ACTIONS(2381), - [aux_sym_cmd_identifier_token25] = ACTIONS(2381), - [aux_sym_cmd_identifier_token26] = ACTIONS(2381), - [aux_sym_cmd_identifier_token27] = ACTIONS(2381), - [aux_sym_cmd_identifier_token28] = ACTIONS(2381), - [aux_sym_cmd_identifier_token29] = ACTIONS(2381), - [aux_sym_cmd_identifier_token30] = ACTIONS(2381), - [aux_sym_cmd_identifier_token31] = ACTIONS(2381), - [aux_sym_cmd_identifier_token32] = ACTIONS(2381), - [aux_sym_cmd_identifier_token33] = ACTIONS(2381), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2381), - [aux_sym_cmd_identifier_token36] = ACTIONS(2381), - [aux_sym_cmd_identifier_token37] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in2] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [aux_sym__val_number_token4] = ACTIONS(2379), - [aux_sym__val_number_token5] = ACTIONS(2379), - [aux_sym__val_number_token6] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2381), + [606] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2395), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_let_DASHenv] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2395), + [aux_sym_cmd_identifier_token2] = ACTIONS(2397), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [aux_sym_cmd_identifier_token6] = ACTIONS(2397), + [aux_sym_cmd_identifier_token7] = ACTIONS(2397), + [aux_sym_cmd_identifier_token8] = ACTIONS(2395), + [aux_sym_cmd_identifier_token9] = ACTIONS(2395), + [aux_sym_cmd_identifier_token10] = ACTIONS(2397), + [aux_sym_cmd_identifier_token11] = ACTIONS(2397), + [aux_sym_cmd_identifier_token12] = ACTIONS(2395), + [aux_sym_cmd_identifier_token13] = ACTIONS(2395), + [aux_sym_cmd_identifier_token14] = ACTIONS(2395), + [aux_sym_cmd_identifier_token15] = ACTIONS(2395), + [aux_sym_cmd_identifier_token16] = ACTIONS(2397), + [aux_sym_cmd_identifier_token17] = ACTIONS(2397), + [aux_sym_cmd_identifier_token18] = ACTIONS(2397), + [aux_sym_cmd_identifier_token19] = ACTIONS(2397), + [aux_sym_cmd_identifier_token20] = ACTIONS(2397), + [aux_sym_cmd_identifier_token21] = ACTIONS(2397), + [aux_sym_cmd_identifier_token22] = ACTIONS(2397), + [aux_sym_cmd_identifier_token23] = ACTIONS(2397), + [aux_sym_cmd_identifier_token24] = ACTIONS(2397), + [aux_sym_cmd_identifier_token25] = ACTIONS(2397), + [aux_sym_cmd_identifier_token26] = ACTIONS(2397), + [aux_sym_cmd_identifier_token27] = ACTIONS(2397), + [aux_sym_cmd_identifier_token28] = ACTIONS(2397), + [aux_sym_cmd_identifier_token29] = ACTIONS(2397), + [aux_sym_cmd_identifier_token30] = ACTIONS(2397), + [aux_sym_cmd_identifier_token31] = ACTIONS(2397), + [aux_sym_cmd_identifier_token32] = ACTIONS(2397), + [aux_sym_cmd_identifier_token33] = ACTIONS(2397), + [aux_sym_cmd_identifier_token34] = ACTIONS(2395), + [aux_sym_cmd_identifier_token35] = ACTIONS(2397), + [aux_sym_cmd_identifier_token36] = ACTIONS(2397), + [aux_sym_cmd_identifier_token37] = ACTIONS(2397), + [aux_sym_cmd_identifier_token38] = ACTIONS(2395), + [aux_sym_cmd_identifier_token39] = ACTIONS(2397), + [aux_sym_cmd_identifier_token40] = ACTIONS(2397), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_in2] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_make] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_source] = ACTIONS(2395), + [anon_sym_source_DASHenv] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_hide] = ACTIONS(2395), + [anon_sym_hide_DASHenv] = ACTIONS(2395), + [anon_sym_overlay] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2397), + [aux_sym__val_number_decimal_token4] = ACTIONS(2397), + [aux_sym__val_number_token1] = ACTIONS(2397), + [aux_sym__val_number_token2] = ACTIONS(2397), + [aux_sym__val_number_token3] = ACTIONS(2397), + [aux_sym__val_number_token4] = ACTIONS(2395), + [aux_sym__val_number_token5] = ACTIONS(2395), + [aux_sym__val_number_token6] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2397), }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2165), - [anon_sym_alias] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_let_DASHenv] = ACTIONS(2165), - [anon_sym_mut] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [aux_sym_cmd_identifier_token1] = ACTIONS(2165), - [aux_sym_cmd_identifier_token2] = ACTIONS(2171), - [aux_sym_cmd_identifier_token3] = ACTIONS(2171), - [aux_sym_cmd_identifier_token4] = ACTIONS(2171), - [aux_sym_cmd_identifier_token5] = ACTIONS(2171), - [aux_sym_cmd_identifier_token6] = ACTIONS(2171), - [aux_sym_cmd_identifier_token7] = ACTIONS(2171), - [aux_sym_cmd_identifier_token8] = ACTIONS(2165), - [aux_sym_cmd_identifier_token9] = ACTIONS(2165), - [aux_sym_cmd_identifier_token10] = ACTIONS(2171), - [aux_sym_cmd_identifier_token11] = ACTIONS(2171), - [aux_sym_cmd_identifier_token12] = ACTIONS(2165), - [aux_sym_cmd_identifier_token13] = ACTIONS(2165), - [aux_sym_cmd_identifier_token14] = ACTIONS(2165), - [aux_sym_cmd_identifier_token15] = ACTIONS(2165), - [aux_sym_cmd_identifier_token16] = ACTIONS(2171), - [aux_sym_cmd_identifier_token17] = ACTIONS(2171), - [aux_sym_cmd_identifier_token18] = ACTIONS(2171), - [aux_sym_cmd_identifier_token19] = ACTIONS(2171), - [aux_sym_cmd_identifier_token20] = ACTIONS(2171), - [aux_sym_cmd_identifier_token21] = ACTIONS(2171), - [aux_sym_cmd_identifier_token22] = ACTIONS(2171), - [aux_sym_cmd_identifier_token23] = ACTIONS(2171), - [aux_sym_cmd_identifier_token24] = ACTIONS(2171), - [aux_sym_cmd_identifier_token25] = ACTIONS(2171), - [aux_sym_cmd_identifier_token26] = ACTIONS(2171), - [aux_sym_cmd_identifier_token27] = ACTIONS(2171), - [aux_sym_cmd_identifier_token28] = ACTIONS(2171), - [aux_sym_cmd_identifier_token29] = ACTIONS(2171), - [aux_sym_cmd_identifier_token30] = ACTIONS(2171), - [aux_sym_cmd_identifier_token31] = ACTIONS(2171), - [aux_sym_cmd_identifier_token32] = ACTIONS(2171), - [aux_sym_cmd_identifier_token33] = ACTIONS(2171), - [aux_sym_cmd_identifier_token34] = ACTIONS(2165), - [aux_sym_cmd_identifier_token35] = ACTIONS(2171), - [aux_sym_cmd_identifier_token36] = ACTIONS(2171), - [aux_sym_cmd_identifier_token37] = ACTIONS(2171), - [aux_sym_cmd_identifier_token38] = ACTIONS(2165), - [aux_sym_cmd_identifier_token39] = ACTIONS(2171), - [aux_sym_cmd_identifier_token40] = ACTIONS(2171), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_export_DASHenv] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_module] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_error] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_in2] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_make] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_catch] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_source] = ACTIONS(2165), - [anon_sym_source_DASHenv] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_hide] = ACTIONS(2165), - [anon_sym_hide_DASHenv] = ACTIONS(2165), - [anon_sym_overlay] = ACTIONS(2165), - [anon_sym_as] = ACTIONS(2165), - [anon_sym_PLUS2] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2171), - [aux_sym__val_number_decimal_token3] = ACTIONS(2171), - [aux_sym__val_number_decimal_token4] = ACTIONS(2171), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2171), - [sym__str_single_quotes] = ACTIONS(2171), - [sym__str_back_ticks] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2171), + [607] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(2399), + [anon_sym_alias] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_let_DASHenv] = ACTIONS(2399), + [anon_sym_mut] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [aux_sym_cmd_identifier_token1] = ACTIONS(2399), + [aux_sym_cmd_identifier_token2] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2401), + [aux_sym_cmd_identifier_token4] = ACTIONS(2401), + [aux_sym_cmd_identifier_token5] = ACTIONS(2401), + [aux_sym_cmd_identifier_token6] = ACTIONS(2401), + [aux_sym_cmd_identifier_token7] = ACTIONS(2401), + [aux_sym_cmd_identifier_token8] = ACTIONS(2399), + [aux_sym_cmd_identifier_token9] = ACTIONS(2399), + [aux_sym_cmd_identifier_token10] = ACTIONS(2401), + [aux_sym_cmd_identifier_token11] = ACTIONS(2401), + [aux_sym_cmd_identifier_token12] = ACTIONS(2399), + [aux_sym_cmd_identifier_token13] = ACTIONS(2399), + [aux_sym_cmd_identifier_token14] = ACTIONS(2399), + [aux_sym_cmd_identifier_token15] = ACTIONS(2399), + [aux_sym_cmd_identifier_token16] = ACTIONS(2401), + [aux_sym_cmd_identifier_token17] = ACTIONS(2401), + [aux_sym_cmd_identifier_token18] = ACTIONS(2401), + [aux_sym_cmd_identifier_token19] = ACTIONS(2401), + [aux_sym_cmd_identifier_token20] = ACTIONS(2401), + [aux_sym_cmd_identifier_token21] = ACTIONS(2401), + [aux_sym_cmd_identifier_token22] = ACTIONS(2401), + [aux_sym_cmd_identifier_token23] = ACTIONS(2401), + [aux_sym_cmd_identifier_token24] = ACTIONS(2401), + [aux_sym_cmd_identifier_token25] = ACTIONS(2401), + [aux_sym_cmd_identifier_token26] = ACTIONS(2401), + [aux_sym_cmd_identifier_token27] = ACTIONS(2401), + [aux_sym_cmd_identifier_token28] = ACTIONS(2401), + [aux_sym_cmd_identifier_token29] = ACTIONS(2401), + [aux_sym_cmd_identifier_token30] = ACTIONS(2401), + [aux_sym_cmd_identifier_token31] = ACTIONS(2401), + [aux_sym_cmd_identifier_token32] = ACTIONS(2401), + [aux_sym_cmd_identifier_token33] = ACTIONS(2401), + [aux_sym_cmd_identifier_token34] = ACTIONS(2399), + [aux_sym_cmd_identifier_token35] = ACTIONS(2401), + [aux_sym_cmd_identifier_token36] = ACTIONS(2401), + [aux_sym_cmd_identifier_token37] = ACTIONS(2401), + [aux_sym_cmd_identifier_token38] = ACTIONS(2399), + [aux_sym_cmd_identifier_token39] = ACTIONS(2401), + [aux_sym_cmd_identifier_token40] = ACTIONS(2401), + [anon_sym_def] = ACTIONS(2399), + [anon_sym_export_DASHenv] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_in2] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_make] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_catch] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_source] = ACTIONS(2399), + [anon_sym_source_DASHenv] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_hide] = ACTIONS(2399), + [anon_sym_hide_DASHenv] = ACTIONS(2399), + [anon_sym_overlay] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2399), + [aux_sym__val_number_decimal_token2] = ACTIONS(2401), + [aux_sym__val_number_decimal_token3] = ACTIONS(2401), + [aux_sym__val_number_decimal_token4] = ACTIONS(2401), + [aux_sym__val_number_token1] = ACTIONS(2401), + [aux_sym__val_number_token2] = ACTIONS(2401), + [aux_sym__val_number_token3] = ACTIONS(2401), + [aux_sym__val_number_token4] = ACTIONS(2399), + [aux_sym__val_number_token5] = ACTIONS(2399), + [aux_sym__val_number_token6] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2401), }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(2018), - [anon_sym_alias] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_let_DASHenv] = ACTIONS(2018), - [anon_sym_mut] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [aux_sym_cmd_identifier_token1] = ACTIONS(2018), - [aux_sym_cmd_identifier_token2] = ACTIONS(2020), - [aux_sym_cmd_identifier_token3] = ACTIONS(2020), - [aux_sym_cmd_identifier_token4] = ACTIONS(2020), - [aux_sym_cmd_identifier_token5] = ACTIONS(2020), - [aux_sym_cmd_identifier_token6] = ACTIONS(2020), - [aux_sym_cmd_identifier_token7] = ACTIONS(2020), - [aux_sym_cmd_identifier_token8] = ACTIONS(2018), - [aux_sym_cmd_identifier_token9] = ACTIONS(2018), - [aux_sym_cmd_identifier_token10] = ACTIONS(2020), - [aux_sym_cmd_identifier_token11] = ACTIONS(2020), - [aux_sym_cmd_identifier_token12] = ACTIONS(2018), - [aux_sym_cmd_identifier_token13] = ACTIONS(2018), - [aux_sym_cmd_identifier_token14] = ACTIONS(2018), - [aux_sym_cmd_identifier_token15] = ACTIONS(2018), - [aux_sym_cmd_identifier_token16] = ACTIONS(2020), - [aux_sym_cmd_identifier_token17] = ACTIONS(2020), - [aux_sym_cmd_identifier_token18] = ACTIONS(2020), - [aux_sym_cmd_identifier_token19] = ACTIONS(2020), - [aux_sym_cmd_identifier_token20] = ACTIONS(2020), - [aux_sym_cmd_identifier_token21] = ACTIONS(2020), - [aux_sym_cmd_identifier_token22] = ACTIONS(2020), - [aux_sym_cmd_identifier_token23] = ACTIONS(2020), - [aux_sym_cmd_identifier_token24] = ACTIONS(2020), - [aux_sym_cmd_identifier_token25] = ACTIONS(2020), - [aux_sym_cmd_identifier_token26] = ACTIONS(2020), - [aux_sym_cmd_identifier_token27] = ACTIONS(2020), - [aux_sym_cmd_identifier_token28] = ACTIONS(2020), - [aux_sym_cmd_identifier_token29] = ACTIONS(2020), - [aux_sym_cmd_identifier_token30] = ACTIONS(2020), - [aux_sym_cmd_identifier_token31] = ACTIONS(2020), - [aux_sym_cmd_identifier_token32] = ACTIONS(2020), - [aux_sym_cmd_identifier_token33] = ACTIONS(2020), - [aux_sym_cmd_identifier_token34] = ACTIONS(2018), - [aux_sym_cmd_identifier_token35] = ACTIONS(2020), - [aux_sym_cmd_identifier_token36] = ACTIONS(2020), - [aux_sym_cmd_identifier_token37] = ACTIONS(2020), - [aux_sym_cmd_identifier_token38] = ACTIONS(2018), - [aux_sym_cmd_identifier_token39] = ACTIONS(2020), - [aux_sym_cmd_identifier_token40] = ACTIONS(2020), - [anon_sym_def] = ACTIONS(2018), - [anon_sym_export_DASHenv] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_module] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_DOLLAR] = ACTIONS(2020), - [anon_sym_error] = ACTIONS(2018), - [anon_sym_DASH2] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_in2] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_make] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2018), - [anon_sym_catch] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_source] = ACTIONS(2018), - [anon_sym_source_DASHenv] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_hide] = ACTIONS(2018), - [anon_sym_hide_DASHenv] = ACTIONS(2018), - [anon_sym_overlay] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_PLUS2] = ACTIONS(2018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), - [aux_sym__val_number_decimal_token1] = ACTIONS(2018), - [aux_sym__val_number_decimal_token2] = ACTIONS(2020), - [aux_sym__val_number_decimal_token3] = ACTIONS(2020), - [aux_sym__val_number_decimal_token4] = ACTIONS(2020), - [aux_sym__val_number_token1] = ACTIONS(2020), - [aux_sym__val_number_token2] = ACTIONS(2020), - [aux_sym__val_number_token3] = ACTIONS(2020), - [aux_sym__val_number_token4] = ACTIONS(2018), - [aux_sym__val_number_token5] = ACTIONS(2018), - [aux_sym__val_number_token6] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym__str_single_quotes] = ACTIONS(2020), - [sym__str_back_ticks] = ACTIONS(2020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2020), + [608] = { + [sym__expr_parenthesized_immediate] = STATE(7875), + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2405), + [aux_sym_cmd_identifier_token3] = ACTIONS(2405), + [aux_sym_cmd_identifier_token4] = ACTIONS(2405), + [aux_sym_cmd_identifier_token5] = ACTIONS(2405), + [aux_sym_cmd_identifier_token6] = ACTIONS(2405), + [aux_sym_cmd_identifier_token7] = ACTIONS(2405), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2405), + [aux_sym_cmd_identifier_token17] = ACTIONS(2405), + [aux_sym_cmd_identifier_token18] = ACTIONS(2405), + [aux_sym_cmd_identifier_token19] = ACTIONS(2405), + [aux_sym_cmd_identifier_token20] = ACTIONS(2405), + [aux_sym_cmd_identifier_token21] = ACTIONS(2405), + [aux_sym_cmd_identifier_token22] = ACTIONS(2405), + [aux_sym_cmd_identifier_token23] = ACTIONS(2405), + [aux_sym_cmd_identifier_token24] = ACTIONS(2405), + [aux_sym_cmd_identifier_token25] = ACTIONS(2405), + [aux_sym_cmd_identifier_token26] = ACTIONS(2405), + [aux_sym_cmd_identifier_token27] = ACTIONS(2405), + [aux_sym_cmd_identifier_token28] = ACTIONS(2405), + [aux_sym_cmd_identifier_token29] = ACTIONS(2405), + [aux_sym_cmd_identifier_token30] = ACTIONS(2405), + [aux_sym_cmd_identifier_token31] = ACTIONS(2405), + [aux_sym_cmd_identifier_token32] = ACTIONS(2405), + [aux_sym_cmd_identifier_token33] = ACTIONS(2405), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2405), + [aux_sym_cmd_identifier_token36] = ACTIONS(2405), + [aux_sym_cmd_identifier_token37] = ACTIONS(2405), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2405), + [aux_sym_cmd_identifier_token40] = ACTIONS(2405), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2405), + [aux_sym__val_number_decimal_token4] = ACTIONS(2405), + [aux_sym__val_number_token1] = ACTIONS(2405), + [aux_sym__val_number_token2] = ACTIONS(2405), + [aux_sym__val_number_token3] = ACTIONS(2405), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym__str_single_quotes] = ACTIONS(2405), + [sym__str_back_ticks] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2405), }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_alias] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_let_DASHenv] = ACTIONS(2173), - [anon_sym_mut] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [aux_sym_cmd_identifier_token1] = ACTIONS(2173), - [aux_sym_cmd_identifier_token2] = ACTIONS(2175), - [aux_sym_cmd_identifier_token3] = ACTIONS(2175), - [aux_sym_cmd_identifier_token4] = ACTIONS(2175), - [aux_sym_cmd_identifier_token5] = ACTIONS(2175), - [aux_sym_cmd_identifier_token6] = ACTIONS(2175), - [aux_sym_cmd_identifier_token7] = ACTIONS(2175), - [aux_sym_cmd_identifier_token8] = ACTIONS(2173), - [aux_sym_cmd_identifier_token9] = ACTIONS(2173), - [aux_sym_cmd_identifier_token10] = ACTIONS(2175), - [aux_sym_cmd_identifier_token11] = ACTIONS(2175), - [aux_sym_cmd_identifier_token12] = ACTIONS(2173), - [aux_sym_cmd_identifier_token13] = ACTIONS(2173), - [aux_sym_cmd_identifier_token14] = ACTIONS(2173), - [aux_sym_cmd_identifier_token15] = ACTIONS(2173), - [aux_sym_cmd_identifier_token16] = ACTIONS(2175), - [aux_sym_cmd_identifier_token17] = ACTIONS(2175), - [aux_sym_cmd_identifier_token18] = ACTIONS(2175), - [aux_sym_cmd_identifier_token19] = ACTIONS(2175), - [aux_sym_cmd_identifier_token20] = ACTIONS(2175), - [aux_sym_cmd_identifier_token21] = ACTIONS(2175), - [aux_sym_cmd_identifier_token22] = ACTIONS(2175), - [aux_sym_cmd_identifier_token23] = ACTIONS(2175), - [aux_sym_cmd_identifier_token24] = ACTIONS(2175), - [aux_sym_cmd_identifier_token25] = ACTIONS(2175), - [aux_sym_cmd_identifier_token26] = ACTIONS(2175), - [aux_sym_cmd_identifier_token27] = ACTIONS(2175), - [aux_sym_cmd_identifier_token28] = ACTIONS(2175), - [aux_sym_cmd_identifier_token29] = ACTIONS(2175), - [aux_sym_cmd_identifier_token30] = ACTIONS(2175), - [aux_sym_cmd_identifier_token31] = ACTIONS(2175), - [aux_sym_cmd_identifier_token32] = ACTIONS(2175), - [aux_sym_cmd_identifier_token33] = ACTIONS(2175), - [aux_sym_cmd_identifier_token34] = ACTIONS(2173), - [aux_sym_cmd_identifier_token35] = ACTIONS(2175), - [aux_sym_cmd_identifier_token36] = ACTIONS(2175), - [aux_sym_cmd_identifier_token37] = ACTIONS(2175), - [aux_sym_cmd_identifier_token38] = ACTIONS(2173), - [aux_sym_cmd_identifier_token39] = ACTIONS(2175), - [aux_sym_cmd_identifier_token40] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_export_DASHenv] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_in2] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_make] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_catch] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_source] = ACTIONS(2173), - [anon_sym_source_DASHenv] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_hide] = ACTIONS(2173), - [anon_sym_hide_DASHenv] = ACTIONS(2173), - [anon_sym_overlay] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_PLUS2] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2173), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2175), - [aux_sym__val_number_decimal_token4] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2175), + [609] = { + [sym_comment] = STATE(609), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2433), }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_alias] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_let_DASHenv] = ACTIONS(2394), - [anon_sym_mut] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [aux_sym_cmd_identifier_token1] = ACTIONS(2394), - [aux_sym_cmd_identifier_token2] = ACTIONS(2396), - [aux_sym_cmd_identifier_token3] = ACTIONS(2396), - [aux_sym_cmd_identifier_token4] = ACTIONS(2396), - [aux_sym_cmd_identifier_token5] = ACTIONS(2396), - [aux_sym_cmd_identifier_token6] = ACTIONS(2396), - [aux_sym_cmd_identifier_token7] = ACTIONS(2396), - [aux_sym_cmd_identifier_token8] = ACTIONS(2394), - [aux_sym_cmd_identifier_token9] = ACTIONS(2394), - [aux_sym_cmd_identifier_token10] = ACTIONS(2396), - [aux_sym_cmd_identifier_token11] = ACTIONS(2396), - [aux_sym_cmd_identifier_token12] = ACTIONS(2394), - [aux_sym_cmd_identifier_token13] = ACTIONS(2394), - [aux_sym_cmd_identifier_token14] = ACTIONS(2394), - [aux_sym_cmd_identifier_token15] = ACTIONS(2394), - [aux_sym_cmd_identifier_token16] = ACTIONS(2396), - [aux_sym_cmd_identifier_token17] = ACTIONS(2396), - [aux_sym_cmd_identifier_token18] = ACTIONS(2396), - [aux_sym_cmd_identifier_token19] = ACTIONS(2396), - [aux_sym_cmd_identifier_token20] = ACTIONS(2396), - [aux_sym_cmd_identifier_token21] = ACTIONS(2396), - [aux_sym_cmd_identifier_token22] = ACTIONS(2396), - [aux_sym_cmd_identifier_token23] = ACTIONS(2396), - [aux_sym_cmd_identifier_token24] = ACTIONS(2396), - [aux_sym_cmd_identifier_token25] = ACTIONS(2396), - [aux_sym_cmd_identifier_token26] = ACTIONS(2396), - [aux_sym_cmd_identifier_token27] = ACTIONS(2396), - [aux_sym_cmd_identifier_token28] = ACTIONS(2396), - [aux_sym_cmd_identifier_token29] = ACTIONS(2396), - [aux_sym_cmd_identifier_token30] = ACTIONS(2396), - [aux_sym_cmd_identifier_token31] = ACTIONS(2396), - [aux_sym_cmd_identifier_token32] = ACTIONS(2396), - [aux_sym_cmd_identifier_token33] = ACTIONS(2396), - [aux_sym_cmd_identifier_token34] = ACTIONS(2394), - [aux_sym_cmd_identifier_token35] = ACTIONS(2396), - [aux_sym_cmd_identifier_token36] = ACTIONS(2396), - [aux_sym_cmd_identifier_token37] = ACTIONS(2396), - [aux_sym_cmd_identifier_token38] = ACTIONS(2394), - [aux_sym_cmd_identifier_token39] = ACTIONS(2396), - [aux_sym_cmd_identifier_token40] = ACTIONS(2396), - [anon_sym_def] = ACTIONS(2394), - [anon_sym_export_DASHenv] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2396), - [anon_sym_error] = ACTIONS(2394), - [anon_sym_DASH2] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_in2] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_make] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_catch] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_source] = ACTIONS(2394), - [anon_sym_source_DASHenv] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2394), - [anon_sym_hide] = ACTIONS(2394), - [anon_sym_hide_DASHenv] = ACTIONS(2394), - [anon_sym_overlay] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2394), - [anon_sym_PLUS2] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), - [aux_sym__val_number_decimal_token1] = ACTIONS(2394), - [aux_sym__val_number_decimal_token2] = ACTIONS(2396), - [aux_sym__val_number_decimal_token3] = ACTIONS(2396), - [aux_sym__val_number_decimal_token4] = ACTIONS(2396), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [aux_sym__val_number_token4] = ACTIONS(2394), - [aux_sym__val_number_token5] = ACTIONS(2394), - [aux_sym__val_number_token6] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2396), - [sym__str_single_quotes] = ACTIONS(2396), - [sym__str_back_ticks] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2396), + [610] = { + [sym_comment] = STATE(610), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2433), }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_alias] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_let_DASHenv] = ACTIONS(1853), - [anon_sym_mut] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [aux_sym_cmd_identifier_token1] = ACTIONS(1853), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1853), - [aux_sym_cmd_identifier_token9] = ACTIONS(1853), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1853), - [aux_sym_cmd_identifier_token13] = ACTIONS(1853), - [aux_sym_cmd_identifier_token14] = ACTIONS(1853), - [aux_sym_cmd_identifier_token15] = ACTIONS(1853), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1853), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [aux_sym_cmd_identifier_token37] = ACTIONS(1855), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1855), - [aux_sym_cmd_identifier_token40] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1853), - [anon_sym_export_DASHenv] = ACTIONS(1853), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_in2] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_make] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_catch] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_source] = ACTIONS(1853), - [anon_sym_source_DASHenv] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1853), - [anon_sym_hide] = ACTIONS(1853), - [anon_sym_hide_DASHenv] = ACTIONS(1853), - [anon_sym_overlay] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1853), - [aux_sym__val_number_decimal_token2] = ACTIONS(1855), - [aux_sym__val_number_decimal_token3] = ACTIONS(1855), - [aux_sym__val_number_decimal_token4] = ACTIONS(1855), - [aux_sym__val_number_token1] = ACTIONS(1855), - [aux_sym__val_number_token2] = ACTIONS(1855), - [aux_sym__val_number_token3] = ACTIONS(1855), - [aux_sym__val_number_token4] = ACTIONS(1853), - [aux_sym__val_number_token5] = ACTIONS(1853), - [aux_sym__val_number_token6] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1855), + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1800), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1800), }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_let_DASHenv] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2448), + [aux_sym_cmd_identifier_token2] = ACTIONS(2448), + [aux_sym_cmd_identifier_token3] = ACTIONS(2448), + [aux_sym_cmd_identifier_token4] = ACTIONS(2448), + [aux_sym_cmd_identifier_token5] = ACTIONS(2448), + [aux_sym_cmd_identifier_token6] = ACTIONS(2448), + [aux_sym_cmd_identifier_token7] = ACTIONS(2448), + [aux_sym_cmd_identifier_token8] = ACTIONS(2448), + [aux_sym_cmd_identifier_token9] = ACTIONS(2448), + [aux_sym_cmd_identifier_token10] = ACTIONS(2448), + [aux_sym_cmd_identifier_token11] = ACTIONS(2448), + [aux_sym_cmd_identifier_token12] = ACTIONS(2448), + [aux_sym_cmd_identifier_token13] = ACTIONS(2448), + [aux_sym_cmd_identifier_token14] = ACTIONS(2448), + [aux_sym_cmd_identifier_token15] = ACTIONS(2448), + [aux_sym_cmd_identifier_token16] = ACTIONS(2448), + [aux_sym_cmd_identifier_token17] = ACTIONS(2448), + [aux_sym_cmd_identifier_token18] = ACTIONS(2448), + [aux_sym_cmd_identifier_token19] = ACTIONS(2448), + [aux_sym_cmd_identifier_token20] = ACTIONS(2448), + [aux_sym_cmd_identifier_token21] = ACTIONS(2448), + [aux_sym_cmd_identifier_token22] = ACTIONS(2448), + [aux_sym_cmd_identifier_token23] = ACTIONS(2448), + [aux_sym_cmd_identifier_token24] = ACTIONS(2448), + [aux_sym_cmd_identifier_token25] = ACTIONS(2448), + [aux_sym_cmd_identifier_token26] = ACTIONS(2448), + [aux_sym_cmd_identifier_token27] = ACTIONS(2448), + [aux_sym_cmd_identifier_token28] = ACTIONS(2448), + [aux_sym_cmd_identifier_token29] = ACTIONS(2448), + [aux_sym_cmd_identifier_token30] = ACTIONS(2448), + [aux_sym_cmd_identifier_token31] = ACTIONS(2448), + [aux_sym_cmd_identifier_token32] = ACTIONS(2448), + [aux_sym_cmd_identifier_token33] = ACTIONS(2448), + [aux_sym_cmd_identifier_token34] = ACTIONS(2448), + [aux_sym_cmd_identifier_token35] = ACTIONS(2448), + [aux_sym_cmd_identifier_token36] = ACTIONS(2448), + [aux_sym_cmd_identifier_token37] = ACTIONS(2448), + [aux_sym_cmd_identifier_token38] = ACTIONS(2448), + [aux_sym_cmd_identifier_token39] = ACTIONS(2448), + [aux_sym_cmd_identifier_token40] = ACTIONS(2448), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_error] = ACTIONS(2448), + [anon_sym_DASH2] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_in2] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_make] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_source] = ACTIONS(2448), + [anon_sym_source_DASHenv] = ACTIONS(2448), + [anon_sym_register] = ACTIONS(2448), + [anon_sym_hide] = ACTIONS(2448), + [anon_sym_hide_DASHenv] = ACTIONS(2448), + [anon_sym_overlay] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2448), + [anon_sym_LPAREN2] = ACTIONS(2450), + [anon_sym_PLUS2] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2448), + [aux_sym__val_number_decimal_token1] = ACTIONS(2448), + [aux_sym__val_number_decimal_token2] = ACTIONS(2448), + [aux_sym__val_number_decimal_token3] = ACTIONS(2448), + [aux_sym__val_number_decimal_token4] = ACTIONS(2448), + [aux_sym__val_number_token1] = ACTIONS(2448), + [aux_sym__val_number_token2] = ACTIONS(2448), + [aux_sym__val_number_token3] = ACTIONS(2448), + [aux_sym__val_number_token4] = ACTIONS(2448), + [aux_sym__val_number_token5] = ACTIONS(2448), + [aux_sym__val_number_token6] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [sym__str_single_quotes] = ACTIONS(2448), + [sym__str_back_ticks] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), + [sym__entry_separator] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2450), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(2369), + [anon_sym_alias] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_let_DASHenv] = ACTIONS(2369), + [anon_sym_mut] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [aux_sym_cmd_identifier_token1] = ACTIONS(2369), [aux_sym_cmd_identifier_token2] = ACTIONS(2373), [aux_sym_cmd_identifier_token3] = ACTIONS(2373), [aux_sym_cmd_identifier_token4] = ACTIONS(2373), [aux_sym_cmd_identifier_token5] = ACTIONS(2373), [aux_sym_cmd_identifier_token6] = ACTIONS(2373), [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token8] = ACTIONS(2369), + [aux_sym_cmd_identifier_token9] = ACTIONS(2369), [aux_sym_cmd_identifier_token10] = ACTIONS(2373), [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token12] = ACTIONS(2369), + [aux_sym_cmd_identifier_token13] = ACTIONS(2369), + [aux_sym_cmd_identifier_token14] = ACTIONS(2369), + [aux_sym_cmd_identifier_token15] = ACTIONS(2369), [aux_sym_cmd_identifier_token16] = ACTIONS(2373), [aux_sym_cmd_identifier_token17] = ACTIONS(2373), [aux_sym_cmd_identifier_token18] = ACTIONS(2373), @@ -150349,2838 +279381,2283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2373), [aux_sym_cmd_identifier_token32] = ACTIONS(2373), [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token34] = ACTIONS(2369), [aux_sym_cmd_identifier_token35] = ACTIONS(2373), [aux_sym_cmd_identifier_token36] = ACTIONS(2373), [aux_sym_cmd_identifier_token37] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token38] = ACTIONS(2369), [aux_sym_cmd_identifier_token39] = ACTIONS(2373), [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2369), + [anon_sym_export_DASHenv] = ACTIONS(2369), + [anon_sym_extern] = ACTIONS(2369), + [anon_sym_module] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in2] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), + [anon_sym_error] = ACTIONS(2369), + [anon_sym_DASH2] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_in2] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_make] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_do] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_catch] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_source] = ACTIONS(2369), + [anon_sym_source_DASHenv] = ACTIONS(2369), + [anon_sym_register] = ACTIONS(2369), + [anon_sym_hide] = ACTIONS(2369), + [anon_sym_hide_DASHenv] = ACTIONS(2369), + [anon_sym_overlay] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_PLUS2] = ACTIONS(2369), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token1] = ACTIONS(2369), [aux_sym__val_number_decimal_token2] = ACTIONS(2373), [aux_sym__val_number_decimal_token3] = ACTIONS(2373), [aux_sym__val_number_decimal_token4] = ACTIONS(2373), [aux_sym__val_number_token1] = ACTIONS(2373), [aux_sym__val_number_token2] = ACTIONS(2373), [aux_sym__val_number_token3] = ACTIONS(2373), - [aux_sym__val_number_token4] = ACTIONS(2371), - [aux_sym__val_number_token5] = ACTIONS(2371), - [aux_sym__val_number_token6] = ACTIONS(2371), + [aux_sym__val_number_token4] = ACTIONS(2369), + [aux_sym__val_number_token5] = ACTIONS(2369), + [aux_sym__val_number_token6] = ACTIONS(2369), [anon_sym_DQUOTE] = ACTIONS(2373), [sym__str_single_quotes] = ACTIONS(2373), [sym__str_back_ticks] = ACTIONS(2373), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2373), }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2377), - [aux_sym_cmd_identifier_token3] = ACTIONS(2377), - [aux_sym_cmd_identifier_token4] = ACTIONS(2377), - [aux_sym_cmd_identifier_token5] = ACTIONS(2377), - [aux_sym_cmd_identifier_token6] = ACTIONS(2377), - [aux_sym_cmd_identifier_token7] = ACTIONS(2377), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2377), - [aux_sym_cmd_identifier_token11] = ACTIONS(2377), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2377), - [aux_sym_cmd_identifier_token17] = ACTIONS(2377), - [aux_sym_cmd_identifier_token18] = ACTIONS(2377), - [aux_sym_cmd_identifier_token19] = ACTIONS(2377), - [aux_sym_cmd_identifier_token20] = ACTIONS(2377), - [aux_sym_cmd_identifier_token21] = ACTIONS(2377), - [aux_sym_cmd_identifier_token22] = ACTIONS(2377), - [aux_sym_cmd_identifier_token23] = ACTIONS(2377), - [aux_sym_cmd_identifier_token24] = ACTIONS(2377), - [aux_sym_cmd_identifier_token25] = ACTIONS(2377), - [aux_sym_cmd_identifier_token26] = ACTIONS(2377), - [aux_sym_cmd_identifier_token27] = ACTIONS(2377), - [aux_sym_cmd_identifier_token28] = ACTIONS(2377), - [aux_sym_cmd_identifier_token29] = ACTIONS(2377), - [aux_sym_cmd_identifier_token30] = ACTIONS(2377), - [aux_sym_cmd_identifier_token31] = ACTIONS(2377), - [aux_sym_cmd_identifier_token32] = ACTIONS(2377), - [aux_sym_cmd_identifier_token33] = ACTIONS(2377), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2377), - [aux_sym_cmd_identifier_token36] = ACTIONS(2377), - [aux_sym_cmd_identifier_token37] = ACTIONS(2377), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2377), - [aux_sym_cmd_identifier_token40] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in2] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2377), - [aux_sym__val_number_decimal_token3] = ACTIONS(2377), - [aux_sym__val_number_decimal_token4] = ACTIONS(2377), - [aux_sym__val_number_token1] = ACTIONS(2377), - [aux_sym__val_number_token2] = ACTIONS(2377), - [aux_sym__val_number_token3] = ACTIONS(2377), - [aux_sym__val_number_token4] = ACTIONS(2375), - [aux_sym__val_number_token5] = ACTIONS(2375), - [aux_sym__val_number_token6] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym__str_single_quotes] = ACTIONS(2377), - [sym__str_back_ticks] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2377), - }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(1290), - [anon_sym_alias] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_let_DASHenv] = ACTIONS(1290), - [anon_sym_mut] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [aux_sym_cmd_identifier_token1] = ACTIONS(1290), - [aux_sym_cmd_identifier_token2] = ACTIONS(1288), - [aux_sym_cmd_identifier_token3] = ACTIONS(1288), - [aux_sym_cmd_identifier_token4] = ACTIONS(1288), - [aux_sym_cmd_identifier_token5] = ACTIONS(1288), - [aux_sym_cmd_identifier_token6] = ACTIONS(1288), - [aux_sym_cmd_identifier_token7] = ACTIONS(1288), - [aux_sym_cmd_identifier_token8] = ACTIONS(1290), - [aux_sym_cmd_identifier_token9] = ACTIONS(1290), - [aux_sym_cmd_identifier_token10] = ACTIONS(1288), - [aux_sym_cmd_identifier_token11] = ACTIONS(1288), - [aux_sym_cmd_identifier_token12] = ACTIONS(1290), - [aux_sym_cmd_identifier_token13] = ACTIONS(1290), - [aux_sym_cmd_identifier_token14] = ACTIONS(1290), - [aux_sym_cmd_identifier_token15] = ACTIONS(1290), - [aux_sym_cmd_identifier_token16] = ACTIONS(1288), - [aux_sym_cmd_identifier_token17] = ACTIONS(1288), - [aux_sym_cmd_identifier_token18] = ACTIONS(1288), - [aux_sym_cmd_identifier_token19] = ACTIONS(1288), - [aux_sym_cmd_identifier_token20] = ACTIONS(1288), - [aux_sym_cmd_identifier_token21] = ACTIONS(1288), - [aux_sym_cmd_identifier_token22] = ACTIONS(1288), - [aux_sym_cmd_identifier_token23] = ACTIONS(1288), - [aux_sym_cmd_identifier_token24] = ACTIONS(1288), - [aux_sym_cmd_identifier_token25] = ACTIONS(1288), - [aux_sym_cmd_identifier_token26] = ACTIONS(1288), - [aux_sym_cmd_identifier_token27] = ACTIONS(1288), - [aux_sym_cmd_identifier_token28] = ACTIONS(1288), - [aux_sym_cmd_identifier_token29] = ACTIONS(1288), - [aux_sym_cmd_identifier_token30] = ACTIONS(1288), - [aux_sym_cmd_identifier_token31] = ACTIONS(1288), - [aux_sym_cmd_identifier_token32] = ACTIONS(1288), - [aux_sym_cmd_identifier_token33] = ACTIONS(1288), - [aux_sym_cmd_identifier_token34] = ACTIONS(1290), - [aux_sym_cmd_identifier_token35] = ACTIONS(1288), - [aux_sym_cmd_identifier_token36] = ACTIONS(1288), - [aux_sym_cmd_identifier_token37] = ACTIONS(1288), - [aux_sym_cmd_identifier_token38] = ACTIONS(1290), - [aux_sym_cmd_identifier_token39] = ACTIONS(1288), - [aux_sym_cmd_identifier_token40] = ACTIONS(1288), - [sym__newline] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1290), - [anon_sym_export_DASHenv] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_module] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_error] = ACTIONS(1290), - [anon_sym_DASH2] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_in2] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_make] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_catch] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_source] = ACTIONS(1290), - [anon_sym_source_DASHenv] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_hide] = ACTIONS(1290), - [anon_sym_hide_DASHenv] = ACTIONS(1290), - [anon_sym_overlay] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_PLUS2] = ACTIONS(1290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), - [aux_sym__val_number_decimal_token1] = ACTIONS(1290), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1290), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1288), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(2157), - [anon_sym_alias] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_let_DASHenv] = ACTIONS(2157), - [anon_sym_mut] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [aux_sym_cmd_identifier_token1] = ACTIONS(2157), - [aux_sym_cmd_identifier_token2] = ACTIONS(2163), - [aux_sym_cmd_identifier_token3] = ACTIONS(2163), - [aux_sym_cmd_identifier_token4] = ACTIONS(2163), - [aux_sym_cmd_identifier_token5] = ACTIONS(2163), - [aux_sym_cmd_identifier_token6] = ACTIONS(2163), - [aux_sym_cmd_identifier_token7] = ACTIONS(2163), - [aux_sym_cmd_identifier_token8] = ACTIONS(2157), - [aux_sym_cmd_identifier_token9] = ACTIONS(2157), - [aux_sym_cmd_identifier_token10] = ACTIONS(2163), - [aux_sym_cmd_identifier_token11] = ACTIONS(2163), - [aux_sym_cmd_identifier_token12] = ACTIONS(2157), - [aux_sym_cmd_identifier_token13] = ACTIONS(2157), - [aux_sym_cmd_identifier_token14] = ACTIONS(2157), - [aux_sym_cmd_identifier_token15] = ACTIONS(2157), - [aux_sym_cmd_identifier_token16] = ACTIONS(2163), - [aux_sym_cmd_identifier_token17] = ACTIONS(2163), - [aux_sym_cmd_identifier_token18] = ACTIONS(2163), - [aux_sym_cmd_identifier_token19] = ACTIONS(2163), - [aux_sym_cmd_identifier_token20] = ACTIONS(2163), - [aux_sym_cmd_identifier_token21] = ACTIONS(2163), - [aux_sym_cmd_identifier_token22] = ACTIONS(2163), - [aux_sym_cmd_identifier_token23] = ACTIONS(2163), - [aux_sym_cmd_identifier_token24] = ACTIONS(2163), - [aux_sym_cmd_identifier_token25] = ACTIONS(2163), - [aux_sym_cmd_identifier_token26] = ACTIONS(2163), - [aux_sym_cmd_identifier_token27] = ACTIONS(2163), - [aux_sym_cmd_identifier_token28] = ACTIONS(2163), - [aux_sym_cmd_identifier_token29] = ACTIONS(2163), - [aux_sym_cmd_identifier_token30] = ACTIONS(2163), - [aux_sym_cmd_identifier_token31] = ACTIONS(2163), - [aux_sym_cmd_identifier_token32] = ACTIONS(2163), - [aux_sym_cmd_identifier_token33] = ACTIONS(2163), - [aux_sym_cmd_identifier_token34] = ACTIONS(2157), - [aux_sym_cmd_identifier_token35] = ACTIONS(2163), - [aux_sym_cmd_identifier_token36] = ACTIONS(2163), - [aux_sym_cmd_identifier_token37] = ACTIONS(2163), - [aux_sym_cmd_identifier_token38] = ACTIONS(2157), - [aux_sym_cmd_identifier_token39] = ACTIONS(2163), - [aux_sym_cmd_identifier_token40] = ACTIONS(2163), - [anon_sym_def] = ACTIONS(2157), - [anon_sym_export_DASHenv] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_module] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2163), - [anon_sym_error] = ACTIONS(2157), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_in2] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_make] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_source] = ACTIONS(2157), - [anon_sym_source_DASHenv] = ACTIONS(2157), - [anon_sym_register] = ACTIONS(2157), - [anon_sym_hide] = ACTIONS(2157), - [anon_sym_hide_DASHenv] = ACTIONS(2157), - [anon_sym_overlay] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_PLUS2] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_decimal_token4] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [aux_sym__val_number_token4] = ACTIONS(2157), - [aux_sym__val_number_token5] = ACTIONS(2157), - [aux_sym__val_number_token6] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2163), - }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2385), - [aux_sym_cmd_identifier_token3] = ACTIONS(2385), - [aux_sym_cmd_identifier_token4] = ACTIONS(2385), - [aux_sym_cmd_identifier_token5] = ACTIONS(2385), - [aux_sym_cmd_identifier_token6] = ACTIONS(2385), - [aux_sym_cmd_identifier_token7] = ACTIONS(2385), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2385), - [aux_sym_cmd_identifier_token11] = ACTIONS(2385), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2385), - [aux_sym_cmd_identifier_token17] = ACTIONS(2385), - [aux_sym_cmd_identifier_token18] = ACTIONS(2385), - [aux_sym_cmd_identifier_token19] = ACTIONS(2385), - [aux_sym_cmd_identifier_token20] = ACTIONS(2385), - [aux_sym_cmd_identifier_token21] = ACTIONS(2385), - [aux_sym_cmd_identifier_token22] = ACTIONS(2385), - [aux_sym_cmd_identifier_token23] = ACTIONS(2385), - [aux_sym_cmd_identifier_token24] = ACTIONS(2385), - [aux_sym_cmd_identifier_token25] = ACTIONS(2385), - [aux_sym_cmd_identifier_token26] = ACTIONS(2385), - [aux_sym_cmd_identifier_token27] = ACTIONS(2385), - [aux_sym_cmd_identifier_token28] = ACTIONS(2385), - [aux_sym_cmd_identifier_token29] = ACTIONS(2385), - [aux_sym_cmd_identifier_token30] = ACTIONS(2385), - [aux_sym_cmd_identifier_token31] = ACTIONS(2385), - [aux_sym_cmd_identifier_token32] = ACTIONS(2385), - [aux_sym_cmd_identifier_token33] = ACTIONS(2385), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2385), - [aux_sym_cmd_identifier_token36] = ACTIONS(2385), - [aux_sym_cmd_identifier_token37] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in2] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2385), - }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [aux_sym_cmd_identifier_token1] = ACTIONS(2122), - [aux_sym_cmd_identifier_token2] = ACTIONS(2128), - [aux_sym_cmd_identifier_token3] = ACTIONS(2128), - [aux_sym_cmd_identifier_token4] = ACTIONS(2128), - [aux_sym_cmd_identifier_token5] = ACTIONS(2128), - [aux_sym_cmd_identifier_token6] = ACTIONS(2128), - [aux_sym_cmd_identifier_token7] = ACTIONS(2128), - [aux_sym_cmd_identifier_token8] = ACTIONS(2122), - [aux_sym_cmd_identifier_token9] = ACTIONS(2122), - [aux_sym_cmd_identifier_token10] = ACTIONS(2128), - [aux_sym_cmd_identifier_token11] = ACTIONS(2128), - [aux_sym_cmd_identifier_token12] = ACTIONS(2122), - [aux_sym_cmd_identifier_token13] = ACTIONS(2122), - [aux_sym_cmd_identifier_token14] = ACTIONS(2122), - [aux_sym_cmd_identifier_token15] = ACTIONS(2122), - [aux_sym_cmd_identifier_token16] = ACTIONS(2128), - [aux_sym_cmd_identifier_token17] = ACTIONS(2128), - [aux_sym_cmd_identifier_token18] = ACTIONS(2128), - [aux_sym_cmd_identifier_token19] = ACTIONS(2128), - [aux_sym_cmd_identifier_token20] = ACTIONS(2128), - [aux_sym_cmd_identifier_token21] = ACTIONS(2128), - [aux_sym_cmd_identifier_token22] = ACTIONS(2128), - [aux_sym_cmd_identifier_token23] = ACTIONS(2128), - [aux_sym_cmd_identifier_token24] = ACTIONS(2128), - [aux_sym_cmd_identifier_token25] = ACTIONS(2128), - [aux_sym_cmd_identifier_token26] = ACTIONS(2128), - [aux_sym_cmd_identifier_token27] = ACTIONS(2128), - [aux_sym_cmd_identifier_token28] = ACTIONS(2128), - [aux_sym_cmd_identifier_token29] = ACTIONS(2128), - [aux_sym_cmd_identifier_token30] = ACTIONS(2128), - [aux_sym_cmd_identifier_token31] = ACTIONS(2128), - [aux_sym_cmd_identifier_token32] = ACTIONS(2128), - [aux_sym_cmd_identifier_token33] = ACTIONS(2128), - [aux_sym_cmd_identifier_token34] = ACTIONS(2122), - [aux_sym_cmd_identifier_token35] = ACTIONS(2128), - [aux_sym_cmd_identifier_token36] = ACTIONS(2128), - [aux_sym_cmd_identifier_token37] = ACTIONS(2128), - [aux_sym_cmd_identifier_token38] = ACTIONS(2122), - [aux_sym_cmd_identifier_token39] = ACTIONS(2128), - [aux_sym_cmd_identifier_token40] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2128), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_in2] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_make] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_catch] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_as] = ACTIONS(2122), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym__str_single_quotes] = ACTIONS(2128), - [sym__str_back_ticks] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2128), - }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(2130), - [anon_sym_alias] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_let_DASHenv] = ACTIONS(2130), - [anon_sym_mut] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [aux_sym_cmd_identifier_token1] = ACTIONS(2130), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2130), - [aux_sym_cmd_identifier_token9] = ACTIONS(2130), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2130), - [aux_sym_cmd_identifier_token13] = ACTIONS(2130), - [aux_sym_cmd_identifier_token14] = ACTIONS(2130), - [aux_sym_cmd_identifier_token15] = ACTIONS(2130), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2130), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2130), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_export_DASHenv] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_module] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_in2] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_make] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_else] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_catch] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_source] = ACTIONS(2130), - [anon_sym_source_DASHenv] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_hide] = ACTIONS(2130), - [anon_sym_hide_DASHenv] = ACTIONS(2130), - [anon_sym_overlay] = ACTIONS(2130), - [anon_sym_as] = ACTIONS(2130), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2130), - [aux_sym__val_number_token5] = ACTIONS(2130), - [aux_sym__val_number_token6] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2136), - }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_let_DASHenv] = ACTIONS(2146), - [anon_sym_mut] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [aux_sym_cmd_identifier_token1] = ACTIONS(2146), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2146), - [aux_sym_cmd_identifier_token9] = ACTIONS(2146), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2146), - [aux_sym_cmd_identifier_token13] = ACTIONS(2146), - [aux_sym_cmd_identifier_token14] = ACTIONS(2146), - [aux_sym_cmd_identifier_token15] = ACTIONS(2146), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2146), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [aux_sym_cmd_identifier_token37] = ACTIONS(2152), - [aux_sym_cmd_identifier_token38] = ACTIONS(2146), - [aux_sym_cmd_identifier_token39] = ACTIONS(2152), - [aux_sym_cmd_identifier_token40] = ACTIONS(2152), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_export_DASHenv] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_module] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_error] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_in2] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_make] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_else] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_catch] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_source] = ACTIONS(2146), - [anon_sym_source_DASHenv] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_hide] = ACTIONS(2146), - [anon_sym_hide_DASHenv] = ACTIONS(2146), - [anon_sym_overlay] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(2146), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2146), - [aux_sym__val_number_token5] = ACTIONS(2146), - [aux_sym__val_number_token6] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2152), - }, - [709] = { - [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [aux_sym_cmd_identifier_token37] = ACTIONS(2424), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2424), - [aux_sym_cmd_identifier_token40] = ACTIONS(2424), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_DASH2] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in2] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_PLUS2] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [aux_sym__val_number_decimal_token2] = ACTIONS(2424), - [aux_sym__val_number_decimal_token3] = ACTIONS(2424), - [aux_sym__val_number_decimal_token4] = ACTIONS(2424), - [aux_sym__val_number_token1] = ACTIONS(2424), - [aux_sym__val_number_token2] = ACTIONS(2424), - [aux_sym__val_number_token3] = ACTIONS(2424), - [aux_sym__val_number_token4] = ACTIONS(2422), - [aux_sym__val_number_token5] = ACTIONS(2422), - [aux_sym__val_number_token6] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym__str_single_quotes] = ACTIONS(2424), - [sym__str_back_ticks] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2424), - }, - [710] = { - [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2428), - [aux_sym_cmd_identifier_token3] = ACTIONS(2428), - [aux_sym_cmd_identifier_token4] = ACTIONS(2428), - [aux_sym_cmd_identifier_token5] = ACTIONS(2428), - [aux_sym_cmd_identifier_token6] = ACTIONS(2428), - [aux_sym_cmd_identifier_token7] = ACTIONS(2428), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2428), - [aux_sym_cmd_identifier_token11] = ACTIONS(2428), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2428), - [aux_sym_cmd_identifier_token17] = ACTIONS(2428), - [aux_sym_cmd_identifier_token18] = ACTIONS(2428), - [aux_sym_cmd_identifier_token19] = ACTIONS(2428), - [aux_sym_cmd_identifier_token20] = ACTIONS(2428), - [aux_sym_cmd_identifier_token21] = ACTIONS(2428), - [aux_sym_cmd_identifier_token22] = ACTIONS(2428), - [aux_sym_cmd_identifier_token23] = ACTIONS(2428), - [aux_sym_cmd_identifier_token24] = ACTIONS(2428), - [aux_sym_cmd_identifier_token25] = ACTIONS(2428), - [aux_sym_cmd_identifier_token26] = ACTIONS(2428), - [aux_sym_cmd_identifier_token27] = ACTIONS(2428), - [aux_sym_cmd_identifier_token28] = ACTIONS(2428), - [aux_sym_cmd_identifier_token29] = ACTIONS(2428), - [aux_sym_cmd_identifier_token30] = ACTIONS(2428), - [aux_sym_cmd_identifier_token31] = ACTIONS(2428), - [aux_sym_cmd_identifier_token32] = ACTIONS(2428), - [aux_sym_cmd_identifier_token33] = ACTIONS(2428), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2428), - [aux_sym_cmd_identifier_token36] = ACTIONS(2428), - [aux_sym_cmd_identifier_token37] = ACTIONS(2428), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2428), - [aux_sym_cmd_identifier_token40] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_DASH2] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in2] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_PLUS2] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [aux_sym__val_number_decimal_token2] = ACTIONS(2428), - [aux_sym__val_number_decimal_token3] = ACTIONS(2428), - [aux_sym__val_number_decimal_token4] = ACTIONS(2428), - [aux_sym__val_number_token1] = ACTIONS(2428), - [aux_sym__val_number_token2] = ACTIONS(2428), - [aux_sym__val_number_token3] = ACTIONS(2428), - [aux_sym__val_number_token4] = ACTIONS(2426), - [aux_sym__val_number_token5] = ACTIONS(2426), - [aux_sym__val_number_token6] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym__str_single_quotes] = ACTIONS(2428), - [sym__str_back_ticks] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2428), + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [aux_sym__immediate_decimal_token2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), }, - [711] = { - [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_alias] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_let_DASHenv] = ACTIONS(2436), - [anon_sym_mut] = ACTIONS(2436), - [anon_sym_const] = ACTIONS(2436), - [aux_sym_cmd_identifier_token1] = ACTIONS(2436), - [aux_sym_cmd_identifier_token2] = ACTIONS(2438), - [aux_sym_cmd_identifier_token3] = ACTIONS(2438), - [aux_sym_cmd_identifier_token4] = ACTIONS(2438), - [aux_sym_cmd_identifier_token5] = ACTIONS(2438), - [aux_sym_cmd_identifier_token6] = ACTIONS(2438), - [aux_sym_cmd_identifier_token7] = ACTIONS(2438), - [aux_sym_cmd_identifier_token8] = ACTIONS(2436), - [aux_sym_cmd_identifier_token9] = ACTIONS(2436), - [aux_sym_cmd_identifier_token10] = ACTIONS(2438), - [aux_sym_cmd_identifier_token11] = ACTIONS(2438), - [aux_sym_cmd_identifier_token12] = ACTIONS(2436), - [aux_sym_cmd_identifier_token13] = ACTIONS(2436), - [aux_sym_cmd_identifier_token14] = ACTIONS(2436), - [aux_sym_cmd_identifier_token15] = ACTIONS(2436), - [aux_sym_cmd_identifier_token16] = ACTIONS(2438), - [aux_sym_cmd_identifier_token17] = ACTIONS(2438), - [aux_sym_cmd_identifier_token18] = ACTIONS(2438), - [aux_sym_cmd_identifier_token19] = ACTIONS(2438), - [aux_sym_cmd_identifier_token20] = ACTIONS(2438), - [aux_sym_cmd_identifier_token21] = ACTIONS(2438), - [aux_sym_cmd_identifier_token22] = ACTIONS(2438), - [aux_sym_cmd_identifier_token23] = ACTIONS(2438), - [aux_sym_cmd_identifier_token24] = ACTIONS(2438), - [aux_sym_cmd_identifier_token25] = ACTIONS(2438), - [aux_sym_cmd_identifier_token26] = ACTIONS(2438), - [aux_sym_cmd_identifier_token27] = ACTIONS(2438), - [aux_sym_cmd_identifier_token28] = ACTIONS(2438), - [aux_sym_cmd_identifier_token29] = ACTIONS(2438), - [aux_sym_cmd_identifier_token30] = ACTIONS(2438), - [aux_sym_cmd_identifier_token31] = ACTIONS(2438), - [aux_sym_cmd_identifier_token32] = ACTIONS(2438), - [aux_sym_cmd_identifier_token33] = ACTIONS(2438), - [aux_sym_cmd_identifier_token34] = ACTIONS(2436), - [aux_sym_cmd_identifier_token35] = ACTIONS(2438), - [aux_sym_cmd_identifier_token36] = ACTIONS(2438), - [aux_sym_cmd_identifier_token37] = ACTIONS(2438), - [aux_sym_cmd_identifier_token38] = ACTIONS(2436), - [aux_sym_cmd_identifier_token39] = ACTIONS(2438), - [aux_sym_cmd_identifier_token40] = ACTIONS(2438), - [anon_sym_def] = ACTIONS(2436), - [anon_sym_export_DASHenv] = ACTIONS(2436), - [anon_sym_extern] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_use] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2438), - [anon_sym_error] = ACTIONS(2436), - [anon_sym_DASH2] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2436), - [anon_sym_continue] = ACTIONS(2436), - [anon_sym_for] = ACTIONS(2436), - [anon_sym_in2] = ACTIONS(2436), - [anon_sym_loop] = ACTIONS(2436), - [anon_sym_make] = ACTIONS(2436), - [anon_sym_while] = ACTIONS(2436), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_if] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2436), - [anon_sym_match] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2436), - [anon_sym_catch] = ACTIONS(2436), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_source] = ACTIONS(2436), - [anon_sym_source_DASHenv] = ACTIONS(2436), - [anon_sym_register] = ACTIONS(2436), - [anon_sym_hide] = ACTIONS(2436), - [anon_sym_hide_DASHenv] = ACTIONS(2436), - [anon_sym_overlay] = ACTIONS(2436), - [anon_sym_as] = ACTIONS(2436), - [anon_sym_PLUS2] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2438), - [aux_sym__val_number_decimal_token1] = ACTIONS(2436), - [aux_sym__val_number_decimal_token2] = ACTIONS(2438), - [aux_sym__val_number_decimal_token3] = ACTIONS(2438), - [aux_sym__val_number_decimal_token4] = ACTIONS(2438), - [aux_sym__val_number_token1] = ACTIONS(2438), - [aux_sym__val_number_token2] = ACTIONS(2438), - [aux_sym__val_number_token3] = ACTIONS(2438), - [aux_sym__val_number_token4] = ACTIONS(2436), - [aux_sym__val_number_token5] = ACTIONS(2436), - [aux_sym__val_number_token6] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2438), - [sym__str_single_quotes] = ACTIONS(2438), - [sym__str_back_ticks] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2438), + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [aux_sym_cmd_identifier_token37] = ACTIONS(1536), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1536), + [aux_sym_cmd_identifier_token40] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1536), + [aux_sym__val_number_decimal_token3] = ACTIONS(1536), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), + [aux_sym_record_entry_token1] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1536), }, - [712] = { - [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2496), - [aux_sym_cmd_identifier_token3] = ACTIONS(2496), - [aux_sym_cmd_identifier_token4] = ACTIONS(2496), - [aux_sym_cmd_identifier_token5] = ACTIONS(2496), - [aux_sym_cmd_identifier_token6] = ACTIONS(2496), - [aux_sym_cmd_identifier_token7] = ACTIONS(2496), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2496), - [aux_sym_cmd_identifier_token11] = ACTIONS(2496), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2496), - [aux_sym_cmd_identifier_token17] = ACTIONS(2496), - [aux_sym_cmd_identifier_token18] = ACTIONS(2496), - [aux_sym_cmd_identifier_token19] = ACTIONS(2496), - [aux_sym_cmd_identifier_token20] = ACTIONS(2496), - [aux_sym_cmd_identifier_token21] = ACTIONS(2496), - [aux_sym_cmd_identifier_token22] = ACTIONS(2496), - [aux_sym_cmd_identifier_token23] = ACTIONS(2496), - [aux_sym_cmd_identifier_token24] = ACTIONS(2496), - [aux_sym_cmd_identifier_token25] = ACTIONS(2496), - [aux_sym_cmd_identifier_token26] = ACTIONS(2496), - [aux_sym_cmd_identifier_token27] = ACTIONS(2496), - [aux_sym_cmd_identifier_token28] = ACTIONS(2496), - [aux_sym_cmd_identifier_token29] = ACTIONS(2496), - [aux_sym_cmd_identifier_token30] = ACTIONS(2496), - [aux_sym_cmd_identifier_token31] = ACTIONS(2496), - [aux_sym_cmd_identifier_token32] = ACTIONS(2496), - [aux_sym_cmd_identifier_token33] = ACTIONS(2496), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2496), - [aux_sym_cmd_identifier_token36] = ACTIONS(2496), - [aux_sym_cmd_identifier_token37] = ACTIONS(2496), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2496), - [aux_sym_cmd_identifier_token40] = ACTIONS(2496), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_DASH2] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in2] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_PLUS2] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2496), - [aux_sym__val_number_decimal_token3] = ACTIONS(2496), - [aux_sym__val_number_decimal_token4] = ACTIONS(2496), - [aux_sym__val_number_token1] = ACTIONS(2496), - [aux_sym__val_number_token2] = ACTIONS(2496), - [aux_sym__val_number_token3] = ACTIONS(2496), - [aux_sym__val_number_token4] = ACTIONS(2494), - [aux_sym__val_number_token5] = ACTIONS(2494), - [aux_sym__val_number_token6] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2496), - [sym__str_single_quotes] = ACTIONS(2496), - [sym__str_back_ticks] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2496), + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1540), }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_alias] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_let_DASHenv] = ACTIONS(2498), - [anon_sym_mut] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [aux_sym_cmd_identifier_token1] = ACTIONS(2498), - [aux_sym_cmd_identifier_token2] = ACTIONS(2500), - [aux_sym_cmd_identifier_token3] = ACTIONS(2500), - [aux_sym_cmd_identifier_token4] = ACTIONS(2500), - [aux_sym_cmd_identifier_token5] = ACTIONS(2500), - [aux_sym_cmd_identifier_token6] = ACTIONS(2500), - [aux_sym_cmd_identifier_token7] = ACTIONS(2500), - [aux_sym_cmd_identifier_token8] = ACTIONS(2498), - [aux_sym_cmd_identifier_token9] = ACTIONS(2498), - [aux_sym_cmd_identifier_token10] = ACTIONS(2500), - [aux_sym_cmd_identifier_token11] = ACTIONS(2500), - [aux_sym_cmd_identifier_token12] = ACTIONS(2498), - [aux_sym_cmd_identifier_token13] = ACTIONS(2498), - [aux_sym_cmd_identifier_token14] = ACTIONS(2498), - [aux_sym_cmd_identifier_token15] = ACTIONS(2498), - [aux_sym_cmd_identifier_token16] = ACTIONS(2500), - [aux_sym_cmd_identifier_token17] = ACTIONS(2500), - [aux_sym_cmd_identifier_token18] = ACTIONS(2500), - [aux_sym_cmd_identifier_token19] = ACTIONS(2500), - [aux_sym_cmd_identifier_token20] = ACTIONS(2500), - [aux_sym_cmd_identifier_token21] = ACTIONS(2500), - [aux_sym_cmd_identifier_token22] = ACTIONS(2500), - [aux_sym_cmd_identifier_token23] = ACTIONS(2500), - [aux_sym_cmd_identifier_token24] = ACTIONS(2500), - [aux_sym_cmd_identifier_token25] = ACTIONS(2500), - [aux_sym_cmd_identifier_token26] = ACTIONS(2500), - [aux_sym_cmd_identifier_token27] = ACTIONS(2500), - [aux_sym_cmd_identifier_token28] = ACTIONS(2500), - [aux_sym_cmd_identifier_token29] = ACTIONS(2500), - [aux_sym_cmd_identifier_token30] = ACTIONS(2500), - [aux_sym_cmd_identifier_token31] = ACTIONS(2500), - [aux_sym_cmd_identifier_token32] = ACTIONS(2500), - [aux_sym_cmd_identifier_token33] = ACTIONS(2500), - [aux_sym_cmd_identifier_token34] = ACTIONS(2498), - [aux_sym_cmd_identifier_token35] = ACTIONS(2500), - [aux_sym_cmd_identifier_token36] = ACTIONS(2500), - [aux_sym_cmd_identifier_token37] = ACTIONS(2500), - [aux_sym_cmd_identifier_token38] = ACTIONS(2498), - [aux_sym_cmd_identifier_token39] = ACTIONS(2500), - [aux_sym_cmd_identifier_token40] = ACTIONS(2500), - [anon_sym_def] = ACTIONS(2498), - [anon_sym_export_DASHenv] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2500), - [anon_sym_error] = ACTIONS(2498), - [anon_sym_DASH2] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_in2] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_make] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_catch] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_source] = ACTIONS(2498), - [anon_sym_source_DASHenv] = ACTIONS(2498), - [anon_sym_register] = ACTIONS(2498), - [anon_sym_hide] = ACTIONS(2498), - [anon_sym_hide_DASHenv] = ACTIONS(2498), - [anon_sym_overlay] = ACTIONS(2498), - [anon_sym_as] = ACTIONS(2498), - [anon_sym_PLUS2] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), - [aux_sym__val_number_decimal_token1] = ACTIONS(2498), - [aux_sym__val_number_decimal_token2] = ACTIONS(2500), - [aux_sym__val_number_decimal_token3] = ACTIONS(2500), - [aux_sym__val_number_decimal_token4] = ACTIONS(2500), - [aux_sym__val_number_token1] = ACTIONS(2500), - [aux_sym__val_number_token2] = ACTIONS(2500), - [aux_sym__val_number_token3] = ACTIONS(2500), - [aux_sym__val_number_token4] = ACTIONS(2498), - [aux_sym__val_number_token5] = ACTIONS(2498), - [aux_sym__val_number_token6] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2500), - [sym__str_single_quotes] = ACTIONS(2500), - [sym__str_back_ticks] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2500), + [617] = { + [sym_comment] = STATE(617), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, - [714] = { - [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_alias] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_let_DASHenv] = ACTIONS(2514), - [anon_sym_mut] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [aux_sym_cmd_identifier_token1] = ACTIONS(2514), - [aux_sym_cmd_identifier_token2] = ACTIONS(2516), - [aux_sym_cmd_identifier_token3] = ACTIONS(2516), - [aux_sym_cmd_identifier_token4] = ACTIONS(2516), - [aux_sym_cmd_identifier_token5] = ACTIONS(2516), - [aux_sym_cmd_identifier_token6] = ACTIONS(2516), - [aux_sym_cmd_identifier_token7] = ACTIONS(2516), - [aux_sym_cmd_identifier_token8] = ACTIONS(2514), - [aux_sym_cmd_identifier_token9] = ACTIONS(2514), - [aux_sym_cmd_identifier_token10] = ACTIONS(2516), - [aux_sym_cmd_identifier_token11] = ACTIONS(2516), - [aux_sym_cmd_identifier_token12] = ACTIONS(2514), - [aux_sym_cmd_identifier_token13] = ACTIONS(2514), - [aux_sym_cmd_identifier_token14] = ACTIONS(2514), - [aux_sym_cmd_identifier_token15] = ACTIONS(2514), - [aux_sym_cmd_identifier_token16] = ACTIONS(2516), - [aux_sym_cmd_identifier_token17] = ACTIONS(2516), - [aux_sym_cmd_identifier_token18] = ACTIONS(2516), - [aux_sym_cmd_identifier_token19] = ACTIONS(2516), - [aux_sym_cmd_identifier_token20] = ACTIONS(2516), - [aux_sym_cmd_identifier_token21] = ACTIONS(2516), - [aux_sym_cmd_identifier_token22] = ACTIONS(2516), - [aux_sym_cmd_identifier_token23] = ACTIONS(2516), - [aux_sym_cmd_identifier_token24] = ACTIONS(2516), - [aux_sym_cmd_identifier_token25] = ACTIONS(2516), - [aux_sym_cmd_identifier_token26] = ACTIONS(2516), - [aux_sym_cmd_identifier_token27] = ACTIONS(2516), - [aux_sym_cmd_identifier_token28] = ACTIONS(2516), - [aux_sym_cmd_identifier_token29] = ACTIONS(2516), - [aux_sym_cmd_identifier_token30] = ACTIONS(2516), - [aux_sym_cmd_identifier_token31] = ACTIONS(2516), - [aux_sym_cmd_identifier_token32] = ACTIONS(2516), - [aux_sym_cmd_identifier_token33] = ACTIONS(2516), - [aux_sym_cmd_identifier_token34] = ACTIONS(2514), - [aux_sym_cmd_identifier_token35] = ACTIONS(2516), - [aux_sym_cmd_identifier_token36] = ACTIONS(2516), - [aux_sym_cmd_identifier_token37] = ACTIONS(2516), - [aux_sym_cmd_identifier_token38] = ACTIONS(2514), - [aux_sym_cmd_identifier_token39] = ACTIONS(2516), - [aux_sym_cmd_identifier_token40] = ACTIONS(2516), - [anon_sym_def] = ACTIONS(2514), - [anon_sym_export_DASHenv] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym_module] = ACTIONS(2514), - [anon_sym_use] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_DOLLAR] = ACTIONS(2516), - [anon_sym_error] = ACTIONS(2514), - [anon_sym_DASH2] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_in2] = ACTIONS(2514), - [anon_sym_loop] = ACTIONS(2514), - [anon_sym_make] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_match] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_catch] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_source] = ACTIONS(2514), - [anon_sym_source_DASHenv] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_hide] = ACTIONS(2514), - [anon_sym_hide_DASHenv] = ACTIONS(2514), - [anon_sym_overlay] = ACTIONS(2514), - [anon_sym_as] = ACTIONS(2514), - [anon_sym_PLUS2] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), - [aux_sym__val_number_decimal_token1] = ACTIONS(2514), - [aux_sym__val_number_decimal_token2] = ACTIONS(2516), - [aux_sym__val_number_decimal_token3] = ACTIONS(2516), - [aux_sym__val_number_decimal_token4] = ACTIONS(2516), - [aux_sym__val_number_token1] = ACTIONS(2516), - [aux_sym__val_number_token2] = ACTIONS(2516), - [aux_sym__val_number_token3] = ACTIONS(2516), - [aux_sym__val_number_token4] = ACTIONS(2514), - [aux_sym__val_number_token5] = ACTIONS(2514), - [aux_sym__val_number_token6] = ACTIONS(2514), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2516), + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1526), + [aux_sym_cmd_identifier_token3] = ACTIONS(1526), + [aux_sym_cmd_identifier_token4] = ACTIONS(1526), + [aux_sym_cmd_identifier_token5] = ACTIONS(1526), + [aux_sym_cmd_identifier_token6] = ACTIONS(1526), + [aux_sym_cmd_identifier_token7] = ACTIONS(1526), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1526), + [aux_sym_cmd_identifier_token11] = ACTIONS(1526), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1526), + [aux_sym_cmd_identifier_token17] = ACTIONS(1526), + [aux_sym_cmd_identifier_token18] = ACTIONS(1526), + [aux_sym_cmd_identifier_token19] = ACTIONS(1526), + [aux_sym_cmd_identifier_token20] = ACTIONS(1526), + [aux_sym_cmd_identifier_token21] = ACTIONS(1526), + [aux_sym_cmd_identifier_token22] = ACTIONS(1526), + [aux_sym_cmd_identifier_token23] = ACTIONS(1526), + [aux_sym_cmd_identifier_token24] = ACTIONS(1526), + [aux_sym_cmd_identifier_token25] = ACTIONS(1526), + [aux_sym_cmd_identifier_token26] = ACTIONS(1526), + [aux_sym_cmd_identifier_token27] = ACTIONS(1526), + [aux_sym_cmd_identifier_token28] = ACTIONS(1526), + [aux_sym_cmd_identifier_token29] = ACTIONS(1526), + [aux_sym_cmd_identifier_token30] = ACTIONS(1526), + [aux_sym_cmd_identifier_token31] = ACTIONS(1526), + [aux_sym_cmd_identifier_token32] = ACTIONS(1526), + [aux_sym_cmd_identifier_token33] = ACTIONS(1526), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1526), + [aux_sym_cmd_identifier_token36] = ACTIONS(1526), + [aux_sym_cmd_identifier_token37] = ACTIONS(1526), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1526), + [aux_sym_cmd_identifier_token40] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1526), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1526), + [aux_sym__val_number_decimal_token4] = ACTIONS(1526), + [aux_sym__val_number_token1] = ACTIONS(1526), + [aux_sym__val_number_token2] = ACTIONS(1526), + [aux_sym__val_number_token3] = ACTIONS(1526), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym__str_single_quotes] = ACTIONS(1526), + [sym__str_back_ticks] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1526), + [sym__entry_separator] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1528), }, - [715] = { - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_alias] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_let_DASHenv] = ACTIONS(2351), - [anon_sym_mut] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [aux_sym_cmd_identifier_token1] = ACTIONS(2351), - [aux_sym_cmd_identifier_token2] = ACTIONS(2353), - [aux_sym_cmd_identifier_token3] = ACTIONS(2353), - [aux_sym_cmd_identifier_token4] = ACTIONS(2353), - [aux_sym_cmd_identifier_token5] = ACTIONS(2353), - [aux_sym_cmd_identifier_token6] = ACTIONS(2353), - [aux_sym_cmd_identifier_token7] = ACTIONS(2353), - [aux_sym_cmd_identifier_token8] = ACTIONS(2351), - [aux_sym_cmd_identifier_token9] = ACTIONS(2351), - [aux_sym_cmd_identifier_token10] = ACTIONS(2353), - [aux_sym_cmd_identifier_token11] = ACTIONS(2353), - [aux_sym_cmd_identifier_token12] = ACTIONS(2351), - [aux_sym_cmd_identifier_token13] = ACTIONS(2351), - [aux_sym_cmd_identifier_token14] = ACTIONS(2351), - [aux_sym_cmd_identifier_token15] = ACTIONS(2351), - [aux_sym_cmd_identifier_token16] = ACTIONS(2353), - [aux_sym_cmd_identifier_token17] = ACTIONS(2353), - [aux_sym_cmd_identifier_token18] = ACTIONS(2353), - [aux_sym_cmd_identifier_token19] = ACTIONS(2353), - [aux_sym_cmd_identifier_token20] = ACTIONS(2353), - [aux_sym_cmd_identifier_token21] = ACTIONS(2353), - [aux_sym_cmd_identifier_token22] = ACTIONS(2353), - [aux_sym_cmd_identifier_token23] = ACTIONS(2353), - [aux_sym_cmd_identifier_token24] = ACTIONS(2353), - [aux_sym_cmd_identifier_token25] = ACTIONS(2353), - [aux_sym_cmd_identifier_token26] = ACTIONS(2353), - [aux_sym_cmd_identifier_token27] = ACTIONS(2353), - [aux_sym_cmd_identifier_token28] = ACTIONS(2353), - [aux_sym_cmd_identifier_token29] = ACTIONS(2353), - [aux_sym_cmd_identifier_token30] = ACTIONS(2353), - [aux_sym_cmd_identifier_token31] = ACTIONS(2353), - [aux_sym_cmd_identifier_token32] = ACTIONS(2353), - [aux_sym_cmd_identifier_token33] = ACTIONS(2353), - [aux_sym_cmd_identifier_token34] = ACTIONS(2351), - [aux_sym_cmd_identifier_token35] = ACTIONS(2353), - [aux_sym_cmd_identifier_token36] = ACTIONS(2353), - [aux_sym_cmd_identifier_token37] = ACTIONS(2353), - [aux_sym_cmd_identifier_token38] = ACTIONS(2351), - [aux_sym_cmd_identifier_token39] = ACTIONS(2353), - [aux_sym_cmd_identifier_token40] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_export_DASHenv] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_error] = ACTIONS(2351), - [anon_sym_DASH2] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_in2] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_make] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_catch] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_source] = ACTIONS(2351), - [anon_sym_source_DASHenv] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_hide_DASHenv] = ACTIONS(2351), - [anon_sym_overlay] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_PLUS2] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2353), - [aux_sym__val_number_decimal_token4] = ACTIONS(2353), - [aux_sym__val_number_token1] = ACTIONS(2353), - [aux_sym__val_number_token2] = ACTIONS(2353), - [aux_sym__val_number_token3] = ACTIONS(2353), - [aux_sym__val_number_token4] = ACTIONS(2351), - [aux_sym__val_number_token5] = ACTIONS(2351), - [aux_sym__val_number_token6] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__str_single_quotes] = ACTIONS(2353), - [sym__str_back_ticks] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2353), + [619] = { + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [716] = { - [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_DASHenv] = ACTIONS(2355), - [anon_sym_mut] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [aux_sym_cmd_identifier_token2] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [aux_sym_cmd_identifier_token6] = ACTIONS(2357), - [aux_sym_cmd_identifier_token7] = ACTIONS(2357), - [aux_sym_cmd_identifier_token8] = ACTIONS(2355), - [aux_sym_cmd_identifier_token9] = ACTIONS(2355), - [aux_sym_cmd_identifier_token10] = ACTIONS(2357), - [aux_sym_cmd_identifier_token11] = ACTIONS(2357), - [aux_sym_cmd_identifier_token12] = ACTIONS(2355), - [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2357), - [aux_sym_cmd_identifier_token17] = ACTIONS(2357), - [aux_sym_cmd_identifier_token18] = ACTIONS(2357), - [aux_sym_cmd_identifier_token19] = ACTIONS(2357), - [aux_sym_cmd_identifier_token20] = ACTIONS(2357), - [aux_sym_cmd_identifier_token21] = ACTIONS(2357), - [aux_sym_cmd_identifier_token22] = ACTIONS(2357), - [aux_sym_cmd_identifier_token23] = ACTIONS(2357), - [aux_sym_cmd_identifier_token24] = ACTIONS(2357), - [aux_sym_cmd_identifier_token25] = ACTIONS(2357), - [aux_sym_cmd_identifier_token26] = ACTIONS(2357), - [aux_sym_cmd_identifier_token27] = ACTIONS(2357), - [aux_sym_cmd_identifier_token28] = ACTIONS(2357), - [aux_sym_cmd_identifier_token29] = ACTIONS(2357), - [aux_sym_cmd_identifier_token30] = ACTIONS(2357), - [aux_sym_cmd_identifier_token31] = ACTIONS(2357), - [aux_sym_cmd_identifier_token32] = ACTIONS(2357), - [aux_sym_cmd_identifier_token33] = ACTIONS(2357), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2357), - [aux_sym_cmd_identifier_token36] = ACTIONS(2357), - [aux_sym_cmd_identifier_token37] = ACTIONS(2357), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2357), - [aux_sym_cmd_identifier_token40] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in2] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_PLUS2] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_decimal_token4] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [aux_sym__val_number_token4] = ACTIONS(2355), - [aux_sym__val_number_token5] = ACTIONS(2355), - [aux_sym__val_number_token6] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym__str_single_quotes] = ACTIONS(2357), - [sym__str_back_ticks] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2357), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_alias] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_let_DASHenv] = ACTIONS(2454), + [anon_sym_mut] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [aux_sym_cmd_identifier_token1] = ACTIONS(2454), + [aux_sym_cmd_identifier_token2] = ACTIONS(2454), + [aux_sym_cmd_identifier_token3] = ACTIONS(2454), + [aux_sym_cmd_identifier_token4] = ACTIONS(2454), + [aux_sym_cmd_identifier_token5] = ACTIONS(2454), + [aux_sym_cmd_identifier_token6] = ACTIONS(2454), + [aux_sym_cmd_identifier_token7] = ACTIONS(2454), + [aux_sym_cmd_identifier_token8] = ACTIONS(2454), + [aux_sym_cmd_identifier_token9] = ACTIONS(2454), + [aux_sym_cmd_identifier_token10] = ACTIONS(2454), + [aux_sym_cmd_identifier_token11] = ACTIONS(2454), + [aux_sym_cmd_identifier_token12] = ACTIONS(2454), + [aux_sym_cmd_identifier_token13] = ACTIONS(2454), + [aux_sym_cmd_identifier_token14] = ACTIONS(2454), + [aux_sym_cmd_identifier_token15] = ACTIONS(2454), + [aux_sym_cmd_identifier_token16] = ACTIONS(2454), + [aux_sym_cmd_identifier_token17] = ACTIONS(2454), + [aux_sym_cmd_identifier_token18] = ACTIONS(2454), + [aux_sym_cmd_identifier_token19] = ACTIONS(2454), + [aux_sym_cmd_identifier_token20] = ACTIONS(2454), + [aux_sym_cmd_identifier_token21] = ACTIONS(2454), + [aux_sym_cmd_identifier_token22] = ACTIONS(2454), + [aux_sym_cmd_identifier_token23] = ACTIONS(2454), + [aux_sym_cmd_identifier_token24] = ACTIONS(2454), + [aux_sym_cmd_identifier_token25] = ACTIONS(2454), + [aux_sym_cmd_identifier_token26] = ACTIONS(2454), + [aux_sym_cmd_identifier_token27] = ACTIONS(2454), + [aux_sym_cmd_identifier_token28] = ACTIONS(2454), + [aux_sym_cmd_identifier_token29] = ACTIONS(2454), + [aux_sym_cmd_identifier_token30] = ACTIONS(2454), + [aux_sym_cmd_identifier_token31] = ACTIONS(2454), + [aux_sym_cmd_identifier_token32] = ACTIONS(2454), + [aux_sym_cmd_identifier_token33] = ACTIONS(2454), + [aux_sym_cmd_identifier_token34] = ACTIONS(2454), + [aux_sym_cmd_identifier_token35] = ACTIONS(2454), + [aux_sym_cmd_identifier_token36] = ACTIONS(2454), + [aux_sym_cmd_identifier_token37] = ACTIONS(2454), + [aux_sym_cmd_identifier_token38] = ACTIONS(2454), + [aux_sym_cmd_identifier_token39] = ACTIONS(2454), + [aux_sym_cmd_identifier_token40] = ACTIONS(2454), + [anon_sym_def] = ACTIONS(2454), + [anon_sym_export_DASHenv] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_DOLLAR] = ACTIONS(2454), + [anon_sym_error] = ACTIONS(2454), + [anon_sym_DASH2] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in2] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_make] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_catch] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_source] = ACTIONS(2454), + [anon_sym_source_DASHenv] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_hide] = ACTIONS(2454), + [anon_sym_hide_DASHenv] = ACTIONS(2454), + [anon_sym_overlay] = ACTIONS(2454), + [anon_sym_as] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), + [aux_sym__val_number_decimal_token1] = ACTIONS(2454), + [aux_sym__val_number_decimal_token2] = ACTIONS(2454), + [aux_sym__val_number_decimal_token3] = ACTIONS(2454), + [aux_sym__val_number_decimal_token4] = ACTIONS(2454), + [aux_sym__val_number_token1] = ACTIONS(2454), + [aux_sym__val_number_token2] = ACTIONS(2454), + [aux_sym__val_number_token3] = ACTIONS(2454), + [aux_sym__val_number_token4] = ACTIONS(2454), + [aux_sym__val_number_token5] = ACTIONS(2454), + [aux_sym__val_number_token6] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [sym__str_single_quotes] = ACTIONS(2454), + [sym__str_back_ticks] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), + [sym__entry_separator] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2456), }, - [717] = { - [sym_comment] = STATE(717), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [aux_sym_cmd_identifier_token37] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH2] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in2] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS2] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2361), + [621] = { + [sym_comment] = STATE(621), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2433), }, - [718] = { - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [aux_sym_cmd_identifier_token37] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in2] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [aux_sym__val_number_token4] = ACTIONS(2363), - [aux_sym__val_number_token5] = ACTIONS(2363), - [aux_sym__val_number_token6] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2365), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, - [719] = { - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [aux_sym_cmd_identifier_token37] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, - [720] = { - [sym_comment] = STATE(720), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [aux_sym_cmd_identifier_token1] = ACTIONS(1863), - [aux_sym_cmd_identifier_token2] = ACTIONS(1865), - [aux_sym_cmd_identifier_token3] = ACTIONS(1865), - [aux_sym_cmd_identifier_token4] = ACTIONS(1865), - [aux_sym_cmd_identifier_token5] = ACTIONS(1865), - [aux_sym_cmd_identifier_token6] = ACTIONS(1865), - [aux_sym_cmd_identifier_token7] = ACTIONS(1865), - [aux_sym_cmd_identifier_token8] = ACTIONS(1863), - [aux_sym_cmd_identifier_token9] = ACTIONS(1863), - [aux_sym_cmd_identifier_token10] = ACTIONS(1865), - [aux_sym_cmd_identifier_token11] = ACTIONS(1865), - [aux_sym_cmd_identifier_token12] = ACTIONS(1863), - [aux_sym_cmd_identifier_token13] = ACTIONS(1863), - [aux_sym_cmd_identifier_token14] = ACTIONS(1863), - [aux_sym_cmd_identifier_token15] = ACTIONS(1863), - [aux_sym_cmd_identifier_token16] = ACTIONS(1865), - [aux_sym_cmd_identifier_token17] = ACTIONS(1865), - [aux_sym_cmd_identifier_token18] = ACTIONS(1865), - [aux_sym_cmd_identifier_token19] = ACTIONS(1865), - [aux_sym_cmd_identifier_token20] = ACTIONS(1865), - [aux_sym_cmd_identifier_token21] = ACTIONS(1865), - [aux_sym_cmd_identifier_token22] = ACTIONS(1865), - [aux_sym_cmd_identifier_token23] = ACTIONS(1865), - [aux_sym_cmd_identifier_token24] = ACTIONS(1865), - [aux_sym_cmd_identifier_token25] = ACTIONS(1865), - [aux_sym_cmd_identifier_token26] = ACTIONS(1865), - [aux_sym_cmd_identifier_token27] = ACTIONS(1865), - [aux_sym_cmd_identifier_token28] = ACTIONS(1865), - [aux_sym_cmd_identifier_token29] = ACTIONS(1865), - [aux_sym_cmd_identifier_token30] = ACTIONS(1865), - [aux_sym_cmd_identifier_token31] = ACTIONS(1865), - [aux_sym_cmd_identifier_token32] = ACTIONS(1865), - [aux_sym_cmd_identifier_token33] = ACTIONS(1865), - [aux_sym_cmd_identifier_token34] = ACTIONS(1863), - [aux_sym_cmd_identifier_token35] = ACTIONS(1865), - [aux_sym_cmd_identifier_token36] = ACTIONS(1865), - [aux_sym_cmd_identifier_token37] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1863), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_in2] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_make] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_catch] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1865), + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(2460), + [aux_sym__immediate_decimal_token2] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, - [721] = { - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [aux_sym_cmd_identifier_token2] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2400), - [aux_sym_cmd_identifier_token4] = ACTIONS(2400), - [aux_sym_cmd_identifier_token5] = ACTIONS(2400), - [aux_sym_cmd_identifier_token6] = ACTIONS(2400), - [aux_sym_cmd_identifier_token7] = ACTIONS(2400), - [aux_sym_cmd_identifier_token8] = ACTIONS(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [aux_sym_cmd_identifier_token16] = ACTIONS(2400), - [aux_sym_cmd_identifier_token17] = ACTIONS(2400), - [aux_sym_cmd_identifier_token18] = ACTIONS(2400), - [aux_sym_cmd_identifier_token19] = ACTIONS(2400), - [aux_sym_cmd_identifier_token20] = ACTIONS(2400), - [aux_sym_cmd_identifier_token21] = ACTIONS(2400), - [aux_sym_cmd_identifier_token22] = ACTIONS(2400), - [aux_sym_cmd_identifier_token23] = ACTIONS(2400), - [aux_sym_cmd_identifier_token24] = ACTIONS(2400), - [aux_sym_cmd_identifier_token25] = ACTIONS(2400), - [aux_sym_cmd_identifier_token26] = ACTIONS(2400), - [aux_sym_cmd_identifier_token27] = ACTIONS(2400), - [aux_sym_cmd_identifier_token28] = ACTIONS(2400), - [aux_sym_cmd_identifier_token29] = ACTIONS(2400), - [aux_sym_cmd_identifier_token30] = ACTIONS(2400), - [aux_sym_cmd_identifier_token31] = ACTIONS(2400), - [aux_sym_cmd_identifier_token32] = ACTIONS(2400), - [aux_sym_cmd_identifier_token33] = ACTIONS(2400), - [aux_sym_cmd_identifier_token34] = ACTIONS(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [aux_sym_cmd_identifier_token37] = ACTIONS(2400), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2400), - [aux_sym_cmd_identifier_token40] = ACTIONS(2400), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_DASH2] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in2] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_PLUS2] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), - [aux_sym__val_number_decimal_token1] = ACTIONS(2398), - [aux_sym__val_number_decimal_token2] = ACTIONS(2400), - [aux_sym__val_number_decimal_token3] = ACTIONS(2400), - [aux_sym__val_number_decimal_token4] = ACTIONS(2400), - [aux_sym__val_number_token1] = ACTIONS(2400), - [aux_sym__val_number_token2] = ACTIONS(2400), - [aux_sym__val_number_token3] = ACTIONS(2400), - [aux_sym__val_number_token4] = ACTIONS(2398), - [aux_sym__val_number_token5] = ACTIONS(2398), - [aux_sym__val_number_token6] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2400), - [sym__str_single_quotes] = ACTIONS(2400), - [sym__str_back_ticks] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2400), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1522), + [aux_sym_cmd_identifier_token3] = ACTIONS(1522), + [aux_sym_cmd_identifier_token4] = ACTIONS(1522), + [aux_sym_cmd_identifier_token5] = ACTIONS(1522), + [aux_sym_cmd_identifier_token6] = ACTIONS(1522), + [aux_sym_cmd_identifier_token7] = ACTIONS(1522), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1522), + [aux_sym_cmd_identifier_token11] = ACTIONS(1522), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1522), + [aux_sym_cmd_identifier_token17] = ACTIONS(1522), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1522), + [aux_sym_cmd_identifier_token20] = ACTIONS(1522), + [aux_sym_cmd_identifier_token21] = ACTIONS(1522), + [aux_sym_cmd_identifier_token22] = ACTIONS(1522), + [aux_sym_cmd_identifier_token23] = ACTIONS(1522), + [aux_sym_cmd_identifier_token24] = ACTIONS(1522), + [aux_sym_cmd_identifier_token25] = ACTIONS(1522), + [aux_sym_cmd_identifier_token26] = ACTIONS(1522), + [aux_sym_cmd_identifier_token27] = ACTIONS(1522), + [aux_sym_cmd_identifier_token28] = ACTIONS(1522), + [aux_sym_cmd_identifier_token29] = ACTIONS(1522), + [aux_sym_cmd_identifier_token30] = ACTIONS(1522), + [aux_sym_cmd_identifier_token31] = ACTIONS(1522), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1522), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1522), + [aux_sym_cmd_identifier_token36] = ACTIONS(1522), + [aux_sym_cmd_identifier_token37] = ACTIONS(1522), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1522), + [aux_sym_cmd_identifier_token40] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1522), + [aux_sym__val_number_decimal_token3] = ACTIONS(1522), + [aux_sym__val_number_decimal_token4] = ACTIONS(1522), + [aux_sym__val_number_token1] = ACTIONS(1522), + [aux_sym__val_number_token2] = ACTIONS(1522), + [aux_sym__val_number_token3] = ACTIONS(1522), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym__str_single_quotes] = ACTIONS(1522), + [sym__str_back_ticks] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1522), + [sym__entry_separator] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1524), }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2412), - [aux_sym_cmd_identifier_token3] = ACTIONS(2412), - [aux_sym_cmd_identifier_token4] = ACTIONS(2412), - [aux_sym_cmd_identifier_token5] = ACTIONS(2412), - [aux_sym_cmd_identifier_token6] = ACTIONS(2412), - [aux_sym_cmd_identifier_token7] = ACTIONS(2412), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2412), - [aux_sym_cmd_identifier_token11] = ACTIONS(2412), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2412), - [aux_sym_cmd_identifier_token17] = ACTIONS(2412), - [aux_sym_cmd_identifier_token18] = ACTIONS(2412), - [aux_sym_cmd_identifier_token19] = ACTIONS(2412), - [aux_sym_cmd_identifier_token20] = ACTIONS(2412), - [aux_sym_cmd_identifier_token21] = ACTIONS(2412), - [aux_sym_cmd_identifier_token22] = ACTIONS(2412), - [aux_sym_cmd_identifier_token23] = ACTIONS(2412), - [aux_sym_cmd_identifier_token24] = ACTIONS(2412), - [aux_sym_cmd_identifier_token25] = ACTIONS(2412), - [aux_sym_cmd_identifier_token26] = ACTIONS(2412), - [aux_sym_cmd_identifier_token27] = ACTIONS(2412), - [aux_sym_cmd_identifier_token28] = ACTIONS(2412), - [aux_sym_cmd_identifier_token29] = ACTIONS(2412), - [aux_sym_cmd_identifier_token30] = ACTIONS(2412), - [aux_sym_cmd_identifier_token31] = ACTIONS(2412), - [aux_sym_cmd_identifier_token32] = ACTIONS(2412), - [aux_sym_cmd_identifier_token33] = ACTIONS(2412), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2412), - [aux_sym_cmd_identifier_token36] = ACTIONS(2412), - [aux_sym_cmd_identifier_token37] = ACTIONS(2412), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2412), - [aux_sym_cmd_identifier_token40] = ACTIONS(2412), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2412), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_DASH2] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in2] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_PLUS2] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2412), - [aux_sym__val_number_decimal_token4] = ACTIONS(2412), - [aux_sym__val_number_token1] = ACTIONS(2412), - [aux_sym__val_number_token2] = ACTIONS(2412), - [aux_sym__val_number_token3] = ACTIONS(2412), - [aux_sym__val_number_token4] = ACTIONS(2410), - [aux_sym__val_number_token5] = ACTIONS(2410), - [aux_sym__val_number_token6] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2412), - [sym__str_single_quotes] = ACTIONS(2412), - [sym__str_back_ticks] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2412), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [aux_sym_cmd_identifier_token37] = ACTIONS(2416), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2416), - [aux_sym_cmd_identifier_token40] = ACTIONS(2416), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2416), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_DASH2] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in2] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_PLUS2] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [aux_sym__val_number_decimal_token2] = ACTIONS(2416), - [aux_sym__val_number_decimal_token3] = ACTIONS(2416), - [aux_sym__val_number_decimal_token4] = ACTIONS(2416), - [aux_sym__val_number_token1] = ACTIONS(2416), - [aux_sym__val_number_token2] = ACTIONS(2416), - [aux_sym__val_number_token3] = ACTIONS(2416), - [aux_sym__val_number_token4] = ACTIONS(2414), - [aux_sym__val_number_token5] = ACTIONS(2414), - [aux_sym__val_number_token6] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym__str_single_quotes] = ACTIONS(2416), - [sym__str_back_ticks] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2416), + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(2464), + [aux_sym__immediate_decimal_token2] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [aux_sym_cmd_identifier_token37] = ACTIONS(2420), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2420), - [aux_sym_cmd_identifier_token40] = ACTIONS(2420), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in2] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [aux_sym__val_number_decimal_token2] = ACTIONS(2420), - [aux_sym__val_number_decimal_token3] = ACTIONS(2420), - [aux_sym__val_number_decimal_token4] = ACTIONS(2420), - [aux_sym__val_number_token1] = ACTIONS(2420), - [aux_sym__val_number_token2] = ACTIONS(2420), - [aux_sym__val_number_token3] = ACTIONS(2420), - [aux_sym__val_number_token4] = ACTIONS(2418), - [aux_sym__val_number_token5] = ACTIONS(2418), - [aux_sym__val_number_token6] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2420), - [sym__str_single_quotes] = ACTIONS(2420), - [sym__str_back_ticks] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2420), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2407), + [aux_sym_cmd_identifier_token3] = ACTIONS(2407), + [aux_sym_cmd_identifier_token4] = ACTIONS(2407), + [aux_sym_cmd_identifier_token5] = ACTIONS(2407), + [aux_sym_cmd_identifier_token6] = ACTIONS(2407), + [aux_sym_cmd_identifier_token7] = ACTIONS(2407), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2407), + [aux_sym_cmd_identifier_token17] = ACTIONS(2407), + [aux_sym_cmd_identifier_token18] = ACTIONS(2407), + [aux_sym_cmd_identifier_token19] = ACTIONS(2407), + [aux_sym_cmd_identifier_token20] = ACTIONS(2407), + [aux_sym_cmd_identifier_token21] = ACTIONS(2407), + [aux_sym_cmd_identifier_token22] = ACTIONS(2407), + [aux_sym_cmd_identifier_token23] = ACTIONS(2407), + [aux_sym_cmd_identifier_token24] = ACTIONS(2407), + [aux_sym_cmd_identifier_token25] = ACTIONS(2407), + [aux_sym_cmd_identifier_token26] = ACTIONS(2407), + [aux_sym_cmd_identifier_token27] = ACTIONS(2407), + [aux_sym_cmd_identifier_token28] = ACTIONS(2407), + [aux_sym_cmd_identifier_token29] = ACTIONS(2407), + [aux_sym_cmd_identifier_token30] = ACTIONS(2407), + [aux_sym_cmd_identifier_token31] = ACTIONS(2407), + [aux_sym_cmd_identifier_token32] = ACTIONS(2407), + [aux_sym_cmd_identifier_token33] = ACTIONS(2407), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2407), + [aux_sym_cmd_identifier_token36] = ACTIONS(2407), + [aux_sym_cmd_identifier_token37] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2409), }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_alias] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_let_DASHenv] = ACTIONS(2430), - [anon_sym_mut] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [aux_sym_cmd_identifier_token1] = ACTIONS(2430), - [aux_sym_cmd_identifier_token2] = ACTIONS(2432), - [aux_sym_cmd_identifier_token3] = ACTIONS(2432), - [aux_sym_cmd_identifier_token4] = ACTIONS(2432), - [aux_sym_cmd_identifier_token5] = ACTIONS(2432), - [aux_sym_cmd_identifier_token6] = ACTIONS(2432), - [aux_sym_cmd_identifier_token7] = ACTIONS(2432), - [aux_sym_cmd_identifier_token8] = ACTIONS(2430), - [aux_sym_cmd_identifier_token9] = ACTIONS(2430), - [aux_sym_cmd_identifier_token10] = ACTIONS(2432), - [aux_sym_cmd_identifier_token11] = ACTIONS(2432), - [aux_sym_cmd_identifier_token12] = ACTIONS(2430), - [aux_sym_cmd_identifier_token13] = ACTIONS(2430), - [aux_sym_cmd_identifier_token14] = ACTIONS(2430), - [aux_sym_cmd_identifier_token15] = ACTIONS(2430), - [aux_sym_cmd_identifier_token16] = ACTIONS(2432), - [aux_sym_cmd_identifier_token17] = ACTIONS(2432), - [aux_sym_cmd_identifier_token18] = ACTIONS(2432), - [aux_sym_cmd_identifier_token19] = ACTIONS(2432), - [aux_sym_cmd_identifier_token20] = ACTIONS(2432), - [aux_sym_cmd_identifier_token21] = ACTIONS(2432), - [aux_sym_cmd_identifier_token22] = ACTIONS(2432), - [aux_sym_cmd_identifier_token23] = ACTIONS(2432), - [aux_sym_cmd_identifier_token24] = ACTIONS(2432), - [aux_sym_cmd_identifier_token25] = ACTIONS(2432), - [aux_sym_cmd_identifier_token26] = ACTIONS(2432), - [aux_sym_cmd_identifier_token27] = ACTIONS(2432), - [aux_sym_cmd_identifier_token28] = ACTIONS(2432), - [aux_sym_cmd_identifier_token29] = ACTIONS(2432), - [aux_sym_cmd_identifier_token30] = ACTIONS(2432), - [aux_sym_cmd_identifier_token31] = ACTIONS(2432), - [aux_sym_cmd_identifier_token32] = ACTIONS(2432), - [aux_sym_cmd_identifier_token33] = ACTIONS(2432), - [aux_sym_cmd_identifier_token34] = ACTIONS(2430), - [aux_sym_cmd_identifier_token35] = ACTIONS(2432), - [aux_sym_cmd_identifier_token36] = ACTIONS(2432), - [aux_sym_cmd_identifier_token37] = ACTIONS(2432), - [aux_sym_cmd_identifier_token38] = ACTIONS(2430), - [aux_sym_cmd_identifier_token39] = ACTIONS(2432), - [aux_sym_cmd_identifier_token40] = ACTIONS(2432), - [anon_sym_def] = ACTIONS(2430), - [anon_sym_export_DASHenv] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_DOLLAR] = ACTIONS(2432), - [anon_sym_error] = ACTIONS(2430), - [anon_sym_DASH2] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_in2] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_make] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_catch] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_source] = ACTIONS(2430), - [anon_sym_source_DASHenv] = ACTIONS(2430), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_hide] = ACTIONS(2430), - [anon_sym_hide_DASHenv] = ACTIONS(2430), - [anon_sym_overlay] = ACTIONS(2430), - [anon_sym_as] = ACTIONS(2430), - [anon_sym_PLUS2] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), - [aux_sym__val_number_decimal_token1] = ACTIONS(2430), - [aux_sym__val_number_decimal_token2] = ACTIONS(2432), - [aux_sym__val_number_decimal_token3] = ACTIONS(2432), - [aux_sym__val_number_decimal_token4] = ACTIONS(2432), - [aux_sym__val_number_token1] = ACTIONS(2432), - [aux_sym__val_number_token2] = ACTIONS(2432), - [aux_sym__val_number_token3] = ACTIONS(2432), - [aux_sym__val_number_token4] = ACTIONS(2430), - [aux_sym__val_number_token5] = ACTIONS(2430), - [aux_sym__val_number_token6] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2432), - [sym__str_single_quotes] = ACTIONS(2432), - [sym__str_back_ticks] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2432), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2308), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [sym__entry_separator] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2310), }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in2] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1847), - [aux_sym__val_number_token5] = ACTIONS(1847), - [aux_sym__val_number_token6] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1851), + [630] = { + [sym_comment] = STATE(630), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [aux_sym_cmd_identifier_token37] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1512), }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_alias] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_let_DASHenv] = ACTIONS(2456), - [anon_sym_mut] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [aux_sym_cmd_identifier_token1] = ACTIONS(2456), - [aux_sym_cmd_identifier_token2] = ACTIONS(2458), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [aux_sym_cmd_identifier_token6] = ACTIONS(2458), - [aux_sym_cmd_identifier_token7] = ACTIONS(2458), - [aux_sym_cmd_identifier_token8] = ACTIONS(2456), - [aux_sym_cmd_identifier_token9] = ACTIONS(2456), - [aux_sym_cmd_identifier_token10] = ACTIONS(2458), - [aux_sym_cmd_identifier_token11] = ACTIONS(2458), - [aux_sym_cmd_identifier_token12] = ACTIONS(2456), - [aux_sym_cmd_identifier_token13] = ACTIONS(2456), - [aux_sym_cmd_identifier_token14] = ACTIONS(2456), - [aux_sym_cmd_identifier_token15] = ACTIONS(2456), - [aux_sym_cmd_identifier_token16] = ACTIONS(2458), - [aux_sym_cmd_identifier_token17] = ACTIONS(2458), - [aux_sym_cmd_identifier_token18] = ACTIONS(2458), - [aux_sym_cmd_identifier_token19] = ACTIONS(2458), - [aux_sym_cmd_identifier_token20] = ACTIONS(2458), - [aux_sym_cmd_identifier_token21] = ACTIONS(2458), - [aux_sym_cmd_identifier_token22] = ACTIONS(2458), - [aux_sym_cmd_identifier_token23] = ACTIONS(2458), - [aux_sym_cmd_identifier_token24] = ACTIONS(2458), - [aux_sym_cmd_identifier_token25] = ACTIONS(2458), - [aux_sym_cmd_identifier_token26] = ACTIONS(2458), - [aux_sym_cmd_identifier_token27] = ACTIONS(2458), - [aux_sym_cmd_identifier_token28] = ACTIONS(2458), - [aux_sym_cmd_identifier_token29] = ACTIONS(2458), - [aux_sym_cmd_identifier_token30] = ACTIONS(2458), - [aux_sym_cmd_identifier_token31] = ACTIONS(2458), - [aux_sym_cmd_identifier_token32] = ACTIONS(2458), - [aux_sym_cmd_identifier_token33] = ACTIONS(2458), - [aux_sym_cmd_identifier_token34] = ACTIONS(2456), - [aux_sym_cmd_identifier_token35] = ACTIONS(2458), - [aux_sym_cmd_identifier_token36] = ACTIONS(2458), - [aux_sym_cmd_identifier_token37] = ACTIONS(2458), - [aux_sym_cmd_identifier_token38] = ACTIONS(2456), - [aux_sym_cmd_identifier_token39] = ACTIONS(2458), - [aux_sym_cmd_identifier_token40] = ACTIONS(2458), - [anon_sym_def] = ACTIONS(2456), - [anon_sym_export_DASHenv] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2458), - [anon_sym_error] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_in2] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_make] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_source] = ACTIONS(2456), - [anon_sym_source_DASHenv] = ACTIONS(2456), - [anon_sym_register] = ACTIONS(2456), - [anon_sym_hide] = ACTIONS(2456), - [anon_sym_hide_DASHenv] = ACTIONS(2456), - [anon_sym_overlay] = ACTIONS(2456), - [anon_sym_as] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), - [aux_sym__val_number_decimal_token1] = ACTIONS(2456), - [aux_sym__val_number_decimal_token2] = ACTIONS(2458), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2458), - [aux_sym__val_number_token2] = ACTIONS(2458), - [aux_sym__val_number_token3] = ACTIONS(2458), - [aux_sym__val_number_token4] = ACTIONS(2456), - [aux_sym__val_number_token5] = ACTIONS(2456), - [aux_sym__val_number_token6] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2458), - [sym__str_single_quotes] = ACTIONS(2458), - [sym__str_back_ticks] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2458), + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2468), + [aux_sym_cmd_identifier_token3] = ACTIONS(2468), + [aux_sym_cmd_identifier_token4] = ACTIONS(2468), + [aux_sym_cmd_identifier_token5] = ACTIONS(2468), + [aux_sym_cmd_identifier_token6] = ACTIONS(2468), + [aux_sym_cmd_identifier_token7] = ACTIONS(2468), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2468), + [aux_sym_cmd_identifier_token11] = ACTIONS(2468), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2468), + [aux_sym_cmd_identifier_token17] = ACTIONS(2468), + [aux_sym_cmd_identifier_token18] = ACTIONS(2468), + [aux_sym_cmd_identifier_token19] = ACTIONS(2468), + [aux_sym_cmd_identifier_token20] = ACTIONS(2468), + [aux_sym_cmd_identifier_token21] = ACTIONS(2468), + [aux_sym_cmd_identifier_token22] = ACTIONS(2468), + [aux_sym_cmd_identifier_token23] = ACTIONS(2468), + [aux_sym_cmd_identifier_token24] = ACTIONS(2468), + [aux_sym_cmd_identifier_token25] = ACTIONS(2468), + [aux_sym_cmd_identifier_token26] = ACTIONS(2468), + [aux_sym_cmd_identifier_token27] = ACTIONS(2468), + [aux_sym_cmd_identifier_token28] = ACTIONS(2468), + [aux_sym_cmd_identifier_token29] = ACTIONS(2468), + [aux_sym_cmd_identifier_token30] = ACTIONS(2468), + [aux_sym_cmd_identifier_token31] = ACTIONS(2468), + [aux_sym_cmd_identifier_token32] = ACTIONS(2468), + [aux_sym_cmd_identifier_token33] = ACTIONS(2468), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2468), + [aux_sym_cmd_identifier_token36] = ACTIONS(2468), + [aux_sym_cmd_identifier_token37] = ACTIONS(2468), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2468), + [aux_sym_cmd_identifier_token40] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_DOLLAR] = ACTIONS(2468), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [aux_sym__val_number_decimal_token2] = ACTIONS(2468), + [aux_sym__val_number_decimal_token3] = ACTIONS(2468), + [aux_sym__val_number_decimal_token4] = ACTIONS(2468), + [aux_sym__val_number_token1] = ACTIONS(2468), + [aux_sym__val_number_token2] = ACTIONS(2468), + [aux_sym__val_number_token3] = ACTIONS(2468), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2468), + [sym__str_single_quotes] = ACTIONS(2468), + [sym__str_back_ticks] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), + [sym__entry_separator] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2470), }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2466), - [aux_sym_cmd_identifier_token3] = ACTIONS(2466), - [aux_sym_cmd_identifier_token4] = ACTIONS(2466), - [aux_sym_cmd_identifier_token5] = ACTIONS(2466), - [aux_sym_cmd_identifier_token6] = ACTIONS(2466), - [aux_sym_cmd_identifier_token7] = ACTIONS(2466), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2466), - [aux_sym_cmd_identifier_token11] = ACTIONS(2466), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2466), - [aux_sym_cmd_identifier_token17] = ACTIONS(2466), - [aux_sym_cmd_identifier_token18] = ACTIONS(2466), - [aux_sym_cmd_identifier_token19] = ACTIONS(2466), - [aux_sym_cmd_identifier_token20] = ACTIONS(2466), - [aux_sym_cmd_identifier_token21] = ACTIONS(2466), - [aux_sym_cmd_identifier_token22] = ACTIONS(2466), - [aux_sym_cmd_identifier_token23] = ACTIONS(2466), - [aux_sym_cmd_identifier_token24] = ACTIONS(2466), - [aux_sym_cmd_identifier_token25] = ACTIONS(2466), - [aux_sym_cmd_identifier_token26] = ACTIONS(2466), - [aux_sym_cmd_identifier_token27] = ACTIONS(2466), - [aux_sym_cmd_identifier_token28] = ACTIONS(2466), - [aux_sym_cmd_identifier_token29] = ACTIONS(2466), - [aux_sym_cmd_identifier_token30] = ACTIONS(2466), - [aux_sym_cmd_identifier_token31] = ACTIONS(2466), - [aux_sym_cmd_identifier_token32] = ACTIONS(2466), - [aux_sym_cmd_identifier_token33] = ACTIONS(2466), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2466), - [aux_sym_cmd_identifier_token36] = ACTIONS(2466), - [aux_sym_cmd_identifier_token37] = ACTIONS(2466), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2466), - [aux_sym_cmd_identifier_token40] = ACTIONS(2466), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_DOLLAR] = ACTIONS(2466), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2466), - [aux_sym__val_number_decimal_token3] = ACTIONS(2466), - [aux_sym__val_number_decimal_token4] = ACTIONS(2466), - [aux_sym__val_number_token1] = ACTIONS(2466), - [aux_sym__val_number_token2] = ACTIONS(2466), - [aux_sym__val_number_token3] = ACTIONS(2466), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym__str_single_quotes] = ACTIONS(2466), - [sym__str_back_ticks] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2466), + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1506), + [aux_sym_cmd_identifier_token3] = ACTIONS(1506), + [aux_sym_cmd_identifier_token4] = ACTIONS(1506), + [aux_sym_cmd_identifier_token5] = ACTIONS(1506), + [aux_sym_cmd_identifier_token6] = ACTIONS(1506), + [aux_sym_cmd_identifier_token7] = ACTIONS(1506), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1506), + [aux_sym_cmd_identifier_token11] = ACTIONS(1506), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1506), + [aux_sym_cmd_identifier_token17] = ACTIONS(1506), + [aux_sym_cmd_identifier_token18] = ACTIONS(1506), + [aux_sym_cmd_identifier_token19] = ACTIONS(1506), + [aux_sym_cmd_identifier_token20] = ACTIONS(1506), + [aux_sym_cmd_identifier_token21] = ACTIONS(1506), + [aux_sym_cmd_identifier_token22] = ACTIONS(1506), + [aux_sym_cmd_identifier_token23] = ACTIONS(1506), + [aux_sym_cmd_identifier_token24] = ACTIONS(1506), + [aux_sym_cmd_identifier_token25] = ACTIONS(1506), + [aux_sym_cmd_identifier_token26] = ACTIONS(1506), + [aux_sym_cmd_identifier_token27] = ACTIONS(1506), + [aux_sym_cmd_identifier_token28] = ACTIONS(1506), + [aux_sym_cmd_identifier_token29] = ACTIONS(1506), + [aux_sym_cmd_identifier_token30] = ACTIONS(1506), + [aux_sym_cmd_identifier_token31] = ACTIONS(1506), + [aux_sym_cmd_identifier_token32] = ACTIONS(1506), + [aux_sym_cmd_identifier_token33] = ACTIONS(1506), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1506), + [aux_sym_cmd_identifier_token36] = ACTIONS(1506), + [aux_sym_cmd_identifier_token37] = ACTIONS(1506), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1506), + [aux_sym_cmd_identifier_token40] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1506), + [aux_sym__val_number_decimal_token3] = ACTIONS(1506), + [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_token1] = ACTIONS(1506), + [aux_sym__val_number_token2] = ACTIONS(1506), + [aux_sym__val_number_token3] = ACTIONS(1506), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym__str_single_quotes] = ACTIONS(1506), + [sym__str_back_ticks] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), + [sym__entry_separator] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1508), }, - [729] = { - [sym_comment] = STATE(729), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_alias] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_let_DASHenv] = ACTIONS(2464), - [anon_sym_mut] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [aux_sym_cmd_identifier_token1] = ACTIONS(2464), - [aux_sym_cmd_identifier_token2] = ACTIONS(2466), - [aux_sym_cmd_identifier_token3] = ACTIONS(2466), - [aux_sym_cmd_identifier_token4] = ACTIONS(2466), - [aux_sym_cmd_identifier_token5] = ACTIONS(2466), - [aux_sym_cmd_identifier_token6] = ACTIONS(2466), - [aux_sym_cmd_identifier_token7] = ACTIONS(2466), - [aux_sym_cmd_identifier_token8] = ACTIONS(2464), - [aux_sym_cmd_identifier_token9] = ACTIONS(2464), - [aux_sym_cmd_identifier_token10] = ACTIONS(2466), - [aux_sym_cmd_identifier_token11] = ACTIONS(2466), - [aux_sym_cmd_identifier_token12] = ACTIONS(2464), - [aux_sym_cmd_identifier_token13] = ACTIONS(2464), - [aux_sym_cmd_identifier_token14] = ACTIONS(2464), - [aux_sym_cmd_identifier_token15] = ACTIONS(2464), - [aux_sym_cmd_identifier_token16] = ACTIONS(2466), - [aux_sym_cmd_identifier_token17] = ACTIONS(2466), - [aux_sym_cmd_identifier_token18] = ACTIONS(2466), - [aux_sym_cmd_identifier_token19] = ACTIONS(2466), - [aux_sym_cmd_identifier_token20] = ACTIONS(2466), - [aux_sym_cmd_identifier_token21] = ACTIONS(2466), - [aux_sym_cmd_identifier_token22] = ACTIONS(2466), - [aux_sym_cmd_identifier_token23] = ACTIONS(2466), - [aux_sym_cmd_identifier_token24] = ACTIONS(2466), - [aux_sym_cmd_identifier_token25] = ACTIONS(2466), - [aux_sym_cmd_identifier_token26] = ACTIONS(2466), - [aux_sym_cmd_identifier_token27] = ACTIONS(2466), - [aux_sym_cmd_identifier_token28] = ACTIONS(2466), - [aux_sym_cmd_identifier_token29] = ACTIONS(2466), - [aux_sym_cmd_identifier_token30] = ACTIONS(2466), - [aux_sym_cmd_identifier_token31] = ACTIONS(2466), - [aux_sym_cmd_identifier_token32] = ACTIONS(2466), - [aux_sym_cmd_identifier_token33] = ACTIONS(2466), - [aux_sym_cmd_identifier_token34] = ACTIONS(2464), - [aux_sym_cmd_identifier_token35] = ACTIONS(2466), - [aux_sym_cmd_identifier_token36] = ACTIONS(2466), - [aux_sym_cmd_identifier_token37] = ACTIONS(2466), - [aux_sym_cmd_identifier_token38] = ACTIONS(2464), - [aux_sym_cmd_identifier_token39] = ACTIONS(2466), - [aux_sym_cmd_identifier_token40] = ACTIONS(2466), - [anon_sym_def] = ACTIONS(2464), - [anon_sym_export_DASHenv] = ACTIONS(2464), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_use] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_DOLLAR] = ACTIONS(2466), - [anon_sym_error] = ACTIONS(2464), - [anon_sym_DASH2] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_in2] = ACTIONS(2464), - [anon_sym_loop] = ACTIONS(2464), - [anon_sym_make] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_match] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_source] = ACTIONS(2464), - [anon_sym_source_DASHenv] = ACTIONS(2464), - [anon_sym_register] = ACTIONS(2464), - [anon_sym_hide] = ACTIONS(2464), - [anon_sym_hide_DASHenv] = ACTIONS(2464), - [anon_sym_overlay] = ACTIONS(2464), - [anon_sym_as] = ACTIONS(2464), - [anon_sym_PLUS2] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), - [aux_sym__val_number_decimal_token1] = ACTIONS(2464), - [aux_sym__val_number_decimal_token2] = ACTIONS(2466), - [aux_sym__val_number_decimal_token3] = ACTIONS(2466), - [aux_sym__val_number_decimal_token4] = ACTIONS(2466), - [aux_sym__val_number_token1] = ACTIONS(2466), - [aux_sym__val_number_token2] = ACTIONS(2466), - [aux_sym__val_number_token3] = ACTIONS(2466), - [aux_sym__val_number_token4] = ACTIONS(2464), - [aux_sym__val_number_token5] = ACTIONS(2464), - [aux_sym__val_number_token6] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym__str_single_quotes] = ACTIONS(2466), - [sym__str_back_ticks] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2466), + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1514), + [aux_sym_cmd_identifier_token3] = ACTIONS(1514), + [aux_sym_cmd_identifier_token4] = ACTIONS(1514), + [aux_sym_cmd_identifier_token5] = ACTIONS(1514), + [aux_sym_cmd_identifier_token6] = ACTIONS(1514), + [aux_sym_cmd_identifier_token7] = ACTIONS(1514), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1514), + [aux_sym_cmd_identifier_token11] = ACTIONS(1514), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1514), + [aux_sym_cmd_identifier_token17] = ACTIONS(1514), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1514), + [aux_sym_cmd_identifier_token20] = ACTIONS(1514), + [aux_sym_cmd_identifier_token21] = ACTIONS(1514), + [aux_sym_cmd_identifier_token22] = ACTIONS(1514), + [aux_sym_cmd_identifier_token23] = ACTIONS(1514), + [aux_sym_cmd_identifier_token24] = ACTIONS(1514), + [aux_sym_cmd_identifier_token25] = ACTIONS(1514), + [aux_sym_cmd_identifier_token26] = ACTIONS(1514), + [aux_sym_cmd_identifier_token27] = ACTIONS(1514), + [aux_sym_cmd_identifier_token28] = ACTIONS(1514), + [aux_sym_cmd_identifier_token29] = ACTIONS(1514), + [aux_sym_cmd_identifier_token30] = ACTIONS(1514), + [aux_sym_cmd_identifier_token31] = ACTIONS(1514), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1514), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1514), + [aux_sym_cmd_identifier_token36] = ACTIONS(1514), + [aux_sym_cmd_identifier_token37] = ACTIONS(1514), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1514), + [aux_sym_cmd_identifier_token40] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1514), + [aux_sym__val_number_decimal_token3] = ACTIONS(1514), + [aux_sym__val_number_decimal_token4] = ACTIONS(1514), + [aux_sym__val_number_token1] = ACTIONS(1514), + [aux_sym__val_number_token2] = ACTIONS(1514), + [aux_sym__val_number_token3] = ACTIONS(1514), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym__str_single_quotes] = ACTIONS(1514), + [sym__str_back_ticks] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1514), + [sym__entry_separator] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1516), }, - [730] = { - [sym_comment] = STATE(730), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2468), + [aux_sym_cmd_identifier_token3] = ACTIONS(2468), + [aux_sym_cmd_identifier_token4] = ACTIONS(2468), + [aux_sym_cmd_identifier_token5] = ACTIONS(2468), + [aux_sym_cmd_identifier_token6] = ACTIONS(2468), + [aux_sym_cmd_identifier_token7] = ACTIONS(2468), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2468), + [aux_sym_cmd_identifier_token11] = ACTIONS(2468), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2468), + [aux_sym_cmd_identifier_token17] = ACTIONS(2468), + [aux_sym_cmd_identifier_token18] = ACTIONS(2468), + [aux_sym_cmd_identifier_token19] = ACTIONS(2468), + [aux_sym_cmd_identifier_token20] = ACTIONS(2468), + [aux_sym_cmd_identifier_token21] = ACTIONS(2468), + [aux_sym_cmd_identifier_token22] = ACTIONS(2468), + [aux_sym_cmd_identifier_token23] = ACTIONS(2468), + [aux_sym_cmd_identifier_token24] = ACTIONS(2468), + [aux_sym_cmd_identifier_token25] = ACTIONS(2468), + [aux_sym_cmd_identifier_token26] = ACTIONS(2468), + [aux_sym_cmd_identifier_token27] = ACTIONS(2468), + [aux_sym_cmd_identifier_token28] = ACTIONS(2468), + [aux_sym_cmd_identifier_token29] = ACTIONS(2468), + [aux_sym_cmd_identifier_token30] = ACTIONS(2468), + [aux_sym_cmd_identifier_token31] = ACTIONS(2468), + [aux_sym_cmd_identifier_token32] = ACTIONS(2468), + [aux_sym_cmd_identifier_token33] = ACTIONS(2468), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2468), + [aux_sym_cmd_identifier_token36] = ACTIONS(2468), + [aux_sym_cmd_identifier_token37] = ACTIONS(2468), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2468), + [aux_sym_cmd_identifier_token40] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_DOLLAR] = ACTIONS(2468), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [aux_sym__val_number_decimal_token2] = ACTIONS(2468), + [aux_sym__val_number_decimal_token3] = ACTIONS(2468), + [aux_sym__val_number_decimal_token4] = ACTIONS(2468), + [aux_sym__val_number_token1] = ACTIONS(2468), + [aux_sym__val_number_token2] = ACTIONS(2468), + [aux_sym__val_number_token3] = ACTIONS(2468), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2468), + [sym__str_single_quotes] = ACTIONS(2468), + [sym__str_back_ticks] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), + [sym__entry_separator] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2470), + }, + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1496), + [aux_sym_cmd_identifier_token3] = ACTIONS(1496), + [aux_sym_cmd_identifier_token4] = ACTIONS(1496), + [aux_sym_cmd_identifier_token5] = ACTIONS(1496), + [aux_sym_cmd_identifier_token6] = ACTIONS(1496), + [aux_sym_cmd_identifier_token7] = ACTIONS(1496), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1496), + [aux_sym_cmd_identifier_token11] = ACTIONS(1496), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1496), + [aux_sym_cmd_identifier_token17] = ACTIONS(1496), + [aux_sym_cmd_identifier_token18] = ACTIONS(1496), + [aux_sym_cmd_identifier_token19] = ACTIONS(1496), + [aux_sym_cmd_identifier_token20] = ACTIONS(1496), + [aux_sym_cmd_identifier_token21] = ACTIONS(1496), + [aux_sym_cmd_identifier_token22] = ACTIONS(1496), + [aux_sym_cmd_identifier_token23] = ACTIONS(1496), + [aux_sym_cmd_identifier_token24] = ACTIONS(1496), + [aux_sym_cmd_identifier_token25] = ACTIONS(1496), + [aux_sym_cmd_identifier_token26] = ACTIONS(1496), + [aux_sym_cmd_identifier_token27] = ACTIONS(1496), + [aux_sym_cmd_identifier_token28] = ACTIONS(1496), + [aux_sym_cmd_identifier_token29] = ACTIONS(1496), + [aux_sym_cmd_identifier_token30] = ACTIONS(1496), + [aux_sym_cmd_identifier_token31] = ACTIONS(1496), + [aux_sym_cmd_identifier_token32] = ACTIONS(1496), + [aux_sym_cmd_identifier_token33] = ACTIONS(1496), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1496), + [aux_sym_cmd_identifier_token36] = ACTIONS(1496), + [aux_sym_cmd_identifier_token37] = ACTIONS(1496), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1496), + [aux_sym_cmd_identifier_token40] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1496), + [aux_sym__val_number_decimal_token3] = ACTIONS(1496), + [aux_sym__val_number_decimal_token4] = ACTIONS(1496), + [aux_sym__val_number_token1] = ACTIONS(1496), + [aux_sym__val_number_token2] = ACTIONS(1496), + [aux_sym__val_number_token3] = ACTIONS(1496), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym__str_single_quotes] = ACTIONS(1496), + [sym__str_back_ticks] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1498), + }, + [636] = { + [sym_comment] = STATE(636), [anon_sym_export] = ACTIONS(2472), [anon_sym_alias] = ACTIONS(2472), [anon_sym_let] = ACTIONS(2472), @@ -153188,52 +281665,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2472), [anon_sym_const] = ACTIONS(2472), [aux_sym_cmd_identifier_token1] = ACTIONS(2472), - [aux_sym_cmd_identifier_token2] = ACTIONS(2474), - [aux_sym_cmd_identifier_token3] = ACTIONS(2474), - [aux_sym_cmd_identifier_token4] = ACTIONS(2474), - [aux_sym_cmd_identifier_token5] = ACTIONS(2474), - [aux_sym_cmd_identifier_token6] = ACTIONS(2474), - [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token2] = ACTIONS(2472), + [aux_sym_cmd_identifier_token3] = ACTIONS(2472), + [aux_sym_cmd_identifier_token4] = ACTIONS(2472), + [aux_sym_cmd_identifier_token5] = ACTIONS(2472), + [aux_sym_cmd_identifier_token6] = ACTIONS(2472), + [aux_sym_cmd_identifier_token7] = ACTIONS(2472), [aux_sym_cmd_identifier_token8] = ACTIONS(2472), [aux_sym_cmd_identifier_token9] = ACTIONS(2472), - [aux_sym_cmd_identifier_token10] = ACTIONS(2474), - [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token10] = ACTIONS(2472), + [aux_sym_cmd_identifier_token11] = ACTIONS(2472), [aux_sym_cmd_identifier_token12] = ACTIONS(2472), [aux_sym_cmd_identifier_token13] = ACTIONS(2472), [aux_sym_cmd_identifier_token14] = ACTIONS(2472), [aux_sym_cmd_identifier_token15] = ACTIONS(2472), - [aux_sym_cmd_identifier_token16] = ACTIONS(2474), - [aux_sym_cmd_identifier_token17] = ACTIONS(2474), - [aux_sym_cmd_identifier_token18] = ACTIONS(2474), - [aux_sym_cmd_identifier_token19] = ACTIONS(2474), - [aux_sym_cmd_identifier_token20] = ACTIONS(2474), - [aux_sym_cmd_identifier_token21] = ACTIONS(2474), - [aux_sym_cmd_identifier_token22] = ACTIONS(2474), - [aux_sym_cmd_identifier_token23] = ACTIONS(2474), - [aux_sym_cmd_identifier_token24] = ACTIONS(2474), - [aux_sym_cmd_identifier_token25] = ACTIONS(2474), - [aux_sym_cmd_identifier_token26] = ACTIONS(2474), - [aux_sym_cmd_identifier_token27] = ACTIONS(2474), - [aux_sym_cmd_identifier_token28] = ACTIONS(2474), - [aux_sym_cmd_identifier_token29] = ACTIONS(2474), - [aux_sym_cmd_identifier_token30] = ACTIONS(2474), - [aux_sym_cmd_identifier_token31] = ACTIONS(2474), - [aux_sym_cmd_identifier_token32] = ACTIONS(2474), - [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token16] = ACTIONS(2472), + [aux_sym_cmd_identifier_token17] = ACTIONS(2472), + [aux_sym_cmd_identifier_token18] = ACTIONS(2472), + [aux_sym_cmd_identifier_token19] = ACTIONS(2472), + [aux_sym_cmd_identifier_token20] = ACTIONS(2472), + [aux_sym_cmd_identifier_token21] = ACTIONS(2472), + [aux_sym_cmd_identifier_token22] = ACTIONS(2472), + [aux_sym_cmd_identifier_token23] = ACTIONS(2472), + [aux_sym_cmd_identifier_token24] = ACTIONS(2472), + [aux_sym_cmd_identifier_token25] = ACTIONS(2472), + [aux_sym_cmd_identifier_token26] = ACTIONS(2472), + [aux_sym_cmd_identifier_token27] = ACTIONS(2472), + [aux_sym_cmd_identifier_token28] = ACTIONS(2472), + [aux_sym_cmd_identifier_token29] = ACTIONS(2472), + [aux_sym_cmd_identifier_token30] = ACTIONS(2472), + [aux_sym_cmd_identifier_token31] = ACTIONS(2472), + [aux_sym_cmd_identifier_token32] = ACTIONS(2472), + [aux_sym_cmd_identifier_token33] = ACTIONS(2472), [aux_sym_cmd_identifier_token34] = ACTIONS(2472), - [aux_sym_cmd_identifier_token35] = ACTIONS(2474), - [aux_sym_cmd_identifier_token36] = ACTIONS(2474), - [aux_sym_cmd_identifier_token37] = ACTIONS(2474), + [aux_sym_cmd_identifier_token35] = ACTIONS(2472), + [aux_sym_cmd_identifier_token36] = ACTIONS(2472), + [aux_sym_cmd_identifier_token37] = ACTIONS(2472), [aux_sym_cmd_identifier_token38] = ACTIONS(2472), - [aux_sym_cmd_identifier_token39] = ACTIONS(2474), - [aux_sym_cmd_identifier_token40] = ACTIONS(2474), + [aux_sym_cmd_identifier_token39] = ACTIONS(2472), + [aux_sym_cmd_identifier_token40] = ACTIONS(2472), [anon_sym_def] = ACTIONS(2472), [anon_sym_export_DASHenv] = ACTIONS(2472), [anon_sym_extern] = ACTIONS(2472), [anon_sym_module] = ACTIONS(2472), [anon_sym_use] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_DOLLAR] = ACTIONS(2472), [anon_sym_error] = ACTIONS(2472), [anon_sym_DASH2] = ACTIONS(2472), [anon_sym_break] = ACTIONS(2472), @@ -153247,7 +281724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2472), [anon_sym_else] = ACTIONS(2472), [anon_sym_match] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2472), [anon_sym_try] = ACTIONS(2472), [anon_sym_catch] = ACTIONS(2472), [anon_sym_return] = ACTIONS(2472), @@ -153259,48 +281736,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2472), [anon_sym_as] = ACTIONS(2472), [anon_sym_PLUS2] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), [aux_sym__val_number_decimal_token1] = ACTIONS(2472), - [aux_sym__val_number_decimal_token2] = ACTIONS(2474), - [aux_sym__val_number_decimal_token3] = ACTIONS(2474), - [aux_sym__val_number_decimal_token4] = ACTIONS(2474), - [aux_sym__val_number_token1] = ACTIONS(2474), - [aux_sym__val_number_token2] = ACTIONS(2474), - [aux_sym__val_number_token3] = ACTIONS(2474), + [aux_sym__val_number_decimal_token2] = ACTIONS(2472), + [aux_sym__val_number_decimal_token3] = ACTIONS(2472), + [aux_sym__val_number_decimal_token4] = ACTIONS(2472), + [aux_sym__val_number_token1] = ACTIONS(2472), + [aux_sym__val_number_token2] = ACTIONS(2472), + [aux_sym__val_number_token3] = ACTIONS(2472), [aux_sym__val_number_token4] = ACTIONS(2472), [aux_sym__val_number_token5] = ACTIONS(2472), [aux_sym__val_number_token6] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2474), - [sym__str_single_quotes] = ACTIONS(2474), - [sym__str_back_ticks] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(2472), + [sym__str_single_quotes] = ACTIONS(2472), + [sym__str_back_ticks] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), + [sym__entry_separator] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2474), }, - [731] = { - [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_alias] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_let_DASHenv] = ACTIONS(2476), + [anon_sym_mut] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [aux_sym_cmd_identifier_token1] = ACTIONS(2476), + [aux_sym_cmd_identifier_token2] = ACTIONS(2476), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), + [aux_sym_cmd_identifier_token6] = ACTIONS(2476), + [aux_sym_cmd_identifier_token7] = ACTIONS(2476), + [aux_sym_cmd_identifier_token8] = ACTIONS(2476), + [aux_sym_cmd_identifier_token9] = ACTIONS(2476), + [aux_sym_cmd_identifier_token10] = ACTIONS(2476), + [aux_sym_cmd_identifier_token11] = ACTIONS(2476), + [aux_sym_cmd_identifier_token12] = ACTIONS(2476), + [aux_sym_cmd_identifier_token13] = ACTIONS(2476), + [aux_sym_cmd_identifier_token14] = ACTIONS(2476), + [aux_sym_cmd_identifier_token15] = ACTIONS(2476), + [aux_sym_cmd_identifier_token16] = ACTIONS(2476), + [aux_sym_cmd_identifier_token17] = ACTIONS(2476), + [aux_sym_cmd_identifier_token18] = ACTIONS(2476), + [aux_sym_cmd_identifier_token19] = ACTIONS(2476), + [aux_sym_cmd_identifier_token20] = ACTIONS(2476), + [aux_sym_cmd_identifier_token21] = ACTIONS(2476), + [aux_sym_cmd_identifier_token22] = ACTIONS(2476), + [aux_sym_cmd_identifier_token23] = ACTIONS(2476), + [aux_sym_cmd_identifier_token24] = ACTIONS(2476), + [aux_sym_cmd_identifier_token25] = ACTIONS(2476), + [aux_sym_cmd_identifier_token26] = ACTIONS(2476), + [aux_sym_cmd_identifier_token27] = ACTIONS(2476), + [aux_sym_cmd_identifier_token28] = ACTIONS(2476), + [aux_sym_cmd_identifier_token29] = ACTIONS(2476), + [aux_sym_cmd_identifier_token30] = ACTIONS(2476), + [aux_sym_cmd_identifier_token31] = ACTIONS(2476), + [aux_sym_cmd_identifier_token32] = ACTIONS(2476), + [aux_sym_cmd_identifier_token33] = ACTIONS(2476), + [aux_sym_cmd_identifier_token34] = ACTIONS(2476), + [aux_sym_cmd_identifier_token35] = ACTIONS(2476), + [aux_sym_cmd_identifier_token36] = ACTIONS(2476), + [aux_sym_cmd_identifier_token37] = ACTIONS(2476), + [aux_sym_cmd_identifier_token38] = ACTIONS(2476), + [aux_sym_cmd_identifier_token39] = ACTIONS(2476), + [aux_sym_cmd_identifier_token40] = ACTIONS(2476), + [anon_sym_def] = ACTIONS(2476), + [anon_sym_export_DASHenv] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_module] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_error] = ACTIONS(2476), + [anon_sym_DASH2] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_in2] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_make] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_source] = ACTIONS(2476), + [anon_sym_source_DASHenv] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_hide] = ACTIONS(2476), + [anon_sym_hide_DASHenv] = ACTIONS(2476), + [anon_sym_overlay] = ACTIONS(2476), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_PLUS2] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2476), + [aux_sym__val_number_decimal_token3] = ACTIONS(2476), + [aux_sym__val_number_decimal_token4] = ACTIONS(2476), + [aux_sym__val_number_token1] = ACTIONS(2476), + [aux_sym__val_number_token2] = ACTIONS(2476), + [aux_sym__val_number_token3] = ACTIONS(2476), + [aux_sym__val_number_token4] = ACTIONS(2476), + [aux_sym__val_number_token5] = ACTIONS(2476), + [aux_sym__val_number_token6] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [sym__str_single_quotes] = ACTIONS(2476), + [sym__str_back_ticks] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), + [sym__entry_separator] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2478), + }, + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(2480), + [anon_sym_alias] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_let_DASHenv] = ACTIONS(2480), + [anon_sym_mut] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [aux_sym_cmd_identifier_token1] = ACTIONS(2480), + [aux_sym_cmd_identifier_token2] = ACTIONS(2480), + [aux_sym_cmd_identifier_token3] = ACTIONS(2480), + [aux_sym_cmd_identifier_token4] = ACTIONS(2480), + [aux_sym_cmd_identifier_token5] = ACTIONS(2480), + [aux_sym_cmd_identifier_token6] = ACTIONS(2480), + [aux_sym_cmd_identifier_token7] = ACTIONS(2480), + [aux_sym_cmd_identifier_token8] = ACTIONS(2480), + [aux_sym_cmd_identifier_token9] = ACTIONS(2480), + [aux_sym_cmd_identifier_token10] = ACTIONS(2480), + [aux_sym_cmd_identifier_token11] = ACTIONS(2480), + [aux_sym_cmd_identifier_token12] = ACTIONS(2480), + [aux_sym_cmd_identifier_token13] = ACTIONS(2480), + [aux_sym_cmd_identifier_token14] = ACTIONS(2480), + [aux_sym_cmd_identifier_token15] = ACTIONS(2480), + [aux_sym_cmd_identifier_token16] = ACTIONS(2480), + [aux_sym_cmd_identifier_token17] = ACTIONS(2480), + [aux_sym_cmd_identifier_token18] = ACTIONS(2480), + [aux_sym_cmd_identifier_token19] = ACTIONS(2480), + [aux_sym_cmd_identifier_token20] = ACTIONS(2480), + [aux_sym_cmd_identifier_token21] = ACTIONS(2480), + [aux_sym_cmd_identifier_token22] = ACTIONS(2480), + [aux_sym_cmd_identifier_token23] = ACTIONS(2480), + [aux_sym_cmd_identifier_token24] = ACTIONS(2480), + [aux_sym_cmd_identifier_token25] = ACTIONS(2480), + [aux_sym_cmd_identifier_token26] = ACTIONS(2480), + [aux_sym_cmd_identifier_token27] = ACTIONS(2480), + [aux_sym_cmd_identifier_token28] = ACTIONS(2480), + [aux_sym_cmd_identifier_token29] = ACTIONS(2480), + [aux_sym_cmd_identifier_token30] = ACTIONS(2480), + [aux_sym_cmd_identifier_token31] = ACTIONS(2480), + [aux_sym_cmd_identifier_token32] = ACTIONS(2480), + [aux_sym_cmd_identifier_token33] = ACTIONS(2480), + [aux_sym_cmd_identifier_token34] = ACTIONS(2480), + [aux_sym_cmd_identifier_token35] = ACTIONS(2480), + [aux_sym_cmd_identifier_token36] = ACTIONS(2480), + [aux_sym_cmd_identifier_token37] = ACTIONS(2480), + [aux_sym_cmd_identifier_token38] = ACTIONS(2480), + [aux_sym_cmd_identifier_token39] = ACTIONS(2480), + [aux_sym_cmd_identifier_token40] = ACTIONS(2480), + [anon_sym_def] = ACTIONS(2480), + [anon_sym_export_DASHenv] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_DOLLAR] = ACTIONS(2480), + [anon_sym_error] = ACTIONS(2480), + [anon_sym_DASH2] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_in2] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_make] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_source] = ACTIONS(2480), + [anon_sym_source_DASHenv] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_hide] = ACTIONS(2480), + [anon_sym_hide_DASHenv] = ACTIONS(2480), + [anon_sym_overlay] = ACTIONS(2480), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_PLUS2] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2480), + [aux_sym__val_number_decimal_token2] = ACTIONS(2480), + [aux_sym__val_number_decimal_token3] = ACTIONS(2480), + [aux_sym__val_number_decimal_token4] = ACTIONS(2480), + [aux_sym__val_number_token1] = ACTIONS(2480), + [aux_sym__val_number_token2] = ACTIONS(2480), + [aux_sym__val_number_token3] = ACTIONS(2480), + [aux_sym__val_number_token4] = ACTIONS(2480), + [aux_sym__val_number_token5] = ACTIONS(2480), + [aux_sym__val_number_token6] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2480), + [sym__str_single_quotes] = ACTIONS(2480), + [sym__str_back_ticks] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), + [sym__entry_separator] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2482), + }, + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_alias] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_let_DASHenv] = ACTIONS(2484), + [anon_sym_mut] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [aux_sym_cmd_identifier_token1] = ACTIONS(2484), + [aux_sym_cmd_identifier_token2] = ACTIONS(2484), + [aux_sym_cmd_identifier_token3] = ACTIONS(2484), + [aux_sym_cmd_identifier_token4] = ACTIONS(2484), + [aux_sym_cmd_identifier_token5] = ACTIONS(2484), + [aux_sym_cmd_identifier_token6] = ACTIONS(2484), + [aux_sym_cmd_identifier_token7] = ACTIONS(2484), + [aux_sym_cmd_identifier_token8] = ACTIONS(2484), + [aux_sym_cmd_identifier_token9] = ACTIONS(2484), + [aux_sym_cmd_identifier_token10] = ACTIONS(2484), + [aux_sym_cmd_identifier_token11] = ACTIONS(2484), + [aux_sym_cmd_identifier_token12] = ACTIONS(2484), + [aux_sym_cmd_identifier_token13] = ACTIONS(2484), + [aux_sym_cmd_identifier_token14] = ACTIONS(2484), + [aux_sym_cmd_identifier_token15] = ACTIONS(2484), + [aux_sym_cmd_identifier_token16] = ACTIONS(2484), + [aux_sym_cmd_identifier_token17] = ACTIONS(2484), + [aux_sym_cmd_identifier_token18] = ACTIONS(2484), + [aux_sym_cmd_identifier_token19] = ACTIONS(2484), + [aux_sym_cmd_identifier_token20] = ACTIONS(2484), + [aux_sym_cmd_identifier_token21] = ACTIONS(2484), + [aux_sym_cmd_identifier_token22] = ACTIONS(2484), + [aux_sym_cmd_identifier_token23] = ACTIONS(2484), + [aux_sym_cmd_identifier_token24] = ACTIONS(2484), + [aux_sym_cmd_identifier_token25] = ACTIONS(2484), + [aux_sym_cmd_identifier_token26] = ACTIONS(2484), + [aux_sym_cmd_identifier_token27] = ACTIONS(2484), + [aux_sym_cmd_identifier_token28] = ACTIONS(2484), + [aux_sym_cmd_identifier_token29] = ACTIONS(2484), + [aux_sym_cmd_identifier_token30] = ACTIONS(2484), + [aux_sym_cmd_identifier_token31] = ACTIONS(2484), + [aux_sym_cmd_identifier_token32] = ACTIONS(2484), + [aux_sym_cmd_identifier_token33] = ACTIONS(2484), + [aux_sym_cmd_identifier_token34] = ACTIONS(2484), + [aux_sym_cmd_identifier_token35] = ACTIONS(2484), + [aux_sym_cmd_identifier_token36] = ACTIONS(2484), + [aux_sym_cmd_identifier_token37] = ACTIONS(2484), + [aux_sym_cmd_identifier_token38] = ACTIONS(2484), + [aux_sym_cmd_identifier_token39] = ACTIONS(2484), + [aux_sym_cmd_identifier_token40] = ACTIONS(2484), + [anon_sym_def] = ACTIONS(2484), + [anon_sym_export_DASHenv] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_error] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_in2] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_make] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_source] = ACTIONS(2484), + [anon_sym_source_DASHenv] = ACTIONS(2484), + [anon_sym_register] = ACTIONS(2484), + [anon_sym_hide] = ACTIONS(2484), + [anon_sym_hide_DASHenv] = ACTIONS(2484), + [anon_sym_overlay] = ACTIONS(2484), + [anon_sym_as] = ACTIONS(2484), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), + [aux_sym__val_number_decimal_token1] = ACTIONS(2484), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2484), + [aux_sym__val_number_decimal_token4] = ACTIONS(2484), + [aux_sym__val_number_token1] = ACTIONS(2484), + [aux_sym__val_number_token2] = ACTIONS(2484), + [aux_sym__val_number_token3] = ACTIONS(2484), + [aux_sym__val_number_token4] = ACTIONS(2484), + [aux_sym__val_number_token5] = ACTIONS(2484), + [aux_sym__val_number_token6] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [sym__str_single_quotes] = ACTIONS(2484), + [sym__str_back_ticks] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), + [sym__entry_separator] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2486), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_let_DASHenv] = ACTIONS(2488), + [anon_sym_mut] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [aux_sym_cmd_identifier_token1] = ACTIONS(2488), [aux_sym_cmd_identifier_token2] = ACTIONS(2488), [aux_sym_cmd_identifier_token3] = ACTIONS(2488), [aux_sym_cmd_identifier_token4] = ACTIONS(2488), [aux_sym_cmd_identifier_token5] = ACTIONS(2488), [aux_sym_cmd_identifier_token6] = ACTIONS(2488), [aux_sym_cmd_identifier_token7] = ACTIONS(2488), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2488), + [aux_sym_cmd_identifier_token9] = ACTIONS(2488), [aux_sym_cmd_identifier_token10] = ACTIONS(2488), [aux_sym_cmd_identifier_token11] = ACTIONS(2488), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2488), + [aux_sym_cmd_identifier_token13] = ACTIONS(2488), + [aux_sym_cmd_identifier_token14] = ACTIONS(2488), + [aux_sym_cmd_identifier_token15] = ACTIONS(2488), [aux_sym_cmd_identifier_token16] = ACTIONS(2488), [aux_sym_cmd_identifier_token17] = ACTIONS(2488), [aux_sym_cmd_identifier_token18] = ACTIONS(2488), @@ -153319,87 +282097,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2488), [aux_sym_cmd_identifier_token32] = ACTIONS(2488), [aux_sym_cmd_identifier_token33] = ACTIONS(2488), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2488), [aux_sym_cmd_identifier_token35] = ACTIONS(2488), [aux_sym_cmd_identifier_token36] = ACTIONS(2488), [aux_sym_cmd_identifier_token37] = ACTIONS(2488), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), + [aux_sym_cmd_identifier_token38] = ACTIONS(2488), [aux_sym_cmd_identifier_token39] = ACTIONS(2488), [aux_sym_cmd_identifier_token40] = ACTIONS(2488), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2488), + [anon_sym_export_DASHenv] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), [anon_sym_LPAREN] = ACTIONS(2488), [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_DASH2] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in2] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), + [anon_sym_error] = ACTIONS(2488), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_in2] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_make] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_PLUS2] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_source] = ACTIONS(2488), + [anon_sym_source_DASHenv] = ACTIONS(2488), + [anon_sym_register] = ACTIONS(2488), + [anon_sym_hide] = ACTIONS(2488), + [anon_sym_hide_DASHenv] = ACTIONS(2488), + [anon_sym_overlay] = ACTIONS(2488), + [anon_sym_as] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2488), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), + [aux_sym__val_number_decimal_token1] = ACTIONS(2488), [aux_sym__val_number_decimal_token2] = ACTIONS(2488), [aux_sym__val_number_decimal_token3] = ACTIONS(2488), [aux_sym__val_number_decimal_token4] = ACTIONS(2488), [aux_sym__val_number_token1] = ACTIONS(2488), [aux_sym__val_number_token2] = ACTIONS(2488), [aux_sym__val_number_token3] = ACTIONS(2488), - [aux_sym__val_number_token4] = ACTIONS(2486), - [aux_sym__val_number_token5] = ACTIONS(2486), - [aux_sym__val_number_token6] = ACTIONS(2486), + [aux_sym__val_number_token4] = ACTIONS(2488), + [aux_sym__val_number_token5] = ACTIONS(2488), + [aux_sym__val_number_token6] = ACTIONS(2488), [anon_sym_DQUOTE] = ACTIONS(2488), [sym__str_single_quotes] = ACTIONS(2488), [sym__str_back_ticks] = ACTIONS(2488), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2488), + [sym__entry_separator] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2490), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_alias] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_DASHenv] = ACTIONS(2492), + [anon_sym_mut] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2492), + [aux_sym_cmd_identifier_token2] = ACTIONS(2492), + [aux_sym_cmd_identifier_token3] = ACTIONS(2492), + [aux_sym_cmd_identifier_token4] = ACTIONS(2492), + [aux_sym_cmd_identifier_token5] = ACTIONS(2492), + [aux_sym_cmd_identifier_token6] = ACTIONS(2492), + [aux_sym_cmd_identifier_token7] = ACTIONS(2492), + [aux_sym_cmd_identifier_token8] = ACTIONS(2492), + [aux_sym_cmd_identifier_token9] = ACTIONS(2492), + [aux_sym_cmd_identifier_token10] = ACTIONS(2492), + [aux_sym_cmd_identifier_token11] = ACTIONS(2492), + [aux_sym_cmd_identifier_token12] = ACTIONS(2492), + [aux_sym_cmd_identifier_token13] = ACTIONS(2492), + [aux_sym_cmd_identifier_token14] = ACTIONS(2492), + [aux_sym_cmd_identifier_token15] = ACTIONS(2492), + [aux_sym_cmd_identifier_token16] = ACTIONS(2492), + [aux_sym_cmd_identifier_token17] = ACTIONS(2492), + [aux_sym_cmd_identifier_token18] = ACTIONS(2492), + [aux_sym_cmd_identifier_token19] = ACTIONS(2492), + [aux_sym_cmd_identifier_token20] = ACTIONS(2492), + [aux_sym_cmd_identifier_token21] = ACTIONS(2492), + [aux_sym_cmd_identifier_token22] = ACTIONS(2492), + [aux_sym_cmd_identifier_token23] = ACTIONS(2492), + [aux_sym_cmd_identifier_token24] = ACTIONS(2492), + [aux_sym_cmd_identifier_token25] = ACTIONS(2492), + [aux_sym_cmd_identifier_token26] = ACTIONS(2492), + [aux_sym_cmd_identifier_token27] = ACTIONS(2492), + [aux_sym_cmd_identifier_token28] = ACTIONS(2492), + [aux_sym_cmd_identifier_token29] = ACTIONS(2492), + [aux_sym_cmd_identifier_token30] = ACTIONS(2492), + [aux_sym_cmd_identifier_token31] = ACTIONS(2492), + [aux_sym_cmd_identifier_token32] = ACTIONS(2492), + [aux_sym_cmd_identifier_token33] = ACTIONS(2492), + [aux_sym_cmd_identifier_token34] = ACTIONS(2492), + [aux_sym_cmd_identifier_token35] = ACTIONS(2492), + [aux_sym_cmd_identifier_token36] = ACTIONS(2492), + [aux_sym_cmd_identifier_token37] = ACTIONS(2492), + [aux_sym_cmd_identifier_token38] = ACTIONS(2492), + [aux_sym_cmd_identifier_token39] = ACTIONS(2492), + [aux_sym_cmd_identifier_token40] = ACTIONS(2492), + [anon_sym_def] = ACTIONS(2492), + [anon_sym_export_DASHenv] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_error] = ACTIONS(2492), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_in2] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_make] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_source] = ACTIONS(2492), + [anon_sym_source_DASHenv] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_hide] = ACTIONS(2492), + [anon_sym_hide_DASHenv] = ACTIONS(2492), + [anon_sym_overlay] = ACTIONS(2492), + [anon_sym_as] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), + [aux_sym__val_number_decimal_token1] = ACTIONS(2492), + [aux_sym__val_number_decimal_token2] = ACTIONS(2492), + [aux_sym__val_number_decimal_token3] = ACTIONS(2492), + [aux_sym__val_number_decimal_token4] = ACTIONS(2492), + [aux_sym__val_number_token1] = ACTIONS(2492), + [aux_sym__val_number_token2] = ACTIONS(2492), + [aux_sym__val_number_token3] = ACTIONS(2492), + [aux_sym__val_number_token4] = ACTIONS(2492), + [aux_sym__val_number_token5] = ACTIONS(2492), + [aux_sym__val_number_token6] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym__str_single_quotes] = ACTIONS(2492), + [sym__str_back_ticks] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), + [sym__entry_separator] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2494), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_alias] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_let_DASHenv] = ACTIONS(2496), + [anon_sym_mut] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [aux_sym_cmd_identifier_token2] = ACTIONS(2496), + [aux_sym_cmd_identifier_token3] = ACTIONS(2496), + [aux_sym_cmd_identifier_token4] = ACTIONS(2496), + [aux_sym_cmd_identifier_token5] = ACTIONS(2496), + [aux_sym_cmd_identifier_token6] = ACTIONS(2496), + [aux_sym_cmd_identifier_token7] = ACTIONS(2496), + [aux_sym_cmd_identifier_token8] = ACTIONS(2496), + [aux_sym_cmd_identifier_token9] = ACTIONS(2496), + [aux_sym_cmd_identifier_token10] = ACTIONS(2496), + [aux_sym_cmd_identifier_token11] = ACTIONS(2496), + [aux_sym_cmd_identifier_token12] = ACTIONS(2496), + [aux_sym_cmd_identifier_token13] = ACTIONS(2496), + [aux_sym_cmd_identifier_token14] = ACTIONS(2496), + [aux_sym_cmd_identifier_token15] = ACTIONS(2496), + [aux_sym_cmd_identifier_token16] = ACTIONS(2496), + [aux_sym_cmd_identifier_token17] = ACTIONS(2496), + [aux_sym_cmd_identifier_token18] = ACTIONS(2496), + [aux_sym_cmd_identifier_token19] = ACTIONS(2496), + [aux_sym_cmd_identifier_token20] = ACTIONS(2496), + [aux_sym_cmd_identifier_token21] = ACTIONS(2496), + [aux_sym_cmd_identifier_token22] = ACTIONS(2496), + [aux_sym_cmd_identifier_token23] = ACTIONS(2496), + [aux_sym_cmd_identifier_token24] = ACTIONS(2496), + [aux_sym_cmd_identifier_token25] = ACTIONS(2496), + [aux_sym_cmd_identifier_token26] = ACTIONS(2496), + [aux_sym_cmd_identifier_token27] = ACTIONS(2496), + [aux_sym_cmd_identifier_token28] = ACTIONS(2496), + [aux_sym_cmd_identifier_token29] = ACTIONS(2496), + [aux_sym_cmd_identifier_token30] = ACTIONS(2496), + [aux_sym_cmd_identifier_token31] = ACTIONS(2496), + [aux_sym_cmd_identifier_token32] = ACTIONS(2496), + [aux_sym_cmd_identifier_token33] = ACTIONS(2496), + [aux_sym_cmd_identifier_token34] = ACTIONS(2496), + [aux_sym_cmd_identifier_token35] = ACTIONS(2496), + [aux_sym_cmd_identifier_token36] = ACTIONS(2496), + [aux_sym_cmd_identifier_token37] = ACTIONS(2496), + [aux_sym_cmd_identifier_token38] = ACTIONS(2496), + [aux_sym_cmd_identifier_token39] = ACTIONS(2496), + [aux_sym_cmd_identifier_token40] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_export_DASHenv] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH2] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_in2] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_make] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_as] = ACTIONS(2496), + [anon_sym_PLUS2] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), + [aux_sym__val_number_decimal_token1] = ACTIONS(2496), + [aux_sym__val_number_decimal_token2] = ACTIONS(2496), + [aux_sym__val_number_decimal_token3] = ACTIONS(2496), + [aux_sym__val_number_decimal_token4] = ACTIONS(2496), + [aux_sym__val_number_token1] = ACTIONS(2496), + [aux_sym__val_number_token2] = ACTIONS(2496), + [aux_sym__val_number_token3] = ACTIONS(2496), + [aux_sym__val_number_token4] = ACTIONS(2496), + [aux_sym__val_number_token5] = ACTIONS(2496), + [aux_sym__val_number_token6] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), + [sym__entry_separator] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2498), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_alias] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_let_DASHenv] = ACTIONS(2500), + [anon_sym_mut] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [aux_sym_cmd_identifier_token1] = ACTIONS(2500), + [aux_sym_cmd_identifier_token2] = ACTIONS(2500), + [aux_sym_cmd_identifier_token3] = ACTIONS(2500), + [aux_sym_cmd_identifier_token4] = ACTIONS(2500), + [aux_sym_cmd_identifier_token5] = ACTIONS(2500), + [aux_sym_cmd_identifier_token6] = ACTIONS(2500), + [aux_sym_cmd_identifier_token7] = ACTIONS(2500), + [aux_sym_cmd_identifier_token8] = ACTIONS(2500), + [aux_sym_cmd_identifier_token9] = ACTIONS(2500), + [aux_sym_cmd_identifier_token10] = ACTIONS(2500), + [aux_sym_cmd_identifier_token11] = ACTIONS(2500), + [aux_sym_cmd_identifier_token12] = ACTIONS(2500), + [aux_sym_cmd_identifier_token13] = ACTIONS(2500), + [aux_sym_cmd_identifier_token14] = ACTIONS(2500), + [aux_sym_cmd_identifier_token15] = ACTIONS(2500), + [aux_sym_cmd_identifier_token16] = ACTIONS(2500), + [aux_sym_cmd_identifier_token17] = ACTIONS(2500), + [aux_sym_cmd_identifier_token18] = ACTIONS(2500), + [aux_sym_cmd_identifier_token19] = ACTIONS(2500), + [aux_sym_cmd_identifier_token20] = ACTIONS(2500), + [aux_sym_cmd_identifier_token21] = ACTIONS(2500), + [aux_sym_cmd_identifier_token22] = ACTIONS(2500), + [aux_sym_cmd_identifier_token23] = ACTIONS(2500), + [aux_sym_cmd_identifier_token24] = ACTIONS(2500), + [aux_sym_cmd_identifier_token25] = ACTIONS(2500), + [aux_sym_cmd_identifier_token26] = ACTIONS(2500), + [aux_sym_cmd_identifier_token27] = ACTIONS(2500), + [aux_sym_cmd_identifier_token28] = ACTIONS(2500), + [aux_sym_cmd_identifier_token29] = ACTIONS(2500), + [aux_sym_cmd_identifier_token30] = ACTIONS(2500), + [aux_sym_cmd_identifier_token31] = ACTIONS(2500), + [aux_sym_cmd_identifier_token32] = ACTIONS(2500), + [aux_sym_cmd_identifier_token33] = ACTIONS(2500), + [aux_sym_cmd_identifier_token34] = ACTIONS(2500), + [aux_sym_cmd_identifier_token35] = ACTIONS(2500), + [aux_sym_cmd_identifier_token36] = ACTIONS(2500), + [aux_sym_cmd_identifier_token37] = ACTIONS(2500), + [aux_sym_cmd_identifier_token38] = ACTIONS(2500), + [aux_sym_cmd_identifier_token39] = ACTIONS(2500), + [aux_sym_cmd_identifier_token40] = ACTIONS(2500), + [anon_sym_def] = ACTIONS(2500), + [anon_sym_export_DASHenv] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_error] = ACTIONS(2500), + [anon_sym_DASH2] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_in2] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_make] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_source] = ACTIONS(2500), + [anon_sym_source_DASHenv] = ACTIONS(2500), + [anon_sym_register] = ACTIONS(2500), + [anon_sym_hide] = ACTIONS(2500), + [anon_sym_hide_DASHenv] = ACTIONS(2500), + [anon_sym_overlay] = ACTIONS(2500), + [anon_sym_as] = ACTIONS(2500), + [anon_sym_PLUS2] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), + [aux_sym__val_number_decimal_token1] = ACTIONS(2500), + [aux_sym__val_number_decimal_token2] = ACTIONS(2500), + [aux_sym__val_number_decimal_token3] = ACTIONS(2500), + [aux_sym__val_number_decimal_token4] = ACTIONS(2500), + [aux_sym__val_number_token1] = ACTIONS(2500), + [aux_sym__val_number_token2] = ACTIONS(2500), + [aux_sym__val_number_token3] = ACTIONS(2500), + [aux_sym__val_number_token4] = ACTIONS(2500), + [aux_sym__val_number_token5] = ACTIONS(2500), + [aux_sym__val_number_token6] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [sym__str_single_quotes] = ACTIONS(2500), + [sym__str_back_ticks] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), + [sym__entry_separator] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2502), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_alias] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_let_DASHenv] = ACTIONS(2504), + [anon_sym_mut] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [aux_sym_cmd_identifier_token1] = ACTIONS(2504), + [aux_sym_cmd_identifier_token2] = ACTIONS(2504), + [aux_sym_cmd_identifier_token3] = ACTIONS(2504), + [aux_sym_cmd_identifier_token4] = ACTIONS(2504), + [aux_sym_cmd_identifier_token5] = ACTIONS(2504), + [aux_sym_cmd_identifier_token6] = ACTIONS(2504), + [aux_sym_cmd_identifier_token7] = ACTIONS(2504), + [aux_sym_cmd_identifier_token8] = ACTIONS(2504), + [aux_sym_cmd_identifier_token9] = ACTIONS(2504), + [aux_sym_cmd_identifier_token10] = ACTIONS(2504), + [aux_sym_cmd_identifier_token11] = ACTIONS(2504), + [aux_sym_cmd_identifier_token12] = ACTIONS(2504), + [aux_sym_cmd_identifier_token13] = ACTIONS(2504), + [aux_sym_cmd_identifier_token14] = ACTIONS(2504), + [aux_sym_cmd_identifier_token15] = ACTIONS(2504), + [aux_sym_cmd_identifier_token16] = ACTIONS(2504), + [aux_sym_cmd_identifier_token17] = ACTIONS(2504), + [aux_sym_cmd_identifier_token18] = ACTIONS(2504), + [aux_sym_cmd_identifier_token19] = ACTIONS(2504), + [aux_sym_cmd_identifier_token20] = ACTIONS(2504), + [aux_sym_cmd_identifier_token21] = ACTIONS(2504), + [aux_sym_cmd_identifier_token22] = ACTIONS(2504), + [aux_sym_cmd_identifier_token23] = ACTIONS(2504), + [aux_sym_cmd_identifier_token24] = ACTIONS(2504), + [aux_sym_cmd_identifier_token25] = ACTIONS(2504), + [aux_sym_cmd_identifier_token26] = ACTIONS(2504), + [aux_sym_cmd_identifier_token27] = ACTIONS(2504), + [aux_sym_cmd_identifier_token28] = ACTIONS(2504), + [aux_sym_cmd_identifier_token29] = ACTIONS(2504), + [aux_sym_cmd_identifier_token30] = ACTIONS(2504), + [aux_sym_cmd_identifier_token31] = ACTIONS(2504), + [aux_sym_cmd_identifier_token32] = ACTIONS(2504), + [aux_sym_cmd_identifier_token33] = ACTIONS(2504), + [aux_sym_cmd_identifier_token34] = ACTIONS(2504), + [aux_sym_cmd_identifier_token35] = ACTIONS(2504), + [aux_sym_cmd_identifier_token36] = ACTIONS(2504), + [aux_sym_cmd_identifier_token37] = ACTIONS(2504), + [aux_sym_cmd_identifier_token38] = ACTIONS(2504), + [aux_sym_cmd_identifier_token39] = ACTIONS(2504), + [aux_sym_cmd_identifier_token40] = ACTIONS(2504), + [anon_sym_def] = ACTIONS(2504), + [anon_sym_export_DASHenv] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_error] = ACTIONS(2504), + [anon_sym_DASH2] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_in2] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_make] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_source] = ACTIONS(2504), + [anon_sym_source_DASHenv] = ACTIONS(2504), + [anon_sym_register] = ACTIONS(2504), + [anon_sym_hide] = ACTIONS(2504), + [anon_sym_hide_DASHenv] = ACTIONS(2504), + [anon_sym_overlay] = ACTIONS(2504), + [anon_sym_as] = ACTIONS(2504), + [anon_sym_PLUS2] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), + [aux_sym__val_number_decimal_token1] = ACTIONS(2504), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2504), + [aux_sym__val_number_decimal_token4] = ACTIONS(2504), + [aux_sym__val_number_token1] = ACTIONS(2504), + [aux_sym__val_number_token2] = ACTIONS(2504), + [aux_sym__val_number_token3] = ACTIONS(2504), + [aux_sym__val_number_token4] = ACTIONS(2504), + [aux_sym__val_number_token5] = ACTIONS(2504), + [aux_sym__val_number_token6] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2504), + [sym__str_single_quotes] = ACTIONS(2504), + [sym__str_back_ticks] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), + [sym__entry_separator] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2506), + }, + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_alias] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_let_DASHenv] = ACTIONS(2228), + [anon_sym_mut] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [aux_sym_cmd_identifier_token1] = ACTIONS(2228), + [aux_sym_cmd_identifier_token2] = ACTIONS(2228), + [aux_sym_cmd_identifier_token3] = ACTIONS(2228), + [aux_sym_cmd_identifier_token4] = ACTIONS(2228), + [aux_sym_cmd_identifier_token5] = ACTIONS(2228), + [aux_sym_cmd_identifier_token6] = ACTIONS(2228), + [aux_sym_cmd_identifier_token7] = ACTIONS(2228), + [aux_sym_cmd_identifier_token8] = ACTIONS(2228), + [aux_sym_cmd_identifier_token9] = ACTIONS(2228), + [aux_sym_cmd_identifier_token10] = ACTIONS(2228), + [aux_sym_cmd_identifier_token11] = ACTIONS(2228), + [aux_sym_cmd_identifier_token12] = ACTIONS(2228), + [aux_sym_cmd_identifier_token13] = ACTIONS(2228), + [aux_sym_cmd_identifier_token14] = ACTIONS(2228), + [aux_sym_cmd_identifier_token15] = ACTIONS(2228), + [aux_sym_cmd_identifier_token16] = ACTIONS(2228), + [aux_sym_cmd_identifier_token17] = ACTIONS(2228), + [aux_sym_cmd_identifier_token18] = ACTIONS(2228), + [aux_sym_cmd_identifier_token19] = ACTIONS(2228), + [aux_sym_cmd_identifier_token20] = ACTIONS(2228), + [aux_sym_cmd_identifier_token21] = ACTIONS(2228), + [aux_sym_cmd_identifier_token22] = ACTIONS(2228), + [aux_sym_cmd_identifier_token23] = ACTIONS(2228), + [aux_sym_cmd_identifier_token24] = ACTIONS(2228), + [aux_sym_cmd_identifier_token25] = ACTIONS(2228), + [aux_sym_cmd_identifier_token26] = ACTIONS(2228), + [aux_sym_cmd_identifier_token27] = ACTIONS(2228), + [aux_sym_cmd_identifier_token28] = ACTIONS(2228), + [aux_sym_cmd_identifier_token29] = ACTIONS(2228), + [aux_sym_cmd_identifier_token30] = ACTIONS(2228), + [aux_sym_cmd_identifier_token31] = ACTIONS(2228), + [aux_sym_cmd_identifier_token32] = ACTIONS(2228), + [aux_sym_cmd_identifier_token33] = ACTIONS(2228), + [aux_sym_cmd_identifier_token34] = ACTIONS(2228), + [aux_sym_cmd_identifier_token35] = ACTIONS(2228), + [aux_sym_cmd_identifier_token36] = ACTIONS(2228), + [aux_sym_cmd_identifier_token37] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2228), + [anon_sym_export_DASHenv] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_in2] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_make] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_catch] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_source] = ACTIONS(2228), + [anon_sym_source_DASHenv] = ACTIONS(2228), + [anon_sym_register] = ACTIONS(2228), + [anon_sym_hide] = ACTIONS(2228), + [anon_sym_hide_DASHenv] = ACTIONS(2228), + [anon_sym_overlay] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [sym__entry_separator] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [aux_sym_cmd_identifier_token1] = ACTIONS(2177), + [aux_sym_cmd_identifier_token2] = ACTIONS(2177), + [aux_sym_cmd_identifier_token3] = ACTIONS(2177), + [aux_sym_cmd_identifier_token4] = ACTIONS(2177), + [aux_sym_cmd_identifier_token5] = ACTIONS(2177), + [aux_sym_cmd_identifier_token6] = ACTIONS(2177), + [aux_sym_cmd_identifier_token7] = ACTIONS(2177), + [aux_sym_cmd_identifier_token8] = ACTIONS(2177), + [aux_sym_cmd_identifier_token9] = ACTIONS(2177), + [aux_sym_cmd_identifier_token10] = ACTIONS(2177), + [aux_sym_cmd_identifier_token11] = ACTIONS(2177), + [aux_sym_cmd_identifier_token12] = ACTIONS(2177), + [aux_sym_cmd_identifier_token13] = ACTIONS(2177), + [aux_sym_cmd_identifier_token14] = ACTIONS(2177), + [aux_sym_cmd_identifier_token15] = ACTIONS(2177), + [aux_sym_cmd_identifier_token16] = ACTIONS(2177), + [aux_sym_cmd_identifier_token17] = ACTIONS(2177), + [aux_sym_cmd_identifier_token18] = ACTIONS(2177), + [aux_sym_cmd_identifier_token19] = ACTIONS(2177), + [aux_sym_cmd_identifier_token20] = ACTIONS(2177), + [aux_sym_cmd_identifier_token21] = ACTIONS(2177), + [aux_sym_cmd_identifier_token22] = ACTIONS(2177), + [aux_sym_cmd_identifier_token23] = ACTIONS(2177), + [aux_sym_cmd_identifier_token24] = ACTIONS(2177), + [aux_sym_cmd_identifier_token25] = ACTIONS(2177), + [aux_sym_cmd_identifier_token26] = ACTIONS(2177), + [aux_sym_cmd_identifier_token27] = ACTIONS(2177), + [aux_sym_cmd_identifier_token28] = ACTIONS(2177), + [aux_sym_cmd_identifier_token29] = ACTIONS(2177), + [aux_sym_cmd_identifier_token30] = ACTIONS(2177), + [aux_sym_cmd_identifier_token31] = ACTIONS(2177), + [aux_sym_cmd_identifier_token32] = ACTIONS(2177), + [aux_sym_cmd_identifier_token33] = ACTIONS(2177), + [aux_sym_cmd_identifier_token34] = ACTIONS(2177), + [aux_sym_cmd_identifier_token35] = ACTIONS(2177), + [aux_sym_cmd_identifier_token36] = ACTIONS(2177), + [aux_sym_cmd_identifier_token37] = ACTIONS(2177), + [aux_sym_cmd_identifier_token38] = ACTIONS(2177), + [aux_sym_cmd_identifier_token39] = ACTIONS(2177), + [aux_sym_cmd_identifier_token40] = ACTIONS(2177), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_in2] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_make] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_catch] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_PLUS2] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2177), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2177), + [aux_sym__val_number_decimal_token3] = ACTIONS(2177), + [aux_sym__val_number_decimal_token4] = ACTIONS(2177), + [aux_sym__val_number_token1] = ACTIONS(2177), + [aux_sym__val_number_token2] = ACTIONS(2177), + [aux_sym__val_number_token3] = ACTIONS(2177), + [aux_sym__val_number_token4] = ACTIONS(2177), + [aux_sym__val_number_token5] = ACTIONS(2177), + [aux_sym__val_number_token6] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2177), + [sym__str_single_quotes] = ACTIONS(2177), + [sym__str_back_ticks] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2177), + [sym__entry_separator] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2183), + }, + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [aux_sym_cmd_identifier_token1] = ACTIONS(2185), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2185), + [aux_sym_cmd_identifier_token9] = ACTIONS(2185), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2185), + [aux_sym_cmd_identifier_token13] = ACTIONS(2185), + [aux_sym_cmd_identifier_token14] = ACTIONS(2185), + [aux_sym_cmd_identifier_token15] = ACTIONS(2185), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2185), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2185), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_in2] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_make] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_PLUS2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), + [sym__entry_separator] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2191), }, - [732] = { - [sym_comment] = STATE(732), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_alias] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_let_DASHenv] = ACTIONS(2510), - [anon_sym_mut] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_alias] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_let_DASHenv] = ACTIONS(2508), + [anon_sym_mut] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [aux_sym_cmd_identifier_token1] = ACTIONS(2508), + [aux_sym_cmd_identifier_token2] = ACTIONS(2508), + [aux_sym_cmd_identifier_token3] = ACTIONS(2508), + [aux_sym_cmd_identifier_token4] = ACTIONS(2508), + [aux_sym_cmd_identifier_token5] = ACTIONS(2508), + [aux_sym_cmd_identifier_token6] = ACTIONS(2508), + [aux_sym_cmd_identifier_token7] = ACTIONS(2508), + [aux_sym_cmd_identifier_token8] = ACTIONS(2508), + [aux_sym_cmd_identifier_token9] = ACTIONS(2508), + [aux_sym_cmd_identifier_token10] = ACTIONS(2508), + [aux_sym_cmd_identifier_token11] = ACTIONS(2508), + [aux_sym_cmd_identifier_token12] = ACTIONS(2508), + [aux_sym_cmd_identifier_token13] = ACTIONS(2508), + [aux_sym_cmd_identifier_token14] = ACTIONS(2508), + [aux_sym_cmd_identifier_token15] = ACTIONS(2508), + [aux_sym_cmd_identifier_token16] = ACTIONS(2508), + [aux_sym_cmd_identifier_token17] = ACTIONS(2508), + [aux_sym_cmd_identifier_token18] = ACTIONS(2508), + [aux_sym_cmd_identifier_token19] = ACTIONS(2508), + [aux_sym_cmd_identifier_token20] = ACTIONS(2508), + [aux_sym_cmd_identifier_token21] = ACTIONS(2508), + [aux_sym_cmd_identifier_token22] = ACTIONS(2508), + [aux_sym_cmd_identifier_token23] = ACTIONS(2508), + [aux_sym_cmd_identifier_token24] = ACTIONS(2508), + [aux_sym_cmd_identifier_token25] = ACTIONS(2508), + [aux_sym_cmd_identifier_token26] = ACTIONS(2508), + [aux_sym_cmd_identifier_token27] = ACTIONS(2508), + [aux_sym_cmd_identifier_token28] = ACTIONS(2508), + [aux_sym_cmd_identifier_token29] = ACTIONS(2508), + [aux_sym_cmd_identifier_token30] = ACTIONS(2508), + [aux_sym_cmd_identifier_token31] = ACTIONS(2508), + [aux_sym_cmd_identifier_token32] = ACTIONS(2508), + [aux_sym_cmd_identifier_token33] = ACTIONS(2508), + [aux_sym_cmd_identifier_token34] = ACTIONS(2508), + [aux_sym_cmd_identifier_token35] = ACTIONS(2508), + [aux_sym_cmd_identifier_token36] = ACTIONS(2508), + [aux_sym_cmd_identifier_token37] = ACTIONS(2508), + [aux_sym_cmd_identifier_token38] = ACTIONS(2508), + [aux_sym_cmd_identifier_token39] = ACTIONS(2508), + [aux_sym_cmd_identifier_token40] = ACTIONS(2508), + [anon_sym_def] = ACTIONS(2508), + [anon_sym_export_DASHenv] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_error] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in2] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_make] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_source] = ACTIONS(2508), + [anon_sym_source_DASHenv] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_hide] = ACTIONS(2508), + [anon_sym_hide_DASHenv] = ACTIONS(2508), + [anon_sym_overlay] = ACTIONS(2508), + [anon_sym_as] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), + [aux_sym__val_number_decimal_token1] = ACTIONS(2508), + [aux_sym__val_number_decimal_token2] = ACTIONS(2508), + [aux_sym__val_number_decimal_token3] = ACTIONS(2508), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [aux_sym__val_number_token1] = ACTIONS(2508), + [aux_sym__val_number_token2] = ACTIONS(2508), + [aux_sym__val_number_token3] = ACTIONS(2508), + [aux_sym__val_number_token4] = ACTIONS(2508), + [aux_sym__val_number_token5] = ACTIONS(2508), + [aux_sym__val_number_token6] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym__str_single_quotes] = ACTIONS(2508), + [sym__str_back_ticks] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), + [sym__entry_separator] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2510), + }, + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_alias] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_let_DASHenv] = ACTIONS(2512), + [anon_sym_mut] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [aux_sym_cmd_identifier_token1] = ACTIONS(2512), [aux_sym_cmd_identifier_token2] = ACTIONS(2512), [aux_sym_cmd_identifier_token3] = ACTIONS(2512), [aux_sym_cmd_identifier_token4] = ACTIONS(2512), [aux_sym_cmd_identifier_token5] = ACTIONS(2512), [aux_sym_cmd_identifier_token6] = ACTIONS(2512), [aux_sym_cmd_identifier_token7] = ACTIONS(2512), - [aux_sym_cmd_identifier_token8] = ACTIONS(2510), - [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2512), + [aux_sym_cmd_identifier_token9] = ACTIONS(2512), [aux_sym_cmd_identifier_token10] = ACTIONS(2512), [aux_sym_cmd_identifier_token11] = ACTIONS(2512), - [aux_sym_cmd_identifier_token12] = ACTIONS(2510), - [aux_sym_cmd_identifier_token13] = ACTIONS(2510), - [aux_sym_cmd_identifier_token14] = ACTIONS(2510), - [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2512), + [aux_sym_cmd_identifier_token13] = ACTIONS(2512), + [aux_sym_cmd_identifier_token14] = ACTIONS(2512), + [aux_sym_cmd_identifier_token15] = ACTIONS(2512), [aux_sym_cmd_identifier_token16] = ACTIONS(2512), [aux_sym_cmd_identifier_token17] = ACTIONS(2512), [aux_sym_cmd_identifier_token18] = ACTIONS(2512), @@ -153418,1551 +283097,5067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2512), [aux_sym_cmd_identifier_token32] = ACTIONS(2512), [aux_sym_cmd_identifier_token33] = ACTIONS(2512), - [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2512), [aux_sym_cmd_identifier_token35] = ACTIONS(2512), [aux_sym_cmd_identifier_token36] = ACTIONS(2512), [aux_sym_cmd_identifier_token37] = ACTIONS(2512), - [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2512), [aux_sym_cmd_identifier_token39] = ACTIONS(2512), [aux_sym_cmd_identifier_token40] = ACTIONS(2512), - [anon_sym_def] = ACTIONS(2510), - [anon_sym_export_DASHenv] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), + [anon_sym_def] = ACTIONS(2512), + [anon_sym_export_DASHenv] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), [anon_sym_LPAREN] = ACTIONS(2512), [anon_sym_DOLLAR] = ACTIONS(2512), - [anon_sym_error] = ACTIONS(2510), - [anon_sym_DASH2] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_in2] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_make] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), + [anon_sym_error] = ACTIONS(2512), + [anon_sym_DASH2] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in2] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_make] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_catch] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_source] = ACTIONS(2510), - [anon_sym_source_DASHenv] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_hide] = ACTIONS(2510), - [anon_sym_hide_DASHenv] = ACTIONS(2510), - [anon_sym_overlay] = ACTIONS(2510), - [anon_sym_as] = ACTIONS(2510), - [anon_sym_PLUS2] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_source] = ACTIONS(2512), + [anon_sym_source_DASHenv] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_hide] = ACTIONS(2512), + [anon_sym_hide_DASHenv] = ACTIONS(2512), + [anon_sym_overlay] = ACTIONS(2512), + [anon_sym_as] = ACTIONS(2512), + [anon_sym_PLUS2] = ACTIONS(2512), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), - [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token1] = ACTIONS(2512), [aux_sym__val_number_decimal_token2] = ACTIONS(2512), [aux_sym__val_number_decimal_token3] = ACTIONS(2512), [aux_sym__val_number_decimal_token4] = ACTIONS(2512), [aux_sym__val_number_token1] = ACTIONS(2512), [aux_sym__val_number_token2] = ACTIONS(2512), [aux_sym__val_number_token3] = ACTIONS(2512), - [aux_sym__val_number_token4] = ACTIONS(2510), - [aux_sym__val_number_token5] = ACTIONS(2510), - [aux_sym__val_number_token6] = ACTIONS(2510), + [aux_sym__val_number_token4] = ACTIONS(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), [anon_sym_DQUOTE] = ACTIONS(2512), [sym__str_single_quotes] = ACTIONS(2512), [sym__str_back_ticks] = ACTIONS(2512), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2512), + [sym__entry_separator] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2514), }, - [733] = { - [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_alias] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_let_DASHenv] = ACTIONS(2402), - [anon_sym_mut] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [aux_sym_cmd_identifier_token1] = ACTIONS(2402), - [aux_sym_cmd_identifier_token2] = ACTIONS(2404), - [aux_sym_cmd_identifier_token3] = ACTIONS(2404), - [aux_sym_cmd_identifier_token4] = ACTIONS(2404), - [aux_sym_cmd_identifier_token5] = ACTIONS(2404), - [aux_sym_cmd_identifier_token6] = ACTIONS(2404), - [aux_sym_cmd_identifier_token7] = ACTIONS(2404), - [aux_sym_cmd_identifier_token8] = ACTIONS(2402), - [aux_sym_cmd_identifier_token9] = ACTIONS(2402), - [aux_sym_cmd_identifier_token10] = ACTIONS(2404), - [aux_sym_cmd_identifier_token11] = ACTIONS(2404), - [aux_sym_cmd_identifier_token12] = ACTIONS(2402), - [aux_sym_cmd_identifier_token13] = ACTIONS(2402), - [aux_sym_cmd_identifier_token14] = ACTIONS(2402), - [aux_sym_cmd_identifier_token15] = ACTIONS(2402), - [aux_sym_cmd_identifier_token16] = ACTIONS(2404), - [aux_sym_cmd_identifier_token17] = ACTIONS(2404), - [aux_sym_cmd_identifier_token18] = ACTIONS(2404), - [aux_sym_cmd_identifier_token19] = ACTIONS(2404), - [aux_sym_cmd_identifier_token20] = ACTIONS(2404), - [aux_sym_cmd_identifier_token21] = ACTIONS(2404), - [aux_sym_cmd_identifier_token22] = ACTIONS(2404), - [aux_sym_cmd_identifier_token23] = ACTIONS(2404), - [aux_sym_cmd_identifier_token24] = ACTIONS(2404), - [aux_sym_cmd_identifier_token25] = ACTIONS(2404), - [aux_sym_cmd_identifier_token26] = ACTIONS(2404), - [aux_sym_cmd_identifier_token27] = ACTIONS(2404), - [aux_sym_cmd_identifier_token28] = ACTIONS(2404), - [aux_sym_cmd_identifier_token29] = ACTIONS(2404), - [aux_sym_cmd_identifier_token30] = ACTIONS(2404), - [aux_sym_cmd_identifier_token31] = ACTIONS(2404), - [aux_sym_cmd_identifier_token32] = ACTIONS(2404), - [aux_sym_cmd_identifier_token33] = ACTIONS(2404), - [aux_sym_cmd_identifier_token34] = ACTIONS(2402), - [aux_sym_cmd_identifier_token35] = ACTIONS(2404), - [aux_sym_cmd_identifier_token36] = ACTIONS(2404), - [aux_sym_cmd_identifier_token37] = ACTIONS(2404), - [aux_sym_cmd_identifier_token38] = ACTIONS(2402), - [aux_sym_cmd_identifier_token39] = ACTIONS(2404), - [aux_sym_cmd_identifier_token40] = ACTIONS(2404), - [anon_sym_def] = ACTIONS(2402), - [anon_sym_export_DASHenv] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2404), - [anon_sym_error] = ACTIONS(2402), - [anon_sym_DASH2] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_in2] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_make] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_source] = ACTIONS(2402), - [anon_sym_source_DASHenv] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_hide] = ACTIONS(2402), - [anon_sym_hide_DASHenv] = ACTIONS(2402), - [anon_sym_overlay] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_PLUS2] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), - [aux_sym__val_number_decimal_token1] = ACTIONS(2402), - [aux_sym__val_number_decimal_token2] = ACTIONS(2404), - [aux_sym__val_number_decimal_token3] = ACTIONS(2404), - [aux_sym__val_number_decimal_token4] = ACTIONS(2404), - [aux_sym__val_number_token1] = ACTIONS(2404), - [aux_sym__val_number_token2] = ACTIONS(2404), - [aux_sym__val_number_token3] = ACTIONS(2404), - [aux_sym__val_number_token4] = ACTIONS(2402), - [aux_sym__val_number_token5] = ACTIONS(2402), - [aux_sym__val_number_token6] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2404), - [sym__str_single_quotes] = ACTIONS(2404), - [sym__str_back_ticks] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2404), + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2034), + [aux_sym_cmd_identifier_token3] = ACTIONS(2034), + [aux_sym_cmd_identifier_token4] = ACTIONS(2034), + [aux_sym_cmd_identifier_token5] = ACTIONS(2034), + [aux_sym_cmd_identifier_token6] = ACTIONS(2034), + [aux_sym_cmd_identifier_token7] = ACTIONS(2034), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2034), + [aux_sym_cmd_identifier_token11] = ACTIONS(2034), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2034), + [aux_sym_cmd_identifier_token17] = ACTIONS(2034), + [aux_sym_cmd_identifier_token18] = ACTIONS(2034), + [aux_sym_cmd_identifier_token19] = ACTIONS(2034), + [aux_sym_cmd_identifier_token20] = ACTIONS(2034), + [aux_sym_cmd_identifier_token21] = ACTIONS(2034), + [aux_sym_cmd_identifier_token22] = ACTIONS(2034), + [aux_sym_cmd_identifier_token23] = ACTIONS(2034), + [aux_sym_cmd_identifier_token24] = ACTIONS(2034), + [aux_sym_cmd_identifier_token25] = ACTIONS(2034), + [aux_sym_cmd_identifier_token26] = ACTIONS(2034), + [aux_sym_cmd_identifier_token27] = ACTIONS(2034), + [aux_sym_cmd_identifier_token28] = ACTIONS(2034), + [aux_sym_cmd_identifier_token29] = ACTIONS(2034), + [aux_sym_cmd_identifier_token30] = ACTIONS(2034), + [aux_sym_cmd_identifier_token31] = ACTIONS(2034), + [aux_sym_cmd_identifier_token32] = ACTIONS(2034), + [aux_sym_cmd_identifier_token33] = ACTIONS(2034), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2034), + [aux_sym_cmd_identifier_token36] = ACTIONS(2034), + [aux_sym_cmd_identifier_token37] = ACTIONS(2034), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2034), + [aux_sym_cmd_identifier_token40] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token4] = ACTIONS(2034), + [aux_sym__val_number_token1] = ACTIONS(2034), + [aux_sym__val_number_token2] = ACTIONS(2034), + [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym__str_single_quotes] = ACTIONS(2034), + [sym__str_back_ticks] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), + [sym__entry_separator] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2036), }, - [734] = { - [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_alias] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_let_DASHenv] = ACTIONS(2347), - [anon_sym_mut] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [aux_sym_cmd_identifier_token1] = ACTIONS(2347), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2347), - [aux_sym_cmd_identifier_token13] = ACTIONS(2347), - [aux_sym_cmd_identifier_token14] = ACTIONS(2347), - [aux_sym_cmd_identifier_token15] = ACTIONS(2347), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2347), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [aux_sym_cmd_identifier_token37] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_export_DASHenv] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_in2] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_make] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_catch] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_source] = ACTIONS(2347), - [anon_sym_source_DASHenv] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_hide_DASHenv] = ACTIONS(2347), - [anon_sym_overlay] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_decimal_token4] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2349), + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_alias] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_let_DASHenv] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [aux_sym_cmd_identifier_token1] = ACTIONS(2516), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2516), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2516), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2516), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2516), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2516), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2516), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [aux_sym_cmd_identifier_token37] = ACTIONS(2516), + [aux_sym_cmd_identifier_token38] = ACTIONS(2516), + [aux_sym_cmd_identifier_token39] = ACTIONS(2516), + [aux_sym_cmd_identifier_token40] = ACTIONS(2516), + [anon_sym_def] = ACTIONS(2516), + [anon_sym_export_DASHenv] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_error] = ACTIONS(2516), + [anon_sym_DASH2] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in2] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_make] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_source] = ACTIONS(2516), + [anon_sym_source_DASHenv] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_hide] = ACTIONS(2516), + [anon_sym_hide_DASHenv] = ACTIONS(2516), + [anon_sym_overlay] = ACTIONS(2516), + [anon_sym_as] = ACTIONS(2516), + [anon_sym_PLUS2] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), + [aux_sym__val_number_decimal_token1] = ACTIONS(2516), + [aux_sym__val_number_decimal_token2] = ACTIONS(2516), + [aux_sym__val_number_decimal_token3] = ACTIONS(2516), + [aux_sym__val_number_decimal_token4] = ACTIONS(2516), + [aux_sym__val_number_token1] = ACTIONS(2516), + [aux_sym__val_number_token2] = ACTIONS(2516), + [aux_sym__val_number_token3] = ACTIONS(2516), + [aux_sym__val_number_token4] = ACTIONS(2516), + [aux_sym__val_number_token5] = ACTIONS(2516), + [aux_sym__val_number_token6] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), + [sym__entry_separator] = ACTIONS(2518), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2518), }, - [735] = { - [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_alias] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_let_DASHenv] = ACTIONS(2390), - [anon_sym_mut] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [aux_sym_cmd_identifier_token1] = ACTIONS(2390), - [aux_sym_cmd_identifier_token2] = ACTIONS(2392), - [aux_sym_cmd_identifier_token3] = ACTIONS(2392), - [aux_sym_cmd_identifier_token4] = ACTIONS(2392), - [aux_sym_cmd_identifier_token5] = ACTIONS(2392), - [aux_sym_cmd_identifier_token6] = ACTIONS(2392), - [aux_sym_cmd_identifier_token7] = ACTIONS(2392), - [aux_sym_cmd_identifier_token8] = ACTIONS(2390), - [aux_sym_cmd_identifier_token9] = ACTIONS(2390), - [aux_sym_cmd_identifier_token10] = ACTIONS(2392), - [aux_sym_cmd_identifier_token11] = ACTIONS(2392), - [aux_sym_cmd_identifier_token12] = ACTIONS(2390), - [aux_sym_cmd_identifier_token13] = ACTIONS(2390), - [aux_sym_cmd_identifier_token14] = ACTIONS(2390), - [aux_sym_cmd_identifier_token15] = ACTIONS(2390), - [aux_sym_cmd_identifier_token16] = ACTIONS(2392), - [aux_sym_cmd_identifier_token17] = ACTIONS(2392), - [aux_sym_cmd_identifier_token18] = ACTIONS(2392), - [aux_sym_cmd_identifier_token19] = ACTIONS(2392), - [aux_sym_cmd_identifier_token20] = ACTIONS(2392), - [aux_sym_cmd_identifier_token21] = ACTIONS(2392), - [aux_sym_cmd_identifier_token22] = ACTIONS(2392), - [aux_sym_cmd_identifier_token23] = ACTIONS(2392), - [aux_sym_cmd_identifier_token24] = ACTIONS(2392), - [aux_sym_cmd_identifier_token25] = ACTIONS(2392), - [aux_sym_cmd_identifier_token26] = ACTIONS(2392), - [aux_sym_cmd_identifier_token27] = ACTIONS(2392), - [aux_sym_cmd_identifier_token28] = ACTIONS(2392), - [aux_sym_cmd_identifier_token29] = ACTIONS(2392), - [aux_sym_cmd_identifier_token30] = ACTIONS(2392), - [aux_sym_cmd_identifier_token31] = ACTIONS(2392), - [aux_sym_cmd_identifier_token32] = ACTIONS(2392), - [aux_sym_cmd_identifier_token33] = ACTIONS(2392), - [aux_sym_cmd_identifier_token34] = ACTIONS(2390), - [aux_sym_cmd_identifier_token35] = ACTIONS(2392), - [aux_sym_cmd_identifier_token36] = ACTIONS(2392), - [aux_sym_cmd_identifier_token37] = ACTIONS(2392), - [aux_sym_cmd_identifier_token38] = ACTIONS(2390), - [aux_sym_cmd_identifier_token39] = ACTIONS(2392), - [aux_sym_cmd_identifier_token40] = ACTIONS(2392), - [anon_sym_def] = ACTIONS(2390), - [anon_sym_export_DASHenv] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_DOLLAR] = ACTIONS(2392), - [anon_sym_error] = ACTIONS(2390), - [anon_sym_DASH2] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_in2] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_make] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_catch] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_source] = ACTIONS(2390), - [anon_sym_source_DASHenv] = ACTIONS(2390), - [anon_sym_register] = ACTIONS(2390), - [anon_sym_hide] = ACTIONS(2390), - [anon_sym_hide_DASHenv] = ACTIONS(2390), - [anon_sym_overlay] = ACTIONS(2390), - [anon_sym_as] = ACTIONS(2390), - [anon_sym_PLUS2] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), - [aux_sym__val_number_decimal_token1] = ACTIONS(2390), - [aux_sym__val_number_decimal_token2] = ACTIONS(2392), - [aux_sym__val_number_decimal_token3] = ACTIONS(2392), - [aux_sym__val_number_decimal_token4] = ACTIONS(2392), - [aux_sym__val_number_token1] = ACTIONS(2392), - [aux_sym__val_number_token2] = ACTIONS(2392), - [aux_sym__val_number_token3] = ACTIONS(2392), - [aux_sym__val_number_token4] = ACTIONS(2390), - [aux_sym__val_number_token5] = ACTIONS(2390), - [aux_sym__val_number_token6] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym__str_single_quotes] = ACTIONS(2392), - [sym__str_back_ticks] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2392), + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2038), + [aux_sym_cmd_identifier_token4] = ACTIONS(2038), + [aux_sym_cmd_identifier_token5] = ACTIONS(2038), + [aux_sym_cmd_identifier_token6] = ACTIONS(2038), + [aux_sym_cmd_identifier_token7] = ACTIONS(2038), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2038), + [aux_sym_cmd_identifier_token11] = ACTIONS(2038), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2038), + [aux_sym_cmd_identifier_token17] = ACTIONS(2038), + [aux_sym_cmd_identifier_token18] = ACTIONS(2038), + [aux_sym_cmd_identifier_token19] = ACTIONS(2038), + [aux_sym_cmd_identifier_token20] = ACTIONS(2038), + [aux_sym_cmd_identifier_token21] = ACTIONS(2038), + [aux_sym_cmd_identifier_token22] = ACTIONS(2038), + [aux_sym_cmd_identifier_token23] = ACTIONS(2038), + [aux_sym_cmd_identifier_token24] = ACTIONS(2038), + [aux_sym_cmd_identifier_token25] = ACTIONS(2038), + [aux_sym_cmd_identifier_token26] = ACTIONS(2038), + [aux_sym_cmd_identifier_token27] = ACTIONS(2038), + [aux_sym_cmd_identifier_token28] = ACTIONS(2038), + [aux_sym_cmd_identifier_token29] = ACTIONS(2038), + [aux_sym_cmd_identifier_token30] = ACTIONS(2038), + [aux_sym_cmd_identifier_token31] = ACTIONS(2038), + [aux_sym_cmd_identifier_token32] = ACTIONS(2038), + [aux_sym_cmd_identifier_token33] = ACTIONS(2038), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2038), + [aux_sym_cmd_identifier_token36] = ACTIONS(2038), + [aux_sym_cmd_identifier_token37] = ACTIONS(2038), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2038), + [aux_sym_cmd_identifier_token40] = ACTIONS(2038), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2038), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2038), + [aux_sym__val_number_token2] = ACTIONS(2038), + [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym__str_single_quotes] = ACTIONS(2038), + [sym__str_back_ticks] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), + [sym__entry_separator] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2040), }, - [736] = { - [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2408), - [aux_sym_cmd_identifier_token3] = ACTIONS(2408), - [aux_sym_cmd_identifier_token4] = ACTIONS(2408), - [aux_sym_cmd_identifier_token5] = ACTIONS(2408), - [aux_sym_cmd_identifier_token6] = ACTIONS(2408), - [aux_sym_cmd_identifier_token7] = ACTIONS(2408), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2408), - [aux_sym_cmd_identifier_token11] = ACTIONS(2408), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2408), - [aux_sym_cmd_identifier_token17] = ACTIONS(2408), - [aux_sym_cmd_identifier_token18] = ACTIONS(2408), - [aux_sym_cmd_identifier_token19] = ACTIONS(2408), - [aux_sym_cmd_identifier_token20] = ACTIONS(2408), - [aux_sym_cmd_identifier_token21] = ACTIONS(2408), - [aux_sym_cmd_identifier_token22] = ACTIONS(2408), - [aux_sym_cmd_identifier_token23] = ACTIONS(2408), - [aux_sym_cmd_identifier_token24] = ACTIONS(2408), - [aux_sym_cmd_identifier_token25] = ACTIONS(2408), - [aux_sym_cmd_identifier_token26] = ACTIONS(2408), - [aux_sym_cmd_identifier_token27] = ACTIONS(2408), - [aux_sym_cmd_identifier_token28] = ACTIONS(2408), - [aux_sym_cmd_identifier_token29] = ACTIONS(2408), - [aux_sym_cmd_identifier_token30] = ACTIONS(2408), - [aux_sym_cmd_identifier_token31] = ACTIONS(2408), - [aux_sym_cmd_identifier_token32] = ACTIONS(2408), - [aux_sym_cmd_identifier_token33] = ACTIONS(2408), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2408), - [aux_sym_cmd_identifier_token36] = ACTIONS(2408), - [aux_sym_cmd_identifier_token37] = ACTIONS(2408), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_DOLLAR] = ACTIONS(2408), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_DASH2] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in2] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_PLUS2] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [aux_sym__val_number_decimal_token2] = ACTIONS(2408), - [aux_sym__val_number_decimal_token3] = ACTIONS(2408), - [aux_sym__val_number_decimal_token4] = ACTIONS(2408), - [aux_sym__val_number_token1] = ACTIONS(2408), - [aux_sym__val_number_token2] = ACTIONS(2408), - [aux_sym__val_number_token3] = ACTIONS(2408), - [aux_sym__val_number_token4] = ACTIONS(2406), - [aux_sym__val_number_token5] = ACTIONS(2406), - [aux_sym__val_number_token6] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2408), - [sym__str_single_quotes] = ACTIONS(2408), - [sym__str_back_ticks] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2408), + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_alias] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_let_DASHenv] = ACTIONS(2520), + [anon_sym_mut] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [aux_sym_cmd_identifier_token1] = ACTIONS(2520), + [aux_sym_cmd_identifier_token2] = ACTIONS(2520), + [aux_sym_cmd_identifier_token3] = ACTIONS(2520), + [aux_sym_cmd_identifier_token4] = ACTIONS(2520), + [aux_sym_cmd_identifier_token5] = ACTIONS(2520), + [aux_sym_cmd_identifier_token6] = ACTIONS(2520), + [aux_sym_cmd_identifier_token7] = ACTIONS(2520), + [aux_sym_cmd_identifier_token8] = ACTIONS(2520), + [aux_sym_cmd_identifier_token9] = ACTIONS(2520), + [aux_sym_cmd_identifier_token10] = ACTIONS(2520), + [aux_sym_cmd_identifier_token11] = ACTIONS(2520), + [aux_sym_cmd_identifier_token12] = ACTIONS(2520), + [aux_sym_cmd_identifier_token13] = ACTIONS(2520), + [aux_sym_cmd_identifier_token14] = ACTIONS(2520), + [aux_sym_cmd_identifier_token15] = ACTIONS(2520), + [aux_sym_cmd_identifier_token16] = ACTIONS(2520), + [aux_sym_cmd_identifier_token17] = ACTIONS(2520), + [aux_sym_cmd_identifier_token18] = ACTIONS(2520), + [aux_sym_cmd_identifier_token19] = ACTIONS(2520), + [aux_sym_cmd_identifier_token20] = ACTIONS(2520), + [aux_sym_cmd_identifier_token21] = ACTIONS(2520), + [aux_sym_cmd_identifier_token22] = ACTIONS(2520), + [aux_sym_cmd_identifier_token23] = ACTIONS(2520), + [aux_sym_cmd_identifier_token24] = ACTIONS(2520), + [aux_sym_cmd_identifier_token25] = ACTIONS(2520), + [aux_sym_cmd_identifier_token26] = ACTIONS(2520), + [aux_sym_cmd_identifier_token27] = ACTIONS(2520), + [aux_sym_cmd_identifier_token28] = ACTIONS(2520), + [aux_sym_cmd_identifier_token29] = ACTIONS(2520), + [aux_sym_cmd_identifier_token30] = ACTIONS(2520), + [aux_sym_cmd_identifier_token31] = ACTIONS(2520), + [aux_sym_cmd_identifier_token32] = ACTIONS(2520), + [aux_sym_cmd_identifier_token33] = ACTIONS(2520), + [aux_sym_cmd_identifier_token34] = ACTIONS(2520), + [aux_sym_cmd_identifier_token35] = ACTIONS(2520), + [aux_sym_cmd_identifier_token36] = ACTIONS(2520), + [aux_sym_cmd_identifier_token37] = ACTIONS(2520), + [aux_sym_cmd_identifier_token38] = ACTIONS(2520), + [aux_sym_cmd_identifier_token39] = ACTIONS(2520), + [aux_sym_cmd_identifier_token40] = ACTIONS(2520), + [anon_sym_def] = ACTIONS(2520), + [anon_sym_export_DASHenv] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_error] = ACTIONS(2520), + [anon_sym_DASH2] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in2] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_make] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_source] = ACTIONS(2520), + [anon_sym_source_DASHenv] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_hide] = ACTIONS(2520), + [anon_sym_hide_DASHenv] = ACTIONS(2520), + [anon_sym_overlay] = ACTIONS(2520), + [anon_sym_as] = ACTIONS(2520), + [anon_sym_PLUS2] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2520), + [aux_sym__val_number_decimal_token3] = ACTIONS(2520), + [aux_sym__val_number_decimal_token4] = ACTIONS(2520), + [aux_sym__val_number_token1] = ACTIONS(2520), + [aux_sym__val_number_token2] = ACTIONS(2520), + [aux_sym__val_number_token3] = ACTIONS(2520), + [aux_sym__val_number_token4] = ACTIONS(2520), + [aux_sym__val_number_token5] = ACTIONS(2520), + [aux_sym__val_number_token6] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2520), + [sym__str_back_ticks] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), + [sym__entry_separator] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2522), }, - [737] = { - [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1889), - [aux_sym_cmd_identifier_token3] = ACTIONS(1889), - [aux_sym_cmd_identifier_token4] = ACTIONS(1889), - [aux_sym_cmd_identifier_token5] = ACTIONS(1889), - [aux_sym_cmd_identifier_token6] = ACTIONS(1889), - [aux_sym_cmd_identifier_token7] = ACTIONS(1889), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1889), - [aux_sym_cmd_identifier_token11] = ACTIONS(1889), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1889), - [aux_sym_cmd_identifier_token17] = ACTIONS(1889), - [aux_sym_cmd_identifier_token18] = ACTIONS(1889), - [aux_sym_cmd_identifier_token19] = ACTIONS(1889), - [aux_sym_cmd_identifier_token20] = ACTIONS(1889), - [aux_sym_cmd_identifier_token21] = ACTIONS(1889), - [aux_sym_cmd_identifier_token22] = ACTIONS(1889), - [aux_sym_cmd_identifier_token23] = ACTIONS(1889), - [aux_sym_cmd_identifier_token24] = ACTIONS(1889), - [aux_sym_cmd_identifier_token25] = ACTIONS(1889), - [aux_sym_cmd_identifier_token26] = ACTIONS(1889), - [aux_sym_cmd_identifier_token27] = ACTIONS(1889), - [aux_sym_cmd_identifier_token28] = ACTIONS(1889), - [aux_sym_cmd_identifier_token29] = ACTIONS(1889), - [aux_sym_cmd_identifier_token30] = ACTIONS(1889), - [aux_sym_cmd_identifier_token31] = ACTIONS(1889), - [aux_sym_cmd_identifier_token32] = ACTIONS(1889), - [aux_sym_cmd_identifier_token33] = ACTIONS(1889), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1889), - [aux_sym_cmd_identifier_token36] = ACTIONS(1889), - [aux_sym_cmd_identifier_token37] = ACTIONS(1889), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1889), - [aux_sym_cmd_identifier_token40] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1889), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2042), + [aux_sym_cmd_identifier_token3] = ACTIONS(2042), + [aux_sym_cmd_identifier_token4] = ACTIONS(2042), + [aux_sym_cmd_identifier_token5] = ACTIONS(2042), + [aux_sym_cmd_identifier_token6] = ACTIONS(2042), + [aux_sym_cmd_identifier_token7] = ACTIONS(2042), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2042), + [aux_sym_cmd_identifier_token11] = ACTIONS(2042), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2042), + [aux_sym_cmd_identifier_token17] = ACTIONS(2042), + [aux_sym_cmd_identifier_token18] = ACTIONS(2042), + [aux_sym_cmd_identifier_token19] = ACTIONS(2042), + [aux_sym_cmd_identifier_token20] = ACTIONS(2042), + [aux_sym_cmd_identifier_token21] = ACTIONS(2042), + [aux_sym_cmd_identifier_token22] = ACTIONS(2042), + [aux_sym_cmd_identifier_token23] = ACTIONS(2042), + [aux_sym_cmd_identifier_token24] = ACTIONS(2042), + [aux_sym_cmd_identifier_token25] = ACTIONS(2042), + [aux_sym_cmd_identifier_token26] = ACTIONS(2042), + [aux_sym_cmd_identifier_token27] = ACTIONS(2042), + [aux_sym_cmd_identifier_token28] = ACTIONS(2042), + [aux_sym_cmd_identifier_token29] = ACTIONS(2042), + [aux_sym_cmd_identifier_token30] = ACTIONS(2042), + [aux_sym_cmd_identifier_token31] = ACTIONS(2042), + [aux_sym_cmd_identifier_token32] = ACTIONS(2042), + [aux_sym_cmd_identifier_token33] = ACTIONS(2042), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2042), + [aux_sym_cmd_identifier_token36] = ACTIONS(2042), + [aux_sym_cmd_identifier_token37] = ACTIONS(2042), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2042), + [aux_sym_cmd_identifier_token40] = ACTIONS(2042), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2042), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2042), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2042), + [aux_sym__val_number_decimal_token3] = ACTIONS(2042), + [aux_sym__val_number_decimal_token4] = ACTIONS(2042), + [aux_sym__val_number_token1] = ACTIONS(2042), + [aux_sym__val_number_token2] = ACTIONS(2042), + [aux_sym__val_number_token3] = ACTIONS(2042), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym__str_single_quotes] = ACTIONS(2042), + [sym__str_back_ticks] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2042), + [sym__entry_separator] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2044), }, - [738] = { - [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(2343), - [anon_sym_alias] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_let_DASHenv] = ACTIONS(2343), - [anon_sym_mut] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [aux_sym_cmd_identifier_token1] = ACTIONS(2343), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2343), - [aux_sym_cmd_identifier_token9] = ACTIONS(2343), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2343), - [aux_sym_cmd_identifier_token13] = ACTIONS(2343), - [aux_sym_cmd_identifier_token14] = ACTIONS(2343), - [aux_sym_cmd_identifier_token15] = ACTIONS(2343), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2343), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [aux_sym_cmd_identifier_token37] = ACTIONS(2345), - [aux_sym_cmd_identifier_token38] = ACTIONS(2343), - [aux_sym_cmd_identifier_token39] = ACTIONS(2345), - [aux_sym_cmd_identifier_token40] = ACTIONS(2345), - [anon_sym_def] = ACTIONS(2343), - [anon_sym_export_DASHenv] = ACTIONS(2343), - [anon_sym_extern] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_error] = ACTIONS(2343), - [anon_sym_DASH2] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_in2] = ACTIONS(2343), - [anon_sym_loop] = ACTIONS(2343), - [anon_sym_make] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_catch] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_source] = ACTIONS(2343), - [anon_sym_source_DASHenv] = ACTIONS(2343), - [anon_sym_register] = ACTIONS(2343), - [anon_sym_hide] = ACTIONS(2343), - [anon_sym_hide_DASHenv] = ACTIONS(2343), - [anon_sym_overlay] = ACTIONS(2343), - [anon_sym_as] = ACTIONS(2343), - [anon_sym_PLUS2] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), - [aux_sym__val_number_decimal_token1] = ACTIONS(2343), - [aux_sym__val_number_decimal_token2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2345), - [aux_sym__val_number_decimal_token4] = ACTIONS(2345), - [aux_sym__val_number_token1] = ACTIONS(2345), - [aux_sym__val_number_token2] = ACTIONS(2345), - [aux_sym__val_number_token3] = ACTIONS(2345), - [aux_sym__val_number_token4] = ACTIONS(2343), - [aux_sym__val_number_token5] = ACTIONS(2343), - [aux_sym__val_number_token6] = ACTIONS(2343), - [anon_sym_DQUOTE] = ACTIONS(2345), - [sym__str_single_quotes] = ACTIONS(2345), - [sym__str_back_ticks] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2345), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_alias] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_let_DASHenv] = ACTIONS(2524), + [anon_sym_mut] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [aux_sym_cmd_identifier_token1] = ACTIONS(2524), + [aux_sym_cmd_identifier_token2] = ACTIONS(2524), + [aux_sym_cmd_identifier_token3] = ACTIONS(2524), + [aux_sym_cmd_identifier_token4] = ACTIONS(2524), + [aux_sym_cmd_identifier_token5] = ACTIONS(2524), + [aux_sym_cmd_identifier_token6] = ACTIONS(2524), + [aux_sym_cmd_identifier_token7] = ACTIONS(2524), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2524), + [aux_sym_cmd_identifier_token10] = ACTIONS(2524), + [aux_sym_cmd_identifier_token11] = ACTIONS(2524), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2524), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2524), + [aux_sym_cmd_identifier_token16] = ACTIONS(2524), + [aux_sym_cmd_identifier_token17] = ACTIONS(2524), + [aux_sym_cmd_identifier_token18] = ACTIONS(2524), + [aux_sym_cmd_identifier_token19] = ACTIONS(2524), + [aux_sym_cmd_identifier_token20] = ACTIONS(2524), + [aux_sym_cmd_identifier_token21] = ACTIONS(2524), + [aux_sym_cmd_identifier_token22] = ACTIONS(2524), + [aux_sym_cmd_identifier_token23] = ACTIONS(2524), + [aux_sym_cmd_identifier_token24] = ACTIONS(2524), + [aux_sym_cmd_identifier_token25] = ACTIONS(2524), + [aux_sym_cmd_identifier_token26] = ACTIONS(2524), + [aux_sym_cmd_identifier_token27] = ACTIONS(2524), + [aux_sym_cmd_identifier_token28] = ACTIONS(2524), + [aux_sym_cmd_identifier_token29] = ACTIONS(2524), + [aux_sym_cmd_identifier_token30] = ACTIONS(2524), + [aux_sym_cmd_identifier_token31] = ACTIONS(2524), + [aux_sym_cmd_identifier_token32] = ACTIONS(2524), + [aux_sym_cmd_identifier_token33] = ACTIONS(2524), + [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token35] = ACTIONS(2524), + [aux_sym_cmd_identifier_token36] = ACTIONS(2524), + [aux_sym_cmd_identifier_token37] = ACTIONS(2524), + [aux_sym_cmd_identifier_token38] = ACTIONS(2524), + [aux_sym_cmd_identifier_token39] = ACTIONS(2524), + [aux_sym_cmd_identifier_token40] = ACTIONS(2524), + [anon_sym_def] = ACTIONS(2524), + [anon_sym_export_DASHenv] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_DOLLAR] = ACTIONS(2524), + [anon_sym_error] = ACTIONS(2524), + [anon_sym_DASH2] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in2] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_make] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_source] = ACTIONS(2524), + [anon_sym_source_DASHenv] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_hide] = ACTIONS(2524), + [anon_sym_hide_DASHenv] = ACTIONS(2524), + [anon_sym_overlay] = ACTIONS(2524), + [anon_sym_as] = ACTIONS(2524), + [anon_sym_PLUS2] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2524), + [aux_sym__val_number_decimal_token1] = ACTIONS(2524), + [aux_sym__val_number_decimal_token2] = ACTIONS(2524), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [aux_sym__val_number_token1] = ACTIONS(2524), + [aux_sym__val_number_token2] = ACTIONS(2524), + [aux_sym__val_number_token3] = ACTIONS(2524), + [aux_sym__val_number_token4] = ACTIONS(2524), + [aux_sym__val_number_token5] = ACTIONS(2524), + [aux_sym__val_number_token6] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym__str_single_quotes] = ACTIONS(2524), + [sym__str_back_ticks] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2524), + [sym__entry_separator] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2526), + }, + [657] = { + [sym_comment] = STATE(657), + [aux_sym_shebang_repeat1] = STATE(657), + [anon_sym_export] = ACTIONS(1231), + [anon_sym_alias] = ACTIONS(1231), + [anon_sym_let] = ACTIONS(1231), + [anon_sym_let_DASHenv] = ACTIONS(1231), + [anon_sym_mut] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [aux_sym_cmd_identifier_token1] = ACTIONS(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(1233), + [aux_sym_cmd_identifier_token3] = ACTIONS(1233), + [aux_sym_cmd_identifier_token4] = ACTIONS(1233), + [aux_sym_cmd_identifier_token5] = ACTIONS(1233), + [aux_sym_cmd_identifier_token6] = ACTIONS(1233), + [aux_sym_cmd_identifier_token7] = ACTIONS(1233), + [aux_sym_cmd_identifier_token8] = ACTIONS(1231), + [aux_sym_cmd_identifier_token9] = ACTIONS(1231), + [aux_sym_cmd_identifier_token10] = ACTIONS(1233), + [aux_sym_cmd_identifier_token11] = ACTIONS(1233), + [aux_sym_cmd_identifier_token12] = ACTIONS(1231), + [aux_sym_cmd_identifier_token13] = ACTIONS(1231), + [aux_sym_cmd_identifier_token14] = ACTIONS(1231), + [aux_sym_cmd_identifier_token15] = ACTIONS(1231), + [aux_sym_cmd_identifier_token16] = ACTIONS(1233), + [aux_sym_cmd_identifier_token17] = ACTIONS(1233), + [aux_sym_cmd_identifier_token18] = ACTIONS(1233), + [aux_sym_cmd_identifier_token19] = ACTIONS(1233), + [aux_sym_cmd_identifier_token20] = ACTIONS(1233), + [aux_sym_cmd_identifier_token21] = ACTIONS(1233), + [aux_sym_cmd_identifier_token22] = ACTIONS(1233), + [aux_sym_cmd_identifier_token23] = ACTIONS(1233), + [aux_sym_cmd_identifier_token24] = ACTIONS(1233), + [aux_sym_cmd_identifier_token25] = ACTIONS(1233), + [aux_sym_cmd_identifier_token26] = ACTIONS(1233), + [aux_sym_cmd_identifier_token27] = ACTIONS(1233), + [aux_sym_cmd_identifier_token28] = ACTIONS(1233), + [aux_sym_cmd_identifier_token29] = ACTIONS(1233), + [aux_sym_cmd_identifier_token30] = ACTIONS(1233), + [aux_sym_cmd_identifier_token31] = ACTIONS(1233), + [aux_sym_cmd_identifier_token32] = ACTIONS(1233), + [aux_sym_cmd_identifier_token33] = ACTIONS(1233), + [aux_sym_cmd_identifier_token34] = ACTIONS(1231), + [aux_sym_cmd_identifier_token35] = ACTIONS(1233), + [aux_sym_cmd_identifier_token36] = ACTIONS(1233), + [aux_sym_cmd_identifier_token37] = ACTIONS(1233), + [aux_sym_cmd_identifier_token38] = ACTIONS(1231), + [aux_sym_cmd_identifier_token39] = ACTIONS(1233), + [aux_sym_cmd_identifier_token40] = ACTIONS(1233), + [sym__newline] = ACTIONS(2528), + [anon_sym_def] = ACTIONS(1231), + [anon_sym_export_DASHenv] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym_module] = ACTIONS(1231), + [anon_sym_use] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_error] = ACTIONS(1231), + [anon_sym_DASH2] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_in2] = ACTIONS(1231), + [anon_sym_loop] = ACTIONS(1231), + [anon_sym_make] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_catch] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_source] = ACTIONS(1231), + [anon_sym_source_DASHenv] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_hide_DASHenv] = ACTIONS(1231), + [anon_sym_overlay] = ACTIONS(1231), + [anon_sym_as] = ACTIONS(1231), + [anon_sym_PLUS2] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1233), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1233), + [aux_sym__val_number_decimal_token1] = ACTIONS(1231), + [aux_sym__val_number_decimal_token2] = ACTIONS(1233), + [aux_sym__val_number_decimal_token3] = ACTIONS(1233), + [aux_sym__val_number_decimal_token4] = ACTIONS(1233), + [aux_sym__val_number_token1] = ACTIONS(1233), + [aux_sym__val_number_token2] = ACTIONS(1233), + [aux_sym__val_number_token3] = ACTIONS(1233), + [aux_sym__val_number_token4] = ACTIONS(1231), + [aux_sym__val_number_token5] = ACTIONS(1231), + [aux_sym__val_number_token6] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym__str_single_quotes] = ACTIONS(1233), + [sym__str_back_ticks] = ACTIONS(1233), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1233), + }, + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_let_DASHenv] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2531), + [aux_sym_cmd_identifier_token3] = ACTIONS(2531), + [aux_sym_cmd_identifier_token4] = ACTIONS(2531), + [aux_sym_cmd_identifier_token5] = ACTIONS(2531), + [aux_sym_cmd_identifier_token6] = ACTIONS(2531), + [aux_sym_cmd_identifier_token7] = ACTIONS(2531), + [aux_sym_cmd_identifier_token8] = ACTIONS(2531), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2531), + [aux_sym_cmd_identifier_token11] = ACTIONS(2531), + [aux_sym_cmd_identifier_token12] = ACTIONS(2531), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2531), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2531), + [aux_sym_cmd_identifier_token17] = ACTIONS(2531), + [aux_sym_cmd_identifier_token18] = ACTIONS(2531), + [aux_sym_cmd_identifier_token19] = ACTIONS(2531), + [aux_sym_cmd_identifier_token20] = ACTIONS(2531), + [aux_sym_cmd_identifier_token21] = ACTIONS(2531), + [aux_sym_cmd_identifier_token22] = ACTIONS(2531), + [aux_sym_cmd_identifier_token23] = ACTIONS(2531), + [aux_sym_cmd_identifier_token24] = ACTIONS(2531), + [aux_sym_cmd_identifier_token25] = ACTIONS(2531), + [aux_sym_cmd_identifier_token26] = ACTIONS(2531), + [aux_sym_cmd_identifier_token27] = ACTIONS(2531), + [aux_sym_cmd_identifier_token28] = ACTIONS(2531), + [aux_sym_cmd_identifier_token29] = ACTIONS(2531), + [aux_sym_cmd_identifier_token30] = ACTIONS(2531), + [aux_sym_cmd_identifier_token31] = ACTIONS(2531), + [aux_sym_cmd_identifier_token32] = ACTIONS(2531), + [aux_sym_cmd_identifier_token33] = ACTIONS(2531), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2531), + [aux_sym_cmd_identifier_token36] = ACTIONS(2531), + [aux_sym_cmd_identifier_token37] = ACTIONS(2531), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2531), + [aux_sym_cmd_identifier_token40] = ACTIONS(2531), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2531), + [anon_sym_error] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_in2] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_make] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_source] = ACTIONS(2531), + [anon_sym_source_DASHenv] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_hide] = ACTIONS(2531), + [anon_sym_hide_DASHenv] = ACTIONS(2531), + [anon_sym_overlay] = ACTIONS(2531), + [anon_sym_as] = ACTIONS(2531), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2531), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2531), + [aux_sym__val_number_decimal_token4] = ACTIONS(2531), + [aux_sym__val_number_token1] = ACTIONS(2531), + [aux_sym__val_number_token2] = ACTIONS(2531), + [aux_sym__val_number_token3] = ACTIONS(2531), + [aux_sym__val_number_token4] = ACTIONS(2531), + [aux_sym__val_number_token5] = ACTIONS(2531), + [aux_sym__val_number_token6] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym__str_single_quotes] = ACTIONS(2531), + [sym__str_back_ticks] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2531), + [sym__entry_separator] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2533), + }, + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(2054), + [anon_sym_alias] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_let_DASHenv] = ACTIONS(2054), + [anon_sym_mut] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [aux_sym_cmd_identifier_token1] = ACTIONS(2054), + [aux_sym_cmd_identifier_token2] = ACTIONS(2054), + [aux_sym_cmd_identifier_token3] = ACTIONS(2054), + [aux_sym_cmd_identifier_token4] = ACTIONS(2054), + [aux_sym_cmd_identifier_token5] = ACTIONS(2054), + [aux_sym_cmd_identifier_token6] = ACTIONS(2054), + [aux_sym_cmd_identifier_token7] = ACTIONS(2054), + [aux_sym_cmd_identifier_token8] = ACTIONS(2054), + [aux_sym_cmd_identifier_token9] = ACTIONS(2054), + [aux_sym_cmd_identifier_token10] = ACTIONS(2054), + [aux_sym_cmd_identifier_token11] = ACTIONS(2054), + [aux_sym_cmd_identifier_token12] = ACTIONS(2054), + [aux_sym_cmd_identifier_token13] = ACTIONS(2054), + [aux_sym_cmd_identifier_token14] = ACTIONS(2054), + [aux_sym_cmd_identifier_token15] = ACTIONS(2054), + [aux_sym_cmd_identifier_token16] = ACTIONS(2054), + [aux_sym_cmd_identifier_token17] = ACTIONS(2054), + [aux_sym_cmd_identifier_token18] = ACTIONS(2054), + [aux_sym_cmd_identifier_token19] = ACTIONS(2054), + [aux_sym_cmd_identifier_token20] = ACTIONS(2054), + [aux_sym_cmd_identifier_token21] = ACTIONS(2054), + [aux_sym_cmd_identifier_token22] = ACTIONS(2054), + [aux_sym_cmd_identifier_token23] = ACTIONS(2054), + [aux_sym_cmd_identifier_token24] = ACTIONS(2054), + [aux_sym_cmd_identifier_token25] = ACTIONS(2054), + [aux_sym_cmd_identifier_token26] = ACTIONS(2054), + [aux_sym_cmd_identifier_token27] = ACTIONS(2054), + [aux_sym_cmd_identifier_token28] = ACTIONS(2054), + [aux_sym_cmd_identifier_token29] = ACTIONS(2054), + [aux_sym_cmd_identifier_token30] = ACTIONS(2054), + [aux_sym_cmd_identifier_token31] = ACTIONS(2054), + [aux_sym_cmd_identifier_token32] = ACTIONS(2054), + [aux_sym_cmd_identifier_token33] = ACTIONS(2054), + [aux_sym_cmd_identifier_token34] = ACTIONS(2054), + [aux_sym_cmd_identifier_token35] = ACTIONS(2054), + [aux_sym_cmd_identifier_token36] = ACTIONS(2054), + [aux_sym_cmd_identifier_token37] = ACTIONS(2054), + [aux_sym_cmd_identifier_token38] = ACTIONS(2054), + [aux_sym_cmd_identifier_token39] = ACTIONS(2054), + [aux_sym_cmd_identifier_token40] = ACTIONS(2054), + [anon_sym_def] = ACTIONS(2054), + [anon_sym_export_DASHenv] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_module] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_error] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_make] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_source] = ACTIONS(2054), + [anon_sym_source_DASHenv] = ACTIONS(2054), + [anon_sym_register] = ACTIONS(2054), + [anon_sym_hide] = ACTIONS(2054), + [anon_sym_hide_DASHenv] = ACTIONS(2054), + [anon_sym_overlay] = ACTIONS(2054), + [anon_sym_as] = ACTIONS(2054), + [anon_sym_PLUS2] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2054), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2054), + [aux_sym__val_number_decimal_token3] = ACTIONS(2054), + [aux_sym__val_number_decimal_token4] = ACTIONS(2054), + [aux_sym__val_number_token1] = ACTIONS(2054), + [aux_sym__val_number_token2] = ACTIONS(2054), + [aux_sym__val_number_token3] = ACTIONS(2054), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym__str_single_quotes] = ACTIONS(2054), + [sym__str_back_ticks] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2054), + [sym__entry_separator] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2056), + }, + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_alias] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_let_DASHenv] = ACTIONS(2535), + [anon_sym_mut] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [aux_sym_cmd_identifier_token1] = ACTIONS(2535), + [aux_sym_cmd_identifier_token2] = ACTIONS(2535), + [aux_sym_cmd_identifier_token3] = ACTIONS(2535), + [aux_sym_cmd_identifier_token4] = ACTIONS(2535), + [aux_sym_cmd_identifier_token5] = ACTIONS(2535), + [aux_sym_cmd_identifier_token6] = ACTIONS(2535), + [aux_sym_cmd_identifier_token7] = ACTIONS(2535), + [aux_sym_cmd_identifier_token8] = ACTIONS(2535), + [aux_sym_cmd_identifier_token9] = ACTIONS(2535), + [aux_sym_cmd_identifier_token10] = ACTIONS(2535), + [aux_sym_cmd_identifier_token11] = ACTIONS(2535), + [aux_sym_cmd_identifier_token12] = ACTIONS(2535), + [aux_sym_cmd_identifier_token13] = ACTIONS(2535), + [aux_sym_cmd_identifier_token14] = ACTIONS(2535), + [aux_sym_cmd_identifier_token15] = ACTIONS(2535), + [aux_sym_cmd_identifier_token16] = ACTIONS(2535), + [aux_sym_cmd_identifier_token17] = ACTIONS(2535), + [aux_sym_cmd_identifier_token18] = ACTIONS(2535), + [aux_sym_cmd_identifier_token19] = ACTIONS(2535), + [aux_sym_cmd_identifier_token20] = ACTIONS(2535), + [aux_sym_cmd_identifier_token21] = ACTIONS(2535), + [aux_sym_cmd_identifier_token22] = ACTIONS(2535), + [aux_sym_cmd_identifier_token23] = ACTIONS(2535), + [aux_sym_cmd_identifier_token24] = ACTIONS(2535), + [aux_sym_cmd_identifier_token25] = ACTIONS(2535), + [aux_sym_cmd_identifier_token26] = ACTIONS(2535), + [aux_sym_cmd_identifier_token27] = ACTIONS(2535), + [aux_sym_cmd_identifier_token28] = ACTIONS(2535), + [aux_sym_cmd_identifier_token29] = ACTIONS(2535), + [aux_sym_cmd_identifier_token30] = ACTIONS(2535), + [aux_sym_cmd_identifier_token31] = ACTIONS(2535), + [aux_sym_cmd_identifier_token32] = ACTIONS(2535), + [aux_sym_cmd_identifier_token33] = ACTIONS(2535), + [aux_sym_cmd_identifier_token34] = ACTIONS(2535), + [aux_sym_cmd_identifier_token35] = ACTIONS(2535), + [aux_sym_cmd_identifier_token36] = ACTIONS(2535), + [aux_sym_cmd_identifier_token37] = ACTIONS(2535), + [aux_sym_cmd_identifier_token38] = ACTIONS(2535), + [aux_sym_cmd_identifier_token39] = ACTIONS(2535), + [aux_sym_cmd_identifier_token40] = ACTIONS(2535), + [anon_sym_def] = ACTIONS(2535), + [anon_sym_export_DASHenv] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_error] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_in2] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_make] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_catch] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_source] = ACTIONS(2535), + [anon_sym_source_DASHenv] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_hide] = ACTIONS(2535), + [anon_sym_hide_DASHenv] = ACTIONS(2535), + [anon_sym_overlay] = ACTIONS(2535), + [anon_sym_as] = ACTIONS(2535), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2535), + [aux_sym__val_number_decimal_token1] = ACTIONS(2535), + [aux_sym__val_number_decimal_token2] = ACTIONS(2535), + [aux_sym__val_number_decimal_token3] = ACTIONS(2535), + [aux_sym__val_number_decimal_token4] = ACTIONS(2535), + [aux_sym__val_number_token1] = ACTIONS(2535), + [aux_sym__val_number_token2] = ACTIONS(2535), + [aux_sym__val_number_token3] = ACTIONS(2535), + [aux_sym__val_number_token4] = ACTIONS(2535), + [aux_sym__val_number_token5] = ACTIONS(2535), + [aux_sym__val_number_token6] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym__str_single_quotes] = ACTIONS(2535), + [sym__str_back_ticks] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2535), + [sym__entry_separator] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2537), + }, + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_alias] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_let_DASHenv] = ACTIONS(2539), + [anon_sym_mut] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [aux_sym_cmd_identifier_token1] = ACTIONS(2539), + [aux_sym_cmd_identifier_token2] = ACTIONS(2539), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [aux_sym_cmd_identifier_token6] = ACTIONS(2539), + [aux_sym_cmd_identifier_token7] = ACTIONS(2539), + [aux_sym_cmd_identifier_token8] = ACTIONS(2539), + [aux_sym_cmd_identifier_token9] = ACTIONS(2539), + [aux_sym_cmd_identifier_token10] = ACTIONS(2539), + [aux_sym_cmd_identifier_token11] = ACTIONS(2539), + [aux_sym_cmd_identifier_token12] = ACTIONS(2539), + [aux_sym_cmd_identifier_token13] = ACTIONS(2539), + [aux_sym_cmd_identifier_token14] = ACTIONS(2539), + [aux_sym_cmd_identifier_token15] = ACTIONS(2539), + [aux_sym_cmd_identifier_token16] = ACTIONS(2539), + [aux_sym_cmd_identifier_token17] = ACTIONS(2539), + [aux_sym_cmd_identifier_token18] = ACTIONS(2539), + [aux_sym_cmd_identifier_token19] = ACTIONS(2539), + [aux_sym_cmd_identifier_token20] = ACTIONS(2539), + [aux_sym_cmd_identifier_token21] = ACTIONS(2539), + [aux_sym_cmd_identifier_token22] = ACTIONS(2539), + [aux_sym_cmd_identifier_token23] = ACTIONS(2539), + [aux_sym_cmd_identifier_token24] = ACTIONS(2539), + [aux_sym_cmd_identifier_token25] = ACTIONS(2539), + [aux_sym_cmd_identifier_token26] = ACTIONS(2539), + [aux_sym_cmd_identifier_token27] = ACTIONS(2539), + [aux_sym_cmd_identifier_token28] = ACTIONS(2539), + [aux_sym_cmd_identifier_token29] = ACTIONS(2539), + [aux_sym_cmd_identifier_token30] = ACTIONS(2539), + [aux_sym_cmd_identifier_token31] = ACTIONS(2539), + [aux_sym_cmd_identifier_token32] = ACTIONS(2539), + [aux_sym_cmd_identifier_token33] = ACTIONS(2539), + [aux_sym_cmd_identifier_token34] = ACTIONS(2539), + [aux_sym_cmd_identifier_token35] = ACTIONS(2539), + [aux_sym_cmd_identifier_token36] = ACTIONS(2539), + [aux_sym_cmd_identifier_token37] = ACTIONS(2539), + [aux_sym_cmd_identifier_token38] = ACTIONS(2539), + [aux_sym_cmd_identifier_token39] = ACTIONS(2539), + [aux_sym_cmd_identifier_token40] = ACTIONS(2539), + [anon_sym_def] = ACTIONS(2539), + [anon_sym_export_DASHenv] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2539), + [anon_sym_error] = ACTIONS(2539), + [anon_sym_DASH2] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_in2] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_make] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_catch] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_source] = ACTIONS(2539), + [anon_sym_source_DASHenv] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_hide] = ACTIONS(2539), + [anon_sym_hide_DASHenv] = ACTIONS(2539), + [anon_sym_overlay] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_PLUS2] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2539), + [aux_sym__val_number_decimal_token1] = ACTIONS(2539), + [aux_sym__val_number_decimal_token2] = ACTIONS(2539), + [aux_sym__val_number_decimal_token3] = ACTIONS(2539), + [aux_sym__val_number_decimal_token4] = ACTIONS(2539), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [aux_sym__val_number_token4] = ACTIONS(2539), + [aux_sym__val_number_token5] = ACTIONS(2539), + [aux_sym__val_number_token6] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym__str_single_quotes] = ACTIONS(2539), + [sym__str_back_ticks] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2539), + [sym__entry_separator] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2541), + }, + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [aux_sym_cmd_identifier_token1] = ACTIONS(2058), + [aux_sym_cmd_identifier_token2] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2058), + [aux_sym_cmd_identifier_token4] = ACTIONS(2058), + [aux_sym_cmd_identifier_token5] = ACTIONS(2058), + [aux_sym_cmd_identifier_token6] = ACTIONS(2058), + [aux_sym_cmd_identifier_token7] = ACTIONS(2058), + [aux_sym_cmd_identifier_token8] = ACTIONS(2058), + [aux_sym_cmd_identifier_token9] = ACTIONS(2058), + [aux_sym_cmd_identifier_token10] = ACTIONS(2058), + [aux_sym_cmd_identifier_token11] = ACTIONS(2058), + [aux_sym_cmd_identifier_token12] = ACTIONS(2058), + [aux_sym_cmd_identifier_token13] = ACTIONS(2058), + [aux_sym_cmd_identifier_token14] = ACTIONS(2058), + [aux_sym_cmd_identifier_token15] = ACTIONS(2058), + [aux_sym_cmd_identifier_token16] = ACTIONS(2058), + [aux_sym_cmd_identifier_token17] = ACTIONS(2058), + [aux_sym_cmd_identifier_token18] = ACTIONS(2058), + [aux_sym_cmd_identifier_token19] = ACTIONS(2058), + [aux_sym_cmd_identifier_token20] = ACTIONS(2058), + [aux_sym_cmd_identifier_token21] = ACTIONS(2058), + [aux_sym_cmd_identifier_token22] = ACTIONS(2058), + [aux_sym_cmd_identifier_token23] = ACTIONS(2058), + [aux_sym_cmd_identifier_token24] = ACTIONS(2058), + [aux_sym_cmd_identifier_token25] = ACTIONS(2058), + [aux_sym_cmd_identifier_token26] = ACTIONS(2058), + [aux_sym_cmd_identifier_token27] = ACTIONS(2058), + [aux_sym_cmd_identifier_token28] = ACTIONS(2058), + [aux_sym_cmd_identifier_token29] = ACTIONS(2058), + [aux_sym_cmd_identifier_token30] = ACTIONS(2058), + [aux_sym_cmd_identifier_token31] = ACTIONS(2058), + [aux_sym_cmd_identifier_token32] = ACTIONS(2058), + [aux_sym_cmd_identifier_token33] = ACTIONS(2058), + [aux_sym_cmd_identifier_token34] = ACTIONS(2058), + [aux_sym_cmd_identifier_token35] = ACTIONS(2058), + [aux_sym_cmd_identifier_token36] = ACTIONS(2058), + [aux_sym_cmd_identifier_token37] = ACTIONS(2058), + [aux_sym_cmd_identifier_token38] = ACTIONS(2058), + [aux_sym_cmd_identifier_token39] = ACTIONS(2058), + [aux_sym_cmd_identifier_token40] = ACTIONS(2058), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_in2] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_make] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_PLUS2] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2058), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2058), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(2058), + [aux_sym__val_number_token2] = ACTIONS(2058), + [aux_sym__val_number_token3] = ACTIONS(2058), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym__str_single_quotes] = ACTIONS(2058), + [sym__str_back_ticks] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2058), + [sym__entry_separator] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2060), + }, + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2066), + [aux_sym_cmd_identifier_token3] = ACTIONS(2066), + [aux_sym_cmd_identifier_token4] = ACTIONS(2066), + [aux_sym_cmd_identifier_token5] = ACTIONS(2066), + [aux_sym_cmd_identifier_token6] = ACTIONS(2066), + [aux_sym_cmd_identifier_token7] = ACTIONS(2066), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2066), + [aux_sym_cmd_identifier_token11] = ACTIONS(2066), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2066), + [aux_sym_cmd_identifier_token17] = ACTIONS(2066), + [aux_sym_cmd_identifier_token18] = ACTIONS(2066), + [aux_sym_cmd_identifier_token19] = ACTIONS(2066), + [aux_sym_cmd_identifier_token20] = ACTIONS(2066), + [aux_sym_cmd_identifier_token21] = ACTIONS(2066), + [aux_sym_cmd_identifier_token22] = ACTIONS(2066), + [aux_sym_cmd_identifier_token23] = ACTIONS(2066), + [aux_sym_cmd_identifier_token24] = ACTIONS(2066), + [aux_sym_cmd_identifier_token25] = ACTIONS(2066), + [aux_sym_cmd_identifier_token26] = ACTIONS(2066), + [aux_sym_cmd_identifier_token27] = ACTIONS(2066), + [aux_sym_cmd_identifier_token28] = ACTIONS(2066), + [aux_sym_cmd_identifier_token29] = ACTIONS(2066), + [aux_sym_cmd_identifier_token30] = ACTIONS(2066), + [aux_sym_cmd_identifier_token31] = ACTIONS(2066), + [aux_sym_cmd_identifier_token32] = ACTIONS(2066), + [aux_sym_cmd_identifier_token33] = ACTIONS(2066), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2066), + [aux_sym_cmd_identifier_token36] = ACTIONS(2066), + [aux_sym_cmd_identifier_token37] = ACTIONS(2066), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2066), + [aux_sym_cmd_identifier_token40] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in2] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2066), + [aux_sym__val_number_decimal_token3] = ACTIONS(2066), + [aux_sym__val_number_decimal_token4] = ACTIONS(2066), + [aux_sym__val_number_token1] = ACTIONS(2066), + [aux_sym__val_number_token2] = ACTIONS(2066), + [aux_sym__val_number_token3] = ACTIONS(2066), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym__str_single_quotes] = ACTIONS(2066), + [sym__str_back_ticks] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), + [sym__entry_separator] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2068), + }, + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_alias] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_let_DASHenv] = ACTIONS(2543), + [anon_sym_mut] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [aux_sym_cmd_identifier_token1] = ACTIONS(2543), + [aux_sym_cmd_identifier_token2] = ACTIONS(2543), + [aux_sym_cmd_identifier_token3] = ACTIONS(2543), + [aux_sym_cmd_identifier_token4] = ACTIONS(2543), + [aux_sym_cmd_identifier_token5] = ACTIONS(2543), + [aux_sym_cmd_identifier_token6] = ACTIONS(2543), + [aux_sym_cmd_identifier_token7] = ACTIONS(2543), + [aux_sym_cmd_identifier_token8] = ACTIONS(2543), + [aux_sym_cmd_identifier_token9] = ACTIONS(2543), + [aux_sym_cmd_identifier_token10] = ACTIONS(2543), + [aux_sym_cmd_identifier_token11] = ACTIONS(2543), + [aux_sym_cmd_identifier_token12] = ACTIONS(2543), + [aux_sym_cmd_identifier_token13] = ACTIONS(2543), + [aux_sym_cmd_identifier_token14] = ACTIONS(2543), + [aux_sym_cmd_identifier_token15] = ACTIONS(2543), + [aux_sym_cmd_identifier_token16] = ACTIONS(2543), + [aux_sym_cmd_identifier_token17] = ACTIONS(2543), + [aux_sym_cmd_identifier_token18] = ACTIONS(2543), + [aux_sym_cmd_identifier_token19] = ACTIONS(2543), + [aux_sym_cmd_identifier_token20] = ACTIONS(2543), + [aux_sym_cmd_identifier_token21] = ACTIONS(2543), + [aux_sym_cmd_identifier_token22] = ACTIONS(2543), + [aux_sym_cmd_identifier_token23] = ACTIONS(2543), + [aux_sym_cmd_identifier_token24] = ACTIONS(2543), + [aux_sym_cmd_identifier_token25] = ACTIONS(2543), + [aux_sym_cmd_identifier_token26] = ACTIONS(2543), + [aux_sym_cmd_identifier_token27] = ACTIONS(2543), + [aux_sym_cmd_identifier_token28] = ACTIONS(2543), + [aux_sym_cmd_identifier_token29] = ACTIONS(2543), + [aux_sym_cmd_identifier_token30] = ACTIONS(2543), + [aux_sym_cmd_identifier_token31] = ACTIONS(2543), + [aux_sym_cmd_identifier_token32] = ACTIONS(2543), + [aux_sym_cmd_identifier_token33] = ACTIONS(2543), + [aux_sym_cmd_identifier_token34] = ACTIONS(2543), + [aux_sym_cmd_identifier_token35] = ACTIONS(2543), + [aux_sym_cmd_identifier_token36] = ACTIONS(2543), + [aux_sym_cmd_identifier_token37] = ACTIONS(2543), + [aux_sym_cmd_identifier_token38] = ACTIONS(2543), + [aux_sym_cmd_identifier_token39] = ACTIONS(2543), + [aux_sym_cmd_identifier_token40] = ACTIONS(2543), + [anon_sym_def] = ACTIONS(2543), + [anon_sym_export_DASHenv] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2543), + [anon_sym_error] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_in2] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_make] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_catch] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_source] = ACTIONS(2543), + [anon_sym_source_DASHenv] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_hide] = ACTIONS(2543), + [anon_sym_hide_DASHenv] = ACTIONS(2543), + [anon_sym_overlay] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2543), + [aux_sym__val_number_decimal_token1] = ACTIONS(2543), + [aux_sym__val_number_decimal_token2] = ACTIONS(2543), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2543), + [aux_sym__val_number_token2] = ACTIONS(2543), + [aux_sym__val_number_token3] = ACTIONS(2543), + [aux_sym__val_number_token4] = ACTIONS(2543), + [aux_sym__val_number_token5] = ACTIONS(2543), + [aux_sym__val_number_token6] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym__str_single_quotes] = ACTIONS(2543), + [sym__str_back_ticks] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2543), + [sym__entry_separator] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2545), + }, + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_alias] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_let_DASHenv] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [aux_sym_cmd_identifier_token1] = ACTIONS(2547), + [aux_sym_cmd_identifier_token2] = ACTIONS(2547), + [aux_sym_cmd_identifier_token3] = ACTIONS(2547), + [aux_sym_cmd_identifier_token4] = ACTIONS(2547), + [aux_sym_cmd_identifier_token5] = ACTIONS(2547), + [aux_sym_cmd_identifier_token6] = ACTIONS(2547), + [aux_sym_cmd_identifier_token7] = ACTIONS(2547), + [aux_sym_cmd_identifier_token8] = ACTIONS(2547), + [aux_sym_cmd_identifier_token9] = ACTIONS(2547), + [aux_sym_cmd_identifier_token10] = ACTIONS(2547), + [aux_sym_cmd_identifier_token11] = ACTIONS(2547), + [aux_sym_cmd_identifier_token12] = ACTIONS(2547), + [aux_sym_cmd_identifier_token13] = ACTIONS(2547), + [aux_sym_cmd_identifier_token14] = ACTIONS(2547), + [aux_sym_cmd_identifier_token15] = ACTIONS(2547), + [aux_sym_cmd_identifier_token16] = ACTIONS(2547), + [aux_sym_cmd_identifier_token17] = ACTIONS(2547), + [aux_sym_cmd_identifier_token18] = ACTIONS(2547), + [aux_sym_cmd_identifier_token19] = ACTIONS(2547), + [aux_sym_cmd_identifier_token20] = ACTIONS(2547), + [aux_sym_cmd_identifier_token21] = ACTIONS(2547), + [aux_sym_cmd_identifier_token22] = ACTIONS(2547), + [aux_sym_cmd_identifier_token23] = ACTIONS(2547), + [aux_sym_cmd_identifier_token24] = ACTIONS(2547), + [aux_sym_cmd_identifier_token25] = ACTIONS(2547), + [aux_sym_cmd_identifier_token26] = ACTIONS(2547), + [aux_sym_cmd_identifier_token27] = ACTIONS(2547), + [aux_sym_cmd_identifier_token28] = ACTIONS(2547), + [aux_sym_cmd_identifier_token29] = ACTIONS(2547), + [aux_sym_cmd_identifier_token30] = ACTIONS(2547), + [aux_sym_cmd_identifier_token31] = ACTIONS(2547), + [aux_sym_cmd_identifier_token32] = ACTIONS(2547), + [aux_sym_cmd_identifier_token33] = ACTIONS(2547), + [aux_sym_cmd_identifier_token34] = ACTIONS(2547), + [aux_sym_cmd_identifier_token35] = ACTIONS(2547), + [aux_sym_cmd_identifier_token36] = ACTIONS(2547), + [aux_sym_cmd_identifier_token37] = ACTIONS(2547), + [aux_sym_cmd_identifier_token38] = ACTIONS(2547), + [aux_sym_cmd_identifier_token39] = ACTIONS(2547), + [aux_sym_cmd_identifier_token40] = ACTIONS(2547), + [anon_sym_def] = ACTIONS(2547), + [anon_sym_export_DASHenv] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2547), + [anon_sym_error] = ACTIONS(2547), + [anon_sym_DASH2] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_in2] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_make] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_source] = ACTIONS(2547), + [anon_sym_source_DASHenv] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_hide] = ACTIONS(2547), + [anon_sym_hide_DASHenv] = ACTIONS(2547), + [anon_sym_overlay] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_PLUS2] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2547), + [aux_sym__val_number_decimal_token2] = ACTIONS(2547), + [aux_sym__val_number_decimal_token3] = ACTIONS(2547), + [aux_sym__val_number_decimal_token4] = ACTIONS(2547), + [aux_sym__val_number_token1] = ACTIONS(2547), + [aux_sym__val_number_token2] = ACTIONS(2547), + [aux_sym__val_number_token3] = ACTIONS(2547), + [aux_sym__val_number_token4] = ACTIONS(2547), + [aux_sym__val_number_token5] = ACTIONS(2547), + [aux_sym__val_number_token6] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym__str_single_quotes] = ACTIONS(2547), + [sym__str_back_ticks] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2547), + [sym__entry_separator] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2549), + }, + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_alias] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_let_DASHenv] = ACTIONS(2551), + [anon_sym_mut] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [aux_sym_cmd_identifier_token1] = ACTIONS(2551), + [aux_sym_cmd_identifier_token2] = ACTIONS(2551), + [aux_sym_cmd_identifier_token3] = ACTIONS(2551), + [aux_sym_cmd_identifier_token4] = ACTIONS(2551), + [aux_sym_cmd_identifier_token5] = ACTIONS(2551), + [aux_sym_cmd_identifier_token6] = ACTIONS(2551), + [aux_sym_cmd_identifier_token7] = ACTIONS(2551), + [aux_sym_cmd_identifier_token8] = ACTIONS(2551), + [aux_sym_cmd_identifier_token9] = ACTIONS(2551), + [aux_sym_cmd_identifier_token10] = ACTIONS(2551), + [aux_sym_cmd_identifier_token11] = ACTIONS(2551), + [aux_sym_cmd_identifier_token12] = ACTIONS(2551), + [aux_sym_cmd_identifier_token13] = ACTIONS(2551), + [aux_sym_cmd_identifier_token14] = ACTIONS(2551), + [aux_sym_cmd_identifier_token15] = ACTIONS(2551), + [aux_sym_cmd_identifier_token16] = ACTIONS(2551), + [aux_sym_cmd_identifier_token17] = ACTIONS(2551), + [aux_sym_cmd_identifier_token18] = ACTIONS(2551), + [aux_sym_cmd_identifier_token19] = ACTIONS(2551), + [aux_sym_cmd_identifier_token20] = ACTIONS(2551), + [aux_sym_cmd_identifier_token21] = ACTIONS(2551), + [aux_sym_cmd_identifier_token22] = ACTIONS(2551), + [aux_sym_cmd_identifier_token23] = ACTIONS(2551), + [aux_sym_cmd_identifier_token24] = ACTIONS(2551), + [aux_sym_cmd_identifier_token25] = ACTIONS(2551), + [aux_sym_cmd_identifier_token26] = ACTIONS(2551), + [aux_sym_cmd_identifier_token27] = ACTIONS(2551), + [aux_sym_cmd_identifier_token28] = ACTIONS(2551), + [aux_sym_cmd_identifier_token29] = ACTIONS(2551), + [aux_sym_cmd_identifier_token30] = ACTIONS(2551), + [aux_sym_cmd_identifier_token31] = ACTIONS(2551), + [aux_sym_cmd_identifier_token32] = ACTIONS(2551), + [aux_sym_cmd_identifier_token33] = ACTIONS(2551), + [aux_sym_cmd_identifier_token34] = ACTIONS(2551), + [aux_sym_cmd_identifier_token35] = ACTIONS(2551), + [aux_sym_cmd_identifier_token36] = ACTIONS(2551), + [aux_sym_cmd_identifier_token37] = ACTIONS(2551), + [aux_sym_cmd_identifier_token38] = ACTIONS(2551), + [aux_sym_cmd_identifier_token39] = ACTIONS(2551), + [aux_sym_cmd_identifier_token40] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_export_DASHenv] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2551), + [anon_sym_error] = ACTIONS(2551), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_in2] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_make] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_source] = ACTIONS(2551), + [anon_sym_source_DASHenv] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_hide] = ACTIONS(2551), + [anon_sym_hide_DASHenv] = ACTIONS(2551), + [anon_sym_overlay] = ACTIONS(2551), + [anon_sym_as] = ACTIONS(2551), + [anon_sym_PLUS2] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2551), + [aux_sym__val_number_decimal_token1] = ACTIONS(2551), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2551), + [aux_sym__val_number_decimal_token4] = ACTIONS(2551), + [aux_sym__val_number_token1] = ACTIONS(2551), + [aux_sym__val_number_token2] = ACTIONS(2551), + [aux_sym__val_number_token3] = ACTIONS(2551), + [aux_sym__val_number_token4] = ACTIONS(2551), + [aux_sym__val_number_token5] = ACTIONS(2551), + [aux_sym__val_number_token6] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym__str_single_quotes] = ACTIONS(2551), + [sym__str_back_ticks] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2551), + [sym__entry_separator] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2553), + }, + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_alias] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_let_DASHenv] = ACTIONS(2070), + [anon_sym_mut] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [aux_sym_cmd_identifier_token1] = ACTIONS(2070), + [aux_sym_cmd_identifier_token2] = ACTIONS(2070), + [aux_sym_cmd_identifier_token3] = ACTIONS(2070), + [aux_sym_cmd_identifier_token4] = ACTIONS(2070), + [aux_sym_cmd_identifier_token5] = ACTIONS(2070), + [aux_sym_cmd_identifier_token6] = ACTIONS(2070), + [aux_sym_cmd_identifier_token7] = ACTIONS(2070), + [aux_sym_cmd_identifier_token8] = ACTIONS(2070), + [aux_sym_cmd_identifier_token9] = ACTIONS(2070), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2070), + [aux_sym_cmd_identifier_token13] = ACTIONS(2070), + [aux_sym_cmd_identifier_token14] = ACTIONS(2070), + [aux_sym_cmd_identifier_token15] = ACTIONS(2070), + [aux_sym_cmd_identifier_token16] = ACTIONS(2070), + [aux_sym_cmd_identifier_token17] = ACTIONS(2070), + [aux_sym_cmd_identifier_token18] = ACTIONS(2070), + [aux_sym_cmd_identifier_token19] = ACTIONS(2070), + [aux_sym_cmd_identifier_token20] = ACTIONS(2070), + [aux_sym_cmd_identifier_token21] = ACTIONS(2070), + [aux_sym_cmd_identifier_token22] = ACTIONS(2070), + [aux_sym_cmd_identifier_token23] = ACTIONS(2070), + [aux_sym_cmd_identifier_token24] = ACTIONS(2070), + [aux_sym_cmd_identifier_token25] = ACTIONS(2070), + [aux_sym_cmd_identifier_token26] = ACTIONS(2070), + [aux_sym_cmd_identifier_token27] = ACTIONS(2070), + [aux_sym_cmd_identifier_token28] = ACTIONS(2070), + [aux_sym_cmd_identifier_token29] = ACTIONS(2070), + [aux_sym_cmd_identifier_token30] = ACTIONS(2070), + [aux_sym_cmd_identifier_token31] = ACTIONS(2070), + [aux_sym_cmd_identifier_token32] = ACTIONS(2070), + [aux_sym_cmd_identifier_token33] = ACTIONS(2070), + [aux_sym_cmd_identifier_token34] = ACTIONS(2070), + [aux_sym_cmd_identifier_token35] = ACTIONS(2070), + [aux_sym_cmd_identifier_token36] = ACTIONS(2070), + [aux_sym_cmd_identifier_token37] = ACTIONS(2070), + [aux_sym_cmd_identifier_token38] = ACTIONS(2070), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2070), + [anon_sym_export_DASHenv] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_in2] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_make] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_source] = ACTIONS(2070), + [anon_sym_source_DASHenv] = ACTIONS(2070), + [anon_sym_register] = ACTIONS(2070), + [anon_sym_hide] = ACTIONS(2070), + [anon_sym_hide_DASHenv] = ACTIONS(2070), + [anon_sym_overlay] = ACTIONS(2070), + [anon_sym_as] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), + [sym__entry_separator] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(2555), + [anon_sym_alias] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2555), + [anon_sym_let_DASHenv] = ACTIONS(2555), + [anon_sym_mut] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [aux_sym_cmd_identifier_token1] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2555), + [aux_sym_cmd_identifier_token3] = ACTIONS(2555), + [aux_sym_cmd_identifier_token4] = ACTIONS(2555), + [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token6] = ACTIONS(2555), + [aux_sym_cmd_identifier_token7] = ACTIONS(2555), + [aux_sym_cmd_identifier_token8] = ACTIONS(2555), + [aux_sym_cmd_identifier_token9] = ACTIONS(2555), + [aux_sym_cmd_identifier_token10] = ACTIONS(2555), + [aux_sym_cmd_identifier_token11] = ACTIONS(2555), + [aux_sym_cmd_identifier_token12] = ACTIONS(2555), + [aux_sym_cmd_identifier_token13] = ACTIONS(2555), + [aux_sym_cmd_identifier_token14] = ACTIONS(2555), + [aux_sym_cmd_identifier_token15] = ACTIONS(2555), + [aux_sym_cmd_identifier_token16] = ACTIONS(2555), + [aux_sym_cmd_identifier_token17] = ACTIONS(2555), + [aux_sym_cmd_identifier_token18] = ACTIONS(2555), + [aux_sym_cmd_identifier_token19] = ACTIONS(2555), + [aux_sym_cmd_identifier_token20] = ACTIONS(2555), + [aux_sym_cmd_identifier_token21] = ACTIONS(2555), + [aux_sym_cmd_identifier_token22] = ACTIONS(2555), + [aux_sym_cmd_identifier_token23] = ACTIONS(2555), + [aux_sym_cmd_identifier_token24] = ACTIONS(2555), + [aux_sym_cmd_identifier_token25] = ACTIONS(2555), + [aux_sym_cmd_identifier_token26] = ACTIONS(2555), + [aux_sym_cmd_identifier_token27] = ACTIONS(2555), + [aux_sym_cmd_identifier_token28] = ACTIONS(2555), + [aux_sym_cmd_identifier_token29] = ACTIONS(2555), + [aux_sym_cmd_identifier_token30] = ACTIONS(2555), + [aux_sym_cmd_identifier_token31] = ACTIONS(2555), + [aux_sym_cmd_identifier_token32] = ACTIONS(2555), + [aux_sym_cmd_identifier_token33] = ACTIONS(2555), + [aux_sym_cmd_identifier_token34] = ACTIONS(2555), + [aux_sym_cmd_identifier_token35] = ACTIONS(2555), + [aux_sym_cmd_identifier_token36] = ACTIONS(2555), + [aux_sym_cmd_identifier_token37] = ACTIONS(2555), + [aux_sym_cmd_identifier_token38] = ACTIONS(2555), + [aux_sym_cmd_identifier_token39] = ACTIONS(2555), + [aux_sym_cmd_identifier_token40] = ACTIONS(2555), + [anon_sym_def] = ACTIONS(2555), + [anon_sym_export_DASHenv] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym_module] = ACTIONS(2555), + [anon_sym_use] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_DOLLAR] = ACTIONS(2555), + [anon_sym_error] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_in2] = ACTIONS(2555), + [anon_sym_loop] = ACTIONS(2555), + [anon_sym_make] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_catch] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_source] = ACTIONS(2555), + [anon_sym_source_DASHenv] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_hide] = ACTIONS(2555), + [anon_sym_hide_DASHenv] = ACTIONS(2555), + [anon_sym_overlay] = ACTIONS(2555), + [anon_sym_as] = ACTIONS(2555), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(2555), + [aux_sym__val_number_decimal_token2] = ACTIONS(2555), + [aux_sym__val_number_decimal_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2555), + [aux_sym__val_number_token2] = ACTIONS(2555), + [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_token4] = ACTIONS(2555), + [aux_sym__val_number_token5] = ACTIONS(2555), + [aux_sym__val_number_token6] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [sym__str_single_quotes] = ACTIONS(2555), + [sym__str_back_ticks] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2555), + [sym__entry_separator] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2557), + }, + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(2559), + [anon_sym_alias] = ACTIONS(2559), + [anon_sym_let] = ACTIONS(2559), + [anon_sym_let_DASHenv] = ACTIONS(2559), + [anon_sym_mut] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [aux_sym_cmd_identifier_token1] = ACTIONS(2559), + [aux_sym_cmd_identifier_token2] = ACTIONS(2559), + [aux_sym_cmd_identifier_token3] = ACTIONS(2559), + [aux_sym_cmd_identifier_token4] = ACTIONS(2559), + [aux_sym_cmd_identifier_token5] = ACTIONS(2559), + [aux_sym_cmd_identifier_token6] = ACTIONS(2559), + [aux_sym_cmd_identifier_token7] = ACTIONS(2559), + [aux_sym_cmd_identifier_token8] = ACTIONS(2559), + [aux_sym_cmd_identifier_token9] = ACTIONS(2559), + [aux_sym_cmd_identifier_token10] = ACTIONS(2559), + [aux_sym_cmd_identifier_token11] = ACTIONS(2559), + [aux_sym_cmd_identifier_token12] = ACTIONS(2559), + [aux_sym_cmd_identifier_token13] = ACTIONS(2559), + [aux_sym_cmd_identifier_token14] = ACTIONS(2559), + [aux_sym_cmd_identifier_token15] = ACTIONS(2559), + [aux_sym_cmd_identifier_token16] = ACTIONS(2559), + [aux_sym_cmd_identifier_token17] = ACTIONS(2559), + [aux_sym_cmd_identifier_token18] = ACTIONS(2559), + [aux_sym_cmd_identifier_token19] = ACTIONS(2559), + [aux_sym_cmd_identifier_token20] = ACTIONS(2559), + [aux_sym_cmd_identifier_token21] = ACTIONS(2559), + [aux_sym_cmd_identifier_token22] = ACTIONS(2559), + [aux_sym_cmd_identifier_token23] = ACTIONS(2559), + [aux_sym_cmd_identifier_token24] = ACTIONS(2559), + [aux_sym_cmd_identifier_token25] = ACTIONS(2559), + [aux_sym_cmd_identifier_token26] = ACTIONS(2559), + [aux_sym_cmd_identifier_token27] = ACTIONS(2559), + [aux_sym_cmd_identifier_token28] = ACTIONS(2559), + [aux_sym_cmd_identifier_token29] = ACTIONS(2559), + [aux_sym_cmd_identifier_token30] = ACTIONS(2559), + [aux_sym_cmd_identifier_token31] = ACTIONS(2559), + [aux_sym_cmd_identifier_token32] = ACTIONS(2559), + [aux_sym_cmd_identifier_token33] = ACTIONS(2559), + [aux_sym_cmd_identifier_token34] = ACTIONS(2559), + [aux_sym_cmd_identifier_token35] = ACTIONS(2559), + [aux_sym_cmd_identifier_token36] = ACTIONS(2559), + [aux_sym_cmd_identifier_token37] = ACTIONS(2559), + [aux_sym_cmd_identifier_token38] = ACTIONS(2559), + [aux_sym_cmd_identifier_token39] = ACTIONS(2559), + [aux_sym_cmd_identifier_token40] = ACTIONS(2559), + [anon_sym_def] = ACTIONS(2559), + [anon_sym_export_DASHenv] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym_module] = ACTIONS(2559), + [anon_sym_use] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [anon_sym_error] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_in2] = ACTIONS(2559), + [anon_sym_loop] = ACTIONS(2559), + [anon_sym_make] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_match] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_catch] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_source] = ACTIONS(2559), + [anon_sym_source_DASHenv] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_hide] = ACTIONS(2559), + [anon_sym_hide_DASHenv] = ACTIONS(2559), + [anon_sym_overlay] = ACTIONS(2559), + [anon_sym_as] = ACTIONS(2559), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2559), + [aux_sym__val_number_decimal_token1] = ACTIONS(2559), + [aux_sym__val_number_decimal_token2] = ACTIONS(2559), + [aux_sym__val_number_decimal_token3] = ACTIONS(2559), + [aux_sym__val_number_decimal_token4] = ACTIONS(2559), + [aux_sym__val_number_token1] = ACTIONS(2559), + [aux_sym__val_number_token2] = ACTIONS(2559), + [aux_sym__val_number_token3] = ACTIONS(2559), + [aux_sym__val_number_token4] = ACTIONS(2559), + [aux_sym__val_number_token5] = ACTIONS(2559), + [aux_sym__val_number_token6] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym__str_single_quotes] = ACTIONS(2559), + [sym__str_back_ticks] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2559), + [sym__entry_separator] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2561), + }, + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_alias] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_let_DASHenv] = ACTIONS(2563), + [anon_sym_mut] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [aux_sym_cmd_identifier_token1] = ACTIONS(2563), + [aux_sym_cmd_identifier_token2] = ACTIONS(2563), + [aux_sym_cmd_identifier_token3] = ACTIONS(2563), + [aux_sym_cmd_identifier_token4] = ACTIONS(2563), + [aux_sym_cmd_identifier_token5] = ACTIONS(2563), + [aux_sym_cmd_identifier_token6] = ACTIONS(2563), + [aux_sym_cmd_identifier_token7] = ACTIONS(2563), + [aux_sym_cmd_identifier_token8] = ACTIONS(2563), + [aux_sym_cmd_identifier_token9] = ACTIONS(2563), + [aux_sym_cmd_identifier_token10] = ACTIONS(2563), + [aux_sym_cmd_identifier_token11] = ACTIONS(2563), + [aux_sym_cmd_identifier_token12] = ACTIONS(2563), + [aux_sym_cmd_identifier_token13] = ACTIONS(2563), + [aux_sym_cmd_identifier_token14] = ACTIONS(2563), + [aux_sym_cmd_identifier_token15] = ACTIONS(2563), + [aux_sym_cmd_identifier_token16] = ACTIONS(2563), + [aux_sym_cmd_identifier_token17] = ACTIONS(2563), + [aux_sym_cmd_identifier_token18] = ACTIONS(2563), + [aux_sym_cmd_identifier_token19] = ACTIONS(2563), + [aux_sym_cmd_identifier_token20] = ACTIONS(2563), + [aux_sym_cmd_identifier_token21] = ACTIONS(2563), + [aux_sym_cmd_identifier_token22] = ACTIONS(2563), + [aux_sym_cmd_identifier_token23] = ACTIONS(2563), + [aux_sym_cmd_identifier_token24] = ACTIONS(2563), + [aux_sym_cmd_identifier_token25] = ACTIONS(2563), + [aux_sym_cmd_identifier_token26] = ACTIONS(2563), + [aux_sym_cmd_identifier_token27] = ACTIONS(2563), + [aux_sym_cmd_identifier_token28] = ACTIONS(2563), + [aux_sym_cmd_identifier_token29] = ACTIONS(2563), + [aux_sym_cmd_identifier_token30] = ACTIONS(2563), + [aux_sym_cmd_identifier_token31] = ACTIONS(2563), + [aux_sym_cmd_identifier_token32] = ACTIONS(2563), + [aux_sym_cmd_identifier_token33] = ACTIONS(2563), + [aux_sym_cmd_identifier_token34] = ACTIONS(2563), + [aux_sym_cmd_identifier_token35] = ACTIONS(2563), + [aux_sym_cmd_identifier_token36] = ACTIONS(2563), + [aux_sym_cmd_identifier_token37] = ACTIONS(2563), + [aux_sym_cmd_identifier_token38] = ACTIONS(2563), + [aux_sym_cmd_identifier_token39] = ACTIONS(2563), + [aux_sym_cmd_identifier_token40] = ACTIONS(2563), + [anon_sym_def] = ACTIONS(2563), + [anon_sym_export_DASHenv] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_use] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_error] = ACTIONS(2563), + [anon_sym_DASH2] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_in2] = ACTIONS(2563), + [anon_sym_loop] = ACTIONS(2563), + [anon_sym_make] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_match] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_catch] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_source] = ACTIONS(2563), + [anon_sym_source_DASHenv] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_hide] = ACTIONS(2563), + [anon_sym_hide_DASHenv] = ACTIONS(2563), + [anon_sym_overlay] = ACTIONS(2563), + [anon_sym_as] = ACTIONS(2563), + [anon_sym_PLUS2] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2563), + [aux_sym__val_number_decimal_token1] = ACTIONS(2563), + [aux_sym__val_number_decimal_token2] = ACTIONS(2563), + [aux_sym__val_number_decimal_token3] = ACTIONS(2563), + [aux_sym__val_number_decimal_token4] = ACTIONS(2563), + [aux_sym__val_number_token1] = ACTIONS(2563), + [aux_sym__val_number_token2] = ACTIONS(2563), + [aux_sym__val_number_token3] = ACTIONS(2563), + [aux_sym__val_number_token4] = ACTIONS(2563), + [aux_sym__val_number_token5] = ACTIONS(2563), + [aux_sym__val_number_token6] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym__str_single_quotes] = ACTIONS(2563), + [sym__str_back_ticks] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2563), + [sym__entry_separator] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2565), + }, + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1800), + }, + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(2567), + [anon_sym_alias] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_let_DASHenv] = ACTIONS(2567), + [anon_sym_mut] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [aux_sym_cmd_identifier_token1] = ACTIONS(2567), + [aux_sym_cmd_identifier_token2] = ACTIONS(2567), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [aux_sym_cmd_identifier_token6] = ACTIONS(2567), + [aux_sym_cmd_identifier_token7] = ACTIONS(2567), + [aux_sym_cmd_identifier_token8] = ACTIONS(2567), + [aux_sym_cmd_identifier_token9] = ACTIONS(2567), + [aux_sym_cmd_identifier_token10] = ACTIONS(2567), + [aux_sym_cmd_identifier_token11] = ACTIONS(2567), + [aux_sym_cmd_identifier_token12] = ACTIONS(2567), + [aux_sym_cmd_identifier_token13] = ACTIONS(2567), + [aux_sym_cmd_identifier_token14] = ACTIONS(2567), + [aux_sym_cmd_identifier_token15] = ACTIONS(2567), + [aux_sym_cmd_identifier_token16] = ACTIONS(2567), + [aux_sym_cmd_identifier_token17] = ACTIONS(2567), + [aux_sym_cmd_identifier_token18] = ACTIONS(2567), + [aux_sym_cmd_identifier_token19] = ACTIONS(2567), + [aux_sym_cmd_identifier_token20] = ACTIONS(2567), + [aux_sym_cmd_identifier_token21] = ACTIONS(2567), + [aux_sym_cmd_identifier_token22] = ACTIONS(2567), + [aux_sym_cmd_identifier_token23] = ACTIONS(2567), + [aux_sym_cmd_identifier_token24] = ACTIONS(2567), + [aux_sym_cmd_identifier_token25] = ACTIONS(2567), + [aux_sym_cmd_identifier_token26] = ACTIONS(2567), + [aux_sym_cmd_identifier_token27] = ACTIONS(2567), + [aux_sym_cmd_identifier_token28] = ACTIONS(2567), + [aux_sym_cmd_identifier_token29] = ACTIONS(2567), + [aux_sym_cmd_identifier_token30] = ACTIONS(2567), + [aux_sym_cmd_identifier_token31] = ACTIONS(2567), + [aux_sym_cmd_identifier_token32] = ACTIONS(2567), + [aux_sym_cmd_identifier_token33] = ACTIONS(2567), + [aux_sym_cmd_identifier_token34] = ACTIONS(2567), + [aux_sym_cmd_identifier_token35] = ACTIONS(2567), + [aux_sym_cmd_identifier_token36] = ACTIONS(2567), + [aux_sym_cmd_identifier_token37] = ACTIONS(2567), + [aux_sym_cmd_identifier_token38] = ACTIONS(2567), + [aux_sym_cmd_identifier_token39] = ACTIONS(2567), + [aux_sym_cmd_identifier_token40] = ACTIONS(2567), + [anon_sym_def] = ACTIONS(2567), + [anon_sym_export_DASHenv] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym_module] = ACTIONS(2567), + [anon_sym_use] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_DOLLAR] = ACTIONS(2567), + [anon_sym_error] = ACTIONS(2567), + [anon_sym_DASH2] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_in2] = ACTIONS(2567), + [anon_sym_loop] = ACTIONS(2567), + [anon_sym_make] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_match] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_catch] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_source] = ACTIONS(2567), + [anon_sym_source_DASHenv] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_hide] = ACTIONS(2567), + [anon_sym_hide_DASHenv] = ACTIONS(2567), + [anon_sym_overlay] = ACTIONS(2567), + [anon_sym_as] = ACTIONS(2567), + [anon_sym_PLUS2] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2567), + [aux_sym__val_number_decimal_token2] = ACTIONS(2567), + [aux_sym__val_number_decimal_token3] = ACTIONS(2567), + [aux_sym__val_number_decimal_token4] = ACTIONS(2567), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [aux_sym__val_number_token4] = ACTIONS(2567), + [aux_sym__val_number_token5] = ACTIONS(2567), + [aux_sym__val_number_token6] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2567), + [sym__entry_separator] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2569), + }, + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_alias] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_let_DASHenv] = ACTIONS(2571), + [anon_sym_mut] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [aux_sym_cmd_identifier_token1] = ACTIONS(2571), + [aux_sym_cmd_identifier_token2] = ACTIONS(2571), + [aux_sym_cmd_identifier_token3] = ACTIONS(2571), + [aux_sym_cmd_identifier_token4] = ACTIONS(2571), + [aux_sym_cmd_identifier_token5] = ACTIONS(2571), + [aux_sym_cmd_identifier_token6] = ACTIONS(2571), + [aux_sym_cmd_identifier_token7] = ACTIONS(2571), + [aux_sym_cmd_identifier_token8] = ACTIONS(2571), + [aux_sym_cmd_identifier_token9] = ACTIONS(2571), + [aux_sym_cmd_identifier_token10] = ACTIONS(2571), + [aux_sym_cmd_identifier_token11] = ACTIONS(2571), + [aux_sym_cmd_identifier_token12] = ACTIONS(2571), + [aux_sym_cmd_identifier_token13] = ACTIONS(2571), + [aux_sym_cmd_identifier_token14] = ACTIONS(2571), + [aux_sym_cmd_identifier_token15] = ACTIONS(2571), + [aux_sym_cmd_identifier_token16] = ACTIONS(2571), + [aux_sym_cmd_identifier_token17] = ACTIONS(2571), + [aux_sym_cmd_identifier_token18] = ACTIONS(2571), + [aux_sym_cmd_identifier_token19] = ACTIONS(2571), + [aux_sym_cmd_identifier_token20] = ACTIONS(2571), + [aux_sym_cmd_identifier_token21] = ACTIONS(2571), + [aux_sym_cmd_identifier_token22] = ACTIONS(2571), + [aux_sym_cmd_identifier_token23] = ACTIONS(2571), + [aux_sym_cmd_identifier_token24] = ACTIONS(2571), + [aux_sym_cmd_identifier_token25] = ACTIONS(2571), + [aux_sym_cmd_identifier_token26] = ACTIONS(2571), + [aux_sym_cmd_identifier_token27] = ACTIONS(2571), + [aux_sym_cmd_identifier_token28] = ACTIONS(2571), + [aux_sym_cmd_identifier_token29] = ACTIONS(2571), + [aux_sym_cmd_identifier_token30] = ACTIONS(2571), + [aux_sym_cmd_identifier_token31] = ACTIONS(2571), + [aux_sym_cmd_identifier_token32] = ACTIONS(2571), + [aux_sym_cmd_identifier_token33] = ACTIONS(2571), + [aux_sym_cmd_identifier_token34] = ACTIONS(2571), + [aux_sym_cmd_identifier_token35] = ACTIONS(2571), + [aux_sym_cmd_identifier_token36] = ACTIONS(2571), + [aux_sym_cmd_identifier_token37] = ACTIONS(2571), + [aux_sym_cmd_identifier_token38] = ACTIONS(2571), + [aux_sym_cmd_identifier_token39] = ACTIONS(2571), + [aux_sym_cmd_identifier_token40] = ACTIONS(2571), + [anon_sym_def] = ACTIONS(2571), + [anon_sym_export_DASHenv] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_use] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_error] = ACTIONS(2571), + [anon_sym_DASH2] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_in2] = ACTIONS(2571), + [anon_sym_loop] = ACTIONS(2571), + [anon_sym_make] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_match] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_catch] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_source] = ACTIONS(2571), + [anon_sym_source_DASHenv] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_hide] = ACTIONS(2571), + [anon_sym_hide_DASHenv] = ACTIONS(2571), + [anon_sym_overlay] = ACTIONS(2571), + [anon_sym_as] = ACTIONS(2571), + [anon_sym_PLUS2] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2571), + [aux_sym__val_number_decimal_token1] = ACTIONS(2571), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2571), + [aux_sym__val_number_token2] = ACTIONS(2571), + [aux_sym__val_number_token3] = ACTIONS(2571), + [aux_sym__val_number_token4] = ACTIONS(2571), + [aux_sym__val_number_token5] = ACTIONS(2571), + [aux_sym__val_number_token6] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [sym__str_single_quotes] = ACTIONS(2571), + [sym__str_back_ticks] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2571), + [sym__entry_separator] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2573), + }, + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(2575), + [anon_sym_alias] = ACTIONS(2575), + [anon_sym_let] = ACTIONS(2575), + [anon_sym_let_DASHenv] = ACTIONS(2575), + [anon_sym_mut] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [aux_sym_cmd_identifier_token1] = ACTIONS(2575), + [aux_sym_cmd_identifier_token2] = ACTIONS(2575), + [aux_sym_cmd_identifier_token3] = ACTIONS(2575), + [aux_sym_cmd_identifier_token4] = ACTIONS(2575), + [aux_sym_cmd_identifier_token5] = ACTIONS(2575), + [aux_sym_cmd_identifier_token6] = ACTIONS(2575), + [aux_sym_cmd_identifier_token7] = ACTIONS(2575), + [aux_sym_cmd_identifier_token8] = ACTIONS(2575), + [aux_sym_cmd_identifier_token9] = ACTIONS(2575), + [aux_sym_cmd_identifier_token10] = ACTIONS(2575), + [aux_sym_cmd_identifier_token11] = ACTIONS(2575), + [aux_sym_cmd_identifier_token12] = ACTIONS(2575), + [aux_sym_cmd_identifier_token13] = ACTIONS(2575), + [aux_sym_cmd_identifier_token14] = ACTIONS(2575), + [aux_sym_cmd_identifier_token15] = ACTIONS(2575), + [aux_sym_cmd_identifier_token16] = ACTIONS(2575), + [aux_sym_cmd_identifier_token17] = ACTIONS(2575), + [aux_sym_cmd_identifier_token18] = ACTIONS(2575), + [aux_sym_cmd_identifier_token19] = ACTIONS(2575), + [aux_sym_cmd_identifier_token20] = ACTIONS(2575), + [aux_sym_cmd_identifier_token21] = ACTIONS(2575), + [aux_sym_cmd_identifier_token22] = ACTIONS(2575), + [aux_sym_cmd_identifier_token23] = ACTIONS(2575), + [aux_sym_cmd_identifier_token24] = ACTIONS(2575), + [aux_sym_cmd_identifier_token25] = ACTIONS(2575), + [aux_sym_cmd_identifier_token26] = ACTIONS(2575), + [aux_sym_cmd_identifier_token27] = ACTIONS(2575), + [aux_sym_cmd_identifier_token28] = ACTIONS(2575), + [aux_sym_cmd_identifier_token29] = ACTIONS(2575), + [aux_sym_cmd_identifier_token30] = ACTIONS(2575), + [aux_sym_cmd_identifier_token31] = ACTIONS(2575), + [aux_sym_cmd_identifier_token32] = ACTIONS(2575), + [aux_sym_cmd_identifier_token33] = ACTIONS(2575), + [aux_sym_cmd_identifier_token34] = ACTIONS(2575), + [aux_sym_cmd_identifier_token35] = ACTIONS(2575), + [aux_sym_cmd_identifier_token36] = ACTIONS(2575), + [aux_sym_cmd_identifier_token37] = ACTIONS(2575), + [aux_sym_cmd_identifier_token38] = ACTIONS(2575), + [aux_sym_cmd_identifier_token39] = ACTIONS(2575), + [aux_sym_cmd_identifier_token40] = ACTIONS(2575), + [anon_sym_def] = ACTIONS(2575), + [anon_sym_export_DASHenv] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym_module] = ACTIONS(2575), + [anon_sym_use] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2575), + [anon_sym_error] = ACTIONS(2575), + [anon_sym_DASH2] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_in2] = ACTIONS(2575), + [anon_sym_loop] = ACTIONS(2575), + [anon_sym_make] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_catch] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_source] = ACTIONS(2575), + [anon_sym_source_DASHenv] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_hide] = ACTIONS(2575), + [anon_sym_hide_DASHenv] = ACTIONS(2575), + [anon_sym_overlay] = ACTIONS(2575), + [anon_sym_as] = ACTIONS(2575), + [anon_sym_PLUS2] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2575), + [aux_sym__val_number_decimal_token1] = ACTIONS(2575), + [aux_sym__val_number_decimal_token2] = ACTIONS(2575), + [aux_sym__val_number_decimal_token3] = ACTIONS(2575), + [aux_sym__val_number_decimal_token4] = ACTIONS(2575), + [aux_sym__val_number_token1] = ACTIONS(2575), + [aux_sym__val_number_token2] = ACTIONS(2575), + [aux_sym__val_number_token3] = ACTIONS(2575), + [aux_sym__val_number_token4] = ACTIONS(2575), + [aux_sym__val_number_token5] = ACTIONS(2575), + [aux_sym__val_number_token6] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym__str_single_quotes] = ACTIONS(2575), + [sym__str_back_ticks] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2575), + [sym__entry_separator] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2577), + }, + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(2579), + [anon_sym_alias] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_let_DASHenv] = ACTIONS(2579), + [anon_sym_mut] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [aux_sym_cmd_identifier_token1] = ACTIONS(2579), + [aux_sym_cmd_identifier_token2] = ACTIONS(2579), + [aux_sym_cmd_identifier_token3] = ACTIONS(2579), + [aux_sym_cmd_identifier_token4] = ACTIONS(2579), + [aux_sym_cmd_identifier_token5] = ACTIONS(2579), + [aux_sym_cmd_identifier_token6] = ACTIONS(2579), + [aux_sym_cmd_identifier_token7] = ACTIONS(2579), + [aux_sym_cmd_identifier_token8] = ACTIONS(2579), + [aux_sym_cmd_identifier_token9] = ACTIONS(2579), + [aux_sym_cmd_identifier_token10] = ACTIONS(2579), + [aux_sym_cmd_identifier_token11] = ACTIONS(2579), + [aux_sym_cmd_identifier_token12] = ACTIONS(2579), + [aux_sym_cmd_identifier_token13] = ACTIONS(2579), + [aux_sym_cmd_identifier_token14] = ACTIONS(2579), + [aux_sym_cmd_identifier_token15] = ACTIONS(2579), + [aux_sym_cmd_identifier_token16] = ACTIONS(2579), + [aux_sym_cmd_identifier_token17] = ACTIONS(2579), + [aux_sym_cmd_identifier_token18] = ACTIONS(2579), + [aux_sym_cmd_identifier_token19] = ACTIONS(2579), + [aux_sym_cmd_identifier_token20] = ACTIONS(2579), + [aux_sym_cmd_identifier_token21] = ACTIONS(2579), + [aux_sym_cmd_identifier_token22] = ACTIONS(2579), + [aux_sym_cmd_identifier_token23] = ACTIONS(2579), + [aux_sym_cmd_identifier_token24] = ACTIONS(2579), + [aux_sym_cmd_identifier_token25] = ACTIONS(2579), + [aux_sym_cmd_identifier_token26] = ACTIONS(2579), + [aux_sym_cmd_identifier_token27] = ACTIONS(2579), + [aux_sym_cmd_identifier_token28] = ACTIONS(2579), + [aux_sym_cmd_identifier_token29] = ACTIONS(2579), + [aux_sym_cmd_identifier_token30] = ACTIONS(2579), + [aux_sym_cmd_identifier_token31] = ACTIONS(2579), + [aux_sym_cmd_identifier_token32] = ACTIONS(2579), + [aux_sym_cmd_identifier_token33] = ACTIONS(2579), + [aux_sym_cmd_identifier_token34] = ACTIONS(2579), + [aux_sym_cmd_identifier_token35] = ACTIONS(2579), + [aux_sym_cmd_identifier_token36] = ACTIONS(2579), + [aux_sym_cmd_identifier_token37] = ACTIONS(2579), + [aux_sym_cmd_identifier_token38] = ACTIONS(2579), + [aux_sym_cmd_identifier_token39] = ACTIONS(2579), + [aux_sym_cmd_identifier_token40] = ACTIONS(2579), + [anon_sym_def] = ACTIONS(2579), + [anon_sym_export_DASHenv] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym_module] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_DOLLAR] = ACTIONS(2579), + [anon_sym_error] = ACTIONS(2579), + [anon_sym_DASH2] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_in2] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_make] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_catch] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_source] = ACTIONS(2579), + [anon_sym_source_DASHenv] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_hide] = ACTIONS(2579), + [anon_sym_hide_DASHenv] = ACTIONS(2579), + [anon_sym_overlay] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_PLUS2] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2579), + [aux_sym__val_number_decimal_token1] = ACTIONS(2579), + [aux_sym__val_number_decimal_token2] = ACTIONS(2579), + [aux_sym__val_number_decimal_token3] = ACTIONS(2579), + [aux_sym__val_number_decimal_token4] = ACTIONS(2579), + [aux_sym__val_number_token1] = ACTIONS(2579), + [aux_sym__val_number_token2] = ACTIONS(2579), + [aux_sym__val_number_token3] = ACTIONS(2579), + [aux_sym__val_number_token4] = ACTIONS(2579), + [aux_sym__val_number_token5] = ACTIONS(2579), + [aux_sym__val_number_token6] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym__str_single_quotes] = ACTIONS(2579), + [sym__str_back_ticks] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2579), + [sym__entry_separator] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2581), + }, + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(2583), + [anon_sym_alias] = ACTIONS(2583), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_let_DASHenv] = ACTIONS(2583), + [anon_sym_mut] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [aux_sym_cmd_identifier_token1] = ACTIONS(2583), + [aux_sym_cmd_identifier_token2] = ACTIONS(2583), + [aux_sym_cmd_identifier_token3] = ACTIONS(2583), + [aux_sym_cmd_identifier_token4] = ACTIONS(2583), + [aux_sym_cmd_identifier_token5] = ACTIONS(2583), + [aux_sym_cmd_identifier_token6] = ACTIONS(2583), + [aux_sym_cmd_identifier_token7] = ACTIONS(2583), + [aux_sym_cmd_identifier_token8] = ACTIONS(2583), + [aux_sym_cmd_identifier_token9] = ACTIONS(2583), + [aux_sym_cmd_identifier_token10] = ACTIONS(2583), + [aux_sym_cmd_identifier_token11] = ACTIONS(2583), + [aux_sym_cmd_identifier_token12] = ACTIONS(2583), + [aux_sym_cmd_identifier_token13] = ACTIONS(2583), + [aux_sym_cmd_identifier_token14] = ACTIONS(2583), + [aux_sym_cmd_identifier_token15] = ACTIONS(2583), + [aux_sym_cmd_identifier_token16] = ACTIONS(2583), + [aux_sym_cmd_identifier_token17] = ACTIONS(2583), + [aux_sym_cmd_identifier_token18] = ACTIONS(2583), + [aux_sym_cmd_identifier_token19] = ACTIONS(2583), + [aux_sym_cmd_identifier_token20] = ACTIONS(2583), + [aux_sym_cmd_identifier_token21] = ACTIONS(2583), + [aux_sym_cmd_identifier_token22] = ACTIONS(2583), + [aux_sym_cmd_identifier_token23] = ACTIONS(2583), + [aux_sym_cmd_identifier_token24] = ACTIONS(2583), + [aux_sym_cmd_identifier_token25] = ACTIONS(2583), + [aux_sym_cmd_identifier_token26] = ACTIONS(2583), + [aux_sym_cmd_identifier_token27] = ACTIONS(2583), + [aux_sym_cmd_identifier_token28] = ACTIONS(2583), + [aux_sym_cmd_identifier_token29] = ACTIONS(2583), + [aux_sym_cmd_identifier_token30] = ACTIONS(2583), + [aux_sym_cmd_identifier_token31] = ACTIONS(2583), + [aux_sym_cmd_identifier_token32] = ACTIONS(2583), + [aux_sym_cmd_identifier_token33] = ACTIONS(2583), + [aux_sym_cmd_identifier_token34] = ACTIONS(2583), + [aux_sym_cmd_identifier_token35] = ACTIONS(2583), + [aux_sym_cmd_identifier_token36] = ACTIONS(2583), + [aux_sym_cmd_identifier_token37] = ACTIONS(2583), + [aux_sym_cmd_identifier_token38] = ACTIONS(2583), + [aux_sym_cmd_identifier_token39] = ACTIONS(2583), + [aux_sym_cmd_identifier_token40] = ACTIONS(2583), + [anon_sym_def] = ACTIONS(2583), + [anon_sym_export_DASHenv] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_module] = ACTIONS(2583), + [anon_sym_use] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2583), + [anon_sym_error] = ACTIONS(2583), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_in2] = ACTIONS(2583), + [anon_sym_loop] = ACTIONS(2583), + [anon_sym_make] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_catch] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_source] = ACTIONS(2583), + [anon_sym_source_DASHenv] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_hide] = ACTIONS(2583), + [anon_sym_hide_DASHenv] = ACTIONS(2583), + [anon_sym_overlay] = ACTIONS(2583), + [anon_sym_as] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2583), + [aux_sym__val_number_decimal_token1] = ACTIONS(2583), + [aux_sym__val_number_decimal_token2] = ACTIONS(2583), + [aux_sym__val_number_decimal_token3] = ACTIONS(2583), + [aux_sym__val_number_decimal_token4] = ACTIONS(2583), + [aux_sym__val_number_token1] = ACTIONS(2583), + [aux_sym__val_number_token2] = ACTIONS(2583), + [aux_sym__val_number_token3] = ACTIONS(2583), + [aux_sym__val_number_token4] = ACTIONS(2583), + [aux_sym__val_number_token5] = ACTIONS(2583), + [aux_sym__val_number_token6] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [sym__str_single_quotes] = ACTIONS(2583), + [sym__str_back_ticks] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2583), + [sym__entry_separator] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2585), + }, + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(2587), + [anon_sym_alias] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_DASHenv] = ACTIONS(2587), + [anon_sym_mut] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [aux_sym_cmd_identifier_token1] = ACTIONS(2587), + [aux_sym_cmd_identifier_token2] = ACTIONS(2587), + [aux_sym_cmd_identifier_token3] = ACTIONS(2587), + [aux_sym_cmd_identifier_token4] = ACTIONS(2587), + [aux_sym_cmd_identifier_token5] = ACTIONS(2587), + [aux_sym_cmd_identifier_token6] = ACTIONS(2587), + [aux_sym_cmd_identifier_token7] = ACTIONS(2587), + [aux_sym_cmd_identifier_token8] = ACTIONS(2587), + [aux_sym_cmd_identifier_token9] = ACTIONS(2587), + [aux_sym_cmd_identifier_token10] = ACTIONS(2587), + [aux_sym_cmd_identifier_token11] = ACTIONS(2587), + [aux_sym_cmd_identifier_token12] = ACTIONS(2587), + [aux_sym_cmd_identifier_token13] = ACTIONS(2587), + [aux_sym_cmd_identifier_token14] = ACTIONS(2587), + [aux_sym_cmd_identifier_token15] = ACTIONS(2587), + [aux_sym_cmd_identifier_token16] = ACTIONS(2587), + [aux_sym_cmd_identifier_token17] = ACTIONS(2587), + [aux_sym_cmd_identifier_token18] = ACTIONS(2587), + [aux_sym_cmd_identifier_token19] = ACTIONS(2587), + [aux_sym_cmd_identifier_token20] = ACTIONS(2587), + [aux_sym_cmd_identifier_token21] = ACTIONS(2587), + [aux_sym_cmd_identifier_token22] = ACTIONS(2587), + [aux_sym_cmd_identifier_token23] = ACTIONS(2587), + [aux_sym_cmd_identifier_token24] = ACTIONS(2587), + [aux_sym_cmd_identifier_token25] = ACTIONS(2587), + [aux_sym_cmd_identifier_token26] = ACTIONS(2587), + [aux_sym_cmd_identifier_token27] = ACTIONS(2587), + [aux_sym_cmd_identifier_token28] = ACTIONS(2587), + [aux_sym_cmd_identifier_token29] = ACTIONS(2587), + [aux_sym_cmd_identifier_token30] = ACTIONS(2587), + [aux_sym_cmd_identifier_token31] = ACTIONS(2587), + [aux_sym_cmd_identifier_token32] = ACTIONS(2587), + [aux_sym_cmd_identifier_token33] = ACTIONS(2587), + [aux_sym_cmd_identifier_token34] = ACTIONS(2587), + [aux_sym_cmd_identifier_token35] = ACTIONS(2587), + [aux_sym_cmd_identifier_token36] = ACTIONS(2587), + [aux_sym_cmd_identifier_token37] = ACTIONS(2587), + [aux_sym_cmd_identifier_token38] = ACTIONS(2587), + [aux_sym_cmd_identifier_token39] = ACTIONS(2587), + [aux_sym_cmd_identifier_token40] = ACTIONS(2587), + [anon_sym_def] = ACTIONS(2587), + [anon_sym_export_DASHenv] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_error] = ACTIONS(2587), + [anon_sym_DASH2] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_in2] = ACTIONS(2587), + [anon_sym_loop] = ACTIONS(2587), + [anon_sym_make] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_catch] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_source] = ACTIONS(2587), + [anon_sym_source_DASHenv] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_hide] = ACTIONS(2587), + [anon_sym_hide_DASHenv] = ACTIONS(2587), + [anon_sym_overlay] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), + [anon_sym_PLUS2] = ACTIONS(2587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2587), + [aux_sym__val_number_decimal_token1] = ACTIONS(2587), + [aux_sym__val_number_decimal_token2] = ACTIONS(2587), + [aux_sym__val_number_decimal_token3] = ACTIONS(2587), + [aux_sym__val_number_decimal_token4] = ACTIONS(2587), + [aux_sym__val_number_token1] = ACTIONS(2587), + [aux_sym__val_number_token2] = ACTIONS(2587), + [aux_sym__val_number_token3] = ACTIONS(2587), + [aux_sym__val_number_token4] = ACTIONS(2587), + [aux_sym__val_number_token5] = ACTIONS(2587), + [aux_sym__val_number_token6] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2587), + [sym__str_single_quotes] = ACTIONS(2587), + [sym__str_back_ticks] = ACTIONS(2587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2587), + [sym__entry_separator] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2589), + }, + [678] = { + [sym_comment] = STATE(678), + [aux_sym__multiple_types_repeat1] = STATE(595), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2433), + }, + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(2591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [sym__entry_separator] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1540), + }, + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(1994), + [anon_sym_alias] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_let_DASHenv] = ACTIONS(1994), + [anon_sym_mut] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [aux_sym_cmd_identifier_token1] = ACTIONS(1994), + [aux_sym_cmd_identifier_token2] = ACTIONS(1994), + [aux_sym_cmd_identifier_token3] = ACTIONS(1994), + [aux_sym_cmd_identifier_token4] = ACTIONS(1994), + [aux_sym_cmd_identifier_token5] = ACTIONS(1994), + [aux_sym_cmd_identifier_token6] = ACTIONS(1994), + [aux_sym_cmd_identifier_token7] = ACTIONS(1994), + [aux_sym_cmd_identifier_token8] = ACTIONS(1994), + [aux_sym_cmd_identifier_token9] = ACTIONS(1994), + [aux_sym_cmd_identifier_token10] = ACTIONS(1994), + [aux_sym_cmd_identifier_token11] = ACTIONS(1994), + [aux_sym_cmd_identifier_token12] = ACTIONS(1994), + [aux_sym_cmd_identifier_token13] = ACTIONS(1994), + [aux_sym_cmd_identifier_token14] = ACTIONS(1994), + [aux_sym_cmd_identifier_token15] = ACTIONS(1994), + [aux_sym_cmd_identifier_token16] = ACTIONS(1994), + [aux_sym_cmd_identifier_token17] = ACTIONS(1994), + [aux_sym_cmd_identifier_token18] = ACTIONS(1994), + [aux_sym_cmd_identifier_token19] = ACTIONS(1994), + [aux_sym_cmd_identifier_token20] = ACTIONS(1994), + [aux_sym_cmd_identifier_token21] = ACTIONS(1994), + [aux_sym_cmd_identifier_token22] = ACTIONS(1994), + [aux_sym_cmd_identifier_token23] = ACTIONS(1994), + [aux_sym_cmd_identifier_token24] = ACTIONS(1994), + [aux_sym_cmd_identifier_token25] = ACTIONS(1994), + [aux_sym_cmd_identifier_token26] = ACTIONS(1994), + [aux_sym_cmd_identifier_token27] = ACTIONS(1994), + [aux_sym_cmd_identifier_token28] = ACTIONS(1994), + [aux_sym_cmd_identifier_token29] = ACTIONS(1994), + [aux_sym_cmd_identifier_token30] = ACTIONS(1994), + [aux_sym_cmd_identifier_token31] = ACTIONS(1994), + [aux_sym_cmd_identifier_token32] = ACTIONS(1994), + [aux_sym_cmd_identifier_token33] = ACTIONS(1994), + [aux_sym_cmd_identifier_token34] = ACTIONS(1994), + [aux_sym_cmd_identifier_token35] = ACTIONS(1994), + [aux_sym_cmd_identifier_token36] = ACTIONS(1994), + [aux_sym_cmd_identifier_token37] = ACTIONS(1994), + [aux_sym_cmd_identifier_token38] = ACTIONS(1994), + [aux_sym_cmd_identifier_token39] = ACTIONS(1994), + [aux_sym_cmd_identifier_token40] = ACTIONS(1994), + [anon_sym_def] = ACTIONS(1994), + [anon_sym_export_DASHenv] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_module] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_error] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_in2] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_make] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [anon_sym_catch] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_source] = ACTIONS(1994), + [anon_sym_source_DASHenv] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_hide] = ACTIONS(1994), + [anon_sym_hide_DASHenv] = ACTIONS(1994), + [anon_sym_overlay] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1994), + [anon_sym_PLUS2] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), + [sym__entry_separator] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1996), + }, + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2593), + [anon_sym_alias] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_let_DASHenv] = ACTIONS(2593), + [anon_sym_mut] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [aux_sym_cmd_identifier_token1] = ACTIONS(2593), + [aux_sym_cmd_identifier_token2] = ACTIONS(2593), + [aux_sym_cmd_identifier_token3] = ACTIONS(2593), + [aux_sym_cmd_identifier_token4] = ACTIONS(2593), + [aux_sym_cmd_identifier_token5] = ACTIONS(2593), + [aux_sym_cmd_identifier_token6] = ACTIONS(2593), + [aux_sym_cmd_identifier_token7] = ACTIONS(2593), + [aux_sym_cmd_identifier_token8] = ACTIONS(2593), + [aux_sym_cmd_identifier_token9] = ACTIONS(2593), + [aux_sym_cmd_identifier_token10] = ACTIONS(2593), + [aux_sym_cmd_identifier_token11] = ACTIONS(2593), + [aux_sym_cmd_identifier_token12] = ACTIONS(2593), + [aux_sym_cmd_identifier_token13] = ACTIONS(2593), + [aux_sym_cmd_identifier_token14] = ACTIONS(2593), + [aux_sym_cmd_identifier_token15] = ACTIONS(2593), + [aux_sym_cmd_identifier_token16] = ACTIONS(2593), + [aux_sym_cmd_identifier_token17] = ACTIONS(2593), + [aux_sym_cmd_identifier_token18] = ACTIONS(2593), + [aux_sym_cmd_identifier_token19] = ACTIONS(2593), + [aux_sym_cmd_identifier_token20] = ACTIONS(2593), + [aux_sym_cmd_identifier_token21] = ACTIONS(2593), + [aux_sym_cmd_identifier_token22] = ACTIONS(2593), + [aux_sym_cmd_identifier_token23] = ACTIONS(2593), + [aux_sym_cmd_identifier_token24] = ACTIONS(2593), + [aux_sym_cmd_identifier_token25] = ACTIONS(2593), + [aux_sym_cmd_identifier_token26] = ACTIONS(2593), + [aux_sym_cmd_identifier_token27] = ACTIONS(2593), + [aux_sym_cmd_identifier_token28] = ACTIONS(2593), + [aux_sym_cmd_identifier_token29] = ACTIONS(2593), + [aux_sym_cmd_identifier_token30] = ACTIONS(2593), + [aux_sym_cmd_identifier_token31] = ACTIONS(2593), + [aux_sym_cmd_identifier_token32] = ACTIONS(2593), + [aux_sym_cmd_identifier_token33] = ACTIONS(2593), + [aux_sym_cmd_identifier_token34] = ACTIONS(2593), + [aux_sym_cmd_identifier_token35] = ACTIONS(2593), + [aux_sym_cmd_identifier_token36] = ACTIONS(2593), + [aux_sym_cmd_identifier_token37] = ACTIONS(2593), + [aux_sym_cmd_identifier_token38] = ACTIONS(2593), + [aux_sym_cmd_identifier_token39] = ACTIONS(2593), + [aux_sym_cmd_identifier_token40] = ACTIONS(2593), + [anon_sym_def] = ACTIONS(2593), + [anon_sym_export_DASHenv] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_module] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_error] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_in2] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_make] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_source] = ACTIONS(2593), + [anon_sym_source_DASHenv] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_hide] = ACTIONS(2593), + [anon_sym_hide_DASHenv] = ACTIONS(2593), + [anon_sym_overlay] = ACTIONS(2593), + [anon_sym_as] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2593), + [aux_sym__val_number_decimal_token1] = ACTIONS(2593), + [aux_sym__val_number_decimal_token2] = ACTIONS(2593), + [aux_sym__val_number_decimal_token3] = ACTIONS(2593), + [aux_sym__val_number_decimal_token4] = ACTIONS(2593), + [aux_sym__val_number_token1] = ACTIONS(2593), + [aux_sym__val_number_token2] = ACTIONS(2593), + [aux_sym__val_number_token3] = ACTIONS(2593), + [aux_sym__val_number_token4] = ACTIONS(2593), + [aux_sym__val_number_token5] = ACTIONS(2593), + [aux_sym__val_number_token6] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym__str_single_quotes] = ACTIONS(2593), + [sym__str_back_ticks] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2593), + [sym__entry_separator] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2595), + }, + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [aux_sym_cmd_identifier_token6] = ACTIONS(2215), + [aux_sym_cmd_identifier_token7] = ACTIONS(2215), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2215), + [aux_sym_cmd_identifier_token11] = ACTIONS(2215), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2215), + [aux_sym_cmd_identifier_token17] = ACTIONS(2215), + [aux_sym_cmd_identifier_token18] = ACTIONS(2215), + [aux_sym_cmd_identifier_token19] = ACTIONS(2215), + [aux_sym_cmd_identifier_token20] = ACTIONS(2215), + [aux_sym_cmd_identifier_token21] = ACTIONS(2215), + [aux_sym_cmd_identifier_token22] = ACTIONS(2215), + [aux_sym_cmd_identifier_token23] = ACTIONS(2215), + [aux_sym_cmd_identifier_token24] = ACTIONS(2215), + [aux_sym_cmd_identifier_token25] = ACTIONS(2215), + [aux_sym_cmd_identifier_token26] = ACTIONS(2215), + [aux_sym_cmd_identifier_token27] = ACTIONS(2215), + [aux_sym_cmd_identifier_token28] = ACTIONS(2215), + [aux_sym_cmd_identifier_token29] = ACTIONS(2215), + [aux_sym_cmd_identifier_token30] = ACTIONS(2215), + [aux_sym_cmd_identifier_token31] = ACTIONS(2215), + [aux_sym_cmd_identifier_token32] = ACTIONS(2215), + [aux_sym_cmd_identifier_token33] = ACTIONS(2215), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2215), + [aux_sym_cmd_identifier_token36] = ACTIONS(2215), + [aux_sym_cmd_identifier_token37] = ACTIONS(2215), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2215), + [aux_sym_cmd_identifier_token40] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2215), + [aux_sym__val_number_decimal_token3] = ACTIONS(2215), + [aux_sym__val_number_decimal_token4] = ACTIONS(2215), + [aux_sym__val_number_token1] = ACTIONS(2215), + [aux_sym__val_number_token2] = ACTIONS(2215), + [aux_sym__val_number_token3] = ACTIONS(2215), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [sym__str_single_quotes] = ACTIONS(2215), + [sym__str_back_ticks] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), + [sym__entry_separator] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2217), + }, + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_alias] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_let_DASHenv] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [aux_sym_cmd_identifier_token1] = ACTIONS(2219), + [aux_sym_cmd_identifier_token2] = ACTIONS(2219), + [aux_sym_cmd_identifier_token3] = ACTIONS(2219), + [aux_sym_cmd_identifier_token4] = ACTIONS(2219), + [aux_sym_cmd_identifier_token5] = ACTIONS(2219), + [aux_sym_cmd_identifier_token6] = ACTIONS(2219), + [aux_sym_cmd_identifier_token7] = ACTIONS(2219), + [aux_sym_cmd_identifier_token8] = ACTIONS(2219), + [aux_sym_cmd_identifier_token9] = ACTIONS(2219), + [aux_sym_cmd_identifier_token10] = ACTIONS(2219), + [aux_sym_cmd_identifier_token11] = ACTIONS(2219), + [aux_sym_cmd_identifier_token12] = ACTIONS(2219), + [aux_sym_cmd_identifier_token13] = ACTIONS(2219), + [aux_sym_cmd_identifier_token14] = ACTIONS(2219), + [aux_sym_cmd_identifier_token15] = ACTIONS(2219), + [aux_sym_cmd_identifier_token16] = ACTIONS(2219), + [aux_sym_cmd_identifier_token17] = ACTIONS(2219), + [aux_sym_cmd_identifier_token18] = ACTIONS(2219), + [aux_sym_cmd_identifier_token19] = ACTIONS(2219), + [aux_sym_cmd_identifier_token20] = ACTIONS(2219), + [aux_sym_cmd_identifier_token21] = ACTIONS(2219), + [aux_sym_cmd_identifier_token22] = ACTIONS(2219), + [aux_sym_cmd_identifier_token23] = ACTIONS(2219), + [aux_sym_cmd_identifier_token24] = ACTIONS(2219), + [aux_sym_cmd_identifier_token25] = ACTIONS(2219), + [aux_sym_cmd_identifier_token26] = ACTIONS(2219), + [aux_sym_cmd_identifier_token27] = ACTIONS(2219), + [aux_sym_cmd_identifier_token28] = ACTIONS(2219), + [aux_sym_cmd_identifier_token29] = ACTIONS(2219), + [aux_sym_cmd_identifier_token30] = ACTIONS(2219), + [aux_sym_cmd_identifier_token31] = ACTIONS(2219), + [aux_sym_cmd_identifier_token32] = ACTIONS(2219), + [aux_sym_cmd_identifier_token33] = ACTIONS(2219), + [aux_sym_cmd_identifier_token34] = ACTIONS(2219), + [aux_sym_cmd_identifier_token35] = ACTIONS(2219), + [aux_sym_cmd_identifier_token36] = ACTIONS(2219), + [aux_sym_cmd_identifier_token37] = ACTIONS(2219), + [aux_sym_cmd_identifier_token38] = ACTIONS(2219), + [aux_sym_cmd_identifier_token39] = ACTIONS(2219), + [aux_sym_cmd_identifier_token40] = ACTIONS(2219), + [anon_sym_def] = ACTIONS(2219), + [anon_sym_export_DASHenv] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_error] = ACTIONS(2219), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_in2] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_make] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_source] = ACTIONS(2219), + [anon_sym_source_DASHenv] = ACTIONS(2219), + [anon_sym_register] = ACTIONS(2219), + [anon_sym_hide] = ACTIONS(2219), + [anon_sym_hide_DASHenv] = ACTIONS(2219), + [anon_sym_overlay] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2219), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2219), + [aux_sym__val_number_decimal_token3] = ACTIONS(2219), + [aux_sym__val_number_decimal_token4] = ACTIONS(2219), + [aux_sym__val_number_token1] = ACTIONS(2219), + [aux_sym__val_number_token2] = ACTIONS(2219), + [aux_sym__val_number_token3] = ACTIONS(2219), + [aux_sym__val_number_token4] = ACTIONS(2219), + [aux_sym__val_number_token5] = ACTIONS(2219), + [aux_sym__val_number_token6] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [sym__str_single_quotes] = ACTIONS(2219), + [sym__str_back_ticks] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2219), + [sym__entry_separator] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2221), + }, + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2597), + [anon_sym_alias] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_let_DASHenv] = ACTIONS(2597), + [anon_sym_mut] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [aux_sym_cmd_identifier_token1] = ACTIONS(2597), + [aux_sym_cmd_identifier_token2] = ACTIONS(2597), + [aux_sym_cmd_identifier_token3] = ACTIONS(2597), + [aux_sym_cmd_identifier_token4] = ACTIONS(2597), + [aux_sym_cmd_identifier_token5] = ACTIONS(2597), + [aux_sym_cmd_identifier_token6] = ACTIONS(2597), + [aux_sym_cmd_identifier_token7] = ACTIONS(2597), + [aux_sym_cmd_identifier_token8] = ACTIONS(2597), + [aux_sym_cmd_identifier_token9] = ACTIONS(2597), + [aux_sym_cmd_identifier_token10] = ACTIONS(2597), + [aux_sym_cmd_identifier_token11] = ACTIONS(2597), + [aux_sym_cmd_identifier_token12] = ACTIONS(2597), + [aux_sym_cmd_identifier_token13] = ACTIONS(2597), + [aux_sym_cmd_identifier_token14] = ACTIONS(2597), + [aux_sym_cmd_identifier_token15] = ACTIONS(2597), + [aux_sym_cmd_identifier_token16] = ACTIONS(2597), + [aux_sym_cmd_identifier_token17] = ACTIONS(2597), + [aux_sym_cmd_identifier_token18] = ACTIONS(2597), + [aux_sym_cmd_identifier_token19] = ACTIONS(2597), + [aux_sym_cmd_identifier_token20] = ACTIONS(2597), + [aux_sym_cmd_identifier_token21] = ACTIONS(2597), + [aux_sym_cmd_identifier_token22] = ACTIONS(2597), + [aux_sym_cmd_identifier_token23] = ACTIONS(2597), + [aux_sym_cmd_identifier_token24] = ACTIONS(2597), + [aux_sym_cmd_identifier_token25] = ACTIONS(2597), + [aux_sym_cmd_identifier_token26] = ACTIONS(2597), + [aux_sym_cmd_identifier_token27] = ACTIONS(2597), + [aux_sym_cmd_identifier_token28] = ACTIONS(2597), + [aux_sym_cmd_identifier_token29] = ACTIONS(2597), + [aux_sym_cmd_identifier_token30] = ACTIONS(2597), + [aux_sym_cmd_identifier_token31] = ACTIONS(2597), + [aux_sym_cmd_identifier_token32] = ACTIONS(2597), + [aux_sym_cmd_identifier_token33] = ACTIONS(2597), + [aux_sym_cmd_identifier_token34] = ACTIONS(2597), + [aux_sym_cmd_identifier_token35] = ACTIONS(2597), + [aux_sym_cmd_identifier_token36] = ACTIONS(2597), + [aux_sym_cmd_identifier_token37] = ACTIONS(2597), + [aux_sym_cmd_identifier_token38] = ACTIONS(2597), + [aux_sym_cmd_identifier_token39] = ACTIONS(2597), + [aux_sym_cmd_identifier_token40] = ACTIONS(2597), + [anon_sym_def] = ACTIONS(2597), + [anon_sym_export_DASHenv] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_module] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_DOLLAR] = ACTIONS(2597), + [anon_sym_error] = ACTIONS(2597), + [anon_sym_DASH2] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_in2] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_make] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_catch] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_source] = ACTIONS(2597), + [anon_sym_source_DASHenv] = ACTIONS(2597), + [anon_sym_register] = ACTIONS(2597), + [anon_sym_hide] = ACTIONS(2597), + [anon_sym_hide_DASHenv] = ACTIONS(2597), + [anon_sym_overlay] = ACTIONS(2597), + [anon_sym_as] = ACTIONS(2597), + [anon_sym_PLUS2] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2597), + [aux_sym__val_number_decimal_token1] = ACTIONS(2597), + [aux_sym__val_number_decimal_token2] = ACTIONS(2597), + [aux_sym__val_number_decimal_token3] = ACTIONS(2597), + [aux_sym__val_number_decimal_token4] = ACTIONS(2597), + [aux_sym__val_number_token1] = ACTIONS(2597), + [aux_sym__val_number_token2] = ACTIONS(2597), + [aux_sym__val_number_token3] = ACTIONS(2597), + [aux_sym__val_number_token4] = ACTIONS(2597), + [aux_sym__val_number_token5] = ACTIONS(2597), + [aux_sym__val_number_token6] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym__str_single_quotes] = ACTIONS(2597), + [sym__str_back_ticks] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2597), + [sym__entry_separator] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2599), + }, + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(2601), + [anon_sym_alias] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_let_DASHenv] = ACTIONS(2601), + [anon_sym_mut] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [aux_sym_cmd_identifier_token1] = ACTIONS(2601), + [aux_sym_cmd_identifier_token2] = ACTIONS(2601), + [aux_sym_cmd_identifier_token3] = ACTIONS(2601), + [aux_sym_cmd_identifier_token4] = ACTIONS(2601), + [aux_sym_cmd_identifier_token5] = ACTIONS(2601), + [aux_sym_cmd_identifier_token6] = ACTIONS(2601), + [aux_sym_cmd_identifier_token7] = ACTIONS(2601), + [aux_sym_cmd_identifier_token8] = ACTIONS(2601), + [aux_sym_cmd_identifier_token9] = ACTIONS(2601), + [aux_sym_cmd_identifier_token10] = ACTIONS(2601), + [aux_sym_cmd_identifier_token11] = ACTIONS(2601), + [aux_sym_cmd_identifier_token12] = ACTIONS(2601), + [aux_sym_cmd_identifier_token13] = ACTIONS(2601), + [aux_sym_cmd_identifier_token14] = ACTIONS(2601), + [aux_sym_cmd_identifier_token15] = ACTIONS(2601), + [aux_sym_cmd_identifier_token16] = ACTIONS(2601), + [aux_sym_cmd_identifier_token17] = ACTIONS(2601), + [aux_sym_cmd_identifier_token18] = ACTIONS(2601), + [aux_sym_cmd_identifier_token19] = ACTIONS(2601), + [aux_sym_cmd_identifier_token20] = ACTIONS(2601), + [aux_sym_cmd_identifier_token21] = ACTIONS(2601), + [aux_sym_cmd_identifier_token22] = ACTIONS(2601), + [aux_sym_cmd_identifier_token23] = ACTIONS(2601), + [aux_sym_cmd_identifier_token24] = ACTIONS(2601), + [aux_sym_cmd_identifier_token25] = ACTIONS(2601), + [aux_sym_cmd_identifier_token26] = ACTIONS(2601), + [aux_sym_cmd_identifier_token27] = ACTIONS(2601), + [aux_sym_cmd_identifier_token28] = ACTIONS(2601), + [aux_sym_cmd_identifier_token29] = ACTIONS(2601), + [aux_sym_cmd_identifier_token30] = ACTIONS(2601), + [aux_sym_cmd_identifier_token31] = ACTIONS(2601), + [aux_sym_cmd_identifier_token32] = ACTIONS(2601), + [aux_sym_cmd_identifier_token33] = ACTIONS(2601), + [aux_sym_cmd_identifier_token34] = ACTIONS(2601), + [aux_sym_cmd_identifier_token35] = ACTIONS(2601), + [aux_sym_cmd_identifier_token36] = ACTIONS(2601), + [aux_sym_cmd_identifier_token37] = ACTIONS(2601), + [aux_sym_cmd_identifier_token38] = ACTIONS(2601), + [aux_sym_cmd_identifier_token39] = ACTIONS(2601), + [aux_sym_cmd_identifier_token40] = ACTIONS(2601), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_export_DASHenv] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_module] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_error] = ACTIONS(2601), + [anon_sym_DASH2] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_in2] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_make] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_catch] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_source] = ACTIONS(2601), + [anon_sym_source_DASHenv] = ACTIONS(2601), + [anon_sym_register] = ACTIONS(2601), + [anon_sym_hide] = ACTIONS(2601), + [anon_sym_hide_DASHenv] = ACTIONS(2601), + [anon_sym_overlay] = ACTIONS(2601), + [anon_sym_as] = ACTIONS(2601), + [anon_sym_PLUS2] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2601), + [aux_sym__val_number_decimal_token1] = ACTIONS(2601), + [aux_sym__val_number_decimal_token2] = ACTIONS(2601), + [aux_sym__val_number_decimal_token3] = ACTIONS(2601), + [aux_sym__val_number_decimal_token4] = ACTIONS(2601), + [aux_sym__val_number_token1] = ACTIONS(2601), + [aux_sym__val_number_token2] = ACTIONS(2601), + [aux_sym__val_number_token3] = ACTIONS(2601), + [aux_sym__val_number_token4] = ACTIONS(2601), + [aux_sym__val_number_token5] = ACTIONS(2601), + [aux_sym__val_number_token6] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym__str_single_quotes] = ACTIONS(2601), + [sym__str_back_ticks] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2601), + [sym__entry_separator] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2603), + }, + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2605), + [anon_sym_alias] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_let_DASHenv] = ACTIONS(2605), + [anon_sym_mut] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [aux_sym_cmd_identifier_token1] = ACTIONS(2605), + [aux_sym_cmd_identifier_token2] = ACTIONS(2605), + [aux_sym_cmd_identifier_token3] = ACTIONS(2605), + [aux_sym_cmd_identifier_token4] = ACTIONS(2605), + [aux_sym_cmd_identifier_token5] = ACTIONS(2605), + [aux_sym_cmd_identifier_token6] = ACTIONS(2605), + [aux_sym_cmd_identifier_token7] = ACTIONS(2605), + [aux_sym_cmd_identifier_token8] = ACTIONS(2605), + [aux_sym_cmd_identifier_token9] = ACTIONS(2605), + [aux_sym_cmd_identifier_token10] = ACTIONS(2605), + [aux_sym_cmd_identifier_token11] = ACTIONS(2605), + [aux_sym_cmd_identifier_token12] = ACTIONS(2605), + [aux_sym_cmd_identifier_token13] = ACTIONS(2605), + [aux_sym_cmd_identifier_token14] = ACTIONS(2605), + [aux_sym_cmd_identifier_token15] = ACTIONS(2605), + [aux_sym_cmd_identifier_token16] = ACTIONS(2605), + [aux_sym_cmd_identifier_token17] = ACTIONS(2605), + [aux_sym_cmd_identifier_token18] = ACTIONS(2605), + [aux_sym_cmd_identifier_token19] = ACTIONS(2605), + [aux_sym_cmd_identifier_token20] = ACTIONS(2605), + [aux_sym_cmd_identifier_token21] = ACTIONS(2605), + [aux_sym_cmd_identifier_token22] = ACTIONS(2605), + [aux_sym_cmd_identifier_token23] = ACTIONS(2605), + [aux_sym_cmd_identifier_token24] = ACTIONS(2605), + [aux_sym_cmd_identifier_token25] = ACTIONS(2605), + [aux_sym_cmd_identifier_token26] = ACTIONS(2605), + [aux_sym_cmd_identifier_token27] = ACTIONS(2605), + [aux_sym_cmd_identifier_token28] = ACTIONS(2605), + [aux_sym_cmd_identifier_token29] = ACTIONS(2605), + [aux_sym_cmd_identifier_token30] = ACTIONS(2605), + [aux_sym_cmd_identifier_token31] = ACTIONS(2605), + [aux_sym_cmd_identifier_token32] = ACTIONS(2605), + [aux_sym_cmd_identifier_token33] = ACTIONS(2605), + [aux_sym_cmd_identifier_token34] = ACTIONS(2605), + [aux_sym_cmd_identifier_token35] = ACTIONS(2605), + [aux_sym_cmd_identifier_token36] = ACTIONS(2605), + [aux_sym_cmd_identifier_token37] = ACTIONS(2605), + [aux_sym_cmd_identifier_token38] = ACTIONS(2605), + [aux_sym_cmd_identifier_token39] = ACTIONS(2605), + [aux_sym_cmd_identifier_token40] = ACTIONS(2605), + [anon_sym_def] = ACTIONS(2605), + [anon_sym_export_DASHenv] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_module] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_DOLLAR] = ACTIONS(2605), + [anon_sym_error] = ACTIONS(2605), + [anon_sym_DASH2] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_in2] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_make] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_catch] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_source] = ACTIONS(2605), + [anon_sym_source_DASHenv] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_hide] = ACTIONS(2605), + [anon_sym_hide_DASHenv] = ACTIONS(2605), + [anon_sym_overlay] = ACTIONS(2605), + [anon_sym_as] = ACTIONS(2605), + [anon_sym_PLUS2] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2605), + [aux_sym__val_number_decimal_token1] = ACTIONS(2605), + [aux_sym__val_number_decimal_token2] = ACTIONS(2605), + [aux_sym__val_number_decimal_token3] = ACTIONS(2605), + [aux_sym__val_number_decimal_token4] = ACTIONS(2605), + [aux_sym__val_number_token1] = ACTIONS(2605), + [aux_sym__val_number_token2] = ACTIONS(2605), + [aux_sym__val_number_token3] = ACTIONS(2605), + [aux_sym__val_number_token4] = ACTIONS(2605), + [aux_sym__val_number_token5] = ACTIONS(2605), + [aux_sym__val_number_token6] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym__str_single_quotes] = ACTIONS(2605), + [sym__str_back_ticks] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2605), + [sym__entry_separator] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2607), + }, + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(2609), + [anon_sym_alias] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_let_DASHenv] = ACTIONS(2609), + [anon_sym_mut] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [aux_sym_cmd_identifier_token1] = ACTIONS(2609), + [aux_sym_cmd_identifier_token2] = ACTIONS(2609), + [aux_sym_cmd_identifier_token3] = ACTIONS(2609), + [aux_sym_cmd_identifier_token4] = ACTIONS(2609), + [aux_sym_cmd_identifier_token5] = ACTIONS(2609), + [aux_sym_cmd_identifier_token6] = ACTIONS(2609), + [aux_sym_cmd_identifier_token7] = ACTIONS(2609), + [aux_sym_cmd_identifier_token8] = ACTIONS(2609), + [aux_sym_cmd_identifier_token9] = ACTIONS(2609), + [aux_sym_cmd_identifier_token10] = ACTIONS(2609), + [aux_sym_cmd_identifier_token11] = ACTIONS(2609), + [aux_sym_cmd_identifier_token12] = ACTIONS(2609), + [aux_sym_cmd_identifier_token13] = ACTIONS(2609), + [aux_sym_cmd_identifier_token14] = ACTIONS(2609), + [aux_sym_cmd_identifier_token15] = ACTIONS(2609), + [aux_sym_cmd_identifier_token16] = ACTIONS(2609), + [aux_sym_cmd_identifier_token17] = ACTIONS(2609), + [aux_sym_cmd_identifier_token18] = ACTIONS(2609), + [aux_sym_cmd_identifier_token19] = ACTIONS(2609), + [aux_sym_cmd_identifier_token20] = ACTIONS(2609), + [aux_sym_cmd_identifier_token21] = ACTIONS(2609), + [aux_sym_cmd_identifier_token22] = ACTIONS(2609), + [aux_sym_cmd_identifier_token23] = ACTIONS(2609), + [aux_sym_cmd_identifier_token24] = ACTIONS(2609), + [aux_sym_cmd_identifier_token25] = ACTIONS(2609), + [aux_sym_cmd_identifier_token26] = ACTIONS(2609), + [aux_sym_cmd_identifier_token27] = ACTIONS(2609), + [aux_sym_cmd_identifier_token28] = ACTIONS(2609), + [aux_sym_cmd_identifier_token29] = ACTIONS(2609), + [aux_sym_cmd_identifier_token30] = ACTIONS(2609), + [aux_sym_cmd_identifier_token31] = ACTIONS(2609), + [aux_sym_cmd_identifier_token32] = ACTIONS(2609), + [aux_sym_cmd_identifier_token33] = ACTIONS(2609), + [aux_sym_cmd_identifier_token34] = ACTIONS(2609), + [aux_sym_cmd_identifier_token35] = ACTIONS(2609), + [aux_sym_cmd_identifier_token36] = ACTIONS(2609), + [aux_sym_cmd_identifier_token37] = ACTIONS(2609), + [aux_sym_cmd_identifier_token38] = ACTIONS(2609), + [aux_sym_cmd_identifier_token39] = ACTIONS(2609), + [aux_sym_cmd_identifier_token40] = ACTIONS(2609), + [anon_sym_def] = ACTIONS(2609), + [anon_sym_export_DASHenv] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_DOLLAR] = ACTIONS(2609), + [anon_sym_error] = ACTIONS(2609), + [anon_sym_DASH2] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_in2] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_make] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_catch] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_source] = ACTIONS(2609), + [anon_sym_source_DASHenv] = ACTIONS(2609), + [anon_sym_register] = ACTIONS(2609), + [anon_sym_hide] = ACTIONS(2609), + [anon_sym_hide_DASHenv] = ACTIONS(2609), + [anon_sym_overlay] = ACTIONS(2609), + [anon_sym_as] = ACTIONS(2609), + [anon_sym_PLUS2] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2609), + [aux_sym__val_number_decimal_token1] = ACTIONS(2609), + [aux_sym__val_number_decimal_token2] = ACTIONS(2609), + [aux_sym__val_number_decimal_token3] = ACTIONS(2609), + [aux_sym__val_number_decimal_token4] = ACTIONS(2609), + [aux_sym__val_number_token1] = ACTIONS(2609), + [aux_sym__val_number_token2] = ACTIONS(2609), + [aux_sym__val_number_token3] = ACTIONS(2609), + [aux_sym__val_number_token4] = ACTIONS(2609), + [aux_sym__val_number_token5] = ACTIONS(2609), + [aux_sym__val_number_token6] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym__str_single_quotes] = ACTIONS(2609), + [sym__str_back_ticks] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2609), + [sym__entry_separator] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2611), + }, + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(2423), + [anon_sym_alias] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_let_DASHenv] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [aux_sym_cmd_identifier_token1] = ACTIONS(2423), + [aux_sym_cmd_identifier_token2] = ACTIONS(2427), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [aux_sym_cmd_identifier_token6] = ACTIONS(2427), + [aux_sym_cmd_identifier_token7] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2423), + [aux_sym_cmd_identifier_token9] = ACTIONS(2423), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2423), + [aux_sym_cmd_identifier_token13] = ACTIONS(2423), + [aux_sym_cmd_identifier_token14] = ACTIONS(2423), + [aux_sym_cmd_identifier_token15] = ACTIONS(2423), + [aux_sym_cmd_identifier_token16] = ACTIONS(2427), + [aux_sym_cmd_identifier_token17] = ACTIONS(2427), + [aux_sym_cmd_identifier_token18] = ACTIONS(2427), + [aux_sym_cmd_identifier_token19] = ACTIONS(2427), + [aux_sym_cmd_identifier_token20] = ACTIONS(2427), + [aux_sym_cmd_identifier_token21] = ACTIONS(2427), + [aux_sym_cmd_identifier_token22] = ACTIONS(2427), + [aux_sym_cmd_identifier_token23] = ACTIONS(2427), + [aux_sym_cmd_identifier_token24] = ACTIONS(2427), + [aux_sym_cmd_identifier_token25] = ACTIONS(2427), + [aux_sym_cmd_identifier_token26] = ACTIONS(2427), + [aux_sym_cmd_identifier_token27] = ACTIONS(2427), + [aux_sym_cmd_identifier_token28] = ACTIONS(2427), + [aux_sym_cmd_identifier_token29] = ACTIONS(2427), + [aux_sym_cmd_identifier_token30] = ACTIONS(2427), + [aux_sym_cmd_identifier_token31] = ACTIONS(2427), + [aux_sym_cmd_identifier_token32] = ACTIONS(2427), + [aux_sym_cmd_identifier_token33] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2423), + [aux_sym_cmd_identifier_token35] = ACTIONS(2427), + [aux_sym_cmd_identifier_token36] = ACTIONS(2427), + [aux_sym_cmd_identifier_token37] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2423), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2423), + [anon_sym_export_DASHenv] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_module] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_in2] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_make] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_else] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2423), + [anon_sym_catch] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_source] = ACTIONS(2423), + [anon_sym_source_DASHenv] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_hide] = ACTIONS(2423), + [anon_sym_hide_DASHenv] = ACTIONS(2423), + [anon_sym_overlay] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2423), + [aux_sym__val_number_token5] = ACTIONS(2423), + [aux_sym__val_number_token6] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2427), }, - [739] = { - [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_alias] = ACTIONS(2440), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_let_DASHenv] = ACTIONS(2440), - [anon_sym_mut] = ACTIONS(2440), - [anon_sym_const] = ACTIONS(2440), - [aux_sym_cmd_identifier_token1] = ACTIONS(2440), - [aux_sym_cmd_identifier_token2] = ACTIONS(2442), - [aux_sym_cmd_identifier_token3] = ACTIONS(2442), - [aux_sym_cmd_identifier_token4] = ACTIONS(2442), - [aux_sym_cmd_identifier_token5] = ACTIONS(2442), - [aux_sym_cmd_identifier_token6] = ACTIONS(2442), - [aux_sym_cmd_identifier_token7] = ACTIONS(2442), - [aux_sym_cmd_identifier_token8] = ACTIONS(2440), - [aux_sym_cmd_identifier_token9] = ACTIONS(2440), - [aux_sym_cmd_identifier_token10] = ACTIONS(2442), - [aux_sym_cmd_identifier_token11] = ACTIONS(2442), - [aux_sym_cmd_identifier_token12] = ACTIONS(2440), - [aux_sym_cmd_identifier_token13] = ACTIONS(2440), - [aux_sym_cmd_identifier_token14] = ACTIONS(2440), - [aux_sym_cmd_identifier_token15] = ACTIONS(2440), - [aux_sym_cmd_identifier_token16] = ACTIONS(2442), - [aux_sym_cmd_identifier_token17] = ACTIONS(2442), - [aux_sym_cmd_identifier_token18] = ACTIONS(2442), - [aux_sym_cmd_identifier_token19] = ACTIONS(2442), - [aux_sym_cmd_identifier_token20] = ACTIONS(2442), - [aux_sym_cmd_identifier_token21] = ACTIONS(2442), - [aux_sym_cmd_identifier_token22] = ACTIONS(2442), - [aux_sym_cmd_identifier_token23] = ACTIONS(2442), - [aux_sym_cmd_identifier_token24] = ACTIONS(2442), - [aux_sym_cmd_identifier_token25] = ACTIONS(2442), - [aux_sym_cmd_identifier_token26] = ACTIONS(2442), - [aux_sym_cmd_identifier_token27] = ACTIONS(2442), - [aux_sym_cmd_identifier_token28] = ACTIONS(2442), - [aux_sym_cmd_identifier_token29] = ACTIONS(2442), - [aux_sym_cmd_identifier_token30] = ACTIONS(2442), - [aux_sym_cmd_identifier_token31] = ACTIONS(2442), - [aux_sym_cmd_identifier_token32] = ACTIONS(2442), - [aux_sym_cmd_identifier_token33] = ACTIONS(2442), - [aux_sym_cmd_identifier_token34] = ACTIONS(2440), - [aux_sym_cmd_identifier_token35] = ACTIONS(2442), - [aux_sym_cmd_identifier_token36] = ACTIONS(2442), - [aux_sym_cmd_identifier_token37] = ACTIONS(2442), - [aux_sym_cmd_identifier_token38] = ACTIONS(2440), - [aux_sym_cmd_identifier_token39] = ACTIONS(2442), - [aux_sym_cmd_identifier_token40] = ACTIONS(2442), - [anon_sym_def] = ACTIONS(2440), - [anon_sym_export_DASHenv] = ACTIONS(2440), - [anon_sym_extern] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_use] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_DOLLAR] = ACTIONS(2442), - [anon_sym_error] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2440), - [anon_sym_continue] = ACTIONS(2440), - [anon_sym_for] = ACTIONS(2440), - [anon_sym_in2] = ACTIONS(2440), - [anon_sym_loop] = ACTIONS(2440), - [anon_sym_make] = ACTIONS(2440), - [anon_sym_while] = ACTIONS(2440), - [anon_sym_do] = ACTIONS(2440), - [anon_sym_if] = ACTIONS(2440), - [anon_sym_else] = ACTIONS(2440), - [anon_sym_match] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2440), - [anon_sym_catch] = ACTIONS(2440), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_source] = ACTIONS(2440), - [anon_sym_source_DASHenv] = ACTIONS(2440), - [anon_sym_register] = ACTIONS(2440), - [anon_sym_hide] = ACTIONS(2440), - [anon_sym_hide_DASHenv] = ACTIONS(2440), - [anon_sym_overlay] = ACTIONS(2440), - [anon_sym_as] = ACTIONS(2440), - [anon_sym_PLUS2] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2442), - [aux_sym__val_number_decimal_token1] = ACTIONS(2440), - [aux_sym__val_number_decimal_token2] = ACTIONS(2442), - [aux_sym__val_number_decimal_token3] = ACTIONS(2442), - [aux_sym__val_number_decimal_token4] = ACTIONS(2442), - [aux_sym__val_number_token1] = ACTIONS(2442), - [aux_sym__val_number_token2] = ACTIONS(2442), - [aux_sym__val_number_token3] = ACTIONS(2442), - [aux_sym__val_number_token4] = ACTIONS(2440), - [aux_sym__val_number_token5] = ACTIONS(2440), - [aux_sym__val_number_token6] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2442), - [sym__str_single_quotes] = ACTIONS(2442), - [sym__str_back_ticks] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2442), + [691] = { + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2082), + [aux_sym_cmd_identifier_token3] = ACTIONS(2082), + [aux_sym_cmd_identifier_token4] = ACTIONS(2082), + [aux_sym_cmd_identifier_token5] = ACTIONS(2082), + [aux_sym_cmd_identifier_token6] = ACTIONS(2082), + [aux_sym_cmd_identifier_token7] = ACTIONS(2082), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2082), + [aux_sym_cmd_identifier_token11] = ACTIONS(2082), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2082), + [aux_sym_cmd_identifier_token17] = ACTIONS(2082), + [aux_sym_cmd_identifier_token18] = ACTIONS(2082), + [aux_sym_cmd_identifier_token19] = ACTIONS(2082), + [aux_sym_cmd_identifier_token20] = ACTIONS(2082), + [aux_sym_cmd_identifier_token21] = ACTIONS(2082), + [aux_sym_cmd_identifier_token22] = ACTIONS(2082), + [aux_sym_cmd_identifier_token23] = ACTIONS(2082), + [aux_sym_cmd_identifier_token24] = ACTIONS(2082), + [aux_sym_cmd_identifier_token25] = ACTIONS(2082), + [aux_sym_cmd_identifier_token26] = ACTIONS(2082), + [aux_sym_cmd_identifier_token27] = ACTIONS(2082), + [aux_sym_cmd_identifier_token28] = ACTIONS(2082), + [aux_sym_cmd_identifier_token29] = ACTIONS(2082), + [aux_sym_cmd_identifier_token30] = ACTIONS(2082), + [aux_sym_cmd_identifier_token31] = ACTIONS(2082), + [aux_sym_cmd_identifier_token32] = ACTIONS(2082), + [aux_sym_cmd_identifier_token33] = ACTIONS(2082), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2082), + [aux_sym_cmd_identifier_token36] = ACTIONS(2082), + [aux_sym_cmd_identifier_token37] = ACTIONS(2082), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2082), + [aux_sym_cmd_identifier_token40] = ACTIONS(2082), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2082), + [aux_sym__val_number_decimal_token3] = ACTIONS(2082), + [aux_sym__val_number_decimal_token4] = ACTIONS(2082), + [aux_sym__val_number_token1] = ACTIONS(2082), + [aux_sym__val_number_token2] = ACTIONS(2082), + [aux_sym__val_number_token3] = ACTIONS(2082), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym__str_single_quotes] = ACTIONS(2082), + [sym__str_back_ticks] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), + [sym__entry_separator] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2084), }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_alias] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_let_DASHenv] = ACTIONS(1915), - [anon_sym_mut] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [aux_sym_cmd_identifier_token1] = ACTIONS(1915), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1915), - [aux_sym_cmd_identifier_token9] = ACTIONS(1915), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1915), - [aux_sym_cmd_identifier_token13] = ACTIONS(1915), - [aux_sym_cmd_identifier_token14] = ACTIONS(1915), - [aux_sym_cmd_identifier_token15] = ACTIONS(1915), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1915), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [aux_sym_cmd_identifier_token37] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1915), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1915), - [anon_sym_export_DASHenv] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_make] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_catch] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_source] = ACTIONS(1915), - [anon_sym_source_DASHenv] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1915), - [anon_sym_hide] = ACTIONS(1915), - [anon_sym_hide_DASHenv] = ACTIONS(1915), - [anon_sym_overlay] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1917), + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(2615), + [anon_sym_alias] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_let_DASHenv] = ACTIONS(2615), + [anon_sym_mut] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [aux_sym_cmd_identifier_token1] = ACTIONS(2615), + [aux_sym_cmd_identifier_token2] = ACTIONS(2615), + [aux_sym_cmd_identifier_token3] = ACTIONS(2615), + [aux_sym_cmd_identifier_token4] = ACTIONS(2615), + [aux_sym_cmd_identifier_token5] = ACTIONS(2615), + [aux_sym_cmd_identifier_token6] = ACTIONS(2615), + [aux_sym_cmd_identifier_token7] = ACTIONS(2615), + [aux_sym_cmd_identifier_token8] = ACTIONS(2615), + [aux_sym_cmd_identifier_token9] = ACTIONS(2615), + [aux_sym_cmd_identifier_token10] = ACTIONS(2615), + [aux_sym_cmd_identifier_token11] = ACTIONS(2615), + [aux_sym_cmd_identifier_token12] = ACTIONS(2615), + [aux_sym_cmd_identifier_token13] = ACTIONS(2615), + [aux_sym_cmd_identifier_token14] = ACTIONS(2615), + [aux_sym_cmd_identifier_token15] = ACTIONS(2615), + [aux_sym_cmd_identifier_token16] = ACTIONS(2615), + [aux_sym_cmd_identifier_token17] = ACTIONS(2615), + [aux_sym_cmd_identifier_token18] = ACTIONS(2615), + [aux_sym_cmd_identifier_token19] = ACTIONS(2615), + [aux_sym_cmd_identifier_token20] = ACTIONS(2615), + [aux_sym_cmd_identifier_token21] = ACTIONS(2615), + [aux_sym_cmd_identifier_token22] = ACTIONS(2615), + [aux_sym_cmd_identifier_token23] = ACTIONS(2615), + [aux_sym_cmd_identifier_token24] = ACTIONS(2615), + [aux_sym_cmd_identifier_token25] = ACTIONS(2615), + [aux_sym_cmd_identifier_token26] = ACTIONS(2615), + [aux_sym_cmd_identifier_token27] = ACTIONS(2615), + [aux_sym_cmd_identifier_token28] = ACTIONS(2615), + [aux_sym_cmd_identifier_token29] = ACTIONS(2615), + [aux_sym_cmd_identifier_token30] = ACTIONS(2615), + [aux_sym_cmd_identifier_token31] = ACTIONS(2615), + [aux_sym_cmd_identifier_token32] = ACTIONS(2615), + [aux_sym_cmd_identifier_token33] = ACTIONS(2615), + [aux_sym_cmd_identifier_token34] = ACTIONS(2615), + [aux_sym_cmd_identifier_token35] = ACTIONS(2615), + [aux_sym_cmd_identifier_token36] = ACTIONS(2615), + [aux_sym_cmd_identifier_token37] = ACTIONS(2615), + [aux_sym_cmd_identifier_token38] = ACTIONS(2615), + [aux_sym_cmd_identifier_token39] = ACTIONS(2615), + [aux_sym_cmd_identifier_token40] = ACTIONS(2615), + [anon_sym_def] = ACTIONS(2615), + [anon_sym_export_DASHenv] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_use] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_error] = ACTIONS(2615), + [anon_sym_DASH2] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_in2] = ACTIONS(2615), + [anon_sym_loop] = ACTIONS(2615), + [anon_sym_make] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_match] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_catch] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_source] = ACTIONS(2615), + [anon_sym_source_DASHenv] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_hide] = ACTIONS(2615), + [anon_sym_hide_DASHenv] = ACTIONS(2615), + [anon_sym_overlay] = ACTIONS(2615), + [anon_sym_as] = ACTIONS(2615), + [anon_sym_PLUS2] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2615), + [aux_sym__val_number_decimal_token1] = ACTIONS(2615), + [aux_sym__val_number_decimal_token2] = ACTIONS(2615), + [aux_sym__val_number_decimal_token3] = ACTIONS(2615), + [aux_sym__val_number_decimal_token4] = ACTIONS(2615), + [aux_sym__val_number_token1] = ACTIONS(2615), + [aux_sym__val_number_token2] = ACTIONS(2615), + [aux_sym__val_number_token3] = ACTIONS(2615), + [aux_sym__val_number_token4] = ACTIONS(2615), + [aux_sym__val_number_token5] = ACTIONS(2615), + [aux_sym__val_number_token6] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [sym__str_single_quotes] = ACTIONS(2615), + [sym__str_back_ticks] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2615), + [sym__entry_separator] = ACTIONS(2617), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2617), }, - [741] = { - [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1929), - [aux_sym_cmd_identifier_token3] = ACTIONS(1929), - [aux_sym_cmd_identifier_token4] = ACTIONS(1929), - [aux_sym_cmd_identifier_token5] = ACTIONS(1929), - [aux_sym_cmd_identifier_token6] = ACTIONS(1929), - [aux_sym_cmd_identifier_token7] = ACTIONS(1929), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1929), - [aux_sym_cmd_identifier_token11] = ACTIONS(1929), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1929), - [aux_sym_cmd_identifier_token17] = ACTIONS(1929), - [aux_sym_cmd_identifier_token18] = ACTIONS(1929), - [aux_sym_cmd_identifier_token19] = ACTIONS(1929), - [aux_sym_cmd_identifier_token20] = ACTIONS(1929), - [aux_sym_cmd_identifier_token21] = ACTIONS(1929), - [aux_sym_cmd_identifier_token22] = ACTIONS(1929), - [aux_sym_cmd_identifier_token23] = ACTIONS(1929), - [aux_sym_cmd_identifier_token24] = ACTIONS(1929), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1929), - [aux_sym_cmd_identifier_token27] = ACTIONS(1929), - [aux_sym_cmd_identifier_token28] = ACTIONS(1929), - [aux_sym_cmd_identifier_token29] = ACTIONS(1929), - [aux_sym_cmd_identifier_token30] = ACTIONS(1929), - [aux_sym_cmd_identifier_token31] = ACTIONS(1929), - [aux_sym_cmd_identifier_token32] = ACTIONS(1929), - [aux_sym_cmd_identifier_token33] = ACTIONS(1929), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1929), - [aux_sym_cmd_identifier_token36] = ACTIONS(1929), - [aux_sym_cmd_identifier_token37] = ACTIONS(1929), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1929), - [aux_sym_cmd_identifier_token40] = ACTIONS(1929), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1929), + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(1526), + [anon_sym_alias] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_let_DASHenv] = ACTIONS(1526), + [anon_sym_mut] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [aux_sym_cmd_identifier_token1] = ACTIONS(1526), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1526), + [aux_sym_cmd_identifier_token9] = ACTIONS(1526), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1526), + [aux_sym_cmd_identifier_token13] = ACTIONS(1526), + [aux_sym_cmd_identifier_token14] = ACTIONS(1526), + [aux_sym_cmd_identifier_token15] = ACTIONS(1526), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1526), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [aux_sym_cmd_identifier_token37] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1526), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_export_DASHenv] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_module] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_make] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_catch] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_source] = ACTIONS(1526), + [anon_sym_source_DASHenv] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_hide] = ACTIONS(1526), + [anon_sym_hide_DASHenv] = ACTIONS(1526), + [anon_sym_overlay] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1526), + [aux_sym__val_number_token5] = ACTIONS(1526), + [aux_sym__val_number_token6] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), }, - [742] = { - [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_alias] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_let_DASHenv] = ACTIONS(1942), - [anon_sym_mut] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [aux_sym_cmd_identifier_token1] = ACTIONS(1942), - [aux_sym_cmd_identifier_token2] = ACTIONS(1944), - [aux_sym_cmd_identifier_token3] = ACTIONS(1944), - [aux_sym_cmd_identifier_token4] = ACTIONS(1944), - [aux_sym_cmd_identifier_token5] = ACTIONS(1944), - [aux_sym_cmd_identifier_token6] = ACTIONS(1944), - [aux_sym_cmd_identifier_token7] = ACTIONS(1944), - [aux_sym_cmd_identifier_token8] = ACTIONS(1942), - [aux_sym_cmd_identifier_token9] = ACTIONS(1942), - [aux_sym_cmd_identifier_token10] = ACTIONS(1944), - [aux_sym_cmd_identifier_token11] = ACTIONS(1944), - [aux_sym_cmd_identifier_token12] = ACTIONS(1942), - [aux_sym_cmd_identifier_token13] = ACTIONS(1942), - [aux_sym_cmd_identifier_token14] = ACTIONS(1942), - [aux_sym_cmd_identifier_token15] = ACTIONS(1942), - [aux_sym_cmd_identifier_token16] = ACTIONS(1944), - [aux_sym_cmd_identifier_token17] = ACTIONS(1944), - [aux_sym_cmd_identifier_token18] = ACTIONS(1944), - [aux_sym_cmd_identifier_token19] = ACTIONS(1944), - [aux_sym_cmd_identifier_token20] = ACTIONS(1944), - [aux_sym_cmd_identifier_token21] = ACTIONS(1944), - [aux_sym_cmd_identifier_token22] = ACTIONS(1944), - [aux_sym_cmd_identifier_token23] = ACTIONS(1944), - [aux_sym_cmd_identifier_token24] = ACTIONS(1944), - [aux_sym_cmd_identifier_token25] = ACTIONS(1944), - [aux_sym_cmd_identifier_token26] = ACTIONS(1944), - [aux_sym_cmd_identifier_token27] = ACTIONS(1944), - [aux_sym_cmd_identifier_token28] = ACTIONS(1944), - [aux_sym_cmd_identifier_token29] = ACTIONS(1944), - [aux_sym_cmd_identifier_token30] = ACTIONS(1944), - [aux_sym_cmd_identifier_token31] = ACTIONS(1944), - [aux_sym_cmd_identifier_token32] = ACTIONS(1944), - [aux_sym_cmd_identifier_token33] = ACTIONS(1944), - [aux_sym_cmd_identifier_token34] = ACTIONS(1942), - [aux_sym_cmd_identifier_token35] = ACTIONS(1944), - [aux_sym_cmd_identifier_token36] = ACTIONS(1944), - [aux_sym_cmd_identifier_token37] = ACTIONS(1944), - [aux_sym_cmd_identifier_token38] = ACTIONS(1942), - [aux_sym_cmd_identifier_token39] = ACTIONS(1944), - [aux_sym_cmd_identifier_token40] = ACTIONS(1944), - [anon_sym_def] = ACTIONS(1942), - [anon_sym_export_DASHenv] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_error] = ACTIONS(1942), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_in2] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_make] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_source] = ACTIONS(1942), - [anon_sym_source_DASHenv] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_hide] = ACTIONS(1942), - [anon_sym_hide_DASHenv] = ACTIONS(1942), - [anon_sym_overlay] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1942), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1944), - [aux_sym__val_number_decimal_token3] = ACTIONS(1944), - [aux_sym__val_number_decimal_token4] = ACTIONS(1944), - [aux_sym__val_number_token1] = ACTIONS(1944), - [aux_sym__val_number_token2] = ACTIONS(1944), - [aux_sym__val_number_token3] = ACTIONS(1944), - [aux_sym__val_number_token4] = ACTIONS(1942), - [aux_sym__val_number_token5] = ACTIONS(1942), - [aux_sym__val_number_token6] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym__str_single_quotes] = ACTIONS(1944), - [sym__str_back_ticks] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1944), + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2197), + [aux_sym_cmd_identifier_token3] = ACTIONS(2197), + [aux_sym_cmd_identifier_token4] = ACTIONS(2197), + [aux_sym_cmd_identifier_token5] = ACTIONS(2197), + [aux_sym_cmd_identifier_token6] = ACTIONS(2197), + [aux_sym_cmd_identifier_token7] = ACTIONS(2197), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2197), + [aux_sym_cmd_identifier_token11] = ACTIONS(2197), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2197), + [aux_sym_cmd_identifier_token17] = ACTIONS(2197), + [aux_sym_cmd_identifier_token18] = ACTIONS(2197), + [aux_sym_cmd_identifier_token19] = ACTIONS(2197), + [aux_sym_cmd_identifier_token20] = ACTIONS(2197), + [aux_sym_cmd_identifier_token21] = ACTIONS(2197), + [aux_sym_cmd_identifier_token22] = ACTIONS(2197), + [aux_sym_cmd_identifier_token23] = ACTIONS(2197), + [aux_sym_cmd_identifier_token24] = ACTIONS(2197), + [aux_sym_cmd_identifier_token25] = ACTIONS(2197), + [aux_sym_cmd_identifier_token26] = ACTIONS(2197), + [aux_sym_cmd_identifier_token27] = ACTIONS(2197), + [aux_sym_cmd_identifier_token28] = ACTIONS(2197), + [aux_sym_cmd_identifier_token29] = ACTIONS(2197), + [aux_sym_cmd_identifier_token30] = ACTIONS(2197), + [aux_sym_cmd_identifier_token31] = ACTIONS(2197), + [aux_sym_cmd_identifier_token32] = ACTIONS(2197), + [aux_sym_cmd_identifier_token33] = ACTIONS(2197), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2197), + [aux_sym_cmd_identifier_token36] = ACTIONS(2197), + [aux_sym_cmd_identifier_token37] = ACTIONS(2197), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2197), + [aux_sym_cmd_identifier_token40] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2197), + [aux_sym__val_number_decimal_token3] = ACTIONS(2197), + [aux_sym__val_number_decimal_token4] = ACTIONS(2197), + [aux_sym__val_number_token1] = ACTIONS(2197), + [aux_sym__val_number_token2] = ACTIONS(2197), + [aux_sym__val_number_token3] = ACTIONS(2197), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), + [sym__entry_separator] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2203), }, - [743] = { - [sym_comment] = STATE(743), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_alias] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_let_DASHenv] = ACTIONS(2490), - [anon_sym_mut] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [aux_sym_cmd_identifier_token1] = ACTIONS(2490), - [aux_sym_cmd_identifier_token2] = ACTIONS(2492), - [aux_sym_cmd_identifier_token3] = ACTIONS(2492), - [aux_sym_cmd_identifier_token4] = ACTIONS(2492), - [aux_sym_cmd_identifier_token5] = ACTIONS(2492), - [aux_sym_cmd_identifier_token6] = ACTIONS(2492), - [aux_sym_cmd_identifier_token7] = ACTIONS(2492), - [aux_sym_cmd_identifier_token8] = ACTIONS(2490), - [aux_sym_cmd_identifier_token9] = ACTIONS(2490), - [aux_sym_cmd_identifier_token10] = ACTIONS(2492), - [aux_sym_cmd_identifier_token11] = ACTIONS(2492), - [aux_sym_cmd_identifier_token12] = ACTIONS(2490), - [aux_sym_cmd_identifier_token13] = ACTIONS(2490), - [aux_sym_cmd_identifier_token14] = ACTIONS(2490), - [aux_sym_cmd_identifier_token15] = ACTIONS(2490), - [aux_sym_cmd_identifier_token16] = ACTIONS(2492), - [aux_sym_cmd_identifier_token17] = ACTIONS(2492), - [aux_sym_cmd_identifier_token18] = ACTIONS(2492), - [aux_sym_cmd_identifier_token19] = ACTIONS(2492), - [aux_sym_cmd_identifier_token20] = ACTIONS(2492), - [aux_sym_cmd_identifier_token21] = ACTIONS(2492), - [aux_sym_cmd_identifier_token22] = ACTIONS(2492), - [aux_sym_cmd_identifier_token23] = ACTIONS(2492), - [aux_sym_cmd_identifier_token24] = ACTIONS(2492), - [aux_sym_cmd_identifier_token25] = ACTIONS(2492), - [aux_sym_cmd_identifier_token26] = ACTIONS(2492), - [aux_sym_cmd_identifier_token27] = ACTIONS(2492), - [aux_sym_cmd_identifier_token28] = ACTIONS(2492), - [aux_sym_cmd_identifier_token29] = ACTIONS(2492), - [aux_sym_cmd_identifier_token30] = ACTIONS(2492), - [aux_sym_cmd_identifier_token31] = ACTIONS(2492), - [aux_sym_cmd_identifier_token32] = ACTIONS(2492), - [aux_sym_cmd_identifier_token33] = ACTIONS(2492), - [aux_sym_cmd_identifier_token34] = ACTIONS(2490), - [aux_sym_cmd_identifier_token35] = ACTIONS(2492), - [aux_sym_cmd_identifier_token36] = ACTIONS(2492), - [aux_sym_cmd_identifier_token37] = ACTIONS(2492), - [aux_sym_cmd_identifier_token38] = ACTIONS(2490), - [aux_sym_cmd_identifier_token39] = ACTIONS(2492), - [aux_sym_cmd_identifier_token40] = ACTIONS(2492), - [anon_sym_def] = ACTIONS(2490), - [anon_sym_export_DASHenv] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_error] = ACTIONS(2490), - [anon_sym_DASH2] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_in2] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_make] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_catch] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_source] = ACTIONS(2490), - [anon_sym_source_DASHenv] = ACTIONS(2490), - [anon_sym_register] = ACTIONS(2490), - [anon_sym_hide] = ACTIONS(2490), - [anon_sym_hide_DASHenv] = ACTIONS(2490), - [anon_sym_overlay] = ACTIONS(2490), - [anon_sym_as] = ACTIONS(2490), - [anon_sym_PLUS2] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), - [aux_sym__val_number_decimal_token1] = ACTIONS(2490), - [aux_sym__val_number_decimal_token2] = ACTIONS(2492), - [aux_sym__val_number_decimal_token3] = ACTIONS(2492), - [aux_sym__val_number_decimal_token4] = ACTIONS(2492), - [aux_sym__val_number_token1] = ACTIONS(2492), - [aux_sym__val_number_token2] = ACTIONS(2492), - [aux_sym__val_number_token3] = ACTIONS(2492), - [aux_sym__val_number_token4] = ACTIONS(2490), - [aux_sym__val_number_token5] = ACTIONS(2490), - [aux_sym__val_number_token6] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym__str_single_quotes] = ACTIONS(2492), - [sym__str_back_ticks] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2492), + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(2006), + [anon_sym_alias] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_let_DASHenv] = ACTIONS(2006), + [anon_sym_mut] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [aux_sym_cmd_identifier_token1] = ACTIONS(2006), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2006), + [aux_sym_cmd_identifier_token9] = ACTIONS(2006), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2006), + [aux_sym_cmd_identifier_token13] = ACTIONS(2006), + [aux_sym_cmd_identifier_token14] = ACTIONS(2006), + [aux_sym_cmd_identifier_token15] = ACTIONS(2006), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2006), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2006), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2006), + [anon_sym_export_DASHenv] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_module] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_error] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_in2] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_make] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_source] = ACTIONS(2006), + [anon_sym_source_DASHenv] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2006), + [anon_sym_hide] = ACTIONS(2006), + [anon_sym_hide_DASHenv] = ACTIONS(2006), + [anon_sym_overlay] = ACTIONS(2006), + [anon_sym_as] = ACTIONS(2006), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [sym__entry_separator] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2008), }, - [744] = { - [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_alias] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_let_DASHenv] = ACTIONS(2034), - [anon_sym_mut] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [aux_sym_cmd_identifier_token1] = ACTIONS(2034), - [aux_sym_cmd_identifier_token2] = ACTIONS(2036), - [aux_sym_cmd_identifier_token3] = ACTIONS(2036), - [aux_sym_cmd_identifier_token4] = ACTIONS(2036), - [aux_sym_cmd_identifier_token5] = ACTIONS(2036), - [aux_sym_cmd_identifier_token6] = ACTIONS(2036), - [aux_sym_cmd_identifier_token7] = ACTIONS(2036), - [aux_sym_cmd_identifier_token8] = ACTIONS(2034), - [aux_sym_cmd_identifier_token9] = ACTIONS(2034), - [aux_sym_cmd_identifier_token10] = ACTIONS(2036), - [aux_sym_cmd_identifier_token11] = ACTIONS(2036), - [aux_sym_cmd_identifier_token12] = ACTIONS(2034), - [aux_sym_cmd_identifier_token13] = ACTIONS(2034), - [aux_sym_cmd_identifier_token14] = ACTIONS(2034), - [aux_sym_cmd_identifier_token15] = ACTIONS(2034), - [aux_sym_cmd_identifier_token16] = ACTIONS(2036), - [aux_sym_cmd_identifier_token17] = ACTIONS(2036), - [aux_sym_cmd_identifier_token18] = ACTIONS(2036), - [aux_sym_cmd_identifier_token19] = ACTIONS(2036), - [aux_sym_cmd_identifier_token20] = ACTIONS(2036), - [aux_sym_cmd_identifier_token21] = ACTIONS(2036), - [aux_sym_cmd_identifier_token22] = ACTIONS(2036), - [aux_sym_cmd_identifier_token23] = ACTIONS(2036), - [aux_sym_cmd_identifier_token24] = ACTIONS(2036), - [aux_sym_cmd_identifier_token25] = ACTIONS(2036), - [aux_sym_cmd_identifier_token26] = ACTIONS(2036), - [aux_sym_cmd_identifier_token27] = ACTIONS(2036), - [aux_sym_cmd_identifier_token28] = ACTIONS(2036), - [aux_sym_cmd_identifier_token29] = ACTIONS(2036), - [aux_sym_cmd_identifier_token30] = ACTIONS(2036), - [aux_sym_cmd_identifier_token31] = ACTIONS(2036), - [aux_sym_cmd_identifier_token32] = ACTIONS(2036), - [aux_sym_cmd_identifier_token33] = ACTIONS(2036), - [aux_sym_cmd_identifier_token34] = ACTIONS(2034), - [aux_sym_cmd_identifier_token35] = ACTIONS(2036), - [aux_sym_cmd_identifier_token36] = ACTIONS(2036), - [aux_sym_cmd_identifier_token37] = ACTIONS(2036), - [aux_sym_cmd_identifier_token38] = ACTIONS(2034), - [aux_sym_cmd_identifier_token39] = ACTIONS(2036), - [aux_sym_cmd_identifier_token40] = ACTIONS(2036), - [anon_sym_def] = ACTIONS(2034), - [anon_sym_export_DASHenv] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_use] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [anon_sym_error] = ACTIONS(2034), - [anon_sym_DASH2] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_in2] = ACTIONS(2034), - [anon_sym_loop] = ACTIONS(2034), - [anon_sym_make] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_match] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_catch] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_source] = ACTIONS(2034), - [anon_sym_source_DASHenv] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_hide] = ACTIONS(2034), - [anon_sym_hide_DASHenv] = ACTIONS(2034), - [anon_sym_overlay] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_PLUS2] = ACTIONS(2034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2036), - [aux_sym__val_number_decimal_token3] = ACTIONS(2036), - [aux_sym__val_number_decimal_token4] = ACTIONS(2036), - [aux_sym__val_number_token1] = ACTIONS(2036), - [aux_sym__val_number_token2] = ACTIONS(2036), - [aux_sym__val_number_token3] = ACTIONS(2036), - [aux_sym__val_number_token4] = ACTIONS(2034), - [aux_sym__val_number_token5] = ACTIONS(2034), - [aux_sym__val_number_token6] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym__str_single_quotes] = ACTIONS(2036), - [sym__str_back_ticks] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2036), + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1872), + [aux_sym_cmd_identifier_token3] = ACTIONS(1872), + [aux_sym_cmd_identifier_token4] = ACTIONS(1872), + [aux_sym_cmd_identifier_token5] = ACTIONS(1872), + [aux_sym_cmd_identifier_token6] = ACTIONS(1872), + [aux_sym_cmd_identifier_token7] = ACTIONS(1872), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1872), + [aux_sym_cmd_identifier_token11] = ACTIONS(1872), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1872), + [aux_sym_cmd_identifier_token17] = ACTIONS(1872), + [aux_sym_cmd_identifier_token18] = ACTIONS(1872), + [aux_sym_cmd_identifier_token19] = ACTIONS(1872), + [aux_sym_cmd_identifier_token20] = ACTIONS(1872), + [aux_sym_cmd_identifier_token21] = ACTIONS(1872), + [aux_sym_cmd_identifier_token22] = ACTIONS(1872), + [aux_sym_cmd_identifier_token23] = ACTIONS(1872), + [aux_sym_cmd_identifier_token24] = ACTIONS(1872), + [aux_sym_cmd_identifier_token25] = ACTIONS(1872), + [aux_sym_cmd_identifier_token26] = ACTIONS(1872), + [aux_sym_cmd_identifier_token27] = ACTIONS(1872), + [aux_sym_cmd_identifier_token28] = ACTIONS(1872), + [aux_sym_cmd_identifier_token29] = ACTIONS(1872), + [aux_sym_cmd_identifier_token30] = ACTIONS(1872), + [aux_sym_cmd_identifier_token31] = ACTIONS(1872), + [aux_sym_cmd_identifier_token32] = ACTIONS(1872), + [aux_sym_cmd_identifier_token33] = ACTIONS(1872), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1872), + [aux_sym_cmd_identifier_token36] = ACTIONS(1872), + [aux_sym_cmd_identifier_token37] = ACTIONS(1872), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1872), + [aux_sym_cmd_identifier_token40] = ACTIONS(1872), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1872), + [aux_sym__val_number_decimal_token3] = ACTIONS(1872), + [aux_sym__val_number_decimal_token4] = ACTIONS(1872), + [aux_sym__val_number_token1] = ACTIONS(1872), + [aux_sym__val_number_token2] = ACTIONS(1872), + [aux_sym__val_number_token3] = ACTIONS(1872), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [sym__str_single_quotes] = ACTIONS(1872), + [sym__str_back_ticks] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), + [sym__entry_separator] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), }, - [745] = { - [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [aux_sym_cmd_identifier_token37] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in2] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [aux_sym__val_number_token4] = ACTIONS(2367), - [aux_sym__val_number_token5] = ACTIONS(2367), - [aux_sym__val_number_token6] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2369), + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_alias] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_DASHenv] = ACTIONS(2619), + [anon_sym_mut] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [aux_sym_cmd_identifier_token1] = ACTIONS(2619), + [aux_sym_cmd_identifier_token2] = ACTIONS(2619), + [aux_sym_cmd_identifier_token3] = ACTIONS(2619), + [aux_sym_cmd_identifier_token4] = ACTIONS(2619), + [aux_sym_cmd_identifier_token5] = ACTIONS(2619), + [aux_sym_cmd_identifier_token6] = ACTIONS(2619), + [aux_sym_cmd_identifier_token7] = ACTIONS(2619), + [aux_sym_cmd_identifier_token8] = ACTIONS(2619), + [aux_sym_cmd_identifier_token9] = ACTIONS(2619), + [aux_sym_cmd_identifier_token10] = ACTIONS(2619), + [aux_sym_cmd_identifier_token11] = ACTIONS(2619), + [aux_sym_cmd_identifier_token12] = ACTIONS(2619), + [aux_sym_cmd_identifier_token13] = ACTIONS(2619), + [aux_sym_cmd_identifier_token14] = ACTIONS(2619), + [aux_sym_cmd_identifier_token15] = ACTIONS(2619), + [aux_sym_cmd_identifier_token16] = ACTIONS(2619), + [aux_sym_cmd_identifier_token17] = ACTIONS(2619), + [aux_sym_cmd_identifier_token18] = ACTIONS(2619), + [aux_sym_cmd_identifier_token19] = ACTIONS(2619), + [aux_sym_cmd_identifier_token20] = ACTIONS(2619), + [aux_sym_cmd_identifier_token21] = ACTIONS(2619), + [aux_sym_cmd_identifier_token22] = ACTIONS(2619), + [aux_sym_cmd_identifier_token23] = ACTIONS(2619), + [aux_sym_cmd_identifier_token24] = ACTIONS(2619), + [aux_sym_cmd_identifier_token25] = ACTIONS(2619), + [aux_sym_cmd_identifier_token26] = ACTIONS(2619), + [aux_sym_cmd_identifier_token27] = ACTIONS(2619), + [aux_sym_cmd_identifier_token28] = ACTIONS(2619), + [aux_sym_cmd_identifier_token29] = ACTIONS(2619), + [aux_sym_cmd_identifier_token30] = ACTIONS(2619), + [aux_sym_cmd_identifier_token31] = ACTIONS(2619), + [aux_sym_cmd_identifier_token32] = ACTIONS(2619), + [aux_sym_cmd_identifier_token33] = ACTIONS(2619), + [aux_sym_cmd_identifier_token34] = ACTIONS(2619), + [aux_sym_cmd_identifier_token35] = ACTIONS(2619), + [aux_sym_cmd_identifier_token36] = ACTIONS(2619), + [aux_sym_cmd_identifier_token37] = ACTIONS(2619), + [aux_sym_cmd_identifier_token38] = ACTIONS(2619), + [aux_sym_cmd_identifier_token39] = ACTIONS(2619), + [aux_sym_cmd_identifier_token40] = ACTIONS(2619), + [anon_sym_def] = ACTIONS(2619), + [anon_sym_export_DASHenv] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(2619), + [anon_sym_error] = ACTIONS(2619), + [anon_sym_DASH2] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_in2] = ACTIONS(2619), + [anon_sym_loop] = ACTIONS(2619), + [anon_sym_make] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_catch] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_source] = ACTIONS(2619), + [anon_sym_source_DASHenv] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_hide] = ACTIONS(2619), + [anon_sym_hide_DASHenv] = ACTIONS(2619), + [anon_sym_overlay] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_PLUS2] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2619), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2619), + [aux_sym__val_number_decimal_token3] = ACTIONS(2619), + [aux_sym__val_number_decimal_token4] = ACTIONS(2619), + [aux_sym__val_number_token1] = ACTIONS(2619), + [aux_sym__val_number_token2] = ACTIONS(2619), + [aux_sym__val_number_token3] = ACTIONS(2619), + [aux_sym__val_number_token4] = ACTIONS(2619), + [aux_sym__val_number_token5] = ACTIONS(2619), + [aux_sym__val_number_token6] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [sym__str_single_quotes] = ACTIONS(2619), + [sym__str_back_ticks] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2619), + [sym__entry_separator] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2621), }, - [746] = { - [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(2038), - [anon_sym_alias] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_let_DASHenv] = ACTIONS(2038), - [anon_sym_mut] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [aux_sym_cmd_identifier_token1] = ACTIONS(2038), - [aux_sym_cmd_identifier_token2] = ACTIONS(2040), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [aux_sym_cmd_identifier_token6] = ACTIONS(2040), - [aux_sym_cmd_identifier_token7] = ACTIONS(2040), - [aux_sym_cmd_identifier_token8] = ACTIONS(2038), - [aux_sym_cmd_identifier_token9] = ACTIONS(2038), - [aux_sym_cmd_identifier_token10] = ACTIONS(2040), - [aux_sym_cmd_identifier_token11] = ACTIONS(2040), - [aux_sym_cmd_identifier_token12] = ACTIONS(2038), - [aux_sym_cmd_identifier_token13] = ACTIONS(2038), - [aux_sym_cmd_identifier_token14] = ACTIONS(2038), - [aux_sym_cmd_identifier_token15] = ACTIONS(2038), - [aux_sym_cmd_identifier_token16] = ACTIONS(2040), - [aux_sym_cmd_identifier_token17] = ACTIONS(2040), - [aux_sym_cmd_identifier_token18] = ACTIONS(2040), - [aux_sym_cmd_identifier_token19] = ACTIONS(2040), - [aux_sym_cmd_identifier_token20] = ACTIONS(2040), - [aux_sym_cmd_identifier_token21] = ACTIONS(2040), - [aux_sym_cmd_identifier_token22] = ACTIONS(2040), - [aux_sym_cmd_identifier_token23] = ACTIONS(2040), - [aux_sym_cmd_identifier_token24] = ACTIONS(2040), - [aux_sym_cmd_identifier_token25] = ACTIONS(2040), - [aux_sym_cmd_identifier_token26] = ACTIONS(2040), - [aux_sym_cmd_identifier_token27] = ACTIONS(2040), - [aux_sym_cmd_identifier_token28] = ACTIONS(2040), - [aux_sym_cmd_identifier_token29] = ACTIONS(2040), - [aux_sym_cmd_identifier_token30] = ACTIONS(2040), - [aux_sym_cmd_identifier_token31] = ACTIONS(2040), - [aux_sym_cmd_identifier_token32] = ACTIONS(2040), - [aux_sym_cmd_identifier_token33] = ACTIONS(2040), - [aux_sym_cmd_identifier_token34] = ACTIONS(2038), - [aux_sym_cmd_identifier_token35] = ACTIONS(2040), - [aux_sym_cmd_identifier_token36] = ACTIONS(2040), - [aux_sym_cmd_identifier_token37] = ACTIONS(2040), - [aux_sym_cmd_identifier_token38] = ACTIONS(2038), - [aux_sym_cmd_identifier_token39] = ACTIONS(2040), - [aux_sym_cmd_identifier_token40] = ACTIONS(2040), - [anon_sym_def] = ACTIONS(2038), - [anon_sym_export_DASHenv] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_module] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2040), - [anon_sym_error] = ACTIONS(2038), - [anon_sym_DASH2] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_in2] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_make] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2038), - [anon_sym_catch] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_source] = ACTIONS(2038), - [anon_sym_source_DASHenv] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_hide] = ACTIONS(2038), - [anon_sym_hide_DASHenv] = ACTIONS(2038), - [anon_sym_overlay] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_PLUS2] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), - [aux_sym__val_number_decimal_token1] = ACTIONS(2038), - [aux_sym__val_number_decimal_token2] = ACTIONS(2040), - [aux_sym__val_number_decimal_token3] = ACTIONS(2040), - [aux_sym__val_number_decimal_token4] = ACTIONS(2040), - [aux_sym__val_number_token1] = ACTIONS(2040), - [aux_sym__val_number_token2] = ACTIONS(2040), - [aux_sym__val_number_token3] = ACTIONS(2040), - [aux_sym__val_number_token4] = ACTIONS(2038), - [aux_sym__val_number_token5] = ACTIONS(2038), - [aux_sym__val_number_token6] = ACTIONS(2038), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym__str_single_quotes] = ACTIONS(2040), - [sym__str_back_ticks] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2040), + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2623), + [anon_sym_alias] = ACTIONS(2623), + [anon_sym_let] = ACTIONS(2623), + [anon_sym_let_DASHenv] = ACTIONS(2623), + [anon_sym_mut] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [aux_sym_cmd_identifier_token1] = ACTIONS(2623), + [aux_sym_cmd_identifier_token2] = ACTIONS(2623), + [aux_sym_cmd_identifier_token3] = ACTIONS(2623), + [aux_sym_cmd_identifier_token4] = ACTIONS(2623), + [aux_sym_cmd_identifier_token5] = ACTIONS(2623), + [aux_sym_cmd_identifier_token6] = ACTIONS(2623), + [aux_sym_cmd_identifier_token7] = ACTIONS(2623), + [aux_sym_cmd_identifier_token8] = ACTIONS(2623), + [aux_sym_cmd_identifier_token9] = ACTIONS(2623), + [aux_sym_cmd_identifier_token10] = ACTIONS(2623), + [aux_sym_cmd_identifier_token11] = ACTIONS(2623), + [aux_sym_cmd_identifier_token12] = ACTIONS(2623), + [aux_sym_cmd_identifier_token13] = ACTIONS(2623), + [aux_sym_cmd_identifier_token14] = ACTIONS(2623), + [aux_sym_cmd_identifier_token15] = ACTIONS(2623), + [aux_sym_cmd_identifier_token16] = ACTIONS(2623), + [aux_sym_cmd_identifier_token17] = ACTIONS(2623), + [aux_sym_cmd_identifier_token18] = ACTIONS(2623), + [aux_sym_cmd_identifier_token19] = ACTIONS(2623), + [aux_sym_cmd_identifier_token20] = ACTIONS(2623), + [aux_sym_cmd_identifier_token21] = ACTIONS(2623), + [aux_sym_cmd_identifier_token22] = ACTIONS(2623), + [aux_sym_cmd_identifier_token23] = ACTIONS(2623), + [aux_sym_cmd_identifier_token24] = ACTIONS(2623), + [aux_sym_cmd_identifier_token25] = ACTIONS(2623), + [aux_sym_cmd_identifier_token26] = ACTIONS(2623), + [aux_sym_cmd_identifier_token27] = ACTIONS(2623), + [aux_sym_cmd_identifier_token28] = ACTIONS(2623), + [aux_sym_cmd_identifier_token29] = ACTIONS(2623), + [aux_sym_cmd_identifier_token30] = ACTIONS(2623), + [aux_sym_cmd_identifier_token31] = ACTIONS(2623), + [aux_sym_cmd_identifier_token32] = ACTIONS(2623), + [aux_sym_cmd_identifier_token33] = ACTIONS(2623), + [aux_sym_cmd_identifier_token34] = ACTIONS(2623), + [aux_sym_cmd_identifier_token35] = ACTIONS(2623), + [aux_sym_cmd_identifier_token36] = ACTIONS(2623), + [aux_sym_cmd_identifier_token37] = ACTIONS(2623), + [aux_sym_cmd_identifier_token38] = ACTIONS(2623), + [aux_sym_cmd_identifier_token39] = ACTIONS(2623), + [aux_sym_cmd_identifier_token40] = ACTIONS(2623), + [anon_sym_def] = ACTIONS(2623), + [anon_sym_export_DASHenv] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_module] = ACTIONS(2623), + [anon_sym_use] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2623), + [anon_sym_error] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_in2] = ACTIONS(2623), + [anon_sym_loop] = ACTIONS(2623), + [anon_sym_make] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_source] = ACTIONS(2623), + [anon_sym_source_DASHenv] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_hide] = ACTIONS(2623), + [anon_sym_hide_DASHenv] = ACTIONS(2623), + [anon_sym_overlay] = ACTIONS(2623), + [anon_sym_as] = ACTIONS(2623), + [anon_sym_PLUS2] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2623), + [aux_sym__val_number_decimal_token1] = ACTIONS(2623), + [aux_sym__val_number_decimal_token2] = ACTIONS(2623), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2623), + [aux_sym__val_number_token1] = ACTIONS(2623), + [aux_sym__val_number_token2] = ACTIONS(2623), + [aux_sym__val_number_token3] = ACTIONS(2623), + [aux_sym__val_number_token4] = ACTIONS(2623), + [aux_sym__val_number_token5] = ACTIONS(2623), + [aux_sym__val_number_token6] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [sym__str_single_quotes] = ACTIONS(2623), + [sym__str_back_ticks] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2623), + [sym__entry_separator] = ACTIONS(2625), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2625), }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_alias] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_let_DASHenv] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1901), - [aux_sym_cmd_identifier_token3] = ACTIONS(1901), - [aux_sym_cmd_identifier_token4] = ACTIONS(1901), - [aux_sym_cmd_identifier_token5] = ACTIONS(1901), - [aux_sym_cmd_identifier_token6] = ACTIONS(1901), - [aux_sym_cmd_identifier_token7] = ACTIONS(1901), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1901), - [aux_sym_cmd_identifier_token17] = ACTIONS(1901), - [aux_sym_cmd_identifier_token18] = ACTIONS(1901), - [aux_sym_cmd_identifier_token19] = ACTIONS(1901), - [aux_sym_cmd_identifier_token20] = ACTIONS(1901), - [aux_sym_cmd_identifier_token21] = ACTIONS(1901), - [aux_sym_cmd_identifier_token22] = ACTIONS(1901), - [aux_sym_cmd_identifier_token23] = ACTIONS(1901), - [aux_sym_cmd_identifier_token24] = ACTIONS(1901), - [aux_sym_cmd_identifier_token25] = ACTIONS(1901), - [aux_sym_cmd_identifier_token26] = ACTIONS(1901), - [aux_sym_cmd_identifier_token27] = ACTIONS(1901), - [aux_sym_cmd_identifier_token28] = ACTIONS(1901), - [aux_sym_cmd_identifier_token29] = ACTIONS(1901), - [aux_sym_cmd_identifier_token30] = ACTIONS(1901), - [aux_sym_cmd_identifier_token31] = ACTIONS(1901), - [aux_sym_cmd_identifier_token32] = ACTIONS(1901), - [aux_sym_cmd_identifier_token33] = ACTIONS(1901), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1901), - [aux_sym_cmd_identifier_token36] = ACTIONS(1901), - [aux_sym_cmd_identifier_token37] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1899), - [anon_sym_export_DASHenv] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in2] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_source] = ACTIONS(1899), - [anon_sym_source_DASHenv] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_hide] = ACTIONS(1899), - [anon_sym_hide_DASHenv] = ACTIONS(1899), - [anon_sym_overlay] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1901), + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [aux_sym_cmd_identifier_token37] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), }, - [748] = { - [sym_comment] = STATE(748), + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1800), + [aux_sym_cmd_identifier_token3] = ACTIONS(1800), + [aux_sym_cmd_identifier_token4] = ACTIONS(1800), + [aux_sym_cmd_identifier_token5] = ACTIONS(1800), + [aux_sym_cmd_identifier_token6] = ACTIONS(1800), + [aux_sym_cmd_identifier_token7] = ACTIONS(1800), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1800), + [aux_sym_cmd_identifier_token11] = ACTIONS(1800), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1800), + [aux_sym_cmd_identifier_token17] = ACTIONS(1800), + [aux_sym_cmd_identifier_token18] = ACTIONS(1800), + [aux_sym_cmd_identifier_token19] = ACTIONS(1800), + [aux_sym_cmd_identifier_token20] = ACTIONS(1800), + [aux_sym_cmd_identifier_token21] = ACTIONS(1800), + [aux_sym_cmd_identifier_token22] = ACTIONS(1800), + [aux_sym_cmd_identifier_token23] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1800), + [aux_sym_cmd_identifier_token25] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1800), + [aux_sym_cmd_identifier_token27] = ACTIONS(1800), + [aux_sym_cmd_identifier_token28] = ACTIONS(1800), + [aux_sym_cmd_identifier_token29] = ACTIONS(1800), + [aux_sym_cmd_identifier_token30] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1800), + [aux_sym_cmd_identifier_token32] = ACTIONS(1800), + [aux_sym_cmd_identifier_token33] = ACTIONS(1800), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1800), + [aux_sym_cmd_identifier_token36] = ACTIONS(1800), + [aux_sym_cmd_identifier_token37] = ACTIONS(1800), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1800), + [aux_sym_cmd_identifier_token40] = ACTIONS(1800), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1800), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), + }, + [701] = { + [sym_comment] = STATE(701), [anon_sym_export] = ACTIONS(2448), [anon_sym_alias] = ACTIONS(2448), [anon_sym_let] = ACTIONS(2448), @@ -155014,7 +288209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2448), [anon_sym_module] = ACTIONS(2448), [anon_sym_use] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2448), [anon_sym_DOLLAR] = ACTIONS(2450), [anon_sym_error] = ACTIONS(2448), [anon_sym_DASH2] = ACTIONS(2448), @@ -155040,6 +288235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2448), [anon_sym_overlay] = ACTIONS(2448), [anon_sym_as] = ACTIONS(2448), + [anon_sym_LPAREN2] = ACTIONS(2450), [anon_sym_PLUS2] = ACTIONS(2448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2450), @@ -155057,209 +288253,3785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2450), [sym__str_back_ticks] = ACTIONS(2450), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2450), }, - [749] = { - [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_alias] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_let_DASHenv] = ACTIONS(2452), - [anon_sym_mut] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [aux_sym_cmd_identifier_token1] = ACTIONS(2452), - [aux_sym_cmd_identifier_token2] = ACTIONS(2454), - [aux_sym_cmd_identifier_token3] = ACTIONS(2454), - [aux_sym_cmd_identifier_token4] = ACTIONS(2454), - [aux_sym_cmd_identifier_token5] = ACTIONS(2454), - [aux_sym_cmd_identifier_token6] = ACTIONS(2454), - [aux_sym_cmd_identifier_token7] = ACTIONS(2454), - [aux_sym_cmd_identifier_token8] = ACTIONS(2452), - [aux_sym_cmd_identifier_token9] = ACTIONS(2452), - [aux_sym_cmd_identifier_token10] = ACTIONS(2454), - [aux_sym_cmd_identifier_token11] = ACTIONS(2454), - [aux_sym_cmd_identifier_token12] = ACTIONS(2452), - [aux_sym_cmd_identifier_token13] = ACTIONS(2452), - [aux_sym_cmd_identifier_token14] = ACTIONS(2452), - [aux_sym_cmd_identifier_token15] = ACTIONS(2452), - [aux_sym_cmd_identifier_token16] = ACTIONS(2454), - [aux_sym_cmd_identifier_token17] = ACTIONS(2454), - [aux_sym_cmd_identifier_token18] = ACTIONS(2454), - [aux_sym_cmd_identifier_token19] = ACTIONS(2454), - [aux_sym_cmd_identifier_token20] = ACTIONS(2454), - [aux_sym_cmd_identifier_token21] = ACTIONS(2454), - [aux_sym_cmd_identifier_token22] = ACTIONS(2454), - [aux_sym_cmd_identifier_token23] = ACTIONS(2454), - [aux_sym_cmd_identifier_token24] = ACTIONS(2454), - [aux_sym_cmd_identifier_token25] = ACTIONS(2454), - [aux_sym_cmd_identifier_token26] = ACTIONS(2454), - [aux_sym_cmd_identifier_token27] = ACTIONS(2454), - [aux_sym_cmd_identifier_token28] = ACTIONS(2454), - [aux_sym_cmd_identifier_token29] = ACTIONS(2454), - [aux_sym_cmd_identifier_token30] = ACTIONS(2454), - [aux_sym_cmd_identifier_token31] = ACTIONS(2454), - [aux_sym_cmd_identifier_token32] = ACTIONS(2454), - [aux_sym_cmd_identifier_token33] = ACTIONS(2454), - [aux_sym_cmd_identifier_token34] = ACTIONS(2452), - [aux_sym_cmd_identifier_token35] = ACTIONS(2454), - [aux_sym_cmd_identifier_token36] = ACTIONS(2454), - [aux_sym_cmd_identifier_token37] = ACTIONS(2454), - [aux_sym_cmd_identifier_token38] = ACTIONS(2452), - [aux_sym_cmd_identifier_token39] = ACTIONS(2454), - [aux_sym_cmd_identifier_token40] = ACTIONS(2454), - [anon_sym_def] = ACTIONS(2452), - [anon_sym_export_DASHenv] = ACTIONS(2452), - [anon_sym_extern] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_use] = ACTIONS(2452), + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_alias] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_let_DASHenv] = ACTIONS(1518), + [anon_sym_mut] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [aux_sym_cmd_identifier_token1] = ACTIONS(1518), + [aux_sym_cmd_identifier_token2] = ACTIONS(1520), + [aux_sym_cmd_identifier_token3] = ACTIONS(1520), + [aux_sym_cmd_identifier_token4] = ACTIONS(1520), + [aux_sym_cmd_identifier_token5] = ACTIONS(1520), + [aux_sym_cmd_identifier_token6] = ACTIONS(1520), + [aux_sym_cmd_identifier_token7] = ACTIONS(1520), + [aux_sym_cmd_identifier_token8] = ACTIONS(1518), + [aux_sym_cmd_identifier_token9] = ACTIONS(1518), + [aux_sym_cmd_identifier_token10] = ACTIONS(1520), + [aux_sym_cmd_identifier_token11] = ACTIONS(1520), + [aux_sym_cmd_identifier_token12] = ACTIONS(1518), + [aux_sym_cmd_identifier_token13] = ACTIONS(1518), + [aux_sym_cmd_identifier_token14] = ACTIONS(1518), + [aux_sym_cmd_identifier_token15] = ACTIONS(1518), + [aux_sym_cmd_identifier_token16] = ACTIONS(1520), + [aux_sym_cmd_identifier_token17] = ACTIONS(1520), + [aux_sym_cmd_identifier_token18] = ACTIONS(1520), + [aux_sym_cmd_identifier_token19] = ACTIONS(1520), + [aux_sym_cmd_identifier_token20] = ACTIONS(1520), + [aux_sym_cmd_identifier_token21] = ACTIONS(1520), + [aux_sym_cmd_identifier_token22] = ACTIONS(1520), + [aux_sym_cmd_identifier_token23] = ACTIONS(1520), + [aux_sym_cmd_identifier_token24] = ACTIONS(1520), + [aux_sym_cmd_identifier_token25] = ACTIONS(1520), + [aux_sym_cmd_identifier_token26] = ACTIONS(1520), + [aux_sym_cmd_identifier_token27] = ACTIONS(1520), + [aux_sym_cmd_identifier_token28] = ACTIONS(1520), + [aux_sym_cmd_identifier_token29] = ACTIONS(1520), + [aux_sym_cmd_identifier_token30] = ACTIONS(1520), + [aux_sym_cmd_identifier_token31] = ACTIONS(1520), + [aux_sym_cmd_identifier_token32] = ACTIONS(1520), + [aux_sym_cmd_identifier_token33] = ACTIONS(1520), + [aux_sym_cmd_identifier_token34] = ACTIONS(1518), + [aux_sym_cmd_identifier_token35] = ACTIONS(1520), + [aux_sym_cmd_identifier_token36] = ACTIONS(1520), + [aux_sym_cmd_identifier_token37] = ACTIONS(1520), + [aux_sym_cmd_identifier_token38] = ACTIONS(1518), + [aux_sym_cmd_identifier_token39] = ACTIONS(1520), + [aux_sym_cmd_identifier_token40] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_export_DASHenv] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_module] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_error] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_make] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_catch] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_source] = ACTIONS(1518), + [anon_sym_source_DASHenv] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_hide] = ACTIONS(1518), + [anon_sym_hide_DASHenv] = ACTIONS(1518), + [anon_sym_overlay] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1518), + [aux_sym__val_number_token5] = ACTIONS(1518), + [aux_sym__val_number_token6] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), + }, + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1524), + [aux_sym_cmd_identifier_token3] = ACTIONS(1524), + [aux_sym_cmd_identifier_token4] = ACTIONS(1524), + [aux_sym_cmd_identifier_token5] = ACTIONS(1524), + [aux_sym_cmd_identifier_token6] = ACTIONS(1524), + [aux_sym_cmd_identifier_token7] = ACTIONS(1524), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1524), + [aux_sym_cmd_identifier_token11] = ACTIONS(1524), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1524), + [aux_sym_cmd_identifier_token17] = ACTIONS(1524), + [aux_sym_cmd_identifier_token18] = ACTIONS(1524), + [aux_sym_cmd_identifier_token19] = ACTIONS(1524), + [aux_sym_cmd_identifier_token20] = ACTIONS(1524), + [aux_sym_cmd_identifier_token21] = ACTIONS(1524), + [aux_sym_cmd_identifier_token22] = ACTIONS(1524), + [aux_sym_cmd_identifier_token23] = ACTIONS(1524), + [aux_sym_cmd_identifier_token24] = ACTIONS(1524), + [aux_sym_cmd_identifier_token25] = ACTIONS(1524), + [aux_sym_cmd_identifier_token26] = ACTIONS(1524), + [aux_sym_cmd_identifier_token27] = ACTIONS(1524), + [aux_sym_cmd_identifier_token28] = ACTIONS(1524), + [aux_sym_cmd_identifier_token29] = ACTIONS(1524), + [aux_sym_cmd_identifier_token30] = ACTIONS(1524), + [aux_sym_cmd_identifier_token31] = ACTIONS(1524), + [aux_sym_cmd_identifier_token32] = ACTIONS(1524), + [aux_sym_cmd_identifier_token33] = ACTIONS(1524), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1524), + [aux_sym_cmd_identifier_token36] = ACTIONS(1524), + [aux_sym_cmd_identifier_token37] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_make] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_catch] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), + }, + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_alias] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_let_DASHenv] = ACTIONS(2454), + [anon_sym_mut] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [aux_sym_cmd_identifier_token1] = ACTIONS(2454), + [aux_sym_cmd_identifier_token2] = ACTIONS(2456), + [aux_sym_cmd_identifier_token3] = ACTIONS(2456), + [aux_sym_cmd_identifier_token4] = ACTIONS(2456), + [aux_sym_cmd_identifier_token5] = ACTIONS(2456), + [aux_sym_cmd_identifier_token6] = ACTIONS(2456), + [aux_sym_cmd_identifier_token7] = ACTIONS(2456), + [aux_sym_cmd_identifier_token8] = ACTIONS(2454), + [aux_sym_cmd_identifier_token9] = ACTIONS(2454), + [aux_sym_cmd_identifier_token10] = ACTIONS(2456), + [aux_sym_cmd_identifier_token11] = ACTIONS(2456), + [aux_sym_cmd_identifier_token12] = ACTIONS(2454), + [aux_sym_cmd_identifier_token13] = ACTIONS(2454), + [aux_sym_cmd_identifier_token14] = ACTIONS(2454), + [aux_sym_cmd_identifier_token15] = ACTIONS(2454), + [aux_sym_cmd_identifier_token16] = ACTIONS(2456), + [aux_sym_cmd_identifier_token17] = ACTIONS(2456), + [aux_sym_cmd_identifier_token18] = ACTIONS(2456), + [aux_sym_cmd_identifier_token19] = ACTIONS(2456), + [aux_sym_cmd_identifier_token20] = ACTIONS(2456), + [aux_sym_cmd_identifier_token21] = ACTIONS(2456), + [aux_sym_cmd_identifier_token22] = ACTIONS(2456), + [aux_sym_cmd_identifier_token23] = ACTIONS(2456), + [aux_sym_cmd_identifier_token24] = ACTIONS(2456), + [aux_sym_cmd_identifier_token25] = ACTIONS(2456), + [aux_sym_cmd_identifier_token26] = ACTIONS(2456), + [aux_sym_cmd_identifier_token27] = ACTIONS(2456), + [aux_sym_cmd_identifier_token28] = ACTIONS(2456), + [aux_sym_cmd_identifier_token29] = ACTIONS(2456), + [aux_sym_cmd_identifier_token30] = ACTIONS(2456), + [aux_sym_cmd_identifier_token31] = ACTIONS(2456), + [aux_sym_cmd_identifier_token32] = ACTIONS(2456), + [aux_sym_cmd_identifier_token33] = ACTIONS(2456), + [aux_sym_cmd_identifier_token34] = ACTIONS(2454), + [aux_sym_cmd_identifier_token35] = ACTIONS(2456), + [aux_sym_cmd_identifier_token36] = ACTIONS(2456), + [aux_sym_cmd_identifier_token37] = ACTIONS(2456), + [aux_sym_cmd_identifier_token38] = ACTIONS(2454), + [aux_sym_cmd_identifier_token39] = ACTIONS(2456), + [aux_sym_cmd_identifier_token40] = ACTIONS(2456), + [anon_sym_def] = ACTIONS(2454), + [anon_sym_export_DASHenv] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_module] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_error] = ACTIONS(2452), - [anon_sym_DASH2] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_in2] = ACTIONS(2452), - [anon_sym_loop] = ACTIONS(2452), - [anon_sym_make] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2452), - [anon_sym_match] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_catch] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_source] = ACTIONS(2452), - [anon_sym_source_DASHenv] = ACTIONS(2452), - [anon_sym_register] = ACTIONS(2452), - [anon_sym_hide] = ACTIONS(2452), - [anon_sym_hide_DASHenv] = ACTIONS(2452), - [anon_sym_overlay] = ACTIONS(2452), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_PLUS2] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2454), - [aux_sym__val_number_decimal_token3] = ACTIONS(2454), - [aux_sym__val_number_decimal_token4] = ACTIONS(2454), - [aux_sym__val_number_token1] = ACTIONS(2454), - [aux_sym__val_number_token2] = ACTIONS(2454), - [aux_sym__val_number_token3] = ACTIONS(2454), - [aux_sym__val_number_token4] = ACTIONS(2452), - [aux_sym__val_number_token5] = ACTIONS(2452), - [aux_sym__val_number_token6] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [sym__str_single_quotes] = ACTIONS(2454), - [sym__str_back_ticks] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2454), + [anon_sym_DOLLAR] = ACTIONS(2456), + [anon_sym_error] = ACTIONS(2454), + [anon_sym_DASH2] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in2] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_make] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_do] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2454), + [anon_sym_catch] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_source] = ACTIONS(2454), + [anon_sym_source_DASHenv] = ACTIONS(2454), + [anon_sym_register] = ACTIONS(2454), + [anon_sym_hide] = ACTIONS(2454), + [anon_sym_hide_DASHenv] = ACTIONS(2454), + [anon_sym_overlay] = ACTIONS(2454), + [anon_sym_as] = ACTIONS(2454), + [anon_sym_LPAREN2] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), + [aux_sym__val_number_decimal_token1] = ACTIONS(2454), + [aux_sym__val_number_decimal_token2] = ACTIONS(2456), + [aux_sym__val_number_decimal_token3] = ACTIONS(2456), + [aux_sym__val_number_decimal_token4] = ACTIONS(2456), + [aux_sym__val_number_token1] = ACTIONS(2456), + [aux_sym__val_number_token2] = ACTIONS(2456), + [aux_sym__val_number_token3] = ACTIONS(2456), + [aux_sym__val_number_token4] = ACTIONS(2454), + [aux_sym__val_number_token5] = ACTIONS(2454), + [aux_sym__val_number_token6] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [sym__str_single_quotes] = ACTIONS(2456), + [sym__str_back_ticks] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2456), + }, + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1556), + [aux_sym_cmd_identifier_token3] = ACTIONS(1556), + [aux_sym_cmd_identifier_token4] = ACTIONS(1556), + [aux_sym_cmd_identifier_token5] = ACTIONS(1556), + [aux_sym_cmd_identifier_token6] = ACTIONS(1556), + [aux_sym_cmd_identifier_token7] = ACTIONS(1556), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1556), + [aux_sym_cmd_identifier_token11] = ACTIONS(1556), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1556), + [aux_sym_cmd_identifier_token17] = ACTIONS(1556), + [aux_sym_cmd_identifier_token18] = ACTIONS(1556), + [aux_sym_cmd_identifier_token19] = ACTIONS(1556), + [aux_sym_cmd_identifier_token20] = ACTIONS(1556), + [aux_sym_cmd_identifier_token21] = ACTIONS(1556), + [aux_sym_cmd_identifier_token22] = ACTIONS(1556), + [aux_sym_cmd_identifier_token23] = ACTIONS(1556), + [aux_sym_cmd_identifier_token24] = ACTIONS(1556), + [aux_sym_cmd_identifier_token25] = ACTIONS(1556), + [aux_sym_cmd_identifier_token26] = ACTIONS(1556), + [aux_sym_cmd_identifier_token27] = ACTIONS(1556), + [aux_sym_cmd_identifier_token28] = ACTIONS(1556), + [aux_sym_cmd_identifier_token29] = ACTIONS(1556), + [aux_sym_cmd_identifier_token30] = ACTIONS(1556), + [aux_sym_cmd_identifier_token31] = ACTIONS(1556), + [aux_sym_cmd_identifier_token32] = ACTIONS(1556), + [aux_sym_cmd_identifier_token33] = ACTIONS(1556), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1556), + [aux_sym_cmd_identifier_token36] = ACTIONS(1556), + [aux_sym_cmd_identifier_token37] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1556), + [aux_sym__val_number_decimal_token3] = ACTIONS(1556), + [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), + [sym__entry_separator] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1558), + }, + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_alias] = ACTIONS(2627), + [anon_sym_let] = ACTIONS(2627), + [anon_sym_let_DASHenv] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [aux_sym_cmd_identifier_token1] = ACTIONS(2627), + [aux_sym_cmd_identifier_token2] = ACTIONS(2627), + [aux_sym_cmd_identifier_token3] = ACTIONS(2627), + [aux_sym_cmd_identifier_token4] = ACTIONS(2627), + [aux_sym_cmd_identifier_token5] = ACTIONS(2627), + [aux_sym_cmd_identifier_token6] = ACTIONS(2627), + [aux_sym_cmd_identifier_token7] = ACTIONS(2627), + [aux_sym_cmd_identifier_token8] = ACTIONS(2627), + [aux_sym_cmd_identifier_token9] = ACTIONS(2627), + [aux_sym_cmd_identifier_token10] = ACTIONS(2627), + [aux_sym_cmd_identifier_token11] = ACTIONS(2627), + [aux_sym_cmd_identifier_token12] = ACTIONS(2627), + [aux_sym_cmd_identifier_token13] = ACTIONS(2627), + [aux_sym_cmd_identifier_token14] = ACTIONS(2627), + [aux_sym_cmd_identifier_token15] = ACTIONS(2627), + [aux_sym_cmd_identifier_token16] = ACTIONS(2627), + [aux_sym_cmd_identifier_token17] = ACTIONS(2627), + [aux_sym_cmd_identifier_token18] = ACTIONS(2627), + [aux_sym_cmd_identifier_token19] = ACTIONS(2627), + [aux_sym_cmd_identifier_token20] = ACTIONS(2627), + [aux_sym_cmd_identifier_token21] = ACTIONS(2627), + [aux_sym_cmd_identifier_token22] = ACTIONS(2627), + [aux_sym_cmd_identifier_token23] = ACTIONS(2627), + [aux_sym_cmd_identifier_token24] = ACTIONS(2627), + [aux_sym_cmd_identifier_token25] = ACTIONS(2627), + [aux_sym_cmd_identifier_token26] = ACTIONS(2627), + [aux_sym_cmd_identifier_token27] = ACTIONS(2627), + [aux_sym_cmd_identifier_token28] = ACTIONS(2627), + [aux_sym_cmd_identifier_token29] = ACTIONS(2627), + [aux_sym_cmd_identifier_token30] = ACTIONS(2627), + [aux_sym_cmd_identifier_token31] = ACTIONS(2627), + [aux_sym_cmd_identifier_token32] = ACTIONS(2627), + [aux_sym_cmd_identifier_token33] = ACTIONS(2627), + [aux_sym_cmd_identifier_token34] = ACTIONS(2627), + [aux_sym_cmd_identifier_token35] = ACTIONS(2627), + [aux_sym_cmd_identifier_token36] = ACTIONS(2627), + [aux_sym_cmd_identifier_token37] = ACTIONS(2627), + [aux_sym_cmd_identifier_token38] = ACTIONS(2627), + [aux_sym_cmd_identifier_token39] = ACTIONS(2627), + [aux_sym_cmd_identifier_token40] = ACTIONS(2627), + [anon_sym_def] = ACTIONS(2627), + [anon_sym_export_DASHenv] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_use] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_DOLLAR] = ACTIONS(2627), + [anon_sym_error] = ACTIONS(2627), + [anon_sym_DASH2] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_in2] = ACTIONS(2627), + [anon_sym_loop] = ACTIONS(2627), + [anon_sym_make] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_source] = ACTIONS(2627), + [anon_sym_source_DASHenv] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_hide] = ACTIONS(2627), + [anon_sym_hide_DASHenv] = ACTIONS(2627), + [anon_sym_overlay] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_PLUS2] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2627), + [aux_sym__val_number_decimal_token1] = ACTIONS(2627), + [aux_sym__val_number_decimal_token2] = ACTIONS(2627), + [aux_sym__val_number_decimal_token3] = ACTIONS(2627), + [aux_sym__val_number_decimal_token4] = ACTIONS(2627), + [aux_sym__val_number_token1] = ACTIONS(2627), + [aux_sym__val_number_token2] = ACTIONS(2627), + [aux_sym__val_number_token3] = ACTIONS(2627), + [aux_sym__val_number_token4] = ACTIONS(2627), + [aux_sym__val_number_token5] = ACTIONS(2627), + [aux_sym__val_number_token6] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [sym__str_single_quotes] = ACTIONS(2627), + [sym__str_back_ticks] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2627), + [sym__entry_separator] = ACTIONS(2629), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2629), + }, + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(2631), + [anon_sym_alias] = ACTIONS(2631), + [anon_sym_let] = ACTIONS(2631), + [anon_sym_let_DASHenv] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [aux_sym_cmd_identifier_token1] = ACTIONS(2631), + [aux_sym_cmd_identifier_token2] = ACTIONS(2631), + [aux_sym_cmd_identifier_token3] = ACTIONS(2631), + [aux_sym_cmd_identifier_token4] = ACTIONS(2631), + [aux_sym_cmd_identifier_token5] = ACTIONS(2631), + [aux_sym_cmd_identifier_token6] = ACTIONS(2631), + [aux_sym_cmd_identifier_token7] = ACTIONS(2631), + [aux_sym_cmd_identifier_token8] = ACTIONS(2631), + [aux_sym_cmd_identifier_token9] = ACTIONS(2631), + [aux_sym_cmd_identifier_token10] = ACTIONS(2631), + [aux_sym_cmd_identifier_token11] = ACTIONS(2631), + [aux_sym_cmd_identifier_token12] = ACTIONS(2631), + [aux_sym_cmd_identifier_token13] = ACTIONS(2631), + [aux_sym_cmd_identifier_token14] = ACTIONS(2631), + [aux_sym_cmd_identifier_token15] = ACTIONS(2631), + [aux_sym_cmd_identifier_token16] = ACTIONS(2631), + [aux_sym_cmd_identifier_token17] = ACTIONS(2631), + [aux_sym_cmd_identifier_token18] = ACTIONS(2631), + [aux_sym_cmd_identifier_token19] = ACTIONS(2631), + [aux_sym_cmd_identifier_token20] = ACTIONS(2631), + [aux_sym_cmd_identifier_token21] = ACTIONS(2631), + [aux_sym_cmd_identifier_token22] = ACTIONS(2631), + [aux_sym_cmd_identifier_token23] = ACTIONS(2631), + [aux_sym_cmd_identifier_token24] = ACTIONS(2631), + [aux_sym_cmd_identifier_token25] = ACTIONS(2631), + [aux_sym_cmd_identifier_token26] = ACTIONS(2631), + [aux_sym_cmd_identifier_token27] = ACTIONS(2631), + [aux_sym_cmd_identifier_token28] = ACTIONS(2631), + [aux_sym_cmd_identifier_token29] = ACTIONS(2631), + [aux_sym_cmd_identifier_token30] = ACTIONS(2631), + [aux_sym_cmd_identifier_token31] = ACTIONS(2631), + [aux_sym_cmd_identifier_token32] = ACTIONS(2631), + [aux_sym_cmd_identifier_token33] = ACTIONS(2631), + [aux_sym_cmd_identifier_token34] = ACTIONS(2631), + [aux_sym_cmd_identifier_token35] = ACTIONS(2631), + [aux_sym_cmd_identifier_token36] = ACTIONS(2631), + [aux_sym_cmd_identifier_token37] = ACTIONS(2631), + [aux_sym_cmd_identifier_token38] = ACTIONS(2631), + [aux_sym_cmd_identifier_token39] = ACTIONS(2631), + [aux_sym_cmd_identifier_token40] = ACTIONS(2631), + [anon_sym_def] = ACTIONS(2631), + [anon_sym_export_DASHenv] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym_module] = ACTIONS(2631), + [anon_sym_use] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2631), + [anon_sym_error] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_in2] = ACTIONS(2631), + [anon_sym_loop] = ACTIONS(2631), + [anon_sym_make] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_source] = ACTIONS(2631), + [anon_sym_source_DASHenv] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_hide] = ACTIONS(2631), + [anon_sym_hide_DASHenv] = ACTIONS(2631), + [anon_sym_overlay] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_PLUS2] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2631), + [aux_sym__val_number_decimal_token1] = ACTIONS(2631), + [aux_sym__val_number_decimal_token2] = ACTIONS(2631), + [aux_sym__val_number_decimal_token3] = ACTIONS(2631), + [aux_sym__val_number_decimal_token4] = ACTIONS(2631), + [aux_sym__val_number_token1] = ACTIONS(2631), + [aux_sym__val_number_token2] = ACTIONS(2631), + [aux_sym__val_number_token3] = ACTIONS(2631), + [aux_sym__val_number_token4] = ACTIONS(2631), + [aux_sym__val_number_token5] = ACTIONS(2631), + [aux_sym__val_number_token6] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym__str_single_quotes] = ACTIONS(2631), + [sym__str_back_ticks] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2631), + [sym__entry_separator] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2633), + }, + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(2635), + [anon_sym_alias] = ACTIONS(2635), + [anon_sym_let] = ACTIONS(2635), + [anon_sym_let_DASHenv] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [aux_sym_cmd_identifier_token1] = ACTIONS(2635), + [aux_sym_cmd_identifier_token2] = ACTIONS(2635), + [aux_sym_cmd_identifier_token3] = ACTIONS(2635), + [aux_sym_cmd_identifier_token4] = ACTIONS(2635), + [aux_sym_cmd_identifier_token5] = ACTIONS(2635), + [aux_sym_cmd_identifier_token6] = ACTIONS(2635), + [aux_sym_cmd_identifier_token7] = ACTIONS(2635), + [aux_sym_cmd_identifier_token8] = ACTIONS(2635), + [aux_sym_cmd_identifier_token9] = ACTIONS(2635), + [aux_sym_cmd_identifier_token10] = ACTIONS(2635), + [aux_sym_cmd_identifier_token11] = ACTIONS(2635), + [aux_sym_cmd_identifier_token12] = ACTIONS(2635), + [aux_sym_cmd_identifier_token13] = ACTIONS(2635), + [aux_sym_cmd_identifier_token14] = ACTIONS(2635), + [aux_sym_cmd_identifier_token15] = ACTIONS(2635), + [aux_sym_cmd_identifier_token16] = ACTIONS(2635), + [aux_sym_cmd_identifier_token17] = ACTIONS(2635), + [aux_sym_cmd_identifier_token18] = ACTIONS(2635), + [aux_sym_cmd_identifier_token19] = ACTIONS(2635), + [aux_sym_cmd_identifier_token20] = ACTIONS(2635), + [aux_sym_cmd_identifier_token21] = ACTIONS(2635), + [aux_sym_cmd_identifier_token22] = ACTIONS(2635), + [aux_sym_cmd_identifier_token23] = ACTIONS(2635), + [aux_sym_cmd_identifier_token24] = ACTIONS(2635), + [aux_sym_cmd_identifier_token25] = ACTIONS(2635), + [aux_sym_cmd_identifier_token26] = ACTIONS(2635), + [aux_sym_cmd_identifier_token27] = ACTIONS(2635), + [aux_sym_cmd_identifier_token28] = ACTIONS(2635), + [aux_sym_cmd_identifier_token29] = ACTIONS(2635), + [aux_sym_cmd_identifier_token30] = ACTIONS(2635), + [aux_sym_cmd_identifier_token31] = ACTIONS(2635), + [aux_sym_cmd_identifier_token32] = ACTIONS(2635), + [aux_sym_cmd_identifier_token33] = ACTIONS(2635), + [aux_sym_cmd_identifier_token34] = ACTIONS(2635), + [aux_sym_cmd_identifier_token35] = ACTIONS(2635), + [aux_sym_cmd_identifier_token36] = ACTIONS(2635), + [aux_sym_cmd_identifier_token37] = ACTIONS(2635), + [aux_sym_cmd_identifier_token38] = ACTIONS(2635), + [aux_sym_cmd_identifier_token39] = ACTIONS(2635), + [aux_sym_cmd_identifier_token40] = ACTIONS(2635), + [anon_sym_def] = ACTIONS(2635), + [anon_sym_export_DASHenv] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym_module] = ACTIONS(2635), + [anon_sym_use] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(2635), + [anon_sym_error] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_in2] = ACTIONS(2635), + [anon_sym_loop] = ACTIONS(2635), + [anon_sym_make] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_catch] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_source] = ACTIONS(2635), + [anon_sym_source_DASHenv] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_hide] = ACTIONS(2635), + [anon_sym_hide_DASHenv] = ACTIONS(2635), + [anon_sym_overlay] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_PLUS2] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2635), + [aux_sym__val_number_decimal_token2] = ACTIONS(2635), + [aux_sym__val_number_decimal_token3] = ACTIONS(2635), + [aux_sym__val_number_decimal_token4] = ACTIONS(2635), + [aux_sym__val_number_token1] = ACTIONS(2635), + [aux_sym__val_number_token2] = ACTIONS(2635), + [aux_sym__val_number_token3] = ACTIONS(2635), + [aux_sym__val_number_token4] = ACTIONS(2635), + [aux_sym__val_number_token5] = ACTIONS(2635), + [aux_sym__val_number_token6] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [sym__str_single_quotes] = ACTIONS(2635), + [sym__str_back_ticks] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2635), + [sym__entry_separator] = ACTIONS(2637), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2637), + }, + [711] = { + [sym_comment] = STATE(711), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [sym__entry_separator] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2306), + }, + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1986), + [aux_sym_cmd_identifier_token3] = ACTIONS(1986), + [aux_sym_cmd_identifier_token4] = ACTIONS(1986), + [aux_sym_cmd_identifier_token5] = ACTIONS(1986), + [aux_sym_cmd_identifier_token6] = ACTIONS(1986), + [aux_sym_cmd_identifier_token7] = ACTIONS(1986), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1986), + [aux_sym_cmd_identifier_token11] = ACTIONS(1986), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1986), + [aux_sym_cmd_identifier_token17] = ACTIONS(1986), + [aux_sym_cmd_identifier_token18] = ACTIONS(1986), + [aux_sym_cmd_identifier_token19] = ACTIONS(1986), + [aux_sym_cmd_identifier_token20] = ACTIONS(1986), + [aux_sym_cmd_identifier_token21] = ACTIONS(1986), + [aux_sym_cmd_identifier_token22] = ACTIONS(1986), + [aux_sym_cmd_identifier_token23] = ACTIONS(1986), + [aux_sym_cmd_identifier_token24] = ACTIONS(1986), + [aux_sym_cmd_identifier_token25] = ACTIONS(1986), + [aux_sym_cmd_identifier_token26] = ACTIONS(1986), + [aux_sym_cmd_identifier_token27] = ACTIONS(1986), + [aux_sym_cmd_identifier_token28] = ACTIONS(1986), + [aux_sym_cmd_identifier_token29] = ACTIONS(1986), + [aux_sym_cmd_identifier_token30] = ACTIONS(1986), + [aux_sym_cmd_identifier_token31] = ACTIONS(1986), + [aux_sym_cmd_identifier_token32] = ACTIONS(1986), + [aux_sym_cmd_identifier_token33] = ACTIONS(1986), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1986), + [aux_sym_cmd_identifier_token36] = ACTIONS(1986), + [aux_sym_cmd_identifier_token37] = ACTIONS(1986), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1986), + [aux_sym_cmd_identifier_token40] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1986), + [sym__entry_separator] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1988), + }, + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(2639), + [anon_sym_alias] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_let_DASHenv] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [aux_sym_cmd_identifier_token1] = ACTIONS(2639), + [aux_sym_cmd_identifier_token2] = ACTIONS(2639), + [aux_sym_cmd_identifier_token3] = ACTIONS(2639), + [aux_sym_cmd_identifier_token4] = ACTIONS(2639), + [aux_sym_cmd_identifier_token5] = ACTIONS(2639), + [aux_sym_cmd_identifier_token6] = ACTIONS(2639), + [aux_sym_cmd_identifier_token7] = ACTIONS(2639), + [aux_sym_cmd_identifier_token8] = ACTIONS(2639), + [aux_sym_cmd_identifier_token9] = ACTIONS(2639), + [aux_sym_cmd_identifier_token10] = ACTIONS(2639), + [aux_sym_cmd_identifier_token11] = ACTIONS(2639), + [aux_sym_cmd_identifier_token12] = ACTIONS(2639), + [aux_sym_cmd_identifier_token13] = ACTIONS(2639), + [aux_sym_cmd_identifier_token14] = ACTIONS(2639), + [aux_sym_cmd_identifier_token15] = ACTIONS(2639), + [aux_sym_cmd_identifier_token16] = ACTIONS(2639), + [aux_sym_cmd_identifier_token17] = ACTIONS(2639), + [aux_sym_cmd_identifier_token18] = ACTIONS(2639), + [aux_sym_cmd_identifier_token19] = ACTIONS(2639), + [aux_sym_cmd_identifier_token20] = ACTIONS(2639), + [aux_sym_cmd_identifier_token21] = ACTIONS(2639), + [aux_sym_cmd_identifier_token22] = ACTIONS(2639), + [aux_sym_cmd_identifier_token23] = ACTIONS(2639), + [aux_sym_cmd_identifier_token24] = ACTIONS(2639), + [aux_sym_cmd_identifier_token25] = ACTIONS(2639), + [aux_sym_cmd_identifier_token26] = ACTIONS(2639), + [aux_sym_cmd_identifier_token27] = ACTIONS(2639), + [aux_sym_cmd_identifier_token28] = ACTIONS(2639), + [aux_sym_cmd_identifier_token29] = ACTIONS(2639), + [aux_sym_cmd_identifier_token30] = ACTIONS(2639), + [aux_sym_cmd_identifier_token31] = ACTIONS(2639), + [aux_sym_cmd_identifier_token32] = ACTIONS(2639), + [aux_sym_cmd_identifier_token33] = ACTIONS(2639), + [aux_sym_cmd_identifier_token34] = ACTIONS(2639), + [aux_sym_cmd_identifier_token35] = ACTIONS(2639), + [aux_sym_cmd_identifier_token36] = ACTIONS(2639), + [aux_sym_cmd_identifier_token37] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2639), + [aux_sym_cmd_identifier_token39] = ACTIONS(2639), + [aux_sym_cmd_identifier_token40] = ACTIONS(2639), + [anon_sym_def] = ACTIONS(2639), + [anon_sym_export_DASHenv] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_module] = ACTIONS(2639), + [anon_sym_use] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(2639), + [anon_sym_error] = ACTIONS(2639), + [anon_sym_DASH2] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_in2] = ACTIONS(2639), + [anon_sym_loop] = ACTIONS(2639), + [anon_sym_make] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_source] = ACTIONS(2639), + [anon_sym_source_DASHenv] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_hide] = ACTIONS(2639), + [anon_sym_hide_DASHenv] = ACTIONS(2639), + [anon_sym_overlay] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_PLUS2] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2639), + [aux_sym__val_number_decimal_token1] = ACTIONS(2639), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2639), + [aux_sym__val_number_decimal_token4] = ACTIONS(2639), + [aux_sym__val_number_token1] = ACTIONS(2639), + [aux_sym__val_number_token2] = ACTIONS(2639), + [aux_sym__val_number_token3] = ACTIONS(2639), + [aux_sym__val_number_token4] = ACTIONS(2639), + [aux_sym__val_number_token5] = ACTIONS(2639), + [aux_sym__val_number_token6] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [sym__str_single_quotes] = ACTIONS(2639), + [sym__str_back_ticks] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2639), + [sym__entry_separator] = ACTIONS(2641), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2641), + }, + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_alias] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_let_DASHenv] = ACTIONS(2500), + [anon_sym_mut] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [aux_sym_cmd_identifier_token1] = ACTIONS(2500), + [aux_sym_cmd_identifier_token2] = ACTIONS(2502), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [aux_sym_cmd_identifier_token6] = ACTIONS(2502), + [aux_sym_cmd_identifier_token7] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2500), + [aux_sym_cmd_identifier_token9] = ACTIONS(2500), + [aux_sym_cmd_identifier_token10] = ACTIONS(2502), + [aux_sym_cmd_identifier_token11] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2500), + [aux_sym_cmd_identifier_token13] = ACTIONS(2500), + [aux_sym_cmd_identifier_token14] = ACTIONS(2500), + [aux_sym_cmd_identifier_token15] = ACTIONS(2500), + [aux_sym_cmd_identifier_token16] = ACTIONS(2502), + [aux_sym_cmd_identifier_token17] = ACTIONS(2502), + [aux_sym_cmd_identifier_token18] = ACTIONS(2502), + [aux_sym_cmd_identifier_token19] = ACTIONS(2502), + [aux_sym_cmd_identifier_token20] = ACTIONS(2502), + [aux_sym_cmd_identifier_token21] = ACTIONS(2502), + [aux_sym_cmd_identifier_token22] = ACTIONS(2502), + [aux_sym_cmd_identifier_token23] = ACTIONS(2502), + [aux_sym_cmd_identifier_token24] = ACTIONS(2502), + [aux_sym_cmd_identifier_token25] = ACTIONS(2502), + [aux_sym_cmd_identifier_token26] = ACTIONS(2502), + [aux_sym_cmd_identifier_token27] = ACTIONS(2502), + [aux_sym_cmd_identifier_token28] = ACTIONS(2502), + [aux_sym_cmd_identifier_token29] = ACTIONS(2502), + [aux_sym_cmd_identifier_token30] = ACTIONS(2502), + [aux_sym_cmd_identifier_token31] = ACTIONS(2502), + [aux_sym_cmd_identifier_token32] = ACTIONS(2502), + [aux_sym_cmd_identifier_token33] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2500), + [aux_sym_cmd_identifier_token35] = ACTIONS(2502), + [aux_sym_cmd_identifier_token36] = ACTIONS(2502), + [aux_sym_cmd_identifier_token37] = ACTIONS(2502), + [aux_sym_cmd_identifier_token38] = ACTIONS(2500), + [aux_sym_cmd_identifier_token39] = ACTIONS(2502), + [aux_sym_cmd_identifier_token40] = ACTIONS(2502), + [anon_sym_def] = ACTIONS(2500), + [anon_sym_export_DASHenv] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_DOLLAR] = ACTIONS(2502), + [anon_sym_error] = ACTIONS(2500), + [anon_sym_DASH2] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_in2] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_make] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_source] = ACTIONS(2500), + [anon_sym_source_DASHenv] = ACTIONS(2500), + [anon_sym_register] = ACTIONS(2500), + [anon_sym_hide] = ACTIONS(2500), + [anon_sym_hide_DASHenv] = ACTIONS(2500), + [anon_sym_overlay] = ACTIONS(2500), + [anon_sym_as] = ACTIONS(2500), + [anon_sym_PLUS2] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), + [aux_sym__val_number_decimal_token1] = ACTIONS(2500), + [aux_sym__val_number_decimal_token2] = ACTIONS(2502), + [aux_sym__val_number_decimal_token3] = ACTIONS(2502), + [aux_sym__val_number_decimal_token4] = ACTIONS(2502), + [aux_sym__val_number_token1] = ACTIONS(2502), + [aux_sym__val_number_token2] = ACTIONS(2502), + [aux_sym__val_number_token3] = ACTIONS(2502), + [aux_sym__val_number_token4] = ACTIONS(2500), + [aux_sym__val_number_token5] = ACTIONS(2500), + [aux_sym__val_number_token6] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2502), + [sym__str_single_quotes] = ACTIONS(2502), + [sym__str_back_ticks] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2502), + }, + [715] = { + [sym_comment] = STATE(715), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_alias] = ACTIONS(2643), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_let_DASHenv] = ACTIONS(2643), + [anon_sym_mut] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [aux_sym_cmd_identifier_token1] = ACTIONS(2643), + [aux_sym_cmd_identifier_token2] = ACTIONS(2645), + [aux_sym_cmd_identifier_token3] = ACTIONS(2645), + [aux_sym_cmd_identifier_token4] = ACTIONS(2645), + [aux_sym_cmd_identifier_token5] = ACTIONS(2645), + [aux_sym_cmd_identifier_token6] = ACTIONS(2645), + [aux_sym_cmd_identifier_token7] = ACTIONS(2645), + [aux_sym_cmd_identifier_token8] = ACTIONS(2643), + [aux_sym_cmd_identifier_token9] = ACTIONS(2643), + [aux_sym_cmd_identifier_token10] = ACTIONS(2645), + [aux_sym_cmd_identifier_token11] = ACTIONS(2645), + [aux_sym_cmd_identifier_token12] = ACTIONS(2643), + [aux_sym_cmd_identifier_token13] = ACTIONS(2643), + [aux_sym_cmd_identifier_token14] = ACTIONS(2643), + [aux_sym_cmd_identifier_token15] = ACTIONS(2643), + [aux_sym_cmd_identifier_token16] = ACTIONS(2645), + [aux_sym_cmd_identifier_token17] = ACTIONS(2645), + [aux_sym_cmd_identifier_token18] = ACTIONS(2645), + [aux_sym_cmd_identifier_token19] = ACTIONS(2645), + [aux_sym_cmd_identifier_token20] = ACTIONS(2645), + [aux_sym_cmd_identifier_token21] = ACTIONS(2645), + [aux_sym_cmd_identifier_token22] = ACTIONS(2645), + [aux_sym_cmd_identifier_token23] = ACTIONS(2645), + [aux_sym_cmd_identifier_token24] = ACTIONS(2645), + [aux_sym_cmd_identifier_token25] = ACTIONS(2645), + [aux_sym_cmd_identifier_token26] = ACTIONS(2645), + [aux_sym_cmd_identifier_token27] = ACTIONS(2645), + [aux_sym_cmd_identifier_token28] = ACTIONS(2645), + [aux_sym_cmd_identifier_token29] = ACTIONS(2645), + [aux_sym_cmd_identifier_token30] = ACTIONS(2645), + [aux_sym_cmd_identifier_token31] = ACTIONS(2645), + [aux_sym_cmd_identifier_token32] = ACTIONS(2645), + [aux_sym_cmd_identifier_token33] = ACTIONS(2645), + [aux_sym_cmd_identifier_token34] = ACTIONS(2643), + [aux_sym_cmd_identifier_token35] = ACTIONS(2645), + [aux_sym_cmd_identifier_token36] = ACTIONS(2645), + [aux_sym_cmd_identifier_token37] = ACTIONS(2645), + [aux_sym_cmd_identifier_token38] = ACTIONS(2643), + [aux_sym_cmd_identifier_token39] = ACTIONS(2645), + [aux_sym_cmd_identifier_token40] = ACTIONS(2645), + [anon_sym_def] = ACTIONS(2643), + [anon_sym_export_DASHenv] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2643), + [anon_sym_use] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2645), + [anon_sym_error] = ACTIONS(2643), + [anon_sym_DASH2] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_in2] = ACTIONS(2643), + [anon_sym_loop] = ACTIONS(2643), + [anon_sym_make] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_catch] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_source] = ACTIONS(2643), + [anon_sym_source_DASHenv] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_hide] = ACTIONS(2643), + [anon_sym_hide_DASHenv] = ACTIONS(2643), + [anon_sym_overlay] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_PLUS2] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2645), + [aux_sym__val_number_decimal_token1] = ACTIONS(2643), + [aux_sym__val_number_decimal_token2] = ACTIONS(2645), + [aux_sym__val_number_decimal_token3] = ACTIONS(2645), + [aux_sym__val_number_decimal_token4] = ACTIONS(2645), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2643), + [aux_sym__val_number_token5] = ACTIONS(2643), + [aux_sym__val_number_token6] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym__str_single_quotes] = ACTIONS(2645), + [sym__str_back_ticks] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2645), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2645), + }, + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(2597), + [anon_sym_alias] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_let_DASHenv] = ACTIONS(2597), + [anon_sym_mut] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [aux_sym_cmd_identifier_token1] = ACTIONS(2597), + [aux_sym_cmd_identifier_token2] = ACTIONS(2599), + [aux_sym_cmd_identifier_token3] = ACTIONS(2599), + [aux_sym_cmd_identifier_token4] = ACTIONS(2599), + [aux_sym_cmd_identifier_token5] = ACTIONS(2599), + [aux_sym_cmd_identifier_token6] = ACTIONS(2599), + [aux_sym_cmd_identifier_token7] = ACTIONS(2599), + [aux_sym_cmd_identifier_token8] = ACTIONS(2597), + [aux_sym_cmd_identifier_token9] = ACTIONS(2597), + [aux_sym_cmd_identifier_token10] = ACTIONS(2599), + [aux_sym_cmd_identifier_token11] = ACTIONS(2599), + [aux_sym_cmd_identifier_token12] = ACTIONS(2597), + [aux_sym_cmd_identifier_token13] = ACTIONS(2597), + [aux_sym_cmd_identifier_token14] = ACTIONS(2597), + [aux_sym_cmd_identifier_token15] = ACTIONS(2597), + [aux_sym_cmd_identifier_token16] = ACTIONS(2599), + [aux_sym_cmd_identifier_token17] = ACTIONS(2599), + [aux_sym_cmd_identifier_token18] = ACTIONS(2599), + [aux_sym_cmd_identifier_token19] = ACTIONS(2599), + [aux_sym_cmd_identifier_token20] = ACTIONS(2599), + [aux_sym_cmd_identifier_token21] = ACTIONS(2599), + [aux_sym_cmd_identifier_token22] = ACTIONS(2599), + [aux_sym_cmd_identifier_token23] = ACTIONS(2599), + [aux_sym_cmd_identifier_token24] = ACTIONS(2599), + [aux_sym_cmd_identifier_token25] = ACTIONS(2599), + [aux_sym_cmd_identifier_token26] = ACTIONS(2599), + [aux_sym_cmd_identifier_token27] = ACTIONS(2599), + [aux_sym_cmd_identifier_token28] = ACTIONS(2599), + [aux_sym_cmd_identifier_token29] = ACTIONS(2599), + [aux_sym_cmd_identifier_token30] = ACTIONS(2599), + [aux_sym_cmd_identifier_token31] = ACTIONS(2599), + [aux_sym_cmd_identifier_token32] = ACTIONS(2599), + [aux_sym_cmd_identifier_token33] = ACTIONS(2599), + [aux_sym_cmd_identifier_token34] = ACTIONS(2597), + [aux_sym_cmd_identifier_token35] = ACTIONS(2599), + [aux_sym_cmd_identifier_token36] = ACTIONS(2599), + [aux_sym_cmd_identifier_token37] = ACTIONS(2599), + [aux_sym_cmd_identifier_token38] = ACTIONS(2597), + [aux_sym_cmd_identifier_token39] = ACTIONS(2599), + [aux_sym_cmd_identifier_token40] = ACTIONS(2599), + [anon_sym_def] = ACTIONS(2597), + [anon_sym_export_DASHenv] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_module] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_DOLLAR] = ACTIONS(2599), + [anon_sym_error] = ACTIONS(2597), + [anon_sym_DASH2] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_in2] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_make] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_do] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2597), + [anon_sym_catch] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_source] = ACTIONS(2597), + [anon_sym_source_DASHenv] = ACTIONS(2597), + [anon_sym_register] = ACTIONS(2597), + [anon_sym_hide] = ACTIONS(2597), + [anon_sym_hide_DASHenv] = ACTIONS(2597), + [anon_sym_overlay] = ACTIONS(2597), + [anon_sym_as] = ACTIONS(2597), + [anon_sym_PLUS2] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2599), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2599), + [aux_sym__val_number_decimal_token1] = ACTIONS(2597), + [aux_sym__val_number_decimal_token2] = ACTIONS(2599), + [aux_sym__val_number_decimal_token3] = ACTIONS(2599), + [aux_sym__val_number_decimal_token4] = ACTIONS(2599), + [aux_sym__val_number_token1] = ACTIONS(2599), + [aux_sym__val_number_token2] = ACTIONS(2599), + [aux_sym__val_number_token3] = ACTIONS(2599), + [aux_sym__val_number_token4] = ACTIONS(2597), + [aux_sym__val_number_token5] = ACTIONS(2597), + [aux_sym__val_number_token6] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2599), + [sym__str_single_quotes] = ACTIONS(2599), + [sym__str_back_ticks] = ACTIONS(2599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2599), + }, + [717] = { + [sym_comment] = STATE(717), + [anon_sym_export] = ACTIONS(2601), + [anon_sym_alias] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_let_DASHenv] = ACTIONS(2601), + [anon_sym_mut] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [aux_sym_cmd_identifier_token1] = ACTIONS(2601), + [aux_sym_cmd_identifier_token2] = ACTIONS(2603), + [aux_sym_cmd_identifier_token3] = ACTIONS(2603), + [aux_sym_cmd_identifier_token4] = ACTIONS(2603), + [aux_sym_cmd_identifier_token5] = ACTIONS(2603), + [aux_sym_cmd_identifier_token6] = ACTIONS(2603), + [aux_sym_cmd_identifier_token7] = ACTIONS(2603), + [aux_sym_cmd_identifier_token8] = ACTIONS(2601), + [aux_sym_cmd_identifier_token9] = ACTIONS(2601), + [aux_sym_cmd_identifier_token10] = ACTIONS(2603), + [aux_sym_cmd_identifier_token11] = ACTIONS(2603), + [aux_sym_cmd_identifier_token12] = ACTIONS(2601), + [aux_sym_cmd_identifier_token13] = ACTIONS(2601), + [aux_sym_cmd_identifier_token14] = ACTIONS(2601), + [aux_sym_cmd_identifier_token15] = ACTIONS(2601), + [aux_sym_cmd_identifier_token16] = ACTIONS(2603), + [aux_sym_cmd_identifier_token17] = ACTIONS(2603), + [aux_sym_cmd_identifier_token18] = ACTIONS(2603), + [aux_sym_cmd_identifier_token19] = ACTIONS(2603), + [aux_sym_cmd_identifier_token20] = ACTIONS(2603), + [aux_sym_cmd_identifier_token21] = ACTIONS(2603), + [aux_sym_cmd_identifier_token22] = ACTIONS(2603), + [aux_sym_cmd_identifier_token23] = ACTIONS(2603), + [aux_sym_cmd_identifier_token24] = ACTIONS(2603), + [aux_sym_cmd_identifier_token25] = ACTIONS(2603), + [aux_sym_cmd_identifier_token26] = ACTIONS(2603), + [aux_sym_cmd_identifier_token27] = ACTIONS(2603), + [aux_sym_cmd_identifier_token28] = ACTIONS(2603), + [aux_sym_cmd_identifier_token29] = ACTIONS(2603), + [aux_sym_cmd_identifier_token30] = ACTIONS(2603), + [aux_sym_cmd_identifier_token31] = ACTIONS(2603), + [aux_sym_cmd_identifier_token32] = ACTIONS(2603), + [aux_sym_cmd_identifier_token33] = ACTIONS(2603), + [aux_sym_cmd_identifier_token34] = ACTIONS(2601), + [aux_sym_cmd_identifier_token35] = ACTIONS(2603), + [aux_sym_cmd_identifier_token36] = ACTIONS(2603), + [aux_sym_cmd_identifier_token37] = ACTIONS(2603), + [aux_sym_cmd_identifier_token38] = ACTIONS(2601), + [aux_sym_cmd_identifier_token39] = ACTIONS(2603), + [aux_sym_cmd_identifier_token40] = ACTIONS(2603), + [anon_sym_def] = ACTIONS(2601), + [anon_sym_export_DASHenv] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_module] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_DOLLAR] = ACTIONS(2603), + [anon_sym_error] = ACTIONS(2601), + [anon_sym_DASH2] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_in2] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_make] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_do] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2601), + [anon_sym_catch] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_source] = ACTIONS(2601), + [anon_sym_source_DASHenv] = ACTIONS(2601), + [anon_sym_register] = ACTIONS(2601), + [anon_sym_hide] = ACTIONS(2601), + [anon_sym_hide_DASHenv] = ACTIONS(2601), + [anon_sym_overlay] = ACTIONS(2601), + [anon_sym_as] = ACTIONS(2601), + [anon_sym_PLUS2] = ACTIONS(2601), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2603), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2603), + [aux_sym__val_number_decimal_token1] = ACTIONS(2601), + [aux_sym__val_number_decimal_token2] = ACTIONS(2603), + [aux_sym__val_number_decimal_token3] = ACTIONS(2603), + [aux_sym__val_number_decimal_token4] = ACTIONS(2603), + [aux_sym__val_number_token1] = ACTIONS(2603), + [aux_sym__val_number_token2] = ACTIONS(2603), + [aux_sym__val_number_token3] = ACTIONS(2603), + [aux_sym__val_number_token4] = ACTIONS(2601), + [aux_sym__val_number_token5] = ACTIONS(2601), + [aux_sym__val_number_token6] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2603), + [sym__str_single_quotes] = ACTIONS(2603), + [sym__str_back_ticks] = ACTIONS(2603), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2603), + }, + [718] = { + [sym_comment] = STATE(718), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_alias] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_let_DASHenv] = ACTIONS(2551), + [anon_sym_mut] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [aux_sym_cmd_identifier_token1] = ACTIONS(2551), + [aux_sym_cmd_identifier_token2] = ACTIONS(2553), + [aux_sym_cmd_identifier_token3] = ACTIONS(2553), + [aux_sym_cmd_identifier_token4] = ACTIONS(2553), + [aux_sym_cmd_identifier_token5] = ACTIONS(2553), + [aux_sym_cmd_identifier_token6] = ACTIONS(2553), + [aux_sym_cmd_identifier_token7] = ACTIONS(2553), + [aux_sym_cmd_identifier_token8] = ACTIONS(2551), + [aux_sym_cmd_identifier_token9] = ACTIONS(2551), + [aux_sym_cmd_identifier_token10] = ACTIONS(2553), + [aux_sym_cmd_identifier_token11] = ACTIONS(2553), + [aux_sym_cmd_identifier_token12] = ACTIONS(2551), + [aux_sym_cmd_identifier_token13] = ACTIONS(2551), + [aux_sym_cmd_identifier_token14] = ACTIONS(2551), + [aux_sym_cmd_identifier_token15] = ACTIONS(2551), + [aux_sym_cmd_identifier_token16] = ACTIONS(2553), + [aux_sym_cmd_identifier_token17] = ACTIONS(2553), + [aux_sym_cmd_identifier_token18] = ACTIONS(2553), + [aux_sym_cmd_identifier_token19] = ACTIONS(2553), + [aux_sym_cmd_identifier_token20] = ACTIONS(2553), + [aux_sym_cmd_identifier_token21] = ACTIONS(2553), + [aux_sym_cmd_identifier_token22] = ACTIONS(2553), + [aux_sym_cmd_identifier_token23] = ACTIONS(2553), + [aux_sym_cmd_identifier_token24] = ACTIONS(2553), + [aux_sym_cmd_identifier_token25] = ACTIONS(2553), + [aux_sym_cmd_identifier_token26] = ACTIONS(2553), + [aux_sym_cmd_identifier_token27] = ACTIONS(2553), + [aux_sym_cmd_identifier_token28] = ACTIONS(2553), + [aux_sym_cmd_identifier_token29] = ACTIONS(2553), + [aux_sym_cmd_identifier_token30] = ACTIONS(2553), + [aux_sym_cmd_identifier_token31] = ACTIONS(2553), + [aux_sym_cmd_identifier_token32] = ACTIONS(2553), + [aux_sym_cmd_identifier_token33] = ACTIONS(2553), + [aux_sym_cmd_identifier_token34] = ACTIONS(2551), + [aux_sym_cmd_identifier_token35] = ACTIONS(2553), + [aux_sym_cmd_identifier_token36] = ACTIONS(2553), + [aux_sym_cmd_identifier_token37] = ACTIONS(2553), + [aux_sym_cmd_identifier_token38] = ACTIONS(2551), + [aux_sym_cmd_identifier_token39] = ACTIONS(2553), + [aux_sym_cmd_identifier_token40] = ACTIONS(2553), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_export_DASHenv] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_error] = ACTIONS(2551), + [anon_sym_DASH2] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_in2] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_make] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_source] = ACTIONS(2551), + [anon_sym_source_DASHenv] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_hide] = ACTIONS(2551), + [anon_sym_hide_DASHenv] = ACTIONS(2551), + [anon_sym_overlay] = ACTIONS(2551), + [anon_sym_as] = ACTIONS(2551), + [anon_sym_PLUS2] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2553), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2553), + [aux_sym__val_number_decimal_token1] = ACTIONS(2551), + [aux_sym__val_number_decimal_token2] = ACTIONS(2553), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2553), + [aux_sym__val_number_token1] = ACTIONS(2553), + [aux_sym__val_number_token2] = ACTIONS(2553), + [aux_sym__val_number_token3] = ACTIONS(2553), + [aux_sym__val_number_token4] = ACTIONS(2551), + [aux_sym__val_number_token5] = ACTIONS(2551), + [aux_sym__val_number_token6] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym__str_single_quotes] = ACTIONS(2553), + [sym__str_back_ticks] = ACTIONS(2553), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2553), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2553), + }, + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(2605), + [anon_sym_alias] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_let_DASHenv] = ACTIONS(2605), + [anon_sym_mut] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [aux_sym_cmd_identifier_token1] = ACTIONS(2605), + [aux_sym_cmd_identifier_token2] = ACTIONS(2607), + [aux_sym_cmd_identifier_token3] = ACTIONS(2607), + [aux_sym_cmd_identifier_token4] = ACTIONS(2607), + [aux_sym_cmd_identifier_token5] = ACTIONS(2607), + [aux_sym_cmd_identifier_token6] = ACTIONS(2607), + [aux_sym_cmd_identifier_token7] = ACTIONS(2607), + [aux_sym_cmd_identifier_token8] = ACTIONS(2605), + [aux_sym_cmd_identifier_token9] = ACTIONS(2605), + [aux_sym_cmd_identifier_token10] = ACTIONS(2607), + [aux_sym_cmd_identifier_token11] = ACTIONS(2607), + [aux_sym_cmd_identifier_token12] = ACTIONS(2605), + [aux_sym_cmd_identifier_token13] = ACTIONS(2605), + [aux_sym_cmd_identifier_token14] = ACTIONS(2605), + [aux_sym_cmd_identifier_token15] = ACTIONS(2605), + [aux_sym_cmd_identifier_token16] = ACTIONS(2607), + [aux_sym_cmd_identifier_token17] = ACTIONS(2607), + [aux_sym_cmd_identifier_token18] = ACTIONS(2607), + [aux_sym_cmd_identifier_token19] = ACTIONS(2607), + [aux_sym_cmd_identifier_token20] = ACTIONS(2607), + [aux_sym_cmd_identifier_token21] = ACTIONS(2607), + [aux_sym_cmd_identifier_token22] = ACTIONS(2607), + [aux_sym_cmd_identifier_token23] = ACTIONS(2607), + [aux_sym_cmd_identifier_token24] = ACTIONS(2607), + [aux_sym_cmd_identifier_token25] = ACTIONS(2607), + [aux_sym_cmd_identifier_token26] = ACTIONS(2607), + [aux_sym_cmd_identifier_token27] = ACTIONS(2607), + [aux_sym_cmd_identifier_token28] = ACTIONS(2607), + [aux_sym_cmd_identifier_token29] = ACTIONS(2607), + [aux_sym_cmd_identifier_token30] = ACTIONS(2607), + [aux_sym_cmd_identifier_token31] = ACTIONS(2607), + [aux_sym_cmd_identifier_token32] = ACTIONS(2607), + [aux_sym_cmd_identifier_token33] = ACTIONS(2607), + [aux_sym_cmd_identifier_token34] = ACTIONS(2605), + [aux_sym_cmd_identifier_token35] = ACTIONS(2607), + [aux_sym_cmd_identifier_token36] = ACTIONS(2607), + [aux_sym_cmd_identifier_token37] = ACTIONS(2607), + [aux_sym_cmd_identifier_token38] = ACTIONS(2605), + [aux_sym_cmd_identifier_token39] = ACTIONS(2607), + [aux_sym_cmd_identifier_token40] = ACTIONS(2607), + [anon_sym_def] = ACTIONS(2605), + [anon_sym_export_DASHenv] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_module] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_DOLLAR] = ACTIONS(2607), + [anon_sym_error] = ACTIONS(2605), + [anon_sym_DASH2] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_in2] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_make] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_do] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2605), + [anon_sym_catch] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_source] = ACTIONS(2605), + [anon_sym_source_DASHenv] = ACTIONS(2605), + [anon_sym_register] = ACTIONS(2605), + [anon_sym_hide] = ACTIONS(2605), + [anon_sym_hide_DASHenv] = ACTIONS(2605), + [anon_sym_overlay] = ACTIONS(2605), + [anon_sym_as] = ACTIONS(2605), + [anon_sym_PLUS2] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2607), + [aux_sym__val_number_decimal_token1] = ACTIONS(2605), + [aux_sym__val_number_decimal_token2] = ACTIONS(2607), + [aux_sym__val_number_decimal_token3] = ACTIONS(2607), + [aux_sym__val_number_decimal_token4] = ACTIONS(2607), + [aux_sym__val_number_token1] = ACTIONS(2607), + [aux_sym__val_number_token2] = ACTIONS(2607), + [aux_sym__val_number_token3] = ACTIONS(2607), + [aux_sym__val_number_token4] = ACTIONS(2605), + [aux_sym__val_number_token5] = ACTIONS(2605), + [aux_sym__val_number_token6] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2607), + [sym__str_single_quotes] = ACTIONS(2607), + [sym__str_back_ticks] = ACTIONS(2607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2607), + }, + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(2575), + [anon_sym_alias] = ACTIONS(2575), + [anon_sym_let] = ACTIONS(2575), + [anon_sym_let_DASHenv] = ACTIONS(2575), + [anon_sym_mut] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [aux_sym_cmd_identifier_token1] = ACTIONS(2575), + [aux_sym_cmd_identifier_token2] = ACTIONS(2577), + [aux_sym_cmd_identifier_token3] = ACTIONS(2577), + [aux_sym_cmd_identifier_token4] = ACTIONS(2577), + [aux_sym_cmd_identifier_token5] = ACTIONS(2577), + [aux_sym_cmd_identifier_token6] = ACTIONS(2577), + [aux_sym_cmd_identifier_token7] = ACTIONS(2577), + [aux_sym_cmd_identifier_token8] = ACTIONS(2575), + [aux_sym_cmd_identifier_token9] = ACTIONS(2575), + [aux_sym_cmd_identifier_token10] = ACTIONS(2577), + [aux_sym_cmd_identifier_token11] = ACTIONS(2577), + [aux_sym_cmd_identifier_token12] = ACTIONS(2575), + [aux_sym_cmd_identifier_token13] = ACTIONS(2575), + [aux_sym_cmd_identifier_token14] = ACTIONS(2575), + [aux_sym_cmd_identifier_token15] = ACTIONS(2575), + [aux_sym_cmd_identifier_token16] = ACTIONS(2577), + [aux_sym_cmd_identifier_token17] = ACTIONS(2577), + [aux_sym_cmd_identifier_token18] = ACTIONS(2577), + [aux_sym_cmd_identifier_token19] = ACTIONS(2577), + [aux_sym_cmd_identifier_token20] = ACTIONS(2577), + [aux_sym_cmd_identifier_token21] = ACTIONS(2577), + [aux_sym_cmd_identifier_token22] = ACTIONS(2577), + [aux_sym_cmd_identifier_token23] = ACTIONS(2577), + [aux_sym_cmd_identifier_token24] = ACTIONS(2577), + [aux_sym_cmd_identifier_token25] = ACTIONS(2577), + [aux_sym_cmd_identifier_token26] = ACTIONS(2577), + [aux_sym_cmd_identifier_token27] = ACTIONS(2577), + [aux_sym_cmd_identifier_token28] = ACTIONS(2577), + [aux_sym_cmd_identifier_token29] = ACTIONS(2577), + [aux_sym_cmd_identifier_token30] = ACTIONS(2577), + [aux_sym_cmd_identifier_token31] = ACTIONS(2577), + [aux_sym_cmd_identifier_token32] = ACTIONS(2577), + [aux_sym_cmd_identifier_token33] = ACTIONS(2577), + [aux_sym_cmd_identifier_token34] = ACTIONS(2575), + [aux_sym_cmd_identifier_token35] = ACTIONS(2577), + [aux_sym_cmd_identifier_token36] = ACTIONS(2577), + [aux_sym_cmd_identifier_token37] = ACTIONS(2577), + [aux_sym_cmd_identifier_token38] = ACTIONS(2575), + [aux_sym_cmd_identifier_token39] = ACTIONS(2577), + [aux_sym_cmd_identifier_token40] = ACTIONS(2577), + [anon_sym_def] = ACTIONS(2575), + [anon_sym_export_DASHenv] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym_module] = ACTIONS(2575), + [anon_sym_use] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2577), + [anon_sym_DOLLAR] = ACTIONS(2577), + [anon_sym_error] = ACTIONS(2575), + [anon_sym_DASH2] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_in2] = ACTIONS(2575), + [anon_sym_loop] = ACTIONS(2575), + [anon_sym_make] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_catch] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_source] = ACTIONS(2575), + [anon_sym_source_DASHenv] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_hide] = ACTIONS(2575), + [anon_sym_hide_DASHenv] = ACTIONS(2575), + [anon_sym_overlay] = ACTIONS(2575), + [anon_sym_as] = ACTIONS(2575), + [anon_sym_PLUS2] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2577), + [aux_sym__val_number_decimal_token1] = ACTIONS(2575), + [aux_sym__val_number_decimal_token2] = ACTIONS(2577), + [aux_sym__val_number_decimal_token3] = ACTIONS(2577), + [aux_sym__val_number_decimal_token4] = ACTIONS(2577), + [aux_sym__val_number_token1] = ACTIONS(2577), + [aux_sym__val_number_token2] = ACTIONS(2577), + [aux_sym__val_number_token3] = ACTIONS(2577), + [aux_sym__val_number_token4] = ACTIONS(2575), + [aux_sym__val_number_token5] = ACTIONS(2575), + [aux_sym__val_number_token6] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym__str_single_quotes] = ACTIONS(2577), + [sym__str_back_ticks] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2577), + }, + [721] = { + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1800), + [aux_sym_cmd_identifier_token3] = ACTIONS(1800), + [aux_sym_cmd_identifier_token4] = ACTIONS(1800), + [aux_sym_cmd_identifier_token5] = ACTIONS(1800), + [aux_sym_cmd_identifier_token6] = ACTIONS(1800), + [aux_sym_cmd_identifier_token7] = ACTIONS(1800), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1800), + [aux_sym_cmd_identifier_token11] = ACTIONS(1800), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1800), + [aux_sym_cmd_identifier_token17] = ACTIONS(1800), + [aux_sym_cmd_identifier_token18] = ACTIONS(1800), + [aux_sym_cmd_identifier_token19] = ACTIONS(1800), + [aux_sym_cmd_identifier_token20] = ACTIONS(1800), + [aux_sym_cmd_identifier_token21] = ACTIONS(1800), + [aux_sym_cmd_identifier_token22] = ACTIONS(1800), + [aux_sym_cmd_identifier_token23] = ACTIONS(1800), + [aux_sym_cmd_identifier_token24] = ACTIONS(1800), + [aux_sym_cmd_identifier_token25] = ACTIONS(1800), + [aux_sym_cmd_identifier_token26] = ACTIONS(1800), + [aux_sym_cmd_identifier_token27] = ACTIONS(1800), + [aux_sym_cmd_identifier_token28] = ACTIONS(1800), + [aux_sym_cmd_identifier_token29] = ACTIONS(1800), + [aux_sym_cmd_identifier_token30] = ACTIONS(1800), + [aux_sym_cmd_identifier_token31] = ACTIONS(1800), + [aux_sym_cmd_identifier_token32] = ACTIONS(1800), + [aux_sym_cmd_identifier_token33] = ACTIONS(1800), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1800), + [aux_sym_cmd_identifier_token36] = ACTIONS(1800), + [aux_sym_cmd_identifier_token37] = ACTIONS(1800), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1800), + [aux_sym_cmd_identifier_token40] = ACTIONS(1800), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1800), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), + }, + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(2579), + [anon_sym_alias] = ACTIONS(2579), + [anon_sym_let] = ACTIONS(2579), + [anon_sym_let_DASHenv] = ACTIONS(2579), + [anon_sym_mut] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [aux_sym_cmd_identifier_token1] = ACTIONS(2579), + [aux_sym_cmd_identifier_token2] = ACTIONS(2581), + [aux_sym_cmd_identifier_token3] = ACTIONS(2581), + [aux_sym_cmd_identifier_token4] = ACTIONS(2581), + [aux_sym_cmd_identifier_token5] = ACTIONS(2581), + [aux_sym_cmd_identifier_token6] = ACTIONS(2581), + [aux_sym_cmd_identifier_token7] = ACTIONS(2581), + [aux_sym_cmd_identifier_token8] = ACTIONS(2579), + [aux_sym_cmd_identifier_token9] = ACTIONS(2579), + [aux_sym_cmd_identifier_token10] = ACTIONS(2581), + [aux_sym_cmd_identifier_token11] = ACTIONS(2581), + [aux_sym_cmd_identifier_token12] = ACTIONS(2579), + [aux_sym_cmd_identifier_token13] = ACTIONS(2579), + [aux_sym_cmd_identifier_token14] = ACTIONS(2579), + [aux_sym_cmd_identifier_token15] = ACTIONS(2579), + [aux_sym_cmd_identifier_token16] = ACTIONS(2581), + [aux_sym_cmd_identifier_token17] = ACTIONS(2581), + [aux_sym_cmd_identifier_token18] = ACTIONS(2581), + [aux_sym_cmd_identifier_token19] = ACTIONS(2581), + [aux_sym_cmd_identifier_token20] = ACTIONS(2581), + [aux_sym_cmd_identifier_token21] = ACTIONS(2581), + [aux_sym_cmd_identifier_token22] = ACTIONS(2581), + [aux_sym_cmd_identifier_token23] = ACTIONS(2581), + [aux_sym_cmd_identifier_token24] = ACTIONS(2581), + [aux_sym_cmd_identifier_token25] = ACTIONS(2581), + [aux_sym_cmd_identifier_token26] = ACTIONS(2581), + [aux_sym_cmd_identifier_token27] = ACTIONS(2581), + [aux_sym_cmd_identifier_token28] = ACTIONS(2581), + [aux_sym_cmd_identifier_token29] = ACTIONS(2581), + [aux_sym_cmd_identifier_token30] = ACTIONS(2581), + [aux_sym_cmd_identifier_token31] = ACTIONS(2581), + [aux_sym_cmd_identifier_token32] = ACTIONS(2581), + [aux_sym_cmd_identifier_token33] = ACTIONS(2581), + [aux_sym_cmd_identifier_token34] = ACTIONS(2579), + [aux_sym_cmd_identifier_token35] = ACTIONS(2581), + [aux_sym_cmd_identifier_token36] = ACTIONS(2581), + [aux_sym_cmd_identifier_token37] = ACTIONS(2581), + [aux_sym_cmd_identifier_token38] = ACTIONS(2579), + [aux_sym_cmd_identifier_token39] = ACTIONS(2581), + [aux_sym_cmd_identifier_token40] = ACTIONS(2581), + [anon_sym_def] = ACTIONS(2579), + [anon_sym_export_DASHenv] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym_module] = ACTIONS(2579), + [anon_sym_use] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_DOLLAR] = ACTIONS(2581), + [anon_sym_error] = ACTIONS(2579), + [anon_sym_DASH2] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_in2] = ACTIONS(2579), + [anon_sym_loop] = ACTIONS(2579), + [anon_sym_make] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_catch] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_source] = ACTIONS(2579), + [anon_sym_source_DASHenv] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_hide] = ACTIONS(2579), + [anon_sym_hide_DASHenv] = ACTIONS(2579), + [anon_sym_overlay] = ACTIONS(2579), + [anon_sym_as] = ACTIONS(2579), + [anon_sym_PLUS2] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2581), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2581), + [aux_sym__val_number_decimal_token1] = ACTIONS(2579), + [aux_sym__val_number_decimal_token2] = ACTIONS(2581), + [aux_sym__val_number_decimal_token3] = ACTIONS(2581), + [aux_sym__val_number_decimal_token4] = ACTIONS(2581), + [aux_sym__val_number_token1] = ACTIONS(2581), + [aux_sym__val_number_token2] = ACTIONS(2581), + [aux_sym__val_number_token3] = ACTIONS(2581), + [aux_sym__val_number_token4] = ACTIONS(2579), + [aux_sym__val_number_token5] = ACTIONS(2579), + [aux_sym__val_number_token6] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym__str_single_quotes] = ACTIONS(2581), + [sym__str_back_ticks] = ACTIONS(2581), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2581), + }, + [724] = { + [sym_comment] = STATE(724), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [725] = { + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(2583), + [anon_sym_alias] = ACTIONS(2583), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_let_DASHenv] = ACTIONS(2583), + [anon_sym_mut] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [aux_sym_cmd_identifier_token1] = ACTIONS(2583), + [aux_sym_cmd_identifier_token2] = ACTIONS(2585), + [aux_sym_cmd_identifier_token3] = ACTIONS(2585), + [aux_sym_cmd_identifier_token4] = ACTIONS(2585), + [aux_sym_cmd_identifier_token5] = ACTIONS(2585), + [aux_sym_cmd_identifier_token6] = ACTIONS(2585), + [aux_sym_cmd_identifier_token7] = ACTIONS(2585), + [aux_sym_cmd_identifier_token8] = ACTIONS(2583), + [aux_sym_cmd_identifier_token9] = ACTIONS(2583), + [aux_sym_cmd_identifier_token10] = ACTIONS(2585), + [aux_sym_cmd_identifier_token11] = ACTIONS(2585), + [aux_sym_cmd_identifier_token12] = ACTIONS(2583), + [aux_sym_cmd_identifier_token13] = ACTIONS(2583), + [aux_sym_cmd_identifier_token14] = ACTIONS(2583), + [aux_sym_cmd_identifier_token15] = ACTIONS(2583), + [aux_sym_cmd_identifier_token16] = ACTIONS(2585), + [aux_sym_cmd_identifier_token17] = ACTIONS(2585), + [aux_sym_cmd_identifier_token18] = ACTIONS(2585), + [aux_sym_cmd_identifier_token19] = ACTIONS(2585), + [aux_sym_cmd_identifier_token20] = ACTIONS(2585), + [aux_sym_cmd_identifier_token21] = ACTIONS(2585), + [aux_sym_cmd_identifier_token22] = ACTIONS(2585), + [aux_sym_cmd_identifier_token23] = ACTIONS(2585), + [aux_sym_cmd_identifier_token24] = ACTIONS(2585), + [aux_sym_cmd_identifier_token25] = ACTIONS(2585), + [aux_sym_cmd_identifier_token26] = ACTIONS(2585), + [aux_sym_cmd_identifier_token27] = ACTIONS(2585), + [aux_sym_cmd_identifier_token28] = ACTIONS(2585), + [aux_sym_cmd_identifier_token29] = ACTIONS(2585), + [aux_sym_cmd_identifier_token30] = ACTIONS(2585), + [aux_sym_cmd_identifier_token31] = ACTIONS(2585), + [aux_sym_cmd_identifier_token32] = ACTIONS(2585), + [aux_sym_cmd_identifier_token33] = ACTIONS(2585), + [aux_sym_cmd_identifier_token34] = ACTIONS(2583), + [aux_sym_cmd_identifier_token35] = ACTIONS(2585), + [aux_sym_cmd_identifier_token36] = ACTIONS(2585), + [aux_sym_cmd_identifier_token37] = ACTIONS(2585), + [aux_sym_cmd_identifier_token38] = ACTIONS(2583), + [aux_sym_cmd_identifier_token39] = ACTIONS(2585), + [aux_sym_cmd_identifier_token40] = ACTIONS(2585), + [anon_sym_def] = ACTIONS(2583), + [anon_sym_export_DASHenv] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_module] = ACTIONS(2583), + [anon_sym_use] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_DOLLAR] = ACTIONS(2585), + [anon_sym_error] = ACTIONS(2583), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_in2] = ACTIONS(2583), + [anon_sym_loop] = ACTIONS(2583), + [anon_sym_make] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_catch] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_source] = ACTIONS(2583), + [anon_sym_source_DASHenv] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_hide] = ACTIONS(2583), + [anon_sym_hide_DASHenv] = ACTIONS(2583), + [anon_sym_overlay] = ACTIONS(2583), + [anon_sym_as] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2585), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2585), + [aux_sym__val_number_decimal_token1] = ACTIONS(2583), + [aux_sym__val_number_decimal_token2] = ACTIONS(2585), + [aux_sym__val_number_decimal_token3] = ACTIONS(2585), + [aux_sym__val_number_decimal_token4] = ACTIONS(2585), + [aux_sym__val_number_token1] = ACTIONS(2585), + [aux_sym__val_number_token2] = ACTIONS(2585), + [aux_sym__val_number_token3] = ACTIONS(2585), + [aux_sym__val_number_token4] = ACTIONS(2583), + [aux_sym__val_number_token5] = ACTIONS(2583), + [aux_sym__val_number_token6] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym__str_single_quotes] = ACTIONS(2585), + [sym__str_back_ticks] = ACTIONS(2585), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2585), + }, + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(2609), + [anon_sym_alias] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_let_DASHenv] = ACTIONS(2609), + [anon_sym_mut] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [aux_sym_cmd_identifier_token1] = ACTIONS(2609), + [aux_sym_cmd_identifier_token2] = ACTIONS(2611), + [aux_sym_cmd_identifier_token3] = ACTIONS(2611), + [aux_sym_cmd_identifier_token4] = ACTIONS(2611), + [aux_sym_cmd_identifier_token5] = ACTIONS(2611), + [aux_sym_cmd_identifier_token6] = ACTIONS(2611), + [aux_sym_cmd_identifier_token7] = ACTIONS(2611), + [aux_sym_cmd_identifier_token8] = ACTIONS(2609), + [aux_sym_cmd_identifier_token9] = ACTIONS(2609), + [aux_sym_cmd_identifier_token10] = ACTIONS(2611), + [aux_sym_cmd_identifier_token11] = ACTIONS(2611), + [aux_sym_cmd_identifier_token12] = ACTIONS(2609), + [aux_sym_cmd_identifier_token13] = ACTIONS(2609), + [aux_sym_cmd_identifier_token14] = ACTIONS(2609), + [aux_sym_cmd_identifier_token15] = ACTIONS(2609), + [aux_sym_cmd_identifier_token16] = ACTIONS(2611), + [aux_sym_cmd_identifier_token17] = ACTIONS(2611), + [aux_sym_cmd_identifier_token18] = ACTIONS(2611), + [aux_sym_cmd_identifier_token19] = ACTIONS(2611), + [aux_sym_cmd_identifier_token20] = ACTIONS(2611), + [aux_sym_cmd_identifier_token21] = ACTIONS(2611), + [aux_sym_cmd_identifier_token22] = ACTIONS(2611), + [aux_sym_cmd_identifier_token23] = ACTIONS(2611), + [aux_sym_cmd_identifier_token24] = ACTIONS(2611), + [aux_sym_cmd_identifier_token25] = ACTIONS(2611), + [aux_sym_cmd_identifier_token26] = ACTIONS(2611), + [aux_sym_cmd_identifier_token27] = ACTIONS(2611), + [aux_sym_cmd_identifier_token28] = ACTIONS(2611), + [aux_sym_cmd_identifier_token29] = ACTIONS(2611), + [aux_sym_cmd_identifier_token30] = ACTIONS(2611), + [aux_sym_cmd_identifier_token31] = ACTIONS(2611), + [aux_sym_cmd_identifier_token32] = ACTIONS(2611), + [aux_sym_cmd_identifier_token33] = ACTIONS(2611), + [aux_sym_cmd_identifier_token34] = ACTIONS(2609), + [aux_sym_cmd_identifier_token35] = ACTIONS(2611), + [aux_sym_cmd_identifier_token36] = ACTIONS(2611), + [aux_sym_cmd_identifier_token37] = ACTIONS(2611), + [aux_sym_cmd_identifier_token38] = ACTIONS(2609), + [aux_sym_cmd_identifier_token39] = ACTIONS(2611), + [aux_sym_cmd_identifier_token40] = ACTIONS(2611), + [anon_sym_def] = ACTIONS(2609), + [anon_sym_export_DASHenv] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_module] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2611), + [anon_sym_error] = ACTIONS(2609), + [anon_sym_DASH2] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_in2] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_make] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_catch] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_source] = ACTIONS(2609), + [anon_sym_source_DASHenv] = ACTIONS(2609), + [anon_sym_register] = ACTIONS(2609), + [anon_sym_hide] = ACTIONS(2609), + [anon_sym_hide_DASHenv] = ACTIONS(2609), + [anon_sym_overlay] = ACTIONS(2609), + [anon_sym_as] = ACTIONS(2609), + [anon_sym_PLUS2] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2611), + [aux_sym__val_number_decimal_token1] = ACTIONS(2609), + [aux_sym__val_number_decimal_token2] = ACTIONS(2611), + [aux_sym__val_number_decimal_token3] = ACTIONS(2611), + [aux_sym__val_number_decimal_token4] = ACTIONS(2611), + [aux_sym__val_number_token1] = ACTIONS(2611), + [aux_sym__val_number_token2] = ACTIONS(2611), + [aux_sym__val_number_token3] = ACTIONS(2611), + [aux_sym__val_number_token4] = ACTIONS(2609), + [aux_sym__val_number_token5] = ACTIONS(2609), + [aux_sym__val_number_token6] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2611), + [sym__str_single_quotes] = ACTIONS(2611), + [sym__str_back_ticks] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2611), + }, + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_alias] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_let_DASHenv] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [aux_sym_cmd_identifier_token1] = ACTIONS(2185), + [aux_sym_cmd_identifier_token2] = ACTIONS(2191), + [aux_sym_cmd_identifier_token3] = ACTIONS(2191), + [aux_sym_cmd_identifier_token4] = ACTIONS(2191), + [aux_sym_cmd_identifier_token5] = ACTIONS(2191), + [aux_sym_cmd_identifier_token6] = ACTIONS(2191), + [aux_sym_cmd_identifier_token7] = ACTIONS(2191), + [aux_sym_cmd_identifier_token8] = ACTIONS(2185), + [aux_sym_cmd_identifier_token9] = ACTIONS(2185), + [aux_sym_cmd_identifier_token10] = ACTIONS(2191), + [aux_sym_cmd_identifier_token11] = ACTIONS(2191), + [aux_sym_cmd_identifier_token12] = ACTIONS(2185), + [aux_sym_cmd_identifier_token13] = ACTIONS(2185), + [aux_sym_cmd_identifier_token14] = ACTIONS(2185), + [aux_sym_cmd_identifier_token15] = ACTIONS(2185), + [aux_sym_cmd_identifier_token16] = ACTIONS(2191), + [aux_sym_cmd_identifier_token17] = ACTIONS(2191), + [aux_sym_cmd_identifier_token18] = ACTIONS(2191), + [aux_sym_cmd_identifier_token19] = ACTIONS(2191), + [aux_sym_cmd_identifier_token20] = ACTIONS(2191), + [aux_sym_cmd_identifier_token21] = ACTIONS(2191), + [aux_sym_cmd_identifier_token22] = ACTIONS(2191), + [aux_sym_cmd_identifier_token23] = ACTIONS(2191), + [aux_sym_cmd_identifier_token24] = ACTIONS(2191), + [aux_sym_cmd_identifier_token25] = ACTIONS(2191), + [aux_sym_cmd_identifier_token26] = ACTIONS(2191), + [aux_sym_cmd_identifier_token27] = ACTIONS(2191), + [aux_sym_cmd_identifier_token28] = ACTIONS(2191), + [aux_sym_cmd_identifier_token29] = ACTIONS(2191), + [aux_sym_cmd_identifier_token30] = ACTIONS(2191), + [aux_sym_cmd_identifier_token31] = ACTIONS(2191), + [aux_sym_cmd_identifier_token32] = ACTIONS(2191), + [aux_sym_cmd_identifier_token33] = ACTIONS(2191), + [aux_sym_cmd_identifier_token34] = ACTIONS(2185), + [aux_sym_cmd_identifier_token35] = ACTIONS(2191), + [aux_sym_cmd_identifier_token36] = ACTIONS(2191), + [aux_sym_cmd_identifier_token37] = ACTIONS(2191), + [aux_sym_cmd_identifier_token38] = ACTIONS(2185), + [aux_sym_cmd_identifier_token39] = ACTIONS(2191), + [aux_sym_cmd_identifier_token40] = ACTIONS(2191), + [anon_sym_def] = ACTIONS(2185), + [anon_sym_export_DASHenv] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_error] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_in2] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_make] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_do] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2185), + [anon_sym_catch] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_source] = ACTIONS(2185), + [anon_sym_source_DASHenv] = ACTIONS(2185), + [anon_sym_register] = ACTIONS(2185), + [anon_sym_hide] = ACTIONS(2185), + [anon_sym_hide_DASHenv] = ACTIONS(2185), + [anon_sym_overlay] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_PLUS2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2191), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2191), + [aux_sym__val_number_decimal_token3] = ACTIONS(2191), + [aux_sym__val_number_decimal_token4] = ACTIONS(2191), + [aux_sym__val_number_token1] = ACTIONS(2191), + [aux_sym__val_number_token2] = ACTIONS(2191), + [aux_sym__val_number_token3] = ACTIONS(2191), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2191), + [sym__str_single_quotes] = ACTIONS(2191), + [sym__str_back_ticks] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2191), + }, + [728] = { + [sym_comment] = STATE(728), + [anon_sym_export] = ACTIONS(2587), + [anon_sym_alias] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_let_DASHenv] = ACTIONS(2587), + [anon_sym_mut] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [aux_sym_cmd_identifier_token1] = ACTIONS(2587), + [aux_sym_cmd_identifier_token2] = ACTIONS(2589), + [aux_sym_cmd_identifier_token3] = ACTIONS(2589), + [aux_sym_cmd_identifier_token4] = ACTIONS(2589), + [aux_sym_cmd_identifier_token5] = ACTIONS(2589), + [aux_sym_cmd_identifier_token6] = ACTIONS(2589), + [aux_sym_cmd_identifier_token7] = ACTIONS(2589), + [aux_sym_cmd_identifier_token8] = ACTIONS(2587), + [aux_sym_cmd_identifier_token9] = ACTIONS(2587), + [aux_sym_cmd_identifier_token10] = ACTIONS(2589), + [aux_sym_cmd_identifier_token11] = ACTIONS(2589), + [aux_sym_cmd_identifier_token12] = ACTIONS(2587), + [aux_sym_cmd_identifier_token13] = ACTIONS(2587), + [aux_sym_cmd_identifier_token14] = ACTIONS(2587), + [aux_sym_cmd_identifier_token15] = ACTIONS(2587), + [aux_sym_cmd_identifier_token16] = ACTIONS(2589), + [aux_sym_cmd_identifier_token17] = ACTIONS(2589), + [aux_sym_cmd_identifier_token18] = ACTIONS(2589), + [aux_sym_cmd_identifier_token19] = ACTIONS(2589), + [aux_sym_cmd_identifier_token20] = ACTIONS(2589), + [aux_sym_cmd_identifier_token21] = ACTIONS(2589), + [aux_sym_cmd_identifier_token22] = ACTIONS(2589), + [aux_sym_cmd_identifier_token23] = ACTIONS(2589), + [aux_sym_cmd_identifier_token24] = ACTIONS(2589), + [aux_sym_cmd_identifier_token25] = ACTIONS(2589), + [aux_sym_cmd_identifier_token26] = ACTIONS(2589), + [aux_sym_cmd_identifier_token27] = ACTIONS(2589), + [aux_sym_cmd_identifier_token28] = ACTIONS(2589), + [aux_sym_cmd_identifier_token29] = ACTIONS(2589), + [aux_sym_cmd_identifier_token30] = ACTIONS(2589), + [aux_sym_cmd_identifier_token31] = ACTIONS(2589), + [aux_sym_cmd_identifier_token32] = ACTIONS(2589), + [aux_sym_cmd_identifier_token33] = ACTIONS(2589), + [aux_sym_cmd_identifier_token34] = ACTIONS(2587), + [aux_sym_cmd_identifier_token35] = ACTIONS(2589), + [aux_sym_cmd_identifier_token36] = ACTIONS(2589), + [aux_sym_cmd_identifier_token37] = ACTIONS(2589), + [aux_sym_cmd_identifier_token38] = ACTIONS(2587), + [aux_sym_cmd_identifier_token39] = ACTIONS(2589), + [aux_sym_cmd_identifier_token40] = ACTIONS(2589), + [anon_sym_def] = ACTIONS(2587), + [anon_sym_export_DASHenv] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_use] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_error] = ACTIONS(2587), + [anon_sym_DASH2] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_in2] = ACTIONS(2587), + [anon_sym_loop] = ACTIONS(2587), + [anon_sym_make] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_catch] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_source] = ACTIONS(2587), + [anon_sym_source_DASHenv] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_hide] = ACTIONS(2587), + [anon_sym_hide_DASHenv] = ACTIONS(2587), + [anon_sym_overlay] = ACTIONS(2587), + [anon_sym_as] = ACTIONS(2587), + [anon_sym_PLUS2] = ACTIONS(2587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2589), + [aux_sym__val_number_decimal_token1] = ACTIONS(2587), + [aux_sym__val_number_decimal_token2] = ACTIONS(2589), + [aux_sym__val_number_decimal_token3] = ACTIONS(2589), + [aux_sym__val_number_decimal_token4] = ACTIONS(2589), + [aux_sym__val_number_token1] = ACTIONS(2589), + [aux_sym__val_number_token2] = ACTIONS(2589), + [aux_sym__val_number_token3] = ACTIONS(2589), + [aux_sym__val_number_token4] = ACTIONS(2587), + [aux_sym__val_number_token5] = ACTIONS(2587), + [aux_sym__val_number_token6] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym__str_single_quotes] = ACTIONS(2589), + [sym__str_back_ticks] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2589), + }, + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2217), + [aux_sym_cmd_identifier_token3] = ACTIONS(2217), + [aux_sym_cmd_identifier_token4] = ACTIONS(2217), + [aux_sym_cmd_identifier_token5] = ACTIONS(2217), + [aux_sym_cmd_identifier_token6] = ACTIONS(2217), + [aux_sym_cmd_identifier_token7] = ACTIONS(2217), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2217), + [aux_sym_cmd_identifier_token11] = ACTIONS(2217), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2217), + [aux_sym_cmd_identifier_token17] = ACTIONS(2217), + [aux_sym_cmd_identifier_token18] = ACTIONS(2217), + [aux_sym_cmd_identifier_token19] = ACTIONS(2217), + [aux_sym_cmd_identifier_token20] = ACTIONS(2217), + [aux_sym_cmd_identifier_token21] = ACTIONS(2217), + [aux_sym_cmd_identifier_token22] = ACTIONS(2217), + [aux_sym_cmd_identifier_token23] = ACTIONS(2217), + [aux_sym_cmd_identifier_token24] = ACTIONS(2217), + [aux_sym_cmd_identifier_token25] = ACTIONS(2217), + [aux_sym_cmd_identifier_token26] = ACTIONS(2217), + [aux_sym_cmd_identifier_token27] = ACTIONS(2217), + [aux_sym_cmd_identifier_token28] = ACTIONS(2217), + [aux_sym_cmd_identifier_token29] = ACTIONS(2217), + [aux_sym_cmd_identifier_token30] = ACTIONS(2217), + [aux_sym_cmd_identifier_token31] = ACTIONS(2217), + [aux_sym_cmd_identifier_token32] = ACTIONS(2217), + [aux_sym_cmd_identifier_token33] = ACTIONS(2217), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2217), + [aux_sym_cmd_identifier_token36] = ACTIONS(2217), + [aux_sym_cmd_identifier_token37] = ACTIONS(2217), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2217), + [aux_sym_cmd_identifier_token40] = ACTIONS(2217), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2217), + }, + [730] = { + [sym_comment] = STATE(730), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_alias] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_let_DASHenv] = ACTIONS(2219), + [anon_sym_mut] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [aux_sym_cmd_identifier_token1] = ACTIONS(2219), + [aux_sym_cmd_identifier_token2] = ACTIONS(2221), + [aux_sym_cmd_identifier_token3] = ACTIONS(2221), + [aux_sym_cmd_identifier_token4] = ACTIONS(2221), + [aux_sym_cmd_identifier_token5] = ACTIONS(2221), + [aux_sym_cmd_identifier_token6] = ACTIONS(2221), + [aux_sym_cmd_identifier_token7] = ACTIONS(2221), + [aux_sym_cmd_identifier_token8] = ACTIONS(2219), + [aux_sym_cmd_identifier_token9] = ACTIONS(2219), + [aux_sym_cmd_identifier_token10] = ACTIONS(2221), + [aux_sym_cmd_identifier_token11] = ACTIONS(2221), + [aux_sym_cmd_identifier_token12] = ACTIONS(2219), + [aux_sym_cmd_identifier_token13] = ACTIONS(2219), + [aux_sym_cmd_identifier_token14] = ACTIONS(2219), + [aux_sym_cmd_identifier_token15] = ACTIONS(2219), + [aux_sym_cmd_identifier_token16] = ACTIONS(2221), + [aux_sym_cmd_identifier_token17] = ACTIONS(2221), + [aux_sym_cmd_identifier_token18] = ACTIONS(2221), + [aux_sym_cmd_identifier_token19] = ACTIONS(2221), + [aux_sym_cmd_identifier_token20] = ACTIONS(2221), + [aux_sym_cmd_identifier_token21] = ACTIONS(2221), + [aux_sym_cmd_identifier_token22] = ACTIONS(2221), + [aux_sym_cmd_identifier_token23] = ACTIONS(2221), + [aux_sym_cmd_identifier_token24] = ACTIONS(2221), + [aux_sym_cmd_identifier_token25] = ACTIONS(2221), + [aux_sym_cmd_identifier_token26] = ACTIONS(2221), + [aux_sym_cmd_identifier_token27] = ACTIONS(2221), + [aux_sym_cmd_identifier_token28] = ACTIONS(2221), + [aux_sym_cmd_identifier_token29] = ACTIONS(2221), + [aux_sym_cmd_identifier_token30] = ACTIONS(2221), + [aux_sym_cmd_identifier_token31] = ACTIONS(2221), + [aux_sym_cmd_identifier_token32] = ACTIONS(2221), + [aux_sym_cmd_identifier_token33] = ACTIONS(2221), + [aux_sym_cmd_identifier_token34] = ACTIONS(2219), + [aux_sym_cmd_identifier_token35] = ACTIONS(2221), + [aux_sym_cmd_identifier_token36] = ACTIONS(2221), + [aux_sym_cmd_identifier_token37] = ACTIONS(2221), + [aux_sym_cmd_identifier_token38] = ACTIONS(2219), + [aux_sym_cmd_identifier_token39] = ACTIONS(2221), + [aux_sym_cmd_identifier_token40] = ACTIONS(2221), + [anon_sym_def] = ACTIONS(2219), + [anon_sym_export_DASHenv] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_error] = ACTIONS(2219), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_in2] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_make] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_catch] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_source] = ACTIONS(2219), + [anon_sym_source_DASHenv] = ACTIONS(2219), + [anon_sym_register] = ACTIONS(2219), + [anon_sym_hide] = ACTIONS(2219), + [anon_sym_hide_DASHenv] = ACTIONS(2219), + [anon_sym_overlay] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_PLUS2] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2221), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2221), + [aux_sym__val_number_decimal_token3] = ACTIONS(2221), + [aux_sym__val_number_decimal_token4] = ACTIONS(2221), + [aux_sym__val_number_token1] = ACTIONS(2221), + [aux_sym__val_number_token2] = ACTIONS(2221), + [aux_sym__val_number_token3] = ACTIONS(2221), + [aux_sym__val_number_token4] = ACTIONS(2219), + [aux_sym__val_number_token5] = ACTIONS(2219), + [aux_sym__val_number_token6] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2221), + }, + [731] = { + [sym_comment] = STATE(731), + [anon_sym_export] = ACTIONS(2006), + [anon_sym_alias] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_let_DASHenv] = ACTIONS(2006), + [anon_sym_mut] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [aux_sym_cmd_identifier_token1] = ACTIONS(2006), + [aux_sym_cmd_identifier_token2] = ACTIONS(2008), + [aux_sym_cmd_identifier_token3] = ACTIONS(2008), + [aux_sym_cmd_identifier_token4] = ACTIONS(2008), + [aux_sym_cmd_identifier_token5] = ACTIONS(2008), + [aux_sym_cmd_identifier_token6] = ACTIONS(2008), + [aux_sym_cmd_identifier_token7] = ACTIONS(2008), + [aux_sym_cmd_identifier_token8] = ACTIONS(2006), + [aux_sym_cmd_identifier_token9] = ACTIONS(2006), + [aux_sym_cmd_identifier_token10] = ACTIONS(2008), + [aux_sym_cmd_identifier_token11] = ACTIONS(2008), + [aux_sym_cmd_identifier_token12] = ACTIONS(2006), + [aux_sym_cmd_identifier_token13] = ACTIONS(2006), + [aux_sym_cmd_identifier_token14] = ACTIONS(2006), + [aux_sym_cmd_identifier_token15] = ACTIONS(2006), + [aux_sym_cmd_identifier_token16] = ACTIONS(2008), + [aux_sym_cmd_identifier_token17] = ACTIONS(2008), + [aux_sym_cmd_identifier_token18] = ACTIONS(2008), + [aux_sym_cmd_identifier_token19] = ACTIONS(2008), + [aux_sym_cmd_identifier_token20] = ACTIONS(2008), + [aux_sym_cmd_identifier_token21] = ACTIONS(2008), + [aux_sym_cmd_identifier_token22] = ACTIONS(2008), + [aux_sym_cmd_identifier_token23] = ACTIONS(2008), + [aux_sym_cmd_identifier_token24] = ACTIONS(2008), + [aux_sym_cmd_identifier_token25] = ACTIONS(2008), + [aux_sym_cmd_identifier_token26] = ACTIONS(2008), + [aux_sym_cmd_identifier_token27] = ACTIONS(2008), + [aux_sym_cmd_identifier_token28] = ACTIONS(2008), + [aux_sym_cmd_identifier_token29] = ACTIONS(2008), + [aux_sym_cmd_identifier_token30] = ACTIONS(2008), + [aux_sym_cmd_identifier_token31] = ACTIONS(2008), + [aux_sym_cmd_identifier_token32] = ACTIONS(2008), + [aux_sym_cmd_identifier_token33] = ACTIONS(2008), + [aux_sym_cmd_identifier_token34] = ACTIONS(2006), + [aux_sym_cmd_identifier_token35] = ACTIONS(2008), + [aux_sym_cmd_identifier_token36] = ACTIONS(2008), + [aux_sym_cmd_identifier_token37] = ACTIONS(2008), + [aux_sym_cmd_identifier_token38] = ACTIONS(2006), + [aux_sym_cmd_identifier_token39] = ACTIONS(2008), + [aux_sym_cmd_identifier_token40] = ACTIONS(2008), + [anon_sym_def] = ACTIONS(2006), + [anon_sym_export_DASHenv] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_module] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_error] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_in2] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_make] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_do] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2006), + [anon_sym_catch] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_source] = ACTIONS(2006), + [anon_sym_source_DASHenv] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2006), + [anon_sym_hide] = ACTIONS(2006), + [anon_sym_hide_DASHenv] = ACTIONS(2006), + [anon_sym_overlay] = ACTIONS(2006), + [anon_sym_as] = ACTIONS(2006), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2008), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2008), + [aux_sym__val_number_token2] = ACTIONS(2008), + [aux_sym__val_number_token3] = ACTIONS(2008), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2008), + [sym__str_single_quotes] = ACTIONS(2008), + [sym__str_back_ticks] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2008), + }, + [732] = { + [sym_comment] = STATE(732), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_alias] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_let_DASHenv] = ACTIONS(2524), + [anon_sym_mut] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [aux_sym_cmd_identifier_token1] = ACTIONS(2524), + [aux_sym_cmd_identifier_token2] = ACTIONS(2526), + [aux_sym_cmd_identifier_token3] = ACTIONS(2526), + [aux_sym_cmd_identifier_token4] = ACTIONS(2526), + [aux_sym_cmd_identifier_token5] = ACTIONS(2526), + [aux_sym_cmd_identifier_token6] = ACTIONS(2526), + [aux_sym_cmd_identifier_token7] = ACTIONS(2526), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2524), + [aux_sym_cmd_identifier_token10] = ACTIONS(2526), + [aux_sym_cmd_identifier_token11] = ACTIONS(2526), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2524), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2524), + [aux_sym_cmd_identifier_token16] = ACTIONS(2526), + [aux_sym_cmd_identifier_token17] = ACTIONS(2526), + [aux_sym_cmd_identifier_token18] = ACTIONS(2526), + [aux_sym_cmd_identifier_token19] = ACTIONS(2526), + [aux_sym_cmd_identifier_token20] = ACTIONS(2526), + [aux_sym_cmd_identifier_token21] = ACTIONS(2526), + [aux_sym_cmd_identifier_token22] = ACTIONS(2526), + [aux_sym_cmd_identifier_token23] = ACTIONS(2526), + [aux_sym_cmd_identifier_token24] = ACTIONS(2526), + [aux_sym_cmd_identifier_token25] = ACTIONS(2526), + [aux_sym_cmd_identifier_token26] = ACTIONS(2526), + [aux_sym_cmd_identifier_token27] = ACTIONS(2526), + [aux_sym_cmd_identifier_token28] = ACTIONS(2526), + [aux_sym_cmd_identifier_token29] = ACTIONS(2526), + [aux_sym_cmd_identifier_token30] = ACTIONS(2526), + [aux_sym_cmd_identifier_token31] = ACTIONS(2526), + [aux_sym_cmd_identifier_token32] = ACTIONS(2526), + [aux_sym_cmd_identifier_token33] = ACTIONS(2526), + [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token35] = ACTIONS(2526), + [aux_sym_cmd_identifier_token36] = ACTIONS(2526), + [aux_sym_cmd_identifier_token37] = ACTIONS(2526), + [aux_sym_cmd_identifier_token38] = ACTIONS(2524), + [aux_sym_cmd_identifier_token39] = ACTIONS(2526), + [aux_sym_cmd_identifier_token40] = ACTIONS(2526), + [anon_sym_def] = ACTIONS(2524), + [anon_sym_export_DASHenv] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2526), + [anon_sym_error] = ACTIONS(2524), + [anon_sym_DASH2] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in2] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_make] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_source] = ACTIONS(2524), + [anon_sym_source_DASHenv] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_hide] = ACTIONS(2524), + [anon_sym_hide_DASHenv] = ACTIONS(2524), + [anon_sym_overlay] = ACTIONS(2524), + [anon_sym_as] = ACTIONS(2524), + [anon_sym_PLUS2] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2526), + [aux_sym__val_number_decimal_token1] = ACTIONS(2524), + [aux_sym__val_number_decimal_token2] = ACTIONS(2526), + [aux_sym__val_number_decimal_token3] = ACTIONS(2526), + [aux_sym__val_number_decimal_token4] = ACTIONS(2526), + [aux_sym__val_number_token1] = ACTIONS(2526), + [aux_sym__val_number_token2] = ACTIONS(2526), + [aux_sym__val_number_token3] = ACTIONS(2526), + [aux_sym__val_number_token4] = ACTIONS(2524), + [aux_sym__val_number_token5] = ACTIONS(2524), + [aux_sym__val_number_token6] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2526), + [sym__str_single_quotes] = ACTIONS(2526), + [sym__str_back_ticks] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2526), + }, + [733] = { + [sym_comment] = STATE(733), + [anon_sym_export] = ACTIONS(2635), + [anon_sym_alias] = ACTIONS(2635), + [anon_sym_let] = ACTIONS(2635), + [anon_sym_let_DASHenv] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [aux_sym_cmd_identifier_token1] = ACTIONS(2635), + [aux_sym_cmd_identifier_token2] = ACTIONS(2637), + [aux_sym_cmd_identifier_token3] = ACTIONS(2637), + [aux_sym_cmd_identifier_token4] = ACTIONS(2637), + [aux_sym_cmd_identifier_token5] = ACTIONS(2637), + [aux_sym_cmd_identifier_token6] = ACTIONS(2637), + [aux_sym_cmd_identifier_token7] = ACTIONS(2637), + [aux_sym_cmd_identifier_token8] = ACTIONS(2635), + [aux_sym_cmd_identifier_token9] = ACTIONS(2635), + [aux_sym_cmd_identifier_token10] = ACTIONS(2637), + [aux_sym_cmd_identifier_token11] = ACTIONS(2637), + [aux_sym_cmd_identifier_token12] = ACTIONS(2635), + [aux_sym_cmd_identifier_token13] = ACTIONS(2635), + [aux_sym_cmd_identifier_token14] = ACTIONS(2635), + [aux_sym_cmd_identifier_token15] = ACTIONS(2635), + [aux_sym_cmd_identifier_token16] = ACTIONS(2637), + [aux_sym_cmd_identifier_token17] = ACTIONS(2637), + [aux_sym_cmd_identifier_token18] = ACTIONS(2637), + [aux_sym_cmd_identifier_token19] = ACTIONS(2637), + [aux_sym_cmd_identifier_token20] = ACTIONS(2637), + [aux_sym_cmd_identifier_token21] = ACTIONS(2637), + [aux_sym_cmd_identifier_token22] = ACTIONS(2637), + [aux_sym_cmd_identifier_token23] = ACTIONS(2637), + [aux_sym_cmd_identifier_token24] = ACTIONS(2637), + [aux_sym_cmd_identifier_token25] = ACTIONS(2637), + [aux_sym_cmd_identifier_token26] = ACTIONS(2637), + [aux_sym_cmd_identifier_token27] = ACTIONS(2637), + [aux_sym_cmd_identifier_token28] = ACTIONS(2637), + [aux_sym_cmd_identifier_token29] = ACTIONS(2637), + [aux_sym_cmd_identifier_token30] = ACTIONS(2637), + [aux_sym_cmd_identifier_token31] = ACTIONS(2637), + [aux_sym_cmd_identifier_token32] = ACTIONS(2637), + [aux_sym_cmd_identifier_token33] = ACTIONS(2637), + [aux_sym_cmd_identifier_token34] = ACTIONS(2635), + [aux_sym_cmd_identifier_token35] = ACTIONS(2637), + [aux_sym_cmd_identifier_token36] = ACTIONS(2637), + [aux_sym_cmd_identifier_token37] = ACTIONS(2637), + [aux_sym_cmd_identifier_token38] = ACTIONS(2635), + [aux_sym_cmd_identifier_token39] = ACTIONS(2637), + [aux_sym_cmd_identifier_token40] = ACTIONS(2637), + [anon_sym_def] = ACTIONS(2635), + [anon_sym_export_DASHenv] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym_module] = ACTIONS(2635), + [anon_sym_use] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_DOLLAR] = ACTIONS(2637), + [anon_sym_error] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_in2] = ACTIONS(2635), + [anon_sym_loop] = ACTIONS(2635), + [anon_sym_make] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_catch] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_source] = ACTIONS(2635), + [anon_sym_source_DASHenv] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_hide] = ACTIONS(2635), + [anon_sym_hide_DASHenv] = ACTIONS(2635), + [anon_sym_overlay] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_PLUS2] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2637), + [aux_sym__val_number_decimal_token1] = ACTIONS(2635), + [aux_sym__val_number_decimal_token2] = ACTIONS(2637), + [aux_sym__val_number_decimal_token3] = ACTIONS(2637), + [aux_sym__val_number_decimal_token4] = ACTIONS(2637), + [aux_sym__val_number_token1] = ACTIONS(2637), + [aux_sym__val_number_token2] = ACTIONS(2637), + [aux_sym__val_number_token3] = ACTIONS(2637), + [aux_sym__val_number_token4] = ACTIONS(2635), + [aux_sym__val_number_token5] = ACTIONS(2635), + [aux_sym__val_number_token6] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym__str_single_quotes] = ACTIONS(2637), + [sym__str_back_ticks] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2637), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2637), + }, + [734] = { + [sym_comment] = STATE(734), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_alias] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_let_DASHenv] = ACTIONS(2484), + [anon_sym_mut] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [aux_sym_cmd_identifier_token1] = ACTIONS(2484), + [aux_sym_cmd_identifier_token2] = ACTIONS(2486), + [aux_sym_cmd_identifier_token3] = ACTIONS(2486), + [aux_sym_cmd_identifier_token4] = ACTIONS(2486), + [aux_sym_cmd_identifier_token5] = ACTIONS(2486), + [aux_sym_cmd_identifier_token6] = ACTIONS(2486), + [aux_sym_cmd_identifier_token7] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2484), + [aux_sym_cmd_identifier_token9] = ACTIONS(2484), + [aux_sym_cmd_identifier_token10] = ACTIONS(2486), + [aux_sym_cmd_identifier_token11] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2484), + [aux_sym_cmd_identifier_token13] = ACTIONS(2484), + [aux_sym_cmd_identifier_token14] = ACTIONS(2484), + [aux_sym_cmd_identifier_token15] = ACTIONS(2484), + [aux_sym_cmd_identifier_token16] = ACTIONS(2486), + [aux_sym_cmd_identifier_token17] = ACTIONS(2486), + [aux_sym_cmd_identifier_token18] = ACTIONS(2486), + [aux_sym_cmd_identifier_token19] = ACTIONS(2486), + [aux_sym_cmd_identifier_token20] = ACTIONS(2486), + [aux_sym_cmd_identifier_token21] = ACTIONS(2486), + [aux_sym_cmd_identifier_token22] = ACTIONS(2486), + [aux_sym_cmd_identifier_token23] = ACTIONS(2486), + [aux_sym_cmd_identifier_token24] = ACTIONS(2486), + [aux_sym_cmd_identifier_token25] = ACTIONS(2486), + [aux_sym_cmd_identifier_token26] = ACTIONS(2486), + [aux_sym_cmd_identifier_token27] = ACTIONS(2486), + [aux_sym_cmd_identifier_token28] = ACTIONS(2486), + [aux_sym_cmd_identifier_token29] = ACTIONS(2486), + [aux_sym_cmd_identifier_token30] = ACTIONS(2486), + [aux_sym_cmd_identifier_token31] = ACTIONS(2486), + [aux_sym_cmd_identifier_token32] = ACTIONS(2486), + [aux_sym_cmd_identifier_token33] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2484), + [aux_sym_cmd_identifier_token35] = ACTIONS(2486), + [aux_sym_cmd_identifier_token36] = ACTIONS(2486), + [aux_sym_cmd_identifier_token37] = ACTIONS(2486), + [aux_sym_cmd_identifier_token38] = ACTIONS(2484), + [aux_sym_cmd_identifier_token39] = ACTIONS(2486), + [aux_sym_cmd_identifier_token40] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2484), + [anon_sym_export_DASHenv] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_DOLLAR] = ACTIONS(2486), + [anon_sym_error] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_in2] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_make] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_source] = ACTIONS(2484), + [anon_sym_source_DASHenv] = ACTIONS(2484), + [anon_sym_register] = ACTIONS(2484), + [anon_sym_hide] = ACTIONS(2484), + [anon_sym_hide_DASHenv] = ACTIONS(2484), + [anon_sym_overlay] = ACTIONS(2484), + [anon_sym_as] = ACTIONS(2484), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), + [aux_sym__val_number_decimal_token1] = ACTIONS(2484), + [aux_sym__val_number_decimal_token2] = ACTIONS(2486), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), + [aux_sym__val_number_token1] = ACTIONS(2486), + [aux_sym__val_number_token2] = ACTIONS(2486), + [aux_sym__val_number_token3] = ACTIONS(2486), + [aux_sym__val_number_token4] = ACTIONS(2484), + [aux_sym__val_number_token5] = ACTIONS(2484), + [aux_sym__val_number_token6] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2486), + [sym__str_back_ticks] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2486), + }, + [735] = { + [sym_comment] = STATE(735), + [anon_sym_export] = ACTIONS(2567), + [anon_sym_alias] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_let_DASHenv] = ACTIONS(2567), + [anon_sym_mut] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [aux_sym_cmd_identifier_token1] = ACTIONS(2567), + [aux_sym_cmd_identifier_token2] = ACTIONS(2569), + [aux_sym_cmd_identifier_token3] = ACTIONS(2569), + [aux_sym_cmd_identifier_token4] = ACTIONS(2569), + [aux_sym_cmd_identifier_token5] = ACTIONS(2569), + [aux_sym_cmd_identifier_token6] = ACTIONS(2569), + [aux_sym_cmd_identifier_token7] = ACTIONS(2569), + [aux_sym_cmd_identifier_token8] = ACTIONS(2567), + [aux_sym_cmd_identifier_token9] = ACTIONS(2567), + [aux_sym_cmd_identifier_token10] = ACTIONS(2569), + [aux_sym_cmd_identifier_token11] = ACTIONS(2569), + [aux_sym_cmd_identifier_token12] = ACTIONS(2567), + [aux_sym_cmd_identifier_token13] = ACTIONS(2567), + [aux_sym_cmd_identifier_token14] = ACTIONS(2567), + [aux_sym_cmd_identifier_token15] = ACTIONS(2567), + [aux_sym_cmd_identifier_token16] = ACTIONS(2569), + [aux_sym_cmd_identifier_token17] = ACTIONS(2569), + [aux_sym_cmd_identifier_token18] = ACTIONS(2569), + [aux_sym_cmd_identifier_token19] = ACTIONS(2569), + [aux_sym_cmd_identifier_token20] = ACTIONS(2569), + [aux_sym_cmd_identifier_token21] = ACTIONS(2569), + [aux_sym_cmd_identifier_token22] = ACTIONS(2569), + [aux_sym_cmd_identifier_token23] = ACTIONS(2569), + [aux_sym_cmd_identifier_token24] = ACTIONS(2569), + [aux_sym_cmd_identifier_token25] = ACTIONS(2569), + [aux_sym_cmd_identifier_token26] = ACTIONS(2569), + [aux_sym_cmd_identifier_token27] = ACTIONS(2569), + [aux_sym_cmd_identifier_token28] = ACTIONS(2569), + [aux_sym_cmd_identifier_token29] = ACTIONS(2569), + [aux_sym_cmd_identifier_token30] = ACTIONS(2569), + [aux_sym_cmd_identifier_token31] = ACTIONS(2569), + [aux_sym_cmd_identifier_token32] = ACTIONS(2569), + [aux_sym_cmd_identifier_token33] = ACTIONS(2569), + [aux_sym_cmd_identifier_token34] = ACTIONS(2567), + [aux_sym_cmd_identifier_token35] = ACTIONS(2569), + [aux_sym_cmd_identifier_token36] = ACTIONS(2569), + [aux_sym_cmd_identifier_token37] = ACTIONS(2569), + [aux_sym_cmd_identifier_token38] = ACTIONS(2567), + [aux_sym_cmd_identifier_token39] = ACTIONS(2569), + [aux_sym_cmd_identifier_token40] = ACTIONS(2569), + [anon_sym_def] = ACTIONS(2567), + [anon_sym_export_DASHenv] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym_module] = ACTIONS(2567), + [anon_sym_use] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2569), + [anon_sym_error] = ACTIONS(2567), + [anon_sym_DASH2] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_in2] = ACTIONS(2567), + [anon_sym_loop] = ACTIONS(2567), + [anon_sym_make] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_match] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_catch] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_source] = ACTIONS(2567), + [anon_sym_source_DASHenv] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_hide] = ACTIONS(2567), + [anon_sym_hide_DASHenv] = ACTIONS(2567), + [anon_sym_overlay] = ACTIONS(2567), + [anon_sym_as] = ACTIONS(2567), + [anon_sym_PLUS2] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2569), + [aux_sym__val_number_decimal_token1] = ACTIONS(2567), + [aux_sym__val_number_decimal_token2] = ACTIONS(2569), + [aux_sym__val_number_decimal_token3] = ACTIONS(2569), + [aux_sym__val_number_decimal_token4] = ACTIONS(2569), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [aux_sym__val_number_token4] = ACTIONS(2567), + [aux_sym__val_number_token5] = ACTIONS(2567), + [aux_sym__val_number_token6] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym__str_single_quotes] = ACTIONS(2569), + [sym__str_back_ticks] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2569), + }, + [736] = { + [sym_comment] = STATE(736), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_alias] = ACTIONS(2627), + [anon_sym_let] = ACTIONS(2627), + [anon_sym_let_DASHenv] = ACTIONS(2627), + [anon_sym_mut] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [aux_sym_cmd_identifier_token1] = ACTIONS(2627), + [aux_sym_cmd_identifier_token2] = ACTIONS(2629), + [aux_sym_cmd_identifier_token3] = ACTIONS(2629), + [aux_sym_cmd_identifier_token4] = ACTIONS(2629), + [aux_sym_cmd_identifier_token5] = ACTIONS(2629), + [aux_sym_cmd_identifier_token6] = ACTIONS(2629), + [aux_sym_cmd_identifier_token7] = ACTIONS(2629), + [aux_sym_cmd_identifier_token8] = ACTIONS(2627), + [aux_sym_cmd_identifier_token9] = ACTIONS(2627), + [aux_sym_cmd_identifier_token10] = ACTIONS(2629), + [aux_sym_cmd_identifier_token11] = ACTIONS(2629), + [aux_sym_cmd_identifier_token12] = ACTIONS(2627), + [aux_sym_cmd_identifier_token13] = ACTIONS(2627), + [aux_sym_cmd_identifier_token14] = ACTIONS(2627), + [aux_sym_cmd_identifier_token15] = ACTIONS(2627), + [aux_sym_cmd_identifier_token16] = ACTIONS(2629), + [aux_sym_cmd_identifier_token17] = ACTIONS(2629), + [aux_sym_cmd_identifier_token18] = ACTIONS(2629), + [aux_sym_cmd_identifier_token19] = ACTIONS(2629), + [aux_sym_cmd_identifier_token20] = ACTIONS(2629), + [aux_sym_cmd_identifier_token21] = ACTIONS(2629), + [aux_sym_cmd_identifier_token22] = ACTIONS(2629), + [aux_sym_cmd_identifier_token23] = ACTIONS(2629), + [aux_sym_cmd_identifier_token24] = ACTIONS(2629), + [aux_sym_cmd_identifier_token25] = ACTIONS(2629), + [aux_sym_cmd_identifier_token26] = ACTIONS(2629), + [aux_sym_cmd_identifier_token27] = ACTIONS(2629), + [aux_sym_cmd_identifier_token28] = ACTIONS(2629), + [aux_sym_cmd_identifier_token29] = ACTIONS(2629), + [aux_sym_cmd_identifier_token30] = ACTIONS(2629), + [aux_sym_cmd_identifier_token31] = ACTIONS(2629), + [aux_sym_cmd_identifier_token32] = ACTIONS(2629), + [aux_sym_cmd_identifier_token33] = ACTIONS(2629), + [aux_sym_cmd_identifier_token34] = ACTIONS(2627), + [aux_sym_cmd_identifier_token35] = ACTIONS(2629), + [aux_sym_cmd_identifier_token36] = ACTIONS(2629), + [aux_sym_cmd_identifier_token37] = ACTIONS(2629), + [aux_sym_cmd_identifier_token38] = ACTIONS(2627), + [aux_sym_cmd_identifier_token39] = ACTIONS(2629), + [aux_sym_cmd_identifier_token40] = ACTIONS(2629), + [anon_sym_def] = ACTIONS(2627), + [anon_sym_export_DASHenv] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_use] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_error] = ACTIONS(2627), + [anon_sym_DASH2] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_in2] = ACTIONS(2627), + [anon_sym_loop] = ACTIONS(2627), + [anon_sym_make] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_match] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_source] = ACTIONS(2627), + [anon_sym_source_DASHenv] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_hide] = ACTIONS(2627), + [anon_sym_hide_DASHenv] = ACTIONS(2627), + [anon_sym_overlay] = ACTIONS(2627), + [anon_sym_as] = ACTIONS(2627), + [anon_sym_PLUS2] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2629), + [aux_sym__val_number_decimal_token1] = ACTIONS(2627), + [aux_sym__val_number_decimal_token2] = ACTIONS(2629), + [aux_sym__val_number_decimal_token3] = ACTIONS(2629), + [aux_sym__val_number_decimal_token4] = ACTIONS(2629), + [aux_sym__val_number_token1] = ACTIONS(2629), + [aux_sym__val_number_token2] = ACTIONS(2629), + [aux_sym__val_number_token3] = ACTIONS(2629), + [aux_sym__val_number_token4] = ACTIONS(2627), + [aux_sym__val_number_token5] = ACTIONS(2627), + [aux_sym__val_number_token6] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym__str_single_quotes] = ACTIONS(2629), + [sym__str_back_ticks] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2629), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2629), + }, + [737] = { + [sym_comment] = STATE(737), + [anon_sym_export] = ACTIONS(2631), + [anon_sym_alias] = ACTIONS(2631), + [anon_sym_let] = ACTIONS(2631), + [anon_sym_let_DASHenv] = ACTIONS(2631), + [anon_sym_mut] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [aux_sym_cmd_identifier_token1] = ACTIONS(2631), + [aux_sym_cmd_identifier_token2] = ACTIONS(2633), + [aux_sym_cmd_identifier_token3] = ACTIONS(2633), + [aux_sym_cmd_identifier_token4] = ACTIONS(2633), + [aux_sym_cmd_identifier_token5] = ACTIONS(2633), + [aux_sym_cmd_identifier_token6] = ACTIONS(2633), + [aux_sym_cmd_identifier_token7] = ACTIONS(2633), + [aux_sym_cmd_identifier_token8] = ACTIONS(2631), + [aux_sym_cmd_identifier_token9] = ACTIONS(2631), + [aux_sym_cmd_identifier_token10] = ACTIONS(2633), + [aux_sym_cmd_identifier_token11] = ACTIONS(2633), + [aux_sym_cmd_identifier_token12] = ACTIONS(2631), + [aux_sym_cmd_identifier_token13] = ACTIONS(2631), + [aux_sym_cmd_identifier_token14] = ACTIONS(2631), + [aux_sym_cmd_identifier_token15] = ACTIONS(2631), + [aux_sym_cmd_identifier_token16] = ACTIONS(2633), + [aux_sym_cmd_identifier_token17] = ACTIONS(2633), + [aux_sym_cmd_identifier_token18] = ACTIONS(2633), + [aux_sym_cmd_identifier_token19] = ACTIONS(2633), + [aux_sym_cmd_identifier_token20] = ACTIONS(2633), + [aux_sym_cmd_identifier_token21] = ACTIONS(2633), + [aux_sym_cmd_identifier_token22] = ACTIONS(2633), + [aux_sym_cmd_identifier_token23] = ACTIONS(2633), + [aux_sym_cmd_identifier_token24] = ACTIONS(2633), + [aux_sym_cmd_identifier_token25] = ACTIONS(2633), + [aux_sym_cmd_identifier_token26] = ACTIONS(2633), + [aux_sym_cmd_identifier_token27] = ACTIONS(2633), + [aux_sym_cmd_identifier_token28] = ACTIONS(2633), + [aux_sym_cmd_identifier_token29] = ACTIONS(2633), + [aux_sym_cmd_identifier_token30] = ACTIONS(2633), + [aux_sym_cmd_identifier_token31] = ACTIONS(2633), + [aux_sym_cmd_identifier_token32] = ACTIONS(2633), + [aux_sym_cmd_identifier_token33] = ACTIONS(2633), + [aux_sym_cmd_identifier_token34] = ACTIONS(2631), + [aux_sym_cmd_identifier_token35] = ACTIONS(2633), + [aux_sym_cmd_identifier_token36] = ACTIONS(2633), + [aux_sym_cmd_identifier_token37] = ACTIONS(2633), + [aux_sym_cmd_identifier_token38] = ACTIONS(2631), + [aux_sym_cmd_identifier_token39] = ACTIONS(2633), + [aux_sym_cmd_identifier_token40] = ACTIONS(2633), + [anon_sym_def] = ACTIONS(2631), + [anon_sym_export_DASHenv] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym_module] = ACTIONS(2631), + [anon_sym_use] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_error] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_in2] = ACTIONS(2631), + [anon_sym_loop] = ACTIONS(2631), + [anon_sym_make] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_match] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_source] = ACTIONS(2631), + [anon_sym_source_DASHenv] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_hide] = ACTIONS(2631), + [anon_sym_hide_DASHenv] = ACTIONS(2631), + [anon_sym_overlay] = ACTIONS(2631), + [anon_sym_as] = ACTIONS(2631), + [anon_sym_PLUS2] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2633), + [aux_sym__val_number_decimal_token1] = ACTIONS(2631), + [aux_sym__val_number_decimal_token2] = ACTIONS(2633), + [aux_sym__val_number_decimal_token3] = ACTIONS(2633), + [aux_sym__val_number_decimal_token4] = ACTIONS(2633), + [aux_sym__val_number_token1] = ACTIONS(2633), + [aux_sym__val_number_token2] = ACTIONS(2633), + [aux_sym__val_number_token3] = ACTIONS(2633), + [aux_sym__val_number_token4] = ACTIONS(2631), + [aux_sym__val_number_token5] = ACTIONS(2631), + [aux_sym__val_number_token6] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym__str_single_quotes] = ACTIONS(2633), + [sym__str_back_ticks] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2633), + }, + [738] = { + [sym_comment] = STATE(738), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2470), + [aux_sym_cmd_identifier_token3] = ACTIONS(2470), + [aux_sym_cmd_identifier_token4] = ACTIONS(2470), + [aux_sym_cmd_identifier_token5] = ACTIONS(2470), + [aux_sym_cmd_identifier_token6] = ACTIONS(2470), + [aux_sym_cmd_identifier_token7] = ACTIONS(2470), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2470), + [aux_sym_cmd_identifier_token11] = ACTIONS(2470), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2470), + [aux_sym_cmd_identifier_token17] = ACTIONS(2470), + [aux_sym_cmd_identifier_token18] = ACTIONS(2470), + [aux_sym_cmd_identifier_token19] = ACTIONS(2470), + [aux_sym_cmd_identifier_token20] = ACTIONS(2470), + [aux_sym_cmd_identifier_token21] = ACTIONS(2470), + [aux_sym_cmd_identifier_token22] = ACTIONS(2470), + [aux_sym_cmd_identifier_token23] = ACTIONS(2470), + [aux_sym_cmd_identifier_token24] = ACTIONS(2470), + [aux_sym_cmd_identifier_token25] = ACTIONS(2470), + [aux_sym_cmd_identifier_token26] = ACTIONS(2470), + [aux_sym_cmd_identifier_token27] = ACTIONS(2470), + [aux_sym_cmd_identifier_token28] = ACTIONS(2470), + [aux_sym_cmd_identifier_token29] = ACTIONS(2470), + [aux_sym_cmd_identifier_token30] = ACTIONS(2470), + [aux_sym_cmd_identifier_token31] = ACTIONS(2470), + [aux_sym_cmd_identifier_token32] = ACTIONS(2470), + [aux_sym_cmd_identifier_token33] = ACTIONS(2470), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2470), + [aux_sym_cmd_identifier_token36] = ACTIONS(2470), + [aux_sym_cmd_identifier_token37] = ACTIONS(2470), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2470), + [aux_sym_cmd_identifier_token40] = ACTIONS(2470), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [aux_sym__val_number_decimal_token2] = ACTIONS(2470), + [aux_sym__val_number_decimal_token3] = ACTIONS(2470), + [aux_sym__val_number_decimal_token4] = ACTIONS(2470), + [aux_sym__val_number_token1] = ACTIONS(2470), + [aux_sym__val_number_token2] = ACTIONS(2470), + [aux_sym__val_number_token3] = ACTIONS(2470), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym__str_single_quotes] = ACTIONS(2470), + [sym__str_back_ticks] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2470), }, - [750] = { - [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [aux_sym_cmd_identifier_token37] = ACTIONS(1909), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1909), - [aux_sym_cmd_identifier_token40] = ACTIONS(1909), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1909), + [739] = { + [sym_comment] = STATE(739), + [anon_sym_export] = ACTIONS(1556), + [anon_sym_alias] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_let_DASHenv] = ACTIONS(1556), + [anon_sym_mut] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [aux_sym_cmd_identifier_token1] = ACTIONS(1556), + [aux_sym_cmd_identifier_token2] = ACTIONS(1558), + [aux_sym_cmd_identifier_token3] = ACTIONS(1558), + [aux_sym_cmd_identifier_token4] = ACTIONS(1558), + [aux_sym_cmd_identifier_token5] = ACTIONS(1558), + [aux_sym_cmd_identifier_token6] = ACTIONS(1558), + [aux_sym_cmd_identifier_token7] = ACTIONS(1558), + [aux_sym_cmd_identifier_token8] = ACTIONS(1556), + [aux_sym_cmd_identifier_token9] = ACTIONS(1556), + [aux_sym_cmd_identifier_token10] = ACTIONS(1558), + [aux_sym_cmd_identifier_token11] = ACTIONS(1558), + [aux_sym_cmd_identifier_token12] = ACTIONS(1556), + [aux_sym_cmd_identifier_token13] = ACTIONS(1556), + [aux_sym_cmd_identifier_token14] = ACTIONS(1556), + [aux_sym_cmd_identifier_token15] = ACTIONS(1556), + [aux_sym_cmd_identifier_token16] = ACTIONS(1558), + [aux_sym_cmd_identifier_token17] = ACTIONS(1558), + [aux_sym_cmd_identifier_token18] = ACTIONS(1558), + [aux_sym_cmd_identifier_token19] = ACTIONS(1558), + [aux_sym_cmd_identifier_token20] = ACTIONS(1558), + [aux_sym_cmd_identifier_token21] = ACTIONS(1558), + [aux_sym_cmd_identifier_token22] = ACTIONS(1558), + [aux_sym_cmd_identifier_token23] = ACTIONS(1558), + [aux_sym_cmd_identifier_token24] = ACTIONS(1558), + [aux_sym_cmd_identifier_token25] = ACTIONS(1558), + [aux_sym_cmd_identifier_token26] = ACTIONS(1558), + [aux_sym_cmd_identifier_token27] = ACTIONS(1558), + [aux_sym_cmd_identifier_token28] = ACTIONS(1558), + [aux_sym_cmd_identifier_token29] = ACTIONS(1558), + [aux_sym_cmd_identifier_token30] = ACTIONS(1558), + [aux_sym_cmd_identifier_token31] = ACTIONS(1558), + [aux_sym_cmd_identifier_token32] = ACTIONS(1558), + [aux_sym_cmd_identifier_token33] = ACTIONS(1558), + [aux_sym_cmd_identifier_token34] = ACTIONS(1556), + [aux_sym_cmd_identifier_token35] = ACTIONS(1558), + [aux_sym_cmd_identifier_token36] = ACTIONS(1558), + [aux_sym_cmd_identifier_token37] = ACTIONS(1558), + [aux_sym_cmd_identifier_token38] = ACTIONS(1556), + [aux_sym_cmd_identifier_token39] = ACTIONS(1558), + [aux_sym_cmd_identifier_token40] = ACTIONS(1558), + [anon_sym_def] = ACTIONS(1556), + [anon_sym_export_DASHenv] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_module] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_error] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_make] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_else] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1556), + [anon_sym_catch] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_source] = ACTIONS(1556), + [anon_sym_source_DASHenv] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_hide] = ACTIONS(1556), + [anon_sym_hide_DASHenv] = ACTIONS(1556), + [anon_sym_overlay] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1556), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1556), + [aux_sym__val_number_token5] = ACTIONS(1556), + [aux_sym__val_number_token6] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), }, - [751] = { - [sym_comment] = STATE(751), + [740] = { + [sym_comment] = STATE(740), [anon_sym_export] = ACTIONS(2468), [anon_sym_alias] = ACTIONS(2468), [anon_sym_let] = ACTIONS(2468), @@ -155354,46764 +292126,48210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2470), [sym__str_back_ticks] = ACTIONS(2470), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2470), }, + [741] = { + [sym_comment] = STATE(741), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_alias] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_let_DASHenv] = ACTIONS(2619), + [anon_sym_mut] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [aux_sym_cmd_identifier_token1] = ACTIONS(2619), + [aux_sym_cmd_identifier_token2] = ACTIONS(2621), + [aux_sym_cmd_identifier_token3] = ACTIONS(2621), + [aux_sym_cmd_identifier_token4] = ACTIONS(2621), + [aux_sym_cmd_identifier_token5] = ACTIONS(2621), + [aux_sym_cmd_identifier_token6] = ACTIONS(2621), + [aux_sym_cmd_identifier_token7] = ACTIONS(2621), + [aux_sym_cmd_identifier_token8] = ACTIONS(2619), + [aux_sym_cmd_identifier_token9] = ACTIONS(2619), + [aux_sym_cmd_identifier_token10] = ACTIONS(2621), + [aux_sym_cmd_identifier_token11] = ACTIONS(2621), + [aux_sym_cmd_identifier_token12] = ACTIONS(2619), + [aux_sym_cmd_identifier_token13] = ACTIONS(2619), + [aux_sym_cmd_identifier_token14] = ACTIONS(2619), + [aux_sym_cmd_identifier_token15] = ACTIONS(2619), + [aux_sym_cmd_identifier_token16] = ACTIONS(2621), + [aux_sym_cmd_identifier_token17] = ACTIONS(2621), + [aux_sym_cmd_identifier_token18] = ACTIONS(2621), + [aux_sym_cmd_identifier_token19] = ACTIONS(2621), + [aux_sym_cmd_identifier_token20] = ACTIONS(2621), + [aux_sym_cmd_identifier_token21] = ACTIONS(2621), + [aux_sym_cmd_identifier_token22] = ACTIONS(2621), + [aux_sym_cmd_identifier_token23] = ACTIONS(2621), + [aux_sym_cmd_identifier_token24] = ACTIONS(2621), + [aux_sym_cmd_identifier_token25] = ACTIONS(2621), + [aux_sym_cmd_identifier_token26] = ACTIONS(2621), + [aux_sym_cmd_identifier_token27] = ACTIONS(2621), + [aux_sym_cmd_identifier_token28] = ACTIONS(2621), + [aux_sym_cmd_identifier_token29] = ACTIONS(2621), + [aux_sym_cmd_identifier_token30] = ACTIONS(2621), + [aux_sym_cmd_identifier_token31] = ACTIONS(2621), + [aux_sym_cmd_identifier_token32] = ACTIONS(2621), + [aux_sym_cmd_identifier_token33] = ACTIONS(2621), + [aux_sym_cmd_identifier_token34] = ACTIONS(2619), + [aux_sym_cmd_identifier_token35] = ACTIONS(2621), + [aux_sym_cmd_identifier_token36] = ACTIONS(2621), + [aux_sym_cmd_identifier_token37] = ACTIONS(2621), + [aux_sym_cmd_identifier_token38] = ACTIONS(2619), + [aux_sym_cmd_identifier_token39] = ACTIONS(2621), + [aux_sym_cmd_identifier_token40] = ACTIONS(2621), + [anon_sym_def] = ACTIONS(2619), + [anon_sym_export_DASHenv] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_use] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_error] = ACTIONS(2619), + [anon_sym_DASH2] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_in2] = ACTIONS(2619), + [anon_sym_loop] = ACTIONS(2619), + [anon_sym_make] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_match] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_catch] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_source] = ACTIONS(2619), + [anon_sym_source_DASHenv] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_hide] = ACTIONS(2619), + [anon_sym_hide_DASHenv] = ACTIONS(2619), + [anon_sym_overlay] = ACTIONS(2619), + [anon_sym_as] = ACTIONS(2619), + [anon_sym_PLUS2] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2621), + [aux_sym__val_number_decimal_token1] = ACTIONS(2619), + [aux_sym__val_number_decimal_token2] = ACTIONS(2621), + [aux_sym__val_number_decimal_token3] = ACTIONS(2621), + [aux_sym__val_number_decimal_token4] = ACTIONS(2621), + [aux_sym__val_number_token1] = ACTIONS(2621), + [aux_sym__val_number_token2] = ACTIONS(2621), + [aux_sym__val_number_token3] = ACTIONS(2621), + [aux_sym__val_number_token4] = ACTIONS(2619), + [aux_sym__val_number_token5] = ACTIONS(2619), + [aux_sym__val_number_token6] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym__str_single_quotes] = ACTIONS(2621), + [sym__str_back_ticks] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2621), + }, + [742] = { + [sym_comment] = STATE(742), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_alias] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_let_DASHenv] = ACTIONS(2472), + [anon_sym_mut] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [aux_sym_cmd_identifier_token1] = ACTIONS(2472), + [aux_sym_cmd_identifier_token2] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2474), + [aux_sym_cmd_identifier_token4] = ACTIONS(2474), + [aux_sym_cmd_identifier_token5] = ACTIONS(2474), + [aux_sym_cmd_identifier_token6] = ACTIONS(2474), + [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token8] = ACTIONS(2472), + [aux_sym_cmd_identifier_token9] = ACTIONS(2472), + [aux_sym_cmd_identifier_token10] = ACTIONS(2474), + [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token12] = ACTIONS(2472), + [aux_sym_cmd_identifier_token13] = ACTIONS(2472), + [aux_sym_cmd_identifier_token14] = ACTIONS(2472), + [aux_sym_cmd_identifier_token15] = ACTIONS(2472), + [aux_sym_cmd_identifier_token16] = ACTIONS(2474), + [aux_sym_cmd_identifier_token17] = ACTIONS(2474), + [aux_sym_cmd_identifier_token18] = ACTIONS(2474), + [aux_sym_cmd_identifier_token19] = ACTIONS(2474), + [aux_sym_cmd_identifier_token20] = ACTIONS(2474), + [aux_sym_cmd_identifier_token21] = ACTIONS(2474), + [aux_sym_cmd_identifier_token22] = ACTIONS(2474), + [aux_sym_cmd_identifier_token23] = ACTIONS(2474), + [aux_sym_cmd_identifier_token24] = ACTIONS(2474), + [aux_sym_cmd_identifier_token25] = ACTIONS(2474), + [aux_sym_cmd_identifier_token26] = ACTIONS(2474), + [aux_sym_cmd_identifier_token27] = ACTIONS(2474), + [aux_sym_cmd_identifier_token28] = ACTIONS(2474), + [aux_sym_cmd_identifier_token29] = ACTIONS(2474), + [aux_sym_cmd_identifier_token30] = ACTIONS(2474), + [aux_sym_cmd_identifier_token31] = ACTIONS(2474), + [aux_sym_cmd_identifier_token32] = ACTIONS(2474), + [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token34] = ACTIONS(2472), + [aux_sym_cmd_identifier_token35] = ACTIONS(2474), + [aux_sym_cmd_identifier_token36] = ACTIONS(2474), + [aux_sym_cmd_identifier_token37] = ACTIONS(2474), + [aux_sym_cmd_identifier_token38] = ACTIONS(2472), + [aux_sym_cmd_identifier_token39] = ACTIONS(2474), + [aux_sym_cmd_identifier_token40] = ACTIONS(2474), + [anon_sym_def] = ACTIONS(2472), + [anon_sym_export_DASHenv] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_module] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_error] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_in2] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_make] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_source] = ACTIONS(2472), + [anon_sym_source_DASHenv] = ACTIONS(2472), + [anon_sym_register] = ACTIONS(2472), + [anon_sym_hide] = ACTIONS(2472), + [anon_sym_hide_DASHenv] = ACTIONS(2472), + [anon_sym_overlay] = ACTIONS(2472), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), + [aux_sym__val_number_decimal_token1] = ACTIONS(2472), + [aux_sym__val_number_decimal_token2] = ACTIONS(2474), + [aux_sym__val_number_decimal_token3] = ACTIONS(2474), + [aux_sym__val_number_decimal_token4] = ACTIONS(2474), + [aux_sym__val_number_token1] = ACTIONS(2474), + [aux_sym__val_number_token2] = ACTIONS(2474), + [aux_sym__val_number_token3] = ACTIONS(2474), + [aux_sym__val_number_token4] = ACTIONS(2472), + [aux_sym__val_number_token5] = ACTIONS(2472), + [aux_sym__val_number_token6] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym__str_single_quotes] = ACTIONS(2474), + [sym__str_back_ticks] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2474), + }, + [743] = { + [sym_comment] = STATE(743), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_alias] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_let_DASHenv] = ACTIONS(2476), + [anon_sym_mut] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [aux_sym_cmd_identifier_token1] = ACTIONS(2476), + [aux_sym_cmd_identifier_token2] = ACTIONS(2478), + [aux_sym_cmd_identifier_token3] = ACTIONS(2478), + [aux_sym_cmd_identifier_token4] = ACTIONS(2478), + [aux_sym_cmd_identifier_token5] = ACTIONS(2478), + [aux_sym_cmd_identifier_token6] = ACTIONS(2478), + [aux_sym_cmd_identifier_token7] = ACTIONS(2478), + [aux_sym_cmd_identifier_token8] = ACTIONS(2476), + [aux_sym_cmd_identifier_token9] = ACTIONS(2476), + [aux_sym_cmd_identifier_token10] = ACTIONS(2478), + [aux_sym_cmd_identifier_token11] = ACTIONS(2478), + [aux_sym_cmd_identifier_token12] = ACTIONS(2476), + [aux_sym_cmd_identifier_token13] = ACTIONS(2476), + [aux_sym_cmd_identifier_token14] = ACTIONS(2476), + [aux_sym_cmd_identifier_token15] = ACTIONS(2476), + [aux_sym_cmd_identifier_token16] = ACTIONS(2478), + [aux_sym_cmd_identifier_token17] = ACTIONS(2478), + [aux_sym_cmd_identifier_token18] = ACTIONS(2478), + [aux_sym_cmd_identifier_token19] = ACTIONS(2478), + [aux_sym_cmd_identifier_token20] = ACTIONS(2478), + [aux_sym_cmd_identifier_token21] = ACTIONS(2478), + [aux_sym_cmd_identifier_token22] = ACTIONS(2478), + [aux_sym_cmd_identifier_token23] = ACTIONS(2478), + [aux_sym_cmd_identifier_token24] = ACTIONS(2478), + [aux_sym_cmd_identifier_token25] = ACTIONS(2478), + [aux_sym_cmd_identifier_token26] = ACTIONS(2478), + [aux_sym_cmd_identifier_token27] = ACTIONS(2478), + [aux_sym_cmd_identifier_token28] = ACTIONS(2478), + [aux_sym_cmd_identifier_token29] = ACTIONS(2478), + [aux_sym_cmd_identifier_token30] = ACTIONS(2478), + [aux_sym_cmd_identifier_token31] = ACTIONS(2478), + [aux_sym_cmd_identifier_token32] = ACTIONS(2478), + [aux_sym_cmd_identifier_token33] = ACTIONS(2478), + [aux_sym_cmd_identifier_token34] = ACTIONS(2476), + [aux_sym_cmd_identifier_token35] = ACTIONS(2478), + [aux_sym_cmd_identifier_token36] = ACTIONS(2478), + [aux_sym_cmd_identifier_token37] = ACTIONS(2478), + [aux_sym_cmd_identifier_token38] = ACTIONS(2476), + [aux_sym_cmd_identifier_token39] = ACTIONS(2478), + [aux_sym_cmd_identifier_token40] = ACTIONS(2478), + [anon_sym_def] = ACTIONS(2476), + [anon_sym_export_DASHenv] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_module] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_error] = ACTIONS(2476), + [anon_sym_DASH2] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_in2] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_make] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_source] = ACTIONS(2476), + [anon_sym_source_DASHenv] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_hide] = ACTIONS(2476), + [anon_sym_hide_DASHenv] = ACTIONS(2476), + [anon_sym_overlay] = ACTIONS(2476), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_PLUS2] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2478), + [aux_sym__val_number_decimal_token3] = ACTIONS(2478), + [aux_sym__val_number_decimal_token4] = ACTIONS(2478), + [aux_sym__val_number_token1] = ACTIONS(2478), + [aux_sym__val_number_token2] = ACTIONS(2478), + [aux_sym__val_number_token3] = ACTIONS(2478), + [aux_sym__val_number_token4] = ACTIONS(2476), + [aux_sym__val_number_token5] = ACTIONS(2476), + [aux_sym__val_number_token6] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym__str_single_quotes] = ACTIONS(2478), + [sym__str_back_ticks] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2478), + }, + [744] = { + [sym_comment] = STATE(744), + [anon_sym_export] = ACTIONS(2228), + [anon_sym_alias] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_let_DASHenv] = ACTIONS(2228), + [anon_sym_mut] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [aux_sym_cmd_identifier_token1] = ACTIONS(2228), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2228), + [aux_sym_cmd_identifier_token9] = ACTIONS(2228), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2228), + [aux_sym_cmd_identifier_token13] = ACTIONS(2228), + [aux_sym_cmd_identifier_token14] = ACTIONS(2228), + [aux_sym_cmd_identifier_token15] = ACTIONS(2228), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2228), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [aux_sym_cmd_identifier_token37] = ACTIONS(2234), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2234), + [aux_sym_cmd_identifier_token40] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2228), + [anon_sym_export_DASHenv] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_module] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_error] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_in2] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_make] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_do] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_else] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2228), + [anon_sym_catch] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_source] = ACTIONS(2228), + [anon_sym_source_DASHenv] = ACTIONS(2228), + [anon_sym_register] = ACTIONS(2228), + [anon_sym_hide] = ACTIONS(2228), + [anon_sym_hide_DASHenv] = ACTIONS(2228), + [anon_sym_overlay] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(2480), + [anon_sym_alias] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_let_DASHenv] = ACTIONS(2480), + [anon_sym_mut] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [aux_sym_cmd_identifier_token1] = ACTIONS(2480), + [aux_sym_cmd_identifier_token2] = ACTIONS(2482), + [aux_sym_cmd_identifier_token3] = ACTIONS(2482), + [aux_sym_cmd_identifier_token4] = ACTIONS(2482), + [aux_sym_cmd_identifier_token5] = ACTIONS(2482), + [aux_sym_cmd_identifier_token6] = ACTIONS(2482), + [aux_sym_cmd_identifier_token7] = ACTIONS(2482), + [aux_sym_cmd_identifier_token8] = ACTIONS(2480), + [aux_sym_cmd_identifier_token9] = ACTIONS(2480), + [aux_sym_cmd_identifier_token10] = ACTIONS(2482), + [aux_sym_cmd_identifier_token11] = ACTIONS(2482), + [aux_sym_cmd_identifier_token12] = ACTIONS(2480), + [aux_sym_cmd_identifier_token13] = ACTIONS(2480), + [aux_sym_cmd_identifier_token14] = ACTIONS(2480), + [aux_sym_cmd_identifier_token15] = ACTIONS(2480), + [aux_sym_cmd_identifier_token16] = ACTIONS(2482), + [aux_sym_cmd_identifier_token17] = ACTIONS(2482), + [aux_sym_cmd_identifier_token18] = ACTIONS(2482), + [aux_sym_cmd_identifier_token19] = ACTIONS(2482), + [aux_sym_cmd_identifier_token20] = ACTIONS(2482), + [aux_sym_cmd_identifier_token21] = ACTIONS(2482), + [aux_sym_cmd_identifier_token22] = ACTIONS(2482), + [aux_sym_cmd_identifier_token23] = ACTIONS(2482), + [aux_sym_cmd_identifier_token24] = ACTIONS(2482), + [aux_sym_cmd_identifier_token25] = ACTIONS(2482), + [aux_sym_cmd_identifier_token26] = ACTIONS(2482), + [aux_sym_cmd_identifier_token27] = ACTIONS(2482), + [aux_sym_cmd_identifier_token28] = ACTIONS(2482), + [aux_sym_cmd_identifier_token29] = ACTIONS(2482), + [aux_sym_cmd_identifier_token30] = ACTIONS(2482), + [aux_sym_cmd_identifier_token31] = ACTIONS(2482), + [aux_sym_cmd_identifier_token32] = ACTIONS(2482), + [aux_sym_cmd_identifier_token33] = ACTIONS(2482), + [aux_sym_cmd_identifier_token34] = ACTIONS(2480), + [aux_sym_cmd_identifier_token35] = ACTIONS(2482), + [aux_sym_cmd_identifier_token36] = ACTIONS(2482), + [aux_sym_cmd_identifier_token37] = ACTIONS(2482), + [aux_sym_cmd_identifier_token38] = ACTIONS(2480), + [aux_sym_cmd_identifier_token39] = ACTIONS(2482), + [aux_sym_cmd_identifier_token40] = ACTIONS(2482), + [anon_sym_def] = ACTIONS(2480), + [anon_sym_export_DASHenv] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_error] = ACTIONS(2480), + [anon_sym_DASH2] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_in2] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_make] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_source] = ACTIONS(2480), + [anon_sym_source_DASHenv] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_hide] = ACTIONS(2480), + [anon_sym_hide_DASHenv] = ACTIONS(2480), + [anon_sym_overlay] = ACTIONS(2480), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_PLUS2] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), + [aux_sym__val_number_decimal_token1] = ACTIONS(2480), + [aux_sym__val_number_decimal_token2] = ACTIONS(2482), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2482), + [aux_sym__val_number_token2] = ACTIONS(2482), + [aux_sym__val_number_token3] = ACTIONS(2482), + [aux_sym__val_number_token4] = ACTIONS(2480), + [aux_sym__val_number_token5] = ACTIONS(2480), + [aux_sym__val_number_token6] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym__str_single_quotes] = ACTIONS(2482), + [sym__str_back_ticks] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2482), + }, + [746] = { + [sym_comment] = STATE(746), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_alias] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_let_DASHenv] = ACTIONS(2177), + [anon_sym_mut] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [aux_sym_cmd_identifier_token1] = ACTIONS(2177), + [aux_sym_cmd_identifier_token2] = ACTIONS(2183), + [aux_sym_cmd_identifier_token3] = ACTIONS(2183), + [aux_sym_cmd_identifier_token4] = ACTIONS(2183), + [aux_sym_cmd_identifier_token5] = ACTIONS(2183), + [aux_sym_cmd_identifier_token6] = ACTIONS(2183), + [aux_sym_cmd_identifier_token7] = ACTIONS(2183), + [aux_sym_cmd_identifier_token8] = ACTIONS(2177), + [aux_sym_cmd_identifier_token9] = ACTIONS(2177), + [aux_sym_cmd_identifier_token10] = ACTIONS(2183), + [aux_sym_cmd_identifier_token11] = ACTIONS(2183), + [aux_sym_cmd_identifier_token12] = ACTIONS(2177), + [aux_sym_cmd_identifier_token13] = ACTIONS(2177), + [aux_sym_cmd_identifier_token14] = ACTIONS(2177), + [aux_sym_cmd_identifier_token15] = ACTIONS(2177), + [aux_sym_cmd_identifier_token16] = ACTIONS(2183), + [aux_sym_cmd_identifier_token17] = ACTIONS(2183), + [aux_sym_cmd_identifier_token18] = ACTIONS(2183), + [aux_sym_cmd_identifier_token19] = ACTIONS(2183), + [aux_sym_cmd_identifier_token20] = ACTIONS(2183), + [aux_sym_cmd_identifier_token21] = ACTIONS(2183), + [aux_sym_cmd_identifier_token22] = ACTIONS(2183), + [aux_sym_cmd_identifier_token23] = ACTIONS(2183), + [aux_sym_cmd_identifier_token24] = ACTIONS(2183), + [aux_sym_cmd_identifier_token25] = ACTIONS(2183), + [aux_sym_cmd_identifier_token26] = ACTIONS(2183), + [aux_sym_cmd_identifier_token27] = ACTIONS(2183), + [aux_sym_cmd_identifier_token28] = ACTIONS(2183), + [aux_sym_cmd_identifier_token29] = ACTIONS(2183), + [aux_sym_cmd_identifier_token30] = ACTIONS(2183), + [aux_sym_cmd_identifier_token31] = ACTIONS(2183), + [aux_sym_cmd_identifier_token32] = ACTIONS(2183), + [aux_sym_cmd_identifier_token33] = ACTIONS(2183), + [aux_sym_cmd_identifier_token34] = ACTIONS(2177), + [aux_sym_cmd_identifier_token35] = ACTIONS(2183), + [aux_sym_cmd_identifier_token36] = ACTIONS(2183), + [aux_sym_cmd_identifier_token37] = ACTIONS(2183), + [aux_sym_cmd_identifier_token38] = ACTIONS(2177), + [aux_sym_cmd_identifier_token39] = ACTIONS(2183), + [aux_sym_cmd_identifier_token40] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_export_DASHenv] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_error] = ACTIONS(2177), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_in2] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_make] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_do] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_catch] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_source] = ACTIONS(2177), + [anon_sym_source_DASHenv] = ACTIONS(2177), + [anon_sym_register] = ACTIONS(2177), + [anon_sym_hide] = ACTIONS(2177), + [anon_sym_hide_DASHenv] = ACTIONS(2177), + [anon_sym_overlay] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_PLUS2] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2177), + [aux_sym__val_number_token5] = ACTIONS(2177), + [aux_sym__val_number_token6] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2183), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_alias] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_let_DASHenv] = ACTIONS(2070), + [anon_sym_mut] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [aux_sym_cmd_identifier_token1] = ACTIONS(2070), + [aux_sym_cmd_identifier_token2] = ACTIONS(2072), + [aux_sym_cmd_identifier_token3] = ACTIONS(2072), + [aux_sym_cmd_identifier_token4] = ACTIONS(2072), + [aux_sym_cmd_identifier_token5] = ACTIONS(2072), + [aux_sym_cmd_identifier_token6] = ACTIONS(2072), + [aux_sym_cmd_identifier_token7] = ACTIONS(2072), + [aux_sym_cmd_identifier_token8] = ACTIONS(2070), + [aux_sym_cmd_identifier_token9] = ACTIONS(2070), + [aux_sym_cmd_identifier_token10] = ACTIONS(2072), + [aux_sym_cmd_identifier_token11] = ACTIONS(2072), + [aux_sym_cmd_identifier_token12] = ACTIONS(2070), + [aux_sym_cmd_identifier_token13] = ACTIONS(2070), + [aux_sym_cmd_identifier_token14] = ACTIONS(2070), + [aux_sym_cmd_identifier_token15] = ACTIONS(2070), + [aux_sym_cmd_identifier_token16] = ACTIONS(2072), + [aux_sym_cmd_identifier_token17] = ACTIONS(2072), + [aux_sym_cmd_identifier_token18] = ACTIONS(2072), + [aux_sym_cmd_identifier_token19] = ACTIONS(2072), + [aux_sym_cmd_identifier_token20] = ACTIONS(2072), + [aux_sym_cmd_identifier_token21] = ACTIONS(2072), + [aux_sym_cmd_identifier_token22] = ACTIONS(2072), + [aux_sym_cmd_identifier_token23] = ACTIONS(2072), + [aux_sym_cmd_identifier_token24] = ACTIONS(2072), + [aux_sym_cmd_identifier_token25] = ACTIONS(2072), + [aux_sym_cmd_identifier_token26] = ACTIONS(2072), + [aux_sym_cmd_identifier_token27] = ACTIONS(2072), + [aux_sym_cmd_identifier_token28] = ACTIONS(2072), + [aux_sym_cmd_identifier_token29] = ACTIONS(2072), + [aux_sym_cmd_identifier_token30] = ACTIONS(2072), + [aux_sym_cmd_identifier_token31] = ACTIONS(2072), + [aux_sym_cmd_identifier_token32] = ACTIONS(2072), + [aux_sym_cmd_identifier_token33] = ACTIONS(2072), + [aux_sym_cmd_identifier_token34] = ACTIONS(2070), + [aux_sym_cmd_identifier_token35] = ACTIONS(2072), + [aux_sym_cmd_identifier_token36] = ACTIONS(2072), + [aux_sym_cmd_identifier_token37] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2070), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2070), + [anon_sym_export_DASHenv] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_in2] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_make] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_do] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_else] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_catch] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_source] = ACTIONS(2070), + [anon_sym_source_DASHenv] = ACTIONS(2070), + [anon_sym_register] = ACTIONS(2070), + [anon_sym_hide] = ACTIONS(2070), + [anon_sym_hide_DASHenv] = ACTIONS(2070), + [anon_sym_overlay] = ACTIONS(2070), + [anon_sym_as] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [748] = { + [sym_comment] = STATE(748), + [anon_sym_export] = ACTIONS(2559), + [anon_sym_alias] = ACTIONS(2559), + [anon_sym_let] = ACTIONS(2559), + [anon_sym_let_DASHenv] = ACTIONS(2559), + [anon_sym_mut] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [aux_sym_cmd_identifier_token1] = ACTIONS(2559), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [aux_sym_cmd_identifier_token6] = ACTIONS(2561), + [aux_sym_cmd_identifier_token7] = ACTIONS(2561), + [aux_sym_cmd_identifier_token8] = ACTIONS(2559), + [aux_sym_cmd_identifier_token9] = ACTIONS(2559), + [aux_sym_cmd_identifier_token10] = ACTIONS(2561), + [aux_sym_cmd_identifier_token11] = ACTIONS(2561), + [aux_sym_cmd_identifier_token12] = ACTIONS(2559), + [aux_sym_cmd_identifier_token13] = ACTIONS(2559), + [aux_sym_cmd_identifier_token14] = ACTIONS(2559), + [aux_sym_cmd_identifier_token15] = ACTIONS(2559), + [aux_sym_cmd_identifier_token16] = ACTIONS(2561), + [aux_sym_cmd_identifier_token17] = ACTIONS(2561), + [aux_sym_cmd_identifier_token18] = ACTIONS(2561), + [aux_sym_cmd_identifier_token19] = ACTIONS(2561), + [aux_sym_cmd_identifier_token20] = ACTIONS(2561), + [aux_sym_cmd_identifier_token21] = ACTIONS(2561), + [aux_sym_cmd_identifier_token22] = ACTIONS(2561), + [aux_sym_cmd_identifier_token23] = ACTIONS(2561), + [aux_sym_cmd_identifier_token24] = ACTIONS(2561), + [aux_sym_cmd_identifier_token25] = ACTIONS(2561), + [aux_sym_cmd_identifier_token26] = ACTIONS(2561), + [aux_sym_cmd_identifier_token27] = ACTIONS(2561), + [aux_sym_cmd_identifier_token28] = ACTIONS(2561), + [aux_sym_cmd_identifier_token29] = ACTIONS(2561), + [aux_sym_cmd_identifier_token30] = ACTIONS(2561), + [aux_sym_cmd_identifier_token31] = ACTIONS(2561), + [aux_sym_cmd_identifier_token32] = ACTIONS(2561), + [aux_sym_cmd_identifier_token33] = ACTIONS(2561), + [aux_sym_cmd_identifier_token34] = ACTIONS(2559), + [aux_sym_cmd_identifier_token35] = ACTIONS(2561), + [aux_sym_cmd_identifier_token36] = ACTIONS(2561), + [aux_sym_cmd_identifier_token37] = ACTIONS(2561), + [aux_sym_cmd_identifier_token38] = ACTIONS(2559), + [aux_sym_cmd_identifier_token39] = ACTIONS(2561), + [aux_sym_cmd_identifier_token40] = ACTIONS(2561), + [anon_sym_def] = ACTIONS(2559), + [anon_sym_export_DASHenv] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym_module] = ACTIONS(2559), + [anon_sym_use] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(2561), + [anon_sym_error] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_in2] = ACTIONS(2559), + [anon_sym_loop] = ACTIONS(2559), + [anon_sym_make] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_match] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_catch] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_source] = ACTIONS(2559), + [anon_sym_source_DASHenv] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_hide] = ACTIONS(2559), + [anon_sym_hide_DASHenv] = ACTIONS(2559), + [anon_sym_overlay] = ACTIONS(2559), + [anon_sym_as] = ACTIONS(2559), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2559), + [aux_sym__val_number_decimal_token2] = ACTIONS(2561), + [aux_sym__val_number_decimal_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token4] = ACTIONS(2561), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [aux_sym__val_number_token4] = ACTIONS(2559), + [aux_sym__val_number_token5] = ACTIONS(2559), + [aux_sym__val_number_token6] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym__str_single_quotes] = ACTIONS(2561), + [sym__str_back_ticks] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2561), + }, + [749] = { + [sym_comment] = STATE(749), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2203), + [aux_sym_cmd_identifier_token3] = ACTIONS(2203), + [aux_sym_cmd_identifier_token4] = ACTIONS(2203), + [aux_sym_cmd_identifier_token5] = ACTIONS(2203), + [aux_sym_cmd_identifier_token6] = ACTIONS(2203), + [aux_sym_cmd_identifier_token7] = ACTIONS(2203), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2203), + [aux_sym_cmd_identifier_token11] = ACTIONS(2203), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2203), + [aux_sym_cmd_identifier_token17] = ACTIONS(2203), + [aux_sym_cmd_identifier_token18] = ACTIONS(2203), + [aux_sym_cmd_identifier_token19] = ACTIONS(2203), + [aux_sym_cmd_identifier_token20] = ACTIONS(2203), + [aux_sym_cmd_identifier_token21] = ACTIONS(2203), + [aux_sym_cmd_identifier_token22] = ACTIONS(2203), + [aux_sym_cmd_identifier_token23] = ACTIONS(2203), + [aux_sym_cmd_identifier_token24] = ACTIONS(2203), + [aux_sym_cmd_identifier_token25] = ACTIONS(2203), + [aux_sym_cmd_identifier_token26] = ACTIONS(2203), + [aux_sym_cmd_identifier_token27] = ACTIONS(2203), + [aux_sym_cmd_identifier_token28] = ACTIONS(2203), + [aux_sym_cmd_identifier_token29] = ACTIONS(2203), + [aux_sym_cmd_identifier_token30] = ACTIONS(2203), + [aux_sym_cmd_identifier_token31] = ACTIONS(2203), + [aux_sym_cmd_identifier_token32] = ACTIONS(2203), + [aux_sym_cmd_identifier_token33] = ACTIONS(2203), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2203), + [aux_sym_cmd_identifier_token36] = ACTIONS(2203), + [aux_sym_cmd_identifier_token37] = ACTIONS(2203), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2203), + [aux_sym_cmd_identifier_token40] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2203), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2203), + [aux_sym__val_number_decimal_token3] = ACTIONS(2203), + [aux_sym__val_number_decimal_token4] = ACTIONS(2203), + [aux_sym__val_number_token1] = ACTIONS(2203), + [aux_sym__val_number_token2] = ACTIONS(2203), + [aux_sym__val_number_token3] = ACTIONS(2203), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2203), + [sym__str_single_quotes] = ACTIONS(2203), + [sym__str_back_ticks] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2203), + }, + [750] = { + [sym_comment] = STATE(750), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_alias] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_let_DASHenv] = ACTIONS(2563), + [anon_sym_mut] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [aux_sym_cmd_identifier_token1] = ACTIONS(2563), + [aux_sym_cmd_identifier_token2] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2565), + [aux_sym_cmd_identifier_token4] = ACTIONS(2565), + [aux_sym_cmd_identifier_token5] = ACTIONS(2565), + [aux_sym_cmd_identifier_token6] = ACTIONS(2565), + [aux_sym_cmd_identifier_token7] = ACTIONS(2565), + [aux_sym_cmd_identifier_token8] = ACTIONS(2563), + [aux_sym_cmd_identifier_token9] = ACTIONS(2563), + [aux_sym_cmd_identifier_token10] = ACTIONS(2565), + [aux_sym_cmd_identifier_token11] = ACTIONS(2565), + [aux_sym_cmd_identifier_token12] = ACTIONS(2563), + [aux_sym_cmd_identifier_token13] = ACTIONS(2563), + [aux_sym_cmd_identifier_token14] = ACTIONS(2563), + [aux_sym_cmd_identifier_token15] = ACTIONS(2563), + [aux_sym_cmd_identifier_token16] = ACTIONS(2565), + [aux_sym_cmd_identifier_token17] = ACTIONS(2565), + [aux_sym_cmd_identifier_token18] = ACTIONS(2565), + [aux_sym_cmd_identifier_token19] = ACTIONS(2565), + [aux_sym_cmd_identifier_token20] = ACTIONS(2565), + [aux_sym_cmd_identifier_token21] = ACTIONS(2565), + [aux_sym_cmd_identifier_token22] = ACTIONS(2565), + [aux_sym_cmd_identifier_token23] = ACTIONS(2565), + [aux_sym_cmd_identifier_token24] = ACTIONS(2565), + [aux_sym_cmd_identifier_token25] = ACTIONS(2565), + [aux_sym_cmd_identifier_token26] = ACTIONS(2565), + [aux_sym_cmd_identifier_token27] = ACTIONS(2565), + [aux_sym_cmd_identifier_token28] = ACTIONS(2565), + [aux_sym_cmd_identifier_token29] = ACTIONS(2565), + [aux_sym_cmd_identifier_token30] = ACTIONS(2565), + [aux_sym_cmd_identifier_token31] = ACTIONS(2565), + [aux_sym_cmd_identifier_token32] = ACTIONS(2565), + [aux_sym_cmd_identifier_token33] = ACTIONS(2565), + [aux_sym_cmd_identifier_token34] = ACTIONS(2563), + [aux_sym_cmd_identifier_token35] = ACTIONS(2565), + [aux_sym_cmd_identifier_token36] = ACTIONS(2565), + [aux_sym_cmd_identifier_token37] = ACTIONS(2565), + [aux_sym_cmd_identifier_token38] = ACTIONS(2563), + [aux_sym_cmd_identifier_token39] = ACTIONS(2565), + [aux_sym_cmd_identifier_token40] = ACTIONS(2565), + [anon_sym_def] = ACTIONS(2563), + [anon_sym_export_DASHenv] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_use] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_error] = ACTIONS(2563), + [anon_sym_DASH2] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_in2] = ACTIONS(2563), + [anon_sym_loop] = ACTIONS(2563), + [anon_sym_make] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_match] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_catch] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_source] = ACTIONS(2563), + [anon_sym_source_DASHenv] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_hide] = ACTIONS(2563), + [anon_sym_hide_DASHenv] = ACTIONS(2563), + [anon_sym_overlay] = ACTIONS(2563), + [anon_sym_as] = ACTIONS(2563), + [anon_sym_PLUS2] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2565), + [aux_sym__val_number_decimal_token1] = ACTIONS(2563), + [aux_sym__val_number_decimal_token2] = ACTIONS(2565), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2565), + [aux_sym__val_number_token2] = ACTIONS(2565), + [aux_sym__val_number_token3] = ACTIONS(2565), + [aux_sym__val_number_token4] = ACTIONS(2563), + [aux_sym__val_number_token5] = ACTIONS(2563), + [aux_sym__val_number_token6] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2565), + [sym__str_back_ticks] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2565), + }, + [751] = { + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2419), + }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2484), - [aux_sym_cmd_identifier_token3] = ACTIONS(2484), - [aux_sym_cmd_identifier_token4] = ACTIONS(2484), - [aux_sym_cmd_identifier_token5] = ACTIONS(2484), - [aux_sym_cmd_identifier_token6] = ACTIONS(2484), - [aux_sym_cmd_identifier_token7] = ACTIONS(2484), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2484), - [aux_sym_cmd_identifier_token11] = ACTIONS(2484), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2484), - [aux_sym_cmd_identifier_token17] = ACTIONS(2484), - [aux_sym_cmd_identifier_token18] = ACTIONS(2484), - [aux_sym_cmd_identifier_token19] = ACTIONS(2484), - [aux_sym_cmd_identifier_token20] = ACTIONS(2484), - [aux_sym_cmd_identifier_token21] = ACTIONS(2484), - [aux_sym_cmd_identifier_token22] = ACTIONS(2484), - [aux_sym_cmd_identifier_token23] = ACTIONS(2484), - [aux_sym_cmd_identifier_token24] = ACTIONS(2484), - [aux_sym_cmd_identifier_token25] = ACTIONS(2484), - [aux_sym_cmd_identifier_token26] = ACTIONS(2484), - [aux_sym_cmd_identifier_token27] = ACTIONS(2484), - [aux_sym_cmd_identifier_token28] = ACTIONS(2484), - [aux_sym_cmd_identifier_token29] = ACTIONS(2484), - [aux_sym_cmd_identifier_token30] = ACTIONS(2484), - [aux_sym_cmd_identifier_token31] = ACTIONS(2484), - [aux_sym_cmd_identifier_token32] = ACTIONS(2484), - [aux_sym_cmd_identifier_token33] = ACTIONS(2484), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2484), - [aux_sym_cmd_identifier_token36] = ACTIONS(2484), - [aux_sym_cmd_identifier_token37] = ACTIONS(2484), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2484), - [aux_sym_cmd_identifier_token40] = ACTIONS(2484), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_DOLLAR] = ACTIONS(2484), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in2] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2484), - [aux_sym__val_number_decimal_token3] = ACTIONS(2484), - [aux_sym__val_number_decimal_token4] = ACTIONS(2484), - [aux_sym__val_number_token1] = ACTIONS(2484), - [aux_sym__val_number_token2] = ACTIONS(2484), - [aux_sym__val_number_token3] = ACTIONS(2484), - [aux_sym__val_number_token4] = ACTIONS(2482), - [aux_sym__val_number_token5] = ACTIONS(2482), - [aux_sym__val_number_token6] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym__str_single_quotes] = ACTIONS(2484), - [sym__str_back_ticks] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_alias] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_let_DASHenv] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [aux_sym_cmd_identifier_token1] = ACTIONS(2516), + [aux_sym_cmd_identifier_token2] = ACTIONS(2518), + [aux_sym_cmd_identifier_token3] = ACTIONS(2518), + [aux_sym_cmd_identifier_token4] = ACTIONS(2518), + [aux_sym_cmd_identifier_token5] = ACTIONS(2518), + [aux_sym_cmd_identifier_token6] = ACTIONS(2518), + [aux_sym_cmd_identifier_token7] = ACTIONS(2518), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2516), + [aux_sym_cmd_identifier_token10] = ACTIONS(2518), + [aux_sym_cmd_identifier_token11] = ACTIONS(2518), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2516), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2516), + [aux_sym_cmd_identifier_token16] = ACTIONS(2518), + [aux_sym_cmd_identifier_token17] = ACTIONS(2518), + [aux_sym_cmd_identifier_token18] = ACTIONS(2518), + [aux_sym_cmd_identifier_token19] = ACTIONS(2518), + [aux_sym_cmd_identifier_token20] = ACTIONS(2518), + [aux_sym_cmd_identifier_token21] = ACTIONS(2518), + [aux_sym_cmd_identifier_token22] = ACTIONS(2518), + [aux_sym_cmd_identifier_token23] = ACTIONS(2518), + [aux_sym_cmd_identifier_token24] = ACTIONS(2518), + [aux_sym_cmd_identifier_token25] = ACTIONS(2518), + [aux_sym_cmd_identifier_token26] = ACTIONS(2518), + [aux_sym_cmd_identifier_token27] = ACTIONS(2518), + [aux_sym_cmd_identifier_token28] = ACTIONS(2518), + [aux_sym_cmd_identifier_token29] = ACTIONS(2518), + [aux_sym_cmd_identifier_token30] = ACTIONS(2518), + [aux_sym_cmd_identifier_token31] = ACTIONS(2518), + [aux_sym_cmd_identifier_token32] = ACTIONS(2518), + [aux_sym_cmd_identifier_token33] = ACTIONS(2518), + [aux_sym_cmd_identifier_token34] = ACTIONS(2516), + [aux_sym_cmd_identifier_token35] = ACTIONS(2518), + [aux_sym_cmd_identifier_token36] = ACTIONS(2518), + [aux_sym_cmd_identifier_token37] = ACTIONS(2518), + [aux_sym_cmd_identifier_token38] = ACTIONS(2516), + [aux_sym_cmd_identifier_token39] = ACTIONS(2518), + [aux_sym_cmd_identifier_token40] = ACTIONS(2518), + [anon_sym_def] = ACTIONS(2516), + [anon_sym_export_DASHenv] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_DOLLAR] = ACTIONS(2518), + [anon_sym_error] = ACTIONS(2516), + [anon_sym_DASH2] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in2] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_make] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_source] = ACTIONS(2516), + [anon_sym_source_DASHenv] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_hide] = ACTIONS(2516), + [anon_sym_hide_DASHenv] = ACTIONS(2516), + [anon_sym_overlay] = ACTIONS(2516), + [anon_sym_as] = ACTIONS(2516), + [anon_sym_PLUS2] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2516), + [aux_sym__val_number_decimal_token2] = ACTIONS(2518), + [aux_sym__val_number_decimal_token3] = ACTIONS(2518), + [aux_sym__val_number_decimal_token4] = ACTIONS(2518), + [aux_sym__val_number_token1] = ACTIONS(2518), + [aux_sym__val_number_token2] = ACTIONS(2518), + [aux_sym__val_number_token3] = ACTIONS(2518), + [aux_sym__val_number_token4] = ACTIONS(2516), + [aux_sym__val_number_token5] = ACTIONS(2516), + [aux_sym__val_number_token6] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2518), + [sym__str_single_quotes] = ACTIONS(2518), + [sym__str_back_ticks] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2518), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2518), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(1246), + [anon_sym_alias] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_let_DASHenv] = ACTIONS(1246), + [anon_sym_mut] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [aux_sym_cmd_identifier_token1] = ACTIONS(1246), + [aux_sym_cmd_identifier_token2] = ACTIONS(1244), + [aux_sym_cmd_identifier_token3] = ACTIONS(1244), + [aux_sym_cmd_identifier_token4] = ACTIONS(1244), + [aux_sym_cmd_identifier_token5] = ACTIONS(1244), + [aux_sym_cmd_identifier_token6] = ACTIONS(1244), + [aux_sym_cmd_identifier_token7] = ACTIONS(1244), + [aux_sym_cmd_identifier_token8] = ACTIONS(1246), + [aux_sym_cmd_identifier_token9] = ACTIONS(1246), + [aux_sym_cmd_identifier_token10] = ACTIONS(1244), + [aux_sym_cmd_identifier_token11] = ACTIONS(1244), + [aux_sym_cmd_identifier_token12] = ACTIONS(1246), + [aux_sym_cmd_identifier_token13] = ACTIONS(1246), + [aux_sym_cmd_identifier_token14] = ACTIONS(1246), + [aux_sym_cmd_identifier_token15] = ACTIONS(1246), + [aux_sym_cmd_identifier_token16] = ACTIONS(1244), + [aux_sym_cmd_identifier_token17] = ACTIONS(1244), + [aux_sym_cmd_identifier_token18] = ACTIONS(1244), + [aux_sym_cmd_identifier_token19] = ACTIONS(1244), + [aux_sym_cmd_identifier_token20] = ACTIONS(1244), + [aux_sym_cmd_identifier_token21] = ACTIONS(1244), + [aux_sym_cmd_identifier_token22] = ACTIONS(1244), + [aux_sym_cmd_identifier_token23] = ACTIONS(1244), + [aux_sym_cmd_identifier_token24] = ACTIONS(1244), + [aux_sym_cmd_identifier_token25] = ACTIONS(1244), + [aux_sym_cmd_identifier_token26] = ACTIONS(1244), + [aux_sym_cmd_identifier_token27] = ACTIONS(1244), + [aux_sym_cmd_identifier_token28] = ACTIONS(1244), + [aux_sym_cmd_identifier_token29] = ACTIONS(1244), + [aux_sym_cmd_identifier_token30] = ACTIONS(1244), + [aux_sym_cmd_identifier_token31] = ACTIONS(1244), + [aux_sym_cmd_identifier_token32] = ACTIONS(1244), + [aux_sym_cmd_identifier_token33] = ACTIONS(1244), + [aux_sym_cmd_identifier_token34] = ACTIONS(1246), + [aux_sym_cmd_identifier_token35] = ACTIONS(1244), + [aux_sym_cmd_identifier_token36] = ACTIONS(1244), + [aux_sym_cmd_identifier_token37] = ACTIONS(1244), + [aux_sym_cmd_identifier_token38] = ACTIONS(1246), + [aux_sym_cmd_identifier_token39] = ACTIONS(1244), + [aux_sym_cmd_identifier_token40] = ACTIONS(1244), + [sym__newline] = ACTIONS(1244), + [anon_sym_def] = ACTIONS(1246), + [anon_sym_export_DASHenv] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_module] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1244), + [anon_sym_error] = ACTIONS(1246), + [anon_sym_DASH2] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_in2] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_make] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_catch] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_source] = ACTIONS(1246), + [anon_sym_source_DASHenv] = ACTIONS(1246), + [anon_sym_register] = ACTIONS(1246), + [anon_sym_hide] = ACTIONS(1246), + [anon_sym_hide_DASHenv] = ACTIONS(1246), + [anon_sym_overlay] = ACTIONS(1246), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_PLUS2] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1244), + [aux_sym__val_number_decimal_token1] = ACTIONS(1246), + [aux_sym__val_number_decimal_token2] = ACTIONS(1244), + [aux_sym__val_number_decimal_token3] = ACTIONS(1244), + [aux_sym__val_number_decimal_token4] = ACTIONS(1244), + [aux_sym__val_number_token1] = ACTIONS(1244), + [aux_sym__val_number_token2] = ACTIONS(1244), + [aux_sym__val_number_token3] = ACTIONS(1244), + [aux_sym__val_number_token4] = ACTIONS(1246), + [aux_sym__val_number_token5] = ACTIONS(1246), + [aux_sym__val_number_token6] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym__str_single_quotes] = ACTIONS(1244), + [sym__str_back_ticks] = ACTIONS(1244), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1244), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_alias] = ACTIONS(2444), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_let_DASHenv] = ACTIONS(2444), - [anon_sym_mut] = ACTIONS(2444), - [anon_sym_const] = ACTIONS(2444), - [aux_sym_cmd_identifier_token1] = ACTIONS(2444), - [aux_sym_cmd_identifier_token2] = ACTIONS(2446), - [aux_sym_cmd_identifier_token3] = ACTIONS(2446), - [aux_sym_cmd_identifier_token4] = ACTIONS(2446), - [aux_sym_cmd_identifier_token5] = ACTIONS(2446), - [aux_sym_cmd_identifier_token6] = ACTIONS(2446), - [aux_sym_cmd_identifier_token7] = ACTIONS(2446), - [aux_sym_cmd_identifier_token8] = ACTIONS(2444), - [aux_sym_cmd_identifier_token9] = ACTIONS(2444), - [aux_sym_cmd_identifier_token10] = ACTIONS(2446), - [aux_sym_cmd_identifier_token11] = ACTIONS(2446), - [aux_sym_cmd_identifier_token12] = ACTIONS(2444), - [aux_sym_cmd_identifier_token13] = ACTIONS(2444), - [aux_sym_cmd_identifier_token14] = ACTIONS(2444), - [aux_sym_cmd_identifier_token15] = ACTIONS(2444), - [aux_sym_cmd_identifier_token16] = ACTIONS(2446), - [aux_sym_cmd_identifier_token17] = ACTIONS(2446), - [aux_sym_cmd_identifier_token18] = ACTIONS(2446), - [aux_sym_cmd_identifier_token19] = ACTIONS(2446), - [aux_sym_cmd_identifier_token20] = ACTIONS(2446), - [aux_sym_cmd_identifier_token21] = ACTIONS(2446), - [aux_sym_cmd_identifier_token22] = ACTIONS(2446), - [aux_sym_cmd_identifier_token23] = ACTIONS(2446), - [aux_sym_cmd_identifier_token24] = ACTIONS(2446), - [aux_sym_cmd_identifier_token25] = ACTIONS(2446), - [aux_sym_cmd_identifier_token26] = ACTIONS(2446), - [aux_sym_cmd_identifier_token27] = ACTIONS(2446), - [aux_sym_cmd_identifier_token28] = ACTIONS(2446), - [aux_sym_cmd_identifier_token29] = ACTIONS(2446), - [aux_sym_cmd_identifier_token30] = ACTIONS(2446), - [aux_sym_cmd_identifier_token31] = ACTIONS(2446), - [aux_sym_cmd_identifier_token32] = ACTIONS(2446), - [aux_sym_cmd_identifier_token33] = ACTIONS(2446), - [aux_sym_cmd_identifier_token34] = ACTIONS(2444), - [aux_sym_cmd_identifier_token35] = ACTIONS(2446), - [aux_sym_cmd_identifier_token36] = ACTIONS(2446), - [aux_sym_cmd_identifier_token37] = ACTIONS(2446), - [aux_sym_cmd_identifier_token38] = ACTIONS(2444), - [aux_sym_cmd_identifier_token39] = ACTIONS(2446), - [aux_sym_cmd_identifier_token40] = ACTIONS(2446), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_export_DASHenv] = ACTIONS(2444), - [anon_sym_extern] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_use] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_DOLLAR] = ACTIONS(2446), - [anon_sym_error] = ACTIONS(2444), - [anon_sym_DASH2] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_in2] = ACTIONS(2444), - [anon_sym_loop] = ACTIONS(2444), - [anon_sym_make] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_do] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2444), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_catch] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_source] = ACTIONS(2444), - [anon_sym_source_DASHenv] = ACTIONS(2444), - [anon_sym_register] = ACTIONS(2444), - [anon_sym_hide] = ACTIONS(2444), - [anon_sym_hide_DASHenv] = ACTIONS(2444), - [anon_sym_overlay] = ACTIONS(2444), - [anon_sym_as] = ACTIONS(2444), - [anon_sym_PLUS2] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2446), - [aux_sym__val_number_decimal_token1] = ACTIONS(2444), - [aux_sym__val_number_decimal_token2] = ACTIONS(2446), - [aux_sym__val_number_decimal_token3] = ACTIONS(2446), - [aux_sym__val_number_decimal_token4] = ACTIONS(2446), - [aux_sym__val_number_token1] = ACTIONS(2446), - [aux_sym__val_number_token2] = ACTIONS(2446), - [aux_sym__val_number_token3] = ACTIONS(2446), - [aux_sym__val_number_token4] = ACTIONS(2444), - [aux_sym__val_number_token5] = ACTIONS(2444), - [aux_sym__val_number_token6] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [sym__str_single_quotes] = ACTIONS(2446), - [sym__str_back_ticks] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2446), + [anon_sym_export] = ACTIONS(2623), + [anon_sym_alias] = ACTIONS(2623), + [anon_sym_let] = ACTIONS(2623), + [anon_sym_let_DASHenv] = ACTIONS(2623), + [anon_sym_mut] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [aux_sym_cmd_identifier_token1] = ACTIONS(2623), + [aux_sym_cmd_identifier_token2] = ACTIONS(2625), + [aux_sym_cmd_identifier_token3] = ACTIONS(2625), + [aux_sym_cmd_identifier_token4] = ACTIONS(2625), + [aux_sym_cmd_identifier_token5] = ACTIONS(2625), + [aux_sym_cmd_identifier_token6] = ACTIONS(2625), + [aux_sym_cmd_identifier_token7] = ACTIONS(2625), + [aux_sym_cmd_identifier_token8] = ACTIONS(2623), + [aux_sym_cmd_identifier_token9] = ACTIONS(2623), + [aux_sym_cmd_identifier_token10] = ACTIONS(2625), + [aux_sym_cmd_identifier_token11] = ACTIONS(2625), + [aux_sym_cmd_identifier_token12] = ACTIONS(2623), + [aux_sym_cmd_identifier_token13] = ACTIONS(2623), + [aux_sym_cmd_identifier_token14] = ACTIONS(2623), + [aux_sym_cmd_identifier_token15] = ACTIONS(2623), + [aux_sym_cmd_identifier_token16] = ACTIONS(2625), + [aux_sym_cmd_identifier_token17] = ACTIONS(2625), + [aux_sym_cmd_identifier_token18] = ACTIONS(2625), + [aux_sym_cmd_identifier_token19] = ACTIONS(2625), + [aux_sym_cmd_identifier_token20] = ACTIONS(2625), + [aux_sym_cmd_identifier_token21] = ACTIONS(2625), + [aux_sym_cmd_identifier_token22] = ACTIONS(2625), + [aux_sym_cmd_identifier_token23] = ACTIONS(2625), + [aux_sym_cmd_identifier_token24] = ACTIONS(2625), + [aux_sym_cmd_identifier_token25] = ACTIONS(2625), + [aux_sym_cmd_identifier_token26] = ACTIONS(2625), + [aux_sym_cmd_identifier_token27] = ACTIONS(2625), + [aux_sym_cmd_identifier_token28] = ACTIONS(2625), + [aux_sym_cmd_identifier_token29] = ACTIONS(2625), + [aux_sym_cmd_identifier_token30] = ACTIONS(2625), + [aux_sym_cmd_identifier_token31] = ACTIONS(2625), + [aux_sym_cmd_identifier_token32] = ACTIONS(2625), + [aux_sym_cmd_identifier_token33] = ACTIONS(2625), + [aux_sym_cmd_identifier_token34] = ACTIONS(2623), + [aux_sym_cmd_identifier_token35] = ACTIONS(2625), + [aux_sym_cmd_identifier_token36] = ACTIONS(2625), + [aux_sym_cmd_identifier_token37] = ACTIONS(2625), + [aux_sym_cmd_identifier_token38] = ACTIONS(2623), + [aux_sym_cmd_identifier_token39] = ACTIONS(2625), + [aux_sym_cmd_identifier_token40] = ACTIONS(2625), + [anon_sym_def] = ACTIONS(2623), + [anon_sym_export_DASHenv] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_module] = ACTIONS(2623), + [anon_sym_use] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_DOLLAR] = ACTIONS(2625), + [anon_sym_error] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_in2] = ACTIONS(2623), + [anon_sym_loop] = ACTIONS(2623), + [anon_sym_make] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_source] = ACTIONS(2623), + [anon_sym_source_DASHenv] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_hide] = ACTIONS(2623), + [anon_sym_hide_DASHenv] = ACTIONS(2623), + [anon_sym_overlay] = ACTIONS(2623), + [anon_sym_as] = ACTIONS(2623), + [anon_sym_PLUS2] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2625), + [aux_sym__val_number_decimal_token1] = ACTIONS(2623), + [aux_sym__val_number_decimal_token2] = ACTIONS(2625), + [aux_sym__val_number_decimal_token3] = ACTIONS(2625), + [aux_sym__val_number_decimal_token4] = ACTIONS(2625), + [aux_sym__val_number_token1] = ACTIONS(2625), + [aux_sym__val_number_token2] = ACTIONS(2625), + [aux_sym__val_number_token3] = ACTIONS(2625), + [aux_sym__val_number_token4] = ACTIONS(2623), + [aux_sym__val_number_token5] = ACTIONS(2623), + [aux_sym__val_number_token6] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym__str_single_quotes] = ACTIONS(2625), + [sym__str_back_ticks] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2625), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2625), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_alias] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_let_DASHenv] = ACTIONS(2118), - [anon_sym_mut] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [aux_sym_cmd_identifier_token1] = ACTIONS(2118), - [aux_sym_cmd_identifier_token2] = ACTIONS(2120), - [aux_sym_cmd_identifier_token3] = ACTIONS(2120), - [aux_sym_cmd_identifier_token4] = ACTIONS(2120), - [aux_sym_cmd_identifier_token5] = ACTIONS(2120), - [aux_sym_cmd_identifier_token6] = ACTIONS(2120), - [aux_sym_cmd_identifier_token7] = ACTIONS(2120), - [aux_sym_cmd_identifier_token8] = ACTIONS(2118), - [aux_sym_cmd_identifier_token9] = ACTIONS(2118), - [aux_sym_cmd_identifier_token10] = ACTIONS(2120), - [aux_sym_cmd_identifier_token11] = ACTIONS(2120), - [aux_sym_cmd_identifier_token12] = ACTIONS(2118), - [aux_sym_cmd_identifier_token13] = ACTIONS(2118), - [aux_sym_cmd_identifier_token14] = ACTIONS(2118), - [aux_sym_cmd_identifier_token15] = ACTIONS(2118), - [aux_sym_cmd_identifier_token16] = ACTIONS(2120), - [aux_sym_cmd_identifier_token17] = ACTIONS(2120), - [aux_sym_cmd_identifier_token18] = ACTIONS(2120), - [aux_sym_cmd_identifier_token19] = ACTIONS(2120), - [aux_sym_cmd_identifier_token20] = ACTIONS(2120), - [aux_sym_cmd_identifier_token21] = ACTIONS(2120), - [aux_sym_cmd_identifier_token22] = ACTIONS(2120), - [aux_sym_cmd_identifier_token23] = ACTIONS(2120), - [aux_sym_cmd_identifier_token24] = ACTIONS(2120), - [aux_sym_cmd_identifier_token25] = ACTIONS(2120), - [aux_sym_cmd_identifier_token26] = ACTIONS(2120), - [aux_sym_cmd_identifier_token27] = ACTIONS(2120), - [aux_sym_cmd_identifier_token28] = ACTIONS(2120), - [aux_sym_cmd_identifier_token29] = ACTIONS(2120), - [aux_sym_cmd_identifier_token30] = ACTIONS(2120), - [aux_sym_cmd_identifier_token31] = ACTIONS(2120), - [aux_sym_cmd_identifier_token32] = ACTIONS(2120), - [aux_sym_cmd_identifier_token33] = ACTIONS(2120), - [aux_sym_cmd_identifier_token34] = ACTIONS(2118), - [aux_sym_cmd_identifier_token35] = ACTIONS(2120), - [aux_sym_cmd_identifier_token36] = ACTIONS(2120), - [aux_sym_cmd_identifier_token37] = ACTIONS(2120), - [aux_sym_cmd_identifier_token38] = ACTIONS(2118), - [aux_sym_cmd_identifier_token39] = ACTIONS(2120), - [aux_sym_cmd_identifier_token40] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2118), - [anon_sym_export_DASHenv] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_module] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_error] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_in2] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_make] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2118), - [anon_sym_catch] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_source] = ACTIONS(2118), - [anon_sym_source_DASHenv] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_hide] = ACTIONS(2118), - [anon_sym_hide_DASHenv] = ACTIONS(2118), - [anon_sym_overlay] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2306), + [aux_sym_cmd_identifier_token3] = ACTIONS(2306), + [aux_sym_cmd_identifier_token4] = ACTIONS(2306), + [aux_sym_cmd_identifier_token5] = ACTIONS(2306), + [aux_sym_cmd_identifier_token6] = ACTIONS(2306), + [aux_sym_cmd_identifier_token7] = ACTIONS(2306), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2306), + [aux_sym_cmd_identifier_token11] = ACTIONS(2306), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2306), + [aux_sym_cmd_identifier_token17] = ACTIONS(2306), + [aux_sym_cmd_identifier_token18] = ACTIONS(2306), + [aux_sym_cmd_identifier_token19] = ACTIONS(2306), + [aux_sym_cmd_identifier_token20] = ACTIONS(2306), + [aux_sym_cmd_identifier_token21] = ACTIONS(2306), + [aux_sym_cmd_identifier_token22] = ACTIONS(2306), + [aux_sym_cmd_identifier_token23] = ACTIONS(2306), + [aux_sym_cmd_identifier_token24] = ACTIONS(2306), + [aux_sym_cmd_identifier_token25] = ACTIONS(2306), + [aux_sym_cmd_identifier_token26] = ACTIONS(2306), + [aux_sym_cmd_identifier_token27] = ACTIONS(2306), + [aux_sym_cmd_identifier_token28] = ACTIONS(2306), + [aux_sym_cmd_identifier_token29] = ACTIONS(2306), + [aux_sym_cmd_identifier_token30] = ACTIONS(2306), + [aux_sym_cmd_identifier_token31] = ACTIONS(2306), + [aux_sym_cmd_identifier_token32] = ACTIONS(2306), + [aux_sym_cmd_identifier_token33] = ACTIONS(2306), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2306), + [aux_sym_cmd_identifier_token36] = ACTIONS(2306), + [aux_sym_cmd_identifier_token37] = ACTIONS(2306), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2306), + [aux_sym_cmd_identifier_token40] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2306), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2306), + [aux_sym__val_number_decimal_token4] = ACTIONS(2306), + [aux_sym__val_number_token1] = ACTIONS(2306), + [aux_sym__val_number_token2] = ACTIONS(2306), + [aux_sym__val_number_token3] = ACTIONS(2306), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2306), + [sym__str_single_quotes] = ACTIONS(2306), + [sym__str_back_ticks] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2306), }, [756] = { [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2185), - [aux_sym_cmd_identifier_token3] = ACTIONS(2185), - [aux_sym_cmd_identifier_token4] = ACTIONS(2185), - [aux_sym_cmd_identifier_token5] = ACTIONS(2185), - [aux_sym_cmd_identifier_token6] = ACTIONS(2185), - [aux_sym_cmd_identifier_token7] = ACTIONS(2185), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2185), - [aux_sym_cmd_identifier_token11] = ACTIONS(2185), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2185), - [aux_sym_cmd_identifier_token17] = ACTIONS(2185), - [aux_sym_cmd_identifier_token18] = ACTIONS(2185), - [aux_sym_cmd_identifier_token19] = ACTIONS(2185), - [aux_sym_cmd_identifier_token20] = ACTIONS(2185), - [aux_sym_cmd_identifier_token21] = ACTIONS(2185), - [aux_sym_cmd_identifier_token22] = ACTIONS(2185), - [aux_sym_cmd_identifier_token23] = ACTIONS(2185), - [aux_sym_cmd_identifier_token24] = ACTIONS(2185), - [aux_sym_cmd_identifier_token25] = ACTIONS(2185), - [aux_sym_cmd_identifier_token26] = ACTIONS(2185), - [aux_sym_cmd_identifier_token27] = ACTIONS(2185), - [aux_sym_cmd_identifier_token28] = ACTIONS(2185), - [aux_sym_cmd_identifier_token29] = ACTIONS(2185), - [aux_sym_cmd_identifier_token30] = ACTIONS(2185), - [aux_sym_cmd_identifier_token31] = ACTIONS(2185), - [aux_sym_cmd_identifier_token32] = ACTIONS(2185), - [aux_sym_cmd_identifier_token33] = ACTIONS(2185), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2185), - [aux_sym_cmd_identifier_token36] = ACTIONS(2185), - [aux_sym_cmd_identifier_token37] = ACTIONS(2185), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2185), - [aux_sym_cmd_identifier_token40] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2185), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), + [anon_sym_export] = ACTIONS(1538), + [anon_sym_alias] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_let_DASHenv] = ACTIONS(1538), + [anon_sym_mut] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [aux_sym_cmd_identifier_token1] = ACTIONS(1538), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1538), + [aux_sym_cmd_identifier_token9] = ACTIONS(1538), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1538), + [aux_sym_cmd_identifier_token13] = ACTIONS(1538), + [aux_sym_cmd_identifier_token14] = ACTIONS(1538), + [aux_sym_cmd_identifier_token15] = ACTIONS(1538), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1540), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1540), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1538), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [aux_sym_cmd_identifier_token37] = ACTIONS(1540), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1540), + [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1538), + [anon_sym_export_DASHenv] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_module] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_error] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_make] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1538), + [anon_sym_catch] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_source] = ACTIONS(1538), + [anon_sym_source_DASHenv] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_hide] = ACTIONS(1538), + [anon_sym_hide_DASHenv] = ACTIONS(1538), + [anon_sym_overlay] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1540), }, [757] = { [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_alias] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(1044), - [anon_sym_let_DASHenv] = ACTIONS(1044), - [anon_sym_mut] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [aux_sym_cmd_identifier_token1] = ACTIONS(1044), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1044), - [aux_sym_cmd_identifier_token9] = ACTIONS(1044), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1044), - [aux_sym_cmd_identifier_token13] = ACTIONS(1044), - [aux_sym_cmd_identifier_token14] = ACTIONS(1044), - [aux_sym_cmd_identifier_token15] = ACTIONS(1044), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1044), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [aux_sym_cmd_identifier_token37] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1044), - [anon_sym_export_DASHenv] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_use] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1044), - [anon_sym_loop] = ACTIONS(1044), - [anon_sym_make] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_source] = ACTIONS(1044), - [anon_sym_source_DASHenv] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_hide_DASHenv] = ACTIONS(1044), - [anon_sym_overlay] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1044), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1044), - [aux_sym__val_number_token5] = ACTIONS(1044), - [aux_sym__val_number_token6] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1988), + [aux_sym_cmd_identifier_token4] = ACTIONS(1988), + [aux_sym_cmd_identifier_token5] = ACTIONS(1988), + [aux_sym_cmd_identifier_token6] = ACTIONS(1988), + [aux_sym_cmd_identifier_token7] = ACTIONS(1988), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1988), + [aux_sym_cmd_identifier_token11] = ACTIONS(1988), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1988), + [aux_sym_cmd_identifier_token17] = ACTIONS(1988), + [aux_sym_cmd_identifier_token18] = ACTIONS(1988), + [aux_sym_cmd_identifier_token19] = ACTIONS(1988), + [aux_sym_cmd_identifier_token20] = ACTIONS(1988), + [aux_sym_cmd_identifier_token21] = ACTIONS(1988), + [aux_sym_cmd_identifier_token22] = ACTIONS(1988), + [aux_sym_cmd_identifier_token23] = ACTIONS(1988), + [aux_sym_cmd_identifier_token24] = ACTIONS(1988), + [aux_sym_cmd_identifier_token25] = ACTIONS(1988), + [aux_sym_cmd_identifier_token26] = ACTIONS(1988), + [aux_sym_cmd_identifier_token27] = ACTIONS(1988), + [aux_sym_cmd_identifier_token28] = ACTIONS(1988), + [aux_sym_cmd_identifier_token29] = ACTIONS(1988), + [aux_sym_cmd_identifier_token30] = ACTIONS(1988), + [aux_sym_cmd_identifier_token31] = ACTIONS(1988), + [aux_sym_cmd_identifier_token32] = ACTIONS(1988), + [aux_sym_cmd_identifier_token33] = ACTIONS(1988), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1988), + [aux_sym_cmd_identifier_token36] = ACTIONS(1988), + [aux_sym_cmd_identifier_token37] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1988), + [aux_sym_cmd_identifier_token40] = ACTIONS(1988), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1988), }, [758] = { [sym_comment] = STATE(758), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1512), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1512), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, [759] = { [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [aux_sym_cmd_identifier_token6] = ACTIONS(2310), + [aux_sym_cmd_identifier_token7] = ACTIONS(2310), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2310), + [aux_sym_cmd_identifier_token11] = ACTIONS(2310), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2310), + [aux_sym_cmd_identifier_token17] = ACTIONS(2310), + [aux_sym_cmd_identifier_token18] = ACTIONS(2310), + [aux_sym_cmd_identifier_token19] = ACTIONS(2310), + [aux_sym_cmd_identifier_token20] = ACTIONS(2310), + [aux_sym_cmd_identifier_token21] = ACTIONS(2310), + [aux_sym_cmd_identifier_token22] = ACTIONS(2310), + [aux_sym_cmd_identifier_token23] = ACTIONS(2310), + [aux_sym_cmd_identifier_token24] = ACTIONS(2310), + [aux_sym_cmd_identifier_token25] = ACTIONS(2310), + [aux_sym_cmd_identifier_token26] = ACTIONS(2310), + [aux_sym_cmd_identifier_token27] = ACTIONS(2310), + [aux_sym_cmd_identifier_token28] = ACTIONS(2310), + [aux_sym_cmd_identifier_token29] = ACTIONS(2310), + [aux_sym_cmd_identifier_token30] = ACTIONS(2310), + [aux_sym_cmd_identifier_token31] = ACTIONS(2310), + [aux_sym_cmd_identifier_token32] = ACTIONS(2310), + [aux_sym_cmd_identifier_token33] = ACTIONS(2310), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2310), + [aux_sym_cmd_identifier_token36] = ACTIONS(2310), + [aux_sym_cmd_identifier_token37] = ACTIONS(2310), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2310), + [aux_sym_cmd_identifier_token40] = ACTIONS(2310), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [sym__str_single_quotes] = ACTIONS(2310), + [sym__str_back_ticks] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2310), }, [760] = { [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [anon_sym_export] = ACTIONS(1506), + [anon_sym_alias] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_let_DASHenv] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [aux_sym_cmd_identifier_token1] = ACTIONS(1506), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1506), + [aux_sym_cmd_identifier_token9] = ACTIONS(1506), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1506), + [aux_sym_cmd_identifier_token13] = ACTIONS(1506), + [aux_sym_cmd_identifier_token14] = ACTIONS(1506), + [aux_sym_cmd_identifier_token15] = ACTIONS(1506), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1506), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1506), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1506), + [anon_sym_export_DASHenv] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_module] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_make] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_else] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_catch] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_source] = ACTIONS(1506), + [anon_sym_source_DASHenv] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_hide] = ACTIONS(1506), + [anon_sym_hide_DASHenv] = ACTIONS(1506), + [anon_sym_overlay] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1506), + [aux_sym__val_number_token5] = ACTIONS(1506), + [aux_sym__val_number_token6] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, [761] = { [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_make] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_catch] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, [762] = { [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(2312), - [anon_sym_alias] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_let_DASHenv] = ACTIONS(2312), - [anon_sym_mut] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [aux_sym_cmd_identifier_token1] = ACTIONS(2312), - [aux_sym_cmd_identifier_token2] = ACTIONS(2316), - [aux_sym_cmd_identifier_token3] = ACTIONS(2316), - [aux_sym_cmd_identifier_token4] = ACTIONS(2316), - [aux_sym_cmd_identifier_token5] = ACTIONS(2316), - [aux_sym_cmd_identifier_token6] = ACTIONS(2316), - [aux_sym_cmd_identifier_token7] = ACTIONS(2316), - [aux_sym_cmd_identifier_token8] = ACTIONS(2312), - [aux_sym_cmd_identifier_token9] = ACTIONS(2312), - [aux_sym_cmd_identifier_token10] = ACTIONS(2316), - [aux_sym_cmd_identifier_token11] = ACTIONS(2316), - [aux_sym_cmd_identifier_token12] = ACTIONS(2312), - [aux_sym_cmd_identifier_token13] = ACTIONS(2312), - [aux_sym_cmd_identifier_token14] = ACTIONS(2312), - [aux_sym_cmd_identifier_token15] = ACTIONS(2312), - [aux_sym_cmd_identifier_token16] = ACTIONS(2316), - [aux_sym_cmd_identifier_token17] = ACTIONS(2316), - [aux_sym_cmd_identifier_token18] = ACTIONS(2316), - [aux_sym_cmd_identifier_token19] = ACTIONS(2316), - [aux_sym_cmd_identifier_token20] = ACTIONS(2316), - [aux_sym_cmd_identifier_token21] = ACTIONS(2316), - [aux_sym_cmd_identifier_token22] = ACTIONS(2316), - [aux_sym_cmd_identifier_token23] = ACTIONS(2316), - [aux_sym_cmd_identifier_token24] = ACTIONS(2316), - [aux_sym_cmd_identifier_token25] = ACTIONS(2316), - [aux_sym_cmd_identifier_token26] = ACTIONS(2316), - [aux_sym_cmd_identifier_token27] = ACTIONS(2316), - [aux_sym_cmd_identifier_token28] = ACTIONS(2316), - [aux_sym_cmd_identifier_token29] = ACTIONS(2316), - [aux_sym_cmd_identifier_token30] = ACTIONS(2316), - [aux_sym_cmd_identifier_token31] = ACTIONS(2316), - [aux_sym_cmd_identifier_token32] = ACTIONS(2316), - [aux_sym_cmd_identifier_token33] = ACTIONS(2316), - [aux_sym_cmd_identifier_token34] = ACTIONS(2312), - [aux_sym_cmd_identifier_token35] = ACTIONS(2316), - [aux_sym_cmd_identifier_token36] = ACTIONS(2316), - [aux_sym_cmd_identifier_token37] = ACTIONS(2316), - [aux_sym_cmd_identifier_token38] = ACTIONS(2312), - [aux_sym_cmd_identifier_token39] = ACTIONS(2316), - [aux_sym_cmd_identifier_token40] = ACTIONS(2316), - [anon_sym_def] = ACTIONS(2312), - [anon_sym_export_DASHenv] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_module] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2316), - [anon_sym_DOLLAR] = ACTIONS(2316), - [anon_sym_error] = ACTIONS(2312), - [anon_sym_DASH2] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_in2] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_make] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_else] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2312), - [anon_sym_catch] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_source] = ACTIONS(2312), - [anon_sym_source_DASHenv] = ACTIONS(2312), - [anon_sym_register] = ACTIONS(2312), - [anon_sym_hide] = ACTIONS(2312), - [anon_sym_hide_DASHenv] = ACTIONS(2312), - [anon_sym_overlay] = ACTIONS(2312), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_PLUS2] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), - [aux_sym__val_number_decimal_token1] = ACTIONS(2312), - [aux_sym__val_number_decimal_token2] = ACTIONS(2316), - [aux_sym__val_number_decimal_token3] = ACTIONS(2316), - [aux_sym__val_number_decimal_token4] = ACTIONS(2316), - [aux_sym__val_number_token1] = ACTIONS(2316), - [aux_sym__val_number_token2] = ACTIONS(2316), - [aux_sym__val_number_token3] = ACTIONS(2316), - [aux_sym__val_number_token4] = ACTIONS(2312), - [aux_sym__val_number_token5] = ACTIONS(2312), - [aux_sym__val_number_token6] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym__str_single_quotes] = ACTIONS(2316), - [sym__str_back_ticks] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_alias] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_let_DASHenv] = ACTIONS(2571), + [anon_sym_mut] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [aux_sym_cmd_identifier_token1] = ACTIONS(2571), + [aux_sym_cmd_identifier_token2] = ACTIONS(2573), + [aux_sym_cmd_identifier_token3] = ACTIONS(2573), + [aux_sym_cmd_identifier_token4] = ACTIONS(2573), + [aux_sym_cmd_identifier_token5] = ACTIONS(2573), + [aux_sym_cmd_identifier_token6] = ACTIONS(2573), + [aux_sym_cmd_identifier_token7] = ACTIONS(2573), + [aux_sym_cmd_identifier_token8] = ACTIONS(2571), + [aux_sym_cmd_identifier_token9] = ACTIONS(2571), + [aux_sym_cmd_identifier_token10] = ACTIONS(2573), + [aux_sym_cmd_identifier_token11] = ACTIONS(2573), + [aux_sym_cmd_identifier_token12] = ACTIONS(2571), + [aux_sym_cmd_identifier_token13] = ACTIONS(2571), + [aux_sym_cmd_identifier_token14] = ACTIONS(2571), + [aux_sym_cmd_identifier_token15] = ACTIONS(2571), + [aux_sym_cmd_identifier_token16] = ACTIONS(2573), + [aux_sym_cmd_identifier_token17] = ACTIONS(2573), + [aux_sym_cmd_identifier_token18] = ACTIONS(2573), + [aux_sym_cmd_identifier_token19] = ACTIONS(2573), + [aux_sym_cmd_identifier_token20] = ACTIONS(2573), + [aux_sym_cmd_identifier_token21] = ACTIONS(2573), + [aux_sym_cmd_identifier_token22] = ACTIONS(2573), + [aux_sym_cmd_identifier_token23] = ACTIONS(2573), + [aux_sym_cmd_identifier_token24] = ACTIONS(2573), + [aux_sym_cmd_identifier_token25] = ACTIONS(2573), + [aux_sym_cmd_identifier_token26] = ACTIONS(2573), + [aux_sym_cmd_identifier_token27] = ACTIONS(2573), + [aux_sym_cmd_identifier_token28] = ACTIONS(2573), + [aux_sym_cmd_identifier_token29] = ACTIONS(2573), + [aux_sym_cmd_identifier_token30] = ACTIONS(2573), + [aux_sym_cmd_identifier_token31] = ACTIONS(2573), + [aux_sym_cmd_identifier_token32] = ACTIONS(2573), + [aux_sym_cmd_identifier_token33] = ACTIONS(2573), + [aux_sym_cmd_identifier_token34] = ACTIONS(2571), + [aux_sym_cmd_identifier_token35] = ACTIONS(2573), + [aux_sym_cmd_identifier_token36] = ACTIONS(2573), + [aux_sym_cmd_identifier_token37] = ACTIONS(2573), + [aux_sym_cmd_identifier_token38] = ACTIONS(2571), + [aux_sym_cmd_identifier_token39] = ACTIONS(2573), + [aux_sym_cmd_identifier_token40] = ACTIONS(2573), + [anon_sym_def] = ACTIONS(2571), + [anon_sym_export_DASHenv] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_use] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_DOLLAR] = ACTIONS(2573), + [anon_sym_error] = ACTIONS(2571), + [anon_sym_DASH2] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_in2] = ACTIONS(2571), + [anon_sym_loop] = ACTIONS(2571), + [anon_sym_make] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_match] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_catch] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_source] = ACTIONS(2571), + [anon_sym_source_DASHenv] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_hide] = ACTIONS(2571), + [anon_sym_hide_DASHenv] = ACTIONS(2571), + [anon_sym_overlay] = ACTIONS(2571), + [anon_sym_as] = ACTIONS(2571), + [anon_sym_PLUS2] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2573), + [aux_sym__val_number_decimal_token1] = ACTIONS(2571), + [aux_sym__val_number_decimal_token2] = ACTIONS(2573), + [aux_sym__val_number_decimal_token3] = ACTIONS(2573), + [aux_sym__val_number_decimal_token4] = ACTIONS(2573), + [aux_sym__val_number_token1] = ACTIONS(2573), + [aux_sym__val_number_token2] = ACTIONS(2573), + [aux_sym__val_number_token3] = ACTIONS(2573), + [aux_sym__val_number_token4] = ACTIONS(2571), + [aux_sym__val_number_token5] = ACTIONS(2571), + [aux_sym__val_number_token6] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym__str_single_quotes] = ACTIONS(2573), + [sym__str_back_ticks] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2573), }, [763] = { [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_alias] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_let_DASHenv] = ACTIONS(2543), + [anon_sym_mut] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [aux_sym_cmd_identifier_token1] = ACTIONS(2543), + [aux_sym_cmd_identifier_token2] = ACTIONS(2545), + [aux_sym_cmd_identifier_token3] = ACTIONS(2545), + [aux_sym_cmd_identifier_token4] = ACTIONS(2545), + [aux_sym_cmd_identifier_token5] = ACTIONS(2545), + [aux_sym_cmd_identifier_token6] = ACTIONS(2545), + [aux_sym_cmd_identifier_token7] = ACTIONS(2545), + [aux_sym_cmd_identifier_token8] = ACTIONS(2543), + [aux_sym_cmd_identifier_token9] = ACTIONS(2543), + [aux_sym_cmd_identifier_token10] = ACTIONS(2545), + [aux_sym_cmd_identifier_token11] = ACTIONS(2545), + [aux_sym_cmd_identifier_token12] = ACTIONS(2543), + [aux_sym_cmd_identifier_token13] = ACTIONS(2543), + [aux_sym_cmd_identifier_token14] = ACTIONS(2543), + [aux_sym_cmd_identifier_token15] = ACTIONS(2543), + [aux_sym_cmd_identifier_token16] = ACTIONS(2545), + [aux_sym_cmd_identifier_token17] = ACTIONS(2545), + [aux_sym_cmd_identifier_token18] = ACTIONS(2545), + [aux_sym_cmd_identifier_token19] = ACTIONS(2545), + [aux_sym_cmd_identifier_token20] = ACTIONS(2545), + [aux_sym_cmd_identifier_token21] = ACTIONS(2545), + [aux_sym_cmd_identifier_token22] = ACTIONS(2545), + [aux_sym_cmd_identifier_token23] = ACTIONS(2545), + [aux_sym_cmd_identifier_token24] = ACTIONS(2545), + [aux_sym_cmd_identifier_token25] = ACTIONS(2545), + [aux_sym_cmd_identifier_token26] = ACTIONS(2545), + [aux_sym_cmd_identifier_token27] = ACTIONS(2545), + [aux_sym_cmd_identifier_token28] = ACTIONS(2545), + [aux_sym_cmd_identifier_token29] = ACTIONS(2545), + [aux_sym_cmd_identifier_token30] = ACTIONS(2545), + [aux_sym_cmd_identifier_token31] = ACTIONS(2545), + [aux_sym_cmd_identifier_token32] = ACTIONS(2545), + [aux_sym_cmd_identifier_token33] = ACTIONS(2545), + [aux_sym_cmd_identifier_token34] = ACTIONS(2543), + [aux_sym_cmd_identifier_token35] = ACTIONS(2545), + [aux_sym_cmd_identifier_token36] = ACTIONS(2545), + [aux_sym_cmd_identifier_token37] = ACTIONS(2545), + [aux_sym_cmd_identifier_token38] = ACTIONS(2543), + [aux_sym_cmd_identifier_token39] = ACTIONS(2545), + [aux_sym_cmd_identifier_token40] = ACTIONS(2545), + [anon_sym_def] = ACTIONS(2543), + [anon_sym_export_DASHenv] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_error] = ACTIONS(2543), + [anon_sym_DASH2] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_in2] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_make] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_catch] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_source] = ACTIONS(2543), + [anon_sym_source_DASHenv] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_hide] = ACTIONS(2543), + [anon_sym_hide_DASHenv] = ACTIONS(2543), + [anon_sym_overlay] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_PLUS2] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2545), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2545), + [aux_sym__val_number_decimal_token1] = ACTIONS(2543), + [aux_sym__val_number_decimal_token2] = ACTIONS(2545), + [aux_sym__val_number_decimal_token3] = ACTIONS(2545), + [aux_sym__val_number_decimal_token4] = ACTIONS(2545), + [aux_sym__val_number_token1] = ACTIONS(2545), + [aux_sym__val_number_token2] = ACTIONS(2545), + [aux_sym__val_number_token3] = ACTIONS(2545), + [aux_sym__val_number_token4] = ACTIONS(2543), + [aux_sym__val_number_token5] = ACTIONS(2543), + [aux_sym__val_number_token6] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2545), + [sym__str_single_quotes] = ACTIONS(2545), + [sym__str_back_ticks] = ACTIONS(2545), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2545), }, [764] = { [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_alias] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_let_DASHenv] = ACTIONS(1496), + [anon_sym_mut] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [aux_sym_cmd_identifier_token1] = ACTIONS(1496), + [aux_sym_cmd_identifier_token2] = ACTIONS(1498), + [aux_sym_cmd_identifier_token3] = ACTIONS(1498), + [aux_sym_cmd_identifier_token4] = ACTIONS(1498), + [aux_sym_cmd_identifier_token5] = ACTIONS(1498), + [aux_sym_cmd_identifier_token6] = ACTIONS(1498), + [aux_sym_cmd_identifier_token7] = ACTIONS(1498), + [aux_sym_cmd_identifier_token8] = ACTIONS(1496), + [aux_sym_cmd_identifier_token9] = ACTIONS(1496), + [aux_sym_cmd_identifier_token10] = ACTIONS(1498), + [aux_sym_cmd_identifier_token11] = ACTIONS(1498), + [aux_sym_cmd_identifier_token12] = ACTIONS(1496), + [aux_sym_cmd_identifier_token13] = ACTIONS(1496), + [aux_sym_cmd_identifier_token14] = ACTIONS(1496), + [aux_sym_cmd_identifier_token15] = ACTIONS(1496), + [aux_sym_cmd_identifier_token16] = ACTIONS(1498), + [aux_sym_cmd_identifier_token17] = ACTIONS(1498), + [aux_sym_cmd_identifier_token18] = ACTIONS(1498), + [aux_sym_cmd_identifier_token19] = ACTIONS(1498), + [aux_sym_cmd_identifier_token20] = ACTIONS(1498), + [aux_sym_cmd_identifier_token21] = ACTIONS(1498), + [aux_sym_cmd_identifier_token22] = ACTIONS(1498), + [aux_sym_cmd_identifier_token23] = ACTIONS(1498), + [aux_sym_cmd_identifier_token24] = ACTIONS(1498), + [aux_sym_cmd_identifier_token25] = ACTIONS(1498), + [aux_sym_cmd_identifier_token26] = ACTIONS(1498), + [aux_sym_cmd_identifier_token27] = ACTIONS(1498), + [aux_sym_cmd_identifier_token28] = ACTIONS(1498), + [aux_sym_cmd_identifier_token29] = ACTIONS(1498), + [aux_sym_cmd_identifier_token30] = ACTIONS(1498), + [aux_sym_cmd_identifier_token31] = ACTIONS(1498), + [aux_sym_cmd_identifier_token32] = ACTIONS(1498), + [aux_sym_cmd_identifier_token33] = ACTIONS(1498), + [aux_sym_cmd_identifier_token34] = ACTIONS(1496), + [aux_sym_cmd_identifier_token35] = ACTIONS(1498), + [aux_sym_cmd_identifier_token36] = ACTIONS(1498), + [aux_sym_cmd_identifier_token37] = ACTIONS(1498), + [aux_sym_cmd_identifier_token38] = ACTIONS(1496), + [aux_sym_cmd_identifier_token39] = ACTIONS(1498), + [aux_sym_cmd_identifier_token40] = ACTIONS(1498), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_export_DASHenv] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_error] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_make] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_catch] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_source] = ACTIONS(1496), + [anon_sym_source_DASHenv] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_hide] = ACTIONS(1496), + [anon_sym_hide_DASHenv] = ACTIONS(1496), + [anon_sym_overlay] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1496), + [aux_sym__val_number_token5] = ACTIONS(1496), + [aux_sym__val_number_token6] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, [765] = { [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_let_DASHenv] = ACTIONS(2488), + [anon_sym_mut] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [aux_sym_cmd_identifier_token1] = ACTIONS(2488), + [aux_sym_cmd_identifier_token2] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [aux_sym_cmd_identifier_token6] = ACTIONS(2490), + [aux_sym_cmd_identifier_token7] = ACTIONS(2490), + [aux_sym_cmd_identifier_token8] = ACTIONS(2488), + [aux_sym_cmd_identifier_token9] = ACTIONS(2488), + [aux_sym_cmd_identifier_token10] = ACTIONS(2490), + [aux_sym_cmd_identifier_token11] = ACTIONS(2490), + [aux_sym_cmd_identifier_token12] = ACTIONS(2488), + [aux_sym_cmd_identifier_token13] = ACTIONS(2488), + [aux_sym_cmd_identifier_token14] = ACTIONS(2488), + [aux_sym_cmd_identifier_token15] = ACTIONS(2488), + [aux_sym_cmd_identifier_token16] = ACTIONS(2490), + [aux_sym_cmd_identifier_token17] = ACTIONS(2490), + [aux_sym_cmd_identifier_token18] = ACTIONS(2490), + [aux_sym_cmd_identifier_token19] = ACTIONS(2490), + [aux_sym_cmd_identifier_token20] = ACTIONS(2490), + [aux_sym_cmd_identifier_token21] = ACTIONS(2490), + [aux_sym_cmd_identifier_token22] = ACTIONS(2490), + [aux_sym_cmd_identifier_token23] = ACTIONS(2490), + [aux_sym_cmd_identifier_token24] = ACTIONS(2490), + [aux_sym_cmd_identifier_token25] = ACTIONS(2490), + [aux_sym_cmd_identifier_token26] = ACTIONS(2490), + [aux_sym_cmd_identifier_token27] = ACTIONS(2490), + [aux_sym_cmd_identifier_token28] = ACTIONS(2490), + [aux_sym_cmd_identifier_token29] = ACTIONS(2490), + [aux_sym_cmd_identifier_token30] = ACTIONS(2490), + [aux_sym_cmd_identifier_token31] = ACTIONS(2490), + [aux_sym_cmd_identifier_token32] = ACTIONS(2490), + [aux_sym_cmd_identifier_token33] = ACTIONS(2490), + [aux_sym_cmd_identifier_token34] = ACTIONS(2488), + [aux_sym_cmd_identifier_token35] = ACTIONS(2490), + [aux_sym_cmd_identifier_token36] = ACTIONS(2490), + [aux_sym_cmd_identifier_token37] = ACTIONS(2490), + [aux_sym_cmd_identifier_token38] = ACTIONS(2488), + [aux_sym_cmd_identifier_token39] = ACTIONS(2490), + [aux_sym_cmd_identifier_token40] = ACTIONS(2490), + [anon_sym_def] = ACTIONS(2488), + [anon_sym_export_DASHenv] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_error] = ACTIONS(2488), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_in2] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_make] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_source] = ACTIONS(2488), + [anon_sym_source_DASHenv] = ACTIONS(2488), + [anon_sym_register] = ACTIONS(2488), + [anon_sym_hide] = ACTIONS(2488), + [anon_sym_hide_DASHenv] = ACTIONS(2488), + [anon_sym_overlay] = ACTIONS(2488), + [anon_sym_as] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), + [aux_sym__val_number_decimal_token1] = ACTIONS(2488), + [aux_sym__val_number_decimal_token2] = ACTIONS(2490), + [aux_sym__val_number_decimal_token3] = ACTIONS(2490), + [aux_sym__val_number_decimal_token4] = ACTIONS(2490), + [aux_sym__val_number_token1] = ACTIONS(2490), + [aux_sym__val_number_token2] = ACTIONS(2490), + [aux_sym__val_number_token3] = ACTIONS(2490), + [aux_sym__val_number_token4] = ACTIONS(2488), + [aux_sym__val_number_token5] = ACTIONS(2488), + [aux_sym__val_number_token6] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym__str_single_quotes] = ACTIONS(2490), + [sym__str_back_ticks] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2490), }, [766] = { [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_alias] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_let_DASHenv] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [aux_sym_cmd_identifier_token1] = ACTIONS(1841), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1841), - [aux_sym_cmd_identifier_token9] = ACTIONS(1841), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1841), - [aux_sym_cmd_identifier_token13] = ACTIONS(1841), - [aux_sym_cmd_identifier_token14] = ACTIONS(1841), - [aux_sym_cmd_identifier_token15] = ACTIONS(1841), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1841), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_export_DASHenv] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_make] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_catch] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_source] = ACTIONS(1841), - [anon_sym_source_DASHenv] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1841), - [anon_sym_hide] = ACTIONS(1841), - [anon_sym_hide_DASHenv] = ACTIONS(1841), - [anon_sym_overlay] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_PLUS2] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1841), - [aux_sym__val_number_token5] = ACTIONS(1841), - [aux_sym__val_number_token6] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_alias] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_DASHenv] = ACTIONS(2492), + [anon_sym_mut] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2492), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2492), + [aux_sym_cmd_identifier_token9] = ACTIONS(2492), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2492), + [aux_sym_cmd_identifier_token13] = ACTIONS(2492), + [aux_sym_cmd_identifier_token14] = ACTIONS(2492), + [aux_sym_cmd_identifier_token15] = ACTIONS(2492), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2492), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [aux_sym_cmd_identifier_token37] = ACTIONS(2494), + [aux_sym_cmd_identifier_token38] = ACTIONS(2492), + [aux_sym_cmd_identifier_token39] = ACTIONS(2494), + [aux_sym_cmd_identifier_token40] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2492), + [anon_sym_export_DASHenv] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_error] = ACTIONS(2492), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_in2] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_make] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_source] = ACTIONS(2492), + [anon_sym_source_DASHenv] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_hide] = ACTIONS(2492), + [anon_sym_hide_DASHenv] = ACTIONS(2492), + [anon_sym_overlay] = ACTIONS(2492), + [anon_sym_as] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), + [aux_sym__val_number_decimal_token1] = ACTIONS(2492), + [aux_sym__val_number_decimal_token2] = ACTIONS(2494), + [aux_sym__val_number_decimal_token3] = ACTIONS(2494), + [aux_sym__val_number_decimal_token4] = ACTIONS(2494), + [aux_sym__val_number_token1] = ACTIONS(2494), + [aux_sym__val_number_token2] = ACTIONS(2494), + [aux_sym__val_number_token3] = ACTIONS(2494), + [aux_sym__val_number_token4] = ACTIONS(2492), + [aux_sym__val_number_token5] = ACTIONS(2492), + [aux_sym__val_number_token6] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym__str_single_quotes] = ACTIONS(2494), + [sym__str_back_ticks] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2494), }, [767] = { [sym_comment] = STATE(767), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_alias] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_DASHenv] = ACTIONS(2518), - [anon_sym_mut] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [aux_sym_cmd_identifier_token1] = ACTIONS(2518), - [aux_sym_cmd_identifier_token2] = ACTIONS(2520), - [aux_sym_cmd_identifier_token3] = ACTIONS(2520), - [aux_sym_cmd_identifier_token4] = ACTIONS(2520), - [aux_sym_cmd_identifier_token5] = ACTIONS(2520), - [aux_sym_cmd_identifier_token6] = ACTIONS(2520), - [aux_sym_cmd_identifier_token7] = ACTIONS(2520), - [aux_sym_cmd_identifier_token8] = ACTIONS(2518), - [aux_sym_cmd_identifier_token9] = ACTIONS(2518), - [aux_sym_cmd_identifier_token10] = ACTIONS(2520), - [aux_sym_cmd_identifier_token11] = ACTIONS(2520), - [aux_sym_cmd_identifier_token12] = ACTIONS(2518), - [aux_sym_cmd_identifier_token13] = ACTIONS(2518), - [aux_sym_cmd_identifier_token14] = ACTIONS(2518), - [aux_sym_cmd_identifier_token15] = ACTIONS(2518), - [aux_sym_cmd_identifier_token16] = ACTIONS(2520), - [aux_sym_cmd_identifier_token17] = ACTIONS(2520), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2520), - [aux_sym_cmd_identifier_token20] = ACTIONS(2520), - [aux_sym_cmd_identifier_token21] = ACTIONS(2520), - [aux_sym_cmd_identifier_token22] = ACTIONS(2520), - [aux_sym_cmd_identifier_token23] = ACTIONS(2520), - [aux_sym_cmd_identifier_token24] = ACTIONS(2520), - [aux_sym_cmd_identifier_token25] = ACTIONS(2520), - [aux_sym_cmd_identifier_token26] = ACTIONS(2520), - [aux_sym_cmd_identifier_token27] = ACTIONS(2520), - [aux_sym_cmd_identifier_token28] = ACTIONS(2520), - [aux_sym_cmd_identifier_token29] = ACTIONS(2520), - [aux_sym_cmd_identifier_token30] = ACTIONS(2520), - [aux_sym_cmd_identifier_token31] = ACTIONS(2520), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2520), - [aux_sym_cmd_identifier_token34] = ACTIONS(2518), - [aux_sym_cmd_identifier_token35] = ACTIONS(2520), - [aux_sym_cmd_identifier_token36] = ACTIONS(2520), - [aux_sym_cmd_identifier_token37] = ACTIONS(2520), - [aux_sym_cmd_identifier_token38] = ACTIONS(2518), - [aux_sym_cmd_identifier_token39] = ACTIONS(2520), - [aux_sym_cmd_identifier_token40] = ACTIONS(2520), - [anon_sym_def] = ACTIONS(2518), - [anon_sym_export_DASHenv] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_error] = ACTIONS(2518), - [anon_sym_DASH2] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_in2] = ACTIONS(2518), - [anon_sym_loop] = ACTIONS(2518), - [anon_sym_make] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_catch] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_source] = ACTIONS(2518), - [anon_sym_source_DASHenv] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_hide] = ACTIONS(2518), - [anon_sym_hide_DASHenv] = ACTIONS(2518), - [anon_sym_overlay] = ACTIONS(2518), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_PLUS2] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2518), - [aux_sym__val_number_decimal_token2] = ACTIONS(2520), - [aux_sym__val_number_decimal_token3] = ACTIONS(2520), - [aux_sym__val_number_decimal_token4] = ACTIONS(2520), - [aux_sym__val_number_token1] = ACTIONS(2520), - [aux_sym__val_number_token2] = ACTIONS(2520), - [aux_sym__val_number_token3] = ACTIONS(2520), - [aux_sym__val_number_token4] = ACTIONS(2518), - [aux_sym__val_number_token5] = ACTIONS(2518), - [aux_sym__val_number_token6] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym__str_single_quotes] = ACTIONS(2520), - [sym__str_back_ticks] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2520), + [anon_sym_export] = ACTIONS(2555), + [anon_sym_alias] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2555), + [anon_sym_let_DASHenv] = ACTIONS(2555), + [anon_sym_mut] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [aux_sym_cmd_identifier_token1] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2557), + [aux_sym_cmd_identifier_token3] = ACTIONS(2557), + [aux_sym_cmd_identifier_token4] = ACTIONS(2557), + [aux_sym_cmd_identifier_token5] = ACTIONS(2557), + [aux_sym_cmd_identifier_token6] = ACTIONS(2557), + [aux_sym_cmd_identifier_token7] = ACTIONS(2557), + [aux_sym_cmd_identifier_token8] = ACTIONS(2555), + [aux_sym_cmd_identifier_token9] = ACTIONS(2555), + [aux_sym_cmd_identifier_token10] = ACTIONS(2557), + [aux_sym_cmd_identifier_token11] = ACTIONS(2557), + [aux_sym_cmd_identifier_token12] = ACTIONS(2555), + [aux_sym_cmd_identifier_token13] = ACTIONS(2555), + [aux_sym_cmd_identifier_token14] = ACTIONS(2555), + [aux_sym_cmd_identifier_token15] = ACTIONS(2555), + [aux_sym_cmd_identifier_token16] = ACTIONS(2557), + [aux_sym_cmd_identifier_token17] = ACTIONS(2557), + [aux_sym_cmd_identifier_token18] = ACTIONS(2557), + [aux_sym_cmd_identifier_token19] = ACTIONS(2557), + [aux_sym_cmd_identifier_token20] = ACTIONS(2557), + [aux_sym_cmd_identifier_token21] = ACTIONS(2557), + [aux_sym_cmd_identifier_token22] = ACTIONS(2557), + [aux_sym_cmd_identifier_token23] = ACTIONS(2557), + [aux_sym_cmd_identifier_token24] = ACTIONS(2557), + [aux_sym_cmd_identifier_token25] = ACTIONS(2557), + [aux_sym_cmd_identifier_token26] = ACTIONS(2557), + [aux_sym_cmd_identifier_token27] = ACTIONS(2557), + [aux_sym_cmd_identifier_token28] = ACTIONS(2557), + [aux_sym_cmd_identifier_token29] = ACTIONS(2557), + [aux_sym_cmd_identifier_token30] = ACTIONS(2557), + [aux_sym_cmd_identifier_token31] = ACTIONS(2557), + [aux_sym_cmd_identifier_token32] = ACTIONS(2557), + [aux_sym_cmd_identifier_token33] = ACTIONS(2557), + [aux_sym_cmd_identifier_token34] = ACTIONS(2555), + [aux_sym_cmd_identifier_token35] = ACTIONS(2557), + [aux_sym_cmd_identifier_token36] = ACTIONS(2557), + [aux_sym_cmd_identifier_token37] = ACTIONS(2557), + [aux_sym_cmd_identifier_token38] = ACTIONS(2555), + [aux_sym_cmd_identifier_token39] = ACTIONS(2557), + [aux_sym_cmd_identifier_token40] = ACTIONS(2557), + [anon_sym_def] = ACTIONS(2555), + [anon_sym_export_DASHenv] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym_module] = ACTIONS(2555), + [anon_sym_use] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2557), + [anon_sym_error] = ACTIONS(2555), + [anon_sym_DASH2] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_in2] = ACTIONS(2555), + [anon_sym_loop] = ACTIONS(2555), + [anon_sym_make] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_catch] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_source] = ACTIONS(2555), + [anon_sym_source_DASHenv] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_hide] = ACTIONS(2555), + [anon_sym_hide_DASHenv] = ACTIONS(2555), + [anon_sym_overlay] = ACTIONS(2555), + [anon_sym_as] = ACTIONS(2555), + [anon_sym_PLUS2] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2557), + [aux_sym__val_number_decimal_token1] = ACTIONS(2555), + [aux_sym__val_number_decimal_token2] = ACTIONS(2557), + [aux_sym__val_number_decimal_token3] = ACTIONS(2557), + [aux_sym__val_number_decimal_token4] = ACTIONS(2557), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [aux_sym__val_number_token4] = ACTIONS(2555), + [aux_sym__val_number_token5] = ACTIONS(2555), + [aux_sym__val_number_token6] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym__str_single_quotes] = ACTIONS(2557), + [sym__str_back_ticks] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2557), }, [768] = { [sym_comment] = STATE(768), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_alias] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_let_DASHenv] = ACTIONS(2502), - [anon_sym_mut] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [aux_sym_cmd_identifier_token1] = ACTIONS(2502), - [aux_sym_cmd_identifier_token2] = ACTIONS(2504), - [aux_sym_cmd_identifier_token3] = ACTIONS(2504), - [aux_sym_cmd_identifier_token4] = ACTIONS(2504), - [aux_sym_cmd_identifier_token5] = ACTIONS(2504), - [aux_sym_cmd_identifier_token6] = ACTIONS(2504), - [aux_sym_cmd_identifier_token7] = ACTIONS(2504), - [aux_sym_cmd_identifier_token8] = ACTIONS(2502), - [aux_sym_cmd_identifier_token9] = ACTIONS(2502), - [aux_sym_cmd_identifier_token10] = ACTIONS(2504), - [aux_sym_cmd_identifier_token11] = ACTIONS(2504), - [aux_sym_cmd_identifier_token12] = ACTIONS(2502), - [aux_sym_cmd_identifier_token13] = ACTIONS(2502), - [aux_sym_cmd_identifier_token14] = ACTIONS(2502), - [aux_sym_cmd_identifier_token15] = ACTIONS(2502), - [aux_sym_cmd_identifier_token16] = ACTIONS(2504), - [aux_sym_cmd_identifier_token17] = ACTIONS(2504), - [aux_sym_cmd_identifier_token18] = ACTIONS(2504), - [aux_sym_cmd_identifier_token19] = ACTIONS(2504), - [aux_sym_cmd_identifier_token20] = ACTIONS(2504), - [aux_sym_cmd_identifier_token21] = ACTIONS(2504), - [aux_sym_cmd_identifier_token22] = ACTIONS(2504), - [aux_sym_cmd_identifier_token23] = ACTIONS(2504), - [aux_sym_cmd_identifier_token24] = ACTIONS(2504), - [aux_sym_cmd_identifier_token25] = ACTIONS(2504), - [aux_sym_cmd_identifier_token26] = ACTIONS(2504), - [aux_sym_cmd_identifier_token27] = ACTIONS(2504), - [aux_sym_cmd_identifier_token28] = ACTIONS(2504), - [aux_sym_cmd_identifier_token29] = ACTIONS(2504), - [aux_sym_cmd_identifier_token30] = ACTIONS(2504), - [aux_sym_cmd_identifier_token31] = ACTIONS(2504), - [aux_sym_cmd_identifier_token32] = ACTIONS(2504), - [aux_sym_cmd_identifier_token33] = ACTIONS(2504), - [aux_sym_cmd_identifier_token34] = ACTIONS(2502), - [aux_sym_cmd_identifier_token35] = ACTIONS(2504), - [aux_sym_cmd_identifier_token36] = ACTIONS(2504), - [aux_sym_cmd_identifier_token37] = ACTIONS(2504), - [aux_sym_cmd_identifier_token38] = ACTIONS(2502), - [aux_sym_cmd_identifier_token39] = ACTIONS(2504), - [aux_sym_cmd_identifier_token40] = ACTIONS(2504), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_export_DASHenv] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_DOLLAR] = ACTIONS(2504), - [anon_sym_error] = ACTIONS(2502), - [anon_sym_DASH2] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_in2] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_make] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_catch] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_source] = ACTIONS(2502), - [anon_sym_source_DASHenv] = ACTIONS(2502), - [anon_sym_register] = ACTIONS(2502), - [anon_sym_hide] = ACTIONS(2502), - [anon_sym_hide_DASHenv] = ACTIONS(2502), - [anon_sym_overlay] = ACTIONS(2502), - [anon_sym_as] = ACTIONS(2502), - [anon_sym_PLUS2] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), - [aux_sym__val_number_decimal_token1] = ACTIONS(2502), - [aux_sym__val_number_decimal_token2] = ACTIONS(2504), - [aux_sym__val_number_decimal_token3] = ACTIONS(2504), - [aux_sym__val_number_decimal_token4] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2504), - [aux_sym__val_number_token2] = ACTIONS(2504), - [aux_sym__val_number_token3] = ACTIONS(2504), - [aux_sym__val_number_token4] = ACTIONS(2502), - [aux_sym__val_number_token5] = ACTIONS(2502), - [aux_sym__val_number_token6] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2504), - [sym__str_single_quotes] = ACTIONS(2504), - [sym__str_back_ticks] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2639), + [anon_sym_alias] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_let_DASHenv] = ACTIONS(2639), + [anon_sym_mut] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [aux_sym_cmd_identifier_token1] = ACTIONS(2639), + [aux_sym_cmd_identifier_token2] = ACTIONS(2641), + [aux_sym_cmd_identifier_token3] = ACTIONS(2641), + [aux_sym_cmd_identifier_token4] = ACTIONS(2641), + [aux_sym_cmd_identifier_token5] = ACTIONS(2641), + [aux_sym_cmd_identifier_token6] = ACTIONS(2641), + [aux_sym_cmd_identifier_token7] = ACTIONS(2641), + [aux_sym_cmd_identifier_token8] = ACTIONS(2639), + [aux_sym_cmd_identifier_token9] = ACTIONS(2639), + [aux_sym_cmd_identifier_token10] = ACTIONS(2641), + [aux_sym_cmd_identifier_token11] = ACTIONS(2641), + [aux_sym_cmd_identifier_token12] = ACTIONS(2639), + [aux_sym_cmd_identifier_token13] = ACTIONS(2639), + [aux_sym_cmd_identifier_token14] = ACTIONS(2639), + [aux_sym_cmd_identifier_token15] = ACTIONS(2639), + [aux_sym_cmd_identifier_token16] = ACTIONS(2641), + [aux_sym_cmd_identifier_token17] = ACTIONS(2641), + [aux_sym_cmd_identifier_token18] = ACTIONS(2641), + [aux_sym_cmd_identifier_token19] = ACTIONS(2641), + [aux_sym_cmd_identifier_token20] = ACTIONS(2641), + [aux_sym_cmd_identifier_token21] = ACTIONS(2641), + [aux_sym_cmd_identifier_token22] = ACTIONS(2641), + [aux_sym_cmd_identifier_token23] = ACTIONS(2641), + [aux_sym_cmd_identifier_token24] = ACTIONS(2641), + [aux_sym_cmd_identifier_token25] = ACTIONS(2641), + [aux_sym_cmd_identifier_token26] = ACTIONS(2641), + [aux_sym_cmd_identifier_token27] = ACTIONS(2641), + [aux_sym_cmd_identifier_token28] = ACTIONS(2641), + [aux_sym_cmd_identifier_token29] = ACTIONS(2641), + [aux_sym_cmd_identifier_token30] = ACTIONS(2641), + [aux_sym_cmd_identifier_token31] = ACTIONS(2641), + [aux_sym_cmd_identifier_token32] = ACTIONS(2641), + [aux_sym_cmd_identifier_token33] = ACTIONS(2641), + [aux_sym_cmd_identifier_token34] = ACTIONS(2639), + [aux_sym_cmd_identifier_token35] = ACTIONS(2641), + [aux_sym_cmd_identifier_token36] = ACTIONS(2641), + [aux_sym_cmd_identifier_token37] = ACTIONS(2641), + [aux_sym_cmd_identifier_token38] = ACTIONS(2639), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [anon_sym_def] = ACTIONS(2639), + [anon_sym_export_DASHenv] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_module] = ACTIONS(2639), + [anon_sym_use] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(2641), + [anon_sym_error] = ACTIONS(2639), + [anon_sym_DASH2] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_in2] = ACTIONS(2639), + [anon_sym_loop] = ACTIONS(2639), + [anon_sym_make] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_source] = ACTIONS(2639), + [anon_sym_source_DASHenv] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_hide] = ACTIONS(2639), + [anon_sym_hide_DASHenv] = ACTIONS(2639), + [anon_sym_overlay] = ACTIONS(2639), + [anon_sym_as] = ACTIONS(2639), + [anon_sym_PLUS2] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2641), + [aux_sym__val_number_decimal_token1] = ACTIONS(2639), + [aux_sym__val_number_decimal_token2] = ACTIONS(2641), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2641), + [aux_sym__val_number_token1] = ACTIONS(2641), + [aux_sym__val_number_token2] = ACTIONS(2641), + [aux_sym__val_number_token3] = ACTIONS(2641), + [aux_sym__val_number_token4] = ACTIONS(2639), + [aux_sym__val_number_token5] = ACTIONS(2639), + [aux_sym__val_number_token6] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym__str_single_quotes] = ACTIONS(2641), + [sym__str_back_ticks] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2641), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2641), }, [769] = { [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_alias] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_let_DASHenv] = ACTIONS(2506), - [anon_sym_mut] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [aux_sym_cmd_identifier_token1] = ACTIONS(2506), - [aux_sym_cmd_identifier_token2] = ACTIONS(2508), - [aux_sym_cmd_identifier_token3] = ACTIONS(2508), - [aux_sym_cmd_identifier_token4] = ACTIONS(2508), - [aux_sym_cmd_identifier_token5] = ACTIONS(2508), - [aux_sym_cmd_identifier_token6] = ACTIONS(2508), - [aux_sym_cmd_identifier_token7] = ACTIONS(2508), - [aux_sym_cmd_identifier_token8] = ACTIONS(2506), - [aux_sym_cmd_identifier_token9] = ACTIONS(2506), - [aux_sym_cmd_identifier_token10] = ACTIONS(2508), - [aux_sym_cmd_identifier_token11] = ACTIONS(2508), - [aux_sym_cmd_identifier_token12] = ACTIONS(2506), - [aux_sym_cmd_identifier_token13] = ACTIONS(2506), - [aux_sym_cmd_identifier_token14] = ACTIONS(2506), - [aux_sym_cmd_identifier_token15] = ACTIONS(2506), - [aux_sym_cmd_identifier_token16] = ACTIONS(2508), - [aux_sym_cmd_identifier_token17] = ACTIONS(2508), - [aux_sym_cmd_identifier_token18] = ACTIONS(2508), - [aux_sym_cmd_identifier_token19] = ACTIONS(2508), - [aux_sym_cmd_identifier_token20] = ACTIONS(2508), - [aux_sym_cmd_identifier_token21] = ACTIONS(2508), - [aux_sym_cmd_identifier_token22] = ACTIONS(2508), - [aux_sym_cmd_identifier_token23] = ACTIONS(2508), - [aux_sym_cmd_identifier_token24] = ACTIONS(2508), - [aux_sym_cmd_identifier_token25] = ACTIONS(2508), - [aux_sym_cmd_identifier_token26] = ACTIONS(2508), - [aux_sym_cmd_identifier_token27] = ACTIONS(2508), - [aux_sym_cmd_identifier_token28] = ACTIONS(2508), - [aux_sym_cmd_identifier_token29] = ACTIONS(2508), - [aux_sym_cmd_identifier_token30] = ACTIONS(2508), - [aux_sym_cmd_identifier_token31] = ACTIONS(2508), - [aux_sym_cmd_identifier_token32] = ACTIONS(2508), - [aux_sym_cmd_identifier_token33] = ACTIONS(2508), - [aux_sym_cmd_identifier_token34] = ACTIONS(2506), - [aux_sym_cmd_identifier_token35] = ACTIONS(2508), - [aux_sym_cmd_identifier_token36] = ACTIONS(2508), - [aux_sym_cmd_identifier_token37] = ACTIONS(2508), - [aux_sym_cmd_identifier_token38] = ACTIONS(2506), - [aux_sym_cmd_identifier_token39] = ACTIONS(2508), - [aux_sym_cmd_identifier_token40] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2506), - [anon_sym_export_DASHenv] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_error] = ACTIONS(2506), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_in2] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_make] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_catch] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_source] = ACTIONS(2506), - [anon_sym_source_DASHenv] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_hide] = ACTIONS(2506), - [anon_sym_hide_DASHenv] = ACTIONS(2506), - [anon_sym_overlay] = ACTIONS(2506), - [anon_sym_as] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), - [aux_sym__val_number_decimal_token1] = ACTIONS(2506), - [aux_sym__val_number_decimal_token2] = ACTIONS(2508), - [aux_sym__val_number_decimal_token3] = ACTIONS(2508), - [aux_sym__val_number_decimal_token4] = ACTIONS(2508), - [aux_sym__val_number_token1] = ACTIONS(2508), - [aux_sym__val_number_token2] = ACTIONS(2508), - [aux_sym__val_number_token3] = ACTIONS(2508), - [aux_sym__val_number_token4] = ACTIONS(2506), - [aux_sym__val_number_token5] = ACTIONS(2506), - [aux_sym__val_number_token6] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym__str_single_quotes] = ACTIONS(2508), - [sym__str_back_ticks] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2508), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_alias] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_let_DASHenv] = ACTIONS(2496), + [anon_sym_mut] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2496), + [aux_sym_cmd_identifier_token9] = ACTIONS(2496), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2496), + [aux_sym_cmd_identifier_token13] = ACTIONS(2496), + [aux_sym_cmd_identifier_token14] = ACTIONS(2496), + [aux_sym_cmd_identifier_token15] = ACTIONS(2496), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2496), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [aux_sym_cmd_identifier_token37] = ACTIONS(2498), + [aux_sym_cmd_identifier_token38] = ACTIONS(2496), + [aux_sym_cmd_identifier_token39] = ACTIONS(2498), + [aux_sym_cmd_identifier_token40] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_export_DASHenv] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2498), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH2] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_in2] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_make] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_as] = ACTIONS(2496), + [anon_sym_PLUS2] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), + [aux_sym__val_number_decimal_token1] = ACTIONS(2496), + [aux_sym__val_number_decimal_token2] = ACTIONS(2498), + [aux_sym__val_number_decimal_token3] = ACTIONS(2498), + [aux_sym__val_number_decimal_token4] = ACTIONS(2498), + [aux_sym__val_number_token1] = ACTIONS(2498), + [aux_sym__val_number_token2] = ACTIONS(2498), + [aux_sym__val_number_token3] = ACTIONS(2498), + [aux_sym__val_number_token4] = ACTIONS(2496), + [aux_sym__val_number_token5] = ACTIONS(2496), + [aux_sym__val_number_token6] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2498), }, [770] = { [sym_comment] = STATE(770), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2480), - [aux_sym_cmd_identifier_token3] = ACTIONS(2480), - [aux_sym_cmd_identifier_token4] = ACTIONS(2480), - [aux_sym_cmd_identifier_token5] = ACTIONS(2480), - [aux_sym_cmd_identifier_token6] = ACTIONS(2480), - [aux_sym_cmd_identifier_token7] = ACTIONS(2480), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2480), - [aux_sym_cmd_identifier_token11] = ACTIONS(2480), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2480), - [aux_sym_cmd_identifier_token17] = ACTIONS(2480), - [aux_sym_cmd_identifier_token18] = ACTIONS(2480), - [aux_sym_cmd_identifier_token19] = ACTIONS(2480), - [aux_sym_cmd_identifier_token20] = ACTIONS(2480), - [aux_sym_cmd_identifier_token21] = ACTIONS(2480), - [aux_sym_cmd_identifier_token22] = ACTIONS(2480), - [aux_sym_cmd_identifier_token23] = ACTIONS(2480), - [aux_sym_cmd_identifier_token24] = ACTIONS(2480), - [aux_sym_cmd_identifier_token25] = ACTIONS(2480), - [aux_sym_cmd_identifier_token26] = ACTIONS(2480), - [aux_sym_cmd_identifier_token27] = ACTIONS(2480), - [aux_sym_cmd_identifier_token28] = ACTIONS(2480), - [aux_sym_cmd_identifier_token29] = ACTIONS(2480), - [aux_sym_cmd_identifier_token30] = ACTIONS(2480), - [aux_sym_cmd_identifier_token31] = ACTIONS(2480), - [aux_sym_cmd_identifier_token32] = ACTIONS(2480), - [aux_sym_cmd_identifier_token33] = ACTIONS(2480), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2480), - [aux_sym_cmd_identifier_token36] = ACTIONS(2480), - [aux_sym_cmd_identifier_token37] = ACTIONS(2480), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2480), - [aux_sym_cmd_identifier_token40] = ACTIONS(2480), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_DOLLAR] = ACTIONS(2480), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2480), - [aux_sym__val_number_decimal_token3] = ACTIONS(2480), - [aux_sym__val_number_decimal_token4] = ACTIONS(2480), - [aux_sym__val_number_token1] = ACTIONS(2480), - [aux_sym__val_number_token2] = ACTIONS(2480), - [aux_sym__val_number_token3] = ACTIONS(2480), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym__str_single_quotes] = ACTIONS(2480), - [sym__str_back_ticks] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2480), + [anon_sym_export] = ACTIONS(1994), + [anon_sym_alias] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_let_DASHenv] = ACTIONS(1994), + [anon_sym_mut] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [aux_sym_cmd_identifier_token1] = ACTIONS(1994), + [aux_sym_cmd_identifier_token2] = ACTIONS(1996), + [aux_sym_cmd_identifier_token3] = ACTIONS(1996), + [aux_sym_cmd_identifier_token4] = ACTIONS(1996), + [aux_sym_cmd_identifier_token5] = ACTIONS(1996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1996), + [aux_sym_cmd_identifier_token7] = ACTIONS(1996), + [aux_sym_cmd_identifier_token8] = ACTIONS(1994), + [aux_sym_cmd_identifier_token9] = ACTIONS(1994), + [aux_sym_cmd_identifier_token10] = ACTIONS(1996), + [aux_sym_cmd_identifier_token11] = ACTIONS(1996), + [aux_sym_cmd_identifier_token12] = ACTIONS(1994), + [aux_sym_cmd_identifier_token13] = ACTIONS(1994), + [aux_sym_cmd_identifier_token14] = ACTIONS(1994), + [aux_sym_cmd_identifier_token15] = ACTIONS(1994), + [aux_sym_cmd_identifier_token16] = ACTIONS(1996), + [aux_sym_cmd_identifier_token17] = ACTIONS(1996), + [aux_sym_cmd_identifier_token18] = ACTIONS(1996), + [aux_sym_cmd_identifier_token19] = ACTIONS(1996), + [aux_sym_cmd_identifier_token20] = ACTIONS(1996), + [aux_sym_cmd_identifier_token21] = ACTIONS(1996), + [aux_sym_cmd_identifier_token22] = ACTIONS(1996), + [aux_sym_cmd_identifier_token23] = ACTIONS(1996), + [aux_sym_cmd_identifier_token24] = ACTIONS(1996), + [aux_sym_cmd_identifier_token25] = ACTIONS(1996), + [aux_sym_cmd_identifier_token26] = ACTIONS(1996), + [aux_sym_cmd_identifier_token27] = ACTIONS(1996), + [aux_sym_cmd_identifier_token28] = ACTIONS(1996), + [aux_sym_cmd_identifier_token29] = ACTIONS(1996), + [aux_sym_cmd_identifier_token30] = ACTIONS(1996), + [aux_sym_cmd_identifier_token31] = ACTIONS(1996), + [aux_sym_cmd_identifier_token32] = ACTIONS(1996), + [aux_sym_cmd_identifier_token33] = ACTIONS(1996), + [aux_sym_cmd_identifier_token34] = ACTIONS(1994), + [aux_sym_cmd_identifier_token35] = ACTIONS(1996), + [aux_sym_cmd_identifier_token36] = ACTIONS(1996), + [aux_sym_cmd_identifier_token37] = ACTIONS(1996), + [aux_sym_cmd_identifier_token38] = ACTIONS(1994), + [aux_sym_cmd_identifier_token39] = ACTIONS(1996), + [aux_sym_cmd_identifier_token40] = ACTIONS(1996), + [anon_sym_def] = ACTIONS(1994), + [anon_sym_export_DASHenv] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_module] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_error] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_in2] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_make] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1994), + [anon_sym_catch] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_source] = ACTIONS(1994), + [anon_sym_source_DASHenv] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_hide] = ACTIONS(1994), + [anon_sym_hide_DASHenv] = ACTIONS(1994), + [anon_sym_overlay] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1994), + [anon_sym_PLUS2] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1996), + [aux_sym__val_number_decimal_token3] = ACTIONS(1996), + [aux_sym__val_number_decimal_token4] = ACTIONS(1996), + [aux_sym__val_number_token1] = ACTIONS(1996), + [aux_sym__val_number_token2] = ACTIONS(1996), + [aux_sym__val_number_token3] = ACTIONS(1996), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1996), + [sym__str_back_ticks] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1996), }, [771] = { - [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(771), - [aux_sym_shebang_repeat1] = STATE(779), - [aux_sym_cmd_identifier_token1] = ACTIONS(2522), - [aux_sym_cmd_identifier_token2] = ACTIONS(2524), - [aux_sym_cmd_identifier_token3] = ACTIONS(2524), - [aux_sym_cmd_identifier_token4] = ACTIONS(2524), - [aux_sym_cmd_identifier_token5] = ACTIONS(2524), - [aux_sym_cmd_identifier_token6] = ACTIONS(2524), - [aux_sym_cmd_identifier_token7] = ACTIONS(2524), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2522), - [aux_sym_cmd_identifier_token10] = ACTIONS(2524), - [aux_sym_cmd_identifier_token11] = ACTIONS(2524), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2522), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2522), - [aux_sym_cmd_identifier_token16] = ACTIONS(2524), - [aux_sym_cmd_identifier_token17] = ACTIONS(2524), - [aux_sym_cmd_identifier_token18] = ACTIONS(2524), - [aux_sym_cmd_identifier_token19] = ACTIONS(2524), - [aux_sym_cmd_identifier_token20] = ACTIONS(2524), - [aux_sym_cmd_identifier_token21] = ACTIONS(2524), - [aux_sym_cmd_identifier_token22] = ACTIONS(2524), - [aux_sym_cmd_identifier_token23] = ACTIONS(2524), - [aux_sym_cmd_identifier_token24] = ACTIONS(2524), - [aux_sym_cmd_identifier_token25] = ACTIONS(2524), - [aux_sym_cmd_identifier_token26] = ACTIONS(2524), - [aux_sym_cmd_identifier_token27] = ACTIONS(2524), - [aux_sym_cmd_identifier_token28] = ACTIONS(2524), - [aux_sym_cmd_identifier_token29] = ACTIONS(2524), - [aux_sym_cmd_identifier_token30] = ACTIONS(2524), - [aux_sym_cmd_identifier_token31] = ACTIONS(2524), - [aux_sym_cmd_identifier_token32] = ACTIONS(2524), - [aux_sym_cmd_identifier_token33] = ACTIONS(2524), - [aux_sym_cmd_identifier_token34] = ACTIONS(2522), - [aux_sym_cmd_identifier_token35] = ACTIONS(2524), - [aux_sym_cmd_identifier_token36] = ACTIONS(2524), - [aux_sym_cmd_identifier_token37] = ACTIONS(2524), - [aux_sym_cmd_identifier_token38] = ACTIONS(2522), - [aux_sym_cmd_identifier_token39] = ACTIONS(2524), - [aux_sym_cmd_identifier_token40] = ACTIONS(2524), - [sym__newline] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_err_GT_PIPE] = ACTIONS(2528), - [anon_sym_out_GT_PIPE] = ACTIONS(2528), - [anon_sym_e_GT_PIPE] = ACTIONS(2528), - [anon_sym_o_GT_PIPE] = ACTIONS(2528), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2528), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2528), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2528), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_DOLLAR] = ACTIONS(2522), - [anon_sym_DASH2] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_where] = ACTIONS(2524), - [aux_sym_expr_unary_token1] = ACTIONS(2524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2524), - [anon_sym_DOT_DOT_LT] = ACTIONS(2524), - [anon_sym_null] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [aux_sym__val_number_decimal_token1] = ACTIONS(2522), - [aux_sym__val_number_decimal_token2] = ACTIONS(2524), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [aux_sym__val_number_token1] = ACTIONS(2524), - [aux_sym__val_number_token2] = ACTIONS(2524), - [aux_sym__val_number_token3] = ACTIONS(2524), - [aux_sym__val_number_token4] = ACTIONS(2522), - [aux_sym__val_number_token5] = ACTIONS(2522), - [aux_sym__val_number_token6] = ACTIONS(2522), - [anon_sym_0b] = ACTIONS(2522), - [anon_sym_0o] = ACTIONS(2522), - [anon_sym_0x] = ACTIONS(2522), - [sym_val_date] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym__str_single_quotes] = ACTIONS(2524), - [sym__str_back_ticks] = ACTIONS(2524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2524), - [aux_sym_env_var_token1] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_alias] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_let_DASHenv] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [aux_sym_cmd_identifier_token1] = ACTIONS(2547), + [aux_sym_cmd_identifier_token2] = ACTIONS(2549), + [aux_sym_cmd_identifier_token3] = ACTIONS(2549), + [aux_sym_cmd_identifier_token4] = ACTIONS(2549), + [aux_sym_cmd_identifier_token5] = ACTIONS(2549), + [aux_sym_cmd_identifier_token6] = ACTIONS(2549), + [aux_sym_cmd_identifier_token7] = ACTIONS(2549), + [aux_sym_cmd_identifier_token8] = ACTIONS(2547), + [aux_sym_cmd_identifier_token9] = ACTIONS(2547), + [aux_sym_cmd_identifier_token10] = ACTIONS(2549), + [aux_sym_cmd_identifier_token11] = ACTIONS(2549), + [aux_sym_cmd_identifier_token12] = ACTIONS(2547), + [aux_sym_cmd_identifier_token13] = ACTIONS(2547), + [aux_sym_cmd_identifier_token14] = ACTIONS(2547), + [aux_sym_cmd_identifier_token15] = ACTIONS(2547), + [aux_sym_cmd_identifier_token16] = ACTIONS(2549), + [aux_sym_cmd_identifier_token17] = ACTIONS(2549), + [aux_sym_cmd_identifier_token18] = ACTIONS(2549), + [aux_sym_cmd_identifier_token19] = ACTIONS(2549), + [aux_sym_cmd_identifier_token20] = ACTIONS(2549), + [aux_sym_cmd_identifier_token21] = ACTIONS(2549), + [aux_sym_cmd_identifier_token22] = ACTIONS(2549), + [aux_sym_cmd_identifier_token23] = ACTIONS(2549), + [aux_sym_cmd_identifier_token24] = ACTIONS(2549), + [aux_sym_cmd_identifier_token25] = ACTIONS(2549), + [aux_sym_cmd_identifier_token26] = ACTIONS(2549), + [aux_sym_cmd_identifier_token27] = ACTIONS(2549), + [aux_sym_cmd_identifier_token28] = ACTIONS(2549), + [aux_sym_cmd_identifier_token29] = ACTIONS(2549), + [aux_sym_cmd_identifier_token30] = ACTIONS(2549), + [aux_sym_cmd_identifier_token31] = ACTIONS(2549), + [aux_sym_cmd_identifier_token32] = ACTIONS(2549), + [aux_sym_cmd_identifier_token33] = ACTIONS(2549), + [aux_sym_cmd_identifier_token34] = ACTIONS(2547), + [aux_sym_cmd_identifier_token35] = ACTIONS(2549), + [aux_sym_cmd_identifier_token36] = ACTIONS(2549), + [aux_sym_cmd_identifier_token37] = ACTIONS(2549), + [aux_sym_cmd_identifier_token38] = ACTIONS(2547), + [aux_sym_cmd_identifier_token39] = ACTIONS(2549), + [aux_sym_cmd_identifier_token40] = ACTIONS(2549), + [anon_sym_def] = ACTIONS(2547), + [anon_sym_export_DASHenv] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_error] = ACTIONS(2547), + [anon_sym_DASH2] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_in2] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_make] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_source] = ACTIONS(2547), + [anon_sym_source_DASHenv] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_hide] = ACTIONS(2547), + [anon_sym_hide_DASHenv] = ACTIONS(2547), + [anon_sym_overlay] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_PLUS2] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2549), + [aux_sym__val_number_decimal_token1] = ACTIONS(2547), + [aux_sym__val_number_decimal_token2] = ACTIONS(2549), + [aux_sym__val_number_decimal_token3] = ACTIONS(2549), + [aux_sym__val_number_decimal_token4] = ACTIONS(2549), + [aux_sym__val_number_token1] = ACTIONS(2549), + [aux_sym__val_number_token2] = ACTIONS(2549), + [aux_sym__val_number_token3] = ACTIONS(2549), + [aux_sym__val_number_token4] = ACTIONS(2547), + [aux_sym__val_number_token5] = ACTIONS(2547), + [aux_sym__val_number_token6] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym__str_single_quotes] = ACTIONS(2549), + [sym__str_back_ticks] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2549), }, [772] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(8142), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2822), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(3054), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(3055), - [sym_val_bool] = STATE(2877), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(2823), - [sym_val_number] = STATE(3055), - [sym__val_number_decimal] = STATE(2521), - [sym__val_number] = STATE(3020), - [sym_val_duration] = STATE(3055), - [sym_val_filesize] = STATE(3055), - [sym_val_binary] = STATE(3055), - [sym_val_string] = STATE(3055), - [sym__raw_str] = STATE(3067), - [sym__str_double_quotes] = STATE(3067), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7375), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7747), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(3055), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(2881), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7165), [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(897), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym__match_pattern_list_repeat1] = STATE(1286), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2544), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_LT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2552), - [aux_sym__val_number_decimal_token2] = ACTIONS(2554), - [aux_sym__val_number_decimal_token3] = ACTIONS(2556), - [aux_sym__val_number_decimal_token4] = ACTIONS(2558), - [aux_sym__val_number_token1] = ACTIONS(2560), - [aux_sym__val_number_token2] = ACTIONS(2560), - [aux_sym__val_number_token3] = ACTIONS(2560), - [aux_sym__val_number_token4] = ACTIONS(2562), - [aux_sym__val_number_token5] = ACTIONS(2562), - [aux_sym__val_number_token6] = ACTIONS(2562), - [anon_sym_0b] = ACTIONS(2564), - [anon_sym_0o] = ACTIONS(2566), - [anon_sym_0x] = ACTIONS(2566), - [sym_val_date] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym__str_single_quotes] = ACTIONS(2572), - [sym__str_back_ticks] = ACTIONS(2572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_alias] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_let_DASHenv] = ACTIONS(2504), + [anon_sym_mut] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [aux_sym_cmd_identifier_token1] = ACTIONS(2504), + [aux_sym_cmd_identifier_token2] = ACTIONS(2506), + [aux_sym_cmd_identifier_token3] = ACTIONS(2506), + [aux_sym_cmd_identifier_token4] = ACTIONS(2506), + [aux_sym_cmd_identifier_token5] = ACTIONS(2506), + [aux_sym_cmd_identifier_token6] = ACTIONS(2506), + [aux_sym_cmd_identifier_token7] = ACTIONS(2506), + [aux_sym_cmd_identifier_token8] = ACTIONS(2504), + [aux_sym_cmd_identifier_token9] = ACTIONS(2504), + [aux_sym_cmd_identifier_token10] = ACTIONS(2506), + [aux_sym_cmd_identifier_token11] = ACTIONS(2506), + [aux_sym_cmd_identifier_token12] = ACTIONS(2504), + [aux_sym_cmd_identifier_token13] = ACTIONS(2504), + [aux_sym_cmd_identifier_token14] = ACTIONS(2504), + [aux_sym_cmd_identifier_token15] = ACTIONS(2504), + [aux_sym_cmd_identifier_token16] = ACTIONS(2506), + [aux_sym_cmd_identifier_token17] = ACTIONS(2506), + [aux_sym_cmd_identifier_token18] = ACTIONS(2506), + [aux_sym_cmd_identifier_token19] = ACTIONS(2506), + [aux_sym_cmd_identifier_token20] = ACTIONS(2506), + [aux_sym_cmd_identifier_token21] = ACTIONS(2506), + [aux_sym_cmd_identifier_token22] = ACTIONS(2506), + [aux_sym_cmd_identifier_token23] = ACTIONS(2506), + [aux_sym_cmd_identifier_token24] = ACTIONS(2506), + [aux_sym_cmd_identifier_token25] = ACTIONS(2506), + [aux_sym_cmd_identifier_token26] = ACTIONS(2506), + [aux_sym_cmd_identifier_token27] = ACTIONS(2506), + [aux_sym_cmd_identifier_token28] = ACTIONS(2506), + [aux_sym_cmd_identifier_token29] = ACTIONS(2506), + [aux_sym_cmd_identifier_token30] = ACTIONS(2506), + [aux_sym_cmd_identifier_token31] = ACTIONS(2506), + [aux_sym_cmd_identifier_token32] = ACTIONS(2506), + [aux_sym_cmd_identifier_token33] = ACTIONS(2506), + [aux_sym_cmd_identifier_token34] = ACTIONS(2504), + [aux_sym_cmd_identifier_token35] = ACTIONS(2506), + [aux_sym_cmd_identifier_token36] = ACTIONS(2506), + [aux_sym_cmd_identifier_token37] = ACTIONS(2506), + [aux_sym_cmd_identifier_token38] = ACTIONS(2504), + [aux_sym_cmd_identifier_token39] = ACTIONS(2506), + [aux_sym_cmd_identifier_token40] = ACTIONS(2506), + [anon_sym_def] = ACTIONS(2504), + [anon_sym_export_DASHenv] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_error] = ACTIONS(2504), + [anon_sym_DASH2] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_in2] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_make] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_source] = ACTIONS(2504), + [anon_sym_source_DASHenv] = ACTIONS(2504), + [anon_sym_register] = ACTIONS(2504), + [anon_sym_hide] = ACTIONS(2504), + [anon_sym_hide_DASHenv] = ACTIONS(2504), + [anon_sym_overlay] = ACTIONS(2504), + [anon_sym_as] = ACTIONS(2504), + [anon_sym_PLUS2] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), + [aux_sym__val_number_decimal_token1] = ACTIONS(2504), + [aux_sym__val_number_decimal_token2] = ACTIONS(2506), + [aux_sym__val_number_decimal_token3] = ACTIONS(2506), + [aux_sym__val_number_decimal_token4] = ACTIONS(2506), + [aux_sym__val_number_token1] = ACTIONS(2506), + [aux_sym__val_number_token2] = ACTIONS(2506), + [aux_sym__val_number_token3] = ACTIONS(2506), + [aux_sym__val_number_token4] = ACTIONS(2504), + [aux_sym__val_number_token5] = ACTIONS(2504), + [aux_sym__val_number_token6] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2506), + [sym__str_single_quotes] = ACTIONS(2506), + [sym__str_back_ticks] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2506), }, [773] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(8142), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2822), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(3054), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(3055), - [sym_val_bool] = STATE(2877), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(2823), - [sym_val_number] = STATE(3055), - [sym__val_number_decimal] = STATE(2521), - [sym__val_number] = STATE(3020), - [sym_val_duration] = STATE(3055), - [sym_val_filesize] = STATE(3055), - [sym_val_binary] = STATE(3055), - [sym_val_string] = STATE(3055), - [sym__raw_str] = STATE(3067), - [sym__str_double_quotes] = STATE(3067), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7398), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7971), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(3055), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(2881), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7165), [sym_comment] = STATE(773), - [aux_sym_shebang_repeat1] = STATE(900), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym__match_pattern_list_repeat1] = STATE(1286), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_RBRACK] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2544), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_LT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2552), - [aux_sym__val_number_decimal_token2] = ACTIONS(2554), - [aux_sym__val_number_decimal_token3] = ACTIONS(2556), - [aux_sym__val_number_decimal_token4] = ACTIONS(2558), - [aux_sym__val_number_token1] = ACTIONS(2560), - [aux_sym__val_number_token2] = ACTIONS(2560), - [aux_sym__val_number_token3] = ACTIONS(2560), - [aux_sym__val_number_token4] = ACTIONS(2562), - [aux_sym__val_number_token5] = ACTIONS(2562), - [aux_sym__val_number_token6] = ACTIONS(2562), - [anon_sym_0b] = ACTIONS(2564), - [anon_sym_0o] = ACTIONS(2566), - [anon_sym_0x] = ACTIONS(2566), - [sym_val_date] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym__str_single_quotes] = ACTIONS(2572), - [sym__str_back_ticks] = ACTIONS(2572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_let_DASHenv] = ACTIONS(1872), + [anon_sym_mut] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [aux_sym_cmd_identifier_token1] = ACTIONS(1872), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1872), + [aux_sym_cmd_identifier_token9] = ACTIONS(1872), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1872), + [aux_sym_cmd_identifier_token13] = ACTIONS(1872), + [aux_sym_cmd_identifier_token14] = ACTIONS(1872), + [aux_sym_cmd_identifier_token15] = ACTIONS(1872), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1872), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1872), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_export_DASHenv] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_in2] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_make] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1872), + [anon_sym_catch] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_source] = ACTIONS(1872), + [anon_sym_source_DASHenv] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_hide] = ACTIONS(1872), + [anon_sym_hide_DASHenv] = ACTIONS(1872), + [anon_sym_overlay] = ACTIONS(1872), + [anon_sym_as] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1872), + [aux_sym__val_number_token5] = ACTIONS(1872), + [aux_sym__val_number_token6] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [774] = { - [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(5246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2590), - [aux_sym_cmd_identifier_token2] = ACTIONS(2592), - [aux_sym_cmd_identifier_token3] = ACTIONS(2592), - [aux_sym_cmd_identifier_token4] = ACTIONS(2592), - [aux_sym_cmd_identifier_token5] = ACTIONS(2592), - [aux_sym_cmd_identifier_token6] = ACTIONS(2592), - [aux_sym_cmd_identifier_token7] = ACTIONS(2592), - [aux_sym_cmd_identifier_token8] = ACTIONS(2592), - [aux_sym_cmd_identifier_token9] = ACTIONS(2590), - [aux_sym_cmd_identifier_token10] = ACTIONS(2592), - [aux_sym_cmd_identifier_token11] = ACTIONS(2592), - [aux_sym_cmd_identifier_token12] = ACTIONS(2592), - [aux_sym_cmd_identifier_token13] = ACTIONS(2590), - [aux_sym_cmd_identifier_token14] = ACTIONS(2592), - [aux_sym_cmd_identifier_token15] = ACTIONS(2590), - [aux_sym_cmd_identifier_token16] = ACTIONS(2592), - [aux_sym_cmd_identifier_token17] = ACTIONS(2592), - [aux_sym_cmd_identifier_token18] = ACTIONS(2592), - [aux_sym_cmd_identifier_token19] = ACTIONS(2592), - [aux_sym_cmd_identifier_token20] = ACTIONS(2592), - [aux_sym_cmd_identifier_token21] = ACTIONS(2592), - [aux_sym_cmd_identifier_token22] = ACTIONS(2592), - [aux_sym_cmd_identifier_token23] = ACTIONS(2592), - [aux_sym_cmd_identifier_token24] = ACTIONS(2592), - [aux_sym_cmd_identifier_token25] = ACTIONS(2592), - [aux_sym_cmd_identifier_token26] = ACTIONS(2592), - [aux_sym_cmd_identifier_token27] = ACTIONS(2592), - [aux_sym_cmd_identifier_token28] = ACTIONS(2592), - [aux_sym_cmd_identifier_token29] = ACTIONS(2592), - [aux_sym_cmd_identifier_token30] = ACTIONS(2592), - [aux_sym_cmd_identifier_token31] = ACTIONS(2592), - [aux_sym_cmd_identifier_token32] = ACTIONS(2592), - [aux_sym_cmd_identifier_token33] = ACTIONS(2592), - [aux_sym_cmd_identifier_token34] = ACTIONS(2590), - [aux_sym_cmd_identifier_token35] = ACTIONS(2592), - [aux_sym_cmd_identifier_token36] = ACTIONS(2592), - [aux_sym_cmd_identifier_token37] = ACTIONS(2592), - [aux_sym_cmd_identifier_token38] = ACTIONS(2590), - [aux_sym_cmd_identifier_token39] = ACTIONS(2592), - [aux_sym_cmd_identifier_token40] = ACTIONS(2592), - [sym__newline] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_err_GT_PIPE] = ACTIONS(2528), - [anon_sym_out_GT_PIPE] = ACTIONS(2528), - [anon_sym_e_GT_PIPE] = ACTIONS(2528), - [anon_sym_o_GT_PIPE] = ACTIONS(2528), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2528), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2528), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2528), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_DOLLAR] = ACTIONS(2590), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_match] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_where] = ACTIONS(2592), - [aux_sym_expr_unary_token1] = ACTIONS(2592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2592), - [anon_sym_DOT_DOT_LT] = ACTIONS(2592), - [anon_sym_null] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2590), - [anon_sym_false] = ACTIONS(2590), - [aux_sym__val_number_decimal_token1] = ACTIONS(2590), - [aux_sym__val_number_decimal_token2] = ACTIONS(2592), - [aux_sym__val_number_decimal_token3] = ACTIONS(2592), - [aux_sym__val_number_decimal_token4] = ACTIONS(2592), - [aux_sym__val_number_token1] = ACTIONS(2592), - [aux_sym__val_number_token2] = ACTIONS(2592), - [aux_sym__val_number_token3] = ACTIONS(2592), - [aux_sym__val_number_token4] = ACTIONS(2590), - [aux_sym__val_number_token5] = ACTIONS(2590), - [aux_sym__val_number_token6] = ACTIONS(2590), - [anon_sym_0b] = ACTIONS(2590), - [anon_sym_0o] = ACTIONS(2590), - [anon_sym_0x] = ACTIONS(2590), - [sym_val_date] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [sym__str_single_quotes] = ACTIONS(2592), - [sym__str_back_ticks] = ACTIONS(2592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), - [aux_sym_env_var_token1] = ACTIONS(2590), - [anon_sym_CARET] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2020), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2020), }, [775] = { - [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(5246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2596), - [aux_sym_cmd_identifier_token2] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2598), - [aux_sym_cmd_identifier_token4] = ACTIONS(2598), - [aux_sym_cmd_identifier_token5] = ACTIONS(2598), - [aux_sym_cmd_identifier_token6] = ACTIONS(2598), - [aux_sym_cmd_identifier_token7] = ACTIONS(2598), - [aux_sym_cmd_identifier_token8] = ACTIONS(2598), - [aux_sym_cmd_identifier_token9] = ACTIONS(2596), - [aux_sym_cmd_identifier_token10] = ACTIONS(2598), - [aux_sym_cmd_identifier_token11] = ACTIONS(2598), - [aux_sym_cmd_identifier_token12] = ACTIONS(2598), - [aux_sym_cmd_identifier_token13] = ACTIONS(2596), - [aux_sym_cmd_identifier_token14] = ACTIONS(2598), - [aux_sym_cmd_identifier_token15] = ACTIONS(2596), - [aux_sym_cmd_identifier_token16] = ACTIONS(2598), - [aux_sym_cmd_identifier_token17] = ACTIONS(2598), - [aux_sym_cmd_identifier_token18] = ACTIONS(2598), - [aux_sym_cmd_identifier_token19] = ACTIONS(2598), - [aux_sym_cmd_identifier_token20] = ACTIONS(2598), - [aux_sym_cmd_identifier_token21] = ACTIONS(2598), - [aux_sym_cmd_identifier_token22] = ACTIONS(2598), - [aux_sym_cmd_identifier_token23] = ACTIONS(2598), - [aux_sym_cmd_identifier_token24] = ACTIONS(2598), - [aux_sym_cmd_identifier_token25] = ACTIONS(2598), - [aux_sym_cmd_identifier_token26] = ACTIONS(2598), - [aux_sym_cmd_identifier_token27] = ACTIONS(2598), - [aux_sym_cmd_identifier_token28] = ACTIONS(2598), - [aux_sym_cmd_identifier_token29] = ACTIONS(2598), - [aux_sym_cmd_identifier_token30] = ACTIONS(2598), - [aux_sym_cmd_identifier_token31] = ACTIONS(2598), - [aux_sym_cmd_identifier_token32] = ACTIONS(2598), - [aux_sym_cmd_identifier_token33] = ACTIONS(2598), - [aux_sym_cmd_identifier_token34] = ACTIONS(2596), - [aux_sym_cmd_identifier_token35] = ACTIONS(2598), - [aux_sym_cmd_identifier_token36] = ACTIONS(2598), - [aux_sym_cmd_identifier_token37] = ACTIONS(2598), - [aux_sym_cmd_identifier_token38] = ACTIONS(2596), - [aux_sym_cmd_identifier_token39] = ACTIONS(2598), - [aux_sym_cmd_identifier_token40] = ACTIONS(2598), - [sym__newline] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_DASH2] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_match] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_DOT_DOT] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_where] = ACTIONS(2598), - [aux_sym_expr_unary_token1] = ACTIONS(2598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2598), - [anon_sym_DOT_DOT_LT] = ACTIONS(2598), - [anon_sym_null] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [aux_sym__val_number_decimal_token1] = ACTIONS(2596), - [aux_sym__val_number_decimal_token2] = ACTIONS(2598), - [aux_sym__val_number_decimal_token3] = ACTIONS(2598), - [aux_sym__val_number_decimal_token4] = ACTIONS(2598), - [aux_sym__val_number_token1] = ACTIONS(2598), - [aux_sym__val_number_token2] = ACTIONS(2598), - [aux_sym__val_number_token3] = ACTIONS(2598), - [aux_sym__val_number_token4] = ACTIONS(2596), - [aux_sym__val_number_token5] = ACTIONS(2596), - [aux_sym__val_number_token6] = ACTIONS(2596), - [anon_sym_0b] = ACTIONS(2596), - [anon_sym_0o] = ACTIONS(2596), - [anon_sym_0x] = ACTIONS(2596), - [sym_val_date] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym__str_single_quotes] = ACTIONS(2598), - [sym__str_back_ticks] = ACTIONS(2598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2598), - [aux_sym_env_var_token1] = ACTIONS(2596), - [anon_sym_CARET] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_alias] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_let_DASHenv] = ACTIONS(2508), + [anon_sym_mut] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [aux_sym_cmd_identifier_token1] = ACTIONS(2508), + [aux_sym_cmd_identifier_token2] = ACTIONS(2510), + [aux_sym_cmd_identifier_token3] = ACTIONS(2510), + [aux_sym_cmd_identifier_token4] = ACTIONS(2510), + [aux_sym_cmd_identifier_token5] = ACTIONS(2510), + [aux_sym_cmd_identifier_token6] = ACTIONS(2510), + [aux_sym_cmd_identifier_token7] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2508), + [aux_sym_cmd_identifier_token9] = ACTIONS(2508), + [aux_sym_cmd_identifier_token10] = ACTIONS(2510), + [aux_sym_cmd_identifier_token11] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2508), + [aux_sym_cmd_identifier_token13] = ACTIONS(2508), + [aux_sym_cmd_identifier_token14] = ACTIONS(2508), + [aux_sym_cmd_identifier_token15] = ACTIONS(2508), + [aux_sym_cmd_identifier_token16] = ACTIONS(2510), + [aux_sym_cmd_identifier_token17] = ACTIONS(2510), + [aux_sym_cmd_identifier_token18] = ACTIONS(2510), + [aux_sym_cmd_identifier_token19] = ACTIONS(2510), + [aux_sym_cmd_identifier_token20] = ACTIONS(2510), + [aux_sym_cmd_identifier_token21] = ACTIONS(2510), + [aux_sym_cmd_identifier_token22] = ACTIONS(2510), + [aux_sym_cmd_identifier_token23] = ACTIONS(2510), + [aux_sym_cmd_identifier_token24] = ACTIONS(2510), + [aux_sym_cmd_identifier_token25] = ACTIONS(2510), + [aux_sym_cmd_identifier_token26] = ACTIONS(2510), + [aux_sym_cmd_identifier_token27] = ACTIONS(2510), + [aux_sym_cmd_identifier_token28] = ACTIONS(2510), + [aux_sym_cmd_identifier_token29] = ACTIONS(2510), + [aux_sym_cmd_identifier_token30] = ACTIONS(2510), + [aux_sym_cmd_identifier_token31] = ACTIONS(2510), + [aux_sym_cmd_identifier_token32] = ACTIONS(2510), + [aux_sym_cmd_identifier_token33] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2508), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = ACTIONS(2510), + [aux_sym_cmd_identifier_token37] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2508), + [aux_sym_cmd_identifier_token39] = ACTIONS(2510), + [aux_sym_cmd_identifier_token40] = ACTIONS(2510), + [anon_sym_def] = ACTIONS(2508), + [anon_sym_export_DASHenv] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_DOLLAR] = ACTIONS(2510), + [anon_sym_error] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in2] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_make] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_source] = ACTIONS(2508), + [anon_sym_source_DASHenv] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_hide] = ACTIONS(2508), + [anon_sym_hide_DASHenv] = ACTIONS(2508), + [anon_sym_overlay] = ACTIONS(2508), + [anon_sym_as] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), + [aux_sym__val_number_decimal_token1] = ACTIONS(2508), + [aux_sym__val_number_decimal_token2] = ACTIONS(2510), + [aux_sym__val_number_decimal_token3] = ACTIONS(2510), + [aux_sym__val_number_decimal_token4] = ACTIONS(2510), + [aux_sym__val_number_token1] = ACTIONS(2510), + [aux_sym__val_number_token2] = ACTIONS(2510), + [aux_sym__val_number_token3] = ACTIONS(2510), + [aux_sym__val_number_token4] = ACTIONS(2508), + [aux_sym__val_number_token5] = ACTIONS(2508), + [aux_sym__val_number_token6] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [sym__str_single_quotes] = ACTIONS(2510), + [sym__str_back_ticks] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2510), }, [776] = { [sym_comment] = STATE(776), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(2606), - [aux_sym__immediate_decimal_token2] = ACTIONS(2608), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [aux_sym_record_entry_token1] = ACTIONS(1585), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_alias] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_let_DASHenv] = ACTIONS(2520), + [anon_sym_mut] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [aux_sym_cmd_identifier_token1] = ACTIONS(2520), + [aux_sym_cmd_identifier_token2] = ACTIONS(2522), + [aux_sym_cmd_identifier_token3] = ACTIONS(2522), + [aux_sym_cmd_identifier_token4] = ACTIONS(2522), + [aux_sym_cmd_identifier_token5] = ACTIONS(2522), + [aux_sym_cmd_identifier_token6] = ACTIONS(2522), + [aux_sym_cmd_identifier_token7] = ACTIONS(2522), + [aux_sym_cmd_identifier_token8] = ACTIONS(2520), + [aux_sym_cmd_identifier_token9] = ACTIONS(2520), + [aux_sym_cmd_identifier_token10] = ACTIONS(2522), + [aux_sym_cmd_identifier_token11] = ACTIONS(2522), + [aux_sym_cmd_identifier_token12] = ACTIONS(2520), + [aux_sym_cmd_identifier_token13] = ACTIONS(2520), + [aux_sym_cmd_identifier_token14] = ACTIONS(2520), + [aux_sym_cmd_identifier_token15] = ACTIONS(2520), + [aux_sym_cmd_identifier_token16] = ACTIONS(2522), + [aux_sym_cmd_identifier_token17] = ACTIONS(2522), + [aux_sym_cmd_identifier_token18] = ACTIONS(2522), + [aux_sym_cmd_identifier_token19] = ACTIONS(2522), + [aux_sym_cmd_identifier_token20] = ACTIONS(2522), + [aux_sym_cmd_identifier_token21] = ACTIONS(2522), + [aux_sym_cmd_identifier_token22] = ACTIONS(2522), + [aux_sym_cmd_identifier_token23] = ACTIONS(2522), + [aux_sym_cmd_identifier_token24] = ACTIONS(2522), + [aux_sym_cmd_identifier_token25] = ACTIONS(2522), + [aux_sym_cmd_identifier_token26] = ACTIONS(2522), + [aux_sym_cmd_identifier_token27] = ACTIONS(2522), + [aux_sym_cmd_identifier_token28] = ACTIONS(2522), + [aux_sym_cmd_identifier_token29] = ACTIONS(2522), + [aux_sym_cmd_identifier_token30] = ACTIONS(2522), + [aux_sym_cmd_identifier_token31] = ACTIONS(2522), + [aux_sym_cmd_identifier_token32] = ACTIONS(2522), + [aux_sym_cmd_identifier_token33] = ACTIONS(2522), + [aux_sym_cmd_identifier_token34] = ACTIONS(2520), + [aux_sym_cmd_identifier_token35] = ACTIONS(2522), + [aux_sym_cmd_identifier_token36] = ACTIONS(2522), + [aux_sym_cmd_identifier_token37] = ACTIONS(2522), + [aux_sym_cmd_identifier_token38] = ACTIONS(2520), + [aux_sym_cmd_identifier_token39] = ACTIONS(2522), + [aux_sym_cmd_identifier_token40] = ACTIONS(2522), + [anon_sym_def] = ACTIONS(2520), + [anon_sym_export_DASHenv] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_DOLLAR] = ACTIONS(2522), + [anon_sym_error] = ACTIONS(2520), + [anon_sym_DASH2] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in2] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_make] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_source] = ACTIONS(2520), + [anon_sym_source_DASHenv] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_hide] = ACTIONS(2520), + [anon_sym_hide_DASHenv] = ACTIONS(2520), + [anon_sym_overlay] = ACTIONS(2520), + [anon_sym_as] = ACTIONS(2520), + [anon_sym_PLUS2] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2522), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2522), + [aux_sym__val_number_decimal_token4] = ACTIONS(2522), + [aux_sym__val_number_token1] = ACTIONS(2522), + [aux_sym__val_number_token2] = ACTIONS(2522), + [aux_sym__val_number_token3] = ACTIONS(2522), + [aux_sym__val_number_token4] = ACTIONS(2520), + [aux_sym__val_number_token5] = ACTIONS(2520), + [aux_sym__val_number_token6] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym__str_single_quotes] = ACTIONS(2522), + [sym__str_back_ticks] = ACTIONS(2522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2522), }, [777] = { [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_err_GT_PIPE] = ACTIONS(1296), - [anon_sym_out_GT_PIPE] = ACTIONS(1296), - [anon_sym_e_GT_PIPE] = ACTIONS(1296), - [anon_sym_o_GT_PIPE] = ACTIONS(1296), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1296), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1296), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1296), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1296), - [aux_sym_expr_unary_token1] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), - [aux_sym_env_var_token1] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_alias] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_let_DASHenv] = ACTIONS(2512), + [anon_sym_mut] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [aux_sym_cmd_identifier_token1] = ACTIONS(2512), + [aux_sym_cmd_identifier_token2] = ACTIONS(2514), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [aux_sym_cmd_identifier_token6] = ACTIONS(2514), + [aux_sym_cmd_identifier_token7] = ACTIONS(2514), + [aux_sym_cmd_identifier_token8] = ACTIONS(2512), + [aux_sym_cmd_identifier_token9] = ACTIONS(2512), + [aux_sym_cmd_identifier_token10] = ACTIONS(2514), + [aux_sym_cmd_identifier_token11] = ACTIONS(2514), + [aux_sym_cmd_identifier_token12] = ACTIONS(2512), + [aux_sym_cmd_identifier_token13] = ACTIONS(2512), + [aux_sym_cmd_identifier_token14] = ACTIONS(2512), + [aux_sym_cmd_identifier_token15] = ACTIONS(2512), + [aux_sym_cmd_identifier_token16] = ACTIONS(2514), + [aux_sym_cmd_identifier_token17] = ACTIONS(2514), + [aux_sym_cmd_identifier_token18] = ACTIONS(2514), + [aux_sym_cmd_identifier_token19] = ACTIONS(2514), + [aux_sym_cmd_identifier_token20] = ACTIONS(2514), + [aux_sym_cmd_identifier_token21] = ACTIONS(2514), + [aux_sym_cmd_identifier_token22] = ACTIONS(2514), + [aux_sym_cmd_identifier_token23] = ACTIONS(2514), + [aux_sym_cmd_identifier_token24] = ACTIONS(2514), + [aux_sym_cmd_identifier_token25] = ACTIONS(2514), + [aux_sym_cmd_identifier_token26] = ACTIONS(2514), + [aux_sym_cmd_identifier_token27] = ACTIONS(2514), + [aux_sym_cmd_identifier_token28] = ACTIONS(2514), + [aux_sym_cmd_identifier_token29] = ACTIONS(2514), + [aux_sym_cmd_identifier_token30] = ACTIONS(2514), + [aux_sym_cmd_identifier_token31] = ACTIONS(2514), + [aux_sym_cmd_identifier_token32] = ACTIONS(2514), + [aux_sym_cmd_identifier_token33] = ACTIONS(2514), + [aux_sym_cmd_identifier_token34] = ACTIONS(2512), + [aux_sym_cmd_identifier_token35] = ACTIONS(2514), + [aux_sym_cmd_identifier_token36] = ACTIONS(2514), + [aux_sym_cmd_identifier_token37] = ACTIONS(2514), + [aux_sym_cmd_identifier_token38] = ACTIONS(2512), + [aux_sym_cmd_identifier_token39] = ACTIONS(2514), + [aux_sym_cmd_identifier_token40] = ACTIONS(2514), + [anon_sym_def] = ACTIONS(2512), + [anon_sym_export_DASHenv] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2514), + [anon_sym_error] = ACTIONS(2512), + [anon_sym_DASH2] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in2] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_make] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_source] = ACTIONS(2512), + [anon_sym_source_DASHenv] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_hide] = ACTIONS(2512), + [anon_sym_hide_DASHenv] = ACTIONS(2512), + [anon_sym_overlay] = ACTIONS(2512), + [anon_sym_as] = ACTIONS(2512), + [anon_sym_PLUS2] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2514), + [aux_sym__val_number_decimal_token1] = ACTIONS(2512), + [aux_sym__val_number_decimal_token2] = ACTIONS(2514), + [aux_sym__val_number_decimal_token3] = ACTIONS(2514), + [aux_sym__val_number_decimal_token4] = ACTIONS(2514), + [aux_sym__val_number_token1] = ACTIONS(2514), + [aux_sym__val_number_token2] = ACTIONS(2514), + [aux_sym__val_number_token3] = ACTIONS(2514), + [aux_sym__val_number_token4] = ACTIONS(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [sym__str_single_quotes] = ACTIONS(2514), + [sym__str_back_ticks] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2514), }, [778] = { [sym_comment] = STATE(778), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2615), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [aux_sym_record_entry_token1] = ACTIONS(1573), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2036), }, [779] = { [sym_comment] = STATE(779), - [aux_sym_shebang_repeat1] = STATE(777), - [aux_sym_cmd_identifier_token1] = ACTIONS(2617), - [aux_sym_cmd_identifier_token2] = ACTIONS(2619), - [aux_sym_cmd_identifier_token3] = ACTIONS(2619), - [aux_sym_cmd_identifier_token4] = ACTIONS(2619), - [aux_sym_cmd_identifier_token5] = ACTIONS(2619), - [aux_sym_cmd_identifier_token6] = ACTIONS(2619), - [aux_sym_cmd_identifier_token7] = ACTIONS(2619), - [aux_sym_cmd_identifier_token8] = ACTIONS(2619), - [aux_sym_cmd_identifier_token9] = ACTIONS(2617), - [aux_sym_cmd_identifier_token10] = ACTIONS(2619), - [aux_sym_cmd_identifier_token11] = ACTIONS(2619), - [aux_sym_cmd_identifier_token12] = ACTIONS(2619), - [aux_sym_cmd_identifier_token13] = ACTIONS(2617), - [aux_sym_cmd_identifier_token14] = ACTIONS(2619), - [aux_sym_cmd_identifier_token15] = ACTIONS(2617), - [aux_sym_cmd_identifier_token16] = ACTIONS(2619), - [aux_sym_cmd_identifier_token17] = ACTIONS(2619), - [aux_sym_cmd_identifier_token18] = ACTIONS(2619), - [aux_sym_cmd_identifier_token19] = ACTIONS(2619), - [aux_sym_cmd_identifier_token20] = ACTIONS(2619), - [aux_sym_cmd_identifier_token21] = ACTIONS(2619), - [aux_sym_cmd_identifier_token22] = ACTIONS(2619), - [aux_sym_cmd_identifier_token23] = ACTIONS(2619), - [aux_sym_cmd_identifier_token24] = ACTIONS(2619), - [aux_sym_cmd_identifier_token25] = ACTIONS(2619), - [aux_sym_cmd_identifier_token26] = ACTIONS(2619), - [aux_sym_cmd_identifier_token27] = ACTIONS(2619), - [aux_sym_cmd_identifier_token28] = ACTIONS(2619), - [aux_sym_cmd_identifier_token29] = ACTIONS(2619), - [aux_sym_cmd_identifier_token30] = ACTIONS(2619), - [aux_sym_cmd_identifier_token31] = ACTIONS(2619), - [aux_sym_cmd_identifier_token32] = ACTIONS(2619), - [aux_sym_cmd_identifier_token33] = ACTIONS(2619), - [aux_sym_cmd_identifier_token34] = ACTIONS(2617), - [aux_sym_cmd_identifier_token35] = ACTIONS(2619), - [aux_sym_cmd_identifier_token36] = ACTIONS(2619), - [aux_sym_cmd_identifier_token37] = ACTIONS(2619), - [aux_sym_cmd_identifier_token38] = ACTIONS(2617), - [aux_sym_cmd_identifier_token39] = ACTIONS(2619), - [aux_sym_cmd_identifier_token40] = ACTIONS(2619), - [sym__newline] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_err_GT_PIPE] = ACTIONS(2621), - [anon_sym_out_GT_PIPE] = ACTIONS(2621), - [anon_sym_e_GT_PIPE] = ACTIONS(2621), - [anon_sym_o_GT_PIPE] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_match] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_where] = ACTIONS(2619), - [aux_sym_expr_unary_token1] = ACTIONS(2619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2619), - [anon_sym_DOT_DOT_LT] = ACTIONS(2619), - [anon_sym_null] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2617), - [aux_sym__val_number_decimal_token2] = ACTIONS(2619), - [aux_sym__val_number_decimal_token3] = ACTIONS(2619), - [aux_sym__val_number_decimal_token4] = ACTIONS(2619), - [aux_sym__val_number_token1] = ACTIONS(2619), - [aux_sym__val_number_token2] = ACTIONS(2619), - [aux_sym__val_number_token3] = ACTIONS(2619), - [aux_sym__val_number_token4] = ACTIONS(2617), - [aux_sym__val_number_token5] = ACTIONS(2617), - [aux_sym__val_number_token6] = ACTIONS(2617), - [anon_sym_0b] = ACTIONS(2617), - [anon_sym_0o] = ACTIONS(2617), - [anon_sym_0x] = ACTIONS(2617), - [sym_val_date] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym__str_single_quotes] = ACTIONS(2619), - [sym__str_back_ticks] = ACTIONS(2619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2619), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [aux_sym_env_var_token1] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2619), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2619), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2040), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [aux_sym_cmd_identifier_token6] = ACTIONS(2040), + [aux_sym_cmd_identifier_token7] = ACTIONS(2040), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2040), + [aux_sym_cmd_identifier_token11] = ACTIONS(2040), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2040), + [aux_sym_cmd_identifier_token17] = ACTIONS(2040), + [aux_sym_cmd_identifier_token18] = ACTIONS(2040), + [aux_sym_cmd_identifier_token19] = ACTIONS(2040), + [aux_sym_cmd_identifier_token20] = ACTIONS(2040), + [aux_sym_cmd_identifier_token21] = ACTIONS(2040), + [aux_sym_cmd_identifier_token22] = ACTIONS(2040), + [aux_sym_cmd_identifier_token23] = ACTIONS(2040), + [aux_sym_cmd_identifier_token24] = ACTIONS(2040), + [aux_sym_cmd_identifier_token25] = ACTIONS(2040), + [aux_sym_cmd_identifier_token26] = ACTIONS(2040), + [aux_sym_cmd_identifier_token27] = ACTIONS(2040), + [aux_sym_cmd_identifier_token28] = ACTIONS(2040), + [aux_sym_cmd_identifier_token29] = ACTIONS(2040), + [aux_sym_cmd_identifier_token30] = ACTIONS(2040), + [aux_sym_cmd_identifier_token31] = ACTIONS(2040), + [aux_sym_cmd_identifier_token32] = ACTIONS(2040), + [aux_sym_cmd_identifier_token33] = ACTIONS(2040), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2040), + [aux_sym_cmd_identifier_token36] = ACTIONS(2040), + [aux_sym_cmd_identifier_token37] = ACTIONS(2040), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2040), + [aux_sym_cmd_identifier_token40] = ACTIONS(2040), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2040), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2040), }, [780] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1826), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1826), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1826), - [sym_long_flag] = STATE(1826), - [sym_unquoted] = STATE(1638), - [sym__unquoted_with_expr] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(780), - [aux_sym_ctrl_do_repeat2] = STATE(785), - [sym__newline] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2623), - [anon_sym_err_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_GT_PIPE] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2044), + [aux_sym_cmd_identifier_token3] = ACTIONS(2044), + [aux_sym_cmd_identifier_token4] = ACTIONS(2044), + [aux_sym_cmd_identifier_token5] = ACTIONS(2044), + [aux_sym_cmd_identifier_token6] = ACTIONS(2044), + [aux_sym_cmd_identifier_token7] = ACTIONS(2044), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2044), + [aux_sym_cmd_identifier_token11] = ACTIONS(2044), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2044), + [aux_sym_cmd_identifier_token17] = ACTIONS(2044), + [aux_sym_cmd_identifier_token18] = ACTIONS(2044), + [aux_sym_cmd_identifier_token19] = ACTIONS(2044), + [aux_sym_cmd_identifier_token20] = ACTIONS(2044), + [aux_sym_cmd_identifier_token21] = ACTIONS(2044), + [aux_sym_cmd_identifier_token22] = ACTIONS(2044), + [aux_sym_cmd_identifier_token23] = ACTIONS(2044), + [aux_sym_cmd_identifier_token24] = ACTIONS(2044), + [aux_sym_cmd_identifier_token25] = ACTIONS(2044), + [aux_sym_cmd_identifier_token26] = ACTIONS(2044), + [aux_sym_cmd_identifier_token27] = ACTIONS(2044), + [aux_sym_cmd_identifier_token28] = ACTIONS(2044), + [aux_sym_cmd_identifier_token29] = ACTIONS(2044), + [aux_sym_cmd_identifier_token30] = ACTIONS(2044), + [aux_sym_cmd_identifier_token31] = ACTIONS(2044), + [aux_sym_cmd_identifier_token32] = ACTIONS(2044), + [aux_sym_cmd_identifier_token33] = ACTIONS(2044), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2044), + [aux_sym_cmd_identifier_token36] = ACTIONS(2044), + [aux_sym_cmd_identifier_token37] = ACTIONS(2044), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2044), + [aux_sym_cmd_identifier_token40] = ACTIONS(2044), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2044), + [aux_sym__val_number_decimal_token3] = ACTIONS(2044), + [aux_sym__val_number_decimal_token4] = ACTIONS(2044), + [aux_sym__val_number_token1] = ACTIONS(2044), + [aux_sym__val_number_token2] = ACTIONS(2044), + [aux_sym__val_number_token3] = ACTIONS(2044), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym__str_single_quotes] = ACTIONS(2044), + [sym__str_back_ticks] = ACTIONS(2044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2044), }, [781] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1826), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1826), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1826), - [sym_long_flag] = STATE(1826), - [sym_unquoted] = STATE(1638), - [sym__unquoted_with_expr] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(781), - [aux_sym_ctrl_do_repeat2] = STATE(794), - [sym__newline] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2623), - [anon_sym_err_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_GT_PIPE] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_let_DASHenv] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [aux_sym_cmd_identifier_token3] = ACTIONS(2533), + [aux_sym_cmd_identifier_token4] = ACTIONS(2533), + [aux_sym_cmd_identifier_token5] = ACTIONS(2533), + [aux_sym_cmd_identifier_token6] = ACTIONS(2533), + [aux_sym_cmd_identifier_token7] = ACTIONS(2533), + [aux_sym_cmd_identifier_token8] = ACTIONS(2531), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2533), + [aux_sym_cmd_identifier_token11] = ACTIONS(2533), + [aux_sym_cmd_identifier_token12] = ACTIONS(2531), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2531), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2533), + [aux_sym_cmd_identifier_token17] = ACTIONS(2533), + [aux_sym_cmd_identifier_token18] = ACTIONS(2533), + [aux_sym_cmd_identifier_token19] = ACTIONS(2533), + [aux_sym_cmd_identifier_token20] = ACTIONS(2533), + [aux_sym_cmd_identifier_token21] = ACTIONS(2533), + [aux_sym_cmd_identifier_token22] = ACTIONS(2533), + [aux_sym_cmd_identifier_token23] = ACTIONS(2533), + [aux_sym_cmd_identifier_token24] = ACTIONS(2533), + [aux_sym_cmd_identifier_token25] = ACTIONS(2533), + [aux_sym_cmd_identifier_token26] = ACTIONS(2533), + [aux_sym_cmd_identifier_token27] = ACTIONS(2533), + [aux_sym_cmd_identifier_token28] = ACTIONS(2533), + [aux_sym_cmd_identifier_token29] = ACTIONS(2533), + [aux_sym_cmd_identifier_token30] = ACTIONS(2533), + [aux_sym_cmd_identifier_token31] = ACTIONS(2533), + [aux_sym_cmd_identifier_token32] = ACTIONS(2533), + [aux_sym_cmd_identifier_token33] = ACTIONS(2533), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2533), + [aux_sym_cmd_identifier_token36] = ACTIONS(2533), + [aux_sym_cmd_identifier_token37] = ACTIONS(2533), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2533), + [aux_sym_cmd_identifier_token40] = ACTIONS(2533), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(2533), + [anon_sym_error] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_in2] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_make] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_source] = ACTIONS(2531), + [anon_sym_source_DASHenv] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_hide] = ACTIONS(2531), + [anon_sym_hide_DASHenv] = ACTIONS(2531), + [anon_sym_overlay] = ACTIONS(2531), + [anon_sym_as] = ACTIONS(2531), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2533), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2533), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(2533), + [aux_sym__val_number_token2] = ACTIONS(2533), + [aux_sym__val_number_token3] = ACTIONS(2533), + [aux_sym__val_number_token4] = ACTIONS(2531), + [aux_sym__val_number_token5] = ACTIONS(2531), + [aux_sym__val_number_token6] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym__str_single_quotes] = ACTIONS(2533), + [sym__str_back_ticks] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2533), }, [782] = { [sym_comment] = STATE(782), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(2679), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2681), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2593), + [anon_sym_alias] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_let_DASHenv] = ACTIONS(2593), + [anon_sym_mut] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [aux_sym_cmd_identifier_token1] = ACTIONS(2593), + [aux_sym_cmd_identifier_token2] = ACTIONS(2595), + [aux_sym_cmd_identifier_token3] = ACTIONS(2595), + [aux_sym_cmd_identifier_token4] = ACTIONS(2595), + [aux_sym_cmd_identifier_token5] = ACTIONS(2595), + [aux_sym_cmd_identifier_token6] = ACTIONS(2595), + [aux_sym_cmd_identifier_token7] = ACTIONS(2595), + [aux_sym_cmd_identifier_token8] = ACTIONS(2593), + [aux_sym_cmd_identifier_token9] = ACTIONS(2593), + [aux_sym_cmd_identifier_token10] = ACTIONS(2595), + [aux_sym_cmd_identifier_token11] = ACTIONS(2595), + [aux_sym_cmd_identifier_token12] = ACTIONS(2593), + [aux_sym_cmd_identifier_token13] = ACTIONS(2593), + [aux_sym_cmd_identifier_token14] = ACTIONS(2593), + [aux_sym_cmd_identifier_token15] = ACTIONS(2593), + [aux_sym_cmd_identifier_token16] = ACTIONS(2595), + [aux_sym_cmd_identifier_token17] = ACTIONS(2595), + [aux_sym_cmd_identifier_token18] = ACTIONS(2595), + [aux_sym_cmd_identifier_token19] = ACTIONS(2595), + [aux_sym_cmd_identifier_token20] = ACTIONS(2595), + [aux_sym_cmd_identifier_token21] = ACTIONS(2595), + [aux_sym_cmd_identifier_token22] = ACTIONS(2595), + [aux_sym_cmd_identifier_token23] = ACTIONS(2595), + [aux_sym_cmd_identifier_token24] = ACTIONS(2595), + [aux_sym_cmd_identifier_token25] = ACTIONS(2595), + [aux_sym_cmd_identifier_token26] = ACTIONS(2595), + [aux_sym_cmd_identifier_token27] = ACTIONS(2595), + [aux_sym_cmd_identifier_token28] = ACTIONS(2595), + [aux_sym_cmd_identifier_token29] = ACTIONS(2595), + [aux_sym_cmd_identifier_token30] = ACTIONS(2595), + [aux_sym_cmd_identifier_token31] = ACTIONS(2595), + [aux_sym_cmd_identifier_token32] = ACTIONS(2595), + [aux_sym_cmd_identifier_token33] = ACTIONS(2595), + [aux_sym_cmd_identifier_token34] = ACTIONS(2593), + [aux_sym_cmd_identifier_token35] = ACTIONS(2595), + [aux_sym_cmd_identifier_token36] = ACTIONS(2595), + [aux_sym_cmd_identifier_token37] = ACTIONS(2595), + [aux_sym_cmd_identifier_token38] = ACTIONS(2593), + [aux_sym_cmd_identifier_token39] = ACTIONS(2595), + [aux_sym_cmd_identifier_token40] = ACTIONS(2595), + [anon_sym_def] = ACTIONS(2593), + [anon_sym_export_DASHenv] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_module] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2595), + [anon_sym_error] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_in2] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_make] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_source] = ACTIONS(2593), + [anon_sym_source_DASHenv] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_hide] = ACTIONS(2593), + [anon_sym_hide_DASHenv] = ACTIONS(2593), + [anon_sym_overlay] = ACTIONS(2593), + [anon_sym_as] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2595), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2595), + [aux_sym__val_number_decimal_token1] = ACTIONS(2593), + [aux_sym__val_number_decimal_token2] = ACTIONS(2595), + [aux_sym__val_number_decimal_token3] = ACTIONS(2595), + [aux_sym__val_number_decimal_token4] = ACTIONS(2595), + [aux_sym__val_number_token1] = ACTIONS(2595), + [aux_sym__val_number_token2] = ACTIONS(2595), + [aux_sym__val_number_token3] = ACTIONS(2595), + [aux_sym__val_number_token4] = ACTIONS(2593), + [aux_sym__val_number_token5] = ACTIONS(2593), + [aux_sym__val_number_token6] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2595), + [sym__str_single_quotes] = ACTIONS(2595), + [sym__str_back_ticks] = ACTIONS(2595), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2595), }, [783] = { [sym_comment] = STATE(783), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(2683), - [aux_sym__immediate_decimal_token2] = ACTIONS(2685), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2054), + [anon_sym_alias] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_let_DASHenv] = ACTIONS(2054), + [anon_sym_mut] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [aux_sym_cmd_identifier_token1] = ACTIONS(2054), + [aux_sym_cmd_identifier_token2] = ACTIONS(2056), + [aux_sym_cmd_identifier_token3] = ACTIONS(2056), + [aux_sym_cmd_identifier_token4] = ACTIONS(2056), + [aux_sym_cmd_identifier_token5] = ACTIONS(2056), + [aux_sym_cmd_identifier_token6] = ACTIONS(2056), + [aux_sym_cmd_identifier_token7] = ACTIONS(2056), + [aux_sym_cmd_identifier_token8] = ACTIONS(2054), + [aux_sym_cmd_identifier_token9] = ACTIONS(2054), + [aux_sym_cmd_identifier_token10] = ACTIONS(2056), + [aux_sym_cmd_identifier_token11] = ACTIONS(2056), + [aux_sym_cmd_identifier_token12] = ACTIONS(2054), + [aux_sym_cmd_identifier_token13] = ACTIONS(2054), + [aux_sym_cmd_identifier_token14] = ACTIONS(2054), + [aux_sym_cmd_identifier_token15] = ACTIONS(2054), + [aux_sym_cmd_identifier_token16] = ACTIONS(2056), + [aux_sym_cmd_identifier_token17] = ACTIONS(2056), + [aux_sym_cmd_identifier_token18] = ACTIONS(2056), + [aux_sym_cmd_identifier_token19] = ACTIONS(2056), + [aux_sym_cmd_identifier_token20] = ACTIONS(2056), + [aux_sym_cmd_identifier_token21] = ACTIONS(2056), + [aux_sym_cmd_identifier_token22] = ACTIONS(2056), + [aux_sym_cmd_identifier_token23] = ACTIONS(2056), + [aux_sym_cmd_identifier_token24] = ACTIONS(2056), + [aux_sym_cmd_identifier_token25] = ACTIONS(2056), + [aux_sym_cmd_identifier_token26] = ACTIONS(2056), + [aux_sym_cmd_identifier_token27] = ACTIONS(2056), + [aux_sym_cmd_identifier_token28] = ACTIONS(2056), + [aux_sym_cmd_identifier_token29] = ACTIONS(2056), + [aux_sym_cmd_identifier_token30] = ACTIONS(2056), + [aux_sym_cmd_identifier_token31] = ACTIONS(2056), + [aux_sym_cmd_identifier_token32] = ACTIONS(2056), + [aux_sym_cmd_identifier_token33] = ACTIONS(2056), + [aux_sym_cmd_identifier_token34] = ACTIONS(2054), + [aux_sym_cmd_identifier_token35] = ACTIONS(2056), + [aux_sym_cmd_identifier_token36] = ACTIONS(2056), + [aux_sym_cmd_identifier_token37] = ACTIONS(2056), + [aux_sym_cmd_identifier_token38] = ACTIONS(2054), + [aux_sym_cmd_identifier_token39] = ACTIONS(2056), + [aux_sym_cmd_identifier_token40] = ACTIONS(2056), + [anon_sym_def] = ACTIONS(2054), + [anon_sym_export_DASHenv] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_module] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(2056), + [anon_sym_error] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_make] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2054), + [anon_sym_catch] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_source] = ACTIONS(2054), + [anon_sym_source_DASHenv] = ACTIONS(2054), + [anon_sym_register] = ACTIONS(2054), + [anon_sym_hide] = ACTIONS(2054), + [anon_sym_hide_DASHenv] = ACTIONS(2054), + [anon_sym_overlay] = ACTIONS(2054), + [anon_sym_as] = ACTIONS(2054), + [anon_sym_PLUS2] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2056), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2056), + [aux_sym__val_number_decimal_token4] = ACTIONS(2056), + [aux_sym__val_number_token1] = ACTIONS(2056), + [aux_sym__val_number_token2] = ACTIONS(2056), + [aux_sym__val_number_token3] = ACTIONS(2056), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym__str_single_quotes] = ACTIONS(2056), + [sym__str_back_ticks] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2056), }, [784] = { [sym_comment] = STATE(784), - [aux_sym_cmd_identifier_token1] = ACTIONS(1290), - [aux_sym_cmd_identifier_token2] = ACTIONS(1288), - [aux_sym_cmd_identifier_token3] = ACTIONS(1288), - [aux_sym_cmd_identifier_token4] = ACTIONS(1288), - [aux_sym_cmd_identifier_token5] = ACTIONS(1288), - [aux_sym_cmd_identifier_token6] = ACTIONS(1288), - [aux_sym_cmd_identifier_token7] = ACTIONS(1288), - [aux_sym_cmd_identifier_token8] = ACTIONS(1288), - [aux_sym_cmd_identifier_token9] = ACTIONS(1290), - [aux_sym_cmd_identifier_token10] = ACTIONS(1288), - [aux_sym_cmd_identifier_token11] = ACTIONS(1288), - [aux_sym_cmd_identifier_token12] = ACTIONS(1288), - [aux_sym_cmd_identifier_token13] = ACTIONS(1290), - [aux_sym_cmd_identifier_token14] = ACTIONS(1288), - [aux_sym_cmd_identifier_token15] = ACTIONS(1290), - [aux_sym_cmd_identifier_token16] = ACTIONS(1288), - [aux_sym_cmd_identifier_token17] = ACTIONS(1288), - [aux_sym_cmd_identifier_token18] = ACTIONS(1288), - [aux_sym_cmd_identifier_token19] = ACTIONS(1288), - [aux_sym_cmd_identifier_token20] = ACTIONS(1288), - [aux_sym_cmd_identifier_token21] = ACTIONS(1288), - [aux_sym_cmd_identifier_token22] = ACTIONS(1288), - [aux_sym_cmd_identifier_token23] = ACTIONS(1288), - [aux_sym_cmd_identifier_token24] = ACTIONS(1288), - [aux_sym_cmd_identifier_token25] = ACTIONS(1288), - [aux_sym_cmd_identifier_token26] = ACTIONS(1288), - [aux_sym_cmd_identifier_token27] = ACTIONS(1288), - [aux_sym_cmd_identifier_token28] = ACTIONS(1288), - [aux_sym_cmd_identifier_token29] = ACTIONS(1288), - [aux_sym_cmd_identifier_token30] = ACTIONS(1288), - [aux_sym_cmd_identifier_token31] = ACTIONS(1288), - [aux_sym_cmd_identifier_token32] = ACTIONS(1288), - [aux_sym_cmd_identifier_token33] = ACTIONS(1288), - [aux_sym_cmd_identifier_token34] = ACTIONS(1290), - [aux_sym_cmd_identifier_token35] = ACTIONS(1288), - [aux_sym_cmd_identifier_token36] = ACTIONS(1288), - [aux_sym_cmd_identifier_token37] = ACTIONS(1288), - [aux_sym_cmd_identifier_token38] = ACTIONS(1290), - [aux_sym_cmd_identifier_token39] = ACTIONS(1288), - [aux_sym_cmd_identifier_token40] = ACTIONS(1288), - [sym__newline] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_err_GT_PIPE] = ACTIONS(1288), - [anon_sym_out_GT_PIPE] = ACTIONS(1288), - [anon_sym_e_GT_PIPE] = ACTIONS(1288), - [anon_sym_o_GT_PIPE] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_DASH2] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_where] = ACTIONS(1288), - [aux_sym_expr_unary_token1] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [aux_sym__val_number_decimal_token1] = ACTIONS(1290), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1290), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1290), - [anon_sym_0b] = ACTIONS(1290), - [anon_sym_0o] = ACTIONS(1290), - [anon_sym_0x] = ACTIONS(1290), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [aux_sym_env_var_token1] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_alias] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_let_DASHenv] = ACTIONS(2535), + [anon_sym_mut] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [aux_sym_cmd_identifier_token1] = ACTIONS(2535), + [aux_sym_cmd_identifier_token2] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2537), + [aux_sym_cmd_identifier_token4] = ACTIONS(2537), + [aux_sym_cmd_identifier_token5] = ACTIONS(2537), + [aux_sym_cmd_identifier_token6] = ACTIONS(2537), + [aux_sym_cmd_identifier_token7] = ACTIONS(2537), + [aux_sym_cmd_identifier_token8] = ACTIONS(2535), + [aux_sym_cmd_identifier_token9] = ACTIONS(2535), + [aux_sym_cmd_identifier_token10] = ACTIONS(2537), + [aux_sym_cmd_identifier_token11] = ACTIONS(2537), + [aux_sym_cmd_identifier_token12] = ACTIONS(2535), + [aux_sym_cmd_identifier_token13] = ACTIONS(2535), + [aux_sym_cmd_identifier_token14] = ACTIONS(2535), + [aux_sym_cmd_identifier_token15] = ACTIONS(2535), + [aux_sym_cmd_identifier_token16] = ACTIONS(2537), + [aux_sym_cmd_identifier_token17] = ACTIONS(2537), + [aux_sym_cmd_identifier_token18] = ACTIONS(2537), + [aux_sym_cmd_identifier_token19] = ACTIONS(2537), + [aux_sym_cmd_identifier_token20] = ACTIONS(2537), + [aux_sym_cmd_identifier_token21] = ACTIONS(2537), + [aux_sym_cmd_identifier_token22] = ACTIONS(2537), + [aux_sym_cmd_identifier_token23] = ACTIONS(2537), + [aux_sym_cmd_identifier_token24] = ACTIONS(2537), + [aux_sym_cmd_identifier_token25] = ACTIONS(2537), + [aux_sym_cmd_identifier_token26] = ACTIONS(2537), + [aux_sym_cmd_identifier_token27] = ACTIONS(2537), + [aux_sym_cmd_identifier_token28] = ACTIONS(2537), + [aux_sym_cmd_identifier_token29] = ACTIONS(2537), + [aux_sym_cmd_identifier_token30] = ACTIONS(2537), + [aux_sym_cmd_identifier_token31] = ACTIONS(2537), + [aux_sym_cmd_identifier_token32] = ACTIONS(2537), + [aux_sym_cmd_identifier_token33] = ACTIONS(2537), + [aux_sym_cmd_identifier_token34] = ACTIONS(2535), + [aux_sym_cmd_identifier_token35] = ACTIONS(2537), + [aux_sym_cmd_identifier_token36] = ACTIONS(2537), + [aux_sym_cmd_identifier_token37] = ACTIONS(2537), + [aux_sym_cmd_identifier_token38] = ACTIONS(2535), + [aux_sym_cmd_identifier_token39] = ACTIONS(2537), + [aux_sym_cmd_identifier_token40] = ACTIONS(2537), + [anon_sym_def] = ACTIONS(2535), + [anon_sym_export_DASHenv] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_error] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_in2] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_make] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_catch] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_source] = ACTIONS(2535), + [anon_sym_source_DASHenv] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_hide] = ACTIONS(2535), + [anon_sym_hide_DASHenv] = ACTIONS(2535), + [anon_sym_overlay] = ACTIONS(2535), + [anon_sym_as] = ACTIONS(2535), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2537), + [aux_sym__val_number_decimal_token1] = ACTIONS(2535), + [aux_sym__val_number_decimal_token2] = ACTIONS(2537), + [aux_sym__val_number_decimal_token3] = ACTIONS(2537), + [aux_sym__val_number_decimal_token4] = ACTIONS(2537), + [aux_sym__val_number_token1] = ACTIONS(2537), + [aux_sym__val_number_token2] = ACTIONS(2537), + [aux_sym__val_number_token3] = ACTIONS(2537), + [aux_sym__val_number_token4] = ACTIONS(2535), + [aux_sym__val_number_token5] = ACTIONS(2535), + [aux_sym__val_number_token6] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym__str_single_quotes] = ACTIONS(2537), + [sym__str_back_ticks] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2537), }, [785] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1826), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1826), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1826), - [sym_long_flag] = STATE(1826), - [sym_unquoted] = STATE(1638), - [sym__unquoted_with_expr] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(785), - [aux_sym_ctrl_do_repeat2] = STATE(794), - [sym__newline] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_err_GT_PIPE] = ACTIONS(2687), - [anon_sym_out_GT_PIPE] = ACTIONS(2687), - [anon_sym_e_GT_PIPE] = ACTIONS(2687), - [anon_sym_o_GT_PIPE] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_alias] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_let_DASHenv] = ACTIONS(2539), + [anon_sym_mut] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [aux_sym_cmd_identifier_token1] = ACTIONS(2539), + [aux_sym_cmd_identifier_token2] = ACTIONS(2541), + [aux_sym_cmd_identifier_token3] = ACTIONS(2541), + [aux_sym_cmd_identifier_token4] = ACTIONS(2541), + [aux_sym_cmd_identifier_token5] = ACTIONS(2541), + [aux_sym_cmd_identifier_token6] = ACTIONS(2541), + [aux_sym_cmd_identifier_token7] = ACTIONS(2541), + [aux_sym_cmd_identifier_token8] = ACTIONS(2539), + [aux_sym_cmd_identifier_token9] = ACTIONS(2539), + [aux_sym_cmd_identifier_token10] = ACTIONS(2541), + [aux_sym_cmd_identifier_token11] = ACTIONS(2541), + [aux_sym_cmd_identifier_token12] = ACTIONS(2539), + [aux_sym_cmd_identifier_token13] = ACTIONS(2539), + [aux_sym_cmd_identifier_token14] = ACTIONS(2539), + [aux_sym_cmd_identifier_token15] = ACTIONS(2539), + [aux_sym_cmd_identifier_token16] = ACTIONS(2541), + [aux_sym_cmd_identifier_token17] = ACTIONS(2541), + [aux_sym_cmd_identifier_token18] = ACTIONS(2541), + [aux_sym_cmd_identifier_token19] = ACTIONS(2541), + [aux_sym_cmd_identifier_token20] = ACTIONS(2541), + [aux_sym_cmd_identifier_token21] = ACTIONS(2541), + [aux_sym_cmd_identifier_token22] = ACTIONS(2541), + [aux_sym_cmd_identifier_token23] = ACTIONS(2541), + [aux_sym_cmd_identifier_token24] = ACTIONS(2541), + [aux_sym_cmd_identifier_token25] = ACTIONS(2541), + [aux_sym_cmd_identifier_token26] = ACTIONS(2541), + [aux_sym_cmd_identifier_token27] = ACTIONS(2541), + [aux_sym_cmd_identifier_token28] = ACTIONS(2541), + [aux_sym_cmd_identifier_token29] = ACTIONS(2541), + [aux_sym_cmd_identifier_token30] = ACTIONS(2541), + [aux_sym_cmd_identifier_token31] = ACTIONS(2541), + [aux_sym_cmd_identifier_token32] = ACTIONS(2541), + [aux_sym_cmd_identifier_token33] = ACTIONS(2541), + [aux_sym_cmd_identifier_token34] = ACTIONS(2539), + [aux_sym_cmd_identifier_token35] = ACTIONS(2541), + [aux_sym_cmd_identifier_token36] = ACTIONS(2541), + [aux_sym_cmd_identifier_token37] = ACTIONS(2541), + [aux_sym_cmd_identifier_token38] = ACTIONS(2539), + [aux_sym_cmd_identifier_token39] = ACTIONS(2541), + [aux_sym_cmd_identifier_token40] = ACTIONS(2541), + [anon_sym_def] = ACTIONS(2539), + [anon_sym_export_DASHenv] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_error] = ACTIONS(2539), + [anon_sym_DASH2] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_in2] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_make] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_catch] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_source] = ACTIONS(2539), + [anon_sym_source_DASHenv] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_hide] = ACTIONS(2539), + [anon_sym_hide_DASHenv] = ACTIONS(2539), + [anon_sym_overlay] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_PLUS2] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2541), + [aux_sym__val_number_decimal_token1] = ACTIONS(2539), + [aux_sym__val_number_decimal_token2] = ACTIONS(2541), + [aux_sym__val_number_decimal_token3] = ACTIONS(2541), + [aux_sym__val_number_decimal_token4] = ACTIONS(2541), + [aux_sym__val_number_token1] = ACTIONS(2541), + [aux_sym__val_number_token2] = ACTIONS(2541), + [aux_sym__val_number_token3] = ACTIONS(2541), + [aux_sym__val_number_token4] = ACTIONS(2539), + [aux_sym__val_number_token5] = ACTIONS(2539), + [aux_sym__val_number_token6] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym__str_single_quotes] = ACTIONS(2541), + [sym__str_back_ticks] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2541), }, [786] = { [sym_comment] = STATE(786), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2691), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_let_DASHenv] = ACTIONS(2058), + [anon_sym_mut] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [aux_sym_cmd_identifier_token1] = ACTIONS(2058), + [aux_sym_cmd_identifier_token2] = ACTIONS(2060), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [aux_sym_cmd_identifier_token6] = ACTIONS(2060), + [aux_sym_cmd_identifier_token7] = ACTIONS(2060), + [aux_sym_cmd_identifier_token8] = ACTIONS(2058), + [aux_sym_cmd_identifier_token9] = ACTIONS(2058), + [aux_sym_cmd_identifier_token10] = ACTIONS(2060), + [aux_sym_cmd_identifier_token11] = ACTIONS(2060), + [aux_sym_cmd_identifier_token12] = ACTIONS(2058), + [aux_sym_cmd_identifier_token13] = ACTIONS(2058), + [aux_sym_cmd_identifier_token14] = ACTIONS(2058), + [aux_sym_cmd_identifier_token15] = ACTIONS(2058), + [aux_sym_cmd_identifier_token16] = ACTIONS(2060), + [aux_sym_cmd_identifier_token17] = ACTIONS(2060), + [aux_sym_cmd_identifier_token18] = ACTIONS(2060), + [aux_sym_cmd_identifier_token19] = ACTIONS(2060), + [aux_sym_cmd_identifier_token20] = ACTIONS(2060), + [aux_sym_cmd_identifier_token21] = ACTIONS(2060), + [aux_sym_cmd_identifier_token22] = ACTIONS(2060), + [aux_sym_cmd_identifier_token23] = ACTIONS(2060), + [aux_sym_cmd_identifier_token24] = ACTIONS(2060), + [aux_sym_cmd_identifier_token25] = ACTIONS(2060), + [aux_sym_cmd_identifier_token26] = ACTIONS(2060), + [aux_sym_cmd_identifier_token27] = ACTIONS(2060), + [aux_sym_cmd_identifier_token28] = ACTIONS(2060), + [aux_sym_cmd_identifier_token29] = ACTIONS(2060), + [aux_sym_cmd_identifier_token30] = ACTIONS(2060), + [aux_sym_cmd_identifier_token31] = ACTIONS(2060), + [aux_sym_cmd_identifier_token32] = ACTIONS(2060), + [aux_sym_cmd_identifier_token33] = ACTIONS(2060), + [aux_sym_cmd_identifier_token34] = ACTIONS(2058), + [aux_sym_cmd_identifier_token35] = ACTIONS(2060), + [aux_sym_cmd_identifier_token36] = ACTIONS(2060), + [aux_sym_cmd_identifier_token37] = ACTIONS(2060), + [aux_sym_cmd_identifier_token38] = ACTIONS(2058), + [aux_sym_cmd_identifier_token39] = ACTIONS(2060), + [aux_sym_cmd_identifier_token40] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(2058), + [anon_sym_export_DASHenv] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_module] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2060), + [anon_sym_error] = ACTIONS(2058), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_in2] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_make] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2058), + [anon_sym_catch] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_source] = ACTIONS(2058), + [anon_sym_source_DASHenv] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_hide] = ACTIONS(2058), + [anon_sym_hide_DASHenv] = ACTIONS(2058), + [anon_sym_overlay] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_PLUS2] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2060), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2060), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2058), + [aux_sym__val_number_token5] = ACTIONS(2058), + [aux_sym__val_number_token6] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2060), }, [787] = { [sym_comment] = STATE(787), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(2693), - [aux_sym__immediate_decimal_token2] = ACTIONS(2695), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_let_DASHenv] = ACTIONS(2066), + [anon_sym_mut] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [aux_sym_cmd_identifier_token2] = ACTIONS(2068), + [aux_sym_cmd_identifier_token3] = ACTIONS(2068), + [aux_sym_cmd_identifier_token4] = ACTIONS(2068), + [aux_sym_cmd_identifier_token5] = ACTIONS(2068), + [aux_sym_cmd_identifier_token6] = ACTIONS(2068), + [aux_sym_cmd_identifier_token7] = ACTIONS(2068), + [aux_sym_cmd_identifier_token8] = ACTIONS(2066), + [aux_sym_cmd_identifier_token9] = ACTIONS(2066), + [aux_sym_cmd_identifier_token10] = ACTIONS(2068), + [aux_sym_cmd_identifier_token11] = ACTIONS(2068), + [aux_sym_cmd_identifier_token12] = ACTIONS(2066), + [aux_sym_cmd_identifier_token13] = ACTIONS(2066), + [aux_sym_cmd_identifier_token14] = ACTIONS(2066), + [aux_sym_cmd_identifier_token15] = ACTIONS(2066), + [aux_sym_cmd_identifier_token16] = ACTIONS(2068), + [aux_sym_cmd_identifier_token17] = ACTIONS(2068), + [aux_sym_cmd_identifier_token18] = ACTIONS(2068), + [aux_sym_cmd_identifier_token19] = ACTIONS(2068), + [aux_sym_cmd_identifier_token20] = ACTIONS(2068), + [aux_sym_cmd_identifier_token21] = ACTIONS(2068), + [aux_sym_cmd_identifier_token22] = ACTIONS(2068), + [aux_sym_cmd_identifier_token23] = ACTIONS(2068), + [aux_sym_cmd_identifier_token24] = ACTIONS(2068), + [aux_sym_cmd_identifier_token25] = ACTIONS(2068), + [aux_sym_cmd_identifier_token26] = ACTIONS(2068), + [aux_sym_cmd_identifier_token27] = ACTIONS(2068), + [aux_sym_cmd_identifier_token28] = ACTIONS(2068), + [aux_sym_cmd_identifier_token29] = ACTIONS(2068), + [aux_sym_cmd_identifier_token30] = ACTIONS(2068), + [aux_sym_cmd_identifier_token31] = ACTIONS(2068), + [aux_sym_cmd_identifier_token32] = ACTIONS(2068), + [aux_sym_cmd_identifier_token33] = ACTIONS(2068), + [aux_sym_cmd_identifier_token34] = ACTIONS(2066), + [aux_sym_cmd_identifier_token35] = ACTIONS(2068), + [aux_sym_cmd_identifier_token36] = ACTIONS(2068), + [aux_sym_cmd_identifier_token37] = ACTIONS(2068), + [aux_sym_cmd_identifier_token38] = ACTIONS(2066), + [aux_sym_cmd_identifier_token39] = ACTIONS(2068), + [aux_sym_cmd_identifier_token40] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2066), + [anon_sym_export_DASHenv] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_module] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_error] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_in2] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_make] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_else] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2066), + [anon_sym_catch] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_source] = ACTIONS(2066), + [anon_sym_source_DASHenv] = ACTIONS(2066), + [anon_sym_register] = ACTIONS(2066), + [anon_sym_hide] = ACTIONS(2066), + [anon_sym_hide_DASHenv] = ACTIONS(2066), + [anon_sym_overlay] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2066), + [aux_sym__val_number_token5] = ACTIONS(2066), + [aux_sym__val_number_token6] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2068), }, [788] = { [sym_comment] = STATE(788), - [aux_sym_cmd_identifier_token1] = ACTIONS(2697), - [aux_sym_cmd_identifier_token2] = ACTIONS(2699), - [aux_sym_cmd_identifier_token3] = ACTIONS(2699), - [aux_sym_cmd_identifier_token4] = ACTIONS(2699), - [aux_sym_cmd_identifier_token5] = ACTIONS(2699), - [aux_sym_cmd_identifier_token6] = ACTIONS(2699), - [aux_sym_cmd_identifier_token7] = ACTIONS(2699), - [aux_sym_cmd_identifier_token8] = ACTIONS(2699), - [aux_sym_cmd_identifier_token9] = ACTIONS(2697), - [aux_sym_cmd_identifier_token10] = ACTIONS(2699), - [aux_sym_cmd_identifier_token11] = ACTIONS(2699), - [aux_sym_cmd_identifier_token12] = ACTIONS(2699), - [aux_sym_cmd_identifier_token13] = ACTIONS(2697), - [aux_sym_cmd_identifier_token14] = ACTIONS(2699), - [aux_sym_cmd_identifier_token15] = ACTIONS(2697), - [aux_sym_cmd_identifier_token16] = ACTIONS(2699), - [aux_sym_cmd_identifier_token17] = ACTIONS(2699), - [aux_sym_cmd_identifier_token18] = ACTIONS(2699), - [aux_sym_cmd_identifier_token19] = ACTIONS(2699), - [aux_sym_cmd_identifier_token20] = ACTIONS(2699), - [aux_sym_cmd_identifier_token21] = ACTIONS(2699), - [aux_sym_cmd_identifier_token22] = ACTIONS(2699), - [aux_sym_cmd_identifier_token23] = ACTIONS(2699), - [aux_sym_cmd_identifier_token24] = ACTIONS(2699), - [aux_sym_cmd_identifier_token25] = ACTIONS(2699), - [aux_sym_cmd_identifier_token26] = ACTIONS(2699), - [aux_sym_cmd_identifier_token27] = ACTIONS(2699), - [aux_sym_cmd_identifier_token28] = ACTIONS(2699), - [aux_sym_cmd_identifier_token29] = ACTIONS(2699), - [aux_sym_cmd_identifier_token30] = ACTIONS(2699), - [aux_sym_cmd_identifier_token31] = ACTIONS(2699), - [aux_sym_cmd_identifier_token32] = ACTIONS(2699), - [aux_sym_cmd_identifier_token33] = ACTIONS(2699), - [aux_sym_cmd_identifier_token34] = ACTIONS(2697), - [aux_sym_cmd_identifier_token35] = ACTIONS(2699), - [aux_sym_cmd_identifier_token36] = ACTIONS(2699), - [aux_sym_cmd_identifier_token37] = ACTIONS(2699), - [aux_sym_cmd_identifier_token38] = ACTIONS(2697), - [aux_sym_cmd_identifier_token39] = ACTIONS(2699), - [aux_sym_cmd_identifier_token40] = ACTIONS(2699), - [sym__newline] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_err_GT_PIPE] = ACTIONS(1288), - [anon_sym_out_GT_PIPE] = ACTIONS(1288), - [anon_sym_e_GT_PIPE] = ACTIONS(1288), - [anon_sym_o_GT_PIPE] = ACTIONS(1288), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_DASH2] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_match] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_DOT_DOT] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_where] = ACTIONS(2699), - [aux_sym_expr_unary_token1] = ACTIONS(2699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2699), - [anon_sym_DOT_DOT_LT] = ACTIONS(2699), - [anon_sym_null] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2697), - [anon_sym_false] = ACTIONS(2697), - [aux_sym__val_number_decimal_token1] = ACTIONS(2697), - [aux_sym__val_number_decimal_token2] = ACTIONS(2699), - [aux_sym__val_number_decimal_token3] = ACTIONS(2699), - [aux_sym__val_number_decimal_token4] = ACTIONS(2699), - [aux_sym__val_number_token1] = ACTIONS(2699), - [aux_sym__val_number_token2] = ACTIONS(2699), - [aux_sym__val_number_token3] = ACTIONS(2699), - [aux_sym__val_number_token4] = ACTIONS(2697), - [aux_sym__val_number_token5] = ACTIONS(2697), - [aux_sym__val_number_token6] = ACTIONS(2697), - [anon_sym_0b] = ACTIONS(2697), - [anon_sym_0o] = ACTIONS(2697), - [anon_sym_0x] = ACTIONS(2697), - [sym_val_date] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [sym__str_single_quotes] = ACTIONS(2699), - [sym__str_back_ticks] = ACTIONS(2699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), - [aux_sym_env_var_token1] = ACTIONS(2697), - [anon_sym_CARET] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2699), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2084), + [aux_sym_cmd_identifier_token3] = ACTIONS(2084), + [aux_sym_cmd_identifier_token4] = ACTIONS(2084), + [aux_sym_cmd_identifier_token5] = ACTIONS(2084), + [aux_sym_cmd_identifier_token6] = ACTIONS(2084), + [aux_sym_cmd_identifier_token7] = ACTIONS(2084), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2084), + [aux_sym_cmd_identifier_token11] = ACTIONS(2084), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2084), + [aux_sym_cmd_identifier_token17] = ACTIONS(2084), + [aux_sym_cmd_identifier_token18] = ACTIONS(2084), + [aux_sym_cmd_identifier_token19] = ACTIONS(2084), + [aux_sym_cmd_identifier_token20] = ACTIONS(2084), + [aux_sym_cmd_identifier_token21] = ACTIONS(2084), + [aux_sym_cmd_identifier_token22] = ACTIONS(2084), + [aux_sym_cmd_identifier_token23] = ACTIONS(2084), + [aux_sym_cmd_identifier_token24] = ACTIONS(2084), + [aux_sym_cmd_identifier_token25] = ACTIONS(2084), + [aux_sym_cmd_identifier_token26] = ACTIONS(2084), + [aux_sym_cmd_identifier_token27] = ACTIONS(2084), + [aux_sym_cmd_identifier_token28] = ACTIONS(2084), + [aux_sym_cmd_identifier_token29] = ACTIONS(2084), + [aux_sym_cmd_identifier_token30] = ACTIONS(2084), + [aux_sym_cmd_identifier_token31] = ACTIONS(2084), + [aux_sym_cmd_identifier_token32] = ACTIONS(2084), + [aux_sym_cmd_identifier_token33] = ACTIONS(2084), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2084), + [aux_sym_cmd_identifier_token36] = ACTIONS(2084), + [aux_sym_cmd_identifier_token37] = ACTIONS(2084), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2084), + [aux_sym_cmd_identifier_token40] = ACTIONS(2084), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2084), + [aux_sym__val_number_decimal_token3] = ACTIONS(2084), + [aux_sym__val_number_decimal_token4] = ACTIONS(2084), + [aux_sym__val_number_token1] = ACTIONS(2084), + [aux_sym__val_number_token2] = ACTIONS(2084), + [aux_sym__val_number_token3] = ACTIONS(2084), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym__str_single_quotes] = ACTIONS(2084), + [sym__str_back_ticks] = ACTIONS(2084), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2084), }, [789] = { [sym_comment] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(2701), - [aux_sym__immediate_decimal_token2] = ACTIONS(2703), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1892), + [aux_sym_cmd_identifier_token3] = ACTIONS(1892), + [aux_sym_cmd_identifier_token4] = ACTIONS(1892), + [aux_sym_cmd_identifier_token5] = ACTIONS(1892), + [aux_sym_cmd_identifier_token6] = ACTIONS(1892), + [aux_sym_cmd_identifier_token7] = ACTIONS(1892), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1892), + [aux_sym_cmd_identifier_token17] = ACTIONS(1892), + [aux_sym_cmd_identifier_token18] = ACTIONS(1892), + [aux_sym_cmd_identifier_token19] = ACTIONS(1892), + [aux_sym_cmd_identifier_token20] = ACTIONS(1892), + [aux_sym_cmd_identifier_token21] = ACTIONS(1892), + [aux_sym_cmd_identifier_token22] = ACTIONS(1892), + [aux_sym_cmd_identifier_token23] = ACTIONS(1892), + [aux_sym_cmd_identifier_token24] = ACTIONS(1892), + [aux_sym_cmd_identifier_token25] = ACTIONS(1892), + [aux_sym_cmd_identifier_token26] = ACTIONS(1892), + [aux_sym_cmd_identifier_token27] = ACTIONS(1892), + [aux_sym_cmd_identifier_token28] = ACTIONS(1892), + [aux_sym_cmd_identifier_token29] = ACTIONS(1892), + [aux_sym_cmd_identifier_token30] = ACTIONS(1892), + [aux_sym_cmd_identifier_token31] = ACTIONS(1892), + [aux_sym_cmd_identifier_token32] = ACTIONS(1892), + [aux_sym_cmd_identifier_token33] = ACTIONS(1892), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [790] = { - [sym_expr_parenthesized] = STATE(1575), - [sym_val_range] = STATE(1855), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1855), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1855), - [sym_long_flag] = STATE(1855), - [sym_unquoted] = STATE(1665), - [sym__unquoted_with_expr] = STATE(1890), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7716), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2817), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(3051), + [sym__val_range] = STATE(8137), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(3052), + [sym_val_bool] = STATE(2915), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(2820), + [sym_val_number] = STATE(3052), + [sym__val_number_decimal] = STATE(2472), + [sym__val_number] = STATE(3047), + [sym_val_duration] = STATE(3052), + [sym_val_filesize] = STATE(3052), + [sym_val_binary] = STATE(3052), + [sym_val_string] = STATE(3052), + [sym__raw_str] = STATE(3033), + [sym__str_double_quotes] = STATE(3033), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7368), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7770), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(3052), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(2913), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(6893), [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(1065), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(798), - [sym__newline] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_err_GT_PIPE] = ACTIONS(2705), - [anon_sym_out_GT_PIPE] = ACTIONS(2705), - [anon_sym_e_GT_PIPE] = ACTIONS(2705), - [anon_sym_o_GT_PIPE] = ACTIONS(2705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [aux_sym_shebang_repeat1] = STATE(908), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym__match_pattern_list_repeat1] = STATE(1327), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2703), }, [791] = { - [sym_expr_parenthesized] = STATE(1575), - [sym_val_range] = STATE(1855), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1855), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1855), - [sym_long_flag] = STATE(1855), - [sym_unquoted] = STATE(1665), - [sym__unquoted_with_expr] = STATE(1890), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7716), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2817), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(3051), + [sym__val_range] = STATE(8137), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(3052), + [sym_val_bool] = STATE(2915), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(2820), + [sym_val_number] = STATE(3052), + [sym__val_number_decimal] = STATE(2472), + [sym__val_number] = STATE(3047), + [sym_val_duration] = STATE(3052), + [sym_val_filesize] = STATE(3052), + [sym_val_binary] = STATE(3052), + [sym_val_string] = STATE(3052), + [sym__raw_str] = STATE(3033), + [sym__str_double_quotes] = STATE(3033), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7392), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7927), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(3052), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(2913), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(6893), [sym_comment] = STATE(791), - [aux_sym_shebang_repeat1] = STATE(1065), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), - [sym__newline] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_err_GT_PIPE] = ACTIONS(2705), - [anon_sym_out_GT_PIPE] = ACTIONS(2705), - [anon_sym_e_GT_PIPE] = ACTIONS(2705), - [anon_sym_o_GT_PIPE] = ACTIONS(2705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [aux_sym_shebang_repeat1] = STATE(911), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym__match_pattern_list_repeat1] = STATE(1327), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2703), }, [792] = { - [sym_expr_parenthesized] = STATE(1575), - [sym_val_range] = STATE(1855), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1855), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1855), - [sym_long_flag] = STATE(1855), - [sym_unquoted] = STATE(1665), - [sym__unquoted_with_expr] = STATE(1890), - [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(792), - [aux_sym_shebang_repeat1] = STATE(1065), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(791), - [sym__newline] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_err_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_GT_PIPE] = ACTIONS(2709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2709), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [aux_sym_record_entry_token1] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [793] = { [sym_comment] = STATE(793), - [aux_sym_cmd_identifier_token1] = ACTIONS(2596), - [aux_sym_cmd_identifier_token2] = ACTIONS(2598), - [aux_sym_cmd_identifier_token3] = ACTIONS(2598), - [aux_sym_cmd_identifier_token4] = ACTIONS(2598), - [aux_sym_cmd_identifier_token5] = ACTIONS(2598), - [aux_sym_cmd_identifier_token6] = ACTIONS(2598), - [aux_sym_cmd_identifier_token7] = ACTIONS(2598), - [aux_sym_cmd_identifier_token8] = ACTIONS(2598), - [aux_sym_cmd_identifier_token9] = ACTIONS(2596), - [aux_sym_cmd_identifier_token10] = ACTIONS(2598), - [aux_sym_cmd_identifier_token11] = ACTIONS(2598), - [aux_sym_cmd_identifier_token12] = ACTIONS(2598), - [aux_sym_cmd_identifier_token13] = ACTIONS(2596), - [aux_sym_cmd_identifier_token14] = ACTIONS(2598), - [aux_sym_cmd_identifier_token15] = ACTIONS(2596), - [aux_sym_cmd_identifier_token16] = ACTIONS(2598), - [aux_sym_cmd_identifier_token17] = ACTIONS(2598), - [aux_sym_cmd_identifier_token18] = ACTIONS(2598), - [aux_sym_cmd_identifier_token19] = ACTIONS(2598), - [aux_sym_cmd_identifier_token20] = ACTIONS(2598), - [aux_sym_cmd_identifier_token21] = ACTIONS(2598), - [aux_sym_cmd_identifier_token22] = ACTIONS(2598), - [aux_sym_cmd_identifier_token23] = ACTIONS(2598), - [aux_sym_cmd_identifier_token24] = ACTIONS(2598), - [aux_sym_cmd_identifier_token25] = ACTIONS(2598), - [aux_sym_cmd_identifier_token26] = ACTIONS(2598), - [aux_sym_cmd_identifier_token27] = ACTIONS(2598), - [aux_sym_cmd_identifier_token28] = ACTIONS(2598), - [aux_sym_cmd_identifier_token29] = ACTIONS(2598), - [aux_sym_cmd_identifier_token30] = ACTIONS(2598), - [aux_sym_cmd_identifier_token31] = ACTIONS(2598), - [aux_sym_cmd_identifier_token32] = ACTIONS(2598), - [aux_sym_cmd_identifier_token33] = ACTIONS(2598), - [aux_sym_cmd_identifier_token34] = ACTIONS(2596), - [aux_sym_cmd_identifier_token35] = ACTIONS(2598), - [aux_sym_cmd_identifier_token36] = ACTIONS(2598), - [aux_sym_cmd_identifier_token37] = ACTIONS(2598), - [aux_sym_cmd_identifier_token38] = ACTIONS(2596), - [aux_sym_cmd_identifier_token39] = ACTIONS(2598), - [aux_sym_cmd_identifier_token40] = ACTIONS(2598), - [sym__newline] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_DASH2] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_match] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_DOT_DOT] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_where] = ACTIONS(2598), - [aux_sym_expr_unary_token1] = ACTIONS(2598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2598), - [anon_sym_DOT_DOT_LT] = ACTIONS(2598), - [anon_sym_null] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [aux_sym__val_number_decimal_token1] = ACTIONS(2596), - [aux_sym__val_number_decimal_token2] = ACTIONS(2598), - [aux_sym__val_number_decimal_token3] = ACTIONS(2598), - [aux_sym__val_number_decimal_token4] = ACTIONS(2598), - [aux_sym__val_number_token1] = ACTIONS(2598), - [aux_sym__val_number_token2] = ACTIONS(2598), - [aux_sym__val_number_token3] = ACTIONS(2598), - [aux_sym__val_number_token4] = ACTIONS(2596), - [aux_sym__val_number_token5] = ACTIONS(2596), - [aux_sym__val_number_token6] = ACTIONS(2596), - [anon_sym_0b] = ACTIONS(2596), - [anon_sym_0o] = ACTIONS(2596), - [anon_sym_0x] = ACTIONS(2596), - [sym_val_date] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym__str_single_quotes] = ACTIONS(2598), - [sym__str_back_ticks] = ACTIONS(2598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2598), - [aux_sym_env_var_token1] = ACTIONS(2596), - [anon_sym_CARET] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2598), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2711), + [aux_sym__immediate_decimal_token2] = ACTIONS(2713), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [aux_sym_record_entry_token1] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), }, [794] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1826), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1826), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1826), - [sym_long_flag] = STATE(1826), - [sym_unquoted] = STATE(1638), - [sym__unquoted_with_expr] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1841), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1841), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1841), + [sym_long_flag] = STATE(1841), + [sym_unquoted] = STATE(1643), + [sym__unquoted_with_expr] = STATE(1817), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(794), - [aux_sym_ctrl_do_repeat2] = STATE(794), - [sym__newline] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_err_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_GT_PIPE] = ACTIONS(2711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2722), + [aux_sym_ctrl_do_repeat2] = STATE(798), + [sym__newline] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_err_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_GT_PIPE] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), [anon_sym_DASH2] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_DOT_DOT] = ACTIONS(2731), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_LT] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2737), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [aux_sym__val_number_decimal_token1] = ACTIONS(2743), - [aux_sym__val_number_decimal_token2] = ACTIONS(2746), - [aux_sym__val_number_decimal_token3] = ACTIONS(2749), - [aux_sym__val_number_decimal_token4] = ACTIONS(2752), - [aux_sym__val_number_token1] = ACTIONS(2755), - [aux_sym__val_number_token2] = ACTIONS(2755), - [aux_sym__val_number_token3] = ACTIONS(2755), - [aux_sym__val_number_token4] = ACTIONS(2758), - [aux_sym__val_number_token5] = ACTIONS(2758), - [aux_sym__val_number_token6] = ACTIONS(2758), - [anon_sym_0b] = ACTIONS(2761), - [anon_sym_0o] = ACTIONS(2764), - [anon_sym_0x] = ACTIONS(2764), - [sym_val_date] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym__str_single_quotes] = ACTIONS(2773), - [sym__str_back_ticks] = ACTIONS(2773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2779), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2785), - [anon_sym_out_GT_GT] = ACTIONS(2785), - [anon_sym_e_GT_GT] = ACTIONS(2785), - [anon_sym_o_GT_GT] = ACTIONS(2785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), - [aux_sym_unquoted_token1] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [795] = { [sym_comment] = STATE(795), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2796), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(2771), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [aux_sym_record_entry_token1] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [796] = { [sym_comment] = STATE(796), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2615), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [aux_sym_record_entry_token1] = ACTIONS(1573), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2709), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [aux_sym_record_entry_token1] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [797] = { [sym_comment] = STATE(797), - [aux_sym_cmd_identifier_token1] = ACTIONS(2798), - [aux_sym_cmd_identifier_token2] = ACTIONS(2800), - [aux_sym_cmd_identifier_token3] = ACTIONS(2800), - [aux_sym_cmd_identifier_token4] = ACTIONS(2800), - [aux_sym_cmd_identifier_token5] = ACTIONS(2800), - [aux_sym_cmd_identifier_token6] = ACTIONS(2800), - [aux_sym_cmd_identifier_token7] = ACTIONS(2800), - [aux_sym_cmd_identifier_token8] = ACTIONS(2800), - [aux_sym_cmd_identifier_token9] = ACTIONS(2798), - [aux_sym_cmd_identifier_token10] = ACTIONS(2800), - [aux_sym_cmd_identifier_token11] = ACTIONS(2800), - [aux_sym_cmd_identifier_token12] = ACTIONS(2800), - [aux_sym_cmd_identifier_token13] = ACTIONS(2798), - [aux_sym_cmd_identifier_token14] = ACTIONS(2800), - [aux_sym_cmd_identifier_token15] = ACTIONS(2798), - [aux_sym_cmd_identifier_token16] = ACTIONS(2800), - [aux_sym_cmd_identifier_token17] = ACTIONS(2800), - [aux_sym_cmd_identifier_token18] = ACTIONS(2800), - [aux_sym_cmd_identifier_token19] = ACTIONS(2800), - [aux_sym_cmd_identifier_token20] = ACTIONS(2800), - [aux_sym_cmd_identifier_token21] = ACTIONS(2800), - [aux_sym_cmd_identifier_token22] = ACTIONS(2800), - [aux_sym_cmd_identifier_token23] = ACTIONS(2800), - [aux_sym_cmd_identifier_token24] = ACTIONS(2800), - [aux_sym_cmd_identifier_token25] = ACTIONS(2800), - [aux_sym_cmd_identifier_token26] = ACTIONS(2800), - [aux_sym_cmd_identifier_token27] = ACTIONS(2800), - [aux_sym_cmd_identifier_token28] = ACTIONS(2800), - [aux_sym_cmd_identifier_token29] = ACTIONS(2800), - [aux_sym_cmd_identifier_token30] = ACTIONS(2800), - [aux_sym_cmd_identifier_token31] = ACTIONS(2800), - [aux_sym_cmd_identifier_token32] = ACTIONS(2800), - [aux_sym_cmd_identifier_token33] = ACTIONS(2800), - [aux_sym_cmd_identifier_token34] = ACTIONS(2798), - [aux_sym_cmd_identifier_token35] = ACTIONS(2800), - [aux_sym_cmd_identifier_token36] = ACTIONS(2800), - [aux_sym_cmd_identifier_token37] = ACTIONS(2800), - [aux_sym_cmd_identifier_token38] = ACTIONS(2798), - [aux_sym_cmd_identifier_token39] = ACTIONS(2800), - [aux_sym_cmd_identifier_token40] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_err_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_GT_PIPE] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2798), - [anon_sym_DASH2] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_where] = ACTIONS(2800), - [aux_sym_expr_unary_token1] = ACTIONS(2800), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2800), - [anon_sym_DOT_DOT_LT] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2798), - [anon_sym_false] = ACTIONS(2798), - [aux_sym__val_number_decimal_token1] = ACTIONS(2798), - [aux_sym__val_number_decimal_token2] = ACTIONS(2800), - [aux_sym__val_number_decimal_token3] = ACTIONS(2800), - [aux_sym__val_number_decimal_token4] = ACTIONS(2800), - [aux_sym__val_number_token1] = ACTIONS(2800), - [aux_sym__val_number_token2] = ACTIONS(2800), - [aux_sym__val_number_token3] = ACTIONS(2800), - [aux_sym__val_number_token4] = ACTIONS(2798), - [aux_sym__val_number_token5] = ACTIONS(2798), - [aux_sym__val_number_token6] = ACTIONS(2798), - [anon_sym_0b] = ACTIONS(2798), - [anon_sym_0o] = ACTIONS(2798), - [anon_sym_0x] = ACTIONS(2798), - [sym_val_date] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym__str_single_quotes] = ACTIONS(2800), - [sym__str_back_ticks] = ACTIONS(2800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), - [aux_sym_env_var_token1] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2800), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2773), + [aux_sym__immediate_decimal_token2] = ACTIONS(2775), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), }, [798] = { - [sym_expr_parenthesized] = STATE(1575), - [sym_val_range] = STATE(1855), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1855), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1855), - [sym_long_flag] = STATE(1855), - [sym_unquoted] = STATE(1665), - [sym__unquoted_with_expr] = STATE(1890), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1841), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1841), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1841), + [sym_long_flag] = STATE(1841), + [sym_unquoted] = STATE(1643), + [sym__unquoted_with_expr] = STATE(1817), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(1065), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), - [sym__newline] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [sym__newline] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_err_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_GT_PIPE] = ACTIONS(2777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2777), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [799] = { - [sym_expr_parenthesized] = STATE(1575), - [sym_val_range] = STATE(1855), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1855), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1855), - [sym_long_flag] = STATE(1855), - [sym_unquoted] = STATE(1665), - [sym__unquoted_with_expr] = STATE(1890), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_expr_parenthesized] = STATE(1641), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1948), + [sym_long_flag] = STATE(1948), + [sym_unquoted] = STATE(1716), + [sym__unquoted_with_expr] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(799), - [aux_sym_shebang_repeat1] = STATE(1065), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), - [sym__newline] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_err_GT_PIPE] = ACTIONS(2807), - [anon_sym_out_GT_PIPE] = ACTIONS(2807), - [anon_sym_e_GT_PIPE] = ACTIONS(2807), - [anon_sym_o_GT_PIPE] = ACTIONS(2807), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2807), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2807), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2807), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_DOLLAR] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_DASH2] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_null] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [aux_sym__val_number_decimal_token1] = ACTIONS(2839), - [aux_sym__val_number_decimal_token2] = ACTIONS(2842), - [aux_sym__val_number_decimal_token3] = ACTIONS(2845), - [aux_sym__val_number_decimal_token4] = ACTIONS(2848), - [aux_sym__val_number_token1] = ACTIONS(2851), - [aux_sym__val_number_token2] = ACTIONS(2851), - [aux_sym__val_number_token3] = ACTIONS(2851), - [aux_sym__val_number_token4] = ACTIONS(2854), - [aux_sym__val_number_token5] = ACTIONS(2854), - [aux_sym__val_number_token6] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2857), - [anon_sym_0o] = ACTIONS(2860), - [anon_sym_0x] = ACTIONS(2860), - [sym_val_date] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2866), - [sym__str_single_quotes] = ACTIONS(2869), - [sym__str_back_ticks] = ACTIONS(2869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2872), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2875), - [anon_sym_err_GT] = ACTIONS(2878), - [anon_sym_out_GT] = ACTIONS(2878), - [anon_sym_e_GT] = ACTIONS(2878), - [anon_sym_o_GT] = ACTIONS(2878), - [anon_sym_err_PLUSout_GT] = ACTIONS(2878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), - [anon_sym_o_PLUSe_GT] = ACTIONS(2878), - [anon_sym_e_PLUSo_GT] = ACTIONS(2878), - [anon_sym_err_GT_GT] = ACTIONS(2881), - [anon_sym_out_GT_GT] = ACTIONS(2881), - [anon_sym_e_GT_GT] = ACTIONS(2881), - [anon_sym_o_GT_GT] = ACTIONS(2881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2881), - [aux_sym_unquoted_token1] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2887), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(809), + [sym__newline] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_PIPE] = ACTIONS(2781), + [anon_sym_err_GT_PIPE] = ACTIONS(2781), + [anon_sym_out_GT_PIPE] = ACTIONS(2781), + [anon_sym_e_GT_PIPE] = ACTIONS(2781), + [anon_sym_o_GT_PIPE] = ACTIONS(2781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [800] = { - [sym_expr_parenthesized] = STATE(1561), - [sym_val_range] = STATE(1826), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1826), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1826), - [sym_long_flag] = STATE(1826), - [sym_unquoted] = STATE(1638), - [sym__unquoted_with_expr] = STATE(1828), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1841), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1841), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1841), + [sym_long_flag] = STATE(1841), + [sym_unquoted] = STATE(1643), + [sym__unquoted_with_expr] = STATE(1817), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(800), - [aux_sym_ctrl_do_repeat2] = STATE(781), - [sym__newline] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_err_GT_PIPE] = ACTIONS(2890), - [anon_sym_out_GT_PIPE] = ACTIONS(2890), - [anon_sym_e_GT_PIPE] = ACTIONS(2890), - [anon_sym_o_GT_PIPE] = ACTIONS(2890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [aux_sym_ctrl_do_repeat2] = STATE(808), + [sym__newline] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_err_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_GT_PIPE] = ACTIONS(2777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2777), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [801] = { [sym_comment] = STATE(801), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(2892), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [aux_sym_record_entry_token1] = ACTIONS(1681), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2783), + [aux_sym__immediate_decimal_token2] = ACTIONS(2785), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [802] = { [sym_comment] = STATE(802), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [aux_sym_record_entry_token1] = ACTIONS(1573), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2787), + [aux_sym__immediate_decimal_token2] = ACTIONS(2789), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2896), - [anon_sym_mod] = ACTIONS(2894), - [anon_sym_SLASH_SLASH] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_bit_DASHshl] = ACTIONS(2894), - [anon_sym_bit_DASHshr] = ACTIONS(2894), - [anon_sym_EQ_TILDE] = ACTIONS(2894), - [anon_sym_BANG_TILDE] = ACTIONS(2894), - [anon_sym_bit_DASHand] = ACTIONS(2894), - [anon_sym_bit_DASHxor] = ACTIONS(2894), - [anon_sym_bit_DASHor] = ACTIONS(2894), - [anon_sym_and] = ACTIONS(2894), - [anon_sym_xor] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_not_DASHin] = ACTIONS(2894), - [anon_sym_starts_DASHwith] = ACTIONS(2894), - [anon_sym_ends_DASHwith] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2894), - [aux_sym_cmd_identifier_token41] = ACTIONS(2898), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(2904), - [sym_duration_unit] = ACTIONS(2906), - [aux_sym_record_entry_token1] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2793), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [804] = { + [sym_expr_parenthesized] = STATE(1641), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1948), + [sym_long_flag] = STATE(1948), + [sym_unquoted] = STATE(1716), + [sym__unquoted_with_expr] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(804), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [aux_sym_record_entry_token1] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), + [sym__newline] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_err_GT_PIPE] = ACTIONS(2795), + [anon_sym_out_GT_PIPE] = ACTIONS(2795), + [anon_sym_e_GT_PIPE] = ACTIONS(2795), + [anon_sym_o_GT_PIPE] = ACTIONS(2795), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2795), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2795), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2795), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [805] = { [sym_comment] = STATE(805), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2691), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2799), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [806] = { + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1841), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1841), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1841), + [sym_long_flag] = STATE(1841), + [sym_unquoted] = STATE(1643), + [sym__unquoted_with_expr] = STATE(1817), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(806), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2910), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [sym__newline] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_err_GT_PIPE] = ACTIONS(2801), + [anon_sym_out_GT_PIPE] = ACTIONS(2801), + [anon_sym_e_GT_PIPE] = ACTIONS(2801), + [anon_sym_o_GT_PIPE] = ACTIONS(2801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2824), + [anon_sym_DOT_DOT_LT] = ACTIONS(2824), + [anon_sym_null] = ACTIONS(2827), + [anon_sym_true] = ACTIONS(2830), + [anon_sym_false] = ACTIONS(2830), + [aux_sym__val_number_decimal_token1] = ACTIONS(2833), + [aux_sym__val_number_decimal_token2] = ACTIONS(2836), + [aux_sym__val_number_decimal_token3] = ACTIONS(2839), + [aux_sym__val_number_decimal_token4] = ACTIONS(2842), + [aux_sym__val_number_token1] = ACTIONS(2845), + [aux_sym__val_number_token2] = ACTIONS(2845), + [aux_sym__val_number_token3] = ACTIONS(2845), + [aux_sym__val_number_token4] = ACTIONS(2848), + [aux_sym__val_number_token5] = ACTIONS(2848), + [aux_sym__val_number_token6] = ACTIONS(2848), + [anon_sym_0b] = ACTIONS(2851), + [anon_sym_0o] = ACTIONS(2854), + [anon_sym_0x] = ACTIONS(2854), + [sym_val_date] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2860), + [sym__str_single_quotes] = ACTIONS(2863), + [sym__str_back_ticks] = ACTIONS(2863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2869), + [anon_sym_err_GT] = ACTIONS(2872), + [anon_sym_out_GT] = ACTIONS(2872), + [anon_sym_e_GT] = ACTIONS(2872), + [anon_sym_o_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT] = ACTIONS(2872), + [anon_sym_err_GT_GT] = ACTIONS(2875), + [anon_sym_out_GT_GT] = ACTIONS(2875), + [anon_sym_e_GT_GT] = ACTIONS(2875), + [anon_sym_o_GT_GT] = ACTIONS(2875), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2875), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2875), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2875), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2875), + [aux_sym_unquoted_token1] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2881), }, [807] = { + [sym_expr_parenthesized] = STATE(1641), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1948), + [sym_long_flag] = STATE(1948), + [sym_unquoted] = STATE(1716), + [sym__unquoted_with_expr] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(2912), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(811), + [sym__newline] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_err_GT_PIPE] = ACTIONS(2884), + [anon_sym_out_GT_PIPE] = ACTIONS(2884), + [anon_sym_e_GT_PIPE] = ACTIONS(2884), + [anon_sym_o_GT_PIPE] = ACTIONS(2884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2884), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [808] = { + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1841), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1841), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1841), + [sym_long_flag] = STATE(1841), + [sym_unquoted] = STATE(1643), + [sym__unquoted_with_expr] = STATE(1817), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(808), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(2914), - [aux_sym__immediate_decimal_token2] = ACTIONS(2916), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [sym__newline] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_err_GT_PIPE] = ACTIONS(2886), + [anon_sym_out_GT_PIPE] = ACTIONS(2886), + [anon_sym_e_GT_PIPE] = ACTIONS(2886), + [anon_sym_o_GT_PIPE] = ACTIONS(2886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2886), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [809] = { - [sym_expr_parenthesized] = STATE(1579), - [sym_val_range] = STATE(1899), - [sym__val_range] = STATE(7884), - [sym__val_range_with_end] = STATE(7572), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1715), - [sym_val_variable] = STATE(1577), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1344), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_short_flag] = STATE(1899), - [sym_long_flag] = STATE(1899), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1913), - [sym__unquoted_anonymous_prefix] = STATE(7378), + [sym_expr_parenthesized] = STATE(1641), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1948), + [sym_long_flag] = STATE(1948), + [sym_unquoted] = STATE(1716), + [sym__unquoted_with_expr] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(809), - [aux_sym_ctrl_do_repeat2] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(2711), - [sym__newline] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_err_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_GT_PIPE] = ACTIONS(2711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_DASH2] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_DOT_DOT] = ACTIONS(2936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2939), - [anon_sym_DOT_DOT_LT] = ACTIONS(2939), - [anon_sym_null] = ACTIONS(2942), - [anon_sym_true] = ACTIONS(2945), - [anon_sym_false] = ACTIONS(2945), - [aux_sym__val_number_decimal_token1] = ACTIONS(2948), - [aux_sym__val_number_decimal_token2] = ACTIONS(2951), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2957), - [aux_sym__val_number_token1] = ACTIONS(2960), - [aux_sym__val_number_token2] = ACTIONS(2960), - [aux_sym__val_number_token3] = ACTIONS(2960), - [aux_sym__val_number_token4] = ACTIONS(2963), - [aux_sym__val_number_token5] = ACTIONS(2963), - [aux_sym__val_number_token6] = ACTIONS(2963), - [anon_sym_0b] = ACTIONS(2966), - [anon_sym_0o] = ACTIONS(2969), - [anon_sym_0x] = ACTIONS(2969), - [sym_val_date] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym__str_single_quotes] = ACTIONS(2978), - [sym__str_back_ticks] = ACTIONS(2978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2785), - [anon_sym_out_GT_GT] = ACTIONS(2785), - [anon_sym_e_GT_GT] = ACTIONS(2785), - [anon_sym_o_GT_GT] = ACTIONS(2785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), - [aux_sym_unquoted_token1] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2990), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(809), + [sym__newline] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_err_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_GT_PIPE] = ACTIONS(2891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_DOLLAR] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_DASH2] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_DOT_DOT] = ACTIONS(2911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2914), + [anon_sym_DOT_DOT_LT] = ACTIONS(2914), + [anon_sym_null] = ACTIONS(2917), + [anon_sym_true] = ACTIONS(2920), + [anon_sym_false] = ACTIONS(2920), + [aux_sym__val_number_decimal_token1] = ACTIONS(2923), + [aux_sym__val_number_decimal_token2] = ACTIONS(2926), + [aux_sym__val_number_decimal_token3] = ACTIONS(2929), + [aux_sym__val_number_decimal_token4] = ACTIONS(2932), + [aux_sym__val_number_token1] = ACTIONS(2935), + [aux_sym__val_number_token2] = ACTIONS(2935), + [aux_sym__val_number_token3] = ACTIONS(2935), + [aux_sym__val_number_token4] = ACTIONS(2938), + [aux_sym__val_number_token5] = ACTIONS(2938), + [aux_sym__val_number_token6] = ACTIONS(2938), + [anon_sym_0b] = ACTIONS(2941), + [anon_sym_0o] = ACTIONS(2944), + [anon_sym_0x] = ACTIONS(2944), + [sym_val_date] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym__str_single_quotes] = ACTIONS(2953), + [sym__str_back_ticks] = ACTIONS(2953), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), + [anon_sym_err_GT] = ACTIONS(2962), + [anon_sym_out_GT] = ACTIONS(2962), + [anon_sym_e_GT] = ACTIONS(2962), + [anon_sym_o_GT] = ACTIONS(2962), + [anon_sym_err_PLUSout_GT] = ACTIONS(2962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2962), + [anon_sym_o_PLUSe_GT] = ACTIONS(2962), + [anon_sym_e_PLUSo_GT] = ACTIONS(2962), + [anon_sym_err_GT_GT] = ACTIONS(2965), + [anon_sym_out_GT_GT] = ACTIONS(2965), + [anon_sym_e_GT_GT] = ACTIONS(2965), + [anon_sym_o_GT_GT] = ACTIONS(2965), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2965), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2965), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2965), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2965), + [aux_sym_unquoted_token1] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2971), }, [810] = { - [sym_expr_parenthesized] = STATE(1579), - [sym_val_range] = STATE(1899), - [sym__val_range] = STATE(7884), - [sym__val_range_with_end] = STATE(7572), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1715), - [sym_val_variable] = STATE(1577), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1344), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_short_flag] = STATE(1899), - [sym_long_flag] = STATE(1899), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1913), - [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(810), - [aux_sym_ctrl_do_repeat2] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(2687), - [sym__newline] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_err_GT_PIPE] = ACTIONS(2687), - [anon_sym_out_GT_PIPE] = ACTIONS(2687), - [anon_sym_e_GT_PIPE] = ACTIONS(2687), - [anon_sym_o_GT_PIPE] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_DASH2] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [aux_sym__val_number_decimal_token1] = ACTIONS(3013), - [aux_sym__val_number_decimal_token2] = ACTIONS(3015), - [aux_sym__val_number_decimal_token3] = ACTIONS(3017), - [aux_sym__val_number_decimal_token4] = ACTIONS(3019), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(3023), - [aux_sym__val_number_token5] = ACTIONS(3023), - [aux_sym__val_number_token6] = ACTIONS(3023), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2976), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [811] = { + [sym_expr_parenthesized] = STATE(1641), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1948), + [sym_long_flag] = STATE(1948), + [sym_unquoted] = STATE(1716), + [sym__unquoted_with_expr] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(811), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2681), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(809), + [sym__newline] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_err_GT_PIPE] = ACTIONS(2795), + [anon_sym_out_GT_PIPE] = ACTIONS(2795), + [anon_sym_e_GT_PIPE] = ACTIONS(2795), + [anon_sym_o_GT_PIPE] = ACTIONS(2795), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2795), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2795), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2795), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [812] = { - [sym_expr_parenthesized] = STATE(1579), - [sym_val_range] = STATE(1899), - [sym__val_range] = STATE(7884), - [sym__val_range_with_end] = STATE(7572), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1715), - [sym_val_variable] = STATE(1577), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1344), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_short_flag] = STATE(1899), - [sym_long_flag] = STATE(1899), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1913), - [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(812), - [aux_sym_ctrl_do_repeat2] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(2623), - [sym__newline] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2623), - [anon_sym_err_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_GT_PIPE] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_DASH2] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [aux_sym__val_number_decimal_token1] = ACTIONS(3013), - [aux_sym__val_number_decimal_token2] = ACTIONS(3015), - [aux_sym__val_number_decimal_token3] = ACTIONS(3017), - [aux_sym__val_number_decimal_token4] = ACTIONS(3019), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(3023), - [aux_sym__val_number_token5] = ACTIONS(3023), - [aux_sym__val_number_token6] = ACTIONS(3023), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2793), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [813] = { - [sym_expr_parenthesized] = STATE(1579), - [sym_val_range] = STATE(1899), - [sym__val_range] = STATE(7884), - [sym__val_range_with_end] = STATE(7572), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1715), - [sym_val_variable] = STATE(1577), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1344), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_short_flag] = STATE(1899), - [sym_long_flag] = STATE(1899), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1913), - [sym__unquoted_anonymous_prefix] = STATE(7378), + [sym_expr_parenthesized] = STATE(1587), + [sym_val_range] = STATE(1908), + [sym__val_range] = STATE(8064), + [sym__val_range_with_end] = STATE(7709), + [sym__value] = STATE(1908), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1686), + [sym_val_variable] = STATE(1604), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1369), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_short_flag] = STATE(1908), + [sym_long_flag] = STATE(1908), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(1952), + [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(813), - [aux_sym_ctrl_do_repeat2] = STATE(810), - [ts_builtin_sym_end] = ACTIONS(2623), - [sym__newline] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2623), - [anon_sym_err_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_GT_PIPE] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_DASH2] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [aux_sym__val_number_decimal_token1] = ACTIONS(3013), - [aux_sym__val_number_decimal_token2] = ACTIONS(3015), - [aux_sym__val_number_decimal_token3] = ACTIONS(3017), - [aux_sym__val_number_decimal_token4] = ACTIONS(3019), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(3023), - [aux_sym__val_number_token5] = ACTIONS(3023), - [aux_sym__val_number_token6] = ACTIONS(3023), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [aux_sym_ctrl_do_repeat2] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym__newline] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_err_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_GT_PIPE] = ACTIONS(2777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_DASH2] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_decimal_token2] = ACTIONS(3000), + [aux_sym__val_number_decimal_token3] = ACTIONS(3002), + [aux_sym__val_number_decimal_token4] = ACTIONS(3004), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(3008), + [aux_sym__val_number_token5] = ACTIONS(3008), + [aux_sym__val_number_token6] = ACTIONS(3008), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [814] = { + [sym_expr_parenthesized] = STATE(1587), + [sym_val_range] = STATE(1908), + [sym__val_range] = STATE(8064), + [sym__val_range_with_end] = STATE(7709), + [sym__value] = STATE(1908), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1686), + [sym_val_variable] = STATE(1604), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1369), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_short_flag] = STATE(1908), + [sym_long_flag] = STATE(1908), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(1952), + [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [aux_sym_record_entry_token1] = ACTIONS(1585), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(828), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym__newline] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_err_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_GT_PIPE] = ACTIONS(2777), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2777), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2777), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2777), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_DASH2] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_decimal_token2] = ACTIONS(3000), + [aux_sym__val_number_decimal_token3] = ACTIONS(3002), + [aux_sym__val_number_decimal_token4] = ACTIONS(3004), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(3008), + [aux_sym__val_number_token5] = ACTIONS(3008), + [aux_sym__val_number_token6] = ACTIONS(3008), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [815] = { [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3043), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2976), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [816] = { - [sym_expr_parenthesized] = STATE(1579), - [sym_val_range] = STATE(1899), - [sym__val_range] = STATE(7884), - [sym__val_range_with_end] = STATE(7572), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1715), - [sym_val_variable] = STATE(1577), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1344), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_short_flag] = STATE(1899), - [sym_long_flag] = STATE(1899), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1913), - [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(816), - [aux_sym_ctrl_do_repeat2] = STATE(812), - [ts_builtin_sym_end] = ACTIONS(2890), - [sym__newline] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_err_GT_PIPE] = ACTIONS(2890), - [anon_sym_out_GT_PIPE] = ACTIONS(2890), - [anon_sym_e_GT_PIPE] = ACTIONS(2890), - [anon_sym_o_GT_PIPE] = ACTIONS(2890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_DASH2] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [aux_sym__val_number_decimal_token1] = ACTIONS(3013), - [aux_sym__val_number_decimal_token2] = ACTIONS(3015), - [aux_sym__val_number_decimal_token3] = ACTIONS(3017), - [aux_sym__val_number_decimal_token4] = ACTIONS(3019), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(3023), - [aux_sym__val_number_token5] = ACTIONS(3023), - [aux_sym__val_number_token6] = ACTIONS(3023), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3028), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), }, [817] = { [sym_comment] = STATE(817), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2796), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3030), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [818] = { [sym_comment] = STATE(818), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [aux_sym_record_entry_token1] = ACTIONS(1681), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [aux_sym_record_entry_token1] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [ts_builtin_sym_end] = ACTIONS(1683), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3045), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [aux_sym_record_entry_token1] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [aux_sym_record_entry_token1] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [821] = { [sym_comment] = STATE(821), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3047), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [aux_sym_record_entry_token1] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, [822] = { [sym_comment] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_mod] = ACTIONS(3049), - [anon_sym_SLASH_SLASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_bit_DASHshl] = ACTIONS(3049), - [anon_sym_bit_DASHshr] = ACTIONS(3049), - [anon_sym_EQ_TILDE] = ACTIONS(3049), - [anon_sym_BANG_TILDE] = ACTIONS(3049), - [anon_sym_bit_DASHand] = ACTIONS(3049), - [anon_sym_bit_DASHxor] = ACTIONS(3049), - [anon_sym_bit_DASHor] = ACTIONS(3049), - [anon_sym_and] = ACTIONS(3049), - [anon_sym_xor] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_not_DASHin] = ACTIONS(3049), - [anon_sym_starts_DASHwith] = ACTIONS(3049), - [anon_sym_ends_DASHwith] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3049), - [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(3055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), - [sym_filesize_unit] = ACTIONS(3059), - [sym_duration_unit] = ACTIONS(3061), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2799), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [823] = { [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [824] = { + [sym_expr_parenthesized] = STATE(1587), + [sym_val_range] = STATE(1908), + [sym__val_range] = STATE(8064), + [sym__val_range_with_end] = STATE(7709), + [sym__value] = STATE(1908), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1686), + [sym_val_variable] = STATE(1604), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1369), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_short_flag] = STATE(1908), + [sym_long_flag] = STATE(1908), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(1952), + [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(824), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(813), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym__newline] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_err_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_GT_PIPE] = ACTIONS(2715), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2715), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2715), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2715), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_DASH2] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_decimal_token2] = ACTIONS(3000), + [aux_sym__val_number_decimal_token3] = ACTIONS(3002), + [aux_sym__val_number_decimal_token4] = ACTIONS(3004), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(3008), + [aux_sym__val_number_token5] = ACTIONS(3008), + [aux_sym__val_number_token6] = ACTIONS(3008), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [825] = { [sym_comment] = STATE(825), - [ts_builtin_sym_end] = ACTIONS(1683), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3036), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [826] = { [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3038), + [aux_sym__immediate_decimal_token2] = ACTIONS(3040), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [827] = { + [sym_expr_parenthesized] = STATE(1587), + [sym_val_range] = STATE(1908), + [sym__val_range] = STATE(8064), + [sym__val_range_with_end] = STATE(7709), + [sym__value] = STATE(1908), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1686), + [sym_val_variable] = STATE(1604), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1369), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_short_flag] = STATE(1908), + [sym_long_flag] = STATE(1908), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(1952), + [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(827), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(2910), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym__newline] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_err_GT_PIPE] = ACTIONS(2801), + [anon_sym_out_GT_PIPE] = ACTIONS(2801), + [anon_sym_e_GT_PIPE] = ACTIONS(2801), + [anon_sym_o_GT_PIPE] = ACTIONS(2801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3051), + [anon_sym_DASH2] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3063), + [anon_sym_DOT_DOT_LT] = ACTIONS(3063), + [anon_sym_null] = ACTIONS(3066), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [aux_sym__val_number_decimal_token1] = ACTIONS(3072), + [aux_sym__val_number_decimal_token2] = ACTIONS(3075), + [aux_sym__val_number_decimal_token3] = ACTIONS(3078), + [aux_sym__val_number_decimal_token4] = ACTIONS(3081), + [aux_sym__val_number_token1] = ACTIONS(3084), + [aux_sym__val_number_token2] = ACTIONS(3084), + [aux_sym__val_number_token3] = ACTIONS(3084), + [aux_sym__val_number_token4] = ACTIONS(3087), + [aux_sym__val_number_token5] = ACTIONS(3087), + [aux_sym__val_number_token6] = ACTIONS(3087), + [anon_sym_0b] = ACTIONS(3090), + [anon_sym_0o] = ACTIONS(3093), + [anon_sym_0x] = ACTIONS(3093), + [sym_val_date] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym__str_single_quotes] = ACTIONS(3102), + [sym__str_back_ticks] = ACTIONS(3102), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), + [anon_sym_err_GT] = ACTIONS(2872), + [anon_sym_out_GT] = ACTIONS(2872), + [anon_sym_e_GT] = ACTIONS(2872), + [anon_sym_o_GT] = ACTIONS(2872), + [anon_sym_err_PLUSout_GT] = ACTIONS(2872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2872), + [anon_sym_o_PLUSe_GT] = ACTIONS(2872), + [anon_sym_e_PLUSo_GT] = ACTIONS(2872), + [anon_sym_err_GT_GT] = ACTIONS(2875), + [anon_sym_out_GT_GT] = ACTIONS(2875), + [anon_sym_e_GT_GT] = ACTIONS(2875), + [anon_sym_o_GT_GT] = ACTIONS(2875), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2875), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2875), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2875), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2875), + [aux_sym_unquoted_token1] = ACTIONS(3111), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3114), }, [828] = { + [sym_expr_parenthesized] = STATE(1587), + [sym_val_range] = STATE(1908), + [sym__val_range] = STATE(8064), + [sym__val_range_with_end] = STATE(7709), + [sym__value] = STATE(1908), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1686), + [sym_val_variable] = STATE(1604), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1369), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_short_flag] = STATE(1908), + [sym_long_flag] = STATE(1908), + [sym_unquoted] = STATE(1680), + [sym__unquoted_with_expr] = STATE(1952), + [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym__newline] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_err_GT_PIPE] = ACTIONS(2886), + [anon_sym_out_GT_PIPE] = ACTIONS(2886), + [anon_sym_e_GT_PIPE] = ACTIONS(2886), + [anon_sym_o_GT_PIPE] = ACTIONS(2886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_DASH2] = ACTIONS(2986), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_null] = ACTIONS(2994), + [anon_sym_true] = ACTIONS(2996), + [anon_sym_false] = ACTIONS(2996), + [aux_sym__val_number_decimal_token1] = ACTIONS(2998), + [aux_sym__val_number_decimal_token2] = ACTIONS(3000), + [aux_sym__val_number_decimal_token3] = ACTIONS(3002), + [aux_sym__val_number_decimal_token4] = ACTIONS(3004), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(3008), + [aux_sym__val_number_token5] = ACTIONS(3008), + [aux_sym__val_number_token6] = ACTIONS(3008), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [829] = { [sym_comment] = STATE(829), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3063), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3065), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_mod] = ACTIONS(3117), + [anon_sym_SLASH_SLASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_bit_DASHshl] = ACTIONS(3117), + [anon_sym_bit_DASHshr] = ACTIONS(3117), + [anon_sym_EQ_TILDE] = ACTIONS(3117), + [anon_sym_BANG_TILDE] = ACTIONS(3117), + [anon_sym_bit_DASHand] = ACTIONS(3117), + [anon_sym_bit_DASHxor] = ACTIONS(3117), + [anon_sym_bit_DASHor] = ACTIONS(3117), + [anon_sym_and] = ACTIONS(3117), + [anon_sym_xor] = ACTIONS(3117), + [anon_sym_or] = ACTIONS(3117), + [anon_sym_in] = ACTIONS(3117), + [anon_sym_not_DASHin] = ACTIONS(3117), + [anon_sym_starts_DASHwith] = ACTIONS(3117), + [anon_sym_ends_DASHwith] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_GT_EQ] = ACTIONS(3117), + [aux_sym_cmd_identifier_token41] = ACTIONS(3121), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3127), + [sym_duration_unit] = ACTIONS(3129), + [aux_sym_record_entry_token1] = ACTIONS(1788), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), }, [830] = { [sym_comment] = STATE(830), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [831] = { [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3067), - [aux_sym__immediate_decimal_token2] = ACTIONS(3069), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [832] = { [sym_comment] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [833] = { [sym_comment] = STATE(833), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, [834] = { [sym_comment] = STATE(834), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3077), - [sym_duration_unit] = ACTIONS(3079), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [835] = { [sym_comment] = STATE(835), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, [836] = { [sym_comment] = STATE(836), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [837] = { [sym_comment] = STATE(837), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3081), - [sym_duration_unit] = ACTIONS(3083), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3131), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3133), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [838] = { [sym_comment] = STATE(838), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [839] = { [sym_comment] = STATE(839), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3085), - [sym_duration_unit] = ACTIONS(3087), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3135), + [aux_sym__immediate_decimal_token2] = ACTIONS(3137), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, [840] = { [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3145), + [sym_duration_unit] = ACTIONS(3147), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), }, [841] = { [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3036), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [842] = { [sym_comment] = STATE(842), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), }, [843] = { [sym_comment] = STATE(843), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3089), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [844] = { [sym_comment] = STATE(844), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3065), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3149), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), [anon_sym_POUND] = ACTIONS(3), }, [845] = { [sym_comment] = STATE(845), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [ts_builtin_sym_end] = ACTIONS(1800), + [anon_sym_STAR_STAR] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_mod] = ACTIONS(3151), + [anon_sym_SLASH_SLASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_bit_DASHshl] = ACTIONS(3151), + [anon_sym_bit_DASHshr] = ACTIONS(3151), + [anon_sym_EQ_TILDE] = ACTIONS(3151), + [anon_sym_BANG_TILDE] = ACTIONS(3151), + [anon_sym_bit_DASHand] = ACTIONS(3151), + [anon_sym_bit_DASHxor] = ACTIONS(3151), + [anon_sym_bit_DASHor] = ACTIONS(3151), + [anon_sym_and] = ACTIONS(3151), + [anon_sym_xor] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_not_DASHin] = ACTIONS(3151), + [anon_sym_starts_DASHwith] = ACTIONS(3151), + [anon_sym_ends_DASHwith] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_GT_EQ] = ACTIONS(3151), + [aux_sym_cmd_identifier_token41] = ACTIONS(3155), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3157), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3159), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3159), + [sym_filesize_unit] = ACTIONS(3161), + [sym_duration_unit] = ACTIONS(3163), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), }, [846] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7404), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7979), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(901), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3165), + [sym_duration_unit] = ACTIONS(3167), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(3), }, [847] = { [sym_comment] = STATE(847), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1585), - [anon_sym_out_GT_GT] = ACTIONS(1585), - [anon_sym_e_GT_GT] = ACTIONS(1585), - [anon_sym_o_GT_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [ts_builtin_sym_end] = ACTIONS(1868), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, [848] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7275), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(8001), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), }, [849] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7984), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3133), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [850] = { [sym_comment] = STATE(850), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1573), - [anon_sym_out_GT_GT] = ACTIONS(1573), - [anon_sym_e_GT_GT] = ACTIONS(1573), - [anon_sym_o_GT_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3169), + [sym_duration_unit] = ACTIONS(3171), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), }, [851] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7301), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7742), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3173), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), }, [852] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7207), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7912), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), }, [853] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7312), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7946), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(3), }, [854] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7321), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7789), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(891), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), }, [855] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7327), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(8107), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(892), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [856] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7335), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7761), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7328), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7859), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(893), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(903), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [857] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7419), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8011), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(857), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3153), - [sym_duration_unit] = ACTIONS(3155), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(909), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [858] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7862), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), }, [859] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7345), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7712), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(894), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(3), }, [860] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7355), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7826), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(895), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3221), + [sym_duration_unit] = ACTIONS(3223), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1788), + [anon_sym_out_GT_GT] = ACTIONS(1788), + [anon_sym_e_GT_GT] = ACTIONS(1788), + [anon_sym_o_GT_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(3), }, [861] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7364), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7920), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(896), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), }, [862] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7384), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7843), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7202), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7927), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(898), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(899), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [863] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7391), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7933), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7799), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(899), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [864] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7770), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(864), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [865] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7296), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7859), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7265), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7977), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(897), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [866] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7410), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(8038), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7900), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(902), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [867] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7416), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(8117), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7774), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(903), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [868] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7422), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7892), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7298), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8152), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(900), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [869] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7912), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), }, [870] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7310), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7978), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(870), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(901), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [871] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7207), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7971), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7319), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7949), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(902), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [872] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(8106), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7337), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7874), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(904), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [873] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_list_body] = STATE(7747), - [sym_val_entry] = STATE(7361), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7345), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8062), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6813), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(905), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [874] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7354), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7975), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(874), - [ts_builtin_sym_end] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(906), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [875] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7276), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7856), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(875), - [anon_sym_STAR_STAR] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_bit_DASHshl] = ACTIONS(3189), - [anon_sym_bit_DASHshr] = ACTIONS(3189), - [anon_sym_EQ_TILDE] = ACTIONS(3189), - [anon_sym_BANG_TILDE] = ACTIONS(3189), - [anon_sym_bit_DASHand] = ACTIONS(3189), - [anon_sym_bit_DASHxor] = ACTIONS(3189), - [anon_sym_bit_DASHor] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_xor] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_not_DASHin] = ACTIONS(3189), - [anon_sym_starts_DASHwith] = ACTIONS(3189), - [anon_sym_ends_DASHwith] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3189), - [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(896), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [876] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7361), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7953), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(876), - [ts_builtin_sym_end] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(907), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [877] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7377), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7863), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(877), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(892), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [878] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7384), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7932), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(878), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(910), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [879] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8103), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(879), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [880] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7399), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(7992), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(880), - [anon_sym_STAR_STAR] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_bit_DASHshl] = ACTIONS(3189), - [anon_sym_bit_DASHshr] = ACTIONS(3189), - [anon_sym_EQ_TILDE] = ACTIONS(3189), - [anon_sym_BANG_TILDE] = ACTIONS(3189), - [anon_sym_bit_DASHand] = ACTIONS(3189), - [anon_sym_bit_DASHxor] = ACTIONS(3189), - [anon_sym_bit_DASHor] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_xor] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_not_DASHin] = ACTIONS(3189), - [anon_sym_starts_DASHwith] = ACTIONS(3189), - [anon_sym_ends_DASHwith] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3189), - [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(912), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [881] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7406), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8047), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(881), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(913), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [882] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7412), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8139), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(882), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(893), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [883] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7423), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7202), + [sym__spread_list] = STATE(7591), + [sym_list_body] = STATE(8103), + [sym_val_entry] = STATE(7362), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(899), + [aux_sym_parameter_repeat2] = STATE(6783), + [aux_sym_list_body_repeat1] = STATE(918), + [sym__newline] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [884] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7279), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_mod] = ACTIONS(3267), + [anon_sym_SLASH_SLASH] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_bit_DASHshl] = ACTIONS(3267), + [anon_sym_bit_DASHshr] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_bit_DASHand] = ACTIONS(3267), + [anon_sym_bit_DASHxor] = ACTIONS(3267), + [anon_sym_bit_DASHor] = ACTIONS(3267), + [anon_sym_and] = ACTIONS(3267), + [anon_sym_xor] = ACTIONS(3267), + [anon_sym_or] = ACTIONS(3267), + [anon_sym_in] = ACTIONS(3267), + [anon_sym_not_DASHin] = ACTIONS(3267), + [anon_sym_starts_DASHwith] = ACTIONS(3267), + [anon_sym_ends_DASHwith] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [aux_sym_cmd_identifier_token41] = ACTIONS(3271), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [885] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7226), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(2349), + [anon_sym_STAR_STAR] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_mod] = ACTIONS(3273), + [anon_sym_SLASH_SLASH] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_bit_DASHshl] = ACTIONS(3273), + [anon_sym_bit_DASHshr] = ACTIONS(3273), + [anon_sym_EQ_TILDE] = ACTIONS(3273), + [anon_sym_BANG_TILDE] = ACTIONS(3273), + [anon_sym_bit_DASHand] = ACTIONS(3273), + [anon_sym_bit_DASHxor] = ACTIONS(3273), + [anon_sym_bit_DASHor] = ACTIONS(3273), + [anon_sym_and] = ACTIONS(3273), + [anon_sym_xor] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_not_DASHin] = ACTIONS(3273), + [anon_sym_starts_DASHwith] = ACTIONS(3273), + [anon_sym_ends_DASHwith] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3273), + [aux_sym_cmd_identifier_token41] = ACTIONS(3277), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [886] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7293), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(2355), + [anon_sym_STAR_STAR] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_mod] = ACTIONS(3273), + [anon_sym_SLASH_SLASH] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_bit_DASHshl] = ACTIONS(3273), + [anon_sym_bit_DASHshr] = ACTIONS(3273), + [anon_sym_EQ_TILDE] = ACTIONS(3273), + [anon_sym_BANG_TILDE] = ACTIONS(3273), + [anon_sym_bit_DASHand] = ACTIONS(3273), + [anon_sym_bit_DASHxor] = ACTIONS(3273), + [anon_sym_bit_DASHor] = ACTIONS(3273), + [anon_sym_and] = ACTIONS(3273), + [anon_sym_xor] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_not_DASHin] = ACTIONS(3273), + [anon_sym_starts_DASHwith] = ACTIONS(3273), + [anon_sym_ends_DASHwith] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3273), + [aux_sym_cmd_identifier_token41] = ACTIONS(3277), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [887] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7303), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_mod] = ACTIONS(3267), + [anon_sym_SLASH_SLASH] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_bit_DASHshl] = ACTIONS(3267), + [anon_sym_bit_DASHshr] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_bit_DASHand] = ACTIONS(3267), + [anon_sym_bit_DASHxor] = ACTIONS(3267), + [anon_sym_bit_DASHor] = ACTIONS(3267), + [anon_sym_and] = ACTIONS(3267), + [anon_sym_xor] = ACTIONS(3267), + [anon_sym_or] = ACTIONS(3267), + [anon_sym_in] = ACTIONS(3267), + [anon_sym_not_DASHin] = ACTIONS(3267), + [anon_sym_starts_DASHwith] = ACTIONS(3267), + [anon_sym_ends_DASHwith] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [aux_sym_cmd_identifier_token41] = ACTIONS(3271), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [888] = { [sym_comment] = STATE(888), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), [anon_sym_POUND] = ACTIONS(3), }, [889] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [890] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7314), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [891] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7322), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [892] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7328), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7378), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [893] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7338), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7413), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [894] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7348), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [895] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7357), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [896] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7367), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7215), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [897] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7377), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7268), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [898] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7385), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [899] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7393), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7220), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [900] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7399), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7301), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [901] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7405), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7312), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [902] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7411), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7320), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [903] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7417), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7369), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7331), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2756), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [904] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7340), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(904), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [905] = { + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7347), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(905), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [906] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7041), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7355), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(906), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [907] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7605), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7363), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(907), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_DOLLAR] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_DOT_DOT] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3224), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3230), - [aux_sym__val_number_decimal_token1] = ACTIONS(3233), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3239), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), - [aux_sym__val_number_token1] = ACTIONS(3245), - [aux_sym__val_number_token2] = ACTIONS(3245), - [aux_sym__val_number_token3] = ACTIONS(3245), - [aux_sym__val_number_token4] = ACTIONS(3248), - [aux_sym__val_number_token5] = ACTIONS(3248), - [aux_sym__val_number_token6] = ACTIONS(3248), - [anon_sym_0b] = ACTIONS(3251), - [anon_sym_0o] = ACTIONS(3254), - [anon_sym_0x] = ACTIONS(3254), - [sym_val_date] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3260), - [sym__str_single_quotes] = ACTIONS(3263), - [sym__str_back_ticks] = ACTIONS(3263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3266), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3269), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3272), - [anon_sym_err_GT] = ACTIONS(3275), - [anon_sym_out_GT] = ACTIONS(3275), - [anon_sym_e_GT] = ACTIONS(3275), - [anon_sym_o_GT] = ACTIONS(3275), - [anon_sym_err_PLUSout_GT] = ACTIONS(3275), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3275), - [anon_sym_o_PLUSe_GT] = ACTIONS(3275), - [anon_sym_e_PLUSo_GT] = ACTIONS(3275), - [anon_sym_err_GT_GT] = ACTIONS(3278), - [anon_sym_out_GT_GT] = ACTIONS(3278), - [anon_sym_e_GT_GT] = ACTIONS(3278), - [anon_sym_o_GT_GT] = ACTIONS(3278), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3278), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3278), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3278), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3278), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3281), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3284), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [908] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7653), - [sym_val_range] = STATE(7705), - [sym__val_range] = STATE(7729), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(7705), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6341), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5269), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym__spread_list] = STATE(7653), - [sym_val_entry] = STATE(7052), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_list] = STATE(6795), - [sym__unquoted_in_list_with_expr] = STATE(7705), - [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7370), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(908), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [909] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3232), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7420), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [910] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3761), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2226), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7386), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(924), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [911] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3762), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7393), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [912] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3763), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7400), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(926), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [913] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2358), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7407), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7221), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(1036), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2784), + [aux_sym_list_body_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [914] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3768), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [915] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3770), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [916] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3772), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7534), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym_list_body_repeat1] = STATE(916), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_DOLLAR] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), + [anon_sym_DOT_DOT_LT] = ACTIONS(3305), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3314), + [aux_sym__val_number_decimal_token1] = ACTIONS(3317), + [aux_sym__val_number_decimal_token2] = ACTIONS(3320), [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), + [aux_sym__val_number_token1] = ACTIONS(3329), + [aux_sym__val_number_token2] = ACTIONS(3329), + [aux_sym__val_number_token3] = ACTIONS(3329), + [aux_sym__val_number_token4] = ACTIONS(3332), + [aux_sym__val_number_token5] = ACTIONS(3332), + [aux_sym__val_number_token6] = ACTIONS(3332), + [anon_sym_0b] = ACTIONS(3335), + [anon_sym_0o] = ACTIONS(3338), + [anon_sym_0x] = ACTIONS(3338), + [sym_val_date] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym__str_single_quotes] = ACTIONS(3347), + [sym__str_back_ticks] = ACTIONS(3347), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3353), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3356), + [anon_sym_err_GT] = ACTIONS(3359), + [anon_sym_out_GT] = ACTIONS(3359), + [anon_sym_e_GT] = ACTIONS(3359), + [anon_sym_o_GT] = ACTIONS(3359), + [anon_sym_err_PLUSout_GT] = ACTIONS(3359), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3359), + [anon_sym_o_PLUSe_GT] = ACTIONS(3359), + [anon_sym_e_PLUSo_GT] = ACTIONS(3359), + [anon_sym_err_GT_GT] = ACTIONS(3362), + [anon_sym_out_GT_GT] = ACTIONS(3362), + [anon_sym_e_GT_GT] = ACTIONS(3362), + [anon_sym_o_GT_GT] = ACTIONS(3362), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3362), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3362), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3362), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3362), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3365), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3368), }, [917] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3774), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(6986), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_list_body_repeat1] = STATE(916), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [918] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3776), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6116), + [sym__spread_parenthesized] = STATE(7591), + [sym_val_range] = STATE(7503), + [sym__val_range] = STATE(8042), + [sym__val_range_with_end] = STATE(7696), + [sym__value] = STATE(7503), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5289), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym__spread_list] = STATE(7591), + [sym_val_entry] = STATE(7227), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_list] = STATE(6771), + [sym__unquoted_in_list_with_expr] = STATE(7503), + [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_list_body_repeat1] = STATE(916), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3187), + [anon_sym_DOT_DOT_LT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(319), + [aux_sym__val_number_decimal_token1] = ACTIONS(3193), + [aux_sym__val_number_decimal_token2] = ACTIONS(3195), + [aux_sym__val_number_decimal_token3] = ACTIONS(3197), + [aux_sym__val_number_decimal_token4] = ACTIONS(3199), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3203), + [aux_sym__val_number_token5] = ACTIONS(3203), + [aux_sym__val_number_token6] = ACTIONS(3203), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2695), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [919] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3778), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2034), - [sym__unquoted_with_expr] = STATE(2200), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2302), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2303), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [920] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3780), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2090), - [sym__unquoted_with_expr] = STATE(2203), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2368), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2191), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [921] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3782), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2228), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2397), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2194), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [922] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2239), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2241), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2326), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2197), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [923] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3784), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2247), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2382), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2233), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [924] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3786), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2253), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2423), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2241), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [925] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3788), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2259), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2455), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2244), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [926] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3790), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2262), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3823), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2215), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(940), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [927] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3791), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2263), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3824), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2220), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(940), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(941), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [928] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3793), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2067), - [sym__unquoted_with_expr] = STATE(2269), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3825), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1998), + [sym__unquoted_with_expr] = STATE(2243), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(941), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(942), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [929] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2274), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3826), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2259), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(942), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(943), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [930] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3797), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2276), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3827), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2284), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(943), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(944), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [931] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3798), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2281), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3828), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2272), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(944), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(945), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [932] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3799), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2289), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3829), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2286), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(945), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(946), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [933] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3801), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2293), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3830), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2294), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(946), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(947), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [934] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3861), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2296), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2296), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2298), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(947), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(948), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [935] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2304), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3831), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2021), + [sym__unquoted_with_expr] = STATE(2179), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(948), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(949), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [936] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2307), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3832), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2024), + [sym__unquoted_with_expr] = STATE(2181), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(949), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(950), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [937] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3804), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2309), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3833), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2183), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(950), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(951), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [938] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3805), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2086), - [sym__unquoted_with_expr] = STATE(2311), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2202), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(951), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(952), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [939] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3807), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2313), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2400), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2247), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(952), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [940] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2323), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3838), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2233), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [941] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3836), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2206), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3840), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2241), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [942] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2275), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3842), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2244), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [943] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3841), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2266), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3844), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2247), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [944] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3844), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2202), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3846), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2249), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [945] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3847), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2223), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3848), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2258), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [946] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3852), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2232), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3850), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2274), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [947] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3854), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2236), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3852), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2283), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [948] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2244), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2252), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2302), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2303), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [949] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3857), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2301), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3854), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2308), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [950] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2199), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3857), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2313), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [951] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3731), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2322), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3859), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2318), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [952] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3733), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3760), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2297), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [953] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2366), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2276), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3855), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(1037), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(966), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [954] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2370), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2281), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3836), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2207), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(1039), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(967), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [955] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2380), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2289), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3802), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2187), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(968), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [956] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2293), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3731), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2214), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(969), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [957] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2402), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2296), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3732), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2250), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(1044), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(970), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [958] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3311), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2186), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3735), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2257), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(958), [aux_sym_shebang_repeat1] = STATE(971), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [959] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3312), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2198), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3737), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2201), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(959), [aux_sym_shebang_repeat1] = STATE(972), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [960] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3313), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2204), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3741), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2253), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(960), [aux_sym_shebang_repeat1] = STATE(973), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [961] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3314), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2211), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2290), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(961), [aux_sym_shebang_repeat1] = STATE(974), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [962] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3316), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2217), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3742), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2300), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(962), [aux_sym_shebang_repeat1] = STATE(975), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [963] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3317), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2235), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3743), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2180), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(963), [aux_sym_shebang_repeat1] = STATE(976), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [964] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3318), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2294), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3744), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2186), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(964), [aux_sym_shebang_repeat1] = STATE(977), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [965] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3320), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2310), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3746), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2193), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(965), [aux_sym_shebang_repeat1] = STATE(978), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [966] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2320), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2176), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3771), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2205), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(979), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [967] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3321), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2222), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3773), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2208), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [968] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3322), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2226), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3776), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2212), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(981), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [969] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3323), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2245), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3778), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2221), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(909), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [970] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3327), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2298), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3780), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2236), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(983), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [971] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3212), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2280), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3782), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2254), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [972] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3214), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2188), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2292), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [973] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3216), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2284), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3788), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2177), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(973), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [974] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3218), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2318), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2323), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [975] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3220), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2033), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3791), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2028), [sym__unquoted_with_expr] = STATE(2189), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [976] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3222), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2034), - [sym__unquoted_with_expr] = STATE(2200), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2191), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [977] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3224), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2090), - [sym__unquoted_with_expr] = STATE(2203), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3797), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2194), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [978] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3226), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2228), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3799), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2197), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [979] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2239), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2241), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2329), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2249), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [980] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3228), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2247), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2380), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2183), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1053), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [981] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3230), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2253), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2366), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2202), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1055), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [982] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2449), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2217), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2343), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2215), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(1026), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(923), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [983] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3234), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2262), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3302), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2215), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(996), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [984] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3235), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2263), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3243), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2220), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(984), [aux_sym_shebang_repeat1] = STATE(997), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [985] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3236), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2067), - [sym__unquoted_with_expr] = STATE(2269), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3258), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1998), + [sym__unquoted_with_expr] = STATE(2243), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(985), [aux_sym_shebang_repeat1] = STATE(998), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [986] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3237), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2274), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3272), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2259), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(986), [aux_sym_shebang_repeat1] = STATE(999), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [987] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3238), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2276), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3336), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2284), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(987), [aux_sym_shebang_repeat1] = STATE(1000), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [988] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3239), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2281), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3209), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2272), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(988), [aux_sym_shebang_repeat1] = STATE(1001), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [989] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3240), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2289), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2286), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(989), [aux_sym_shebang_repeat1] = STATE(1002), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [990] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3241), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2293), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3277), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2294), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(990), - [aux_sym_shebang_repeat1] = STATE(1003), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1074), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [991] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3242), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2296), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2296), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2298), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(991), - [aux_sym_shebang_repeat1] = STATE(1004), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(919), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [992] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2304), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3280), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2021), + [sym__unquoted_with_expr] = STATE(2179), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(992), [aux_sym_shebang_repeat1] = STATE(1005), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [993] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2301), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3281), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2024), + [sym__unquoted_with_expr] = STATE(2181), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1006), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [994] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3244), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2309), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3282), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2183), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(994), [aux_sym_shebang_repeat1] = STATE(1007), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [995] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3245), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2086), - [sym__unquoted_with_expr] = STATE(2311), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3284), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2202), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(995), [aux_sym_shebang_repeat1] = STATE(1008), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [996] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3246), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2313), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3294), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2233), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(1009), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [997] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3260), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2323), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3296), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2241), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [998] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3262), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2206), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3300), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2244), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [999] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3264), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2275), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3304), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2247), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1000] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3266), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2266), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3306), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2249), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1000), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1001] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3268), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2202), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3309), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2258), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1001), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1002] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3270), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2223), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3311), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2274), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1003] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3272), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2232), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2461), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2177), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1004] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3274), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2236), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2345), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2207), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1068), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1005] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2244), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2252), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3317), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2308), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1006] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3276), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2301), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3320), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2313), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1007] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3278), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2199), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3322), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2318), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1008] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3280), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2322), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3324), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2297), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1009] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3282), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3325), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1022), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1010] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2304), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3326), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2207), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1023), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1011] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2421), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2307), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3327), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2187), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(993), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1024), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1012] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2428), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2309), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3330), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2214), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(1015), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1025), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1013] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2434), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2086), - [sym__unquoted_with_expr] = STATE(2311), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3334), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2250), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(1016), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1026), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1014] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2441), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2313), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3275), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2257), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(1023), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1027), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1015] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2422), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2199), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3273), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2201), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1016] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2454), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2322), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3256), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2253), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1017] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2386), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2090), - [sym__unquoted_with_expr] = STATE(2203), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2290), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1018] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2359), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2280), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3279), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2300), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1019] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2393), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2007), - [sym__unquoted_with_expr] = STATE(2188), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3283), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2180), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1020] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2375), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2284), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3287), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2186), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1021] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2228), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3301), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2193), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1034), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1022] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2391), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2318), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3220), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2205), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1023] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2384), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3222), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_with_expr] = STATE(2208), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1024] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2417), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2211), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3224), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2212), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(1022), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1025] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2348), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2235), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3226), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2221), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(1027), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1026] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2324), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2189), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3228), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2236), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1027] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2424), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2034), - [sym__unquoted_with_expr] = STATE(2200), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3230), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2254), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1028] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2320), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2176), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3232), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2292), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(1033), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1029] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2369), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2222), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3234), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2022), + [sym__unquoted_with_expr] = STATE(2177), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1030] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2405), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2226), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2323), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(1049), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1031] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2411), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2245), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3236), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2189), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(1050), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1032] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2298), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3238), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2191), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(1051), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1033] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2239), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2241), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3240), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2194), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1034] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2412), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3242), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_with_expr] = STATE(2197), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1035] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2373), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2206), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2358), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2220), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(924), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1036] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2275), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2449), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1998), + [sym__unquoted_with_expr] = STATE(2243), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(925), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1037] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2400), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2266), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2344), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2258), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1038] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2416), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2247), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2342), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2259), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(939), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1039] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2382), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2202), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2362), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2250), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1071), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1040] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2344), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2223), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2274), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1041] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2371), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2232), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2367), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2284), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(979), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1042] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2343), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2186), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2394), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2272), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(1018), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1037), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1043] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2406), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2198), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2323), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(1019), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1044] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2392), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2236), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2381), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2286), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1040), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1045] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2244), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2252), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2378), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2283), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1046] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2389), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2204), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2302), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2303), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(1020), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1047] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2456), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2294), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2339), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2257), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(1017), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1072), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1048] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2407), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2310), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2347), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2201), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(1021), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1073), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1049] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2445), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2253), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2431), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2308), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1050] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2326), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2259), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2441), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2313), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1051] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2262), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2401), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2294), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(2814), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1045), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1052] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2339), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2263), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2296), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2298), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(1034), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1046), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1053] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2351), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2067), - [sym__unquoted_with_expr] = STATE(2269), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2451), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2318), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1054] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2186), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2420), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2021), + [sym__unquoted_with_expr] = STATE(2179), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1054), - [aux_sym_shebang_repeat1] = STATE(914), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1049), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1055] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3808), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2198), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2459), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2297), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1055), - [aux_sym_shebang_repeat1] = STATE(915), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1056] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3746), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2204), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2375), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1056), - [aux_sym_shebang_repeat1] = STATE(916), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1067), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1057] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3748), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2039), - [sym__unquoted_with_expr] = STATE(2211), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2369), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2253), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1057), - [aux_sym_shebang_repeat1] = STATE(917), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1003), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1058] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2217), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2290), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1058), - [aux_sym_shebang_repeat1] = STATE(918), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1043), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1059] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3755), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2235), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2325), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2189), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1059), - [aux_sym_shebang_repeat1] = STATE(919), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1060] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3757), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2064), - [sym__unquoted_with_expr] = STATE(2294), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2410), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2300), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1060), - [aux_sym_shebang_repeat1] = STATE(920), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1059), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1061] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3758), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2310), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2425), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2180), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(921), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(920), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1062] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(2320), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2176), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2186), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1062), - [aux_sym_shebang_repeat1] = STATE(922), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(921), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1063] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3760), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2222), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2193), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1063), - [aux_sym_shebang_repeat1] = STATE(923), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(922), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1064] = { - [sym_expr_unary] = STATE(2337), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary_parenthesized] = STATE(2337), - [sym__expr_binary_expression_parenthesized] = STATE(3243), - [sym_expr_parenthesized] = STATE(2337), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2337), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2307), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2454), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2024), + [sym__unquoted_with_expr] = STATE(2181), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1064), - [aux_sym_shebang_repeat1] = STATE(1006), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1050), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1065] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(1868), - [sym__val_range] = STATE(7964), - [sym__val_range_with_end] = STATE(7619), - [sym__value] = STATE(1868), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1634), - [sym_val_variable] = STATE(1515), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1333), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_short_flag] = STATE(1868), - [sym_long_flag] = STATE(1868), - [sym_unquoted] = STATE(1661), - [sym__unquoted_with_expr] = STATE(1871), - [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2426), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1065), - [aux_sym_shebang_repeat1] = STATE(2860), - [sym__newline] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_DASH2] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2649), - [aux_sym__val_number_decimal_token4] = ACTIONS(2651), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(2655), - [aux_sym__val_number_token5] = ACTIONS(2655), - [aux_sym__val_number_token6] = ACTIONS(2655), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [aux_sym_shebang_repeat1] = STATE(1069), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1066] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2361), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1066), - [sym__newline] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1070), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1067] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2372), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1067), - [sym__newline] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1068] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3367), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2305), - [sym__unquoted_with_expr] = STATE(2504), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2452), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2208), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1068), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1069] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3883), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3676), - [sym__unquoted_with_expr] = STATE(3885), - [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2328), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1069), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1070] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2494), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2306), - [sym__unquoted_with_expr] = STATE(2495), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2356), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1070), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1071] = { + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2424), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1071), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1072] = { + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2330), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2254), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1072), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1073] = { + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(2360), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1073), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1074] = { + [sym_expr_unary] = STATE(2336), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary_parenthesized] = STATE(2336), + [sym__expr_binary_expression_parenthesized] = STATE(3313), + [sym_expr_parenthesized] = STATE(2336), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2336), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2283), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1074), + [aux_sym_shebang_repeat1] = STATE(2826), + [sym__newline] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1075] = { + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_comment] = STATE(1075), + [sym__newline] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), [anon_sym_null] = ACTIONS(3443), [anon_sym_true] = ACTIONS(3445), [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_record_entry_token1] = ACTIONS(3447), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [1071] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2496), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2268), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1071), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [1076] = { + [sym_expr_parenthesized] = STATE(1592), + [sym_val_range] = STATE(1897), + [sym__val_range] = STATE(8057), + [sym__val_range_with_end] = STATE(7630), + [sym__value] = STATE(1897), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1619), + [sym_val_variable] = STATE(1502), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1278), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_short_flag] = STATE(1897), + [sym_long_flag] = STATE(1897), + [sym_unquoted] = STATE(1684), + [sym__unquoted_with_expr] = STATE(1939), + [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_comment] = STATE(1076), + [aux_sym_shebang_repeat1] = STATE(2818), + [sym__newline] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2731), + [anon_sym_DOT_DOT_LT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(2735), + [anon_sym_false] = ACTIONS(2735), + [aux_sym__val_number_decimal_token1] = ACTIONS(2737), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2741), + [aux_sym__val_number_decimal_token4] = ACTIONS(2743), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), + [aux_sym__val_number_token4] = ACTIONS(2747), + [aux_sym__val_number_token5] = ACTIONS(2747), + [aux_sym__val_number_token6] = ACTIONS(2747), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), + [sym_val_date] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), + }, + [1077] = { + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_comment] = STATE(1077), + [sym__newline] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), [anon_sym_null] = ACTIONS(3443), [anon_sym_true] = ACTIONS(3445), [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_record_entry_token1] = ACTIONS(3449), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, - [1072] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2499), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2230), - [sym__unquoted_with_expr] = STATE(2500), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1072), + [1078] = { + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_comment] = STATE(1078), + [sym__newline] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1079] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3946), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1079), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1080] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3363), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2281), + [sym__unquoted_with_expr] = STATE(2475), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1080), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1073] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2501), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2283), - [sym__unquoted_with_expr] = STATE(2502), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1073), + [1081] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3364), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2200), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1081), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1074] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3360), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2256), - [sym__unquoted_with_expr] = STATE(2491), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1074), + [1082] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3365), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2267), + [sym__unquoted_with_expr] = STATE(2501), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1082), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1075] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3365), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2277), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1075), + [1083] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3366), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2278), + [sym__unquoted_with_expr] = STATE(2511), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1076] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3378), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2306), - [sym__unquoted_with_expr] = STATE(2495), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1076), + [1084] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3367), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2285), + [sym__unquoted_with_expr] = STATE(2517), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1084), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1077] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3340), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2268), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1077), + [1085] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3368), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2287), + [sym__unquoted_with_expr] = STATE(2519), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1085), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1078] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3346), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2230), - [sym__unquoted_with_expr] = STATE(2500), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1078), + [1086] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3369), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2289), + [sym__unquoted_with_expr] = STATE(2524), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1086), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1079] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3363), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2283), - [sym__unquoted_with_expr] = STATE(2502), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1079), + [1087] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3370), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2299), + [sym__unquoted_with_expr] = STATE(2530), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1087), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1080] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3356), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2308), - [sym__unquoted_with_expr] = STATE(2506), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1080), + [1088] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2535), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2309), + [sym__unquoted_with_expr] = STATE(2542), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1088), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1081] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2507), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2181), - [sym__unquoted_with_expr] = STATE(2508), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1081), + [1089] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3371), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2317), + [sym__unquoted_with_expr] = STATE(2545), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1089), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1082] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3341), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2510), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1082), + [1090] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3372), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2319), + [sym__unquoted_with_expr] = STATE(2547), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1090), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1083] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3361), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2290), - [sym__unquoted_with_expr] = STATE(2512), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1083), + [1091] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3373), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2321), + [sym__unquoted_with_expr] = STATE(2551), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1091), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1084] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3344), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2257), - [sym__unquoted_with_expr] = STATE(2518), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1084), + [1092] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(3374), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(3205), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3100), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2271), + [sym__unquoted_with_expr] = STATE(2504), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1092), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3461), + [anon_sym_false] = ACTIONS(3461), + [aux_sym__val_number_decimal_token1] = ACTIONS(3463), + [aux_sym__val_number_decimal_token2] = ACTIONS(3465), + [aux_sym__val_number_decimal_token3] = ACTIONS(3467), + [aux_sym__val_number_decimal_token4] = ACTIONS(3469), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3471), + [aux_sym__val_number_token5] = ACTIONS(3471), + [aux_sym__val_number_token6] = ACTIONS(3471), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3473), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1085] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(3342), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(3204), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3042), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2315), - [sym__unquoted_with_expr] = STATE(2520), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1085), + [1093] = { + [sym_ctrl_do] = STATE(5023), + [sym_ctrl_if] = STATE(5023), + [sym_ctrl_match] = STATE(5023), + [sym_ctrl_try] = STATE(5023), + [sym__expression] = STATE(5023), + [sym_expr_unary] = STATE(2479), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2479), + [sym__expr_binary_expression] = STATE(3972), + [sym_expr_parenthesized] = STATE(2114), + [sym_val_range] = STATE(3970), + [sym__value] = STATE(2479), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2531), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(3175), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_comment] = STATE(1093), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym__newline] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(999), [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3477), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3481), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3483), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(107), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1086] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3886), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3678), - [sym__unquoted_with_expr] = STATE(3887), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1086), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1087] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3888), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3679), - [sym__unquoted_with_expr] = STATE(3890), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1087), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1088] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3891), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3681), - [sym__unquoted_with_expr] = STATE(3893), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1088), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1089] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3894), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3683), - [sym__unquoted_with_expr] = STATE(3895), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1089), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1090] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3897), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3684), - [sym__unquoted_with_expr] = STATE(3898), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1090), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1091] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3899), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3685), - [sym__unquoted_with_expr] = STATE(3900), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1091), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1092] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3901), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3729), - [sym__unquoted_with_expr] = STATE(3903), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1092), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1093] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3931), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3688), - [sym__unquoted_with_expr] = STATE(3904), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1093), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1094] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3905), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3689), - [sym__unquoted_with_expr] = STATE(3907), - [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3918), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3686), + [sym__unquoted_with_expr] = STATE(3927), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1094), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1095] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2425), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3863), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3693), + [sym__unquoted_with_expr] = STATE(3868), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1095), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1096] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2429), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1892), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3869), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3695), + [sym__unquoted_with_expr] = STATE(3870), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1096), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1097] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2430), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2122), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3872), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3704), + [sym__unquoted_with_expr] = STATE(3885), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1098] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2437), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2132), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3893), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3721), + [sym__unquoted_with_expr] = STATE(3911), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1098), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1099] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2442), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2162), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3913), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3723), + [sym__unquoted_with_expr] = STATE(3909), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1099), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1100] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2447), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3920), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3640), + [sym__unquoted_with_expr] = STATE(3921), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1100), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1101] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2457), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3874), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3642), + [sym__unquoted_with_expr] = STATE(3929), + [sym__unquoted_anonymous_prefix] = STATE(6870), [sym_comment] = STATE(1101), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), }, [1102] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2459), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2161), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2402), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2091), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1102), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1103] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2135), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2113), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2404), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1929), + [sym__unquoted_with_expr] = STATE(2153), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1103), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1104] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2455), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2098), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2406), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2095), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1104), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1105] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2431), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1874), - [sym__unquoted_with_expr] = STATE(2121), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2408), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2123), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1105), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1106] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2333), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2097), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2413), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2127), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1106), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1107] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2399), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2109), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(1538), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(2114), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2415), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1855), + [sym__unquoted_with_expr] = STATE(2138), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1107), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1108] = { - [sym_ctrl_do] = STATE(5145), - [sym_ctrl_if] = STATE(5145), - [sym_ctrl_match] = STATE(5145), - [sym_ctrl_try] = STATE(5145), - [sym__expression] = STATE(5145), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3992), - [sym_expr_parenthesized] = STATE(2170), - [sym_val_range] = STATE(3995), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2481), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(3181), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2416), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3465), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(3467), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(99), - [aux_sym__val_number_token5] = ACTIONS(99), - [aux_sym__val_number_token6] = ACTIONS(99), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1109] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2503), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2305), - [sym__unquoted_with_expr] = STATE(2504), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2418), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2154), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1109), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1110] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2505), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2308), - [sym__unquoted_with_expr] = STATE(2506), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2129), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1110), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1111] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2507), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2181), - [sym__unquoted_with_expr] = STATE(2508), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1111), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1112] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2509), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2183), - [sym__unquoted_with_expr] = STATE(2510), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1112), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1111] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2422), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1932), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1111), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1112] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2428), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1112), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1113] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2553), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2290), - [sym__unquoted_with_expr] = STATE(2512), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2430), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1113), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1114] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2433), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2126), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(1554), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1114), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3411), + [aux_sym__val_number_token5] = ACTIONS(3411), + [aux_sym__val_number_token6] = ACTIONS(3411), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1115] = { + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3930), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3643), + [sym__unquoted_with_expr] = STATE(3902), + [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_comment] = STATE(1115), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), + }, + [1116] = { + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3871), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3645), + [sym__unquoted_with_expr] = STATE(3877), + [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_comment] = STATE(1116), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), + }, + [1117] = { + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3875), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3649), + [sym__unquoted_with_expr] = STATE(3879), + [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_comment] = STATE(1117), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), + }, + [1118] = { + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3650), + [sym__unquoted_with_expr] = STATE(3882), + [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_comment] = STATE(1118), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), + }, + [1119] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2495), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2281), + [sym__unquoted_with_expr] = STATE(2475), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1119), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3553), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1114] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2492), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2277), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1114), + [1120] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2482), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2200), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1120), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3553), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1115] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2519), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2315), - [sym__unquoted_with_expr] = STATE(2520), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1115), + [1121] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2513), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2267), + [sym__unquoted_with_expr] = STATE(2501), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1121), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3553), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1116] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3296), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1116), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1117] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3297), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1892), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1117), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1118] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3298), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2122), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1118), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1119] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3299), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2132), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1119), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1120] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3300), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2162), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1120), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1121] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3301), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1122] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3302), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2158), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3259), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2091), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1122), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1123] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3303), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2161), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3260), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1929), + [sym__unquoted_with_expr] = STATE(2153), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1123), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1124] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2135), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2113), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3261), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2095), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1124), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1125] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3304), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2098), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3262), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2123), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1125), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1126] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3305), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1874), - [sym__unquoted_with_expr] = STATE(2121), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3263), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2127), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1126), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1127] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3306), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2097), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3264), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1855), + [sym__unquoted_with_expr] = STATE(2138), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1127), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1128] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3307), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3190), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(2984), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(2114), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3265), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2141), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1128), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1129] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3966), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2111), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3266), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2154), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1129), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1130] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3967), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1892), - [sym__unquoted_with_expr] = STATE(2117), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2129), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2094), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1130), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1131] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3968), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2122), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3267), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1932), + [sym__unquoted_with_expr] = STATE(2103), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1131), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1132] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3947), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2132), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3268), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2112), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1132), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1133] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3948), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2162), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3269), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2124), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1133), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1134] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3933), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2174), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3270), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3193), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(2930), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2125), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1134), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3393), + [aux_sym__val_number_token5] = ACTIONS(3393), + [aux_sym__val_number_token6] = ACTIONS(3393), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1135] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3934), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2509), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2278), + [sym__unquoted_with_expr] = STATE(2511), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1135), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1136] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3935), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2553), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2285), + [sym__unquoted_with_expr] = STATE(2517), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1136), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1137] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2135), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2113), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3957), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2091), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1137), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1138] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3936), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2098), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1929), + [sym__unquoted_with_expr] = STATE(2153), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1138), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1139] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3937), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1874), - [sym__unquoted_with_expr] = STATE(2121), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3962), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2095), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1139), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1140] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3938), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2097), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3964), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2123), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1141] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3939), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3800), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(2114), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3965), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2127), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1141), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3475), - [aux_sym__val_number_decimal_token2] = ACTIONS(3477), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3481), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3483), - [aux_sym__val_number_token5] = ACTIONS(3483), - [aux_sym__val_number_token6] = ACTIONS(3483), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1142] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3670), - [sym__unquoted_with_expr] = STATE(3877), - [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3966), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1855), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1142), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1143] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3967), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1143), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1144] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3957), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2111), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3948), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2154), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1144), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1145] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3946), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1892), - [sym__unquoted_with_expr] = STATE(2117), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2129), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2094), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1145), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1146] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3960), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2122), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3939), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1932), + [sym__unquoted_with_expr] = STATE(2103), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1146), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1147] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3949), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2132), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3941), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2112), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1147), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1148] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3952), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2162), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3943), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2124), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1148), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1149] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3953), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2174), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3944), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3822), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3451), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2125), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1149), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3567), + [aux_sym__val_number_token5] = ACTIONS(3567), + [aux_sym__val_number_token6] = ACTIONS(3567), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1150] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3954), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2158), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2518), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2287), + [sym__unquoted_with_expr] = STATE(2519), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1150), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1151] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3955), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2520), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2289), + [sym__unquoted_with_expr] = STATE(2524), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1152] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(2135), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2113), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2527), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2299), + [sym__unquoted_with_expr] = STATE(2530), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1152), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1153] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3964), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2535), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2309), + [sym__unquoted_with_expr] = STATE(2542), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1153), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1154] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3959), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1874), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2543), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2317), + [sym__unquoted_with_expr] = STATE(2545), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1154), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1155] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3962), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2546), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2319), + [sym__unquoted_with_expr] = STATE(2547), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1155), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3455), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1156] = { - [sym_expr_unary] = STATE(2134), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2134), - [sym__expr_binary_expression] = STATE(3963), - [sym_expr_parenthesized] = STATE(2134), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(2134), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(3667), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(1881), - [sym__unquoted_with_expr] = STATE(2114), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2548), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2321), + [sym__unquoted_with_expr] = STATE(2551), + [sym__unquoted_anonymous_prefix] = STATE(6940), [sym_comment] = STATE(1156), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1157] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_comment] = STATE(1157), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1158] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3878), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3673), - [sym__unquoted_with_expr] = STATE(3880), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1158), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1159] = { - [sym_expr_unary] = STATE(3875), - [sym__expr_unary_minus] = STATE(3908), - [sym_expr_binary] = STATE(3875), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(3875), - [sym__val_range] = STATE(7745), - [sym__val_range_with_end] = STATE(7624), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(3651), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3562), - [sym__str_double_quotes] = STATE(3562), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(3675), - [sym__unquoted_with_expr] = STATE(3882), - [sym__unquoted_anonymous_prefix] = STATE(6869), - [sym_comment] = STATE(1159), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_DASH2] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [aux_sym_expr_unary_token1] = ACTIONS(3405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym__str_single_quotes] = ACTIONS(3433), - [sym__str_back_ticks] = ACTIONS(3433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3441), - }, - [1160] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2490), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2256), - [sym__unquoted_with_expr] = STATE(2491), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1160), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3553), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1161] = { - [sym_expr_unary] = STATE(2489), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_binary] = STATE(2489), - [sym__expr_binary_expression] = STATE(2517), - [sym_expr_parenthesized] = STATE(2489), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(2489), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(2227), - [sym_val_variable] = STATE(2481), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(1625), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(2257), - [sym__unquoted_with_expr] = STATE(2518), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1161), + [1157] = { + [sym_expr_unary] = STATE(2491), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_binary] = STATE(2491), + [sym__expr_binary_expression] = STATE(2552), + [sym_expr_parenthesized] = STATE(2491), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(2491), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(2264), + [sym_val_variable] = STATE(2531), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(1591), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(2271), + [sym__unquoted_with_expr] = STATE(2504), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1157), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_DOLLAR] = ACTIONS(3453), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3455), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3447), - [aux_sym__val_number_decimal_token2] = ACTIONS(3449), - [aux_sym__val_number_decimal_token3] = ACTIONS(3451), - [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_LT] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym__val_number_decimal_token1] = ACTIONS(3489), + [aux_sym__val_number_decimal_token2] = ACTIONS(3491), + [aux_sym__val_number_decimal_token3] = ACTIONS(3493), + [aux_sym__val_number_decimal_token4] = ACTIONS(3495), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3455), - [aux_sym__val_number_token5] = ACTIONS(3455), - [aux_sym__val_number_token6] = ACTIONS(3455), + [aux_sym__val_number_token4] = ACTIONS(3551), + [aux_sym__val_number_token5] = ACTIONS(3551), + [aux_sym__val_number_token6] = ACTIONS(3551), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3553), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), + }, + [1158] = { + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_comment] = STATE(1158), + [sym__newline] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1159] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3938), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2091), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1159), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1160] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3940), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1929), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1160), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1161] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1162] = { - [sym_expr_unary] = STATE(4338), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_parenthesized] = STATE(4125), - [sym_val_range] = STATE(4338), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(4338), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(4177), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(4014), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(4212), - [sym__unquoted_with_expr] = STATE(4339), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3949), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2123), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1162), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3491), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_null] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [aux_sym__val_number_decimal_token1] = ACTIONS(3503), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_decimal_token4] = ACTIONS(3509), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3511), - [aux_sym__val_number_token5] = ACTIONS(3511), - [aux_sym__val_number_token6] = ACTIONS(3511), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1163] = { - [sym_expr_unary] = STATE(4334), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_parenthesized] = STATE(4124), - [sym_val_range] = STATE(4334), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(4334), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(4177), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(4014), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(4174), - [sym__unquoted_with_expr] = STATE(4337), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3952), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2127), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1163), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3491), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_null] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [aux_sym__val_number_decimal_token1] = ACTIONS(3503), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_decimal_token4] = ACTIONS(3509), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3511), - [aux_sym__val_number_token5] = ACTIONS(3511), - [aux_sym__val_number_token6] = ACTIONS(3511), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1164] = { - [sym_expr_unary] = STATE(4331), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_parenthesized] = STATE(4141), - [sym_val_range] = STATE(4331), - [sym__val_range] = STATE(7906), - [sym__val_range_with_end] = STATE(7613), - [sym__value] = STATE(4331), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(4177), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(4014), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(4189), - [sym__unquoted_with_expr] = STATE(4333), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3953), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1855), + [sym__unquoted_with_expr] = STATE(2138), [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1164), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3491), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_null] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [aux_sym__val_number_decimal_token1] = ACTIONS(3503), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_decimal_token4] = ACTIONS(3509), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3511), - [aux_sym__val_number_token5] = ACTIONS(3511), - [aux_sym__val_number_token6] = ACTIONS(3511), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1165] = { - [sym_expr_unary] = STATE(4610), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_parenthesized] = STATE(4200), - [sym_val_range] = STATE(4610), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(4610), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(4244), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(4272), - [sym__unquoted_with_expr] = STATE(4583), - [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3956), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1165), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1166] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3958), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2154), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1166), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1167] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(2129), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1167), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1168] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3959), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1932), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1168), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1169] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3933), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2112), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1169), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1170] = { + [sym_expr_unary] = STATE(2175), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2175), + [sym__expr_binary_expression] = STATE(3942), + [sym_expr_parenthesized] = STATE(2175), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(2175), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(3703), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3405), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1170), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3375), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym__val_number_decimal_token1] = ACTIONS(3419), + [aux_sym__val_number_decimal_token2] = ACTIONS(3421), + [aux_sym__val_number_decimal_token3] = ACTIONS(3423), + [aux_sym__val_number_decimal_token4] = ACTIONS(3425), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3427), + [aux_sym__val_number_token5] = ACTIONS(3427), + [aux_sym__val_number_token6] = ACTIONS(3427), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1171] = { + [sym_expr_unary] = STATE(3917), + [sym__expr_unary_minus] = STATE(3905), + [sym_expr_binary] = STATE(3917), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(3917), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7636), + [sym__value] = STATE(3917), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(3729), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(3410), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3588), + [sym__str_double_quotes] = STATE(3588), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(3646), + [sym__unquoted_with_expr] = STATE(3873), + [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_comment] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_DASH2] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3511), + [anon_sym_DOT_DOT_LT] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3517), + [aux_sym__val_number_decimal_token2] = ACTIONS(3519), + [aux_sym__val_number_decimal_token3] = ACTIONS(3521), + [aux_sym__val_number_decimal_token4] = ACTIONS(3523), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(3527), + [aux_sym__val_number_token5] = ACTIONS(3527), + [aux_sym__val_number_token6] = ACTIONS(3527), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym__str_single_quotes] = ACTIONS(3537), + [sym__str_back_ticks] = ACTIONS(3537), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3545), + }, + [1172] = { + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_comment] = STATE(1172), + [sym__newline] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3573), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), + }, + [1173] = { + [sym_expr_unary] = STATE(4533), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_parenthesized] = STATE(4162), + [sym_val_range] = STATE(4533), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(4533), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(4253), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(4018), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(4239), + [sym__unquoted_with_expr] = STATE(4603), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1173), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(3577), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3519), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [aux_sym__val_number_decimal_token1] = ACTIONS(3529), - [aux_sym__val_number_decimal_token2] = ACTIONS(3531), - [aux_sym__val_number_decimal_token3] = ACTIONS(3533), - [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [aux_sym_expr_unary_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3583), + [anon_sym_DOT_DOT_LT] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [aux_sym__val_number_decimal_token1] = ACTIONS(3589), + [aux_sym__val_number_decimal_token2] = ACTIONS(3591), + [aux_sym__val_number_decimal_token3] = ACTIONS(3593), + [aux_sym__val_number_decimal_token4] = ACTIONS(3595), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3537), - [aux_sym__val_number_token5] = ACTIONS(3537), - [aux_sym__val_number_token6] = ACTIONS(3537), + [aux_sym__val_number_token4] = ACTIONS(3597), + [aux_sym__val_number_token5] = ACTIONS(3597), + [aux_sym__val_number_token6] = ACTIONS(3597), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3539), + [sym_val_date] = ACTIONS(3599), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1166] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_comment] = STATE(1166), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1167] = { - [sym_expr_unary] = STATE(4524), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_parenthesized] = STATE(4203), - [sym_val_range] = STATE(4524), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(4524), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(4244), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(4282), - [sym__unquoted_with_expr] = STATE(4588), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1167), + [1174] = { + [sym_expr_unary] = STATE(4579), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_parenthesized] = STATE(4172), + [sym_val_range] = STATE(4579), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(4579), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(4253), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(4018), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(4245), + [sym__unquoted_with_expr] = STATE(4530), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1174), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(3577), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3519), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [aux_sym__val_number_decimal_token1] = ACTIONS(3529), - [aux_sym__val_number_decimal_token2] = ACTIONS(3531), - [aux_sym__val_number_decimal_token3] = ACTIONS(3533), - [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [aux_sym_expr_unary_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3583), + [anon_sym_DOT_DOT_LT] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [aux_sym__val_number_decimal_token1] = ACTIONS(3589), + [aux_sym__val_number_decimal_token2] = ACTIONS(3591), + [aux_sym__val_number_decimal_token3] = ACTIONS(3593), + [aux_sym__val_number_decimal_token4] = ACTIONS(3595), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3537), - [aux_sym__val_number_token5] = ACTIONS(3537), - [aux_sym__val_number_token6] = ACTIONS(3537), + [aux_sym__val_number_token4] = ACTIONS(3597), + [aux_sym__val_number_token5] = ACTIONS(3597), + [aux_sym__val_number_token6] = ACTIONS(3597), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3539), + [sym_val_date] = ACTIONS(3599), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, - [1168] = { - [sym_expr_unary] = STATE(4621), - [sym__expr_unary_minus] = STATE(2523), - [sym_expr_parenthesized] = STATE(4185), - [sym_val_range] = STATE(4621), - [sym__val_range] = STATE(8160), - [sym__val_range_with_end] = STATE(7583), - [sym__value] = STATE(4621), - [sym_val_nothing] = STATE(2481), - [sym_val_bool] = STATE(4244), - [sym_val_variable] = STATE(2126), - [sym_val_number] = STATE(2481), - [sym__val_number_decimal] = STATE(4034), - [sym__val_number] = STATE(2536), - [sym_val_duration] = STATE(2481), - [sym_val_filesize] = STATE(2481), - [sym_val_binary] = STATE(2481), - [sym_val_string] = STATE(2481), - [sym__raw_str] = STATE(2093), - [sym__str_double_quotes] = STATE(2093), - [sym_val_interpolated] = STATE(2481), - [sym__inter_single_quotes] = STATE(2537), - [sym__inter_double_quotes] = STATE(2538), - [sym_val_list] = STATE(2481), - [sym_val_record] = STATE(2481), - [sym_val_table] = STATE(2481), - [sym_val_closure] = STATE(2481), - [sym_unquoted] = STATE(4300), - [sym__unquoted_with_expr] = STATE(4565), - [sym__unquoted_anonymous_prefix] = STATE(7358), - [sym_comment] = STATE(1168), + [1175] = { + [sym_expr_unary] = STATE(4583), + [sym__expr_unary_minus] = STATE(2483), + [sym_expr_parenthesized] = STATE(4196), + [sym_val_range] = STATE(4583), + [sym__val_range] = STATE(7805), + [sym__val_range_with_end] = STATE(7590), + [sym__value] = STATE(4583), + [sym_val_nothing] = STATE(2531), + [sym_val_bool] = STATE(4253), + [sym_val_variable] = STATE(2097), + [sym_val_number] = STATE(2531), + [sym__val_number_decimal] = STATE(4018), + [sym__val_number] = STATE(2470), + [sym_val_duration] = STATE(2531), + [sym_val_filesize] = STATE(2531), + [sym_val_binary] = STATE(2531), + [sym_val_string] = STATE(2531), + [sym__raw_str] = STATE(2130), + [sym__str_double_quotes] = STATE(2130), + [sym_val_interpolated] = STATE(2531), + [sym__inter_single_quotes] = STATE(2497), + [sym__inter_double_quotes] = STATE(2500), + [sym_val_list] = STATE(2531), + [sym_val_record] = STATE(2531), + [sym_val_table] = STATE(2531), + [sym_val_closure] = STATE(2531), + [sym_unquoted] = STATE(4292), + [sym__unquoted_with_expr] = STATE(4588), + [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_comment] = STATE(1175), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(3577), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3519), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [aux_sym__val_number_decimal_token1] = ACTIONS(3529), - [aux_sym__val_number_decimal_token2] = ACTIONS(3531), - [aux_sym__val_number_decimal_token3] = ACTIONS(3533), - [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [aux_sym_expr_unary_token1] = ACTIONS(3581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3583), + [anon_sym_DOT_DOT_LT] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [aux_sym__val_number_decimal_token1] = ACTIONS(3589), + [aux_sym__val_number_decimal_token2] = ACTIONS(3591), + [aux_sym__val_number_decimal_token3] = ACTIONS(3593), + [aux_sym__val_number_decimal_token4] = ACTIONS(3595), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3537), - [aux_sym__val_number_token5] = ACTIONS(3537), - [aux_sym__val_number_token6] = ACTIONS(3537), + [aux_sym__val_number_token4] = ACTIONS(3597), + [aux_sym__val_number_token5] = ACTIONS(3597), + [aux_sym__val_number_token6] = ACTIONS(3597), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3539), + [sym_val_date] = ACTIONS(3599), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1169] = { - [sym_comment] = STATE(1169), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1169), - [aux_sym_cmd_identifier_token1] = ACTIONS(3543), - [aux_sym_cmd_identifier_token2] = ACTIONS(3543), - [aux_sym_cmd_identifier_token3] = ACTIONS(3543), - [aux_sym_cmd_identifier_token4] = ACTIONS(3543), - [aux_sym_cmd_identifier_token5] = ACTIONS(3543), - [aux_sym_cmd_identifier_token6] = ACTIONS(3543), - [aux_sym_cmd_identifier_token7] = ACTIONS(3543), - [aux_sym_cmd_identifier_token8] = ACTIONS(3543), - [aux_sym_cmd_identifier_token9] = ACTIONS(3543), - [aux_sym_cmd_identifier_token10] = ACTIONS(3543), - [aux_sym_cmd_identifier_token11] = ACTIONS(3543), - [aux_sym_cmd_identifier_token12] = ACTIONS(3543), - [aux_sym_cmd_identifier_token13] = ACTIONS(3543), - [aux_sym_cmd_identifier_token14] = ACTIONS(3543), - [aux_sym_cmd_identifier_token15] = ACTIONS(3543), - [aux_sym_cmd_identifier_token16] = ACTIONS(3543), - [aux_sym_cmd_identifier_token17] = ACTIONS(3543), - [aux_sym_cmd_identifier_token18] = ACTIONS(3543), - [aux_sym_cmd_identifier_token19] = ACTIONS(3543), - [aux_sym_cmd_identifier_token20] = ACTIONS(3543), - [aux_sym_cmd_identifier_token21] = ACTIONS(3543), - [aux_sym_cmd_identifier_token22] = ACTIONS(3543), - [aux_sym_cmd_identifier_token23] = ACTIONS(3543), - [aux_sym_cmd_identifier_token24] = ACTIONS(3543), - [aux_sym_cmd_identifier_token25] = ACTIONS(3543), - [aux_sym_cmd_identifier_token26] = ACTIONS(3543), - [aux_sym_cmd_identifier_token27] = ACTIONS(3543), - [aux_sym_cmd_identifier_token28] = ACTIONS(3543), - [aux_sym_cmd_identifier_token29] = ACTIONS(3543), - [aux_sym_cmd_identifier_token30] = ACTIONS(3543), - [aux_sym_cmd_identifier_token31] = ACTIONS(3543), - [aux_sym_cmd_identifier_token32] = ACTIONS(3543), - [aux_sym_cmd_identifier_token33] = ACTIONS(3543), - [aux_sym_cmd_identifier_token34] = ACTIONS(3543), - [aux_sym_cmd_identifier_token35] = ACTIONS(3543), - [aux_sym_cmd_identifier_token36] = ACTIONS(3543), - [aux_sym_cmd_identifier_token37] = ACTIONS(3543), - [aux_sym_cmd_identifier_token38] = ACTIONS(3543), - [aux_sym_cmd_identifier_token39] = ACTIONS(3543), - [aux_sym_cmd_identifier_token40] = ACTIONS(3543), - [sym__newline] = ACTIONS(3545), - [sym__space] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_DASH2] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_DOT_DOT] = ACTIONS(3543), - [aux_sym_expr_unary_token1] = ACTIONS(3543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3543), - [anon_sym_DOT_DOT_LT] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [aux_sym__val_number_decimal_token1] = ACTIONS(3543), - [aux_sym__val_number_decimal_token2] = ACTIONS(3543), - [aux_sym__val_number_decimal_token3] = ACTIONS(3543), - [aux_sym__val_number_decimal_token4] = ACTIONS(3543), - [aux_sym__val_number_token1] = ACTIONS(3543), - [aux_sym__val_number_token2] = ACTIONS(3543), - [aux_sym__val_number_token3] = ACTIONS(3543), - [aux_sym__val_number_token4] = ACTIONS(3543), - [aux_sym__val_number_token5] = ACTIONS(3543), - [aux_sym__val_number_token6] = ACTIONS(3543), - [anon_sym_0b] = ACTIONS(3543), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(3543), - [sym__str_single_quotes] = ACTIONS(3543), - [sym__str_back_ticks] = ACTIONS(3543), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), - [aux_sym_env_var_token1] = ACTIONS(3543), - [anon_sym_CARET] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3551), - }, - [1170] = { - [sym_ctrl_do] = STATE(4895), - [sym_ctrl_if] = STATE(4895), - [sym_ctrl_match] = STATE(4895), - [sym_ctrl_try] = STATE(4895), - [sym__expression] = STATE(4895), - [sym_expr_unary] = STATE(2130), - [sym__expr_unary_minus] = STATE(2131), - [sym_expr_binary] = STATE(2130), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(1998), - [sym_val_range] = STATE(3626), - [sym__value] = STATE(2130), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(2116), - [sym_val_variable] = STATE(2000), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_comment] = STATE(1170), - [sym__newline] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1171] = { - [sym_comment] = STATE(1171), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1169), - [aux_sym_cmd_identifier_token1] = ACTIONS(3555), - [aux_sym_cmd_identifier_token2] = ACTIONS(3555), - [aux_sym_cmd_identifier_token3] = ACTIONS(3555), - [aux_sym_cmd_identifier_token4] = ACTIONS(3555), - [aux_sym_cmd_identifier_token5] = ACTIONS(3555), - [aux_sym_cmd_identifier_token6] = ACTIONS(3555), - [aux_sym_cmd_identifier_token7] = ACTIONS(3555), - [aux_sym_cmd_identifier_token8] = ACTIONS(3555), - [aux_sym_cmd_identifier_token9] = ACTIONS(3555), - [aux_sym_cmd_identifier_token10] = ACTIONS(3555), - [aux_sym_cmd_identifier_token11] = ACTIONS(3555), - [aux_sym_cmd_identifier_token12] = ACTIONS(3555), - [aux_sym_cmd_identifier_token13] = ACTIONS(3555), - [aux_sym_cmd_identifier_token14] = ACTIONS(3555), - [aux_sym_cmd_identifier_token15] = ACTIONS(3555), - [aux_sym_cmd_identifier_token16] = ACTIONS(3555), - [aux_sym_cmd_identifier_token17] = ACTIONS(3555), - [aux_sym_cmd_identifier_token18] = ACTIONS(3555), - [aux_sym_cmd_identifier_token19] = ACTIONS(3555), - [aux_sym_cmd_identifier_token20] = ACTIONS(3555), - [aux_sym_cmd_identifier_token21] = ACTIONS(3555), - [aux_sym_cmd_identifier_token22] = ACTIONS(3555), - [aux_sym_cmd_identifier_token23] = ACTIONS(3555), - [aux_sym_cmd_identifier_token24] = ACTIONS(3555), - [aux_sym_cmd_identifier_token25] = ACTIONS(3555), - [aux_sym_cmd_identifier_token26] = ACTIONS(3555), - [aux_sym_cmd_identifier_token27] = ACTIONS(3555), - [aux_sym_cmd_identifier_token28] = ACTIONS(3555), - [aux_sym_cmd_identifier_token29] = ACTIONS(3555), - [aux_sym_cmd_identifier_token30] = ACTIONS(3555), - [aux_sym_cmd_identifier_token31] = ACTIONS(3555), - [aux_sym_cmd_identifier_token32] = ACTIONS(3555), - [aux_sym_cmd_identifier_token33] = ACTIONS(3555), - [aux_sym_cmd_identifier_token34] = ACTIONS(3555), - [aux_sym_cmd_identifier_token35] = ACTIONS(3555), - [aux_sym_cmd_identifier_token36] = ACTIONS(3555), - [aux_sym_cmd_identifier_token37] = ACTIONS(3555), - [aux_sym_cmd_identifier_token38] = ACTIONS(3555), - [aux_sym_cmd_identifier_token39] = ACTIONS(3555), - [aux_sym_cmd_identifier_token40] = ACTIONS(3555), - [sym__newline] = ACTIONS(3557), - [sym__space] = ACTIONS(3559), - [anon_sym_LBRACK] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3555), - [anon_sym_DOLLAR] = ACTIONS(3555), - [anon_sym_DASH2] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [aux_sym_expr_unary_token1] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [anon_sym_null] = ACTIONS(3555), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3555), - [aux_sym__val_number_decimal_token2] = ACTIONS(3555), - [aux_sym__val_number_decimal_token3] = ACTIONS(3555), - [aux_sym__val_number_decimal_token4] = ACTIONS(3555), - [aux_sym__val_number_token1] = ACTIONS(3555), - [aux_sym__val_number_token2] = ACTIONS(3555), - [aux_sym__val_number_token3] = ACTIONS(3555), - [aux_sym__val_number_token4] = ACTIONS(3555), - [aux_sym__val_number_token5] = ACTIONS(3555), - [aux_sym__val_number_token6] = ACTIONS(3555), - [anon_sym_0b] = ACTIONS(3555), - [anon_sym_0o] = ACTIONS(3555), - [anon_sym_0x] = ACTIONS(3555), - [sym_val_date] = ACTIONS(3555), - [anon_sym_DQUOTE] = ACTIONS(3555), - [sym__str_single_quotes] = ACTIONS(3555), - [sym__str_back_ticks] = ACTIONS(3555), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), - [aux_sym_env_var_token1] = ACTIONS(3555), - [anon_sym_CARET] = ACTIONS(3555), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3561), - }, - [1172] = { - [sym_comment] = STATE(1172), - [aux_sym_pipe_element_repeat1] = STATE(1181), - [aux_sym_cmd_identifier_token1] = ACTIONS(3563), - [aux_sym_cmd_identifier_token2] = ACTIONS(3563), - [aux_sym_cmd_identifier_token3] = ACTIONS(3563), - [aux_sym_cmd_identifier_token4] = ACTIONS(3563), - [aux_sym_cmd_identifier_token5] = ACTIONS(3563), - [aux_sym_cmd_identifier_token6] = ACTIONS(3563), - [aux_sym_cmd_identifier_token7] = ACTIONS(3563), - [aux_sym_cmd_identifier_token8] = ACTIONS(3563), - [aux_sym_cmd_identifier_token9] = ACTIONS(3563), - [aux_sym_cmd_identifier_token10] = ACTIONS(3563), - [aux_sym_cmd_identifier_token11] = ACTIONS(3563), - [aux_sym_cmd_identifier_token12] = ACTIONS(3563), - [aux_sym_cmd_identifier_token13] = ACTIONS(3563), - [aux_sym_cmd_identifier_token14] = ACTIONS(3563), - [aux_sym_cmd_identifier_token15] = ACTIONS(3563), - [aux_sym_cmd_identifier_token16] = ACTIONS(3563), - [aux_sym_cmd_identifier_token17] = ACTIONS(3563), - [aux_sym_cmd_identifier_token18] = ACTIONS(3563), - [aux_sym_cmd_identifier_token19] = ACTIONS(3563), - [aux_sym_cmd_identifier_token20] = ACTIONS(3563), - [aux_sym_cmd_identifier_token21] = ACTIONS(3563), - [aux_sym_cmd_identifier_token22] = ACTIONS(3563), - [aux_sym_cmd_identifier_token23] = ACTIONS(3563), - [aux_sym_cmd_identifier_token24] = ACTIONS(3563), - [aux_sym_cmd_identifier_token25] = ACTIONS(3563), - [aux_sym_cmd_identifier_token26] = ACTIONS(3563), - [aux_sym_cmd_identifier_token27] = ACTIONS(3563), - [aux_sym_cmd_identifier_token28] = ACTIONS(3563), - [aux_sym_cmd_identifier_token29] = ACTIONS(3563), - [aux_sym_cmd_identifier_token30] = ACTIONS(3563), - [aux_sym_cmd_identifier_token31] = ACTIONS(3563), - [aux_sym_cmd_identifier_token32] = ACTIONS(3563), - [aux_sym_cmd_identifier_token33] = ACTIONS(3563), - [aux_sym_cmd_identifier_token34] = ACTIONS(3563), - [aux_sym_cmd_identifier_token35] = ACTIONS(3563), - [aux_sym_cmd_identifier_token36] = ACTIONS(3563), - [aux_sym_cmd_identifier_token37] = ACTIONS(3563), - [aux_sym_cmd_identifier_token38] = ACTIONS(3563), - [aux_sym_cmd_identifier_token39] = ACTIONS(3563), - [aux_sym_cmd_identifier_token40] = ACTIONS(3563), - [sym__space] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3563), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_DOLLAR] = ACTIONS(3563), - [anon_sym_DASH2] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3563), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [aux_sym_expr_unary_token1] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_null] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3563), - [anon_sym_false] = ACTIONS(3563), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3563), - [aux_sym__val_number_decimal_token3] = ACTIONS(3563), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(3563), - [aux_sym__val_number_token2] = ACTIONS(3563), - [aux_sym__val_number_token3] = ACTIONS(3563), - [aux_sym__val_number_token4] = ACTIONS(3563), - [aux_sym__val_number_token5] = ACTIONS(3563), - [aux_sym__val_number_token6] = ACTIONS(3563), - [anon_sym_0b] = ACTIONS(3563), - [anon_sym_0o] = ACTIONS(3563), - [anon_sym_0x] = ACTIONS(3563), - [sym_val_date] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym__str_single_quotes] = ACTIONS(3563), - [sym__str_back_ticks] = ACTIONS(3563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3563), - [aux_sym_env_var_token1] = ACTIONS(3563), - [anon_sym_CARET] = ACTIONS(3563), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3567), - }, - [1173] = { - [sym_env_var] = STATE(7604), - [sym_comment] = STATE(1173), - [aux_sym_pipe_element_repeat2] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(3563), - [aux_sym_cmd_identifier_token2] = ACTIONS(3567), - [aux_sym_cmd_identifier_token3] = ACTIONS(3567), - [aux_sym_cmd_identifier_token4] = ACTIONS(3567), - [aux_sym_cmd_identifier_token5] = ACTIONS(3567), - [aux_sym_cmd_identifier_token6] = ACTIONS(3567), - [aux_sym_cmd_identifier_token7] = ACTIONS(3567), - [aux_sym_cmd_identifier_token8] = ACTIONS(3567), - [aux_sym_cmd_identifier_token9] = ACTIONS(3563), - [aux_sym_cmd_identifier_token10] = ACTIONS(3567), - [aux_sym_cmd_identifier_token11] = ACTIONS(3567), - [aux_sym_cmd_identifier_token12] = ACTIONS(3567), - [aux_sym_cmd_identifier_token13] = ACTIONS(3563), - [aux_sym_cmd_identifier_token14] = ACTIONS(3567), - [aux_sym_cmd_identifier_token15] = ACTIONS(3563), - [aux_sym_cmd_identifier_token16] = ACTIONS(3567), - [aux_sym_cmd_identifier_token17] = ACTIONS(3567), - [aux_sym_cmd_identifier_token18] = ACTIONS(3567), - [aux_sym_cmd_identifier_token19] = ACTIONS(3567), - [aux_sym_cmd_identifier_token20] = ACTIONS(3567), - [aux_sym_cmd_identifier_token21] = ACTIONS(3567), - [aux_sym_cmd_identifier_token22] = ACTIONS(3567), - [aux_sym_cmd_identifier_token23] = ACTIONS(3567), - [aux_sym_cmd_identifier_token24] = ACTIONS(3567), - [aux_sym_cmd_identifier_token25] = ACTIONS(3567), - [aux_sym_cmd_identifier_token26] = ACTIONS(3567), - [aux_sym_cmd_identifier_token27] = ACTIONS(3567), - [aux_sym_cmd_identifier_token28] = ACTIONS(3567), - [aux_sym_cmd_identifier_token29] = ACTIONS(3567), - [aux_sym_cmd_identifier_token30] = ACTIONS(3567), - [aux_sym_cmd_identifier_token31] = ACTIONS(3567), - [aux_sym_cmd_identifier_token32] = ACTIONS(3567), - [aux_sym_cmd_identifier_token33] = ACTIONS(3567), - [aux_sym_cmd_identifier_token34] = ACTIONS(3563), - [aux_sym_cmd_identifier_token35] = ACTIONS(3567), - [aux_sym_cmd_identifier_token36] = ACTIONS(3567), - [aux_sym_cmd_identifier_token37] = ACTIONS(3567), - [aux_sym_cmd_identifier_token38] = ACTIONS(3563), - [aux_sym_cmd_identifier_token39] = ACTIONS(3567), - [aux_sym_cmd_identifier_token40] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_LPAREN] = ACTIONS(3567), - [anon_sym_DOLLAR] = ACTIONS(3563), - [anon_sym_DASH2] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3567), - [anon_sym_DOT_DOT] = ACTIONS(3563), - [aux_sym_expr_unary_token1] = ACTIONS(3567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3567), - [anon_sym_DOT_DOT_LT] = ACTIONS(3567), - [anon_sym_null] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3563), - [anon_sym_false] = ACTIONS(3563), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3567), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3567), - [aux_sym__val_number_token1] = ACTIONS(3567), - [aux_sym__val_number_token2] = ACTIONS(3567), - [aux_sym__val_number_token3] = ACTIONS(3567), - [aux_sym__val_number_token4] = ACTIONS(3563), - [aux_sym__val_number_token5] = ACTIONS(3563), - [aux_sym__val_number_token6] = ACTIONS(3563), - [anon_sym_0b] = ACTIONS(3563), - [anon_sym_0o] = ACTIONS(3563), - [anon_sym_0x] = ACTIONS(3563), - [sym_val_date] = ACTIONS(3567), - [anon_sym_DQUOTE] = ACTIONS(3567), - [sym__str_single_quotes] = ACTIONS(3567), - [sym__str_back_ticks] = ACTIONS(3567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3567), - [aux_sym_env_var_token1] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(3567), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3567), - }, - [1174] = { - [sym_comment] = STATE(1174), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3572), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3574), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), - }, - [1175] = { - [sym_comment] = STATE(1175), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3576), - [aux_sym__immediate_decimal_token2] = ACTIONS(3578), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3475), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(125), }, [1176] = { + [sym_expr_unary] = STATE(4424), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_parenthesized] = STATE(4132), + [sym_val_range] = STATE(4424), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(4424), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(4180), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(4012), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(4194), + [sym__unquoted_with_expr] = STATE(4427), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1176), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3582), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [aux_sym_expr_unary_token1] = ACTIONS(3607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3609), + [anon_sym_DOT_DOT_LT] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_true] = ACTIONS(3613), + [anon_sym_false] = ACTIONS(3613), + [aux_sym__val_number_decimal_token1] = ACTIONS(3615), + [aux_sym__val_number_decimal_token2] = ACTIONS(3617), + [aux_sym__val_number_decimal_token3] = ACTIONS(3619), + [aux_sym__val_number_decimal_token4] = ACTIONS(3621), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1177] = { + [sym_expr_unary] = STATE(4420), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_parenthesized] = STATE(4131), + [sym_val_range] = STATE(4420), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(4420), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(4180), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(4012), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(4191), + [sym__unquoted_with_expr] = STATE(4423), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1177), - [aux_sym_shebang_repeat1] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [aux_sym_expr_unary_token1] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [aux_sym_expr_unary_token1] = ACTIONS(3607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3609), + [anon_sym_DOT_DOT_LT] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_true] = ACTIONS(3613), + [anon_sym_false] = ACTIONS(3613), + [aux_sym__val_number_decimal_token1] = ACTIONS(3615), + [aux_sym__val_number_decimal_token2] = ACTIONS(3617), + [aux_sym__val_number_decimal_token3] = ACTIONS(3619), + [aux_sym__val_number_decimal_token4] = ACTIONS(3621), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1178] = { - [sym_match_arm] = STATE(7053), - [sym_default_arm] = STATE(7053), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_expr_unary] = STATE(4381), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_parenthesized] = STATE(4129), + [sym_val_range] = STATE(4381), + [sym__val_range] = STATE(7747), + [sym__val_range_with_end] = STATE(7625), + [sym__value] = STATE(4381), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(4180), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(4012), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(4189), + [sym__unquoted_with_expr] = STATE(4419), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1178), - [aux_sym_shebang_repeat1] = STATE(1198), - [aux_sym_ctrl_match_repeat1] = STATE(1234), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3603), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [aux_sym_expr_unary_token1] = ACTIONS(3607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3609), + [anon_sym_DOT_DOT_LT] = ACTIONS(3609), + [anon_sym_null] = ACTIONS(3611), + [anon_sym_true] = ACTIONS(3613), + [anon_sym_false] = ACTIONS(3613), + [aux_sym__val_number_decimal_token1] = ACTIONS(3615), + [aux_sym__val_number_decimal_token2] = ACTIONS(3617), + [aux_sym__val_number_decimal_token3] = ACTIONS(3619), + [aux_sym__val_number_decimal_token4] = ACTIONS(3621), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1179] = { - [sym_expr_parenthesized] = STATE(4558), - [sym_val_range] = STATE(5040), - [sym__val_range] = STATE(7896), - [sym__val_range_with_end] = STATE(7508), - [sym__value] = STATE(5040), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(4665), - [sym_val_variable] = STATE(4569), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4721), - [sym__str_double_quotes] = STATE(4721), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym__unquoted_in_list] = STATE(4748), - [sym__unquoted_in_list_with_expr] = STATE(5040), - [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_ctrl_do] = STATE(4979), + [sym_ctrl_if] = STATE(4979), + [sym_ctrl_match] = STATE(4979), + [sym_ctrl_try] = STATE(4979), + [sym__expression] = STATE(4979), + [sym_expr_unary] = STATE(2145), + [sym__expr_unary_minus] = STATE(2146), + [sym_expr_binary] = STATE(2145), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(2032), + [sym_val_range] = STATE(3622), + [sym__value] = STATE(2145), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(2093), + [sym_val_variable] = STATE(2033), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), [sym_comment] = STATE(1179), - [aux_sym_shebang_repeat1] = STATE(3010), - [sym__newline] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3625), - [anon_sym_DOLLAR] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), - [anon_sym_DOT_DOT_LT] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_true] = ACTIONS(3637), - [anon_sym_false] = ACTIONS(3637), - [aux_sym__val_number_decimal_token1] = ACTIONS(3639), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3643), - [aux_sym__val_number_decimal_token4] = ACTIONS(3645), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(3649), - [aux_sym__val_number_token5] = ACTIONS(3649), - [aux_sym__val_number_token6] = ACTIONS(3649), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3657), - [sym__str_single_quotes] = ACTIONS(3659), - [sym__str_back_ticks] = ACTIONS(3659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3667), + [sym__newline] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_err_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_GT_PIPE] = ACTIONS(3433), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3433), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3433), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3433), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_DASH2] = ACTIONS(393), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(189), + [anon_sym_try] = ACTIONS(3441), + [aux_sym_expr_unary_token1] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3403), + [aux_sym__val_number_decimal_token2] = ACTIONS(3405), + [aux_sym__val_number_decimal_token3] = ACTIONS(3407), + [aux_sym__val_number_decimal_token4] = ACTIONS(3409), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(435), + [aux_sym__val_number_token5] = ACTIONS(435), + [aux_sym__val_number_token6] = ACTIONS(435), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1180] = { - [sym_match_arm] = STATE(7015), - [sym_default_arm] = STATE(7015), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1180), - [aux_sym_shebang_repeat1] = STATE(1204), - [aux_sym_ctrl_match_repeat1] = STATE(1242), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3631), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1181] = { + [sym_expr_parenthesized] = STATE(4566), + [sym_val_range] = STATE(5067), + [sym__val_range] = STATE(7976), + [sym__val_range_with_end] = STATE(7528), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4617), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4712), + [sym__str_double_quotes] = STATE(4712), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym__unquoted_in_list] = STATE(4699), + [sym__unquoted_in_list_with_expr] = STATE(5067), + [sym__unquoted_anonymous_prefix] = STATE(6990), [sym_comment] = STATE(1181), - [aux_sym_pipe_element_repeat1] = STATE(1181), - [aux_sym_cmd_identifier_token1] = ACTIONS(3671), - [aux_sym_cmd_identifier_token2] = ACTIONS(3671), - [aux_sym_cmd_identifier_token3] = ACTIONS(3671), - [aux_sym_cmd_identifier_token4] = ACTIONS(3671), - [aux_sym_cmd_identifier_token5] = ACTIONS(3671), - [aux_sym_cmd_identifier_token6] = ACTIONS(3671), - [aux_sym_cmd_identifier_token7] = ACTIONS(3671), - [aux_sym_cmd_identifier_token8] = ACTIONS(3671), - [aux_sym_cmd_identifier_token9] = ACTIONS(3671), - [aux_sym_cmd_identifier_token10] = ACTIONS(3671), - [aux_sym_cmd_identifier_token11] = ACTIONS(3671), - [aux_sym_cmd_identifier_token12] = ACTIONS(3671), - [aux_sym_cmd_identifier_token13] = ACTIONS(3671), - [aux_sym_cmd_identifier_token14] = ACTIONS(3671), - [aux_sym_cmd_identifier_token15] = ACTIONS(3671), - [aux_sym_cmd_identifier_token16] = ACTIONS(3671), - [aux_sym_cmd_identifier_token17] = ACTIONS(3671), - [aux_sym_cmd_identifier_token18] = ACTIONS(3671), - [aux_sym_cmd_identifier_token19] = ACTIONS(3671), - [aux_sym_cmd_identifier_token20] = ACTIONS(3671), - [aux_sym_cmd_identifier_token21] = ACTIONS(3671), - [aux_sym_cmd_identifier_token22] = ACTIONS(3671), - [aux_sym_cmd_identifier_token23] = ACTIONS(3671), - [aux_sym_cmd_identifier_token24] = ACTIONS(3671), - [aux_sym_cmd_identifier_token25] = ACTIONS(3671), - [aux_sym_cmd_identifier_token26] = ACTIONS(3671), - [aux_sym_cmd_identifier_token27] = ACTIONS(3671), - [aux_sym_cmd_identifier_token28] = ACTIONS(3671), - [aux_sym_cmd_identifier_token29] = ACTIONS(3671), - [aux_sym_cmd_identifier_token30] = ACTIONS(3671), - [aux_sym_cmd_identifier_token31] = ACTIONS(3671), - [aux_sym_cmd_identifier_token32] = ACTIONS(3671), - [aux_sym_cmd_identifier_token33] = ACTIONS(3671), - [aux_sym_cmd_identifier_token34] = ACTIONS(3671), - [aux_sym_cmd_identifier_token35] = ACTIONS(3671), - [aux_sym_cmd_identifier_token36] = ACTIONS(3671), - [aux_sym_cmd_identifier_token37] = ACTIONS(3671), - [aux_sym_cmd_identifier_token38] = ACTIONS(3671), - [aux_sym_cmd_identifier_token39] = ACTIONS(3671), - [aux_sym_cmd_identifier_token40] = ACTIONS(3671), - [sym__space] = ACTIONS(3673), - [anon_sym_LBRACK] = ACTIONS(3671), - [anon_sym_LPAREN] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3671), - [anon_sym_DASH2] = ACTIONS(3671), - [anon_sym_LBRACE] = ACTIONS(3671), - [anon_sym_DOT_DOT] = ACTIONS(3671), - [aux_sym_expr_unary_token1] = ACTIONS(3671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3671), - [anon_sym_DOT_DOT_LT] = ACTIONS(3671), - [anon_sym_null] = ACTIONS(3671), - [anon_sym_true] = ACTIONS(3671), - [anon_sym_false] = ACTIONS(3671), - [aux_sym__val_number_decimal_token1] = ACTIONS(3671), - [aux_sym__val_number_decimal_token2] = ACTIONS(3671), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3671), - [aux_sym__val_number_token1] = ACTIONS(3671), - [aux_sym__val_number_token2] = ACTIONS(3671), - [aux_sym__val_number_token3] = ACTIONS(3671), - [aux_sym__val_number_token4] = ACTIONS(3671), - [aux_sym__val_number_token5] = ACTIONS(3671), - [aux_sym__val_number_token6] = ACTIONS(3671), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3671), - [anon_sym_0x] = ACTIONS(3671), - [sym_val_date] = ACTIONS(3671), - [anon_sym_DQUOTE] = ACTIONS(3671), + [aux_sym_shebang_repeat1] = STATE(1184), + [sym__newline] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3645), + [anon_sym_DOT_DOT_LT] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_true] = ACTIONS(3649), + [anon_sym_false] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(3661), + [aux_sym__val_number_token5] = ACTIONS(3661), + [aux_sym__val_number_token6] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), [sym__str_single_quotes] = ACTIONS(3671), [sym__str_back_ticks] = ACTIONS(3671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [aux_sym_env_var_token1] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3679), }, [1182] = { [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3678), - [aux_sym__immediate_decimal_token2] = ACTIONS(3680), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3681), + [aux_sym__immediate_decimal_token2] = ACTIONS(3683), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(3), }, [1183] = { - [sym_match_arm] = STATE(7014), - [sym_default_arm] = STATE(7014), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1183), - [aux_sym_shebang_repeat1] = STATE(1203), - [aux_sym_ctrl_match_repeat1] = STATE(1250), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3687), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1184] = { - [sym_expr_parenthesized] = STATE(4548), - [sym_val_range] = STATE(5152), - [sym__val_range] = STATE(7896), - [sym__val_range_with_end] = STATE(7508), - [sym__value] = STATE(5152), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(4665), - [sym_val_variable] = STATE(4569), - [sym_val_number] = STATE(5002), + [sym_expr_parenthesized] = STATE(4524), + [sym_val_range] = STATE(5096), + [sym__val_range] = STATE(7976), + [sym__val_range_with_end] = STATE(7528), + [sym__value] = STATE(5096), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4617), + [sym_val_number] = STATE(4941), [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4721), - [sym__str_double_quotes] = STATE(4721), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym__unquoted_in_list] = STATE(4663), - [sym__unquoted_in_list_with_expr] = STATE(5152), - [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4712), + [sym__str_double_quotes] = STATE(4712), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym__unquoted_in_list] = STATE(4657), + [sym__unquoted_in_list_with_expr] = STATE(5096), + [sym__unquoted_anonymous_prefix] = STATE(6990), [sym_comment] = STATE(1184), - [aux_sym_shebang_repeat1] = STATE(1188), - [sym__newline] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3625), - [anon_sym_DOLLAR] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), - [anon_sym_DOT_DOT_LT] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_true] = ACTIONS(3637), - [anon_sym_false] = ACTIONS(3637), - [aux_sym__val_number_decimal_token1] = ACTIONS(3639), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3643), - [aux_sym__val_number_decimal_token4] = ACTIONS(3645), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(3649), - [aux_sym__val_number_token5] = ACTIONS(3649), - [aux_sym__val_number_token6] = ACTIONS(3649), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3657), - [sym__str_single_quotes] = ACTIONS(3659), - [sym__str_back_ticks] = ACTIONS(3659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3667), + [aux_sym_shebang_repeat1] = STATE(2970), + [sym__newline] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3645), + [anon_sym_DOT_DOT_LT] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_true] = ACTIONS(3649), + [anon_sym_false] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(3661), + [aux_sym__val_number_token5] = ACTIONS(3661), + [aux_sym__val_number_token6] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [sym__str_single_quotes] = ACTIONS(3671), + [sym__str_back_ticks] = ACTIONS(3671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3679), }, [1185] = { [sym_comment] = STATE(1185), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3684), - [aux_sym__immediate_decimal_token2] = ACTIONS(3686), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3689), + [aux_sym__immediate_decimal_token2] = ACTIONS(3691), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(3), }, [1186] = { + [sym_expr_parenthesized] = STATE(4566), + [sym_val_range] = STATE(5067), + [sym__val_range] = STATE(7976), + [sym__val_range_with_end] = STATE(7528), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4617), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4712), + [sym__str_double_quotes] = STATE(4712), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym__unquoted_in_list] = STATE(4699), + [sym__unquoted_in_list_with_expr] = STATE(5067), + [sym__unquoted_anonymous_prefix] = STATE(6990), [sym_comment] = STATE(1186), - [aux_sym_cmd_identifier_token1] = ACTIONS(3688), - [aux_sym_cmd_identifier_token2] = ACTIONS(3688), - [aux_sym_cmd_identifier_token3] = ACTIONS(3688), - [aux_sym_cmd_identifier_token4] = ACTIONS(3688), - [aux_sym_cmd_identifier_token5] = ACTIONS(3688), - [aux_sym_cmd_identifier_token6] = ACTIONS(3688), - [aux_sym_cmd_identifier_token7] = ACTIONS(3688), - [aux_sym_cmd_identifier_token8] = ACTIONS(3688), - [aux_sym_cmd_identifier_token9] = ACTIONS(3688), - [aux_sym_cmd_identifier_token10] = ACTIONS(3688), - [aux_sym_cmd_identifier_token11] = ACTIONS(3688), - [aux_sym_cmd_identifier_token12] = ACTIONS(3688), - [aux_sym_cmd_identifier_token13] = ACTIONS(3688), - [aux_sym_cmd_identifier_token14] = ACTIONS(3688), - [aux_sym_cmd_identifier_token15] = ACTIONS(3688), - [aux_sym_cmd_identifier_token16] = ACTIONS(3688), - [aux_sym_cmd_identifier_token17] = ACTIONS(3688), - [aux_sym_cmd_identifier_token18] = ACTIONS(3688), - [aux_sym_cmd_identifier_token19] = ACTIONS(3688), - [aux_sym_cmd_identifier_token20] = ACTIONS(3688), - [aux_sym_cmd_identifier_token21] = ACTIONS(3688), - [aux_sym_cmd_identifier_token22] = ACTIONS(3688), - [aux_sym_cmd_identifier_token23] = ACTIONS(3688), - [aux_sym_cmd_identifier_token24] = ACTIONS(3688), - [aux_sym_cmd_identifier_token25] = ACTIONS(3688), - [aux_sym_cmd_identifier_token26] = ACTIONS(3688), - [aux_sym_cmd_identifier_token27] = ACTIONS(3688), - [aux_sym_cmd_identifier_token28] = ACTIONS(3688), - [aux_sym_cmd_identifier_token29] = ACTIONS(3688), - [aux_sym_cmd_identifier_token30] = ACTIONS(3688), - [aux_sym_cmd_identifier_token31] = ACTIONS(3688), - [aux_sym_cmd_identifier_token32] = ACTIONS(3688), - [aux_sym_cmd_identifier_token33] = ACTIONS(3688), - [aux_sym_cmd_identifier_token34] = ACTIONS(3688), - [aux_sym_cmd_identifier_token35] = ACTIONS(3688), - [aux_sym_cmd_identifier_token36] = ACTIONS(3688), - [aux_sym_cmd_identifier_token37] = ACTIONS(3688), - [aux_sym_cmd_identifier_token38] = ACTIONS(3688), - [aux_sym_cmd_identifier_token39] = ACTIONS(3688), - [aux_sym_cmd_identifier_token40] = ACTIONS(3688), - [sym__newline] = ACTIONS(3688), - [sym__space] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_DOLLAR] = ACTIONS(3688), - [anon_sym_DASH2] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [aux_sym_expr_unary_token1] = ACTIONS(3688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3688), - [anon_sym_DOT_DOT_LT] = ACTIONS(3688), - [anon_sym_null] = ACTIONS(3688), - [anon_sym_true] = ACTIONS(3688), - [anon_sym_false] = ACTIONS(3688), - [aux_sym__val_number_decimal_token1] = ACTIONS(3688), - [aux_sym__val_number_decimal_token2] = ACTIONS(3688), - [aux_sym__val_number_decimal_token3] = ACTIONS(3688), - [aux_sym__val_number_decimal_token4] = ACTIONS(3688), - [aux_sym__val_number_token1] = ACTIONS(3688), - [aux_sym__val_number_token2] = ACTIONS(3688), - [aux_sym__val_number_token3] = ACTIONS(3688), - [aux_sym__val_number_token4] = ACTIONS(3688), - [aux_sym__val_number_token5] = ACTIONS(3688), - [aux_sym__val_number_token6] = ACTIONS(3688), - [anon_sym_0b] = ACTIONS(3688), - [anon_sym_0o] = ACTIONS(3688), - [anon_sym_0x] = ACTIONS(3688), - [sym_val_date] = ACTIONS(3688), - [anon_sym_DQUOTE] = ACTIONS(3688), - [sym__str_single_quotes] = ACTIONS(3688), - [sym__str_back_ticks] = ACTIONS(3688), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3688), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3688), - [aux_sym_env_var_token1] = ACTIONS(3688), - [anon_sym_CARET] = ACTIONS(3688), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3690), + [aux_sym_shebang_repeat1] = STATE(2970), + [sym__newline] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3645), + [anon_sym_DOT_DOT_LT] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_true] = ACTIONS(3649), + [anon_sym_false] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(3661), + [aux_sym__val_number_token5] = ACTIONS(3661), + [aux_sym__val_number_token6] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [sym__str_single_quotes] = ACTIONS(3671), + [sym__str_back_ticks] = ACTIONS(3671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3679), }, [1187] = { - [sym_match_arm] = STATE(7258), - [sym_default_arm] = STATE(7258), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_expr_parenthesized] = STATE(4563), + [sym_val_range] = STATE(5174), + [sym__val_range] = STATE(7976), + [sym__val_range_with_end] = STATE(7528), + [sym__value] = STATE(5174), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(4787), + [sym_val_variable] = STATE(4617), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4712), + [sym__str_double_quotes] = STATE(4712), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym__unquoted_in_list] = STATE(4684), + [sym__unquoted_in_list_with_expr] = STATE(5174), + [sym__unquoted_anonymous_prefix] = STATE(6990), [sym_comment] = STATE(1187), - [aux_sym_shebang_repeat1] = STATE(1200), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3692), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(1186), + [sym__newline] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_DOT_DOT] = ACTIONS(3643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3645), + [anon_sym_DOT_DOT_LT] = ACTIONS(3645), + [anon_sym_null] = ACTIONS(3647), + [anon_sym_true] = ACTIONS(3649), + [anon_sym_false] = ACTIONS(3649), + [aux_sym__val_number_decimal_token1] = ACTIONS(3651), + [aux_sym__val_number_decimal_token2] = ACTIONS(3653), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(3661), + [aux_sym__val_number_token5] = ACTIONS(3661), + [aux_sym__val_number_token6] = ACTIONS(3661), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(3667), + [anon_sym_DQUOTE] = ACTIONS(3669), + [sym__str_single_quotes] = ACTIONS(3671), + [sym__str_back_ticks] = ACTIONS(3671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3679), }, [1188] = { - [sym_expr_parenthesized] = STATE(4537), - [sym_val_range] = STATE(5053), - [sym__val_range] = STATE(7896), - [sym__val_range_with_end] = STATE(7508), - [sym__value] = STATE(5053), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(4665), - [sym_val_variable] = STATE(4569), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4721), - [sym__str_double_quotes] = STATE(4721), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym__unquoted_in_list] = STATE(4659), - [sym__unquoted_in_list_with_expr] = STATE(5053), - [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_match_arm] = STATE(6935), + [sym_default_arm] = STATE(6935), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1188), - [aux_sym_shebang_repeat1] = STATE(3010), - [sym__newline] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3625), - [anon_sym_DOLLAR] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), - [anon_sym_DOT_DOT_LT] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_true] = ACTIONS(3637), - [anon_sym_false] = ACTIONS(3637), - [aux_sym__val_number_decimal_token1] = ACTIONS(3639), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3643), - [aux_sym__val_number_decimal_token4] = ACTIONS(3645), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(3649), - [aux_sym__val_number_token5] = ACTIONS(3649), - [aux_sym__val_number_token6] = ACTIONS(3649), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3657), - [sym__str_single_quotes] = ACTIONS(3659), - [sym__str_back_ticks] = ACTIONS(3659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3667), + [aux_sym_shebang_repeat1] = STATE(1199), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1189] = { - [sym_expr_parenthesized] = STATE(4537), - [sym_val_range] = STATE(5053), - [sym__val_range] = STATE(7896), - [sym__val_range_with_end] = STATE(7508), - [sym__value] = STATE(5053), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(4665), - [sym_val_variable] = STATE(4569), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4721), - [sym__str_double_quotes] = STATE(4721), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym__unquoted_in_list] = STATE(4659), - [sym__unquoted_in_list_with_expr] = STATE(5053), - [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_match_arm] = STATE(7330), + [sym_default_arm] = STATE(7330), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1189), - [aux_sym_shebang_repeat1] = STATE(1179), - [sym__newline] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3625), - [anon_sym_DOLLAR] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), - [anon_sym_DOT_DOT_LT] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_true] = ACTIONS(3637), - [anon_sym_false] = ACTIONS(3637), - [aux_sym__val_number_decimal_token1] = ACTIONS(3639), - [aux_sym__val_number_decimal_token2] = ACTIONS(3641), - [aux_sym__val_number_decimal_token3] = ACTIONS(3643), - [aux_sym__val_number_decimal_token4] = ACTIONS(3645), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(3649), - [aux_sym__val_number_token5] = ACTIONS(3649), - [aux_sym__val_number_token6] = ACTIONS(3649), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3657), - [sym__str_single_quotes] = ACTIONS(3659), - [sym__str_back_ticks] = ACTIONS(3659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3667), + [aux_sym_shebang_repeat1] = STATE(1194), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3727), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1190] = { - [sym_env_var] = STATE(7174), + [sym_match_arm] = STATE(7339), + [sym_default_arm] = STATE(7339), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), - [aux_sym_cmd_identifier_token1] = ACTIONS(3555), - [aux_sym_cmd_identifier_token2] = ACTIONS(3561), - [aux_sym_cmd_identifier_token3] = ACTIONS(3561), - [aux_sym_cmd_identifier_token4] = ACTIONS(3561), - [aux_sym_cmd_identifier_token5] = ACTIONS(3561), - [aux_sym_cmd_identifier_token6] = ACTIONS(3561), - [aux_sym_cmd_identifier_token7] = ACTIONS(3561), - [aux_sym_cmd_identifier_token8] = ACTIONS(3561), - [aux_sym_cmd_identifier_token9] = ACTIONS(3555), - [aux_sym_cmd_identifier_token10] = ACTIONS(3561), - [aux_sym_cmd_identifier_token11] = ACTIONS(3561), - [aux_sym_cmd_identifier_token12] = ACTIONS(3561), - [aux_sym_cmd_identifier_token13] = ACTIONS(3555), - [aux_sym_cmd_identifier_token14] = ACTIONS(3561), - [aux_sym_cmd_identifier_token15] = ACTIONS(3555), - [aux_sym_cmd_identifier_token16] = ACTIONS(3561), - [aux_sym_cmd_identifier_token17] = ACTIONS(3561), - [aux_sym_cmd_identifier_token18] = ACTIONS(3561), - [aux_sym_cmd_identifier_token19] = ACTIONS(3561), - [aux_sym_cmd_identifier_token20] = ACTIONS(3561), - [aux_sym_cmd_identifier_token21] = ACTIONS(3561), - [aux_sym_cmd_identifier_token22] = ACTIONS(3561), - [aux_sym_cmd_identifier_token23] = ACTIONS(3561), - [aux_sym_cmd_identifier_token24] = ACTIONS(3561), - [aux_sym_cmd_identifier_token25] = ACTIONS(3561), - [aux_sym_cmd_identifier_token26] = ACTIONS(3561), - [aux_sym_cmd_identifier_token27] = ACTIONS(3561), - [aux_sym_cmd_identifier_token28] = ACTIONS(3561), - [aux_sym_cmd_identifier_token29] = ACTIONS(3561), - [aux_sym_cmd_identifier_token30] = ACTIONS(3561), - [aux_sym_cmd_identifier_token31] = ACTIONS(3561), - [aux_sym_cmd_identifier_token32] = ACTIONS(3561), - [aux_sym_cmd_identifier_token33] = ACTIONS(3561), - [aux_sym_cmd_identifier_token34] = ACTIONS(3555), - [aux_sym_cmd_identifier_token35] = ACTIONS(3561), - [aux_sym_cmd_identifier_token36] = ACTIONS(3561), - [aux_sym_cmd_identifier_token37] = ACTIONS(3561), - [aux_sym_cmd_identifier_token38] = ACTIONS(3555), - [aux_sym_cmd_identifier_token39] = ACTIONS(3561), - [aux_sym_cmd_identifier_token40] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3561), - [anon_sym_DOLLAR] = ACTIONS(3555), - [anon_sym_DASH2] = ACTIONS(3555), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [aux_sym_expr_unary_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_LT] = ACTIONS(3561), - [anon_sym_null] = ACTIONS(3555), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3555), - [aux_sym__val_number_decimal_token2] = ACTIONS(3561), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3561), - [aux_sym__val_number_token1] = ACTIONS(3561), - [aux_sym__val_number_token2] = ACTIONS(3561), - [aux_sym__val_number_token3] = ACTIONS(3561), - [aux_sym__val_number_token4] = ACTIONS(3555), - [aux_sym__val_number_token5] = ACTIONS(3555), - [aux_sym__val_number_token6] = ACTIONS(3555), - [anon_sym_0b] = ACTIONS(3555), - [anon_sym_0o] = ACTIONS(3555), - [anon_sym_0x] = ACTIONS(3555), - [sym_val_date] = ACTIONS(3561), - [anon_sym_DQUOTE] = ACTIONS(3561), - [sym__str_single_quotes] = ACTIONS(3561), - [sym__str_back_ticks] = ACTIONS(3561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), - [aux_sym_env_var_token1] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3561), + [aux_sym_shebang_repeat1] = STATE(1198), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3729), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1191] = { + [sym_match_arm] = STATE(7192), + [sym_default_arm] = STATE(7192), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3699), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1200), + [aux_sym_ctrl_match_repeat1] = STATE(1237), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1192] = { [sym_comment] = STATE(1192), - [aux_sym_cmd_identifier_token1] = ACTIONS(1290), - [aux_sym_cmd_identifier_token2] = ACTIONS(1288), - [aux_sym_cmd_identifier_token3] = ACTIONS(1288), - [aux_sym_cmd_identifier_token4] = ACTIONS(1288), - [aux_sym_cmd_identifier_token5] = ACTIONS(1288), - [aux_sym_cmd_identifier_token6] = ACTIONS(1288), - [aux_sym_cmd_identifier_token7] = ACTIONS(1288), - [aux_sym_cmd_identifier_token8] = ACTIONS(1288), - [aux_sym_cmd_identifier_token9] = ACTIONS(1290), - [aux_sym_cmd_identifier_token10] = ACTIONS(1288), - [aux_sym_cmd_identifier_token11] = ACTIONS(1288), - [aux_sym_cmd_identifier_token12] = ACTIONS(1288), - [aux_sym_cmd_identifier_token13] = ACTIONS(1290), - [aux_sym_cmd_identifier_token14] = ACTIONS(1288), - [aux_sym_cmd_identifier_token15] = ACTIONS(1290), - [aux_sym_cmd_identifier_token16] = ACTIONS(1288), - [aux_sym_cmd_identifier_token17] = ACTIONS(1288), - [aux_sym_cmd_identifier_token18] = ACTIONS(1288), - [aux_sym_cmd_identifier_token19] = ACTIONS(1288), - [aux_sym_cmd_identifier_token20] = ACTIONS(1288), - [aux_sym_cmd_identifier_token21] = ACTIONS(1288), - [aux_sym_cmd_identifier_token22] = ACTIONS(1288), - [aux_sym_cmd_identifier_token23] = ACTIONS(1288), - [aux_sym_cmd_identifier_token24] = ACTIONS(1288), - [aux_sym_cmd_identifier_token25] = ACTIONS(1288), - [aux_sym_cmd_identifier_token26] = ACTIONS(1288), - [aux_sym_cmd_identifier_token27] = ACTIONS(1288), - [aux_sym_cmd_identifier_token28] = ACTIONS(1288), - [aux_sym_cmd_identifier_token29] = ACTIONS(1288), - [aux_sym_cmd_identifier_token30] = ACTIONS(1288), - [aux_sym_cmd_identifier_token31] = ACTIONS(1288), - [aux_sym_cmd_identifier_token32] = ACTIONS(1288), - [aux_sym_cmd_identifier_token33] = ACTIONS(1288), - [aux_sym_cmd_identifier_token34] = ACTIONS(1290), - [aux_sym_cmd_identifier_token35] = ACTIONS(1288), - [aux_sym_cmd_identifier_token36] = ACTIONS(1288), - [aux_sym_cmd_identifier_token37] = ACTIONS(1288), - [aux_sym_cmd_identifier_token38] = ACTIONS(1290), - [aux_sym_cmd_identifier_token39] = ACTIONS(1288), - [aux_sym_cmd_identifier_token40] = ACTIONS(1288), - [sym__newline] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1290), - [anon_sym_DASH2] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [aux_sym_expr_unary_token1] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_DOT_DOT_LT] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [aux_sym__val_number_decimal_token1] = ACTIONS(1290), - [aux_sym__val_number_decimal_token2] = ACTIONS(1288), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1288), - [aux_sym__val_number_token1] = ACTIONS(1288), - [aux_sym__val_number_token2] = ACTIONS(1288), - [aux_sym__val_number_token3] = ACTIONS(1288), - [aux_sym__val_number_token4] = ACTIONS(1290), - [aux_sym__val_number_token5] = ACTIONS(1290), - [aux_sym__val_number_token6] = ACTIONS(1290), - [anon_sym_0b] = ACTIONS(1290), - [anon_sym_0o] = ACTIONS(1290), - [anon_sym_0x] = ACTIONS(1290), - [sym_val_date] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym__str_single_quotes] = ACTIONS(1288), - [sym__str_back_ticks] = ACTIONS(1288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3735), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1193] = { [sym_comment] = STATE(1193), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3701), - [aux_sym__immediate_decimal_token2] = ACTIONS(3703), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3737), + [aux_sym__immediate_decimal_token2] = ACTIONS(3739), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(3), }, [1194] = { + [sym_match_arm] = STATE(7113), + [sym_default_arm] = STATE(7113), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3699), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3094), + [aux_sym_ctrl_match_repeat1] = STATE(1246), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1195] = { [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(1683), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3705), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3687), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3582), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3631), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1197] = { [sym_comment] = STATE(1197), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3709), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3741), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1198] = { - [sym_match_arm] = STATE(7038), - [sym_default_arm] = STATE(7038), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(7142), + [sym_default_arm] = STATE(7142), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1198), - [aux_sym_shebang_repeat1] = STATE(3071), - [aux_sym_ctrl_match_repeat1] = STATE(1248), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(3094), + [aux_sym_ctrl_match_repeat1] = STATE(1247), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1199] = { + [sym_match_arm] = STATE(7296), + [sym_default_arm] = STATE(7296), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1199), - [aux_sym_cmd_identifier_token1] = ACTIONS(3711), - [aux_sym_cmd_identifier_token2] = ACTIONS(3711), - [aux_sym_cmd_identifier_token3] = ACTIONS(3711), - [aux_sym_cmd_identifier_token4] = ACTIONS(3711), - [aux_sym_cmd_identifier_token5] = ACTIONS(3711), - [aux_sym_cmd_identifier_token6] = ACTIONS(3711), - [aux_sym_cmd_identifier_token7] = ACTIONS(3711), - [aux_sym_cmd_identifier_token8] = ACTIONS(3711), - [aux_sym_cmd_identifier_token9] = ACTIONS(3711), - [aux_sym_cmd_identifier_token10] = ACTIONS(3711), - [aux_sym_cmd_identifier_token11] = ACTIONS(3711), - [aux_sym_cmd_identifier_token12] = ACTIONS(3711), - [aux_sym_cmd_identifier_token13] = ACTIONS(3711), - [aux_sym_cmd_identifier_token14] = ACTIONS(3711), - [aux_sym_cmd_identifier_token15] = ACTIONS(3711), - [aux_sym_cmd_identifier_token16] = ACTIONS(3711), - [aux_sym_cmd_identifier_token17] = ACTIONS(3711), - [aux_sym_cmd_identifier_token18] = ACTIONS(3711), - [aux_sym_cmd_identifier_token19] = ACTIONS(3711), - [aux_sym_cmd_identifier_token20] = ACTIONS(3711), - [aux_sym_cmd_identifier_token21] = ACTIONS(3711), - [aux_sym_cmd_identifier_token22] = ACTIONS(3711), - [aux_sym_cmd_identifier_token23] = ACTIONS(3711), - [aux_sym_cmd_identifier_token24] = ACTIONS(3711), - [aux_sym_cmd_identifier_token25] = ACTIONS(3711), - [aux_sym_cmd_identifier_token26] = ACTIONS(3711), - [aux_sym_cmd_identifier_token27] = ACTIONS(3711), - [aux_sym_cmd_identifier_token28] = ACTIONS(3711), - [aux_sym_cmd_identifier_token29] = ACTIONS(3711), - [aux_sym_cmd_identifier_token30] = ACTIONS(3711), - [aux_sym_cmd_identifier_token31] = ACTIONS(3711), - [aux_sym_cmd_identifier_token32] = ACTIONS(3711), - [aux_sym_cmd_identifier_token33] = ACTIONS(3711), - [aux_sym_cmd_identifier_token34] = ACTIONS(3711), - [aux_sym_cmd_identifier_token35] = ACTIONS(3711), - [aux_sym_cmd_identifier_token36] = ACTIONS(3711), - [aux_sym_cmd_identifier_token37] = ACTIONS(3711), - [aux_sym_cmd_identifier_token38] = ACTIONS(3711), - [aux_sym_cmd_identifier_token39] = ACTIONS(3711), - [aux_sym_cmd_identifier_token40] = ACTIONS(3711), - [sym__space] = ACTIONS(3713), - [anon_sym_LBRACK] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_DOLLAR] = ACTIONS(3711), - [anon_sym_DASH2] = ACTIONS(3711), - [anon_sym_LBRACE] = ACTIONS(3711), - [anon_sym_DOT_DOT] = ACTIONS(3711), - [aux_sym_expr_unary_token1] = ACTIONS(3711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), - [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [aux_sym_shebang_repeat1] = STATE(3094), + [aux_sym_ctrl_match_repeat1] = STATE(1250), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), [anon_sym_null] = ACTIONS(3711), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3711), - [aux_sym__val_number_decimal_token2] = ACTIONS(3711), - [aux_sym__val_number_decimal_token3] = ACTIONS(3711), - [aux_sym__val_number_decimal_token4] = ACTIONS(3711), - [aux_sym__val_number_token1] = ACTIONS(3711), - [aux_sym__val_number_token2] = ACTIONS(3711), - [aux_sym__val_number_token3] = ACTIONS(3711), - [aux_sym__val_number_token4] = ACTIONS(3711), - [aux_sym__val_number_token5] = ACTIONS(3711), - [aux_sym__val_number_token6] = ACTIONS(3711), - [anon_sym_0b] = ACTIONS(3711), - [anon_sym_0o] = ACTIONS(3711), - [anon_sym_0x] = ACTIONS(3711), - [sym_val_date] = ACTIONS(3711), - [anon_sym_DQUOTE] = ACTIONS(3711), - [sym__str_single_quotes] = ACTIONS(3711), - [sym__str_back_ticks] = ACTIONS(3711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [aux_sym_env_var_token1] = ACTIONS(3711), - [anon_sym_CARET] = ACTIONS(3711), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1200] = { - [sym_match_arm] = STATE(7248), - [sym_default_arm] = STATE(7248), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(7311), + [sym_default_arm] = STATE(7311), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1200), - [aux_sym_shebang_repeat1] = STATE(3071), - [aux_sym_ctrl_match_repeat1] = STATE(1249), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(3094), + [aux_sym_ctrl_match_repeat1] = STATE(1233), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1201] = { [sym_comment] = STATE(1201), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3574), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3743), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1202] = { [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3715), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3745), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3747), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1203] = { - [sym_match_arm] = STATE(7228), - [sym_default_arm] = STATE(7228), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1203), - [aux_sym_shebang_repeat1] = STATE(3071), - [aux_sym_ctrl_match_repeat1] = STATE(1243), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3735), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1204] = { - [sym_match_arm] = STATE(7233), - [sym_default_arm] = STATE(7233), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1204), - [aux_sym_shebang_repeat1] = STATE(3071), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [sym__newline] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3749), + [aux_sym__immediate_decimal_token2] = ACTIONS(3751), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [1205] = { [sym_comment] = STATE(1205), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3717), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3753), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1206] = { - [sym_expr_parenthesized] = STATE(501), - [sym_val_range] = STATE(658), - [sym__val_range] = STATE(7732), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(658), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(534), - [sym_val_variable] = STATE(509), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(348), - [sym__val_number] = STATE(654), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(694), - [sym__str_double_quotes] = STATE(694), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(669), - [sym__inter_double_quotes] = STATE(671), - [sym_val_list] = STATE(631), - [sym_val_record] = STATE(631), - [sym_val_table] = STATE(631), - [sym_val_closure] = STATE(631), - [sym__unquoted_in_record] = STATE(542), - [sym__unquoted_in_record_with_expr] = STATE(658), - [sym__unquoted_anonymous_prefix] = STATE(6895), [sym_comment] = STATE(1206), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(3723), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [anon_sym_null] = ACTIONS(3729), - [anon_sym_true] = ACTIONS(3731), - [anon_sym_false] = ACTIONS(3731), - [aux_sym__val_number_decimal_token1] = ACTIONS(3733), - [aux_sym__val_number_decimal_token2] = ACTIONS(3735), - [aux_sym__val_number_decimal_token3] = ACTIONS(3737), - [aux_sym__val_number_decimal_token4] = ACTIONS(3739), - [aux_sym__val_number_token1] = ACTIONS(3741), - [aux_sym__val_number_token2] = ACTIONS(3741), - [aux_sym__val_number_token3] = ACTIONS(3741), - [aux_sym__val_number_token4] = ACTIONS(3743), - [aux_sym__val_number_token5] = ACTIONS(3743), - [aux_sym__val_number_token6] = ACTIONS(3743), - [anon_sym_0b] = ACTIONS(3745), - [anon_sym_0o] = ACTIONS(3747), - [anon_sym_0x] = ACTIONS(3747), - [sym_val_date] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3751), - [sym__str_single_quotes] = ACTIONS(3753), - [sym__str_back_ticks] = ACTIONS(3753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3765), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(3767), - [aux_sym__immediate_decimal_token2] = ACTIONS(3769), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(3), }, [1208] = { [sym_comment] = STATE(1208), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1800), + [anon_sym_STAR_STAR] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_mod] = ACTIONS(3151), + [anon_sym_SLASH_SLASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_bit_DASHshl] = ACTIONS(3151), + [anon_sym_bit_DASHshr] = ACTIONS(3151), + [anon_sym_EQ_TILDE] = ACTIONS(3151), + [anon_sym_BANG_TILDE] = ACTIONS(3151), + [anon_sym_bit_DASHand] = ACTIONS(3151), + [anon_sym_bit_DASHxor] = ACTIONS(3151), + [anon_sym_bit_DASHor] = ACTIONS(3151), + [anon_sym_and] = ACTIONS(3151), + [anon_sym_xor] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_not_DASHin] = ACTIONS(3151), + [anon_sym_starts_DASHwith] = ACTIONS(3151), + [anon_sym_ends_DASHwith] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_GT_EQ] = ACTIONS(3151), + [aux_sym_cmd_identifier_token41] = ACTIONS(3155), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3157), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3159), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3159), + [sym_filesize_unit] = ACTIONS(3755), + [sym_duration_unit] = ACTIONS(3757), [anon_sym_POUND] = ACTIONS(3), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1719), - [anon_sym_STAR_STAR] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_mod] = ACTIONS(3049), - [anon_sym_SLASH_SLASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_bit_DASHshl] = ACTIONS(3049), - [anon_sym_bit_DASHshr] = ACTIONS(3049), - [anon_sym_EQ_TILDE] = ACTIONS(3049), - [anon_sym_BANG_TILDE] = ACTIONS(3049), - [anon_sym_bit_DASHand] = ACTIONS(3049), - [anon_sym_bit_DASHxor] = ACTIONS(3049), - [anon_sym_bit_DASHor] = ACTIONS(3049), - [anon_sym_and] = ACTIONS(3049), - [anon_sym_xor] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_not_DASHin] = ACTIONS(3049), - [anon_sym_starts_DASHwith] = ACTIONS(3049), - [anon_sym_ends_DASHwith] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3049), - [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(3055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), - [sym_filesize_unit] = ACTIONS(3771), - [sym_duration_unit] = ACTIONS(3773), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1210] = { [sym_comment] = STATE(1210), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(3759), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1211] = { [sym_comment] = STATE(1211), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1212] = { - [sym_expr_parenthesized] = STATE(6041), - [sym_val_range] = STATE(7687), - [sym__val_range] = STATE(7792), - [sym__val_range_with_end] = STATE(7576), - [sym__value] = STATE(7687), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6259), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5293), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_record] = STATE(6805), - [sym__unquoted_in_record_with_expr] = STATE(7687), - [sym__unquoted_anonymous_prefix] = STATE(7272), [sym_comment] = STATE(1212), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3777), - [anon_sym_DOT_DOT_LT] = ACTIONS(3777), - [anon_sym_null] = ACTIONS(3779), - [anon_sym_true] = ACTIONS(3781), - [anon_sym_false] = ACTIONS(3781), - [aux_sym__val_number_decimal_token1] = ACTIONS(3783), - [aux_sym__val_number_decimal_token2] = ACTIONS(3785), - [aux_sym__val_number_decimal_token3] = ACTIONS(3787), - [aux_sym__val_number_decimal_token4] = ACTIONS(3789), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3791), - [aux_sym__val_number_token5] = ACTIONS(3791), - [aux_sym__val_number_token6] = ACTIONS(3791), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3795), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3761), + [sym_duration_unit] = ACTIONS(3763), + [anon_sym_POUND] = ACTIONS(3), }, [1213] = { [sym_comment] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(1683), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3747), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1214] = { [sym_comment] = STATE(1214), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3797), - [sym_duration_unit] = ACTIONS(3799), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1215] = { [sym_comment] = STATE(1215), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [1216] = { + [sym_expr_parenthesized] = STATE(570), + [sym_val_range] = STATE(755), + [sym__val_range] = STATE(7946), + [sym__val_range_with_end] = STATE(7548), + [sym__value] = STATE(755), + [sym_val_nothing] = STATE(756), + [sym_val_bool] = STATE(616), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(756), + [sym__val_number_decimal] = STATE(385), + [sym__val_number] = STATE(735), + [sym_val_duration] = STATE(756), + [sym_val_filesize] = STATE(756), + [sym_val_binary] = STATE(756), + [sym_val_string] = STATE(756), + [sym__raw_str] = STATE(758), + [sym__str_double_quotes] = STATE(758), + [sym_val_interpolated] = STATE(756), + [sym__inter_single_quotes] = STATE(738), + [sym__inter_double_quotes] = STATE(740), + [sym_val_list] = STATE(756), + [sym_val_record] = STATE(756), + [sym_val_table] = STATE(756), + [sym_val_closure] = STATE(756), + [sym__unquoted_in_record] = STATE(600), + [sym__unquoted_in_record_with_expr] = STATE(755), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3769), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3775), + [anon_sym_DOT_DOT_LT] = ACTIONS(3775), + [anon_sym_null] = ACTIONS(3777), + [anon_sym_true] = ACTIONS(3779), + [anon_sym_false] = ACTIONS(3779), + [aux_sym__val_number_decimal_token1] = ACTIONS(3781), + [aux_sym__val_number_decimal_token2] = ACTIONS(3783), + [aux_sym__val_number_decimal_token3] = ACTIONS(3785), + [aux_sym__val_number_decimal_token4] = ACTIONS(3787), + [aux_sym__val_number_token1] = ACTIONS(3789), + [aux_sym__val_number_token2] = ACTIONS(3789), + [aux_sym__val_number_token3] = ACTIONS(3789), + [aux_sym__val_number_token4] = ACTIONS(3791), + [aux_sym__val_number_token5] = ACTIONS(3791), + [aux_sym__val_number_token6] = ACTIONS(3791), + [anon_sym_0b] = ACTIONS(3793), + [anon_sym_0o] = ACTIONS(3795), + [anon_sym_0x] = ACTIONS(3795), + [sym_val_date] = ACTIONS(3797), + [anon_sym_DQUOTE] = ACTIONS(3799), + [sym__str_single_quotes] = ACTIONS(3801), + [sym__str_back_ticks] = ACTIONS(3801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3805), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3811), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3813), }, [1217] = { + [sym_expr_parenthesized] = STATE(571), + [sym_val_range] = STATE(759), + [sym__val_range] = STATE(7946), + [sym__val_range_with_end] = STATE(7548), + [sym__value] = STATE(759), + [sym_val_nothing] = STATE(756), + [sym_val_bool] = STATE(616), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(756), + [sym__val_number_decimal] = STATE(385), + [sym__val_number] = STATE(735), + [sym_val_duration] = STATE(756), + [sym_val_filesize] = STATE(756), + [sym_val_binary] = STATE(756), + [sym_val_string] = STATE(756), + [sym__raw_str] = STATE(758), + [sym__str_double_quotes] = STATE(758), + [sym_val_interpolated] = STATE(756), + [sym__inter_single_quotes] = STATE(738), + [sym__inter_double_quotes] = STATE(740), + [sym_val_list] = STATE(756), + [sym_val_record] = STATE(756), + [sym_val_table] = STATE(756), + [sym_val_closure] = STATE(756), + [sym__unquoted_in_record] = STATE(603), + [sym__unquoted_in_record_with_expr] = STATE(759), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1217), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3709), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_LPAREN] = ACTIONS(3767), + [anon_sym_DOLLAR] = ACTIONS(3769), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_DOT_DOT] = ACTIONS(3773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3775), + [anon_sym_DOT_DOT_LT] = ACTIONS(3775), + [anon_sym_null] = ACTIONS(3777), + [anon_sym_true] = ACTIONS(3779), + [anon_sym_false] = ACTIONS(3779), + [aux_sym__val_number_decimal_token1] = ACTIONS(3781), + [aux_sym__val_number_decimal_token2] = ACTIONS(3783), + [aux_sym__val_number_decimal_token3] = ACTIONS(3785), + [aux_sym__val_number_decimal_token4] = ACTIONS(3787), + [aux_sym__val_number_token1] = ACTIONS(3789), + [aux_sym__val_number_token2] = ACTIONS(3789), + [aux_sym__val_number_token3] = ACTIONS(3789), + [aux_sym__val_number_token4] = ACTIONS(3791), + [aux_sym__val_number_token5] = ACTIONS(3791), + [aux_sym__val_number_token6] = ACTIONS(3791), + [anon_sym_0b] = ACTIONS(3793), + [anon_sym_0o] = ACTIONS(3795), + [anon_sym_0x] = ACTIONS(3795), + [sym_val_date] = ACTIONS(3797), + [anon_sym_DQUOTE] = ACTIONS(3799), + [sym__str_single_quotes] = ACTIONS(3801), + [sym__str_back_ticks] = ACTIONS(3801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3805), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3811), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3813), }, [1218] = { [sym_comment] = STATE(1218), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(3815), + [sym_duration_unit] = ACTIONS(3817), [anon_sym_POUND] = ACTIONS(3), }, [1219] = { + [sym_expr_parenthesized] = STATE(6065), + [sym_val_range] = STATE(7589), + [sym__val_range] = STATE(7825), + [sym__val_range_with_end] = STATE(7631), + [sym__value] = STATE(7589), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6717), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5280), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_record] = STATE(6386), + [sym__unquoted_in_record_with_expr] = STATE(7589), + [sym__unquoted_anonymous_prefix] = STATE(6857), [sym_comment] = STATE(1219), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3821), + [anon_sym_DOT_DOT_LT] = ACTIONS(3821), + [anon_sym_null] = ACTIONS(3823), + [anon_sym_true] = ACTIONS(3825), + [anon_sym_false] = ACTIONS(3825), + [aux_sym__val_number_decimal_token1] = ACTIONS(3827), + [aux_sym__val_number_decimal_token2] = ACTIONS(3829), + [aux_sym__val_number_decimal_token3] = ACTIONS(3831), + [aux_sym__val_number_decimal_token4] = ACTIONS(3833), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3835), + [aux_sym__val_number_token5] = ACTIONS(3835), + [aux_sym__val_number_token6] = ACTIONS(3835), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3839), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [1220] = { [sym_comment] = STATE(1220), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1221] = { [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(1575), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(3841), + [aux_sym__immediate_decimal_token2] = ACTIONS(3843), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(3), }, [1222] = { - [sym_expr_parenthesized] = STATE(502), - [sym_val_range] = STATE(673), - [sym__val_range] = STATE(7732), - [sym__val_range_with_end] = STATE(7584), - [sym__value] = STATE(673), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(534), - [sym_val_variable] = STATE(509), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(348), - [sym__val_number] = STATE(654), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(694), - [sym__str_double_quotes] = STATE(694), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(669), - [sym__inter_double_quotes] = STATE(671), - [sym_val_list] = STATE(631), - [sym_val_record] = STATE(631), - [sym_val_table] = STATE(631), - [sym_val_closure] = STATE(631), - [sym__unquoted_in_record] = STATE(538), - [sym__unquoted_in_record_with_expr] = STATE(673), - [sym__unquoted_anonymous_prefix] = STATE(6895), + [sym_expr_parenthesized] = STATE(526), + [sym_val_range] = STATE(711), + [sym__val_range] = STATE(7827), + [sym__val_range_with_end] = STATE(7594), + [sym__value] = STATE(711), + [sym_val_nothing] = STATE(681), + [sym_val_bool] = STATE(555), + [sym_val_variable] = STATE(495), + [sym_val_number] = STATE(681), + [sym__val_number_decimal] = STATE(358), + [sym__val_number] = STATE(672), + [sym_val_duration] = STATE(681), + [sym_val_filesize] = STATE(681), + [sym_val_binary] = STATE(681), + [sym_val_string] = STATE(681), + [sym__raw_str] = STATE(630), + [sym__str_double_quotes] = STATE(630), + [sym_val_interpolated] = STATE(681), + [sym__inter_single_quotes] = STATE(631), + [sym__inter_double_quotes] = STATE(634), + [sym_val_list] = STATE(681), + [sym_val_record] = STATE(681), + [sym_val_table] = STATE(681), + [sym_val_closure] = STATE(681), + [sym__unquoted_in_record] = STATE(574), + [sym__unquoted_in_record_with_expr] = STATE(711), + [sym__unquoted_anonymous_prefix] = STATE(7023), [sym_comment] = STATE(1222), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3721), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(3723), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [anon_sym_null] = ACTIONS(3729), - [anon_sym_true] = ACTIONS(3731), - [anon_sym_false] = ACTIONS(3731), - [aux_sym__val_number_decimal_token1] = ACTIONS(3733), - [aux_sym__val_number_decimal_token2] = ACTIONS(3735), - [aux_sym__val_number_decimal_token3] = ACTIONS(3737), - [aux_sym__val_number_decimal_token4] = ACTIONS(3739), - [aux_sym__val_number_token1] = ACTIONS(3741), - [aux_sym__val_number_token2] = ACTIONS(3741), - [aux_sym__val_number_token3] = ACTIONS(3741), - [aux_sym__val_number_token4] = ACTIONS(3743), - [aux_sym__val_number_token5] = ACTIONS(3743), - [aux_sym__val_number_token6] = ACTIONS(3743), - [anon_sym_0b] = ACTIONS(3745), - [anon_sym_0o] = ACTIONS(3747), - [anon_sym_0x] = ACTIONS(3747), - [sym_val_date] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3751), - [sym__str_single_quotes] = ACTIONS(3753), - [sym__str_back_ticks] = ACTIONS(3753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3765), + [anon_sym_LBRACK] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(3849), + [anon_sym_DOT_DOT] = ACTIONS(3851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3853), + [anon_sym_DOT_DOT_LT] = ACTIONS(3853), + [anon_sym_null] = ACTIONS(3855), + [anon_sym_true] = ACTIONS(3857), + [anon_sym_false] = ACTIONS(3857), + [aux_sym__val_number_decimal_token1] = ACTIONS(3859), + [aux_sym__val_number_decimal_token2] = ACTIONS(3861), + [aux_sym__val_number_decimal_token3] = ACTIONS(3863), + [aux_sym__val_number_decimal_token4] = ACTIONS(3865), + [aux_sym__val_number_token1] = ACTIONS(3867), + [aux_sym__val_number_token2] = ACTIONS(3867), + [aux_sym__val_number_token3] = ACTIONS(3867), + [aux_sym__val_number_token4] = ACTIONS(3869), + [aux_sym__val_number_token5] = ACTIONS(3869), + [aux_sym__val_number_token6] = ACTIONS(3869), + [anon_sym_0b] = ACTIONS(3871), + [anon_sym_0o] = ACTIONS(3873), + [anon_sym_0x] = ACTIONS(3873), + [sym_val_date] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3877), + [sym__str_single_quotes] = ACTIONS(3879), + [sym__str_back_ticks] = ACTIONS(3879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3883), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3885), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3887), }, [1223] = { [sym_comment] = STATE(1223), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [1224] = { [sym_comment] = STATE(1224), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1225] = { + [sym_expr_parenthesized] = STATE(529), + [sym_val_range] = STATE(629), + [sym__val_range] = STATE(7827), + [sym__val_range_with_end] = STATE(7594), + [sym__value] = STATE(629), + [sym_val_nothing] = STATE(681), + [sym_val_bool] = STATE(555), + [sym_val_variable] = STATE(495), + [sym_val_number] = STATE(681), + [sym__val_number_decimal] = STATE(358), + [sym__val_number] = STATE(672), + [sym_val_duration] = STATE(681), + [sym_val_filesize] = STATE(681), + [sym_val_binary] = STATE(681), + [sym_val_string] = STATE(681), + [sym__raw_str] = STATE(630), + [sym__str_double_quotes] = STATE(630), + [sym_val_interpolated] = STATE(681), + [sym__inter_single_quotes] = STATE(631), + [sym__inter_double_quotes] = STATE(634), + [sym_val_list] = STATE(681), + [sym_val_record] = STATE(681), + [sym_val_table] = STATE(681), + [sym_val_closure] = STATE(681), + [sym__unquoted_in_record] = STATE(577), + [sym__unquoted_in_record_with_expr] = STATE(629), + [sym__unquoted_anonymous_prefix] = STATE(7023), [sym_comment] = STATE(1225), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(3801), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3845), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(3849), + [anon_sym_DOT_DOT] = ACTIONS(3851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3853), + [anon_sym_DOT_DOT_LT] = ACTIONS(3853), + [anon_sym_null] = ACTIONS(3855), + [anon_sym_true] = ACTIONS(3857), + [anon_sym_false] = ACTIONS(3857), + [aux_sym__val_number_decimal_token1] = ACTIONS(3859), + [aux_sym__val_number_decimal_token2] = ACTIONS(3861), + [aux_sym__val_number_decimal_token3] = ACTIONS(3863), + [aux_sym__val_number_decimal_token4] = ACTIONS(3865), + [aux_sym__val_number_token1] = ACTIONS(3867), + [aux_sym__val_number_token2] = ACTIONS(3867), + [aux_sym__val_number_token3] = ACTIONS(3867), + [aux_sym__val_number_token4] = ACTIONS(3869), + [aux_sym__val_number_token5] = ACTIONS(3869), + [aux_sym__val_number_token6] = ACTIONS(3869), + [anon_sym_0b] = ACTIONS(3871), + [anon_sym_0o] = ACTIONS(3873), + [anon_sym_0x] = ACTIONS(3873), + [sym_val_date] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3877), + [sym__str_single_quotes] = ACTIONS(3879), + [sym__str_back_ticks] = ACTIONS(3879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3883), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3885), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3887), }, [1226] = { + [sym_expr_parenthesized] = STATE(6094), + [sym_val_range] = STATE(7615), + [sym__val_range] = STATE(7825), + [sym__val_range_with_end] = STATE(7631), + [sym__value] = STATE(7615), + [sym_val_nothing] = STATE(7168), + [sym_val_bool] = STATE(6717), + [sym_val_variable] = STATE(5979), + [sym_val_number] = STATE(7168), + [sym__val_number_decimal] = STATE(5280), + [sym__val_number] = STATE(7244), + [sym_val_duration] = STATE(7168), + [sym_val_filesize] = STATE(7168), + [sym_val_binary] = STATE(7168), + [sym_val_string] = STATE(7168), + [sym__raw_str] = STATE(5550), + [sym__str_double_quotes] = STATE(5550), + [sym_val_interpolated] = STATE(7168), + [sym__inter_single_quotes] = STATE(6854), + [sym__inter_double_quotes] = STATE(6856), + [sym_val_list] = STATE(7168), + [sym_val_record] = STATE(7168), + [sym_val_table] = STATE(7168), + [sym_val_closure] = STATE(7168), + [sym__unquoted_in_record] = STATE(6703), + [sym__unquoted_in_record_with_expr] = STATE(7615), + [sym__unquoted_anonymous_prefix] = STATE(6857), [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(3803), - [sym_duration_unit] = ACTIONS(3805), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_DOT_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3821), + [anon_sym_DOT_DOT_LT] = ACTIONS(3821), + [anon_sym_null] = ACTIONS(3823), + [anon_sym_true] = ACTIONS(3825), + [anon_sym_false] = ACTIONS(3825), + [aux_sym__val_number_decimal_token1] = ACTIONS(3827), + [aux_sym__val_number_decimal_token2] = ACTIONS(3829), + [aux_sym__val_number_decimal_token3] = ACTIONS(3831), + [aux_sym__val_number_decimal_token4] = ACTIONS(3833), + [aux_sym__val_number_token1] = ACTIONS(3201), + [aux_sym__val_number_token2] = ACTIONS(3201), + [aux_sym__val_number_token3] = ACTIONS(3201), + [aux_sym__val_number_token4] = ACTIONS(3835), + [aux_sym__val_number_token5] = ACTIONS(3835), + [aux_sym__val_number_token6] = ACTIONS(3835), + [anon_sym_0b] = ACTIONS(3205), + [anon_sym_0o] = ACTIONS(3207), + [anon_sym_0x] = ACTIONS(3207), + [sym_val_date] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym__str_single_quotes] = ACTIONS(3213), + [sym__str_back_ticks] = ACTIONS(3213), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(3807), + [anon_sym_out_GT] = ACTIONS(3807), + [anon_sym_e_GT] = ACTIONS(3807), + [anon_sym_o_GT] = ACTIONS(3807), + [anon_sym_err_PLUSout_GT] = ACTIONS(3807), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3807), + [anon_sym_o_PLUSe_GT] = ACTIONS(3807), + [anon_sym_e_PLUSo_GT] = ACTIONS(3807), + [anon_sym_err_GT_GT] = ACTIONS(3809), + [anon_sym_out_GT_GT] = ACTIONS(3809), + [anon_sym_e_GT_GT] = ACTIONS(3809), + [anon_sym_o_GT_GT] = ACTIONS(3809), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3809), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3809), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3809), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3809), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3839), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3217), }, [1227] = { - [sym_expr_parenthesized] = STATE(562), - [sym_val_range] = STATE(696), - [sym__val_range] = STATE(7967), - [sym__val_range_with_end] = STATE(7545), - [sym__value] = STATE(696), - [sym_val_nothing] = STATE(719), - [sym_val_bool] = STATE(594), - [sym_val_variable] = STATE(555), - [sym_val_number] = STATE(719), - [sym__val_number_decimal] = STATE(366), - [sym__val_number] = STATE(754), - [sym_val_duration] = STATE(719), - [sym_val_filesize] = STATE(719), - [sym_val_binary] = STATE(719), - [sym_val_string] = STATE(719), - [sym__raw_str] = STATE(758), - [sym__str_double_quotes] = STATE(758), - [sym_val_interpolated] = STATE(719), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(719), - [sym_val_record] = STATE(719), - [sym_val_table] = STATE(719), - [sym_val_closure] = STATE(719), - [sym__unquoted_in_record] = STATE(602), - [sym__unquoted_in_record_with_expr] = STATE(696), - [sym__unquoted_anonymous_prefix] = STATE(7030), [sym_comment] = STATE(1227), - [anon_sym_LBRACK] = ACTIONS(3807), - [anon_sym_LPAREN] = ACTIONS(3809), - [anon_sym_DOLLAR] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3813), - [anon_sym_DOT_DOT] = ACTIONS(3815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3817), - [anon_sym_DOT_DOT_LT] = ACTIONS(3817), - [anon_sym_null] = ACTIONS(3819), - [anon_sym_true] = ACTIONS(3821), - [anon_sym_false] = ACTIONS(3821), - [aux_sym__val_number_decimal_token1] = ACTIONS(3823), - [aux_sym__val_number_decimal_token2] = ACTIONS(3825), - [aux_sym__val_number_decimal_token3] = ACTIONS(3827), - [aux_sym__val_number_decimal_token4] = ACTIONS(3829), - [aux_sym__val_number_token1] = ACTIONS(3831), - [aux_sym__val_number_token2] = ACTIONS(3831), - [aux_sym__val_number_token3] = ACTIONS(3831), - [aux_sym__val_number_token4] = ACTIONS(3833), - [aux_sym__val_number_token5] = ACTIONS(3833), - [aux_sym__val_number_token6] = ACTIONS(3833), - [anon_sym_0b] = ACTIONS(3835), - [anon_sym_0o] = ACTIONS(3837), - [anon_sym_0x] = ACTIONS(3837), - [sym_val_date] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3841), - [sym__str_single_quotes] = ACTIONS(3843), - [sym__str_back_ticks] = ACTIONS(3843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3849), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3851), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [1228] = { - [sym_expr_parenthesized] = STATE(6056), - [sym_val_range] = STATE(7574), - [sym__val_range] = STATE(7792), - [sym__val_range_with_end] = STATE(7576), - [sym__value] = STATE(7574), - [sym_val_nothing] = STATE(7142), - [sym_val_bool] = STATE(6259), - [sym_val_variable] = STATE(5790), - [sym_val_number] = STATE(7142), - [sym__val_number_decimal] = STATE(5293), - [sym__val_number] = STATE(6878), - [sym_val_duration] = STATE(7142), - [sym_val_filesize] = STATE(7142), - [sym_val_binary] = STATE(7142), - [sym_val_string] = STATE(7142), - [sym__raw_str] = STATE(5625), - [sym__str_double_quotes] = STATE(5625), - [sym_val_interpolated] = STATE(7142), - [sym__inter_single_quotes] = STATE(7238), - [sym__inter_double_quotes] = STATE(7239), - [sym_val_list] = STATE(7142), - [sym_val_record] = STATE(7142), - [sym_val_table] = STATE(7142), - [sym_val_closure] = STATE(7142), - [sym__unquoted_in_record] = STATE(6772), - [sym__unquoted_in_record_with_expr] = STATE(7574), - [sym__unquoted_anonymous_prefix] = STATE(7272), [sym_comment] = STATE(1228), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3777), - [anon_sym_DOT_DOT_LT] = ACTIONS(3777), - [anon_sym_null] = ACTIONS(3779), - [anon_sym_true] = ACTIONS(3781), - [anon_sym_false] = ACTIONS(3781), - [aux_sym__val_number_decimal_token1] = ACTIONS(3783), - [aux_sym__val_number_decimal_token2] = ACTIONS(3785), - [aux_sym__val_number_decimal_token3] = ACTIONS(3787), - [aux_sym__val_number_decimal_token4] = ACTIONS(3789), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3791), - [aux_sym__val_number_token5] = ACTIONS(3791), - [aux_sym__val_number_token6] = ACTIONS(3791), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3795), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(3889), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3891), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1229] = { - [sym_expr_parenthesized] = STATE(563), - [sym_val_range] = STATE(698), - [sym__val_range] = STATE(7967), - [sym__val_range_with_end] = STATE(7545), - [sym__value] = STATE(698), - [sym_val_nothing] = STATE(719), - [sym_val_bool] = STATE(594), - [sym_val_variable] = STATE(555), - [sym_val_number] = STATE(719), - [sym__val_number_decimal] = STATE(366), - [sym__val_number] = STATE(754), - [sym_val_duration] = STATE(719), - [sym_val_filesize] = STATE(719), - [sym_val_binary] = STATE(719), - [sym_val_string] = STATE(719), - [sym__raw_str] = STATE(758), - [sym__str_double_quotes] = STATE(758), - [sym_val_interpolated] = STATE(719), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(719), - [sym_val_record] = STATE(719), - [sym_val_table] = STATE(719), - [sym_val_closure] = STATE(719), - [sym__unquoted_in_record] = STATE(604), - [sym__unquoted_in_record_with_expr] = STATE(698), - [sym__unquoted_anonymous_prefix] = STATE(7030), [sym_comment] = STATE(1229), - [anon_sym_LBRACK] = ACTIONS(3807), - [anon_sym_LPAREN] = ACTIONS(3809), - [anon_sym_DOLLAR] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3813), - [anon_sym_DOT_DOT] = ACTIONS(3815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3817), - [anon_sym_DOT_DOT_LT] = ACTIONS(3817), - [anon_sym_null] = ACTIONS(3819), - [anon_sym_true] = ACTIONS(3821), - [anon_sym_false] = ACTIONS(3821), - [aux_sym__val_number_decimal_token1] = ACTIONS(3823), - [aux_sym__val_number_decimal_token2] = ACTIONS(3825), - [aux_sym__val_number_decimal_token3] = ACTIONS(3827), - [aux_sym__val_number_decimal_token4] = ACTIONS(3829), - [aux_sym__val_number_token1] = ACTIONS(3831), - [aux_sym__val_number_token2] = ACTIONS(3831), - [aux_sym__val_number_token3] = ACTIONS(3831), - [aux_sym__val_number_token4] = ACTIONS(3833), - [aux_sym__val_number_token5] = ACTIONS(3833), - [aux_sym__val_number_token6] = ACTIONS(3833), - [anon_sym_0b] = ACTIONS(3835), - [anon_sym_0o] = ACTIONS(3837), - [anon_sym_0x] = ACTIONS(3837), - [sym_val_date] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(3841), - [sym__str_single_quotes] = ACTIONS(3843), - [sym__str_back_ticks] = ACTIONS(3843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), - [anon_sym_err_GT] = ACTIONS(3759), - [anon_sym_out_GT] = ACTIONS(3759), - [anon_sym_e_GT] = ACTIONS(3759), - [anon_sym_o_GT] = ACTIONS(3759), - [anon_sym_err_PLUSout_GT] = ACTIONS(3759), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), - [anon_sym_o_PLUSe_GT] = ACTIONS(3759), - [anon_sym_e_PLUSo_GT] = ACTIONS(3759), - [anon_sym_err_GT_GT] = ACTIONS(3761), - [anon_sym_out_GT_GT] = ACTIONS(3761), - [anon_sym_e_GT_GT] = ACTIONS(3761), - [anon_sym_o_GT_GT] = ACTIONS(3761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3849), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3851), + [ts_builtin_sym_end] = ACTIONS(1822), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(3), }, [1230] = { [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(3853), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3855), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [ts_builtin_sym_end] = ACTIONS(1868), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [1231] = { - [sym_match_arm] = STATE(7552), - [sym_default_arm] = STATE(7552), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(7113), + [sym_default_arm] = STATE(7113), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1231), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3860), - [anon_sym_DOLLAR] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym__] = ACTIONS(3869), - [anon_sym_DOT_DOT] = ACTIONS(3872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3875), - [anon_sym_DOT_DOT_LT] = ACTIONS(3875), - [anon_sym_null] = ACTIONS(3878), - [anon_sym_true] = ACTIONS(3881), - [anon_sym_false] = ACTIONS(3881), - [aux_sym__val_number_decimal_token1] = ACTIONS(3884), - [aux_sym__val_number_decimal_token2] = ACTIONS(3887), - [aux_sym__val_number_decimal_token3] = ACTIONS(3890), - [aux_sym__val_number_decimal_token4] = ACTIONS(3893), - [aux_sym__val_number_token1] = ACTIONS(3896), - [aux_sym__val_number_token2] = ACTIONS(3896), - [aux_sym__val_number_token3] = ACTIONS(3896), - [aux_sym__val_number_token4] = ACTIONS(3899), - [aux_sym__val_number_token5] = ACTIONS(3899), - [aux_sym__val_number_token6] = ACTIONS(3899), - [anon_sym_0b] = ACTIONS(3902), - [anon_sym_0o] = ACTIONS(3905), - [anon_sym_0x] = ACTIONS(3905), - [sym_val_date] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3911), - [sym__str_single_quotes] = ACTIONS(3914), - [sym__str_back_ticks] = ACTIONS(3914), - [anon_sym_err_GT] = ACTIONS(3917), - [anon_sym_out_GT] = ACTIONS(3917), - [anon_sym_e_GT] = ACTIONS(3917), - [anon_sym_o_GT] = ACTIONS(3917), - [anon_sym_err_PLUSout_GT] = ACTIONS(3917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3917), - [anon_sym_o_PLUSe_GT] = ACTIONS(3917), - [anon_sym_e_PLUSo_GT] = ACTIONS(3917), - [anon_sym_err_GT_GT] = ACTIONS(3920), - [anon_sym_out_GT_GT] = ACTIONS(3920), - [anon_sym_e_GT_GT] = ACTIONS(3920), - [anon_sym_o_GT_GT] = ACTIONS(3920), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3920), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3920), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3920), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3920), - [aux_sym_unquoted_token1] = ACTIONS(3923), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3926), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1232] = { + [sym_match_arm] = STATE(7471), + [sym_default_arm] = STATE(7471), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1232), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3855), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3896), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3902), + [anon_sym__] = ACTIONS(3905), + [anon_sym_DOT_DOT] = ACTIONS(3908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3911), + [anon_sym_DOT_DOT_LT] = ACTIONS(3911), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_true] = ACTIONS(3917), + [anon_sym_false] = ACTIONS(3917), + [aux_sym__val_number_decimal_token1] = ACTIONS(3920), + [aux_sym__val_number_decimal_token2] = ACTIONS(3923), + [aux_sym__val_number_decimal_token3] = ACTIONS(3926), + [aux_sym__val_number_decimal_token4] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3932), + [aux_sym__val_number_token2] = ACTIONS(3932), + [aux_sym__val_number_token3] = ACTIONS(3932), + [aux_sym__val_number_token4] = ACTIONS(3935), + [aux_sym__val_number_token5] = ACTIONS(3935), + [aux_sym__val_number_token6] = ACTIONS(3935), + [anon_sym_0b] = ACTIONS(3938), + [anon_sym_0o] = ACTIONS(3941), + [anon_sym_0x] = ACTIONS(3941), + [sym_val_date] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3947), + [sym__str_single_quotes] = ACTIONS(3950), + [sym__str_back_ticks] = ACTIONS(3950), + [anon_sym_err_GT] = ACTIONS(3953), + [anon_sym_out_GT] = ACTIONS(3953), + [anon_sym_e_GT] = ACTIONS(3953), + [anon_sym_o_GT] = ACTIONS(3953), + [anon_sym_err_PLUSout_GT] = ACTIONS(3953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3953), + [anon_sym_o_PLUSe_GT] = ACTIONS(3953), + [anon_sym_e_PLUSo_GT] = ACTIONS(3953), + [anon_sym_err_GT_GT] = ACTIONS(3956), + [anon_sym_out_GT_GT] = ACTIONS(3956), + [anon_sym_e_GT_GT] = ACTIONS(3956), + [anon_sym_o_GT_GT] = ACTIONS(3956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3956), + [aux_sym_unquoted_token1] = ACTIONS(3959), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3962), }, [1233] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(8147), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2875), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7970), - [sym_val_nothing] = STATE(3162), - [sym_val_bool] = STATE(3037), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3162), - [sym__val_number_decimal] = STATE(2683), - [sym__val_number] = STATE(3147), - [sym_val_duration] = STATE(3162), - [sym_val_filesize] = STATE(3162), - [sym_val_binary] = STATE(3162), - [sym_val_string] = STATE(3162), - [sym__raw_str] = STATE(3125), - [sym__str_double_quotes] = STATE(3125), - [sym_val_list] = STATE(8043), - [sym_val_table] = STATE(3162), - [sym__unquoted_in_list] = STATE(3167), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym_match_arm] = STATE(6863), + [sym_default_arm] = STATE(6863), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1233), - [aux_sym_shebang_repeat1] = STATE(6262), - [aux_sym__match_pattern_list_repeat1] = STATE(1324), - [sym__newline] = ACTIONS(3929), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_DOT_DOT] = ACTIONS(3941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), - [anon_sym_DOT_DOT_LT] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3951), - [aux_sym__val_number_decimal_token3] = ACTIONS(3953), - [aux_sym__val_number_decimal_token4] = ACTIONS(3955), - [aux_sym__val_number_token1] = ACTIONS(3957), - [aux_sym__val_number_token2] = ACTIONS(3957), - [aux_sym__val_number_token3] = ACTIONS(3957), - [aux_sym__val_number_token4] = ACTIONS(3959), - [aux_sym__val_number_token5] = ACTIONS(3959), - [aux_sym__val_number_token6] = ACTIONS(3959), - [anon_sym_0b] = ACTIONS(3961), - [anon_sym_0o] = ACTIONS(3963), - [anon_sym_0x] = ACTIONS(3963), - [sym_val_date] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(3967), - [sym__str_single_quotes] = ACTIONS(3969), - [sym__str_back_ticks] = ACTIONS(3969), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3973), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1234] = { - [sym_match_arm] = STATE(7038), - [sym_default_arm] = STATE(7038), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7773), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2908), + [sym_val_range] = STATE(3121), + [sym__val_range] = STATE(7923), + [sym_val_nothing] = STATE(3125), + [sym_val_bool] = STATE(3062), + [sym_val_variable] = STATE(2909), + [sym_val_number] = STATE(3125), + [sym__val_number_decimal] = STATE(2693), + [sym__val_number] = STATE(3108), + [sym_val_duration] = STATE(3125), + [sym_val_filesize] = STATE(3125), + [sym_val_binary] = STATE(3125), + [sym_val_string] = STATE(3125), + [sym__raw_str] = STATE(3164), + [sym__str_double_quotes] = STATE(3164), + [sym_val_list] = STATE(7781), + [sym_val_table] = STATE(3125), + [sym__unquoted_in_list] = STATE(3138), + [sym__unquoted_anonymous_prefix] = STATE(7818), [sym_comment] = STATE(1234), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(6721), + [aux_sym__match_pattern_list_repeat1] = STATE(1338), + [sym__newline] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3967), + [anon_sym_RBRACK] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(3977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3979), + [anon_sym_DOT_DOT_LT] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3985), + [aux_sym__val_number_decimal_token2] = ACTIONS(3987), + [aux_sym__val_number_decimal_token3] = ACTIONS(3989), + [aux_sym__val_number_decimal_token4] = ACTIONS(3991), + [aux_sym__val_number_token1] = ACTIONS(3993), + [aux_sym__val_number_token2] = ACTIONS(3993), + [aux_sym__val_number_token3] = ACTIONS(3993), + [aux_sym__val_number_token4] = ACTIONS(3995), + [aux_sym__val_number_token5] = ACTIONS(3995), + [aux_sym__val_number_token6] = ACTIONS(3995), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3999), + [sym_val_date] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym__str_single_quotes] = ACTIONS(4005), + [sym__str_back_ticks] = ACTIONS(4005), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4009), }, [1235] = { - [sym_match_arm] = STATE(7248), - [sym_default_arm] = STATE(7248), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(7296), + [sym_default_arm] = STATE(7296), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1235), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1236] = { [sym_comment] = STATE(1236), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(4011), + [sym_duration_unit] = ACTIONS(4013), [anon_sym_POUND] = ACTIONS(3), }, [1237] = { + [sym_match_arm] = STATE(7311), + [sym_default_arm] = STATE(7311), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1237), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1238] = { - [sym_expr_parenthesized] = STATE(6746), - [sym_val_range] = STATE(8026), - [sym__val_range] = STATE(7906), - [sym__value] = STATE(8026), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(3657), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5698), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(8028), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_expr_parenthesized] = STATE(6664), + [sym_val_range] = STATE(7990), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(7990), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(3697), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(7998), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1238), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), - [anon_sym_DOT_DOT_LT] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3365), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4023), + [anon_sym_DOT_DOT_LT] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_record_entry_token1] = ACTIONS(3447), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1239] = { [sym_comment] = STATE(1239), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(3891), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [1240] = { [sym_comment] = STATE(1240), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4007), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4047), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1241] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(8142), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2875), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7970), - [sym_val_nothing] = STATE(3162), - [sym_val_bool] = STATE(3037), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3162), - [sym__val_number_decimal] = STATE(2683), - [sym__val_number] = STATE(3147), - [sym_val_duration] = STATE(3162), - [sym_val_filesize] = STATE(3162), - [sym_val_binary] = STATE(3162), - [sym_val_string] = STATE(3162), - [sym__raw_str] = STATE(3125), - [sym__str_double_quotes] = STATE(3125), - [sym_val_list] = STATE(7744), - [sym_val_table] = STATE(3162), - [sym__unquoted_in_list] = STATE(3167), - [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1241), - [aux_sym_shebang_repeat1] = STATE(6803), - [aux_sym__match_pattern_list_repeat1] = STATE(1286), - [sym__newline] = ACTIONS(3929), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_RBRACK] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_DOT_DOT] = ACTIONS(4011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), - [anon_sym_DOT_DOT_LT] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3951), - [aux_sym__val_number_decimal_token3] = ACTIONS(3953), - [aux_sym__val_number_decimal_token4] = ACTIONS(3955), - [aux_sym__val_number_token1] = ACTIONS(3957), - [aux_sym__val_number_token2] = ACTIONS(3957), - [aux_sym__val_number_token3] = ACTIONS(3957), - [aux_sym__val_number_token4] = ACTIONS(3959), - [aux_sym__val_number_token5] = ACTIONS(3959), - [aux_sym__val_number_token6] = ACTIONS(3959), - [anon_sym_0b] = ACTIONS(3961), - [anon_sym_0o] = ACTIONS(3963), - [anon_sym_0x] = ACTIONS(3963), - [sym_val_date] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(3967), - [sym__str_single_quotes] = ACTIONS(3969), - [sym__str_back_ticks] = ACTIONS(3969), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3973), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1242] = { - [sym_match_arm] = STATE(7233), - [sym_default_arm] = STATE(7233), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7716), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2908), + [sym_val_range] = STATE(3121), + [sym__val_range] = STATE(7923), + [sym_val_nothing] = STATE(3125), + [sym_val_bool] = STATE(3062), + [sym_val_variable] = STATE(2909), + [sym_val_number] = STATE(3125), + [sym__val_number_decimal] = STATE(2693), + [sym__val_number] = STATE(3108), + [sym_val_duration] = STATE(3125), + [sym_val_filesize] = STATE(3125), + [sym_val_binary] = STATE(3125), + [sym_val_string] = STATE(3125), + [sym__raw_str] = STATE(3164), + [sym__str_double_quotes] = STATE(3164), + [sym_val_list] = STATE(7745), + [sym_val_table] = STATE(3125), + [sym__unquoted_in_list] = STATE(3138), + [sym__unquoted_anonymous_prefix] = STATE(7818), [sym_comment] = STATE(1242), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_shebang_repeat1] = STATE(6798), + [aux_sym__match_pattern_list_repeat1] = STATE(1327), + [sym__newline] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3967), + [anon_sym_RBRACK] = ACTIONS(4049), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(4051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3979), + [anon_sym_DOT_DOT_LT] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3985), + [aux_sym__val_number_decimal_token2] = ACTIONS(3987), + [aux_sym__val_number_decimal_token3] = ACTIONS(3989), + [aux_sym__val_number_decimal_token4] = ACTIONS(3991), + [aux_sym__val_number_token1] = ACTIONS(3993), + [aux_sym__val_number_token2] = ACTIONS(3993), + [aux_sym__val_number_token3] = ACTIONS(3993), + [aux_sym__val_number_token4] = ACTIONS(3995), + [aux_sym__val_number_token5] = ACTIONS(3995), + [aux_sym__val_number_token6] = ACTIONS(3995), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3999), + [sym_val_date] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym__str_single_quotes] = ACTIONS(4005), + [sym__str_back_ticks] = ACTIONS(4005), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4009), }, [1243] = { - [sym_match_arm] = STATE(7313), - [sym_default_arm] = STATE(7313), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1243), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [1244] = { - [sym_match_arm] = STATE(7318), - [sym_default_arm] = STATE(7318), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_expr_parenthesized] = STATE(6664), + [sym_val_range] = STATE(7990), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(7990), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(3697), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(7998), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1244), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4023), + [anon_sym_DOT_DOT_LT] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [aux_sym_record_entry_token1] = ACTIONS(3449), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1245] = { + [sym_match_arm] = STATE(7142), + [sym_default_arm] = STATE(7142), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1245), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(4013), - [sym_duration_unit] = ACTIONS(4015), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1246] = { + [sym_match_arm] = STATE(6884), + [sym_default_arm] = STATE(6884), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1246), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1247] = { - [sym_expr_parenthesized] = STATE(6746), - [sym_val_range] = STATE(8026), - [sym__val_range] = STATE(7906), - [sym__value] = STATE(8026), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(3657), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5698), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(8028), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(6888), + [sym_default_arm] = STATE(6888), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1247), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), - [anon_sym_DOT_DOT_LT] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3363), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1248] = { - [sym_match_arm] = STATE(7243), - [sym_default_arm] = STATE(7243), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1248), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(3), }, [1249] = { - [sym_match_arm] = STATE(7246), - [sym_default_arm] = STATE(7246), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1249), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), }, [1250] = { - [sym_match_arm] = STATE(7228), - [sym_default_arm] = STATE(7228), - [sym_match_pattern] = STATE(7855), - [sym__match_pattern] = STATE(6042), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(6540), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5383), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_match_arm] = STATE(6849), + [sym_default_arm] = STATE(6849), + [sym_match_pattern] = STATE(8018), + [sym__match_pattern] = STATE(6141), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6388), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5382), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1250), - [aux_sym_ctrl_match_repeat1] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [anon_sym_null] = ACTIONS(3605), - [anon_sym_true] = ACTIONS(3607), - [anon_sym_false] = ACTIONS(3607), - [aux_sym__val_number_decimal_token1] = ACTIONS(3609), - [aux_sym__val_number_decimal_token2] = ACTIONS(3611), - [aux_sym__val_number_decimal_token3] = ACTIONS(3613), - [aux_sym__val_number_decimal_token4] = ACTIONS(3615), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3617), - [aux_sym__val_number_token5] = ACTIONS(3617), - [aux_sym__val_number_token6] = ACTIONS(3617), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3705), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3709), + [anon_sym_DOT_DOT_LT] = ACTIONS(3709), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3713), + [anon_sym_false] = ACTIONS(3713), + [aux_sym__val_number_decimal_token1] = ACTIONS(3715), + [aux_sym__val_number_decimal_token2] = ACTIONS(3717), + [aux_sym__val_number_decimal_token3] = ACTIONS(3719), + [aux_sym__val_number_decimal_token4] = ACTIONS(3721), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(3723), + [aux_sym__val_number_token5] = ACTIONS(3723), + [aux_sym__val_number_token6] = ACTIONS(3723), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1251] = { - [sym__expr_parenthesized_immediate] = STATE(1506), - [sym__immediate_decimal] = STATE(1427), - [sym_val_variable] = STATE(1506), [sym_comment] = STATE(1251), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4021), - [aux_sym__immediate_decimal_token3] = ACTIONS(4023), - [aux_sym__immediate_decimal_token4] = ACTIONS(4025), - [aux_sym__immediate_decimal_token5] = ACTIONS(4027), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1557), - [aux_sym__val_number_token5] = ACTIONS(1557), - [aux_sym__val_number_token6] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1543), - [anon_sym_0o] = ACTIONS(1543), - [anon_sym_0x] = ACTIONS(1543), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1543), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), + [anon_sym_STAR_STAR] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(3139), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_bit_DASHshl] = ACTIONS(3139), + [anon_sym_bit_DASHshr] = ACTIONS(3139), + [anon_sym_EQ_TILDE] = ACTIONS(3139), + [anon_sym_BANG_TILDE] = ACTIONS(3139), + [anon_sym_bit_DASHand] = ACTIONS(3139), + [anon_sym_bit_DASHxor] = ACTIONS(3139), + [anon_sym_bit_DASHor] = ACTIONS(3139), + [anon_sym_and] = ACTIONS(3139), + [anon_sym_xor] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3139), + [anon_sym_not_DASHin] = ACTIONS(3139), + [anon_sym_starts_DASHwith] = ACTIONS(3139), + [anon_sym_ends_DASHwith] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3139), + [aux_sym_cmd_identifier_token41] = ACTIONS(3143), + [sym__newline] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_err_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_GT_PIPE] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1788), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1788), + [anon_sym_GT_EQ2] = ACTIONS(1788), + [anon_sym_EQ_TILDE2] = ACTIONS(1788), + [anon_sym_BANG_TILDE2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1788), + [anon_sym_bit_DASHshr2] = ACTIONS(1788), + [anon_sym_bit_DASHand2] = ACTIONS(1788), + [anon_sym_bit_DASHxor2] = ACTIONS(1788), + [anon_sym_bit_DASHor2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(3123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3125), + [sym_filesize_unit] = ACTIONS(4053), + [sym_duration_unit] = ACTIONS(4055), + [anon_sym_POUND] = ACTIONS(3), }, [1252] = { - [sym_expr_parenthesized] = STATE(6310), - [sym_val_range] = STATE(8153), - [sym__val_range] = STATE(7906), - [sym__value] = STATE(8153), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(3657), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5698), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(8042), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1252), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), - [anon_sym_DOT_DOT_LT] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_STAR_STAR] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_SLASH] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_SLASH_SLASH] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_bit_DASHshl] = ACTIONS(1770), + [anon_sym_bit_DASHshr] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_BANG_TILDE] = ACTIONS(1770), + [anon_sym_bit_DASHand] = ACTIONS(1770), + [anon_sym_bit_DASHxor] = ACTIONS(1770), + [anon_sym_bit_DASHor] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_xor] = ACTIONS(1770), + [anon_sym_or] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_not_DASHin] = ACTIONS(1770), + [anon_sym_starts_DASHwith] = ACTIONS(1770), + [anon_sym_ends_DASHwith] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1768), + [anon_sym_GT_EQ] = ACTIONS(1770), + [aux_sym_cmd_identifier_token41] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_in2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(3), }, [1253] = { [sym_comment] = STATE(1253), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_SLASH] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1763), - [anon_sym_SLASH_SLASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_bit_DASHshl] = ACTIONS(1763), - [anon_sym_bit_DASHshr] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_BANG_TILDE] = ACTIONS(1763), - [anon_sym_bit_DASHand] = ACTIONS(1763), - [anon_sym_bit_DASHxor] = ACTIONS(1763), - [anon_sym_bit_DASHor] = ACTIONS(1763), - [anon_sym_and] = ACTIONS(1763), - [anon_sym_xor] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_not_DASHin] = ACTIONS(1763), - [anon_sym_starts_DASHwith] = ACTIONS(1763), - [anon_sym_ends_DASHwith] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1763), - [aux_sym_cmd_identifier_token41] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_SLASH] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_bit_DASHshl] = ACTIONS(1868), + [anon_sym_bit_DASHshr] = ACTIONS(1868), + [anon_sym_EQ_TILDE] = ACTIONS(1868), + [anon_sym_BANG_TILDE] = ACTIONS(1868), + [anon_sym_bit_DASHand] = ACTIONS(1868), + [anon_sym_bit_DASHxor] = ACTIONS(1868), + [anon_sym_bit_DASHor] = ACTIONS(1868), + [anon_sym_and] = ACTIONS(1868), + [anon_sym_xor] = ACTIONS(1868), + [anon_sym_or] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_not_DASHin] = ACTIONS(1868), + [anon_sym_starts_DASHwith] = ACTIONS(1868), + [anon_sym_ends_DASHwith] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_GT_EQ] = ACTIONS(1868), + [aux_sym_cmd_identifier_token41] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), }, [1254] = { - [sym_expr_parenthesized] = STATE(6746), - [sym_val_range] = STATE(8026), - [sym__val_range] = STATE(7906), - [sym__value] = STATE(8026), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(3657), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5698), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(8028), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3977), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(3981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), - [anon_sym_DOT_DOT_LT] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_STAR_STAR] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_SLASH_SLASH] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_bit_DASHshl] = ACTIONS(1762), + [anon_sym_bit_DASHshr] = ACTIONS(1762), + [anon_sym_EQ_TILDE] = ACTIONS(1762), + [anon_sym_BANG_TILDE] = ACTIONS(1762), + [anon_sym_bit_DASHand] = ACTIONS(1762), + [anon_sym_bit_DASHxor] = ACTIONS(1762), + [anon_sym_bit_DASHor] = ACTIONS(1762), + [anon_sym_and] = ACTIONS(1762), + [anon_sym_xor] = ACTIONS(1762), + [anon_sym_or] = ACTIONS(1762), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_not_DASHin] = ACTIONS(1762), + [anon_sym_starts_DASHwith] = ACTIONS(1762), + [anon_sym_ends_DASHwith] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1762), + [aux_sym_cmd_identifier_token41] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), }, [1255] = { + [sym_expr_parenthesized] = STATE(6732), + [sym_val_range] = STATE(7855), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(7855), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(3697), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(7877), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1255), - [anon_sym_STAR_STAR] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3071), - [anon_sym_SLASH_SLASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_bit_DASHshl] = ACTIONS(3071), - [anon_sym_bit_DASHshr] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_BANG_TILDE] = ACTIONS(3071), - [anon_sym_bit_DASHand] = ACTIONS(3071), - [anon_sym_bit_DASHxor] = ACTIONS(3071), - [anon_sym_bit_DASHor] = ACTIONS(3071), - [anon_sym_and] = ACTIONS(3071), - [anon_sym_xor] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_not_DASHin] = ACTIONS(3071), - [anon_sym_starts_DASHwith] = ACTIONS(3071), - [anon_sym_ends_DASHwith] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3071), - [aux_sym_cmd_identifier_token41] = ACTIONS(3075), - [sym__newline] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(2900), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), - [sym_filesize_unit] = ACTIONS(4029), - [sym_duration_unit] = ACTIONS(4031), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4023), + [anon_sym_DOT_DOT_LT] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1256] = { + [sym__expr_parenthesized_immediate] = STATE(1510), + [sym__immediate_decimal] = STATE(1412), + [sym_val_variable] = STATE(1510), [sym_comment] = STATE(1256), - [anon_sym_STAR_STAR] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_bit_DASHshl] = ACTIONS(1587), - [anon_sym_bit_DASHshr] = ACTIONS(1587), - [anon_sym_EQ_TILDE] = ACTIONS(1587), - [anon_sym_BANG_TILDE] = ACTIONS(1587), - [anon_sym_bit_DASHand] = ACTIONS(1587), - [anon_sym_bit_DASHxor] = ACTIONS(1587), - [anon_sym_bit_DASHor] = ACTIONS(1587), - [anon_sym_and] = ACTIONS(1587), - [anon_sym_xor] = ACTIONS(1587), - [anon_sym_or] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1587), - [anon_sym_not_DASHin] = ACTIONS(1587), - [anon_sym_starts_DASHwith] = ACTIONS(1587), - [anon_sym_ends_DASHwith] = ACTIONS(1587), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_err_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_GT_PIPE] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_in2] = ACTIONS(1585), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1585), - [anon_sym_xor2] = ACTIONS(1585), - [anon_sym_or2] = ACTIONS(1585), - [anon_sym_not_DASHin2] = ACTIONS(1585), - [anon_sym_starts_DASHwith2] = ACTIONS(1585), - [anon_sym_ends_DASHwith2] = ACTIONS(1585), - [anon_sym_EQ_EQ2] = ACTIONS(1585), - [anon_sym_BANG_EQ2] = ACTIONS(1585), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1585), - [anon_sym_GT_EQ2] = ACTIONS(1585), - [anon_sym_EQ_TILDE2] = ACTIONS(1585), - [anon_sym_BANG_TILDE2] = ACTIONS(1585), - [anon_sym_STAR_STAR2] = ACTIONS(1585), - [anon_sym_PLUS_PLUS2] = ACTIONS(1585), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1585), - [anon_sym_SLASH_SLASH2] = ACTIONS(1585), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1585), - [anon_sym_bit_DASHshr2] = ACTIONS(1585), - [anon_sym_bit_DASHand2] = ACTIONS(1585), - [anon_sym_bit_DASHxor2] = ACTIONS(1585), - [anon_sym_bit_DASHor2] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT] = ACTIONS(4059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1726), + [anon_sym_DOT_DOT_LT] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(4061), + [aux_sym__immediate_decimal_token3] = ACTIONS(4063), + [aux_sym__immediate_decimal_token4] = ACTIONS(4065), + [aux_sym__immediate_decimal_token5] = ACTIONS(4067), + [anon_sym_null] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1726), + [aux_sym__val_number_token5] = ACTIONS(1726), + [aux_sym__val_number_token6] = ACTIONS(1726), + [anon_sym_0b] = ACTIONS(1712), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0x] = ACTIONS(1712), + [sym_val_date] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1726), + [anon_sym_err_GT] = ACTIONS(1712), + [anon_sym_out_GT] = ACTIONS(1712), + [anon_sym_e_GT] = ACTIONS(1712), + [anon_sym_o_GT] = ACTIONS(1712), + [anon_sym_err_PLUSout_GT] = ACTIONS(1712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1712), + [anon_sym_o_PLUSe_GT] = ACTIONS(1712), + [anon_sym_e_PLUSo_GT] = ACTIONS(1712), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [aux_sym_unquoted_token1] = ACTIONS(1712), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), }, [1257] = { [sym_comment] = STATE(1257), - [anon_sym_STAR_STAR] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1573), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_bit_DASHshl] = ACTIONS(1575), - [anon_sym_bit_DASHshr] = ACTIONS(1575), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_BANG_TILDE] = ACTIONS(1575), - [anon_sym_bit_DASHand] = ACTIONS(1575), - [anon_sym_bit_DASHxor] = ACTIONS(1575), - [anon_sym_bit_DASHor] = ACTIONS(1575), - [anon_sym_and] = ACTIONS(1575), - [anon_sym_xor] = ACTIONS(1575), - [anon_sym_or] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_not_DASHin] = ACTIONS(1575), - [anon_sym_starts_DASHwith] = ACTIONS(1575), - [anon_sym_ends_DASHwith] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1575), - [aux_sym_cmd_identifier_token41] = ACTIONS(1573), - [sym__newline] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_err_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_GT_PIPE] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_in2] = ACTIONS(1573), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1573), - [anon_sym_xor2] = ACTIONS(1573), - [anon_sym_or2] = ACTIONS(1573), - [anon_sym_not_DASHin2] = ACTIONS(1573), - [anon_sym_starts_DASHwith2] = ACTIONS(1573), - [anon_sym_ends_DASHwith2] = ACTIONS(1573), - [anon_sym_EQ_EQ2] = ACTIONS(1573), - [anon_sym_BANG_EQ2] = ACTIONS(1573), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1573), - [anon_sym_GT_EQ2] = ACTIONS(1573), - [anon_sym_EQ_TILDE2] = ACTIONS(1573), - [anon_sym_BANG_TILDE2] = ACTIONS(1573), - [anon_sym_STAR_STAR2] = ACTIONS(1573), - [anon_sym_PLUS_PLUS2] = ACTIONS(1573), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1573), - [anon_sym_SLASH_SLASH2] = ACTIONS(1573), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1573), - [anon_sym_bit_DASHshr2] = ACTIONS(1573), - [anon_sym_bit_DASHand2] = ACTIONS(1573), - [anon_sym_bit_DASHxor2] = ACTIONS(1573), - [anon_sym_bit_DASHor2] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_SLASH] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_SLASH_SLASH] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_bit_DASHshl] = ACTIONS(1822), + [anon_sym_bit_DASHshr] = ACTIONS(1822), + [anon_sym_EQ_TILDE] = ACTIONS(1822), + [anon_sym_BANG_TILDE] = ACTIONS(1822), + [anon_sym_bit_DASHand] = ACTIONS(1822), + [anon_sym_bit_DASHxor] = ACTIONS(1822), + [anon_sym_bit_DASHor] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_xor] = ACTIONS(1822), + [anon_sym_or] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_not_DASHin] = ACTIONS(1822), + [anon_sym_starts_DASHwith] = ACTIONS(1822), + [anon_sym_ends_DASHwith] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1822), + [aux_sym_cmd_identifier_token41] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_POUND] = ACTIONS(3), }, [1258] = { + [sym_expr_parenthesized] = STATE(6664), + [sym_val_range] = STATE(7990), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(7990), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(3697), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(7998), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1258), - [anon_sym_STAR_STAR] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_bit_DASHshl] = ACTIONS(1683), - [anon_sym_bit_DASHshr] = ACTIONS(1683), - [anon_sym_EQ_TILDE] = ACTIONS(1683), - [anon_sym_BANG_TILDE] = ACTIONS(1683), - [anon_sym_bit_DASHand] = ACTIONS(1683), - [anon_sym_bit_DASHxor] = ACTIONS(1683), - [anon_sym_bit_DASHor] = ACTIONS(1683), - [anon_sym_and] = ACTIONS(1683), - [anon_sym_xor] = ACTIONS(1683), - [anon_sym_or] = ACTIONS(1683), - [anon_sym_in] = ACTIONS(1683), - [anon_sym_not_DASHin] = ACTIONS(1683), - [anon_sym_starts_DASHwith] = ACTIONS(1683), - [anon_sym_ends_DASHwith] = ACTIONS(1683), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1683), - [aux_sym_cmd_identifier_token41] = ACTIONS(1681), - [sym__newline] = ACTIONS(1681), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_err_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_GT_PIPE] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1681), - [anon_sym_GT_EQ2] = ACTIONS(1681), - [anon_sym_EQ_TILDE2] = ACTIONS(1681), - [anon_sym_BANG_TILDE2] = ACTIONS(1681), - [anon_sym_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1681), - [anon_sym_bit_DASHshr2] = ACTIONS(1681), - [anon_sym_bit_DASHand2] = ACTIONS(1681), - [anon_sym_bit_DASHxor2] = ACTIONS(1681), - [anon_sym_bit_DASHor2] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4023), + [anon_sym_DOT_DOT_LT] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1811), - [sym__immediate_decimal] = STATE(1592), - [sym_val_variable] = STATE(1811), + [sym__expr_parenthesized_immediate] = STATE(1835), + [sym__immediate_decimal] = STATE(1578), + [sym_val_variable] = STATE(1835), [sym_comment] = STATE(1259), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4037), - [aux_sym__immediate_decimal_token3] = ACTIONS(4039), - [aux_sym__immediate_decimal_token4] = ACTIONS(4041), - [aux_sym__immediate_decimal_token5] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1557), - [aux_sym__val_number_token5] = ACTIONS(1557), - [aux_sym__val_number_token6] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1543), - [anon_sym_0o] = ACTIONS(1543), - [anon_sym_0x] = ACTIONS(1543), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1543), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), + [sym__newline] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_err_GT_PIPE] = ACTIONS(1742), + [anon_sym_out_GT_PIPE] = ACTIONS(1742), + [anon_sym_e_GT_PIPE] = ACTIONS(1742), + [anon_sym_o_GT_PIPE] = ACTIONS(1742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [aux_sym__immediate_decimal_token1] = ACTIONS(4073), + [aux_sym__immediate_decimal_token3] = ACTIONS(4075), + [aux_sym__immediate_decimal_token4] = ACTIONS(4077), + [aux_sym__immediate_decimal_token5] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [aux_sym__val_number_decimal_token1] = ACTIONS(1730), + [aux_sym__val_number_decimal_token2] = ACTIONS(1730), + [aux_sym__val_number_decimal_token3] = ACTIONS(1730), + [aux_sym__val_number_decimal_token4] = ACTIONS(1730), + [aux_sym__val_number_token1] = ACTIONS(1742), + [aux_sym__val_number_token2] = ACTIONS(1742), + [aux_sym__val_number_token3] = ACTIONS(1742), + [aux_sym__val_number_token4] = ACTIONS(1742), + [aux_sym__val_number_token5] = ACTIONS(1742), + [aux_sym__val_number_token6] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1730), + [anon_sym_0o] = ACTIONS(1730), + [anon_sym_0x] = ACTIONS(1730), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1742), + [anon_sym_out_GT_GT] = ACTIONS(1742), + [anon_sym_e_GT_GT] = ACTIONS(1742), + [anon_sym_o_GT_GT] = ACTIONS(1742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), + [aux_sym_unquoted_token1] = ACTIONS(1730), + [aux_sym_unquoted_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1742), }, [1260] = { [sym_comment] = STATE(1260), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4045), - [aux_sym__immediate_decimal_token2] = ACTIONS(4047), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4083), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1261] = { - [sym__expr_parenthesized_immediate] = STATE(1504), - [sym__immediate_decimal] = STATE(1505), - [sym_val_variable] = STATE(1504), [sym_comment] = STATE(1261), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4049), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4051), - [aux_sym__immediate_decimal_token3] = ACTIONS(4053), - [aux_sym__immediate_decimal_token4] = ACTIONS(4055), - [aux_sym__immediate_decimal_token5] = ACTIONS(4057), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1593), - [anon_sym_0o] = ACTIONS(1593), - [anon_sym_0x] = ACTIONS(1593), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1593), - [anon_sym_out_GT] = ACTIONS(1593), - [anon_sym_e_GT] = ACTIONS(1593), - [anon_sym_o_GT] = ACTIONS(1593), - [anon_sym_err_PLUSout_GT] = ACTIONS(1593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), - [anon_sym_o_PLUSe_GT] = ACTIONS(1593), - [anon_sym_e_PLUSo_GT] = ACTIONS(1593), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4085), + [aux_sym__immediate_decimal_token2] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1262] = { + [sym__expr_parenthesized_immediate] = STATE(1777), + [sym__immediate_decimal] = STATE(1613), + [sym_val_variable] = STATE(1777), [sym_comment] = STATE(1262), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1726), + [anon_sym_DOT_DOT_LT] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(4073), + [aux_sym__immediate_decimal_token3] = ACTIONS(4075), + [aux_sym__immediate_decimal_token4] = ACTIONS(4077), + [aux_sym__immediate_decimal_token5] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1726), + [aux_sym__val_number_token5] = ACTIONS(1726), + [aux_sym__val_number_token6] = ACTIONS(1726), + [anon_sym_0b] = ACTIONS(1712), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0x] = ACTIONS(1712), + [sym_val_date] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1726), + [anon_sym_err_GT] = ACTIONS(1712), + [anon_sym_out_GT] = ACTIONS(1712), + [anon_sym_e_GT] = ACTIONS(1712), + [anon_sym_o_GT] = ACTIONS(1712), + [anon_sym_err_PLUSout_GT] = ACTIONS(1712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1712), + [anon_sym_o_PLUSe_GT] = ACTIONS(1712), + [anon_sym_e_PLUSo_GT] = ACTIONS(1712), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [aux_sym_unquoted_token1] = ACTIONS(1712), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), }, [1263] = { - [sym__expr_parenthesized_immediate] = STATE(1764), - [sym__immediate_decimal] = STATE(1601), - [sym_val_variable] = STATE(1764), + [sym__expr_parenthesized_immediate] = STATE(1508), + [sym__immediate_decimal] = STATE(1509), + [sym_val_variable] = STATE(1508), [sym_comment] = STATE(1263), - [sym__newline] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_err_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_GT_PIPE] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(4037), - [aux_sym__immediate_decimal_token3] = ACTIONS(4039), - [aux_sym__immediate_decimal_token4] = ACTIONS(4041), - [aux_sym__immediate_decimal_token5] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [aux_sym__val_number_token4] = ACTIONS(1659), - [aux_sym__val_number_token5] = ACTIONS(1659), - [aux_sym__val_number_token6] = ACTIONS(1659), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1659), - [anon_sym_out_GT_GT] = ACTIONS(1659), - [anon_sym_e_GT_GT] = ACTIONS(1659), - [anon_sym_o_GT_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), - [aux_sym_unquoted_token1] = ACTIONS(1657), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1659), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT] = ACTIONS(4089), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [aux_sym__immediate_decimal_token1] = ACTIONS(4091), + [aux_sym__immediate_decimal_token3] = ACTIONS(4093), + [aux_sym__immediate_decimal_token4] = ACTIONS(4095), + [aux_sym__immediate_decimal_token5] = ACTIONS(4097), + [anon_sym_null] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1776), + [anon_sym_0o] = ACTIONS(1776), + [anon_sym_0x] = ACTIONS(1776), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), }, [1264] = { - [sym__expr_parenthesized_immediate] = STATE(1609), - [sym__immediate_decimal] = STATE(1488), - [sym_val_variable] = STATE(1609), + [sym__expr_parenthesized_immediate] = STATE(1618), + [sym__immediate_decimal] = STATE(1496), + [sym_val_variable] = STATE(1618), [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(4063), - [anon_sym_DOT] = ACTIONS(4065), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4067), - [aux_sym__immediate_decimal_token3] = ACTIONS(4069), - [aux_sym__immediate_decimal_token4] = ACTIONS(4071), - [aux_sym__immediate_decimal_token5] = ACTIONS(4073), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1557), - [aux_sym__val_number_token5] = ACTIONS(1557), - [aux_sym__val_number_token6] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1543), - [anon_sym_0o] = ACTIONS(1543), - [anon_sym_0x] = ACTIONS(1543), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1543), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1726), + [anon_sym_DOT_DOT_LT] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(4103), + [aux_sym__immediate_decimal_token3] = ACTIONS(4105), + [aux_sym__immediate_decimal_token4] = ACTIONS(4107), + [aux_sym__immediate_decimal_token5] = ACTIONS(4109), + [anon_sym_null] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1726), + [aux_sym__val_number_token5] = ACTIONS(1726), + [aux_sym__val_number_token6] = ACTIONS(1726), + [anon_sym_0b] = ACTIONS(1712), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0x] = ACTIONS(1712), + [sym_val_date] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1726), + [anon_sym_err_GT] = ACTIONS(1712), + [anon_sym_out_GT] = ACTIONS(1712), + [anon_sym_e_GT] = ACTIONS(1712), + [anon_sym_o_GT] = ACTIONS(1712), + [anon_sym_err_PLUSout_GT] = ACTIONS(1712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1712), + [anon_sym_o_PLUSe_GT] = ACTIONS(1712), + [anon_sym_e_PLUSo_GT] = ACTIONS(1712), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [aux_sym_unquoted_token1] = ACTIONS(1712), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), }, [1265] = { - [sym__val_range] = STATE(7932), - [sym__value] = STATE(6009), - [sym_val_nothing] = STATE(5879), - [sym_val_bool] = STATE(5689), - [sym_val_variable] = STATE(5879), - [sym_val_number] = STATE(5879), - [sym__val_number_decimal] = STATE(5141), - [sym__val_number] = STATE(5951), - [sym_val_duration] = STATE(5879), - [sym_val_filesize] = STATE(5879), - [sym_val_binary] = STATE(5879), - [sym_val_string] = STATE(5879), - [sym__raw_str] = STATE(5616), - [sym__str_double_quotes] = STATE(5616), - [sym_val_interpolated] = STATE(5879), - [sym__inter_single_quotes] = STATE(5824), - [sym__inter_double_quotes] = STATE(5825), - [sym_val_list] = STATE(5879), - [sym_val_record] = STATE(5879), - [sym_val_table] = STATE(5879), - [sym_val_closure] = STATE(5879), - [sym_unquoted] = STATE(6015), - [sym__unquoted_anonymous_prefix] = STATE(7904), + [sym__val_range] = STATE(7909), + [sym__value] = STATE(3011), + [sym_val_nothing] = STATE(2936), + [sym_val_bool] = STATE(2923), + [sym_val_variable] = STATE(2936), + [sym_val_number] = STATE(2936), + [sym__val_number_decimal] = STATE(2565), + [sym__val_number] = STATE(2977), + [sym_val_duration] = STATE(2936), + [sym_val_filesize] = STATE(2936), + [sym_val_binary] = STATE(2936), + [sym_val_string] = STATE(2936), + [sym__raw_str] = STATE(3013), + [sym__str_double_quotes] = STATE(3013), + [sym_val_interpolated] = STATE(2936), + [sym__inter_single_quotes] = STATE(3000), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(2936), + [sym_val_record] = STATE(2936), + [sym_val_table] = STATE(2936), + [sym_val_closure] = STATE(2936), + [sym_unquoted] = STATE(3012), + [sym__unquoted_anonymous_prefix] = STATE(8098), [sym_comment] = STATE(1265), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DOT_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [aux_sym__val_number_decimal_token1] = ACTIONS(4091), - [aux_sym__val_number_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token3] = ACTIONS(4095), - [aux_sym__val_number_decimal_token4] = ACTIONS(4097), - [aux_sym__val_number_token1] = ACTIONS(4099), - [aux_sym__val_number_token2] = ACTIONS(4099), - [aux_sym__val_number_token3] = ACTIONS(4099), - [aux_sym__val_number_token4] = ACTIONS(4101), - [aux_sym__val_number_token5] = ACTIONS(4101), - [aux_sym__val_number_token6] = ACTIONS(4101), - [anon_sym_0b] = ACTIONS(4103), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_LPAREN] = ACTIONS(4113), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4121), + [anon_sym_DOT_DOT_LT] = ACTIONS(4121), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_true] = ACTIONS(4125), + [anon_sym_false] = ACTIONS(4125), + [aux_sym__val_number_decimal_token1] = ACTIONS(4127), + [aux_sym__val_number_decimal_token2] = ACTIONS(4129), + [aux_sym__val_number_decimal_token3] = ACTIONS(4131), + [aux_sym__val_number_decimal_token4] = ACTIONS(4133), + [aux_sym__val_number_token1] = ACTIONS(4135), + [aux_sym__val_number_token2] = ACTIONS(4135), + [aux_sym__val_number_token3] = ACTIONS(4135), + [aux_sym__val_number_token4] = ACTIONS(4137), + [aux_sym__val_number_token5] = ACTIONS(4137), + [aux_sym__val_number_token6] = ACTIONS(4137), + [anon_sym_0b] = ACTIONS(4139), + [anon_sym_0o] = ACTIONS(4141), + [anon_sym_0x] = ACTIONS(4141), + [sym_val_date] = ACTIONS(4143), + [anon_sym_DQUOTE] = ACTIONS(4145), + [sym__str_single_quotes] = ACTIONS(4147), + [sym__str_back_ticks] = ACTIONS(4147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4151), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4153), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4155), }, [1266] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4756), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4103), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4757), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__expr_parenthesized_immediate] = STATE(1886), + [sym__immediate_decimal] = STATE(1679), + [sym_val_variable] = STATE(1886), [sym_comment] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_true] = ACTIONS(4135), - [anon_sym_false] = ACTIONS(4135), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4145), - [aux_sym__val_number_token5] = ACTIONS(4145), - [aux_sym__val_number_token6] = ACTIONS(4145), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4147), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym__newline] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_err_GT_PIPE] = ACTIONS(1742), + [anon_sym_out_GT_PIPE] = ACTIONS(1742), + [anon_sym_e_GT_PIPE] = ACTIONS(1742), + [anon_sym_o_GT_PIPE] = ACTIONS(1742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_DASH2] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [anon_sym_DOT_DOT_LT] = ACTIONS(1742), + [aux_sym__immediate_decimal_token1] = ACTIONS(4161), + [aux_sym__immediate_decimal_token3] = ACTIONS(4163), + [aux_sym__immediate_decimal_token4] = ACTIONS(4165), + [aux_sym__immediate_decimal_token5] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [aux_sym__val_number_decimal_token1] = ACTIONS(1730), + [aux_sym__val_number_decimal_token2] = ACTIONS(1730), + [aux_sym__val_number_decimal_token3] = ACTIONS(1730), + [aux_sym__val_number_decimal_token4] = ACTIONS(1730), + [aux_sym__val_number_token1] = ACTIONS(1742), + [aux_sym__val_number_token2] = ACTIONS(1742), + [aux_sym__val_number_token3] = ACTIONS(1742), + [aux_sym__val_number_token4] = ACTIONS(1742), + [aux_sym__val_number_token5] = ACTIONS(1742), + [aux_sym__val_number_token6] = ACTIONS(1742), + [anon_sym_0b] = ACTIONS(1730), + [anon_sym_0o] = ACTIONS(1730), + [anon_sym_0x] = ACTIONS(1730), + [sym_val_date] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym__str_single_quotes] = ACTIONS(1742), + [sym__str_back_ticks] = ACTIONS(1742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1742), + [anon_sym_out_GT_GT] = ACTIONS(1742), + [anon_sym_e_GT_GT] = ACTIONS(1742), + [anon_sym_o_GT_GT] = ACTIONS(1742), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1742), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1742), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1742), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1742), + [aux_sym_unquoted_token1] = ACTIONS(1730), + [aux_sym_unquoted_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1742), }, [1267] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4702), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(6971), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(5511), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4703), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6168), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(7205), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5606), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6169), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4157), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [aux_sym__val_number_decimal_token1] = ACTIONS(4161), - [aux_sym__val_number_decimal_token2] = ACTIONS(4163), - [aux_sym__val_number_decimal_token3] = ACTIONS(4165), - [aux_sym__val_number_decimal_token4] = ACTIONS(4167), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4169), - [aux_sym__val_number_token5] = ACTIONS(4169), - [aux_sym__val_number_token6] = ACTIONS(4169), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1268] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4766), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4103), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4767), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(6168), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5691), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(6169), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_true] = ACTIONS(4135), - [anon_sym_false] = ACTIONS(4135), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4145), - [aux_sym__val_number_token5] = ACTIONS(4145), - [aux_sym__val_number_token6] = ACTIONS(4145), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4147), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1269] = { + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6030), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5336), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1269), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4175), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4211), + [aux_sym__val_number_decimal_token2] = ACTIONS(4213), + [aux_sym__val_number_decimal_token3] = ACTIONS(4215), + [aux_sym__val_number_decimal_token4] = ACTIONS(4217), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4219), + [aux_sym__val_number_token5] = ACTIONS(4219), + [aux_sym__val_number_token6] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1270] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6136), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(7278), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5602), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6137), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(5518), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7529), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5637), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(5519), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4191), - [anon_sym_false] = ACTIONS(4191), - [aux_sym__val_number_decimal_token1] = ACTIONS(4193), - [aux_sym__val_number_decimal_token2] = ACTIONS(4195), - [aux_sym__val_number_decimal_token3] = ACTIONS(4197), - [aux_sym__val_number_decimal_token4] = ACTIONS(4199), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4201), - [aux_sym__val_number_token5] = ACTIONS(4201), - [aux_sym__val_number_token6] = ACTIONS(4201), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [aux_sym__val_number_decimal_token1] = ACTIONS(4229), + [aux_sym__val_number_decimal_token2] = ACTIONS(4231), + [aux_sym__val_number_decimal_token3] = ACTIONS(4233), + [aux_sym__val_number_decimal_token4] = ACTIONS(4235), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4237), + [aux_sym__val_number_token5] = ACTIONS(4237), + [aux_sym__val_number_token6] = ACTIONS(4237), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1271] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4684), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4103), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4685), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__val_range] = STATE(7884), + [sym__value] = STATE(1965), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1794), + [sym_val_variable] = STATE(1937), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1416), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_unquoted] = STATE(1899), + [sym__unquoted_anonymous_prefix] = STATE(7911), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_true] = ACTIONS(4135), - [anon_sym_false] = ACTIONS(4135), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4145), - [aux_sym__val_number_token5] = ACTIONS(4145), - [aux_sym__val_number_token6] = ACTIONS(4145), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4147), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4245), + [anon_sym_DOT_DOT_LT] = ACTIONS(4245), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_true] = ACTIONS(4249), + [anon_sym_false] = ACTIONS(4249), + [aux_sym__val_number_decimal_token1] = ACTIONS(4251), + [aux_sym__val_number_decimal_token2] = ACTIONS(4253), + [aux_sym__val_number_decimal_token3] = ACTIONS(4255), + [aux_sym__val_number_decimal_token4] = ACTIONS(4257), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [1272] = { - [sym__val_range] = STATE(7898), - [sym__value] = STATE(3694), - [sym_val_nothing] = STATE(3723), - [sym_val_bool] = STATE(3630), - [sym_val_variable] = STATE(3723), - [sym_val_number] = STATE(3723), - [sym__val_number_decimal] = STATE(3406), - [sym__val_number] = STATE(3703), - [sym_val_duration] = STATE(3723), - [sym_val_filesize] = STATE(3723), - [sym_val_binary] = STATE(3723), - [sym_val_string] = STATE(3723), - [sym__raw_str] = STATE(3573), - [sym__str_double_quotes] = STATE(3573), - [sym_val_interpolated] = STATE(3723), - [sym__inter_single_quotes] = STATE(3704), - [sym__inter_double_quotes] = STATE(3705), - [sym_val_list] = STATE(3723), - [sym_val_record] = STATE(3723), - [sym_val_table] = STATE(3723), - [sym_val_closure] = STATE(3723), - [sym_unquoted] = STATE(3695), - [sym__unquoted_anonymous_prefix] = STATE(7965), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(5533), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7529), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5637), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1272), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [aux_sym__val_number_decimal_token1] = ACTIONS(4223), - [aux_sym__val_number_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token3] = ACTIONS(4227), - [aux_sym__val_number_decimal_token4] = ACTIONS(4229), - [aux_sym__val_number_token1] = ACTIONS(4231), - [aux_sym__val_number_token2] = ACTIONS(4231), - [aux_sym__val_number_token3] = ACTIONS(4231), - [aux_sym__val_number_token4] = ACTIONS(4233), - [aux_sym__val_number_token5] = ACTIONS(4233), - [aux_sym__val_number_token6] = ACTIONS(4233), - [anon_sym_0b] = ACTIONS(4235), - [anon_sym_0o] = ACTIONS(4237), - [anon_sym_0x] = ACTIONS(4237), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [aux_sym__val_number_decimal_token1] = ACTIONS(4229), + [aux_sym__val_number_decimal_token2] = ACTIONS(4231), + [aux_sym__val_number_decimal_token3] = ACTIONS(4233), + [aux_sym__val_number_decimal_token4] = ACTIONS(4235), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4237), + [aux_sym__val_number_token5] = ACTIONS(4237), + [aux_sym__val_number_token6] = ACTIONS(4237), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), [sym_val_date] = ACTIONS(4239), - [anon_sym_DQUOTE] = ACTIONS(4241), - [sym__str_single_quotes] = ACTIONS(4243), - [sym__str_back_ticks] = ACTIONS(4243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1273] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4702), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(4448), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(4103), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4703), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__val_range] = STATE(7884), + [sym__value] = STATE(1944), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1794), + [sym_val_variable] = STATE(1937), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1416), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_unquoted] = STATE(1900), + [sym__unquoted_anonymous_prefix] = STATE(7911), [sym_comment] = STATE(1273), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_true] = ACTIONS(4135), - [anon_sym_false] = ACTIONS(4135), - [aux_sym__val_number_decimal_token1] = ACTIONS(1980), - [aux_sym__val_number_decimal_token2] = ACTIONS(4137), - [aux_sym__val_number_decimal_token3] = ACTIONS(4139), - [aux_sym__val_number_decimal_token4] = ACTIONS(4141), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4145), - [aux_sym__val_number_token5] = ACTIONS(4145), - [aux_sym__val_number_token6] = ACTIONS(4145), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4147), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4245), + [anon_sym_DOT_DOT_LT] = ACTIONS(4245), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_true] = ACTIONS(4249), + [anon_sym_false] = ACTIONS(4249), + [aux_sym__val_number_decimal_token1] = ACTIONS(4251), + [aux_sym__val_number_decimal_token2] = ACTIONS(4253), + [aux_sym__val_number_decimal_token3] = ACTIONS(4255), + [aux_sym__val_number_decimal_token4] = ACTIONS(4257), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [1274] = { - [sym__val_range] = STATE(7898), - [sym__value] = STATE(3701), - [sym_val_nothing] = STATE(3723), - [sym_val_bool] = STATE(3630), - [sym_val_variable] = STATE(3723), - [sym_val_number] = STATE(3723), - [sym__val_number_decimal] = STATE(3406), - [sym__val_number] = STATE(3703), - [sym_val_duration] = STATE(3723), - [sym_val_filesize] = STATE(3723), - [sym_val_binary] = STATE(3723), - [sym_val_string] = STATE(3723), - [sym__raw_str] = STATE(3573), - [sym__str_double_quotes] = STATE(3573), - [sym_val_interpolated] = STATE(3723), - [sym__inter_single_quotes] = STATE(3704), - [sym__inter_double_quotes] = STATE(3705), - [sym_val_list] = STATE(3723), - [sym_val_record] = STATE(3723), - [sym_val_table] = STATE(3723), - [sym_val_closure] = STATE(3723), - [sym_unquoted] = STATE(3702), - [sym__unquoted_anonymous_prefix] = STATE(7965), + [sym__val_range] = STATE(7884), + [sym__value] = STATE(1926), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1794), + [sym_val_variable] = STATE(1937), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1416), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_unquoted] = STATE(1934), + [sym__unquoted_anonymous_prefix] = STATE(7911), [sym_comment] = STATE(1274), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [aux_sym__val_number_decimal_token1] = ACTIONS(4223), - [aux_sym__val_number_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token3] = ACTIONS(4227), - [aux_sym__val_number_decimal_token4] = ACTIONS(4229), - [aux_sym__val_number_token1] = ACTIONS(4231), - [aux_sym__val_number_token2] = ACTIONS(4231), - [aux_sym__val_number_token3] = ACTIONS(4231), - [aux_sym__val_number_token4] = ACTIONS(4233), - [aux_sym__val_number_token5] = ACTIONS(4233), - [aux_sym__val_number_token6] = ACTIONS(4233), - [anon_sym_0b] = ACTIONS(4235), - [anon_sym_0o] = ACTIONS(4237), - [anon_sym_0x] = ACTIONS(4237), - [sym_val_date] = ACTIONS(4239), - [anon_sym_DQUOTE] = ACTIONS(4241), - [sym__str_single_quotes] = ACTIONS(4243), - [sym__str_back_ticks] = ACTIONS(4243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4245), + [anon_sym_DOT_DOT_LT] = ACTIONS(4245), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_true] = ACTIONS(4249), + [anon_sym_false] = ACTIONS(4249), + [aux_sym__val_number_decimal_token1] = ACTIONS(4251), + [aux_sym__val_number_decimal_token2] = ACTIONS(4253), + [aux_sym__val_number_decimal_token3] = ACTIONS(4255), + [aux_sym__val_number_decimal_token4] = ACTIONS(4257), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [1275] = { - [sym__val_range] = STATE(7898), - [sym__value] = STATE(3712), - [sym_val_nothing] = STATE(3723), - [sym_val_bool] = STATE(3630), - [sym_val_variable] = STATE(3723), - [sym_val_number] = STATE(3723), - [sym__val_number_decimal] = STATE(3406), - [sym__val_number] = STATE(3703), - [sym_val_duration] = STATE(3723), - [sym_val_filesize] = STATE(3723), - [sym_val_binary] = STATE(3723), - [sym_val_string] = STATE(3723), - [sym__raw_str] = STATE(3573), - [sym__str_double_quotes] = STATE(3573), - [sym_val_interpolated] = STATE(3723), - [sym__inter_single_quotes] = STATE(3704), - [sym__inter_double_quotes] = STATE(3705), - [sym_val_list] = STATE(3723), - [sym_val_record] = STATE(3723), - [sym_val_table] = STATE(3723), - [sym_val_closure] = STATE(3723), - [sym_unquoted] = STATE(3713), - [sym__unquoted_anonymous_prefix] = STATE(7965), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6030), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(6753), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5370), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [aux_sym__val_number_decimal_token1] = ACTIONS(4223), - [aux_sym__val_number_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token3] = ACTIONS(4227), - [aux_sym__val_number_decimal_token4] = ACTIONS(4229), - [aux_sym__val_number_token1] = ACTIONS(4231), - [aux_sym__val_number_token2] = ACTIONS(4231), - [aux_sym__val_number_token3] = ACTIONS(4231), - [aux_sym__val_number_token4] = ACTIONS(4233), - [aux_sym__val_number_token5] = ACTIONS(4233), - [aux_sym__val_number_token6] = ACTIONS(4233), - [anon_sym_0b] = ACTIONS(4235), - [anon_sym_0o] = ACTIONS(4237), - [anon_sym_0x] = ACTIONS(4237), - [sym_val_date] = ACTIONS(4239), - [anon_sym_DQUOTE] = ACTIONS(4241), - [sym__str_single_quotes] = ACTIONS(4243), - [sym__str_back_ticks] = ACTIONS(4243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [aux_sym__val_number_decimal_token1] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4271), + [aux_sym__val_number_decimal_token3] = ACTIONS(4273), + [aux_sym__val_number_decimal_token4] = ACTIONS(4275), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4277), + [aux_sym__val_number_token5] = ACTIONS(4277), + [aux_sym__val_number_token6] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1276] = { - [sym__val_range] = STATE(7842), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1702), - [sym_val_variable] = STATE(1829), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1404), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_unquoted] = STATE(1818), - [sym__unquoted_anonymous_prefix] = STATE(7788), + [sym__val_range] = STATE(7884), + [sym__value] = STATE(1868), + [sym_val_nothing] = STATE(1937), + [sym_val_bool] = STATE(1794), + [sym_val_variable] = STATE(1937), + [sym_val_number] = STATE(1937), + [sym__val_number_decimal] = STATE(1416), + [sym__val_number] = STATE(1933), + [sym_val_duration] = STATE(1937), + [sym_val_filesize] = STATE(1937), + [sym_val_binary] = STATE(1937), + [sym_val_string] = STATE(1937), + [sym__raw_str] = STATE(1910), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1937), + [sym__inter_single_quotes] = STATE(1951), + [sym__inter_double_quotes] = STATE(1955), + [sym_val_list] = STATE(1937), + [sym_val_record] = STATE(1937), + [sym_val_table] = STATE(1937), + [sym_val_closure] = STATE(1937), + [sym_unquoted] = STATE(1869), + [sym__unquoted_anonymous_prefix] = STATE(7911), [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), - [anon_sym_DOT_DOT_LT] = ACTIONS(4257), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [aux_sym__val_number_decimal_token3] = ACTIONS(4267), - [aux_sym__val_number_decimal_token4] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(4271), - [aux_sym__val_number_token5] = ACTIONS(4271), - [aux_sym__val_number_token6] = ACTIONS(4271), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(4273), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4245), + [anon_sym_DOT_DOT_LT] = ACTIONS(4245), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_true] = ACTIONS(4249), + [anon_sym_false] = ACTIONS(4249), + [aux_sym__val_number_decimal_token1] = ACTIONS(4251), + [aux_sym__val_number_decimal_token2] = ACTIONS(4253), + [aux_sym__val_number_decimal_token3] = ACTIONS(4255), + [aux_sym__val_number_decimal_token4] = ACTIONS(4257), + [aux_sym__val_number_token1] = ACTIONS(3006), + [aux_sym__val_number_token2] = ACTIONS(3006), + [aux_sym__val_number_token3] = ACTIONS(3006), + [aux_sym__val_number_token4] = ACTIONS(4259), + [aux_sym__val_number_token5] = ACTIONS(4259), + [aux_sym__val_number_token6] = ACTIONS(4259), + [anon_sym_0b] = ACTIONS(3010), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(4261), + [anon_sym_DQUOTE] = ACTIONS(3016), + [sym__str_single_quotes] = ACTIONS(3018), + [sym__str_back_ticks] = ACTIONS(3018), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3022), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(3026), }, [1277] = { - [sym__val_range] = STATE(7898), - [sym__value] = STATE(3718), - [sym_val_nothing] = STATE(3723), - [sym_val_bool] = STATE(3630), - [sym_val_variable] = STATE(3723), - [sym_val_number] = STATE(3723), - [sym__val_number_decimal] = STATE(3406), - [sym__val_number] = STATE(3703), - [sym_val_duration] = STATE(3723), - [sym_val_filesize] = STATE(3723), - [sym_val_binary] = STATE(3723), - [sym_val_string] = STATE(3723), - [sym__raw_str] = STATE(3573), - [sym__str_double_quotes] = STATE(3573), - [sym_val_interpolated] = STATE(3723), - [sym__inter_single_quotes] = STATE(3704), - [sym__inter_double_quotes] = STATE(3705), - [sym_val_list] = STATE(3723), - [sym_val_record] = STATE(3723), - [sym_val_table] = STATE(3723), - [sym_val_closure] = STATE(3723), - [sym_unquoted] = STATE(3639), - [sym__unquoted_anonymous_prefix] = STATE(7965), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6168), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(6753), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5370), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6169), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4219), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [aux_sym__val_number_decimal_token1] = ACTIONS(4223), - [aux_sym__val_number_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token3] = ACTIONS(4227), - [aux_sym__val_number_decimal_token4] = ACTIONS(4229), - [aux_sym__val_number_token1] = ACTIONS(4231), - [aux_sym__val_number_token2] = ACTIONS(4231), - [aux_sym__val_number_token3] = ACTIONS(4231), - [aux_sym__val_number_token4] = ACTIONS(4233), - [aux_sym__val_number_token5] = ACTIONS(4233), - [aux_sym__val_number_token6] = ACTIONS(4233), - [anon_sym_0b] = ACTIONS(4235), - [anon_sym_0o] = ACTIONS(4237), - [anon_sym_0x] = ACTIONS(4237), - [sym_val_date] = ACTIONS(4239), - [anon_sym_DQUOTE] = ACTIONS(4241), - [sym__str_single_quotes] = ACTIONS(4243), - [sym__str_back_ticks] = ACTIONS(4243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [aux_sym__val_number_decimal_token1] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4271), + [aux_sym__val_number_decimal_token3] = ACTIONS(4273), + [aux_sym__val_number_decimal_token4] = ACTIONS(4275), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4277), + [aux_sym__val_number_token5] = ACTIONS(4277), + [aux_sym__val_number_token6] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1278] = { - [sym__val_range] = STATE(7842), - [sym__value] = STATE(1732), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1702), - [sym_val_variable] = STATE(1829), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1404), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_unquoted] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7788), + [sym__expr_parenthesized_immediate] = STATE(7490), [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), - [anon_sym_DOT_DOT_LT] = ACTIONS(4257), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [aux_sym__val_number_decimal_token3] = ACTIONS(4267), - [aux_sym__val_number_decimal_token4] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(4271), - [aux_sym__val_number_token5] = ACTIONS(4271), - [aux_sym__val_number_token6] = ACTIONS(4271), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(4273), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT2] = ACTIONS(4283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4285), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4285), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(4287), + [sym_duration_unit] = ACTIONS(4289), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, [1279] = { [sym_comment] = STATE(1279), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4277), - [aux_sym__immediate_decimal_token2] = ACTIONS(4279), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1280] = { - [sym__val_range] = STATE(7780), - [sym__value] = STATE(2994), - [sym_val_nothing] = STATE(2937), - [sym_val_bool] = STATE(2886), - [sym_val_variable] = STATE(2937), - [sym_val_number] = STATE(2937), - [sym__val_number_decimal] = STATE(2555), - [sym__val_number] = STATE(2962), - [sym_val_duration] = STATE(2937), - [sym_val_filesize] = STATE(2937), - [sym_val_binary] = STATE(2937), - [sym_val_string] = STATE(2937), - [sym__raw_str] = STATE(3005), - [sym__str_double_quotes] = STATE(3005), - [sym_val_interpolated] = STATE(2937), - [sym__inter_single_quotes] = STATE(2980), - [sym__inter_double_quotes] = STATE(2981), - [sym_val_list] = STATE(2937), - [sym_val_record] = STATE(2937), - [sym_val_table] = STATE(2937), - [sym_val_closure] = STATE(2937), - [sym_unquoted] = STATE(3009), - [sym__unquoted_anonymous_prefix] = STATE(7890), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6030), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(7205), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5606), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_DOLLAR] = ACTIONS(4285), - [anon_sym_LBRACE] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [aux_sym__val_number_decimal_token1] = ACTIONS(4297), - [aux_sym__val_number_decimal_token2] = ACTIONS(4299), - [aux_sym__val_number_decimal_token3] = ACTIONS(4301), - [aux_sym__val_number_decimal_token4] = ACTIONS(4303), - [aux_sym__val_number_token1] = ACTIONS(4305), - [aux_sym__val_number_token2] = ACTIONS(4305), - [aux_sym__val_number_token3] = ACTIONS(4305), - [aux_sym__val_number_token4] = ACTIONS(4307), - [aux_sym__val_number_token5] = ACTIONS(4307), - [aux_sym__val_number_token6] = ACTIONS(4307), - [anon_sym_0b] = ACTIONS(4309), - [anon_sym_0o] = ACTIONS(4311), - [anon_sym_0x] = ACTIONS(4311), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4315), - [sym__str_single_quotes] = ACTIONS(4317), - [sym__str_back_ticks] = ACTIONS(4317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4319), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4321), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1281] = { - [sym__val_range] = STATE(7842), - [sym__value] = STATE(1751), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1702), - [sym_val_variable] = STATE(1829), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1404), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_unquoted] = STATE(1755), - [sym__unquoted_anonymous_prefix] = STATE(7788), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6168), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5255), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6169), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1281), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), - [anon_sym_DOT_DOT_LT] = ACTIONS(4257), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [aux_sym__val_number_decimal_token3] = ACTIONS(4267), - [aux_sym__val_number_decimal_token4] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(4271), - [aux_sym__val_number_token5] = ACTIONS(4271), - [aux_sym__val_number_token6] = ACTIONS(4271), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(4273), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1282] = { - [sym__val_range] = STATE(7932), - [sym__value] = STATE(5959), - [sym_val_nothing] = STATE(5879), - [sym_val_bool] = STATE(5689), - [sym_val_variable] = STATE(5879), - [sym_val_number] = STATE(5879), - [sym__val_number_decimal] = STATE(5141), - [sym__val_number] = STATE(5951), - [sym_val_duration] = STATE(5879), - [sym_val_filesize] = STATE(5879), - [sym_val_binary] = STATE(5879), - [sym_val_string] = STATE(5879), - [sym__raw_str] = STATE(5616), - [sym__str_double_quotes] = STATE(5616), - [sym_val_interpolated] = STATE(5879), - [sym__inter_single_quotes] = STATE(5824), - [sym__inter_double_quotes] = STATE(5825), - [sym_val_list] = STATE(5879), - [sym_val_record] = STATE(5879), - [sym_val_table] = STATE(5879), - [sym_val_closure] = STATE(5879), - [sym_unquoted] = STATE(5960), - [sym__unquoted_anonymous_prefix] = STATE(7904), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6036), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(6753), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5370), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6038), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DOT_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [aux_sym__val_number_decimal_token1] = ACTIONS(4091), - [aux_sym__val_number_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token3] = ACTIONS(4095), - [aux_sym__val_number_decimal_token4] = ACTIONS(4097), - [aux_sym__val_number_token1] = ACTIONS(4099), - [aux_sym__val_number_token2] = ACTIONS(4099), - [aux_sym__val_number_token3] = ACTIONS(4099), - [aux_sym__val_number_token4] = ACTIONS(4101), - [aux_sym__val_number_token5] = ACTIONS(4101), - [aux_sym__val_number_token6] = ACTIONS(4101), - [anon_sym_0b] = ACTIONS(4103), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [aux_sym__val_number_decimal_token1] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4271), + [aux_sym__val_number_decimal_token3] = ACTIONS(4273), + [aux_sym__val_number_decimal_token4] = ACTIONS(4275), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4277), + [aux_sym__val_number_token5] = ACTIONS(4277), + [aux_sym__val_number_token6] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1283] = { - [sym__val_range] = STATE(7842), - [sym__value] = STATE(1765), - [sym_val_nothing] = STATE(1829), - [sym_val_bool] = STATE(1702), - [sym_val_variable] = STATE(1829), - [sym_val_number] = STATE(1829), - [sym__val_number_decimal] = STATE(1404), - [sym__val_number] = STATE(1779), - [sym_val_duration] = STATE(1829), - [sym_val_filesize] = STATE(1829), - [sym_val_binary] = STATE(1829), - [sym_val_string] = STATE(1829), - [sym__raw_str] = STATE(1791), - [sym__str_double_quotes] = STATE(1791), - [sym_val_interpolated] = STATE(1829), - [sym__inter_single_quotes] = STATE(1798), - [sym__inter_double_quotes] = STATE(1799), - [sym_val_list] = STATE(1829), - [sym_val_record] = STATE(1829), - [sym_val_table] = STATE(1829), - [sym_val_closure] = STATE(1829), - [sym_unquoted] = STATE(1766), - [sym__unquoted_anonymous_prefix] = STATE(7788), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(4962), + [sym_val_nothing] = STATE(4902), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4902), + [sym_val_number] = STATE(4902), + [sym__val_number_decimal] = STATE(4144), + [sym__val_number] = STATE(4970), + [sym_val_duration] = STATE(4902), + [sym_val_filesize] = STATE(4902), + [sym_val_binary] = STATE(4902), + [sym_val_string] = STATE(4902), + [sym__raw_str] = STATE(4591), + [sym__str_double_quotes] = STATE(4591), + [sym_val_interpolated] = STATE(4902), + [sym__inter_single_quotes] = STATE(4933), + [sym__inter_double_quotes] = STATE(4935), + [sym_val_list] = STATE(4902), + [sym_val_record] = STATE(4902), + [sym_val_table] = STATE(4902), + [sym_val_closure] = STATE(4902), + [sym_unquoted] = STATE(4975), + [sym__unquoted_anonymous_prefix] = STATE(7857), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(4253), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(4255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), - [anon_sym_DOT_DOT_LT] = ACTIONS(4257), - [anon_sym_null] = ACTIONS(4259), - [anon_sym_true] = ACTIONS(4261), - [anon_sym_false] = ACTIONS(4261), - [aux_sym__val_number_decimal_token1] = ACTIONS(4263), - [aux_sym__val_number_decimal_token2] = ACTIONS(4265), - [aux_sym__val_number_decimal_token3] = ACTIONS(4267), - [aux_sym__val_number_decimal_token4] = ACTIONS(4269), - [aux_sym__val_number_token1] = ACTIONS(2653), - [aux_sym__val_number_token2] = ACTIONS(2653), - [aux_sym__val_number_token3] = ACTIONS(2653), - [aux_sym__val_number_token4] = ACTIONS(4271), - [aux_sym__val_number_token5] = ACTIONS(4271), - [aux_sym__val_number_token6] = ACTIONS(4271), - [anon_sym_0b] = ACTIONS(2657), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(4273), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2665), - [sym__str_back_ticks] = ACTIONS(2665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_DOT_DOT] = ACTIONS(4317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4319), + [anon_sym_DOT_DOT_LT] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2282), + [anon_sym_0o] = ACTIONS(2284), + [anon_sym_0x] = ACTIONS(2284), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2302), }, [1284] = { - [sym__val_range] = STATE(7932), - [sym__value] = STATE(5968), - [sym_val_nothing] = STATE(5879), - [sym_val_bool] = STATE(5689), - [sym_val_variable] = STATE(5879), - [sym_val_number] = STATE(5879), - [sym__val_number_decimal] = STATE(5141), - [sym__val_number] = STATE(5951), - [sym_val_duration] = STATE(5879), - [sym_val_filesize] = STATE(5879), - [sym_val_binary] = STATE(5879), - [sym_val_string] = STATE(5879), - [sym__raw_str] = STATE(5616), - [sym__str_double_quotes] = STATE(5616), - [sym_val_interpolated] = STATE(5879), - [sym__inter_single_quotes] = STATE(5824), - [sym__inter_double_quotes] = STATE(5825), - [sym_val_list] = STATE(5879), - [sym_val_record] = STATE(5879), - [sym_val_table] = STATE(5879), - [sym_val_closure] = STATE(5879), - [sym_unquoted] = STATE(5969), - [sym__unquoted_anonymous_prefix] = STATE(7904), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6066), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(6753), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5370), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6072), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DOT_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [aux_sym__val_number_decimal_token1] = ACTIONS(4091), - [aux_sym__val_number_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token3] = ACTIONS(4095), - [aux_sym__val_number_decimal_token4] = ACTIONS(4097), - [aux_sym__val_number_token1] = ACTIONS(4099), - [aux_sym__val_number_token2] = ACTIONS(4099), - [aux_sym__val_number_token3] = ACTIONS(4099), - [aux_sym__val_number_token4] = ACTIONS(4101), - [aux_sym__val_number_token5] = ACTIONS(4101), - [aux_sym__val_number_token6] = ACTIONS(4101), - [anon_sym_0b] = ACTIONS(4103), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [aux_sym__val_number_decimal_token1] = ACTIONS(4269), + [aux_sym__val_number_decimal_token2] = ACTIONS(4271), + [aux_sym__val_number_decimal_token3] = ACTIONS(4273), + [aux_sym__val_number_decimal_token4] = ACTIONS(4275), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4277), + [aux_sym__val_number_token5] = ACTIONS(4277), + [aux_sym__val_number_token6] = ACTIONS(4277), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1285] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(5569), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5723), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(5603), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4902), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4902), + [sym_val_number] = STATE(4902), + [sym__val_number_decimal] = STATE(4144), + [sym__val_number] = STATE(4970), + [sym_val_duration] = STATE(4902), + [sym_val_filesize] = STATE(4902), + [sym_val_binary] = STATE(4902), + [sym_val_string] = STATE(4902), + [sym__raw_str] = STATE(4591), + [sym__str_double_quotes] = STATE(4591), + [sym_val_interpolated] = STATE(4902), + [sym__inter_single_quotes] = STATE(4933), + [sym__inter_double_quotes] = STATE(4935), + [sym_val_list] = STATE(4902), + [sym_val_record] = STATE(4902), + [sym_val_table] = STATE(4902), + [sym_val_closure] = STATE(4902), + [sym_unquoted] = STATE(4845), + [sym__unquoted_anonymous_prefix] = STATE(7857), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_true] = ACTIONS(4337), - [anon_sym_false] = ACTIONS(4337), - [aux_sym__val_number_decimal_token1] = ACTIONS(4339), - [aux_sym__val_number_decimal_token2] = ACTIONS(4341), - [aux_sym__val_number_decimal_token3] = ACTIONS(4343), - [aux_sym__val_number_decimal_token4] = ACTIONS(4345), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4347), - [aux_sym__val_number_token5] = ACTIONS(4347), - [aux_sym__val_number_token6] = ACTIONS(4347), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4349), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_DOT_DOT] = ACTIONS(4317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4319), + [anon_sym_DOT_DOT_LT] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2282), + [anon_sym_0o] = ACTIONS(2284), + [anon_sym_0x] = ACTIONS(2284), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2302), }, [1286] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(7880), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2875), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7970), - [sym_val_nothing] = STATE(3162), - [sym_val_bool] = STATE(3037), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3162), - [sym__val_number_decimal] = STATE(2683), - [sym__val_number] = STATE(3147), - [sym_val_duration] = STATE(3162), - [sym_val_filesize] = STATE(3162), - [sym_val_binary] = STATE(3162), - [sym_val_string] = STATE(3162), - [sym__raw_str] = STATE(3125), - [sym__str_double_quotes] = STATE(3125), - [sym_val_table] = STATE(3162), - [sym__unquoted_in_list] = STATE(3167), - [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1286), - [aux_sym__match_pattern_list_repeat1] = STATE(1366), - [anon_sym_LBRACK] = ACTIONS(4351), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), - [anon_sym_DOT_DOT_LT] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3951), - [aux_sym__val_number_decimal_token3] = ACTIONS(3953), - [aux_sym__val_number_decimal_token4] = ACTIONS(3955), - [aux_sym__val_number_token1] = ACTIONS(3957), - [aux_sym__val_number_token2] = ACTIONS(3957), - [aux_sym__val_number_token3] = ACTIONS(3957), - [aux_sym__val_number_token4] = ACTIONS(3959), - [aux_sym__val_number_token5] = ACTIONS(3959), - [aux_sym__val_number_token6] = ACTIONS(3959), - [anon_sym_0b] = ACTIONS(3961), - [anon_sym_0o] = ACTIONS(3963), - [anon_sym_0x] = ACTIONS(3963), - [sym_val_date] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(3967), - [sym__str_single_quotes] = ACTIONS(3969), - [sym__str_back_ticks] = ACTIONS(3969), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3973), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1287] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6117), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5248), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6143), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(4980), + [sym_val_nothing] = STATE(4902), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4902), + [sym_val_number] = STATE(4902), + [sym__val_number_decimal] = STATE(4144), + [sym__val_number] = STATE(4970), + [sym_val_duration] = STATE(4902), + [sym_val_filesize] = STATE(4902), + [sym_val_binary] = STATE(4902), + [sym_val_string] = STATE(4902), + [sym__raw_str] = STATE(4591), + [sym__str_double_quotes] = STATE(4591), + [sym_val_interpolated] = STATE(4902), + [sym__inter_single_quotes] = STATE(4933), + [sym__inter_double_quotes] = STATE(4935), + [sym_val_list] = STATE(4902), + [sym_val_record] = STATE(4902), + [sym_val_table] = STATE(4902), + [sym_val_closure] = STATE(4902), + [sym_unquoted] = STATE(4981), + [sym__unquoted_anonymous_prefix] = STATE(7857), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_DOT_DOT] = ACTIONS(4317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4319), + [anon_sym_DOT_DOT_LT] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2282), + [anon_sym_0o] = ACTIONS(2284), + [anon_sym_0x] = ACTIONS(2284), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2302), }, [1288] = { - [sym__val_range] = STATE(7745), - [sym__value] = STATE(5501), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(5617), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(4868), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3343), - [sym__str_double_quotes] = STATE(3343), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(5502), - [sym__unquoted_anonymous_prefix] = STATE(7746), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4720), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(7446), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(5508), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4796), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [aux_sym__val_number_decimal_token3] = ACTIONS(4395), - [aux_sym__val_number_decimal_token4] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4375), + [aux_sym__val_number_token5] = ACTIONS(4375), + [aux_sym__val_number_token6] = ACTIONS(4375), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1289] = { - [sym__val_range] = STATE(7932), - [sym__value] = STATE(5982), - [sym_val_nothing] = STATE(5879), - [sym_val_bool] = STATE(5689), - [sym_val_variable] = STATE(5879), - [sym_val_number] = STATE(5879), - [sym__val_number_decimal] = STATE(5141), - [sym__val_number] = STATE(5951), - [sym_val_duration] = STATE(5879), - [sym_val_filesize] = STATE(5879), - [sym_val_binary] = STATE(5879), - [sym_val_string] = STATE(5879), - [sym__raw_str] = STATE(5616), - [sym__str_double_quotes] = STATE(5616), - [sym_val_interpolated] = STATE(5879), - [sym__inter_single_quotes] = STATE(5824), - [sym__inter_double_quotes] = STATE(5825), - [sym_val_list] = STATE(5879), - [sym_val_record] = STATE(5879), - [sym_val_table] = STATE(5879), - [sym_val_closure] = STATE(5879), - [sym_unquoted] = STATE(5983), - [sym__unquoted_anonymous_prefix] = STATE(7904), + [sym__val_range] = STATE(7833), + [sym__value] = STATE(5002), + [sym_val_nothing] = STATE(4902), + [sym_val_bool] = STATE(4543), + [sym_val_variable] = STATE(4902), + [sym_val_number] = STATE(4902), + [sym__val_number_decimal] = STATE(4144), + [sym__val_number] = STATE(4970), + [sym_val_duration] = STATE(4902), + [sym_val_filesize] = STATE(4902), + [sym_val_binary] = STATE(4902), + [sym_val_string] = STATE(4902), + [sym__raw_str] = STATE(4591), + [sym__str_double_quotes] = STATE(4591), + [sym_val_interpolated] = STATE(4902), + [sym__inter_single_quotes] = STATE(4933), + [sym__inter_double_quotes] = STATE(4935), + [sym_val_list] = STATE(4902), + [sym_val_record] = STATE(4902), + [sym_val_table] = STATE(4902), + [sym_val_closure] = STATE(4902), + [sym_unquoted] = STATE(4895), + [sym__unquoted_anonymous_prefix] = STATE(7857), [sym_comment] = STATE(1289), - [anon_sym_LBRACK] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4077), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4081), - [anon_sym_DOT_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), - [anon_sym_DOT_DOT_LT] = ACTIONS(4085), - [anon_sym_null] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4089), - [anon_sym_false] = ACTIONS(4089), - [aux_sym__val_number_decimal_token1] = ACTIONS(4091), - [aux_sym__val_number_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token3] = ACTIONS(4095), - [aux_sym__val_number_decimal_token4] = ACTIONS(4097), - [aux_sym__val_number_token1] = ACTIONS(4099), - [aux_sym__val_number_token2] = ACTIONS(4099), - [aux_sym__val_number_token3] = ACTIONS(4099), - [aux_sym__val_number_token4] = ACTIONS(4101), - [aux_sym__val_number_token5] = ACTIONS(4101), - [aux_sym__val_number_token6] = ACTIONS(4101), - [anon_sym_0b] = ACTIONS(4103), - [anon_sym_0o] = ACTIONS(4105), - [anon_sym_0x] = ACTIONS(4105), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym__str_single_quotes] = ACTIONS(4111), - [sym__str_back_ticks] = ACTIONS(4111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_DOT_DOT] = ACTIONS(4317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4319), + [anon_sym_DOT_DOT_LT] = ACTIONS(4319), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(4331), + [aux_sym__val_number_token2] = ACTIONS(4331), + [aux_sym__val_number_token3] = ACTIONS(4331), + [aux_sym__val_number_token4] = ACTIONS(4333), + [aux_sym__val_number_token5] = ACTIONS(4333), + [aux_sym__val_number_token6] = ACTIONS(4333), + [anon_sym_0b] = ACTIONS(2282), + [anon_sym_0o] = ACTIONS(2284), + [anon_sym_0x] = ACTIONS(2284), + [sym_val_date] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym__str_single_quotes] = ACTIONS(4339), + [sym__str_back_ticks] = ACTIONS(4339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4343), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2302), }, [1290] = { - [sym__val_range] = STATE(7745), - [sym__value] = STATE(5514), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(5617), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(4868), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3343), - [sym__str_double_quotes] = STATE(3343), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(5515), - [sym__unquoted_anonymous_prefix] = STATE(7746), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4642), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(7446), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(5508), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4644), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [aux_sym__val_number_decimal_token3] = ACTIONS(4395), - [aux_sym__val_number_decimal_token4] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4375), + [aux_sym__val_number_token5] = ACTIONS(4375), + [aux_sym__val_number_token6] = ACTIONS(4375), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1291] = { - [sym__val_range] = STATE(7745), - [sym__value] = STATE(5569), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(5617), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(4868), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3343), - [sym__str_double_quotes] = STATE(3343), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(5603), - [sym__unquoted_anonymous_prefix] = STATE(7746), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4781), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(7446), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(5508), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4782), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [aux_sym__val_number_decimal_token3] = ACTIONS(4395), - [aux_sym__val_number_decimal_token4] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4375), + [aux_sym__val_number_token5] = ACTIONS(4375), + [aux_sym__val_number_token6] = ACTIONS(4375), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1292] = { - [sym__val_range] = STATE(7745), - [sym__value] = STATE(5629), - [sym_val_nothing] = STATE(3510), - [sym_val_bool] = STATE(5617), - [sym_val_variable] = STATE(3510), - [sym_val_number] = STATE(3510), - [sym__val_number_decimal] = STATE(4868), - [sym__val_number] = STATE(3521), - [sym_val_duration] = STATE(3510), - [sym_val_filesize] = STATE(3510), - [sym_val_binary] = STATE(3510), - [sym_val_string] = STATE(3510), - [sym__raw_str] = STATE(3343), - [sym__str_double_quotes] = STATE(3343), - [sym_val_interpolated] = STATE(3510), - [sym__inter_single_quotes] = STATE(3540), - [sym__inter_double_quotes] = STATE(3518), - [sym_val_list] = STATE(3510), - [sym_val_record] = STATE(3510), - [sym_val_table] = STATE(3510), - [sym_val_closure] = STATE(3510), - [sym_unquoted] = STATE(5503), - [sym__unquoted_anonymous_prefix] = STATE(7746), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4720), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4096), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4796), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), [anon_sym_null] = ACTIONS(4387), [anon_sym_true] = ACTIONS(4389), [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(4391), - [aux_sym__val_number_decimal_token2] = ACTIONS(4393), - [aux_sym__val_number_decimal_token3] = ACTIONS(4395), - [aux_sym__val_number_decimal_token4] = ACTIONS(4397), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(3425), - [anon_sym_0o] = ACTIONS(3427), - [anon_sym_0x] = ACTIONS(3427), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1293] = { - [sym__expr_parenthesized_immediate] = STATE(1800), - [sym__immediate_decimal] = STATE(1804), - [sym_val_variable] = STATE(1800), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4640), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(7446), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(5508), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4641), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1293), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4409), - [aux_sym__immediate_decimal_token3] = ACTIONS(4411), - [aux_sym__immediate_decimal_token4] = ACTIONS(4413), - [aux_sym__immediate_decimal_token5] = ACTIONS(4415), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1593), - [anon_sym_0o] = ACTIONS(1593), - [anon_sym_0x] = ACTIONS(1593), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1593), - [anon_sym_out_GT] = ACTIONS(1593), - [anon_sym_e_GT] = ACTIONS(1593), - [anon_sym_o_GT] = ACTIONS(1593), - [anon_sym_err_PLUSout_GT] = ACTIONS(1593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), - [anon_sym_o_PLUSe_GT] = ACTIONS(1593), - [anon_sym_e_PLUSo_GT] = ACTIONS(1593), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4363), + [anon_sym_false] = ACTIONS(4363), + [aux_sym__val_number_decimal_token1] = ACTIONS(4365), + [aux_sym__val_number_decimal_token2] = ACTIONS(4367), + [aux_sym__val_number_decimal_token3] = ACTIONS(4369), + [aux_sym__val_number_decimal_token4] = ACTIONS(4371), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4375), + [aux_sym__val_number_token5] = ACTIONS(4375), + [aux_sym__val_number_token6] = ACTIONS(4375), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1294] = { - [sym__val_range] = STATE(7720), - [sym__value] = STATE(1896), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1846), - [sym_val_variable] = STATE(1876), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_unquoted] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7785), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4642), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4096), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4644), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4441), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1295] = { + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6066), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5255), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6072), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1295), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4443), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1296] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(5629), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5723), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(5503), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_true] = ACTIONS(4337), - [anon_sym_false] = ACTIONS(4337), - [aux_sym__val_number_decimal_token1] = ACTIONS(4339), - [aux_sym__val_number_decimal_token2] = ACTIONS(4341), - [aux_sym__val_number_decimal_token3] = ACTIONS(4343), - [aux_sym__val_number_decimal_token4] = ACTIONS(4345), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4347), - [aux_sym__val_number_token5] = ACTIONS(4347), - [aux_sym__val_number_token6] = ACTIONS(4347), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4349), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4083), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1297] = { - [sym__expr_parenthesized_immediate] = STATE(1650), - [sym__immediate_decimal] = STATE(1633), - [sym_val_variable] = STATE(1650), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4781), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4096), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4782), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(4063), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4447), - [aux_sym__immediate_decimal_token3] = ACTIONS(4449), - [aux_sym__immediate_decimal_token4] = ACTIONS(4451), - [aux_sym__immediate_decimal_token5] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1593), - [anon_sym_0o] = ACTIONS(1593), - [anon_sym_0x] = ACTIONS(1593), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1593), - [anon_sym_out_GT] = ACTIONS(1593), - [anon_sym_e_GT] = ACTIONS(1593), - [anon_sym_o_GT] = ACTIONS(1593), - [anon_sym_err_PLUSout_GT] = ACTIONS(1593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), - [anon_sym_o_PLUSe_GT] = ACTIONS(1593), - [anon_sym_e_PLUSo_GT] = ACTIONS(1593), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1298] = { - [sym__val_range] = STATE(7720), - [sym__value] = STATE(1955), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1846), - [sym_val_variable] = STATE(1876), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_unquoted] = STATE(1956), - [sym__unquoted_anonymous_prefix] = STATE(7785), + [sym__val_range] = STATE(7944), + [sym__value] = STATE(3667), + [sym_val_nothing] = STATE(3716), + [sym_val_bool] = STATE(3606), + [sym_val_variable] = STATE(3716), + [sym_val_number] = STATE(3716), + [sym__val_number_decimal] = STATE(3404), + [sym__val_number] = STATE(3682), + [sym_val_duration] = STATE(3716), + [sym_val_filesize] = STATE(3716), + [sym_val_binary] = STATE(3716), + [sym_val_string] = STATE(3716), + [sym__raw_str] = STATE(3567), + [sym__str_double_quotes] = STATE(3567), + [sym_val_interpolated] = STATE(3716), + [sym__inter_single_quotes] = STATE(3683), + [sym__inter_double_quotes] = STATE(3684), + [sym_val_list] = STATE(3716), + [sym_val_record] = STATE(3716), + [sym_val_table] = STATE(3716), + [sym_val_closure] = STATE(3716), + [sym_unquoted] = STATE(3668), + [sym__unquoted_anonymous_prefix] = STATE(8060), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4441), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4411), + [anon_sym_DOT_DOT_LT] = ACTIONS(4411), + [anon_sym_null] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4415), + [anon_sym_false] = ACTIONS(4415), + [aux_sym__val_number_decimal_token1] = ACTIONS(4417), + [aux_sym__val_number_decimal_token2] = ACTIONS(4419), + [aux_sym__val_number_decimal_token3] = ACTIONS(4421), + [aux_sym__val_number_decimal_token4] = ACTIONS(4423), + [aux_sym__val_number_token1] = ACTIONS(4425), + [aux_sym__val_number_token2] = ACTIONS(4425), + [aux_sym__val_number_token3] = ACTIONS(4425), + [aux_sym__val_number_token4] = ACTIONS(4427), + [aux_sym__val_number_token5] = ACTIONS(4427), + [aux_sym__val_number_token6] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(4429), + [anon_sym_0o] = ACTIONS(4431), + [anon_sym_0x] = ACTIONS(4431), + [sym_val_date] = ACTIONS(4433), + [anon_sym_DQUOTE] = ACTIONS(4435), + [sym__str_single_quotes] = ACTIONS(4437), + [sym__str_back_ticks] = ACTIONS(4437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4445), }, [1299] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(6117), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5707), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(6143), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__val_range] = STATE(7850), + [sym__value] = STATE(4640), + [sym_val_nothing] = STATE(4690), + [sym_val_bool] = STATE(4451), + [sym_val_variable] = STATE(4690), + [sym_val_number] = STATE(4690), + [sym__val_number_decimal] = STATE(4096), + [sym__val_number] = STATE(4777), + [sym_val_duration] = STATE(4690), + [sym_val_filesize] = STATE(4690), + [sym_val_binary] = STATE(4690), + [sym_val_string] = STATE(4690), + [sym__raw_str] = STATE(4475), + [sym__str_double_quotes] = STATE(4475), + [sym_val_interpolated] = STATE(4690), + [sym__inter_single_quotes] = STATE(4693), + [sym__inter_double_quotes] = STATE(4694), + [sym_val_list] = STATE(4690), + [sym_val_record] = STATE(4690), + [sym_val_table] = STATE(4690), + [sym_val_closure] = STATE(4690), + [sym_unquoted] = STATE(4641), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_DOLLAR] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_DOT_DOT] = ACTIONS(4357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4359), + [anon_sym_DOT_DOT_LT] = ACTIONS(4359), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4373), + [aux_sym__val_number_token2] = ACTIONS(4373), + [aux_sym__val_number_token3] = ACTIONS(4373), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2135), + [anon_sym_0x] = ACTIONS(2135), + [sym_val_date] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4379), + [sym__str_single_quotes] = ACTIONS(4381), + [sym__str_back_ticks] = ACTIONS(4381), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4385), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2153), }, [1300] = { - [sym__val_range] = STATE(7720), - [sym__value] = STATE(1894), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1846), - [sym_val_variable] = STATE(1876), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_unquoted] = STATE(1895), - [sym__unquoted_anonymous_prefix] = STATE(7785), + [sym__val_range] = STATE(7944), + [sym__value] = STATE(3675), + [sym_val_nothing] = STATE(3716), + [sym_val_bool] = STATE(3606), + [sym_val_variable] = STATE(3716), + [sym_val_number] = STATE(3716), + [sym__val_number_decimal] = STATE(3404), + [sym__val_number] = STATE(3682), + [sym_val_duration] = STATE(3716), + [sym_val_filesize] = STATE(3716), + [sym_val_binary] = STATE(3716), + [sym_val_string] = STATE(3716), + [sym__raw_str] = STATE(3567), + [sym__str_double_quotes] = STATE(3567), + [sym_val_interpolated] = STATE(3716), + [sym__inter_single_quotes] = STATE(3683), + [sym__inter_double_quotes] = STATE(3684), + [sym_val_list] = STATE(3716), + [sym_val_record] = STATE(3716), + [sym_val_table] = STATE(3716), + [sym_val_closure] = STATE(3716), + [sym_unquoted] = STATE(3676), + [sym__unquoted_anonymous_prefix] = STATE(8060), [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4441), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4411), + [anon_sym_DOT_DOT_LT] = ACTIONS(4411), + [anon_sym_null] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4415), + [anon_sym_false] = ACTIONS(4415), + [aux_sym__val_number_decimal_token1] = ACTIONS(4417), + [aux_sym__val_number_decimal_token2] = ACTIONS(4419), + [aux_sym__val_number_decimal_token3] = ACTIONS(4421), + [aux_sym__val_number_decimal_token4] = ACTIONS(4423), + [aux_sym__val_number_token1] = ACTIONS(4425), + [aux_sym__val_number_token2] = ACTIONS(4425), + [aux_sym__val_number_token3] = ACTIONS(4425), + [aux_sym__val_number_token4] = ACTIONS(4427), + [aux_sym__val_number_token5] = ACTIONS(4427), + [aux_sym__val_number_token6] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(4429), + [anon_sym_0o] = ACTIONS(4431), + [anon_sym_0x] = ACTIONS(4431), + [sym_val_date] = ACTIONS(4433), + [anon_sym_DQUOTE] = ACTIONS(4435), + [sym__str_single_quotes] = ACTIONS(4437), + [sym__str_back_ticks] = ACTIONS(4437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4445), }, [1301] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6217), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(6436), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6239), - [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4447), + [aux_sym__immediate_decimal_token2] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1302] = { + [sym__val_range] = STATE(7944), + [sym__value] = STATE(3692), + [sym_val_nothing] = STATE(3716), + [sym_val_bool] = STATE(3606), + [sym_val_variable] = STATE(3716), + [sym_val_number] = STATE(3716), + [sym__val_number_decimal] = STATE(3404), + [sym__val_number] = STATE(3682), + [sym_val_duration] = STATE(3716), + [sym_val_filesize] = STATE(3716), + [sym_val_binary] = STATE(3716), + [sym_val_string] = STATE(3716), + [sym__raw_str] = STATE(3567), + [sym__str_double_quotes] = STATE(3567), + [sym_val_interpolated] = STATE(3716), + [sym__inter_single_quotes] = STATE(3683), + [sym__inter_double_quotes] = STATE(3684), + [sym_val_list] = STATE(3716), + [sym_val_record] = STATE(3716), + [sym_val_table] = STATE(3716), + [sym_val_closure] = STATE(3716), + [sym_unquoted] = STATE(3694), + [sym__unquoted_anonymous_prefix] = STATE(8060), + [sym_comment] = STATE(1302), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4411), + [anon_sym_DOT_DOT_LT] = ACTIONS(4411), + [anon_sym_null] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4415), + [anon_sym_false] = ACTIONS(4415), + [aux_sym__val_number_decimal_token1] = ACTIONS(4417), + [aux_sym__val_number_decimal_token2] = ACTIONS(4419), + [aux_sym__val_number_decimal_token3] = ACTIONS(4421), + [aux_sym__val_number_decimal_token4] = ACTIONS(4423), + [aux_sym__val_number_token1] = ACTIONS(4425), + [aux_sym__val_number_token2] = ACTIONS(4425), + [aux_sym__val_number_token3] = ACTIONS(4425), + [aux_sym__val_number_token4] = ACTIONS(4427), + [aux_sym__val_number_token5] = ACTIONS(4427), + [aux_sym__val_number_token6] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(4429), + [anon_sym_0o] = ACTIONS(4431), + [anon_sym_0x] = ACTIONS(4431), + [sym_val_date] = ACTIONS(4433), + [anon_sym_DQUOTE] = ACTIONS(4435), + [sym__str_single_quotes] = ACTIONS(4437), + [sym__str_back_ticks] = ACTIONS(4437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4445), + }, + [1303] = { + [sym__val_range] = STATE(7861), + [sym__value] = STATE(1782), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1682), + [sym_val_variable] = STATE(1764), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_unquoted] = STATE(1786), + [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym_comment] = STATE(1303), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(4451), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), [anon_sym_null] = ACTIONS(4457), [anon_sym_true] = ACTIONS(4459), [anon_sym_false] = ACTIONS(4459), @@ -202119,887 +340337,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4463), [aux_sym__val_number_decimal_token3] = ACTIONS(4465), [aux_sym__val_number_decimal_token4] = ACTIONS(4467), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), [aux_sym__val_number_token4] = ACTIONS(4469), [aux_sym__val_number_token5] = ACTIONS(4469), [aux_sym__val_number_token6] = ACTIONS(4469), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), [sym_val_date] = ACTIONS(4471), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), - }, - [1302] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6117), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5270), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6143), - [sym__unquoted_anonymous_prefix] = STATE(7847), - [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4475), - [aux_sym__val_number_decimal_token3] = ACTIONS(4477), - [aux_sym__val_number_decimal_token4] = ACTIONS(4479), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4481), - [aux_sym__val_number_token5] = ACTIONS(4481), - [aux_sym__val_number_token6] = ACTIONS(4481), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), - }, - [1303] = { - [sym__val_range] = STATE(7720), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1876), - [sym_val_bool] = STATE(1846), - [sym_val_variable] = STATE(1876), - [sym_val_number] = STATE(1876), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1949), - [sym_val_duration] = STATE(1876), - [sym_val_filesize] = STATE(1876), - [sym_val_binary] = STATE(1876), - [sym_val_string] = STATE(1876), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1876), - [sym__inter_single_quotes] = STATE(1935), - [sym__inter_double_quotes] = STATE(1936), - [sym_val_list] = STATE(1876), - [sym_val_record] = STATE(1876), - [sym_val_table] = STATE(1876), - [sym_val_closure] = STATE(1876), - [sym_unquoted] = STATE(1910), - [sym__unquoted_anonymous_prefix] = STATE(7785), - [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(3021), - [aux_sym__val_number_token2] = ACTIONS(3021), - [aux_sym__val_number_token3] = ACTIONS(3021), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(3025), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(3031), - [sym__str_single_quotes] = ACTIONS(3033), - [sym__str_back_ticks] = ACTIONS(3033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4441), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [1304] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6162), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(7278), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5602), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6182), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7944), + [sym__value] = STATE(3707), + [sym_val_nothing] = STATE(3716), + [sym_val_bool] = STATE(3606), + [sym_val_variable] = STATE(3716), + [sym_val_number] = STATE(3716), + [sym__val_number_decimal] = STATE(3404), + [sym__val_number] = STATE(3682), + [sym_val_duration] = STATE(3716), + [sym_val_filesize] = STATE(3716), + [sym_val_binary] = STATE(3716), + [sym_val_string] = STATE(3716), + [sym__raw_str] = STATE(3567), + [sym__str_double_quotes] = STATE(3567), + [sym_val_interpolated] = STATE(3716), + [sym__inter_single_quotes] = STATE(3683), + [sym__inter_double_quotes] = STATE(3684), + [sym_val_list] = STATE(3716), + [sym_val_record] = STATE(3716), + [sym_val_table] = STATE(3716), + [sym_val_closure] = STATE(3716), + [sym_unquoted] = STATE(3708), + [sym__unquoted_anonymous_prefix] = STATE(8060), [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4191), - [anon_sym_false] = ACTIONS(4191), - [aux_sym__val_number_decimal_token1] = ACTIONS(4193), - [aux_sym__val_number_decimal_token2] = ACTIONS(4195), - [aux_sym__val_number_decimal_token3] = ACTIONS(4197), - [aux_sym__val_number_decimal_token4] = ACTIONS(4199), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4201), - [aux_sym__val_number_token5] = ACTIONS(4201), - [aux_sym__val_number_token6] = ACTIONS(4201), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4411), + [anon_sym_DOT_DOT_LT] = ACTIONS(4411), + [anon_sym_null] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4415), + [anon_sym_false] = ACTIONS(4415), + [aux_sym__val_number_decimal_token1] = ACTIONS(4417), + [aux_sym__val_number_decimal_token2] = ACTIONS(4419), + [aux_sym__val_number_decimal_token3] = ACTIONS(4421), + [aux_sym__val_number_decimal_token4] = ACTIONS(4423), + [aux_sym__val_number_token1] = ACTIONS(4425), + [aux_sym__val_number_token2] = ACTIONS(4425), + [aux_sym__val_number_token3] = ACTIONS(4425), + [aux_sym__val_number_token4] = ACTIONS(4427), + [aux_sym__val_number_token5] = ACTIONS(4427), + [aux_sym__val_number_token6] = ACTIONS(4427), + [anon_sym_0b] = ACTIONS(4429), + [anon_sym_0o] = ACTIONS(4431), + [anon_sym_0x] = ACTIONS(4431), + [sym_val_date] = ACTIONS(4433), + [anon_sym_DQUOTE] = ACTIONS(4435), + [sym__str_single_quotes] = ACTIONS(4437), + [sym__str_back_ticks] = ACTIONS(4437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4439), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4445), }, [1305] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4684), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(6971), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(5511), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4685), - [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1305), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4157), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [aux_sym__val_number_decimal_token1] = ACTIONS(4161), - [aux_sym__val_number_decimal_token2] = ACTIONS(4163), - [aux_sym__val_number_decimal_token3] = ACTIONS(4165), - [aux_sym__val_number_decimal_token4] = ACTIONS(4167), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4169), - [aux_sym__val_number_token5] = ACTIONS(4169), - [aux_sym__val_number_token6] = ACTIONS(4169), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4475), + [aux_sym__immediate_decimal_token2] = ACTIONS(4477), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1306] = { + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6168), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5336), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6169), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1306), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4211), + [aux_sym__val_number_decimal_token2] = ACTIONS(4213), + [aux_sym__val_number_decimal_token3] = ACTIONS(4215), + [aux_sym__val_number_decimal_token4] = ACTIONS(4217), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4219), + [aux_sym__val_number_token5] = ACTIONS(4219), + [aux_sym__val_number_token6] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1307] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6217), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(7278), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5602), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6239), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7861), + [sym__value] = STATE(1753), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1682), + [sym_val_variable] = STATE(1764), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_unquoted] = STATE(1759), + [sym__unquoted_anonymous_prefix] = STATE(7937), [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4191), - [anon_sym_false] = ACTIONS(4191), - [aux_sym__val_number_decimal_token1] = ACTIONS(4193), - [aux_sym__val_number_decimal_token2] = ACTIONS(4195), - [aux_sym__val_number_decimal_token3] = ACTIONS(4197), - [aux_sym__val_number_decimal_token4] = ACTIONS(4199), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4201), - [aux_sym__val_number_token5] = ACTIONS(4201), - [aux_sym__val_number_token6] = ACTIONS(4201), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), - }, - [1308] = { - [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4485), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), - }, - [1309] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(6136), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5707), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(6137), - [sym__unquoted_anonymous_prefix] = STATE(7913), - [sym_comment] = STATE(1309), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), - }, - [1310] = { - [sym__expr_parenthesized_immediate] = STATE(1922), - [sym__immediate_decimal] = STATE(1695), - [sym_val_variable] = STATE(1922), - [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(1659), - [sym__newline] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_err_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_GT_PIPE] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(4489), - [aux_sym__immediate_decimal_token3] = ACTIONS(4491), - [aux_sym__immediate_decimal_token4] = ACTIONS(4493), - [aux_sym__immediate_decimal_token5] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [aux_sym__val_number_token4] = ACTIONS(1659), - [aux_sym__val_number_token5] = ACTIONS(1659), - [aux_sym__val_number_token6] = ACTIONS(1659), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1659), - [anon_sym_out_GT_GT] = ACTIONS(1659), - [anon_sym_e_GT_GT] = ACTIONS(1659), - [anon_sym_o_GT_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), - [aux_sym_unquoted_token1] = ACTIONS(1657), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1659), - }, - [1311] = { - [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4497), - [aux_sym__immediate_decimal_token2] = ACTIONS(4499), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), - }, - [1312] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6217), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5248), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6239), - [sym__unquoted_anonymous_prefix] = STATE(7847), - [sym_comment] = STATE(1312), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), - }, - [1313] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6162), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(6436), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6182), - [sym__unquoted_anonymous_prefix] = STATE(7847), - [sym_comment] = STATE(1313), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(4451), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), [anon_sym_null] = ACTIONS(4457), [anon_sym_true] = ACTIONS(4459), [anon_sym_false] = ACTIONS(4459), @@ -203007,147 +340633,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4463), [aux_sym__val_number_decimal_token3] = ACTIONS(4465), [aux_sym__val_number_decimal_token4] = ACTIONS(4467), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), [aux_sym__val_number_token4] = ACTIONS(4469), [aux_sym__val_number_token5] = ACTIONS(4469), [aux_sym__val_number_token6] = ACTIONS(4469), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), [sym_val_date] = ACTIONS(4471), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, - [1314] = { - [sym__val_range] = STATE(7779), - [sym__value] = STATE(4905), - [sym_val_nothing] = STATE(4888), - [sym_val_bool] = STATE(4601), - [sym_val_variable] = STATE(4888), - [sym_val_number] = STATE(4888), - [sym__val_number_decimal] = STATE(4115), - [sym__val_number] = STATE(4852), - [sym_val_duration] = STATE(4888), - [sym_val_filesize] = STATE(4888), - [sym_val_binary] = STATE(4888), - [sym_val_string] = STATE(4888), - [sym__raw_str] = STATE(4528), - [sym__str_double_quotes] = STATE(4528), - [sym_val_interpolated] = STATE(4888), - [sym__inter_single_quotes] = STATE(4891), - [sym__inter_double_quotes] = STATE(4896), - [sym_val_list] = STATE(4888), - [sym_val_record] = STATE(4888), - [sym_val_table] = STATE(4888), - [sym_val_closure] = STATE(4888), - [sym_unquoted] = STATE(4907), - [sym__unquoted_anonymous_prefix] = STATE(8056), - [sym_comment] = STATE(1314), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), - [anon_sym_DOT_DOT_LT] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_true] = ACTIONS(4515), - [anon_sym_false] = ACTIONS(4515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token3] = ACTIONS(4519), - [aux_sym__val_number_decimal_token4] = ACTIONS(4521), - [aux_sym__val_number_token1] = ACTIONS(4523), - [aux_sym__val_number_token2] = ACTIONS(4523), - [aux_sym__val_number_token3] = ACTIONS(4523), - [aux_sym__val_number_token4] = ACTIONS(4525), - [aux_sym__val_number_token5] = ACTIONS(4525), - [aux_sym__val_number_token6] = ACTIONS(4525), - [anon_sym_0b] = ACTIONS(2096), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4531), - [sym__str_back_ticks] = ACTIONS(4531), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2116), + [1308] = { + [sym__val_range] = STATE(7931), + [sym__value] = STATE(5968), + [sym_val_nothing] = STATE(5974), + [sym_val_bool] = STATE(5725), + [sym_val_variable] = STATE(5974), + [sym_val_number] = STATE(5974), + [sym__val_number_decimal] = STATE(5112), + [sym__val_number] = STATE(5819), + [sym_val_duration] = STATE(5974), + [sym_val_filesize] = STATE(5974), + [sym_val_binary] = STATE(5974), + [sym_val_string] = STATE(5974), + [sym__raw_str] = STATE(5511), + [sym__str_double_quotes] = STATE(5511), + [sym_val_interpolated] = STATE(5974), + [sym__inter_single_quotes] = STATE(5867), + [sym__inter_double_quotes] = STATE(5869), + [sym_val_list] = STATE(5974), + [sym_val_record] = STATE(5974), + [sym_val_table] = STATE(5974), + [sym_val_closure] = STATE(5974), + [sym_unquoted] = STATE(5969), + [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym_comment] = STATE(1308), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4489), + [anon_sym_DOT_DOT_LT] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [aux_sym__val_number_decimal_token1] = ACTIONS(4495), + [aux_sym__val_number_decimal_token2] = ACTIONS(4497), + [aux_sym__val_number_decimal_token3] = ACTIONS(4499), + [aux_sym__val_number_decimal_token4] = ACTIONS(4501), + [aux_sym__val_number_token1] = ACTIONS(4503), + [aux_sym__val_number_token2] = ACTIONS(4503), + [aux_sym__val_number_token3] = ACTIONS(4503), + [aux_sym__val_number_token4] = ACTIONS(4505), + [aux_sym__val_number_token5] = ACTIONS(4505), + [aux_sym__val_number_token6] = ACTIONS(4505), + [anon_sym_0b] = ACTIONS(4507), + [anon_sym_0o] = ACTIONS(4509), + [anon_sym_0x] = ACTIONS(4509), + [sym_val_date] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4513), + [sym__str_single_quotes] = ACTIONS(4515), + [sym__str_back_ticks] = ACTIONS(4515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4523), }, - [1315] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6136), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(6436), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6137), - [sym__unquoted_anonymous_prefix] = STATE(7847), - [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [1309] = { + [sym__val_range] = STATE(7861), + [sym__value] = STATE(1818), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1682), + [sym_val_variable] = STATE(1764), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_unquoted] = STATE(1836), + [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym_comment] = STATE(1309), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(4451), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), [anon_sym_null] = ACTIONS(4457), [anon_sym_true] = ACTIONS(4459), [anon_sym_false] = ACTIONS(4459), @@ -203155,1849 +340781,2293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4463), [aux_sym__val_number_decimal_token3] = ACTIONS(4465), [aux_sym__val_number_decimal_token4] = ACTIONS(4467), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), [aux_sym__val_number_token4] = ACTIONS(4469), [aux_sym__val_number_token5] = ACTIONS(4469), [aux_sym__val_number_token6] = ACTIONS(4469), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), [sym_val_date] = ACTIONS(4471), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), + }, + [1310] = { + [sym__val_range] = STATE(7931), + [sym__value] = STATE(5728), + [sym_val_nothing] = STATE(5974), + [sym_val_bool] = STATE(5725), + [sym_val_variable] = STATE(5974), + [sym_val_number] = STATE(5974), + [sym__val_number_decimal] = STATE(5112), + [sym__val_number] = STATE(5819), + [sym_val_duration] = STATE(5974), + [sym_val_filesize] = STATE(5974), + [sym_val_binary] = STATE(5974), + [sym_val_string] = STATE(5974), + [sym__raw_str] = STATE(5511), + [sym__str_double_quotes] = STATE(5511), + [sym_val_interpolated] = STATE(5974), + [sym__inter_single_quotes] = STATE(5867), + [sym__inter_double_quotes] = STATE(5869), + [sym_val_list] = STATE(5974), + [sym_val_record] = STATE(5974), + [sym_val_table] = STATE(5974), + [sym_val_closure] = STATE(5974), + [sym_unquoted] = STATE(6003), + [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym_comment] = STATE(1310), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4489), + [anon_sym_DOT_DOT_LT] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [aux_sym__val_number_decimal_token1] = ACTIONS(4495), + [aux_sym__val_number_decimal_token2] = ACTIONS(4497), + [aux_sym__val_number_decimal_token3] = ACTIONS(4499), + [aux_sym__val_number_decimal_token4] = ACTIONS(4501), + [aux_sym__val_number_token1] = ACTIONS(4503), + [aux_sym__val_number_token2] = ACTIONS(4503), + [aux_sym__val_number_token3] = ACTIONS(4503), + [aux_sym__val_number_token4] = ACTIONS(4505), + [aux_sym__val_number_token5] = ACTIONS(4505), + [aux_sym__val_number_token6] = ACTIONS(4505), + [anon_sym_0b] = ACTIONS(4507), + [anon_sym_0o] = ACTIONS(4509), + [anon_sym_0x] = ACTIONS(4509), + [sym_val_date] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4513), + [sym__str_single_quotes] = ACTIONS(4515), + [sym__str_back_ticks] = ACTIONS(4515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4523), + }, + [1311] = { + [sym_comment] = STATE(1311), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), + }, + [1312] = { + [sym__val_range] = STATE(7931), + [sym__value] = STATE(5888), + [sym_val_nothing] = STATE(5974), + [sym_val_bool] = STATE(5725), + [sym_val_variable] = STATE(5974), + [sym_val_number] = STATE(5974), + [sym__val_number_decimal] = STATE(5112), + [sym__val_number] = STATE(5819), + [sym_val_duration] = STATE(5974), + [sym_val_filesize] = STATE(5974), + [sym_val_binary] = STATE(5974), + [sym_val_string] = STATE(5974), + [sym__raw_str] = STATE(5511), + [sym__str_double_quotes] = STATE(5511), + [sym_val_interpolated] = STATE(5974), + [sym__inter_single_quotes] = STATE(5867), + [sym__inter_double_quotes] = STATE(5869), + [sym_val_list] = STATE(5974), + [sym_val_record] = STATE(5974), + [sym_val_table] = STATE(5974), + [sym_val_closure] = STATE(5974), + [sym_unquoted] = STATE(5908), + [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym_comment] = STATE(1312), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4489), + [anon_sym_DOT_DOT_LT] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [aux_sym__val_number_decimal_token1] = ACTIONS(4495), + [aux_sym__val_number_decimal_token2] = ACTIONS(4497), + [aux_sym__val_number_decimal_token3] = ACTIONS(4499), + [aux_sym__val_number_decimal_token4] = ACTIONS(4501), + [aux_sym__val_number_token1] = ACTIONS(4503), + [aux_sym__val_number_token2] = ACTIONS(4503), + [aux_sym__val_number_token3] = ACTIONS(4503), + [aux_sym__val_number_token4] = ACTIONS(4505), + [aux_sym__val_number_token5] = ACTIONS(4505), + [aux_sym__val_number_token6] = ACTIONS(4505), + [anon_sym_0b] = ACTIONS(4507), + [anon_sym_0o] = ACTIONS(4509), + [anon_sym_0x] = ACTIONS(4509), + [sym_val_date] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4513), + [sym__str_single_quotes] = ACTIONS(4515), + [sym__str_back_ticks] = ACTIONS(4515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4523), + }, + [1313] = { + [sym__val_range] = STATE(7767), + [sym__value] = STATE(5526), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(5514), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(4819), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3352), + [sym__str_double_quotes] = STATE(3352), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(5549), + [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym_comment] = STATE(1313), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_DOT_DOT] = ACTIONS(4535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4537), + [anon_sym_DOT_DOT_LT] = ACTIONS(4537), + [anon_sym_null] = ACTIONS(4539), + [anon_sym_true] = ACTIONS(4541), + [anon_sym_false] = ACTIONS(4541), + [aux_sym__val_number_decimal_token1] = ACTIONS(4543), + [aux_sym__val_number_decimal_token2] = ACTIONS(4545), + [aux_sym__val_number_decimal_token3] = ACTIONS(4547), + [aux_sym__val_number_decimal_token4] = ACTIONS(4549), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(4551), + [aux_sym__val_number_token5] = ACTIONS(4551), + [aux_sym__val_number_token6] = ACTIONS(4551), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(4553), + [anon_sym_DQUOTE] = ACTIONS(4555), + [sym__str_single_quotes] = ACTIONS(4557), + [sym__str_back_ticks] = ACTIONS(4557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4559), + }, + [1314] = { + [sym__val_range] = STATE(7931), + [sym__value] = STATE(5740), + [sym_val_nothing] = STATE(5974), + [sym_val_bool] = STATE(5725), + [sym_val_variable] = STATE(5974), + [sym_val_number] = STATE(5974), + [sym__val_number_decimal] = STATE(5112), + [sym__val_number] = STATE(5819), + [sym_val_duration] = STATE(5974), + [sym_val_filesize] = STATE(5974), + [sym_val_binary] = STATE(5974), + [sym_val_string] = STATE(5974), + [sym__raw_str] = STATE(5511), + [sym__str_double_quotes] = STATE(5511), + [sym_val_interpolated] = STATE(5974), + [sym__inter_single_quotes] = STATE(5867), + [sym__inter_double_quotes] = STATE(5869), + [sym_val_list] = STATE(5974), + [sym_val_record] = STATE(5974), + [sym_val_table] = STATE(5974), + [sym_val_closure] = STATE(5974), + [sym_unquoted] = STATE(5750), + [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym_comment] = STATE(1314), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_DOT_DOT] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4489), + [anon_sym_DOT_DOT_LT] = ACTIONS(4489), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_true] = ACTIONS(4493), + [anon_sym_false] = ACTIONS(4493), + [aux_sym__val_number_decimal_token1] = ACTIONS(4495), + [aux_sym__val_number_decimal_token2] = ACTIONS(4497), + [aux_sym__val_number_decimal_token3] = ACTIONS(4499), + [aux_sym__val_number_decimal_token4] = ACTIONS(4501), + [aux_sym__val_number_token1] = ACTIONS(4503), + [aux_sym__val_number_token2] = ACTIONS(4503), + [aux_sym__val_number_token3] = ACTIONS(4503), + [aux_sym__val_number_token4] = ACTIONS(4505), + [aux_sym__val_number_token5] = ACTIONS(4505), + [aux_sym__val_number_token6] = ACTIONS(4505), + [anon_sym_0b] = ACTIONS(4507), + [anon_sym_0o] = ACTIONS(4509), + [anon_sym_0x] = ACTIONS(4509), + [sym_val_date] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4513), + [sym__str_single_quotes] = ACTIONS(4515), + [sym__str_back_ticks] = ACTIONS(4515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4523), + }, + [1315] = { + [sym__val_range] = STATE(7767), + [sym__value] = STATE(5611), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(5514), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(4819), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3352), + [sym__str_double_quotes] = STATE(3352), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(5615), + [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym_comment] = STATE(1315), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_DOT_DOT] = ACTIONS(4535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4537), + [anon_sym_DOT_DOT_LT] = ACTIONS(4537), + [anon_sym_null] = ACTIONS(4539), + [anon_sym_true] = ACTIONS(4541), + [anon_sym_false] = ACTIONS(4541), + [aux_sym__val_number_decimal_token1] = ACTIONS(4543), + [aux_sym__val_number_decimal_token2] = ACTIONS(4545), + [aux_sym__val_number_decimal_token3] = ACTIONS(4547), + [aux_sym__val_number_decimal_token4] = ACTIONS(4549), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(4551), + [aux_sym__val_number_token5] = ACTIONS(4551), + [aux_sym__val_number_token6] = ACTIONS(4551), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(4553), + [anon_sym_DQUOTE] = ACTIONS(4555), + [sym__str_single_quotes] = ACTIONS(4557), + [sym__str_back_ticks] = ACTIONS(4557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4559), }, [1316] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(6162), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5707), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(6182), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__val_range] = STATE(7767), + [sym__value] = STATE(5518), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(5514), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(4819), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3352), + [sym__str_double_quotes] = STATE(3352), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(5519), + [sym__unquoted_anonymous_prefix] = STATE(7768), [sym_comment] = STATE(1316), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_DOT_DOT] = ACTIONS(4535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4537), + [anon_sym_DOT_DOT_LT] = ACTIONS(4537), + [anon_sym_null] = ACTIONS(4539), + [anon_sym_true] = ACTIONS(4541), + [anon_sym_false] = ACTIONS(4541), + [aux_sym__val_number_decimal_token1] = ACTIONS(4543), + [aux_sym__val_number_decimal_token2] = ACTIONS(4545), + [aux_sym__val_number_decimal_token3] = ACTIONS(4547), + [aux_sym__val_number_decimal_token4] = ACTIONS(4549), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(4551), + [aux_sym__val_number_token5] = ACTIONS(4551), + [aux_sym__val_number_token6] = ACTIONS(4551), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(4553), + [anon_sym_DQUOTE] = ACTIONS(4555), + [sym__str_single_quotes] = ACTIONS(4557), + [sym__str_back_ticks] = ACTIONS(4557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4559), }, [1317] = { - [sym__val_range] = STATE(7779), - [sym__value] = STATE(5004), - [sym_val_nothing] = STATE(4888), - [sym_val_bool] = STATE(4601), - [sym_val_variable] = STATE(4888), - [sym_val_number] = STATE(4888), - [sym__val_number_decimal] = STATE(4115), - [sym__val_number] = STATE(4852), - [sym_val_duration] = STATE(4888), - [sym_val_filesize] = STATE(4888), - [sym_val_binary] = STATE(4888), - [sym_val_string] = STATE(4888), - [sym__raw_str] = STATE(4528), - [sym__str_double_quotes] = STATE(4528), - [sym_val_interpolated] = STATE(4888), - [sym__inter_single_quotes] = STATE(4891), - [sym__inter_double_quotes] = STATE(4896), - [sym_val_list] = STATE(4888), - [sym_val_record] = STATE(4888), - [sym_val_table] = STATE(4888), - [sym_val_closure] = STATE(4888), - [sym_unquoted] = STATE(4839), - [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym__val_range] = STATE(7767), + [sym__value] = STATE(5533), + [sym_val_nothing] = STATE(3530), + [sym_val_bool] = STATE(5514), + [sym_val_variable] = STATE(3530), + [sym_val_number] = STATE(3530), + [sym__val_number_decimal] = STATE(4819), + [sym__val_number] = STATE(3528), + [sym_val_duration] = STATE(3530), + [sym_val_filesize] = STATE(3530), + [sym_val_binary] = STATE(3530), + [sym_val_string] = STATE(3530), + [sym__raw_str] = STATE(3352), + [sym__str_double_quotes] = STATE(3352), + [sym_val_interpolated] = STATE(3530), + [sym__inter_single_quotes] = STATE(3526), + [sym__inter_double_quotes] = STATE(3527), + [sym_val_list] = STATE(3530), + [sym_val_record] = STATE(3530), + [sym_val_table] = STATE(3530), + [sym_val_closure] = STATE(3530), + [sym_unquoted] = STATE(5534), + [sym__unquoted_anonymous_prefix] = STATE(7768), [sym_comment] = STATE(1317), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), - [anon_sym_DOT_DOT_LT] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_true] = ACTIONS(4515), - [anon_sym_false] = ACTIONS(4515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token3] = ACTIONS(4519), - [aux_sym__val_number_decimal_token4] = ACTIONS(4521), - [aux_sym__val_number_token1] = ACTIONS(4523), - [aux_sym__val_number_token2] = ACTIONS(4523), - [aux_sym__val_number_token3] = ACTIONS(4523), - [aux_sym__val_number_token4] = ACTIONS(4525), - [aux_sym__val_number_token5] = ACTIONS(4525), - [aux_sym__val_number_token6] = ACTIONS(4525), - [anon_sym_0b] = ACTIONS(2096), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4531), - [sym__str_back_ticks] = ACTIONS(4531), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_DOT_DOT] = ACTIONS(4535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4537), + [anon_sym_DOT_DOT_LT] = ACTIONS(4537), + [anon_sym_null] = ACTIONS(4539), + [anon_sym_true] = ACTIONS(4541), + [anon_sym_false] = ACTIONS(4541), + [aux_sym__val_number_decimal_token1] = ACTIONS(4543), + [aux_sym__val_number_decimal_token2] = ACTIONS(4545), + [aux_sym__val_number_decimal_token3] = ACTIONS(4547), + [aux_sym__val_number_decimal_token4] = ACTIONS(4549), + [aux_sym__val_number_token1] = ACTIONS(3525), + [aux_sym__val_number_token2] = ACTIONS(3525), + [aux_sym__val_number_token3] = ACTIONS(3525), + [aux_sym__val_number_token4] = ACTIONS(4551), + [aux_sym__val_number_token5] = ACTIONS(4551), + [aux_sym__val_number_token6] = ACTIONS(4551), + [anon_sym_0b] = ACTIONS(3529), + [anon_sym_0o] = ACTIONS(3531), + [anon_sym_0x] = ACTIONS(3531), + [sym_val_date] = ACTIONS(4553), + [anon_sym_DQUOTE] = ACTIONS(4555), + [sym__str_single_quotes] = ACTIONS(4557), + [sym__str_back_ticks] = ACTIONS(4557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4559), }, [1318] = { - [sym__expr_parenthesized_immediate] = STATE(1893), - [sym__immediate_decimal] = STATE(1719), - [sym_val_variable] = STATE(1893), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6030), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5255), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4489), - [aux_sym__immediate_decimal_token3] = ACTIONS(4491), - [aux_sym__immediate_decimal_token4] = ACTIONS(4493), - [aux_sym__immediate_decimal_token5] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1543), - [aux_sym__val_number_decimal_token2] = ACTIONS(1543), - [aux_sym__val_number_decimal_token3] = ACTIONS(1543), - [aux_sym__val_number_decimal_token4] = ACTIONS(1543), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1557), - [aux_sym__val_number_token5] = ACTIONS(1557), - [aux_sym__val_number_token6] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1543), - [anon_sym_0o] = ACTIONS(1543), - [anon_sym_0x] = ACTIONS(1543), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1543), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1557), - }, - [1319] = { - [sym__val_range] = STATE(7780), - [sym__value] = STATE(3004), - [sym_val_nothing] = STATE(2937), - [sym_val_bool] = STATE(2886), - [sym_val_variable] = STATE(2937), - [sym_val_number] = STATE(2937), - [sym__val_number_decimal] = STATE(2555), - [sym__val_number] = STATE(2962), - [sym_val_duration] = STATE(2937), - [sym_val_filesize] = STATE(2937), - [sym_val_binary] = STATE(2937), - [sym_val_string] = STATE(2937), - [sym__raw_str] = STATE(3005), - [sym__str_double_quotes] = STATE(3005), - [sym_val_interpolated] = STATE(2937), - [sym__inter_single_quotes] = STATE(2980), - [sym__inter_double_quotes] = STATE(2981), - [sym_val_list] = STATE(2937), - [sym_val_record] = STATE(2937), - [sym_val_table] = STATE(2937), - [sym_val_closure] = STATE(2937), - [sym_unquoted] = STATE(3012), - [sym__unquoted_anonymous_prefix] = STATE(7890), - [sym_comment] = STATE(1319), - [anon_sym_LBRACK] = ACTIONS(4281), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_DOLLAR] = ACTIONS(4285), - [anon_sym_LBRACE] = ACTIONS(4287), - [anon_sym_DOT_DOT] = ACTIONS(4289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), - [anon_sym_DOT_DOT_LT] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4293), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [aux_sym__val_number_decimal_token1] = ACTIONS(4297), - [aux_sym__val_number_decimal_token2] = ACTIONS(4299), - [aux_sym__val_number_decimal_token3] = ACTIONS(4301), - [aux_sym__val_number_decimal_token4] = ACTIONS(4303), - [aux_sym__val_number_token1] = ACTIONS(4305), - [aux_sym__val_number_token2] = ACTIONS(4305), - [aux_sym__val_number_token3] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), [aux_sym__val_number_token4] = ACTIONS(4307), [aux_sym__val_number_token5] = ACTIONS(4307), [aux_sym__val_number_token6] = ACTIONS(4307), - [anon_sym_0b] = ACTIONS(4309), - [anon_sym_0o] = ACTIONS(4311), - [anon_sym_0x] = ACTIONS(4311), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4315), - [sym__str_single_quotes] = ACTIONS(4317), - [sym__str_back_ticks] = ACTIONS(4317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4319), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4321), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4325), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), + }, + [1319] = { + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6036), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(7205), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5606), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6038), + [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym_comment] = STATE(1319), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1320] = { - [sym__expr_parenthesized_immediate] = STATE(1740), - [sym__immediate_decimal] = STATE(1741), - [sym_val_variable] = STATE(1740), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6036), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5255), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6038), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1320), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(4409), - [aux_sym__immediate_decimal_token3] = ACTIONS(4411), - [aux_sym__immediate_decimal_token4] = ACTIONS(4413), - [aux_sym__immediate_decimal_token5] = ACTIONS(4415), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1663), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1663), - [anon_sym_out_GT] = ACTIONS(1663), - [anon_sym_e_GT] = ACTIONS(1663), - [anon_sym_o_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT] = ACTIONS(1663), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1321] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(6217), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7502), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5707), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(6239), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6066), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(7205), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5606), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6072), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1321), - [anon_sym_LBRACK] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(3985), - [anon_sym_true] = ACTIONS(3987), - [anon_sym_false] = ACTIONS(3987), - [aux_sym__val_number_decimal_token1] = ACTIONS(3989), - [aux_sym__val_number_decimal_token2] = ACTIONS(3991), - [aux_sym__val_number_decimal_token3] = ACTIONS(3993), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3997), - [aux_sym__val_number_token5] = ACTIONS(3997), - [aux_sym__val_number_token6] = ACTIONS(3997), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3999), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1322] = { - [sym__expr_parenthesized_immediate] = STATE(1746), - [sym__immediate_decimal] = STATE(1753), - [sym_val_variable] = STATE(1746), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6036), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5336), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6038), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1322), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(4409), - [aux_sym__immediate_decimal_token3] = ACTIONS(4411), - [aux_sym__immediate_decimal_token4] = ACTIONS(4413), - [aux_sym__immediate_decimal_token5] = ACTIONS(4415), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1673), - [aux_sym__val_number_decimal_token3] = ACTIONS(1673), - [aux_sym__val_number_decimal_token4] = ACTIONS(1673), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4211), + [aux_sym__val_number_decimal_token2] = ACTIONS(4213), + [aux_sym__val_number_decimal_token3] = ACTIONS(4215), + [aux_sym__val_number_decimal_token4] = ACTIONS(4217), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4219), + [aux_sym__val_number_token5] = ACTIONS(4219), + [aux_sym__val_number_token6] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1323] = { - [sym__expr_parenthesized_immediate] = STATE(1754), - [sym__immediate_decimal] = STATE(1760), - [sym_val_variable] = STATE(1754), + [sym_cell_path] = STATE(1450), + [sym_path] = STATE(1428), [sym_comment] = STATE(1323), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(4033), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT] = ACTIONS(1679), - [aux_sym__immediate_decimal_token1] = ACTIONS(4409), - [aux_sym__immediate_decimal_token3] = ACTIONS(4411), - [aux_sym__immediate_decimal_token4] = ACTIONS(4413), - [aux_sym__immediate_decimal_token5] = ACTIONS(4415), - [anon_sym_null] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1679), - [aux_sym__val_number_token2] = ACTIONS(1679), - [aux_sym__val_number_token3] = ACTIONS(1679), - [aux_sym__val_number_token4] = ACTIONS(1679), - [aux_sym__val_number_token5] = ACTIONS(1679), - [aux_sym__val_number_token6] = ACTIONS(1679), - [anon_sym_0b] = ACTIONS(1677), - [anon_sym_0o] = ACTIONS(1677), - [anon_sym_0x] = ACTIONS(1677), - [sym_val_date] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym__str_single_quotes] = ACTIONS(1679), - [sym__str_back_ticks] = ACTIONS(1679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [aux_sym_unquoted_token1] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1679), + [aux_sym_cell_path_repeat1] = STATE(1353), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1473), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, [1324] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_rest] = STATE(7947), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2875), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7970), - [sym_val_nothing] = STATE(3162), - [sym_val_bool] = STATE(3037), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3162), - [sym__val_number_decimal] = STATE(2683), - [sym__val_number] = STATE(3147), - [sym_val_duration] = STATE(3162), - [sym_val_filesize] = STATE(3162), - [sym_val_binary] = STATE(3162), - [sym_val_string] = STATE(3162), - [sym__raw_str] = STATE(3125), - [sym__str_double_quotes] = STATE(3125), - [sym_val_table] = STATE(3162), - [sym__unquoted_in_list] = STATE(3167), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(5526), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7529), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5637), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(5549), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1324), - [aux_sym__match_pattern_list_repeat1] = STATE(1366), - [anon_sym_LBRACK] = ACTIONS(4351), - [anon_sym_RBRACK] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym_DOLLAR] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_DOT_DOT] = ACTIONS(4539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), - [anon_sym_DOT_DOT_LT] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3949), - [aux_sym__val_number_decimal_token2] = ACTIONS(3951), - [aux_sym__val_number_decimal_token3] = ACTIONS(3953), - [aux_sym__val_number_decimal_token4] = ACTIONS(3955), - [aux_sym__val_number_token1] = ACTIONS(3957), - [aux_sym__val_number_token2] = ACTIONS(3957), - [aux_sym__val_number_token3] = ACTIONS(3957), - [aux_sym__val_number_token4] = ACTIONS(3959), - [aux_sym__val_number_token5] = ACTIONS(3959), - [aux_sym__val_number_token6] = ACTIONS(3959), - [anon_sym_0b] = ACTIONS(3961), - [anon_sym_0o] = ACTIONS(3963), - [anon_sym_0x] = ACTIONS(3963), - [sym_val_date] = ACTIONS(3965), - [anon_sym_DQUOTE] = ACTIONS(3967), - [sym__str_single_quotes] = ACTIONS(3969), - [sym__str_back_ticks] = ACTIONS(3969), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [aux_sym__val_number_decimal_token1] = ACTIONS(4229), + [aux_sym__val_number_decimal_token2] = ACTIONS(4231), + [aux_sym__val_number_decimal_token3] = ACTIONS(4233), + [aux_sym__val_number_decimal_token4] = ACTIONS(4235), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4237), + [aux_sym__val_number_token5] = ACTIONS(4237), + [aux_sym__val_number_token6] = ACTIONS(4237), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1325] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6217), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5270), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6239), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7871), + [sym__value] = STATE(6066), + [sym_val_nothing] = STATE(4941), + [sym_val_bool] = STATE(5739), + [sym_val_variable] = STATE(4941), + [sym_val_number] = STATE(4941), + [sym__val_number_decimal] = STATE(5336), + [sym__val_number] = STATE(4965), + [sym_val_duration] = STATE(4941), + [sym_val_filesize] = STATE(4941), + [sym_val_binary] = STATE(4941), + [sym_val_string] = STATE(4941), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(4941), + [sym__inter_single_quotes] = STATE(4872), + [sym__inter_double_quotes] = STATE(4873), + [sym_val_list] = STATE(4941), + [sym_val_record] = STATE(4941), + [sym_val_table] = STATE(4941), + [sym_val_closure] = STATE(4941), + [sym_unquoted] = STATE(6072), + [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1325), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4475), - [aux_sym__val_number_decimal_token3] = ACTIONS(4477), - [aux_sym__val_number_decimal_token4] = ACTIONS(4479), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4481), - [aux_sym__val_number_token5] = ACTIONS(4481), - [aux_sym__val_number_token6] = ACTIONS(4481), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4171), + [anon_sym_DOLLAR] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4207), + [anon_sym_true] = ACTIONS(4209), + [anon_sym_false] = ACTIONS(4209), + [aux_sym__val_number_decimal_token1] = ACTIONS(4211), + [aux_sym__val_number_decimal_token2] = ACTIONS(4213), + [aux_sym__val_number_decimal_token3] = ACTIONS(4215), + [aux_sym__val_number_decimal_token4] = ACTIONS(4217), + [aux_sym__val_number_token1] = ACTIONS(3659), + [aux_sym__val_number_token2] = ACTIONS(3659), + [aux_sym__val_number_token3] = ACTIONS(3659), + [aux_sym__val_number_token4] = ACTIONS(4219), + [aux_sym__val_number_token5] = ACTIONS(4219), + [aux_sym__val_number_token6] = ACTIONS(4219), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3665), + [anon_sym_0x] = ACTIONS(3665), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3673), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1326] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6136), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5248), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6137), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__expr_parenthesized_immediate] = STATE(1651), + [sym__immediate_decimal] = STATE(1616), + [sym_val_variable] = STATE(1651), [sym_comment] = STATE(1326), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [aux_sym__immediate_decimal_token1] = ACTIONS(4565), + [aux_sym__immediate_decimal_token3] = ACTIONS(4567), + [aux_sym__immediate_decimal_token4] = ACTIONS(4569), + [aux_sym__immediate_decimal_token5] = ACTIONS(4571), + [anon_sym_null] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1776), + [anon_sym_0o] = ACTIONS(1776), + [anon_sym_0x] = ACTIONS(1776), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), }, [1327] = { - [sym_cell_path] = STATE(1484), - [sym_path] = STATE(1412), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7849), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2908), + [sym_val_range] = STATE(3121), + [sym__val_range] = STATE(7923), + [sym_val_nothing] = STATE(3125), + [sym_val_bool] = STATE(3062), + [sym_val_variable] = STATE(2909), + [sym_val_number] = STATE(3125), + [sym__val_number_decimal] = STATE(2693), + [sym__val_number] = STATE(3108), + [sym_val_duration] = STATE(3125), + [sym_val_filesize] = STATE(3125), + [sym_val_binary] = STATE(3125), + [sym_val_string] = STATE(3125), + [sym__raw_str] = STATE(3164), + [sym__str_double_quotes] = STATE(3164), + [sym_val_table] = STATE(3125), + [sym__unquoted_in_list] = STATE(3138), + [sym__unquoted_anonymous_prefix] = STATE(7818), [sym_comment] = STATE(1327), - [aux_sym_cell_path_repeat1] = STATE(1350), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_list_repeat1] = STATE(1375), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_RBRACK] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(4577), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3979), + [anon_sym_DOT_DOT_LT] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3985), + [aux_sym__val_number_decimal_token2] = ACTIONS(3987), + [aux_sym__val_number_decimal_token3] = ACTIONS(3989), + [aux_sym__val_number_decimal_token4] = ACTIONS(3991), + [aux_sym__val_number_token1] = ACTIONS(3993), + [aux_sym__val_number_token2] = ACTIONS(3993), + [aux_sym__val_number_token3] = ACTIONS(3993), + [aux_sym__val_number_token4] = ACTIONS(3995), + [aux_sym__val_number_token5] = ACTIONS(3995), + [aux_sym__val_number_token6] = ACTIONS(3995), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3999), + [sym_val_date] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym__str_single_quotes] = ACTIONS(4005), + [sym__str_back_ticks] = ACTIONS(4005), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4009), }, [1328] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6162), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5248), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6182), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__expr_parenthesized_immediate] = STATE(1769), + [sym__immediate_decimal] = STATE(1771), + [sym_val_variable] = STATE(1769), [sym_comment] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4357), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token3] = ACTIONS(4581), + [aux_sym__immediate_decimal_token4] = ACTIONS(4583), + [aux_sym__immediate_decimal_token5] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1776), + [anon_sym_0o] = ACTIONS(1776), + [anon_sym_0x] = ACTIONS(1776), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), }, [1329] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6162), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5270), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6182), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(5611), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7529), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5637), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(5615), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1329), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4475), - [aux_sym__val_number_decimal_token3] = ACTIONS(4477), - [aux_sym__val_number_decimal_token4] = ACTIONS(4479), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4481), - [aux_sym__val_number_token5] = ACTIONS(4481), - [aux_sym__val_number_token6] = ACTIONS(4481), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [aux_sym__val_number_decimal_token1] = ACTIONS(4229), + [aux_sym__val_number_decimal_token2] = ACTIONS(4231), + [aux_sym__val_number_decimal_token3] = ACTIONS(4233), + [aux_sym__val_number_decimal_token4] = ACTIONS(4235), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4237), + [aux_sym__val_number_token5] = ACTIONS(4237), + [aux_sym__val_number_token6] = ACTIONS(4237), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1330] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(5501), - [sym_val_nothing] = STATE(2116), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(6036), + [sym_val_nothing] = STATE(2093), [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5723), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(5502), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5691), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(6038), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1330), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_true] = ACTIONS(4337), - [anon_sym_false] = ACTIONS(4337), - [aux_sym__val_number_decimal_token1] = ACTIONS(4339), - [aux_sym__val_number_decimal_token2] = ACTIONS(4341), - [aux_sym__val_number_decimal_token3] = ACTIONS(4343), - [aux_sym__val_number_decimal_token4] = ACTIONS(4345), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4347), - [aux_sym__val_number_token5] = ACTIONS(4347), - [aux_sym__val_number_token6] = ACTIONS(4347), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4349), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1331] = { - [sym__val_range] = STATE(7779), - [sym__value] = STATE(4928), - [sym_val_nothing] = STATE(4888), - [sym_val_bool] = STATE(4601), - [sym_val_variable] = STATE(4888), - [sym_val_number] = STATE(4888), - [sym__val_number_decimal] = STATE(4115), - [sym__val_number] = STATE(4852), - [sym_val_duration] = STATE(4888), - [sym_val_filesize] = STATE(4888), - [sym_val_binary] = STATE(4888), - [sym_val_string] = STATE(4888), - [sym__raw_str] = STATE(4528), - [sym__str_double_quotes] = STATE(4528), - [sym_val_interpolated] = STATE(4888), - [sym__inter_single_quotes] = STATE(4891), - [sym__inter_double_quotes] = STATE(4896), - [sym_val_list] = STATE(4888), - [sym_val_record] = STATE(4888), - [sym_val_table] = STATE(4888), - [sym_val_closure] = STATE(4888), - [sym_unquoted] = STATE(4929), - [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym__val_range] = STATE(7909), + [sym__value] = STATE(3007), + [sym_val_nothing] = STATE(2936), + [sym_val_bool] = STATE(2923), + [sym_val_variable] = STATE(2936), + [sym_val_number] = STATE(2936), + [sym__val_number_decimal] = STATE(2565), + [sym__val_number] = STATE(2977), + [sym_val_duration] = STATE(2936), + [sym_val_filesize] = STATE(2936), + [sym_val_binary] = STATE(2936), + [sym_val_string] = STATE(2936), + [sym__raw_str] = STATE(3013), + [sym__str_double_quotes] = STATE(3013), + [sym_val_interpolated] = STATE(2936), + [sym__inter_single_quotes] = STATE(3000), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(2936), + [sym_val_record] = STATE(2936), + [sym_val_table] = STATE(2936), + [sym_val_closure] = STATE(2936), + [sym_unquoted] = STATE(3010), + [sym__unquoted_anonymous_prefix] = STATE(8098), [sym_comment] = STATE(1331), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), - [anon_sym_DOT_DOT_LT] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_true] = ACTIONS(4515), - [anon_sym_false] = ACTIONS(4515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token3] = ACTIONS(4519), - [aux_sym__val_number_decimal_token4] = ACTIONS(4521), - [aux_sym__val_number_token1] = ACTIONS(4523), - [aux_sym__val_number_token2] = ACTIONS(4523), - [aux_sym__val_number_token3] = ACTIONS(4523), - [aux_sym__val_number_token4] = ACTIONS(4525), - [aux_sym__val_number_token5] = ACTIONS(4525), - [aux_sym__val_number_token6] = ACTIONS(4525), - [anon_sym_0b] = ACTIONS(2096), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4531), - [sym__str_back_ticks] = ACTIONS(4531), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_LPAREN] = ACTIONS(4113), + [anon_sym_DOLLAR] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4121), + [anon_sym_DOT_DOT_LT] = ACTIONS(4121), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_true] = ACTIONS(4125), + [anon_sym_false] = ACTIONS(4125), + [aux_sym__val_number_decimal_token1] = ACTIONS(4127), + [aux_sym__val_number_decimal_token2] = ACTIONS(4129), + [aux_sym__val_number_decimal_token3] = ACTIONS(4131), + [aux_sym__val_number_decimal_token4] = ACTIONS(4133), + [aux_sym__val_number_token1] = ACTIONS(4135), + [aux_sym__val_number_token2] = ACTIONS(4135), + [aux_sym__val_number_token3] = ACTIONS(4135), + [aux_sym__val_number_token4] = ACTIONS(4137), + [aux_sym__val_number_token5] = ACTIONS(4137), + [aux_sym__val_number_token6] = ACTIONS(4137), + [anon_sym_0b] = ACTIONS(4139), + [anon_sym_0o] = ACTIONS(4141), + [anon_sym_0x] = ACTIONS(4141), + [sym_val_date] = ACTIONS(4143), + [anon_sym_DQUOTE] = ACTIONS(4145), + [sym__str_single_quotes] = ACTIONS(4147), + [sym__str_back_ticks] = ACTIONS(4147), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4149), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4151), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4153), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4155), }, [1332] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6136), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(5962), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5270), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6137), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__expr_parenthesized_immediate] = STATE(1915), + [sym__immediate_decimal] = STATE(1710), + [sym_val_variable] = STATE(1915), [sym_comment] = STATE(1332), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4475), - [aux_sym__val_number_decimal_token3] = ACTIONS(4477), - [aux_sym__val_number_decimal_token4] = ACTIONS(4479), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4481), - [aux_sym__val_number_token5] = ACTIONS(4481), - [aux_sym__val_number_token6] = ACTIONS(4481), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DASH2] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1726), + [anon_sym_DOT_DOT_LT] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(4161), + [aux_sym__immediate_decimal_token3] = ACTIONS(4163), + [aux_sym__immediate_decimal_token4] = ACTIONS(4165), + [aux_sym__immediate_decimal_token5] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [aux_sym__val_number_decimal_token1] = ACTIONS(1712), + [aux_sym__val_number_decimal_token2] = ACTIONS(1712), + [aux_sym__val_number_decimal_token3] = ACTIONS(1712), + [aux_sym__val_number_decimal_token4] = ACTIONS(1712), + [aux_sym__val_number_token1] = ACTIONS(1726), + [aux_sym__val_number_token2] = ACTIONS(1726), + [aux_sym__val_number_token3] = ACTIONS(1726), + [aux_sym__val_number_token4] = ACTIONS(1726), + [aux_sym__val_number_token5] = ACTIONS(1726), + [aux_sym__val_number_token6] = ACTIONS(1726), + [anon_sym_0b] = ACTIONS(1712), + [anon_sym_0o] = ACTIONS(1712), + [anon_sym_0x] = ACTIONS(1712), + [sym_val_date] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym__str_single_quotes] = ACTIONS(1726), + [sym__str_back_ticks] = ACTIONS(1726), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1726), + [anon_sym_err_GT] = ACTIONS(1712), + [anon_sym_out_GT] = ACTIONS(1712), + [anon_sym_e_GT] = ACTIONS(1712), + [anon_sym_o_GT] = ACTIONS(1712), + [anon_sym_err_PLUSout_GT] = ACTIONS(1712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1712), + [anon_sym_o_PLUSe_GT] = ACTIONS(1712), + [anon_sym_e_PLUSo_GT] = ACTIONS(1712), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [aux_sym_unquoted_token1] = ACTIONS(1712), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1726), }, [1333] = { - [sym__expr_parenthesized_immediate] = STATE(7673), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(6030), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5691), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(6082), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1333), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT2] = ACTIONS(4545), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4547), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(4549), - [sym_duration_unit] = ACTIONS(4551), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4553), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1334] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4756), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(6971), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(5511), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4757), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__val_range] = STATE(7747), + [sym__value] = STATE(6066), + [sym_val_nothing] = STATE(2093), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2093), + [sym_val_number] = STATE(2093), + [sym__val_number_decimal] = STATE(5691), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(2093), + [sym_val_filesize] = STATE(2093), + [sym_val_binary] = STATE(2093), + [sym_val_string] = STATE(2093), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), + [sym_val_interpolated] = STATE(2093), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2165), + [sym_val_list] = STATE(2093), + [sym_val_record] = STATE(2093), + [sym_val_table] = STATE(2093), + [sym_val_closure] = STATE(2093), + [sym_unquoted] = STATE(6072), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1334), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4157), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [aux_sym__val_number_decimal_token1] = ACTIONS(4161), - [aux_sym__val_number_decimal_token2] = ACTIONS(4163), - [aux_sym__val_number_decimal_token3] = ACTIONS(4165), - [aux_sym__val_number_decimal_token4] = ACTIONS(4167), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4169), - [aux_sym__val_number_token5] = ACTIONS(4169), - [aux_sym__val_number_token6] = ACTIONS(4169), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4199), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4205), + [anon_sym_DOT_DOT_LT] = ACTIONS(4205), + [anon_sym_null] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [aux_sym__val_number_decimal_token1] = ACTIONS(4029), + [aux_sym__val_number_decimal_token2] = ACTIONS(4031), + [aux_sym__val_number_decimal_token3] = ACTIONS(4033), + [aux_sym__val_number_decimal_token4] = ACTIONS(4035), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4037), + [aux_sym__val_number_token5] = ACTIONS(4037), + [aux_sym__val_number_token6] = ACTIONS(4037), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4039), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(243), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1335] = { - [sym__val_range] = STATE(7779), - [sym__value] = STATE(4964), - [sym_val_nothing] = STATE(4888), - [sym_val_bool] = STATE(4601), - [sym_val_variable] = STATE(4888), - [sym_val_number] = STATE(4888), - [sym__val_number_decimal] = STATE(4115), - [sym__val_number] = STATE(4852), - [sym_val_duration] = STATE(4888), - [sym_val_filesize] = STATE(4888), - [sym_val_binary] = STATE(4888), - [sym_val_string] = STATE(4888), - [sym__raw_str] = STATE(4528), - [sym__str_double_quotes] = STATE(4528), - [sym_val_interpolated] = STATE(4888), - [sym__inter_single_quotes] = STATE(4891), - [sym__inter_double_quotes] = STATE(4896), - [sym_val_list] = STATE(4888), - [sym_val_record] = STATE(4888), - [sym_val_table] = STATE(4888), - [sym_val_closure] = STATE(4888), - [sym_unquoted] = STATE(4969), - [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym__expr_parenthesized_immediate] = STATE(1811), + [sym__immediate_decimal] = STATE(1815), + [sym_val_variable] = STATE(1811), [sym_comment] = STATE(1335), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym_DOLLAR] = ACTIONS(4505), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), - [anon_sym_DOT_DOT_LT] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4513), - [anon_sym_true] = ACTIONS(4515), - [anon_sym_false] = ACTIONS(4515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(4517), - [aux_sym__val_number_decimal_token3] = ACTIONS(4519), - [aux_sym__val_number_decimal_token4] = ACTIONS(4521), - [aux_sym__val_number_token1] = ACTIONS(4523), - [aux_sym__val_number_token2] = ACTIONS(4523), - [aux_sym__val_number_token3] = ACTIONS(4523), - [aux_sym__val_number_token4] = ACTIONS(4525), - [aux_sym__val_number_token5] = ACTIONS(4525), - [aux_sym__val_number_token6] = ACTIONS(4525), - [anon_sym_0b] = ACTIONS(2096), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4529), - [sym__str_single_quotes] = ACTIONS(4531), - [sym__str_back_ticks] = ACTIONS(4531), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2116), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), + [anon_sym_DOT_DOT_LT] = ACTIONS(1848), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token3] = ACTIONS(4581), + [aux_sym__immediate_decimal_token4] = ACTIONS(4583), + [aux_sym__immediate_decimal_token5] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1846), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1846), + [anon_sym_0o] = ACTIONS(1846), + [anon_sym_0x] = ACTIONS(1846), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1848), }, [1336] = { - [sym__val_range] = STATE(8054), - [sym__value] = STATE(4766), - [sym_val_nothing] = STATE(4729), - [sym_val_bool] = STATE(6971), - [sym_val_variable] = STATE(4729), - [sym_val_number] = STATE(4729), - [sym__val_number_decimal] = STATE(5511), - [sym__val_number] = STATE(4716), - [sym_val_duration] = STATE(4729), - [sym_val_filesize] = STATE(4729), - [sym_val_binary] = STATE(4729), - [sym_val_string] = STATE(4729), - [sym__raw_str] = STATE(4371), - [sym__str_double_quotes] = STATE(4371), - [sym_val_interpolated] = STATE(4729), - [sym__inter_single_quotes] = STATE(4731), - [sym__inter_double_quotes] = STATE(4732), - [sym_val_list] = STATE(4729), - [sym_val_record] = STATE(4729), - [sym_val_table] = STATE(4729), - [sym_val_closure] = STATE(4729), - [sym_unquoted] = STATE(4767), - [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym__expr_parenthesized_immediate] = STATE(1825), + [sym__immediate_decimal] = STATE(1826), + [sym_val_variable] = STATE(1825), [sym_comment] = STATE(1336), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_DOT_DOT] = ACTIONS(4129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), - [anon_sym_DOT_DOT_LT] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4157), - [anon_sym_true] = ACTIONS(4159), - [anon_sym_false] = ACTIONS(4159), - [aux_sym__val_number_decimal_token1] = ACTIONS(4161), - [aux_sym__val_number_decimal_token2] = ACTIONS(4163), - [aux_sym__val_number_decimal_token3] = ACTIONS(4165), - [aux_sym__val_number_decimal_token4] = ACTIONS(4167), - [aux_sym__val_number_token1] = ACTIONS(4143), - [aux_sym__val_number_token2] = ACTIONS(4143), - [aux_sym__val_number_token3] = ACTIONS(4143), - [aux_sym__val_number_token4] = ACTIONS(4169), - [aux_sym__val_number_token5] = ACTIONS(4169), - [aux_sym__val_number_token6] = ACTIONS(4169), - [anon_sym_0b] = ACTIONS(1990), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4149), - [sym__str_single_quotes] = ACTIONS(4151), - [sym__str_back_ticks] = ACTIONS(4151), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2010), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DASH2] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT] = ACTIONS(1852), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token3] = ACTIONS(4581), + [aux_sym__immediate_decimal_token4] = ACTIONS(4583), + [aux_sym__immediate_decimal_token5] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [aux_sym__val_number_decimal_token1] = ACTIONS(1850), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1852), + [aux_sym__val_number_token2] = ACTIONS(1852), + [aux_sym__val_number_token3] = ACTIONS(1852), + [aux_sym__val_number_token4] = ACTIONS(1852), + [aux_sym__val_number_token5] = ACTIONS(1852), + [aux_sym__val_number_token6] = ACTIONS(1852), + [anon_sym_0b] = ACTIONS(1850), + [anon_sym_0o] = ACTIONS(1850), + [anon_sym_0x] = ACTIONS(1850), + [sym_val_date] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [sym__str_single_quotes] = ACTIONS(1852), + [sym__str_back_ticks] = ACTIONS(1852), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1850), + [anon_sym_out_GT] = ACTIONS(1850), + [anon_sym_e_GT] = ACTIONS(1850), + [anon_sym_o_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [aux_sym_unquoted_token1] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1852), }, [1337] = { - [sym__val_range] = STATE(7906), - [sym__value] = STATE(5514), - [sym_val_nothing] = STATE(2116), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2116), - [sym_val_number] = STATE(2116), - [sym__val_number_decimal] = STATE(5723), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(2116), - [sym_val_filesize] = STATE(2116), - [sym_val_binary] = STATE(2116), - [sym_val_string] = STATE(2116), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_interpolated] = STATE(2116), - [sym__inter_single_quotes] = STATE(2171), - [sym__inter_double_quotes] = STATE(2172), - [sym_val_list] = STATE(2116), - [sym_val_record] = STATE(2116), - [sym_val_table] = STATE(2116), - [sym_val_closure] = STATE(2116), - [sym_unquoted] = STATE(5515), - [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym__expr_parenthesized_immediate] = STATE(1829), + [sym__immediate_decimal] = STATE(1834), + [sym_val_variable] = STATE(1829), [sym_comment] = STATE(1337), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), - [anon_sym_DOT_DOT_LT] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_true] = ACTIONS(4337), - [anon_sym_false] = ACTIONS(4337), - [aux_sym__val_number_decimal_token1] = ACTIONS(4339), - [aux_sym__val_number_decimal_token2] = ACTIONS(4341), - [aux_sym__val_number_decimal_token3] = ACTIONS(4343), - [aux_sym__val_number_decimal_token4] = ACTIONS(4345), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4347), - [aux_sym__val_number_token5] = ACTIONS(4347), - [aux_sym__val_number_token6] = ACTIONS(4347), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4349), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1856), + [anon_sym_DOT_DOT_LT] = ACTIONS(1856), + [aux_sym__immediate_decimal_token1] = ACTIONS(4579), + [aux_sym__immediate_decimal_token3] = ACTIONS(4581), + [aux_sym__immediate_decimal_token4] = ACTIONS(4583), + [aux_sym__immediate_decimal_token5] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1856), + [aux_sym__val_number_token2] = ACTIONS(1856), + [aux_sym__val_number_token3] = ACTIONS(1856), + [aux_sym__val_number_token4] = ACTIONS(1856), + [aux_sym__val_number_token5] = ACTIONS(1856), + [aux_sym__val_number_token6] = ACTIONS(1856), + [anon_sym_0b] = ACTIONS(1854), + [anon_sym_0o] = ACTIONS(1854), + [anon_sym_0x] = ACTIONS(1854), + [sym_val_date] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym__str_single_quotes] = ACTIONS(1856), + [sym__str_back_ticks] = ACTIONS(1856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [aux_sym_unquoted_token1] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1856), }, [1338] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6117), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(7278), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5602), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6143), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_rest] = STATE(7971), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2908), + [sym_val_range] = STATE(3121), + [sym__val_range] = STATE(7923), + [sym_val_nothing] = STATE(3125), + [sym_val_bool] = STATE(3062), + [sym_val_variable] = STATE(2909), + [sym_val_number] = STATE(3125), + [sym__val_number_decimal] = STATE(2693), + [sym__val_number] = STATE(3108), + [sym_val_duration] = STATE(3125), + [sym_val_filesize] = STATE(3125), + [sym_val_binary] = STATE(3125), + [sym_val_string] = STATE(3125), + [sym__raw_str] = STATE(3164), + [sym__str_double_quotes] = STATE(3164), + [sym_val_table] = STATE(3125), + [sym__unquoted_in_list] = STATE(3138), + [sym__unquoted_anonymous_prefix] = STATE(7818), [sym_comment] = STATE(1338), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4191), - [anon_sym_false] = ACTIONS(4191), - [aux_sym__val_number_decimal_token1] = ACTIONS(4193), - [aux_sym__val_number_decimal_token2] = ACTIONS(4195), - [aux_sym__val_number_decimal_token3] = ACTIONS(4197), - [aux_sym__val_number_decimal_token4] = ACTIONS(4199), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), - [aux_sym__val_number_token4] = ACTIONS(4201), - [aux_sym__val_number_token5] = ACTIONS(4201), - [aux_sym__val_number_token6] = ACTIONS(4201), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [aux_sym__match_pattern_list_repeat1] = STATE(1375), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_RBRACK] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3979), + [anon_sym_DOT_DOT_LT] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3985), + [aux_sym__val_number_decimal_token2] = ACTIONS(3987), + [aux_sym__val_number_decimal_token3] = ACTIONS(3989), + [aux_sym__val_number_decimal_token4] = ACTIONS(3991), + [aux_sym__val_number_token1] = ACTIONS(3993), + [aux_sym__val_number_token2] = ACTIONS(3993), + [aux_sym__val_number_token3] = ACTIONS(3993), + [aux_sym__val_number_token4] = ACTIONS(3995), + [aux_sym__val_number_token5] = ACTIONS(3995), + [aux_sym__val_number_token6] = ACTIONS(3995), + [anon_sym_0b] = ACTIONS(3997), + [anon_sym_0o] = ACTIONS(3999), + [anon_sym_0x] = ACTIONS(3999), + [sym_val_date] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym__str_single_quotes] = ACTIONS(4005), + [sym__str_back_ticks] = ACTIONS(4005), + [anon_sym_err_GT] = ACTIONS(2697), + [anon_sym_out_GT] = ACTIONS(2697), + [anon_sym_e_GT] = ACTIONS(2697), + [anon_sym_o_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT] = ACTIONS(2697), + [anon_sym_err_GT_GT] = ACTIONS(2699), + [anon_sym_out_GT_GT] = ACTIONS(2699), + [anon_sym_e_GT_GT] = ACTIONS(2699), + [anon_sym_o_GT_GT] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4009), }, [1339] = { - [sym_cell_path] = STATE(1501), - [sym_path] = STATE(1421), + [sym_cell_path] = STATE(1472), + [sym_path] = STATE(1425), [sym_comment] = STATE(1339), - [aux_sym_cell_path_repeat1] = STATE(1348), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [sym__newline] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [aux_sym_record_entry_token1] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1363), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1475), + [sym__newline] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1473), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [aux_sym_record_entry_token1] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, [1340] = { - [sym__val_range] = STATE(7739), - [sym__value] = STATE(6117), - [sym_val_nothing] = STATE(5002), - [sym_val_bool] = STATE(6436), - [sym_val_variable] = STATE(5002), - [sym_val_number] = STATE(5002), - [sym__val_number_decimal] = STATE(5470), - [sym__val_number] = STATE(4893), - [sym_val_duration] = STATE(5002), - [sym_val_filesize] = STATE(5002), - [sym_val_binary] = STATE(5002), - [sym_val_string] = STATE(5002), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), - [sym_val_interpolated] = STATE(5002), - [sym__inter_single_quotes] = STATE(4834), - [sym__inter_double_quotes] = STATE(4836), - [sym_val_list] = STATE(5002), - [sym_val_record] = STATE(5002), - [sym_val_table] = STATE(5002), - [sym_val_closure] = STATE(5002), - [sym_unquoted] = STATE(6143), - [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym__val_range] = STATE(7861), + [sym__value] = STATE(1803), + [sym_val_nothing] = STATE(1764), + [sym_val_bool] = STATE(1682), + [sym_val_variable] = STATE(1764), + [sym_val_number] = STATE(1764), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1756), + [sym_val_duration] = STATE(1764), + [sym_val_filesize] = STATE(1764), + [sym_val_binary] = STATE(1764), + [sym_val_string] = STATE(1764), + [sym__raw_str] = STATE(1798), + [sym__str_double_quotes] = STATE(1798), + [sym_val_interpolated] = STATE(1764), + [sym__inter_single_quotes] = STATE(1766), + [sym__inter_double_quotes] = STATE(1767), + [sym_val_list] = STATE(1764), + [sym_val_record] = STATE(1764), + [sym_val_table] = STATE(1764), + [sym_val_closure] = STATE(1764), + [sym_unquoted] = STATE(1804), + [sym__unquoted_anonymous_prefix] = STATE(7937), [sym_comment] = STATE(1340), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_DOT_DOT] = ACTIONS(4185), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), - [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(4451), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), + [anon_sym_DOT_DOT_LT] = ACTIONS(4455), [anon_sym_null] = ACTIONS(4457), [anon_sym_true] = ACTIONS(4459), [anon_sym_false] = ACTIONS(4459), @@ -205005,6231 +343075,6444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4463), [aux_sym__val_number_decimal_token3] = ACTIONS(4465), [aux_sym__val_number_decimal_token4] = ACTIONS(4467), - [aux_sym__val_number_token1] = ACTIONS(3647), - [aux_sym__val_number_token2] = ACTIONS(3647), - [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token1] = ACTIONS(2745), + [aux_sym__val_number_token2] = ACTIONS(2745), + [aux_sym__val_number_token3] = ACTIONS(2745), [aux_sym__val_number_token4] = ACTIONS(4469), [aux_sym__val_number_token5] = ACTIONS(4469), [aux_sym__val_number_token6] = ACTIONS(4469), - [anon_sym_0b] = ACTIONS(3651), - [anon_sym_0o] = ACTIONS(3653), - [anon_sym_0x] = ACTIONS(3653), + [anon_sym_0b] = ACTIONS(2749), + [anon_sym_0o] = ACTIONS(2751), + [anon_sym_0x] = ACTIONS(2751), [sym_val_date] = ACTIONS(4471), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym__str_single_quotes] = ACTIONS(2757), + [sym__str_back_ticks] = ACTIONS(2757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2761), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(4473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2769), }, [1341] = { [sym_comment] = STATE(1341), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [1342] = { + [sym__expr_parenthesized_immediate] = STATE(1884), + [sym__immediate_decimal] = STATE(1885), + [sym_val_variable] = STATE(1884), [sym_comment] = STATE(1342), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1856), + [anon_sym_DOT_DOT_LT] = ACTIONS(1856), + [aux_sym__immediate_decimal_token1] = ACTIONS(4593), + [aux_sym__immediate_decimal_token3] = ACTIONS(4595), + [aux_sym__immediate_decimal_token4] = ACTIONS(4597), + [aux_sym__immediate_decimal_token5] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1856), + [aux_sym__val_number_token2] = ACTIONS(1856), + [aux_sym__val_number_token3] = ACTIONS(1856), + [aux_sym__val_number_token4] = ACTIONS(1856), + [aux_sym__val_number_token5] = ACTIONS(1856), + [aux_sym__val_number_token6] = ACTIONS(1856), + [anon_sym_0b] = ACTIONS(1854), + [anon_sym_0o] = ACTIONS(1854), + [anon_sym_0x] = ACTIONS(1854), + [sym_val_date] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym__str_single_quotes] = ACTIONS(1856), + [sym__str_back_ticks] = ACTIONS(1856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [aux_sym_unquoted_token1] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1856), }, [1343] = { [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), }, [1344] = { - [sym__expr_parenthesized_immediate] = STATE(7700), + [sym_cell_path] = STATE(1546), + [sym_path] = STATE(1458), [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT2] = ACTIONS(4561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4563), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(4565), - [sym_duration_unit] = ACTIONS(4567), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4569), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [aux_sym_cell_path_repeat1] = STATE(1384), + [sym__newline] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_null] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1884), + [aux_sym__val_number_decimal_token3] = ACTIONS(1884), + [aux_sym__val_number_decimal_token4] = ACTIONS(1884), + [aux_sym__val_number_token1] = ACTIONS(1884), + [aux_sym__val_number_token2] = ACTIONS(1884), + [aux_sym__val_number_token3] = ACTIONS(1884), + [aux_sym__val_number_token4] = ACTIONS(1884), + [aux_sym__val_number_token5] = ACTIONS(1884), + [aux_sym__val_number_token6] = ACTIONS(1884), + [anon_sym_0b] = ACTIONS(1880), + [anon_sym_0o] = ACTIONS(1880), + [anon_sym_0x] = ACTIONS(1880), + [sym_val_date] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym__str_single_quotes] = ACTIONS(1884), + [sym__str_back_ticks] = ACTIONS(1884), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [aux_sym_unquoted_token1] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1884), }, [1345] = { [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4571), - [aux_sym__immediate_decimal_token2] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), }, [1346] = { - [sym__expr_parenthesized_immediate] = STATE(1916), - [sym__immediate_decimal] = STATE(1917), - [sym_val_variable] = STATE(1916), [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1663), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1663), - [anon_sym_out_GT] = ACTIONS(1663), - [anon_sym_e_GT] = ACTIONS(1663), - [anon_sym_o_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT] = ACTIONS(1663), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), }, [1347] = { - [sym__expr_parenthesized_immediate] = STATE(1918), - [sym__immediate_decimal] = STATE(1977), - [sym_val_variable] = STATE(1918), + [sym_cell_path] = STATE(1548), + [sym_path] = STATE(1458), [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1673), - [aux_sym__val_number_decimal_token3] = ACTIONS(1673), - [aux_sym__val_number_decimal_token4] = ACTIONS(1673), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [aux_sym_cell_path_repeat1] = STATE(1384), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1888), + [aux_sym__val_number_token5] = ACTIONS(1888), + [aux_sym__val_number_token6] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1886), + [anon_sym_0o] = ACTIONS(1886), + [anon_sym_0x] = ACTIONS(1886), + [sym_val_date] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [aux_sym_unquoted_token1] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), }, [1348] = { - [sym_path] = STATE(1421), [sym_comment] = STATE(1348), - [aux_sym_cell_path_repeat1] = STATE(1355), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), - [sym__newline] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [aux_sym_record_entry_token1] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), }, [1349] = { [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4485), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4603), + [aux_sym__immediate_decimal_token2] = ACTIONS(4605), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1350] = { - [sym_path] = STATE(1412), + [sym_cell_path] = STATE(1566), + [sym_path] = STATE(1458), [sym_comment] = STATE(1350), - [aux_sym_cell_path_repeat1] = STATE(1367), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1384), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), }, [1351] = { [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4583), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4607), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1352] = { [sym_comment] = STATE(1352), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1353] = { - [sym_cell_path] = STATE(1516), - [sym_path] = STATE(1481), + [sym_path] = STATE(1428), [sym_comment] = STATE(1353), - [aux_sym_cell_path_repeat1] = STATE(1407), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [aux_sym_cell_path_repeat1] = STATE(1358), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1479), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1354] = { [sym_comment] = STATE(1354), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1355] = { - [sym_path] = STATE(1421), [sym_comment] = STATE(1355), - [aux_sym_cell_path_repeat1] = STATE(1355), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [aux_sym_record_entry_token1] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1356] = { - [sym__expr_parenthesized_immediate] = STATE(1920), - [sym__immediate_decimal] = STATE(1921), - [sym_val_variable] = STATE(1920), [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT] = ACTIONS(1679), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1679), - [aux_sym__val_number_token2] = ACTIONS(1679), - [aux_sym__val_number_token3] = ACTIONS(1679), - [aux_sym__val_number_token4] = ACTIONS(1679), - [aux_sym__val_number_token5] = ACTIONS(1679), - [aux_sym__val_number_token6] = ACTIONS(1679), - [anon_sym_0b] = ACTIONS(1677), - [anon_sym_0o] = ACTIONS(1677), - [anon_sym_0x] = ACTIONS(1677), - [sym_val_date] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym__str_single_quotes] = ACTIONS(1679), - [sym__str_back_ticks] = ACTIONS(1679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [aux_sym_unquoted_token1] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1679), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4613), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1357] = { - [sym_cell_path] = STATE(1463), - [sym_path] = STATE(1449), + [sym__expr_parenthesized_immediate] = STATE(1881), + [sym__immediate_decimal] = STATE(1883), + [sym_val_variable] = STATE(1881), [sym_comment] = STATE(1357), - [aux_sym_cell_path_repeat1] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4590), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DASH2] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT] = ACTIONS(1852), + [aux_sym__immediate_decimal_token1] = ACTIONS(4593), + [aux_sym__immediate_decimal_token3] = ACTIONS(4595), + [aux_sym__immediate_decimal_token4] = ACTIONS(4597), + [aux_sym__immediate_decimal_token5] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [aux_sym__val_number_decimal_token1] = ACTIONS(1850), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1852), + [aux_sym__val_number_token2] = ACTIONS(1852), + [aux_sym__val_number_token3] = ACTIONS(1852), + [aux_sym__val_number_token4] = ACTIONS(1852), + [aux_sym__val_number_token5] = ACTIONS(1852), + [aux_sym__val_number_token6] = ACTIONS(1852), + [anon_sym_0b] = ACTIONS(1850), + [anon_sym_0o] = ACTIONS(1850), + [anon_sym_0x] = ACTIONS(1850), + [sym_val_date] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [sym__str_single_quotes] = ACTIONS(1852), + [sym__str_back_ticks] = ACTIONS(1852), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1850), + [anon_sym_out_GT] = ACTIONS(1850), + [anon_sym_e_GT] = ACTIONS(1850), + [anon_sym_o_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [aux_sym_unquoted_token1] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1852), }, [1358] = { + [sym_path] = STATE(1428), [sym_comment] = STATE(1358), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4175), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [aux_sym_cell_path_repeat1] = STATE(1358), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1485), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1483), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1359] = { [sym_comment] = STATE(1359), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1360] = { [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(2250), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [aux_sym__val_number_token4] = ACTIONS(1868), + [aux_sym__val_number_token5] = ACTIONS(1868), + [aux_sym__val_number_token6] = ACTIONS(1868), + [anon_sym_0b] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1868), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [sym_val_date] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token1] = ACTIONS(1866), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1868), }, [1361] = { [sym_comment] = STATE(1361), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4592), - [aux_sym__immediate_decimal_token2] = ACTIONS(4594), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [1362] = { [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(2256), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1363] = { + [sym_path] = STATE(1425), [sym_comment] = STATE(1363), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4598), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(1367), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1481), + [sym__newline] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1479), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [aux_sym_record_entry_token1] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1364] = { + [sym_cell_path] = STATE(1451), + [sym_path] = STATE(1452), [sym_comment] = STATE(1364), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [aux_sym_cell_path_repeat1] = STATE(1399), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1473), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4622), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, [1365] = { [sym_comment] = STATE(1365), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [1366] = { - [sym__match_pattern_expression] = STATE(3167), - [sym__match_pattern_value] = STATE(3159), - [sym__match_pattern_list] = STATE(3160), - [sym__match_pattern_record] = STATE(3161), - [sym_expr_parenthesized] = STATE(2875), - [sym_val_range] = STATE(3159), - [sym__val_range] = STATE(7970), - [sym_val_nothing] = STATE(3162), - [sym_val_bool] = STATE(3037), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3162), - [sym__val_number_decimal] = STATE(2683), - [sym__val_number] = STATE(3147), - [sym_val_duration] = STATE(3162), - [sym_val_filesize] = STATE(3162), - [sym_val_binary] = STATE(3162), - [sym_val_string] = STATE(3162), - [sym__raw_str] = STATE(3125), - [sym__str_double_quotes] = STATE(3125), - [sym_val_table] = STATE(3162), - [sym__unquoted_in_list] = STATE(3167), - [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1366), - [aux_sym__match_pattern_list_repeat1] = STATE(1366), - [anon_sym_LBRACK] = ACTIONS(4600), - [anon_sym_RBRACK] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym_DOLLAR] = ACTIONS(4608), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_DOT_DOT] = ACTIONS(4614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4617), - [anon_sym_DOT_DOT_LT] = ACTIONS(4617), - [anon_sym_null] = ACTIONS(4620), - [anon_sym_true] = ACTIONS(4623), - [anon_sym_false] = ACTIONS(4623), - [aux_sym__val_number_decimal_token1] = ACTIONS(4626), - [aux_sym__val_number_decimal_token2] = ACTIONS(4629), - [aux_sym__val_number_decimal_token3] = ACTIONS(4632), - [aux_sym__val_number_decimal_token4] = ACTIONS(4635), - [aux_sym__val_number_token1] = ACTIONS(4638), - [aux_sym__val_number_token2] = ACTIONS(4638), - [aux_sym__val_number_token3] = ACTIONS(4638), - [aux_sym__val_number_token4] = ACTIONS(4641), - [aux_sym__val_number_token5] = ACTIONS(4641), - [aux_sym__val_number_token6] = ACTIONS(4641), - [anon_sym_0b] = ACTIONS(4644), - [anon_sym_0o] = ACTIONS(4647), - [anon_sym_0x] = ACTIONS(4647), - [sym_val_date] = ACTIONS(4650), - [anon_sym_DQUOTE] = ACTIONS(4653), - [sym__str_single_quotes] = ACTIONS(4656), - [sym__str_back_ticks] = ACTIONS(4656), - [anon_sym_err_GT] = ACTIONS(4659), - [anon_sym_out_GT] = ACTIONS(4659), - [anon_sym_e_GT] = ACTIONS(4659), - [anon_sym_o_GT] = ACTIONS(4659), - [anon_sym_err_PLUSout_GT] = ACTIONS(4659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4659), - [anon_sym_o_PLUSe_GT] = ACTIONS(4659), - [anon_sym_e_PLUSo_GT] = ACTIONS(4659), - [anon_sym_err_GT_GT] = ACTIONS(4662), - [anon_sym_out_GT_GT] = ACTIONS(4662), - [anon_sym_e_GT_GT] = ACTIONS(4662), - [anon_sym_o_GT_GT] = ACTIONS(4662), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4662), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4662), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4662), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4662), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4668), + [ts_builtin_sym_end] = ACTIONS(2349), + [anon_sym_STAR_STAR] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_mod] = ACTIONS(3273), + [anon_sym_SLASH_SLASH] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_bit_DASHshl] = ACTIONS(3273), + [anon_sym_bit_DASHshr] = ACTIONS(3273), + [anon_sym_EQ_TILDE] = ACTIONS(3273), + [anon_sym_BANG_TILDE] = ACTIONS(3273), + [anon_sym_bit_DASHand] = ACTIONS(3273), + [anon_sym_bit_DASHxor] = ACTIONS(3273), + [anon_sym_bit_DASHor] = ACTIONS(3273), + [anon_sym_and] = ACTIONS(3273), + [anon_sym_xor] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_not_DASHin] = ACTIONS(3273), + [anon_sym_starts_DASHwith] = ACTIONS(3273), + [anon_sym_ends_DASHwith] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3273), + [aux_sym_cmd_identifier_token41] = ACTIONS(3277), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [1367] = { - [sym_path] = STATE(1412), + [sym_path] = STATE(1425), [sym_comment] = STATE(1367), [aux_sym_cell_path_repeat1] = STATE(1367), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1485), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1483), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [aux_sym_record_entry_token1] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1368] = { - [sym_cell_path] = STATE(1554), - [sym_path] = STATE(1481), + [sym__expr_parenthesized_immediate] = STATE(1902), + [sym__immediate_decimal] = STATE(1906), + [sym_val_variable] = STATE(1902), [sym_comment] = STATE(1368), - [aux_sym_cell_path_repeat1] = STATE(1407), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT] = ACTIONS(1747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [aux_sym__val_number_token4] = ACTIONS(1749), - [aux_sym__val_number_token5] = ACTIONS(1749), - [aux_sym__val_number_token6] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [sym_val_date] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym__newline] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_err_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_GT_PIPE] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [aux_sym__immediate_decimal_token1] = ACTIONS(4593), + [aux_sym__immediate_decimal_token3] = ACTIONS(4595), + [aux_sym__immediate_decimal_token4] = ACTIONS(4597), + [aux_sym__immediate_decimal_token5] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1776), + [aux_sym__val_number_decimal_token2] = ACTIONS(1776), + [aux_sym__val_number_decimal_token3] = ACTIONS(1776), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_0b] = ACTIONS(1776), + [anon_sym_0o] = ACTIONS(1776), + [anon_sym_0x] = ACTIONS(1776), + [sym_val_date] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), + [anon_sym_err_GT] = ACTIONS(1776), + [anon_sym_out_GT] = ACTIONS(1776), + [anon_sym_e_GT] = ACTIONS(1776), + [anon_sym_o_GT] = ACTIONS(1776), + [anon_sym_err_PLUSout_GT] = ACTIONS(1776), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1776), + [anon_sym_o_PLUSe_GT] = ACTIONS(1776), + [anon_sym_e_PLUSo_GT] = ACTIONS(1776), + [anon_sym_err_GT_GT] = ACTIONS(1786), + [anon_sym_out_GT_GT] = ACTIONS(1786), + [anon_sym_e_GT_GT] = ACTIONS(1786), + [anon_sym_o_GT_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), + [aux_sym_unquoted_token1] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1786), }, [1369] = { + [sym__expr_parenthesized_immediate] = STATE(7675), [sym_comment] = STATE(1369), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT2] = ACTIONS(4627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4629), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(4631), + [sym_duration_unit] = ACTIONS(4633), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, [1370] = { [sym_comment] = STATE(1370), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(2355), + [anon_sym_STAR_STAR] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_mod] = ACTIONS(3273), + [anon_sym_SLASH_SLASH] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_bit_DASHshl] = ACTIONS(3273), + [anon_sym_bit_DASHshr] = ACTIONS(3273), + [anon_sym_EQ_TILDE] = ACTIONS(3273), + [anon_sym_BANG_TILDE] = ACTIONS(3273), + [anon_sym_bit_DASHand] = ACTIONS(3273), + [anon_sym_bit_DASHxor] = ACTIONS(3273), + [anon_sym_bit_DASHor] = ACTIONS(3273), + [anon_sym_and] = ACTIONS(3273), + [anon_sym_xor] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_not_DASHin] = ACTIONS(3273), + [anon_sym_starts_DASHwith] = ACTIONS(3273), + [anon_sym_ends_DASHwith] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3273), + [aux_sym_cmd_identifier_token41] = ACTIONS(3277), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [1371] = { [sym_comment] = STATE(1371), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1761), - [anon_sym_0x] = ACTIONS(1761), - [sym_val_date] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token1] = ACTIONS(1761), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1372] = { - [sym_cell_path] = STATE(1543), - [sym_path] = STATE(1481), [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1407), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4637), + [aux_sym__immediate_decimal_token2] = ACTIONS(4639), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1373] = { - [sym__expr_parenthesized_immediate] = STATE(1889), - [sym__immediate_decimal] = STATE(1891), - [sym_val_variable] = STATE(1889), + [sym__expr_parenthesized_immediate] = STATE(1879), + [sym__immediate_decimal] = STATE(1880), + [sym_val_variable] = STATE(1879), [sym_comment] = STATE(1373), - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(4487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1593), - [aux_sym__val_number_decimal_token2] = ACTIONS(1593), - [aux_sym__val_number_decimal_token3] = ACTIONS(1593), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1593), - [anon_sym_0o] = ACTIONS(1593), - [anon_sym_0x] = ACTIONS(1593), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1593), - [anon_sym_out_GT] = ACTIONS(1593), - [anon_sym_e_GT] = ACTIONS(1593), - [anon_sym_o_GT] = ACTIONS(1593), - [anon_sym_err_PLUSout_GT] = ACTIONS(1593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), - [anon_sym_o_PLUSe_GT] = ACTIONS(1593), - [anon_sym_e_PLUSo_GT] = ACTIONS(1593), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1603), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_DOLLAR] = ACTIONS(4157), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(4159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), + [anon_sym_DOT_DOT_LT] = ACTIONS(1848), + [aux_sym__immediate_decimal_token1] = ACTIONS(4593), + [aux_sym__immediate_decimal_token3] = ACTIONS(4595), + [aux_sym__immediate_decimal_token4] = ACTIONS(4597), + [aux_sym__immediate_decimal_token5] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1846), + [aux_sym__val_number_decimal_token2] = ACTIONS(1846), + [aux_sym__val_number_decimal_token3] = ACTIONS(1846), + [aux_sym__val_number_decimal_token4] = ACTIONS(1846), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1846), + [anon_sym_0o] = ACTIONS(1846), + [anon_sym_0x] = ACTIONS(1846), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1848), }, [1374] = { [sym_comment] = STATE(1374), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [1375] = { + [sym__match_pattern_expression] = STATE(3138), + [sym__match_pattern_value] = STATE(3121), + [sym__match_pattern_list] = STATE(3122), + [sym__match_pattern_record] = STATE(3123), + [sym_expr_parenthesized] = STATE(2908), + [sym_val_range] = STATE(3121), + [sym__val_range] = STATE(7923), + [sym_val_nothing] = STATE(3125), + [sym_val_bool] = STATE(3062), + [sym_val_variable] = STATE(2909), + [sym_val_number] = STATE(3125), + [sym__val_number_decimal] = STATE(2693), + [sym__val_number] = STATE(3108), + [sym_val_duration] = STATE(3125), + [sym_val_filesize] = STATE(3125), + [sym_val_binary] = STATE(3125), + [sym_val_string] = STATE(3125), + [sym__raw_str] = STATE(3164), + [sym__str_double_quotes] = STATE(3164), + [sym_val_table] = STATE(3125), + [sym__unquoted_in_list] = STATE(3138), + [sym__unquoted_anonymous_prefix] = STATE(7818), [sym_comment] = STATE(1375), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_list_repeat1] = STATE(1375), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_RBRACK] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_DOLLAR] = ACTIONS(4649), + [anon_sym_LBRACE] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4655), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4658), + [anon_sym_DOT_DOT_LT] = ACTIONS(4658), + [anon_sym_null] = ACTIONS(4661), + [anon_sym_true] = ACTIONS(4664), + [anon_sym_false] = ACTIONS(4664), + [aux_sym__val_number_decimal_token1] = ACTIONS(4667), + [aux_sym__val_number_decimal_token2] = ACTIONS(4670), + [aux_sym__val_number_decimal_token3] = ACTIONS(4673), + [aux_sym__val_number_decimal_token4] = ACTIONS(4676), + [aux_sym__val_number_token1] = ACTIONS(4679), + [aux_sym__val_number_token2] = ACTIONS(4679), + [aux_sym__val_number_token3] = ACTIONS(4679), + [aux_sym__val_number_token4] = ACTIONS(4682), + [aux_sym__val_number_token5] = ACTIONS(4682), + [aux_sym__val_number_token6] = ACTIONS(4682), + [anon_sym_0b] = ACTIONS(4685), + [anon_sym_0o] = ACTIONS(4688), + [anon_sym_0x] = ACTIONS(4688), + [sym_val_date] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4694), + [sym__str_single_quotes] = ACTIONS(4697), + [sym__str_back_ticks] = ACTIONS(4697), + [anon_sym_err_GT] = ACTIONS(4700), + [anon_sym_out_GT] = ACTIONS(4700), + [anon_sym_e_GT] = ACTIONS(4700), + [anon_sym_o_GT] = ACTIONS(4700), + [anon_sym_err_PLUSout_GT] = ACTIONS(4700), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4700), + [anon_sym_o_PLUSe_GT] = ACTIONS(4700), + [anon_sym_e_PLUSo_GT] = ACTIONS(4700), + [anon_sym_err_GT_GT] = ACTIONS(4703), + [anon_sym_out_GT_GT] = ACTIONS(4703), + [anon_sym_e_GT_GT] = ACTIONS(4703), + [anon_sym_o_GT_GT] = ACTIONS(4703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4703), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4706), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4709), }, [1376] = { [sym_comment] = STATE(1376), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1377] = { - [sym_cell_path] = STATE(1631), - [sym_path] = STATE(1519), [sym_comment] = STATE(1377), - [aux_sym_cell_path_repeat1] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1378] = { [sym_comment] = STATE(1378), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4716), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), }, [1379] = { [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4678), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [aux_sym_record_entry_token1] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4680), - [aux_sym__immediate_decimal_token2] = ACTIONS(4682), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [aux_sym__val_number_token4] = ACTIONS(1868), + [aux_sym__val_number_token5] = ACTIONS(1868), + [aux_sym__val_number_token6] = ACTIONS(1868), + [anon_sym_0b] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1868), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [sym_val_date] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token1] = ACTIONS(1866), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1868), }, [1381] = { [sym_comment] = STATE(1381), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1382] = { [sym_comment] = STATE(1382), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1383] = { + [sym_cell_path] = STATE(1635), + [sym_path] = STATE(1567), [sym_comment] = STATE(1383), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1761), - [anon_sym_0x] = ACTIONS(1761), - [sym_val_date] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token1] = ACTIONS(1761), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1763), + [aux_sym_cell_path_repeat1] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym__newline] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_null] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [aux_sym__val_number_decimal_token1] = ACTIONS(1880), + [aux_sym__val_number_decimal_token2] = ACTIONS(1884), + [aux_sym__val_number_decimal_token3] = ACTIONS(1884), + [aux_sym__val_number_decimal_token4] = ACTIONS(1884), + [aux_sym__val_number_token1] = ACTIONS(1884), + [aux_sym__val_number_token2] = ACTIONS(1884), + [aux_sym__val_number_token3] = ACTIONS(1884), + [aux_sym__val_number_token4] = ACTIONS(1884), + [aux_sym__val_number_token5] = ACTIONS(1884), + [aux_sym__val_number_token6] = ACTIONS(1884), + [anon_sym_0b] = ACTIONS(1880), + [anon_sym_0o] = ACTIONS(1880), + [anon_sym_0x] = ACTIONS(1880), + [sym_val_date] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [sym__str_single_quotes] = ACTIONS(1884), + [sym__str_back_ticks] = ACTIONS(1884), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [aux_sym_unquoted_token1] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1884), }, [1384] = { - [sym_cell_path] = STATE(1640), - [sym_path] = STATE(1519), + [sym_path] = STATE(1458), [sym_comment] = STATE(1384), - [aux_sym_cell_path_repeat1] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [aux_sym_cell_path_repeat1] = STATE(1385), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_LT] = ACTIONS(1479), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1481), + [aux_sym__val_number_token5] = ACTIONS(1481), + [aux_sym__val_number_token6] = ACTIONS(1481), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), }, [1385] = { + [sym_path] = STATE(1458), [sym_comment] = STATE(1385), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1385), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1483), + [anon_sym_0x] = ACTIONS(1483), + [sym_val_date] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [aux_sym_unquoted_token1] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), }, [1386] = { [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1387] = { [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1388] = { + [sym_cell_path] = STATE(1636), + [sym_path] = STATE(1567), [sym_comment] = STATE(1388), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1888), + [aux_sym__val_number_token5] = ACTIONS(1888), + [aux_sym__val_number_token6] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1886), + [anon_sym_0o] = ACTIONS(1886), + [anon_sym_0x] = ACTIONS(1886), + [sym_val_date] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [aux_sym_unquoted_token1] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), }, [1389] = { [sym_comment] = STATE(1389), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4725), + [aux_sym__immediate_decimal_token2] = ACTIONS(4727), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1390] = { [sym_comment] = STATE(1390), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4598), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [sym__newline] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4729), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [aux_sym_record_entry_token1] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), }, [1391] = { [sym_comment] = STATE(1391), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [sym__newline] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4731), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [aux_sym_record_entry_token1] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), }, [1392] = { [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4684), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1393] = { + [sym_cell_path] = STATE(1622), + [sym_path] = STATE(1567), [sym_comment] = STATE(1393), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4688), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_DOT_DOT_LT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), }, [1394] = { [sym_comment] = STATE(1394), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [1395] = { - [sym__match_pattern] = STATE(7546), - [sym__match_pattern_expression] = STATE(7095), - [sym__match_pattern_value] = STATE(7109), - [sym__match_pattern_list] = STATE(7114), - [sym__match_pattern_record] = STATE(7148), - [sym_expr_parenthesized] = STATE(5819), - [sym_val_range] = STATE(7109), - [sym__val_range] = STATE(7906), - [sym_val_nothing] = STATE(7164), - [sym_val_bool] = STATE(7203), - [sym_val_variable] = STATE(5826), - [sym_val_number] = STATE(7164), - [sym__val_number_decimal] = STATE(5605), - [sym__val_number] = STATE(1729), - [sym_val_duration] = STATE(7164), - [sym_val_filesize] = STATE(7164), - [sym_val_binary] = STATE(7164), - [sym_val_string] = STATE(7164), - [sym__raw_str] = STATE(1771), - [sym__str_double_quotes] = STATE(1771), - [sym_val_table] = STATE(7164), - [sym_unquoted] = STATE(7176), - [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1395), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3593), - [anon_sym_LBRACE] = ACTIONS(3595), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), - [anon_sym_DOT_DOT_LT] = ACTIONS(4692), - [anon_sym_null] = ACTIONS(4694), - [anon_sym_true] = ACTIONS(4696), - [anon_sym_false] = ACTIONS(4696), - [aux_sym__val_number_decimal_token1] = ACTIONS(4698), - [aux_sym__val_number_decimal_token2] = ACTIONS(4700), - [aux_sym__val_number_decimal_token3] = ACTIONS(4702), - [aux_sym__val_number_decimal_token4] = ACTIONS(4704), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4706), - [aux_sym__val_number_token5] = ACTIONS(4706), - [aux_sym__val_number_token6] = ACTIONS(4706), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4708), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2671), - [anon_sym_out_GT] = ACTIONS(2671), - [anon_sym_e_GT] = ACTIONS(2671), - [anon_sym_o_GT] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT] = ACTIONS(2671), - [anon_sym_err_GT_GT] = ACTIONS(2673), - [anon_sym_out_GT_GT] = ACTIONS(2673), - [anon_sym_e_GT_GT] = ACTIONS(2673), - [anon_sym_o_GT_GT] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [aux_sym__val_number_token4] = ACTIONS(1868), + [aux_sym__val_number_token5] = ACTIONS(1868), + [aux_sym__val_number_token6] = ACTIONS(1868), + [anon_sym_0b] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1868), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [sym_val_date] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token1] = ACTIONS(1866), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1868), }, [1396] = { [sym_comment] = STATE(1396), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1397] = { [sym_comment] = STATE(1397), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4710), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1398] = { [sym_comment] = STATE(1398), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4712), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [aux_sym_record_entry_token1] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), }, [1399] = { + [sym_path] = STATE(1452), [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [aux_sym_cell_path_repeat1] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1479), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4622), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1400] = { - [sym_path] = STATE(1449), [sym_comment] = STATE(1400), - [aux_sym_cell_path_repeat1] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4590), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [1401] = { [sym_comment] = STATE(1401), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4714), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [aux_sym_record_entry_token1] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4733), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1402] = { - [sym_path] = STATE(1449), + [sym__match_pattern] = STATE(7663), + [sym__match_pattern_expression] = STATE(6938), + [sym__match_pattern_value] = STATE(6942), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6955), + [sym_expr_parenthesized] = STATE(5876), + [sym_val_range] = STATE(6942), + [sym__val_range] = STATE(7747), + [sym_val_nothing] = STATE(6968), + [sym_val_bool] = STATE(6890), + [sym_val_variable] = STATE(5878), + [sym_val_number] = STATE(6968), + [sym__val_number_decimal] = STATE(5618), + [sym__val_number] = STATE(1738), + [sym_val_duration] = STATE(6968), + [sym_val_filesize] = STATE(6968), + [sym_val_binary] = STATE(6968), + [sym_val_string] = STATE(6968), + [sym__raw_str] = STATE(1832), + [sym__str_double_quotes] = STATE(1832), + [sym_val_table] = STATE(6968), + [sym_unquoted] = STATE(7029), + [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1402), - [aux_sym_cell_path_repeat1] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_DOT_DOT] = ACTIONS(4735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4737), + [anon_sym_DOT_DOT_LT] = ACTIONS(4737), + [anon_sym_null] = ACTIONS(4739), + [anon_sym_true] = ACTIONS(4741), + [anon_sym_false] = ACTIONS(4741), + [aux_sym__val_number_decimal_token1] = ACTIONS(4743), + [aux_sym__val_number_decimal_token2] = ACTIONS(4745), + [aux_sym__val_number_decimal_token3] = ACTIONS(4747), + [aux_sym__val_number_decimal_token4] = ACTIONS(4749), + [aux_sym__val_number_token1] = ACTIONS(435), + [aux_sym__val_number_token2] = ACTIONS(435), + [aux_sym__val_number_token3] = ACTIONS(435), + [aux_sym__val_number_token4] = ACTIONS(4751), + [aux_sym__val_number_token5] = ACTIONS(4751), + [aux_sym__val_number_token6] = ACTIONS(4751), + [anon_sym_0b] = ACTIONS(233), + [anon_sym_0o] = ACTIONS(235), + [anon_sym_0x] = ACTIONS(235), + [sym_val_date] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_err_GT] = ACTIONS(2763), + [anon_sym_out_GT] = ACTIONS(2763), + [anon_sym_e_GT] = ACTIONS(2763), + [anon_sym_o_GT] = ACTIONS(2763), + [anon_sym_err_PLUSout_GT] = ACTIONS(2763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2763), + [anon_sym_o_PLUSe_GT] = ACTIONS(2763), + [anon_sym_e_PLUSo_GT] = ACTIONS(2763), + [anon_sym_err_GT_GT] = ACTIONS(2765), + [anon_sym_out_GT_GT] = ACTIONS(2765), + [anon_sym_e_GT_GT] = ACTIONS(2765), + [anon_sym_o_GT_GT] = ACTIONS(2765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2765), + [aux_sym_unquoted_token1] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(443), }, [1403] = { - [sym_path] = STATE(1481), [sym_comment] = STATE(1403), - [aux_sym_cell_path_repeat1] = STATE(1403), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_LT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [aux_sym_record_entry_token1] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), }, [1404] = { [sym_comment] = STATE(1404), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(4722), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(4726), - [sym_duration_unit] = ACTIONS(4728), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4730), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(4759), + [sym_duration_unit] = ACTIONS(4761), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4763), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, [1405] = { [sym_comment] = STATE(1405), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4732), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [aux_sym_record_entry_token1] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), }, [1406] = { [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), + [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1407] = { - [sym_path] = STATE(1481), + [sym_path] = STATE(1452), [sym_comment] = STATE(1407), - [aux_sym_cell_path_repeat1] = STATE(1403), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_DOT_DOT_LT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [aux_sym_cell_path_repeat1] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1485), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1483), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1408] = { - [sym_cell_path] = STATE(1630), - [sym_path] = STATE(1519), [sym_comment] = STATE(1408), - [aux_sym_cell_path_repeat1] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT] = ACTIONS(1747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [aux_sym__val_number_token4] = ACTIONS(1749), - [aux_sym__val_number_token5] = ACTIONS(1749), - [aux_sym__val_number_token6] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [sym_val_date] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1749), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4768), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), }, [1409] = { [sym_comment] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1761), - [anon_sym_0x] = ACTIONS(1761), - [sym_val_date] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token1] = ACTIONS(1761), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [aux_sym_record_entry_token1] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), }, [1410] = { [sym_comment] = STATE(1410), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1002), - [anon_sym_0o] = ACTIONS(1002), - [anon_sym_0x] = ACTIONS(1002), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_in2] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2353), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2353), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2353), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2353), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), }, [1411] = { [sym_comment] = STATE(1411), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_in2] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4770), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), }, [1412] = { [sym_comment] = STATE(1412), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_err_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_GT_PIPE] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT2] = ACTIONS(4772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4774), + [anon_sym_null] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1958), + [aux_sym__val_number_token5] = ACTIONS(1958), + [aux_sym__val_number_token6] = ACTIONS(1958), + [anon_sym_0b] = ACTIONS(1950), + [anon_sym_0o] = ACTIONS(1950), + [anon_sym_0x] = ACTIONS(1950), + [sym_val_date] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1950), + [anon_sym_out_GT] = ACTIONS(1950), + [anon_sym_e_GT] = ACTIONS(1950), + [anon_sym_o_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT] = ACTIONS(1950), + [anon_sym_err_GT_GT] = ACTIONS(1958), + [anon_sym_out_GT_GT] = ACTIONS(1958), + [anon_sym_e_GT_GT] = ACTIONS(1958), + [anon_sym_o_GT_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1958), + [aux_sym_unquoted_token1] = ACTIONS(1950), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), }, [1413] = { [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4734), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_in2] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), }, [1414] = { [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4736), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1415] = { [sym_comment] = STATE(1415), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1012), - [anon_sym_DASH_EQ] = ACTIONS(1012), - [anon_sym_STAR_EQ] = ACTIONS(1012), - [anon_sym_SLASH_EQ] = ACTIONS(1012), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4776), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), + [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_null] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1502), + [aux_sym__val_number_token5] = ACTIONS(1502), + [aux_sym__val_number_token6] = ACTIONS(1502), + [anon_sym_0b] = ACTIONS(1500), + [anon_sym_0o] = ACTIONS(1500), + [anon_sym_0x] = ACTIONS(1500), + [sym_val_date] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [aux_sym_unquoted_token1] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, [1416] = { [sym_comment] = STATE(1416), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [sym_filesize_unit] = ACTIONS(4778), + [sym_duration_unit] = ACTIONS(4780), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4782), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, [1417] = { [sym_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4784), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1492), + [aux_sym__val_number_token5] = ACTIONS(1492), + [aux_sym__val_number_token6] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1490), + [anon_sym_0o] = ACTIONS(1490), + [anon_sym_0x] = ACTIONS(1490), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, [1418] = { [sym_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), }, [1419] = { [sym_comment] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1762), }, [1420] = { [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_STAR_EQ] = ACTIONS(1516), + [anon_sym_SLASH_EQ] = ACTIONS(1516), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_in2] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1514), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), }, [1421] = { [sym_comment] = STATE(1421), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [aux_sym_record_entry_token1] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1422] = { [sym_comment] = STATE(1422), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4740), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_in2] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4786), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), }, [1423] = { [sym_comment] = STATE(1423), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4742), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [sym__newline] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [aux_sym_record_entry_token1] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), }, [1424] = { [sym_comment] = STATE(1424), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1012), - [anon_sym_DASH_EQ] = ACTIONS(1012), - [anon_sym_STAR_EQ] = ACTIONS(1012), - [anon_sym_SLASH_EQ] = ACTIONS(1012), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [aux_sym_record_entry_token1] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_in2] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4788), + [aux_sym__immediate_decimal_token2] = ACTIONS(4790), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), }, [1425] = { [sym_comment] = STATE(1425), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [sym__newline] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [aux_sym_record_entry_token1] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), }, [1426] = { [sym_comment] = STATE(1426), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + }, + [1427] = { + [sym_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [aux_sym__val_number_decimal_token1] = ACTIONS(1768), + [aux_sym__val_number_decimal_token2] = ACTIONS(1770), + [aux_sym__val_number_decimal_token3] = ACTIONS(1770), + [aux_sym__val_number_decimal_token4] = ACTIONS(1770), + [aux_sym__val_number_token1] = ACTIONS(1770), + [aux_sym__val_number_token2] = ACTIONS(1770), + [aux_sym__val_number_token3] = ACTIONS(1770), + [aux_sym__val_number_token4] = ACTIONS(1770), + [aux_sym__val_number_token5] = ACTIONS(1770), + [aux_sym__val_number_token6] = ACTIONS(1770), + [anon_sym_0b] = ACTIONS(1768), + [sym_filesize_unit] = ACTIONS(1770), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_0o] = ACTIONS(1768), + [anon_sym_0x] = ACTIONS(1768), + [sym_val_date] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym__str_single_quotes] = ACTIONS(1770), + [sym__str_back_ticks] = ACTIONS(1770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token1] = ACTIONS(1768), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1770), + }, + [1428] = { + [sym_comment] = STATE(1428), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + }, + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1822), [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1822), [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(4746), + [anon_sym_DOT_DOT2] = ACTIONS(1820), [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4748), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4748), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), + [aux_sym__val_number_decimal_token2] = ACTIONS(1822), + [aux_sym__val_number_decimal_token3] = ACTIONS(1822), + [aux_sym__val_number_decimal_token4] = ACTIONS(1822), + [aux_sym__val_number_token1] = ACTIONS(1822), + [aux_sym__val_number_token2] = ACTIONS(1822), + [aux_sym__val_number_token3] = ACTIONS(1822), + [aux_sym__val_number_token4] = ACTIONS(1822), + [aux_sym__val_number_token5] = ACTIONS(1822), + [aux_sym__val_number_token6] = ACTIONS(1822), [anon_sym_0b] = ACTIONS(1820), + [sym_filesize_unit] = ACTIONS(1822), + [sym_duration_unit] = ACTIONS(1822), [anon_sym_0o] = ACTIONS(1820), [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [sym_val_date] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym__str_single_quotes] = ACTIONS(1822), + [sym__str_back_ticks] = ACTIONS(1822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), [anon_sym_err_GT] = ACTIONS(1820), [anon_sym_out_GT] = ACTIONS(1820), [anon_sym_e_GT] = ACTIONS(1820), @@ -211238,1796 +349521,3543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), [anon_sym_o_PLUSe_GT] = ACTIONS(1820), [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), [aux_sym_unquoted_token1] = ACTIONS(1820), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), - }, - [1427] = { - [sym_comment] = STATE(1427), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1802), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), - }, - [1428] = { - [sym_comment] = STATE(1428), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(4722), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [sym_filesize_unit] = ACTIONS(4758), - [sym_duration_unit] = ACTIONS(4760), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4762), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1822), }, [1430] = { [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4764), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4794), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1431] = { - [sym_path] = STATE(1519), [sym_comment] = STATE(1431), - [aux_sym_cell_path_repeat1] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_DOT_DOT_LT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [anon_sym_null] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [aux_sym__val_number_decimal_token2] = ACTIONS(1868), + [aux_sym__val_number_decimal_token3] = ACTIONS(1868), + [aux_sym__val_number_decimal_token4] = ACTIONS(1868), + [aux_sym__val_number_token1] = ACTIONS(1868), + [aux_sym__val_number_token2] = ACTIONS(1868), + [aux_sym__val_number_token3] = ACTIONS(1868), + [aux_sym__val_number_token4] = ACTIONS(1868), + [aux_sym__val_number_token5] = ACTIONS(1868), + [aux_sym__val_number_token6] = ACTIONS(1868), + [anon_sym_0b] = ACTIONS(1866), + [sym_filesize_unit] = ACTIONS(1868), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [sym_val_date] = ACTIONS(1868), + [anon_sym_DQUOTE] = ACTIONS(1868), + [sym__str_single_quotes] = ACTIONS(1868), + [sym__str_back_ticks] = ACTIONS(1868), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1868), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token1] = ACTIONS(1866), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1868), }, [1432] = { - [sym_path] = STATE(1519), + [sym_path] = STATE(1567), [sym_comment] = STATE(1432), - [aux_sym_cell_path_repeat1] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_LT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [aux_sym_cell_path_repeat1] = STATE(1433), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_LT] = ACTIONS(1479), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1481), + [aux_sym__val_number_token5] = ACTIONS(1481), + [aux_sym__val_number_token6] = ACTIONS(1481), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), }, [1433] = { + [sym_path] = STATE(1567), [sym_comment] = STATE(1433), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(1433), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_DOT_DOT_LT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1483), + [anon_sym_0x] = ACTIONS(1483), + [sym_val_date] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [aux_sym_unquoted_token1] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), }, [1434] = { [sym_comment] = STATE(1434), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1435] = { [sym_comment] = STATE(1435), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_in2] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), }, [1436] = { [sym_comment] = STATE(1436), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [aux_sym_unquoted_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [aux_sym_unquoted_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), }, [1437] = { [sym_comment] = STATE(1437), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4769), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_bit_DASHshl] = ACTIONS(3279), + [anon_sym_bit_DASHshr] = ACTIONS(3279), + [anon_sym_EQ_TILDE] = ACTIONS(3279), + [anon_sym_BANG_TILDE] = ACTIONS(3279), + [anon_sym_bit_DASHand] = ACTIONS(3279), + [anon_sym_bit_DASHxor] = ACTIONS(3279), + [anon_sym_bit_DASHor] = ACTIONS(3279), + [anon_sym_and] = ACTIONS(3279), + [anon_sym_xor] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_not_DASHin] = ACTIONS(3279), + [anon_sym_starts_DASHwith] = ACTIONS(3279), + [anon_sym_ends_DASHwith] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3279), + [aux_sym_cmd_identifier_token41] = ACTIONS(3283), + [sym__newline] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_in2] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2345), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2345), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2345), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2345), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), }, [1438] = { [sym_comment] = STATE(1438), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4771), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4799), + [aux_sym__immediate_decimal_token2] = ACTIONS(4801), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1439] = { [sym_comment] = STATE(1439), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_in2] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2246), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2246), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2246), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2246), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [aux_sym_record_entry_token1] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), }, [1440] = { [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_LT] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1573), - [sym_filesize_unit] = ACTIONS(1575), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token1] = ACTIONS(1573), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1575), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), }, [1441] = { [sym_comment] = STATE(1441), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2254), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2254), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2254), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1442] = { [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1587), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, [1443] = { [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [aux_sym__val_number_token4] = ACTIONS(1683), - [aux_sym__val_number_token5] = ACTIONS(1683), - [aux_sym__val_number_token6] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym__str_single_quotes] = ACTIONS(1683), - [sym__str_back_ticks] = ACTIONS(1683), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1683), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1508), + [aux_sym__val_number_token5] = ACTIONS(1508), + [aux_sym__val_number_token6] = ACTIONS(1508), + [anon_sym_0b] = ACTIONS(1506), + [anon_sym_0o] = ACTIONS(1506), + [anon_sym_0x] = ACTIONS(1506), + [sym_val_date] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [aux_sym_unquoted_token1] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, [1444] = { [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1761), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1761), - [anon_sym_0x] = ACTIONS(1761), - [sym_val_date] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token1] = ACTIONS(1761), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1763), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [aux_sym_unquoted_token1] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, [1445] = { [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_null] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1498), + [aux_sym__val_number_token5] = ACTIONS(1498), + [aux_sym__val_number_token6] = ACTIONS(1498), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, [1446] = { [sym_comment] = STATE(1446), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4773), - [aux_sym__immediate_decimal_token2] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), }, [1447] = { [sym_comment] = STATE(1447), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4807), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1448] = { [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym__newline] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_err_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_GT_PIPE] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_DOT_DOT2] = ACTIONS(4809), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1940), + [anon_sym_DOT_DOT_LT] = ACTIONS(1940), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4811), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4811), + [anon_sym_null] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_0b] = ACTIONS(1940), + [anon_sym_0o] = ACTIONS(1940), + [anon_sym_0x] = ACTIONS(1940), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1948), + [anon_sym_err_GT] = ACTIONS(1940), + [anon_sym_out_GT] = ACTIONS(1940), + [anon_sym_e_GT] = ACTIONS(1940), + [anon_sym_o_GT] = ACTIONS(1940), + [anon_sym_err_PLUSout_GT] = ACTIONS(1940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), + [anon_sym_o_PLUSe_GT] = ACTIONS(1940), + [anon_sym_e_PLUSo_GT] = ACTIONS(1940), + [anon_sym_err_GT_GT] = ACTIONS(1948), + [anon_sym_out_GT_GT] = ACTIONS(1948), + [anon_sym_e_GT_GT] = ACTIONS(1948), + [anon_sym_o_GT_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1948), + [aux_sym_unquoted_token1] = ACTIONS(1940), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), }, [1449] = { [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4813), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1450] = { [sym_comment] = STATE(1450), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4740), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_DASH_EQ] = ACTIONS(1558), + [anon_sym_STAR_EQ] = ACTIONS(1558), + [anon_sym_SLASH_EQ] = ACTIONS(1558), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1556), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1556), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1556), + [anon_sym_SLASH2] = ACTIONS(1556), + [anon_sym_mod2] = ACTIONS(1558), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), }, [1451] = { - [sym_cell_path] = STATE(1793), - [sym_path] = STATE(1678), [sym_comment] = STATE(1451), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_err_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_GT_PIPE] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1944), - [anon_sym_DOT_DOT_LT] = ACTIONS(1944), - [anon_sym_null] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1944), - [aux_sym__val_number_decimal_token3] = ACTIONS(1944), - [aux_sym__val_number_decimal_token4] = ACTIONS(1944), - [aux_sym__val_number_token1] = ACTIONS(1944), - [aux_sym__val_number_token2] = ACTIONS(1944), - [aux_sym__val_number_token3] = ACTIONS(1944), - [aux_sym__val_number_token4] = ACTIONS(1944), - [aux_sym__val_number_token5] = ACTIONS(1944), - [aux_sym__val_number_token6] = ACTIONS(1944), - [anon_sym_0b] = ACTIONS(1942), - [anon_sym_0o] = ACTIONS(1942), - [anon_sym_0x] = ACTIONS(1942), - [sym_val_date] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym__str_single_quotes] = ACTIONS(1944), - [sym__str_back_ticks] = ACTIONS(1944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1944), - [anon_sym_err_GT] = ACTIONS(1942), - [anon_sym_out_GT] = ACTIONS(1942), - [anon_sym_e_GT] = ACTIONS(1942), - [anon_sym_o_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT] = ACTIONS(1942), - [anon_sym_err_GT_GT] = ACTIONS(1944), - [anon_sym_out_GT_GT] = ACTIONS(1944), - [anon_sym_e_GT_GT] = ACTIONS(1944), - [anon_sym_o_GT_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), - [aux_sym_unquoted_token1] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_DASH_EQ] = ACTIONS(1558), + [anon_sym_STAR_EQ] = ACTIONS(1558), + [anon_sym_SLASH_EQ] = ACTIONS(1558), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1556), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1556), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1556), + [anon_sym_SLASH2] = ACTIONS(1556), + [anon_sym_mod2] = ACTIONS(1558), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), }, [1452] = { - [sym_cell_path] = STATE(1794), - [sym_path] = STATE(1678), [sym_comment] = STATE(1452), - [aux_sym_cell_path_repeat1] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_in2] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + }, + [1453] = { + [sym_comment] = STATE(1453), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4815), + [aux_sym__immediate_decimal_token2] = ACTIONS(4817), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1454] = { + [sym_comment] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), + }, + [1455] = { + [sym_comment] = STATE(1455), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4821), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1456] = { + [sym_comment] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1508), + [aux_sym__val_number_token5] = ACTIONS(1508), + [aux_sym__val_number_token6] = ACTIONS(1508), + [anon_sym_0b] = ACTIONS(1506), + [anon_sym_0o] = ACTIONS(1506), + [anon_sym_0x] = ACTIONS(1506), + [sym_val_date] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [aux_sym_unquoted_token1] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), + }, + [1457] = { + [sym_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_DOT_DOT_LT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [aux_sym_unquoted_token1] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), + }, + [1458] = { + [sym_comment] = STATE(1458), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), + [anon_sym_DOT_DOT_LT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1528), + [aux_sym__val_number_token5] = ACTIONS(1528), + [aux_sym__val_number_token6] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1526), + [anon_sym_0o] = ACTIONS(1526), + [anon_sym_0x] = ACTIONS(1526), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [aux_sym_unquoted_token1] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), + }, + [1459] = { + [sym_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_null] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1498), + [aux_sym__val_number_token5] = ACTIONS(1498), + [aux_sym__val_number_token6] = ACTIONS(1498), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), + }, + [1460] = { + [sym_comment] = STATE(1460), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), + }, + [1461] = { + [sym_comment] = STATE(1461), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_DOT_DOT_LT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), + }, + [1462] = { + [sym_comment] = STATE(1462), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4794), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1463] = { + [sym_comment] = STATE(1463), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), + }, + [1464] = { + [sym_comment] = STATE(1464), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1822), + [anon_sym_in2] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1822), + [anon_sym_xor2] = ACTIONS(1822), + [anon_sym_or2] = ACTIONS(1822), + [anon_sym_not_DASHin2] = ACTIONS(1822), + [anon_sym_starts_DASHwith2] = ACTIONS(1822), + [anon_sym_ends_DASHwith2] = ACTIONS(1822), + [anon_sym_EQ_EQ2] = ACTIONS(1822), + [anon_sym_BANG_EQ2] = ACTIONS(1822), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1822), + [anon_sym_GT_EQ2] = ACTIONS(1822), + [anon_sym_EQ_TILDE2] = ACTIONS(1822), + [anon_sym_BANG_TILDE2] = ACTIONS(1822), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_STAR_STAR2] = ACTIONS(1822), + [anon_sym_PLUS_PLUS2] = ACTIONS(1822), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1822), + [anon_sym_SLASH_SLASH2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1822), + [anon_sym_bit_DASHshr2] = ACTIONS(1822), + [anon_sym_bit_DASHand2] = ACTIONS(1822), + [anon_sym_bit_DASHxor2] = ACTIONS(1822), + [anon_sym_bit_DASHor2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(4823), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1466] = { + [sym_comment] = STATE(1466), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [aux_sym_record_entry_token1] = ACTIONS(4825), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), + }, + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [1469] = { + [sym_comment] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_in2] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), + }, + [1470] = { + [sym_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [aux_sym_unquoted_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [1471] = { + [sym_comment] = STATE(1471), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_in2] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), + }, + [1472] = { + [sym_comment] = STATE(1472), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_DASH_EQ] = ACTIONS(1558), + [anon_sym_STAR_EQ] = ACTIONS(1558), + [anon_sym_SLASH_EQ] = ACTIONS(1558), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), + [sym__newline] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1556), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1556), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1556), + [anon_sym_SLASH2] = ACTIONS(1556), + [anon_sym_mod2] = ACTIONS(1558), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [aux_sym_record_entry_token1] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), + }, + [1473] = { + [sym_comment] = STATE(1473), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4827), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_DOT_DOT_LT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1492), + [aux_sym__val_number_token5] = ACTIONS(1492), + [aux_sym__val_number_token6] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1490), + [anon_sym_0o] = ACTIONS(1490), + [anon_sym_0x] = ACTIONS(1490), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), + }, + [1474] = { + [sym_cell_path] = STATE(1847), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1474), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_err_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_GT_PIPE] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1996), + [anon_sym_DOT_DOT_LT] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1996), + [aux_sym__val_number_decimal_token3] = ACTIONS(1996), + [aux_sym__val_number_decimal_token4] = ACTIONS(1996), + [aux_sym__val_number_token1] = ACTIONS(1996), + [aux_sym__val_number_token2] = ACTIONS(1996), + [aux_sym__val_number_token3] = ACTIONS(1996), + [aux_sym__val_number_token4] = ACTIONS(1996), + [aux_sym__val_number_token5] = ACTIONS(1996), + [aux_sym__val_number_token6] = ACTIONS(1996), + [anon_sym_0b] = ACTIONS(1994), + [anon_sym_0o] = ACTIONS(1994), + [anon_sym_0x] = ACTIONS(1994), + [sym_val_date] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1996), + [sym__str_back_ticks] = ACTIONS(1996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1996), + [anon_sym_err_GT] = ACTIONS(1994), + [anon_sym_out_GT] = ACTIONS(1994), + [anon_sym_e_GT] = ACTIONS(1994), + [anon_sym_o_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT] = ACTIONS(1994), + [anon_sym_err_GT_GT] = ACTIONS(1996), + [anon_sym_out_GT_GT] = ACTIONS(1996), + [anon_sym_e_GT_GT] = ACTIONS(1996), + [anon_sym_o_GT_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1996), + [aux_sym_unquoted_token1] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1996), + }, + [1475] = { + [sym_cell_path] = STATE(1852), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1475), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_0b] = ACTIONS(2010), + [anon_sym_0o] = ACTIONS(2010), + [anon_sym_0x] = ACTIONS(2010), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [aux_sym_unquoted_token1] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2012), + }, + [1476] = { + [sym_cell_path] = STATE(1728), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1476), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_err_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_GT_PIPE] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1976), + [anon_sym_DOT_DOT_LT] = ACTIONS(1976), + [anon_sym_null] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(1976), + [aux_sym__val_number_decimal_token4] = ACTIONS(1976), + [aux_sym__val_number_token1] = ACTIONS(1976), + [aux_sym__val_number_token2] = ACTIONS(1976), + [aux_sym__val_number_token3] = ACTIONS(1976), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym__str_single_quotes] = ACTIONS(1976), + [sym__str_back_ticks] = ACTIONS(1976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1976), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1976), + [anon_sym_out_GT_GT] = ACTIONS(1976), + [anon_sym_e_GT_GT] = ACTIONS(1976), + [anon_sym_o_GT_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1976), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1976), + }, + [1477] = { + [sym_cell_path] = STATE(1730), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1477), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2016), + [anon_sym_DOT_DOT_LT] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2016), + [aux_sym__val_number_token5] = ACTIONS(2016), + [aux_sym__val_number_token6] = ACTIONS(2016), + [anon_sym_0b] = ACTIONS(2014), + [anon_sym_0o] = ACTIONS(2014), + [anon_sym_0x] = ACTIONS(2014), + [sym_val_date] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2016), + [anon_sym_err_GT] = ACTIONS(2014), + [anon_sym_out_GT] = ACTIONS(2014), + [anon_sym_e_GT] = ACTIONS(2014), + [anon_sym_o_GT] = ACTIONS(2014), + [anon_sym_err_PLUSout_GT] = ACTIONS(2014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2014), + [anon_sym_o_PLUSe_GT] = ACTIONS(2014), + [anon_sym_e_PLUSo_GT] = ACTIONS(2014), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), + [aux_sym_unquoted_token1] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2016), + }, + [1478] = { + [sym_cell_path] = STATE(1732), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1478), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_err_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_GT_PIPE] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2020), + [anon_sym_DOT_DOT_LT] = ACTIONS(2020), + [anon_sym_null] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2020), + [aux_sym__val_number_token5] = ACTIONS(2020), + [aux_sym__val_number_token6] = ACTIONS(2020), + [anon_sym_0b] = ACTIONS(2018), + [anon_sym_0o] = ACTIONS(2018), + [anon_sym_0x] = ACTIONS(2018), + [sym_val_date] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2020), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2020), + [anon_sym_out_GT_GT] = ACTIONS(2020), + [anon_sym_e_GT_GT] = ACTIONS(2020), + [anon_sym_o_GT_GT] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2020), + [aux_sym_unquoted_token1] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [1479] = { + [sym_cell_path] = STATE(1733), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_0b] = ACTIONS(2022), + [anon_sym_0o] = ACTIONS(2022), + [anon_sym_0x] = ACTIONS(2022), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [aux_sym_unquoted_token1] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2024), + }, + [1480] = { + [sym_cell_path] = STATE(1735), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1480), + [aux_sym_cell_path_repeat1] = STATE(1538), [sym__newline] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2028), [anon_sym_PIPE] = ACTIONS(2028), @@ -213048,7 +353078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2028), [anon_sym_RBRACE] = ACTIONS(2028), [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT] = ACTIONS(4829), [anon_sym_DOT_DOT_EQ] = ACTIONS(2028), [anon_sym_DOT_DOT_LT] = ACTIONS(2028), [anon_sym_null] = ACTIONS(2028), @@ -213090,14 +353120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), [aux_sym_unquoted_token1] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2028), }, - [1453] = { - [sym_cell_path] = STATE(1809), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1453), - [aux_sym_cell_path_repeat1] = STATE(1528), + [1481] = { + [sym_cell_path] = STATE(1736), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1481), + [aux_sym_cell_path_repeat1] = STATE(1538), [sym__newline] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2032), [anon_sym_PIPE] = ACTIONS(2032), @@ -213118,7 +353148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2032), [anon_sym_RBRACE] = ACTIONS(2032), [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT] = ACTIONS(4829), [anon_sym_DOT_DOT_EQ] = ACTIONS(2032), [anon_sym_DOT_DOT_LT] = ACTIONS(2032), [anon_sym_null] = ACTIONS(2032), @@ -213160,14 +353190,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), [aux_sym_unquoted_token1] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2032), }, - [1454] = { - [sym_cell_path] = STATE(1819), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1454), - [aux_sym_cell_path_repeat1] = STATE(1528), + [1482] = { + [sym_cell_path] = STATE(1739), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1482), + [aux_sym_cell_path_repeat1] = STATE(1538), [sym__newline] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2036), [anon_sym_PIPE] = ACTIONS(2036), @@ -213188,7 +353218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2036), [anon_sym_RBRACE] = ACTIONS(2036), [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT] = ACTIONS(4829), [anon_sym_DOT_DOT_EQ] = ACTIONS(2036), [anon_sym_DOT_DOT_LT] = ACTIONS(2036), [anon_sym_null] = ACTIONS(2036), @@ -213230,84 +353260,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), [aux_sym_unquoted_token1] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2036), }, - [1455] = { - [sym_comment] = STATE(1455), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_in2] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1683), - [anon_sym_xor2] = ACTIONS(1683), - [anon_sym_or2] = ACTIONS(1683), - [anon_sym_not_DASHin2] = ACTIONS(1683), - [anon_sym_starts_DASHwith2] = ACTIONS(1683), - [anon_sym_ends_DASHwith2] = ACTIONS(1683), - [anon_sym_EQ_EQ2] = ACTIONS(1683), - [anon_sym_BANG_EQ2] = ACTIONS(1683), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1683), - [anon_sym_GT_EQ2] = ACTIONS(1683), - [anon_sym_EQ_TILDE2] = ACTIONS(1683), - [anon_sym_BANG_TILDE2] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_STAR_STAR2] = ACTIONS(1683), - [anon_sym_PLUS_PLUS2] = ACTIONS(1683), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1683), - [anon_sym_SLASH_SLASH2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1683), - [anon_sym_bit_DASHshr2] = ACTIONS(1683), - [anon_sym_bit_DASHand2] = ACTIONS(1683), - [anon_sym_bit_DASHxor2] = ACTIONS(1683), - [anon_sym_bit_DASHor2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4779), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), + [1483] = { + [sym_cell_path] = STATE(1740), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1483), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_err_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_GT_PIPE] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2173), + [anon_sym_DOT_DOT_LT] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2171), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2171), + [anon_sym_0o] = ACTIONS(2171), + [anon_sym_0x] = ACTIONS(2171), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_err_GT] = ACTIONS(2171), + [anon_sym_out_GT] = ACTIONS(2171), + [anon_sym_e_GT] = ACTIONS(2171), + [anon_sym_o_GT] = ACTIONS(2171), + [anon_sym_err_PLUSout_GT] = ACTIONS(2171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2171), + [anon_sym_o_PLUSe_GT] = ACTIONS(2171), + [anon_sym_e_PLUSo_GT] = ACTIONS(2171), + [anon_sym_err_GT_GT] = ACTIONS(2173), + [anon_sym_out_GT_GT] = ACTIONS(2173), + [anon_sym_e_GT_GT] = ACTIONS(2173), + [anon_sym_o_GT_GT] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), + [aux_sym_unquoted_token1] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2173), }, - [1456] = { - [sym_cell_path] = STATE(1821), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1456), - [aux_sym_cell_path_repeat1] = STATE(1528), + [1484] = { + [sym_cell_path] = STATE(1741), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1484), + [aux_sym_cell_path_repeat1] = STATE(1538), [sym__newline] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2040), [anon_sym_PIPE] = ACTIONS(2040), @@ -213328,7 +353358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2040), [anon_sym_RBRACE] = ACTIONS(2040), [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT] = ACTIONS(4829), [anon_sym_DOT_DOT_EQ] = ACTIONS(2040), [anon_sym_DOT_DOT_LT] = ACTIONS(2040), [anon_sym_null] = ACTIONS(2040), @@ -213370,3024 +353400,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), [aux_sym_unquoted_token1] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2040), }, - [1457] = { - [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1458] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1458), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_err_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_GT_PIPE] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_DASH_DASH] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1931), - [anon_sym_0o] = ACTIONS(1931), - [anon_sym_0x] = ACTIONS(1931), - [sym_val_date] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_err_GT] = ACTIONS(1931), - [anon_sym_out_GT] = ACTIONS(1931), - [anon_sym_e_GT] = ACTIONS(1931), - [anon_sym_o_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT] = ACTIONS(1931), - [anon_sym_err_GT_GT] = ACTIONS(1933), - [anon_sym_out_GT_GT] = ACTIONS(1933), - [anon_sym_e_GT_GT] = ACTIONS(1933), - [anon_sym_o_GT_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), - [aux_sym_unquoted_token1] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1933), - }, - [1459] = { - [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1460] = { - [sym_cell_path] = STATE(1837), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1460), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1901), - }, - [1461] = { - [sym_cell_path] = STATE(1841), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1461), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT] = ACTIONS(1909), - [anon_sym_null] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [anon_sym_0b] = ACTIONS(1907), - [anon_sym_0o] = ACTIONS(1907), - [anon_sym_0x] = ACTIONS(1907), - [sym_val_date] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [aux_sym_unquoted_token1] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1909), - }, - [1462] = { - [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1463] = { - [sym_comment] = STATE(1463), - [ts_builtin_sym_end] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_GT2] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_STAR2] = ACTIONS(1044), - [anon_sym_and2] = ACTIONS(1046), - [anon_sym_xor2] = ACTIONS(1046), - [anon_sym_or2] = ACTIONS(1046), - [anon_sym_not_DASHin2] = ACTIONS(1046), - [anon_sym_starts_DASHwith2] = ACTIONS(1046), - [anon_sym_ends_DASHwith2] = ACTIONS(1046), - [anon_sym_EQ_EQ2] = ACTIONS(1046), - [anon_sym_BANG_EQ2] = ACTIONS(1046), - [anon_sym_LT2] = ACTIONS(1044), - [anon_sym_LT_EQ2] = ACTIONS(1046), - [anon_sym_GT_EQ2] = ACTIONS(1046), - [anon_sym_EQ_TILDE2] = ACTIONS(1046), - [anon_sym_BANG_TILDE2] = ACTIONS(1046), - [anon_sym_STAR_STAR2] = ACTIONS(1046), - [anon_sym_PLUS_PLUS2] = ACTIONS(1044), - [anon_sym_SLASH2] = ACTIONS(1044), - [anon_sym_mod2] = ACTIONS(1046), - [anon_sym_SLASH_SLASH2] = ACTIONS(1046), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1046), - [anon_sym_bit_DASHshr2] = ACTIONS(1046), - [anon_sym_bit_DASHand2] = ACTIONS(1046), - [anon_sym_bit_DASHxor2] = ACTIONS(1046), - [anon_sym_bit_DASHor2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, - [1464] = { - [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [aux_sym_unquoted_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), - }, - [1465] = { - [sym_cell_path] = STATE(1750), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1465), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_DOT_DOT_LT] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), - }, - [1466] = { - [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4783), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1467] = { - [sym_cell_path] = STATE(1775), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1467), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH2] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_LT] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [aux_sym__val_number_token4] = ACTIONS(1869), - [aux_sym__val_number_token5] = ACTIONS(1869), - [aux_sym__val_number_token6] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1867), - [anon_sym_0o] = ACTIONS(1867), - [anon_sym_0x] = ACTIONS(1867), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1869), - }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4785), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), - }, - [1469] = { - [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4787), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1470] = { - [sym_cell_path] = STATE(1745), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1471] = { - [sym_cell_path] = STATE(1744), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1471), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_DOT_DOT_LT] = ACTIONS(1851), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [1472] = { - [sym_cell_path] = STATE(1805), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1472), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_err_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_GT_PIPE] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1865), - [anon_sym_out_GT_GT] = ACTIONS(1865), - [anon_sym_e_GT_GT] = ACTIONS(1865), - [anon_sym_o_GT_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), - [aux_sym_unquoted_token1] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1865), - }, - [1473] = { - [sym_cell_path] = STATE(1792), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_err_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_GT_PIPE] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [anon_sym_DOT_DOT_LT] = ACTIONS(1929), - [anon_sym_null] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [aux_sym__val_number_token4] = ACTIONS(1929), - [aux_sym__val_number_token5] = ACTIONS(1929), - [aux_sym__val_number_token6] = ACTIONS(1929), - [anon_sym_0b] = ACTIONS(1927), - [anon_sym_0o] = ACTIONS(1927), - [anon_sym_0x] = ACTIONS(1927), - [sym_val_date] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_err_GT] = ACTIONS(1927), - [anon_sym_out_GT] = ACTIONS(1927), - [anon_sym_e_GT] = ACTIONS(1927), - [anon_sym_o_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT] = ACTIONS(1927), - [anon_sym_err_GT_GT] = ACTIONS(1929), - [anon_sym_out_GT_GT] = ACTIONS(1929), - [anon_sym_e_GT_GT] = ACTIONS(1929), - [anon_sym_o_GT_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), - [aux_sym_unquoted_token1] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1929), - }, - [1474] = { - [sym_cell_path] = STATE(1797), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1881), - [aux_sym__val_number_token5] = ACTIONS(1881), - [aux_sym__val_number_token6] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1881), - }, - [1475] = { - [sym_cell_path] = STATE(1787), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1475), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [1476] = { - [sym_comment] = STATE(1476), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4789), - [aux_sym__immediate_decimal_token2] = ACTIONS(4791), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1477] = { - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1478] = { - [sym_comment] = STATE(1478), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(4793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4795), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1479] = { - [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), - }, - [1480] = { - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1481] = { - [sym_comment] = STATE(1481), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), - }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1002), - [anon_sym_0o] = ACTIONS(1002), - [anon_sym_0x] = ACTIONS(1002), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [1483] = { - [sym_cell_path] = STATE(1830), - [sym_path] = STATE(1678), - [sym_comment] = STATE(1483), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_err_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_GT_PIPE] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_null] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1887), - [anon_sym_0o] = ACTIONS(1887), - [anon_sym_0x] = ACTIONS(1887), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1889), - [anon_sym_out_GT_GT] = ACTIONS(1889), - [anon_sym_e_GT_GT] = ACTIONS(1889), - [anon_sym_o_GT_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), - [aux_sym_unquoted_token1] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1889), - }, - [1484] = { - [sym_comment] = STATE(1484), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_GT2] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_STAR2] = ACTIONS(1044), - [anon_sym_and2] = ACTIONS(1046), - [anon_sym_xor2] = ACTIONS(1046), - [anon_sym_or2] = ACTIONS(1046), - [anon_sym_not_DASHin2] = ACTIONS(1046), - [anon_sym_starts_DASHwith2] = ACTIONS(1046), - [anon_sym_ends_DASHwith2] = ACTIONS(1046), - [anon_sym_EQ_EQ2] = ACTIONS(1046), - [anon_sym_BANG_EQ2] = ACTIONS(1046), - [anon_sym_LT2] = ACTIONS(1044), - [anon_sym_LT_EQ2] = ACTIONS(1046), - [anon_sym_GT_EQ2] = ACTIONS(1046), - [anon_sym_EQ_TILDE2] = ACTIONS(1046), - [anon_sym_BANG_TILDE2] = ACTIONS(1046), - [anon_sym_STAR_STAR2] = ACTIONS(1046), - [anon_sym_PLUS_PLUS2] = ACTIONS(1044), - [anon_sym_SLASH2] = ACTIONS(1044), - [anon_sym_mod2] = ACTIONS(1046), - [anon_sym_SLASH_SLASH2] = ACTIONS(1046), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1046), - [anon_sym_bit_DASHshr2] = ACTIONS(1046), - [anon_sym_bit_DASHand2] = ACTIONS(1046), - [anon_sym_bit_DASHxor2] = ACTIONS(1046), - [anon_sym_bit_DASHor2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, [1485] = { + [sym_cell_path] = STATE(1742), + [sym_path] = STATE(1691), [sym_comment] = STATE(1485), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_err_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_GT_PIPE] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2044), + [aux_sym__val_number_decimal_token3] = ACTIONS(2044), + [aux_sym__val_number_decimal_token4] = ACTIONS(2044), + [aux_sym__val_number_token1] = ACTIONS(2044), + [aux_sym__val_number_token2] = ACTIONS(2044), + [aux_sym__val_number_token3] = ACTIONS(2044), + [aux_sym__val_number_token4] = ACTIONS(2044), + [aux_sym__val_number_token5] = ACTIONS(2044), + [aux_sym__val_number_token6] = ACTIONS(2044), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2042), + [anon_sym_0x] = ACTIONS(2042), + [sym_val_date] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym__str_single_quotes] = ACTIONS(2044), + [sym__str_back_ticks] = ACTIONS(2044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2044), + [anon_sym_err_GT] = ACTIONS(2042), + [anon_sym_out_GT] = ACTIONS(2042), + [anon_sym_e_GT] = ACTIONS(2042), + [anon_sym_o_GT] = ACTIONS(2042), + [anon_sym_err_PLUSout_GT] = ACTIONS(2042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2042), + [anon_sym_o_PLUSe_GT] = ACTIONS(2042), + [anon_sym_e_PLUSo_GT] = ACTIONS(2042), + [anon_sym_err_GT_GT] = ACTIONS(2044), + [anon_sym_out_GT_GT] = ACTIONS(2044), + [anon_sym_e_GT_GT] = ACTIONS(2044), + [anon_sym_o_GT_GT] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2044), + [aux_sym_unquoted_token1] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2044), }, [1486] = { + [sym_cell_path] = STATE(1743), + [sym_path] = STATE(1691), [sym_comment] = STATE(1486), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_err_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_GT_PIPE] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2046), + [anon_sym_DASH_DASH] = ACTIONS(2048), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2048), + [anon_sym_DOT_DOT_LT] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2048), + [anon_sym_false] = ACTIONS(2048), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2048), + [aux_sym__val_number_decimal_token4] = ACTIONS(2048), + [aux_sym__val_number_token1] = ACTIONS(2048), + [aux_sym__val_number_token2] = ACTIONS(2048), + [aux_sym__val_number_token3] = ACTIONS(2048), + [aux_sym__val_number_token4] = ACTIONS(2048), + [aux_sym__val_number_token5] = ACTIONS(2048), + [aux_sym__val_number_token6] = ACTIONS(2048), + [anon_sym_0b] = ACTIONS(2046), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2048), + [sym__str_back_ticks] = ACTIONS(2048), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2048), + [anon_sym_err_GT] = ACTIONS(2046), + [anon_sym_out_GT] = ACTIONS(2046), + [anon_sym_e_GT] = ACTIONS(2046), + [anon_sym_o_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT] = ACTIONS(2046), + [anon_sym_err_GT_GT] = ACTIONS(2048), + [anon_sym_out_GT_GT] = ACTIONS(2048), + [anon_sym_e_GT_GT] = ACTIONS(2048), + [anon_sym_o_GT_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2048), + [aux_sym_unquoted_token1] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2048), }, [1487] = { - [sym_cell_path] = STATE(1777), - [sym_path] = STATE(1678), + [sym_cell_path] = STATE(1744), + [sym_path] = STATE(1691), [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1893), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_err_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_GT_PIPE] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2050), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [anon_sym_null] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2052), + [anon_sym_false] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_decimal_token2] = ACTIONS(2052), + [aux_sym__val_number_decimal_token3] = ACTIONS(2052), + [aux_sym__val_number_decimal_token4] = ACTIONS(2052), + [aux_sym__val_number_token1] = ACTIONS(2052), + [aux_sym__val_number_token2] = ACTIONS(2052), + [aux_sym__val_number_token3] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2052), + [aux_sym__val_number_token5] = ACTIONS(2052), + [aux_sym__val_number_token6] = ACTIONS(2052), + [anon_sym_0b] = ACTIONS(2050), + [anon_sym_0o] = ACTIONS(2050), + [anon_sym_0x] = ACTIONS(2050), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), + [anon_sym_err_GT] = ACTIONS(2050), + [anon_sym_out_GT] = ACTIONS(2050), + [anon_sym_e_GT] = ACTIONS(2050), + [anon_sym_o_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT] = ACTIONS(2050), + [anon_sym_err_GT_GT] = ACTIONS(2052), + [anon_sym_out_GT_GT] = ACTIONS(2052), + [anon_sym_e_GT_GT] = ACTIONS(2052), + [anon_sym_o_GT_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2052), + [aux_sym_unquoted_token1] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2052), }, [1488] = { + [sym_cell_path] = STATE(1746), + [sym_path] = STATE(1691), [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT2] = ACTIONS(4797), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4799), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4799), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1802), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_err_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_GT_PIPE] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(2056), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2054), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2056), + [anon_sym_DOT_DOT_LT] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2056), + [aux_sym__val_number_decimal_token4] = ACTIONS(2056), + [aux_sym__val_number_token1] = ACTIONS(2056), + [aux_sym__val_number_token2] = ACTIONS(2056), + [aux_sym__val_number_token3] = ACTIONS(2056), + [aux_sym__val_number_token4] = ACTIONS(2056), + [aux_sym__val_number_token5] = ACTIONS(2056), + [aux_sym__val_number_token6] = ACTIONS(2056), + [anon_sym_0b] = ACTIONS(2054), + [anon_sym_0o] = ACTIONS(2054), + [anon_sym_0x] = ACTIONS(2054), + [sym_val_date] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym__str_single_quotes] = ACTIONS(2056), + [sym__str_back_ticks] = ACTIONS(2056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_err_GT] = ACTIONS(2054), + [anon_sym_out_GT] = ACTIONS(2054), + [anon_sym_e_GT] = ACTIONS(2054), + [anon_sym_o_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT] = ACTIONS(2054), + [anon_sym_err_GT_GT] = ACTIONS(2056), + [anon_sym_out_GT_GT] = ACTIONS(2056), + [anon_sym_e_GT_GT] = ACTIONS(2056), + [anon_sym_o_GT_GT] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2056), + [aux_sym_unquoted_token1] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2056), }, [1489] = { - [sym_cell_path] = STATE(1803), - [sym_path] = STATE(1678), + [sym_cell_path] = STATE(1747), + [sym_path] = STATE(1691), [sym_comment] = STATE(1489), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1897), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_err_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_GT_PIPE] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2058), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2060), + [anon_sym_DOT_DOT_LT] = ACTIONS(2060), + [anon_sym_null] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2060), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2060), + [aux_sym__val_number_token5] = ACTIONS(2060), + [aux_sym__val_number_token6] = ACTIONS(2060), + [anon_sym_0b] = ACTIONS(2058), + [anon_sym_0o] = ACTIONS(2058), + [anon_sym_0x] = ACTIONS(2058), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2060), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2060), + [anon_sym_out_GT_GT] = ACTIONS(2060), + [anon_sym_e_GT_GT] = ACTIONS(2060), + [anon_sym_o_GT_GT] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2060), + [aux_sym_unquoted_token1] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2060), }, [1490] = { - [sym_cell_path] = STATE(1733), - [sym_path] = STATE(1678), + [sym_cell_path] = STATE(1748), + [sym_path] = STATE(1691), [sym_comment] = STATE(1490), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_err_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_GT_PIPE] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_null] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1911), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_0b] = ACTIONS(1911), - [anon_sym_0o] = ACTIONS(1911), - [anon_sym_0x] = ACTIONS(1911), - [sym_val_date] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1913), - [anon_sym_out_GT_GT] = ACTIONS(1913), - [anon_sym_e_GT_GT] = ACTIONS(1913), - [anon_sym_o_GT_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), - [aux_sym_unquoted_token1] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1913), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2062), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [anon_sym_0b] = ACTIONS(2062), + [anon_sym_0o] = ACTIONS(2062), + [anon_sym_0x] = ACTIONS(2062), + [sym_val_date] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2064), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2064), + [anon_sym_out_GT_GT] = ACTIONS(2064), + [anon_sym_e_GT_GT] = ACTIONS(2064), + [anon_sym_o_GT_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2064), + [aux_sym_unquoted_token1] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2064), }, [1491] = { - [sym_cell_path] = STATE(1776), - [sym_path] = STATE(1678), + [sym_cell_path] = STATE(1750), + [sym_path] = STATE(1691), [sym_comment] = STATE(1491), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_LT] = ACTIONS(1917), - [anon_sym_null] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_0b] = ACTIONS(1915), - [anon_sym_0o] = ACTIONS(1915), - [anon_sym_0x] = ACTIONS(1915), - [sym_val_date] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), - [anon_sym_err_GT] = ACTIONS(1915), - [anon_sym_out_GT] = ACTIONS(1915), - [anon_sym_e_GT] = ACTIONS(1915), - [anon_sym_o_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT] = ACTIONS(1915), - [anon_sym_err_GT_GT] = ACTIONS(1917), - [anon_sym_out_GT_GT] = ACTIONS(1917), - [anon_sym_e_GT_GT] = ACTIONS(1917), - [anon_sym_o_GT_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), - [aux_sym_unquoted_token1] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1917), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2068), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [aux_sym_unquoted_token1] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2068), }, [1492] = { + [sym_cell_path] = STATE(1751), + [sym_path] = STATE(1691), [sym_comment] = STATE(1492), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), - [sym__newline] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [aux_sym_record_entry_token1] = ACTIONS(4801), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2070), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_0b] = ACTIONS(2070), + [anon_sym_0o] = ACTIONS(2070), + [anon_sym_0x] = ACTIONS(2070), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2070), + [anon_sym_out_GT] = ACTIONS(2070), + [anon_sym_e_GT] = ACTIONS(2070), + [anon_sym_o_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT] = ACTIONS(2070), + [anon_sym_err_GT_GT] = ACTIONS(2072), + [anon_sym_out_GT_GT] = ACTIONS(2072), + [anon_sym_e_GT_GT] = ACTIONS(2072), + [anon_sym_o_GT_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [aux_sym_unquoted_token1] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2072), }, [1493] = { + [sym_cell_path] = STATE(1758), + [sym_path] = STATE(1691), [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1828), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(4803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4805), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT] = ACTIONS(2000), + [anon_sym_null] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_0b] = ACTIONS(1998), + [anon_sym_0o] = ACTIONS(1998), + [anon_sym_0x] = ACTIONS(1998), + [sym_val_date] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [aux_sym_unquoted_token1] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2000), }, [1494] = { + [sym_cell_path] = STATE(1762), + [sym_path] = STATE(1691), [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_PLUS_EQ] = ACTIONS(1012), - [anon_sym_DASH_EQ] = ACTIONS(1012), - [anon_sym_STAR_EQ] = ACTIONS(1012), - [anon_sym_SLASH_EQ] = ACTIONS(1012), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_DASH_DASH] = ACTIONS(2008), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2008), + [anon_sym_DOT_DOT_LT] = ACTIONS(2008), + [anon_sym_null] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2008), + [aux_sym__val_number_token2] = ACTIONS(2008), + [aux_sym__val_number_token3] = ACTIONS(2008), + [aux_sym__val_number_token4] = ACTIONS(2008), + [aux_sym__val_number_token5] = ACTIONS(2008), + [aux_sym__val_number_token6] = ACTIONS(2008), + [anon_sym_0b] = ACTIONS(2006), + [anon_sym_0o] = ACTIONS(2006), + [anon_sym_0x] = ACTIONS(2006), + [sym_val_date] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [sym__str_single_quotes] = ACTIONS(2008), + [sym__str_back_ticks] = ACTIONS(2008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2008), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2008), + [anon_sym_out_GT_GT] = ACTIONS(2008), + [anon_sym_e_GT_GT] = ACTIONS(2008), + [anon_sym_o_GT_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2008), + [aux_sym_unquoted_token1] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2008), }, [1495] = { [sym_comment] = STATE(1495), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4831), + [aux_sym__immediate_decimal_token2] = ACTIONS(4833), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1496] = { [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym__newline] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_err_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_GT_PIPE] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT2] = ACTIONS(4835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4837), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4837), + [anon_sym_null] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1958), + [aux_sym__val_number_token5] = ACTIONS(1958), + [aux_sym__val_number_token6] = ACTIONS(1958), + [anon_sym_0b] = ACTIONS(1950), + [anon_sym_0o] = ACTIONS(1950), + [anon_sym_0x] = ACTIONS(1950), + [sym_val_date] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1950), + [anon_sym_out_GT] = ACTIONS(1950), + [anon_sym_e_GT] = ACTIONS(1950), + [anon_sym_o_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT] = ACTIONS(1950), + [anon_sym_err_GT_GT] = ACTIONS(1958), + [anon_sym_out_GT_GT] = ACTIONS(1958), + [anon_sym_e_GT_GT] = ACTIONS(1958), + [anon_sym_o_GT_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1958), + [aux_sym_unquoted_token1] = ACTIONS(1950), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), }, [1497] = { [sym_comment] = STATE(1497), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4807), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym__newline] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_err_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_GT_PIPE] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_DOT_DOT2] = ACTIONS(4839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1940), + [anon_sym_DOT_DOT_LT] = ACTIONS(1940), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4841), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4841), + [anon_sym_null] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_0b] = ACTIONS(1940), + [anon_sym_0o] = ACTIONS(1940), + [anon_sym_0x] = ACTIONS(1940), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1948), + [anon_sym_err_GT] = ACTIONS(1940), + [anon_sym_out_GT] = ACTIONS(1940), + [anon_sym_e_GT] = ACTIONS(1940), + [anon_sym_o_GT] = ACTIONS(1940), + [anon_sym_err_PLUSout_GT] = ACTIONS(1940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), + [anon_sym_o_PLUSe_GT] = ACTIONS(1940), + [anon_sym_e_PLUSo_GT] = ACTIONS(1940), + [anon_sym_err_GT_GT] = ACTIONS(1948), + [anon_sym_out_GT_GT] = ACTIONS(1948), + [anon_sym_e_GT_GT] = ACTIONS(1948), + [anon_sym_o_GT_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1948), + [aux_sym_unquoted_token1] = ACTIONS(1940), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), }, [1498] = { - [sym_cell_path] = STATE(1854), - [sym_path] = STATE(1678), + [sym_cell_path] = STATE(1805), + [sym_path] = STATE(1691), [sym_comment] = STATE(1498), - [aux_sym_cell_path_repeat1] = STATE(1528), - [sym__newline] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_err_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_GT_PIPE] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_0b] = ACTIONS(1859), - [anon_sym_0o] = ACTIONS(1859), - [anon_sym_0x] = ACTIONS(1859), - [sym_val_date] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_err_GT] = ACTIONS(1859), - [anon_sym_out_GT] = ACTIONS(1859), - [anon_sym_e_GT] = ACTIONS(1859), - [anon_sym_o_GT] = ACTIONS(1859), - [anon_sym_err_PLUSout_GT] = ACTIONS(1859), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), - [anon_sym_o_PLUSe_GT] = ACTIONS(1859), - [anon_sym_e_PLUSo_GT] = ACTIONS(1859), - [anon_sym_err_GT_GT] = ACTIONS(1861), - [anon_sym_out_GT_GT] = ACTIONS(1861), - [anon_sym_e_GT_GT] = ACTIONS(1861), - [anon_sym_o_GT_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), - [aux_sym_unquoted_token1] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1861), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), }, [1499] = { [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4809), - [aux_sym__immediate_decimal_token2] = ACTIONS(4811), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1500] = { - [sym_cell_path] = STATE(1785), - [sym_path] = STATE(1678), [sym_comment] = STATE(1500), - [aux_sym_cell_path_repeat1] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4847), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), + [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_null] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1502), + [aux_sym__val_number_token5] = ACTIONS(1502), + [aux_sym__val_number_token6] = ACTIONS(1502), + [anon_sym_0b] = ACTIONS(1500), + [anon_sym_0o] = ACTIONS(1500), + [anon_sym_0x] = ACTIONS(1500), + [sym_val_date] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [aux_sym_unquoted_token1] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), + }, + [1501] = { + [sym_cell_path] = STATE(1806), + [sym_path] = STATE(1691), + [sym_comment] = STATE(1501), + [aux_sym_cell_path_repeat1] = STATE(1538), + [sym__newline] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_err_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_GT_PIPE] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1992), + [anon_sym_DOT_DOT_LT] = ACTIONS(1992), + [anon_sym_null] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1990), + [aux_sym__val_number_decimal_token2] = ACTIONS(1992), + [aux_sym__val_number_decimal_token3] = ACTIONS(1992), + [aux_sym__val_number_decimal_token4] = ACTIONS(1992), + [aux_sym__val_number_token1] = ACTIONS(1992), + [aux_sym__val_number_token2] = ACTIONS(1992), + [aux_sym__val_number_token3] = ACTIONS(1992), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1990), + [anon_sym_0x] = ACTIONS(1990), + [sym_val_date] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1992), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1992), + [anon_sym_err_GT] = ACTIONS(1990), + [anon_sym_out_GT] = ACTIONS(1990), + [anon_sym_e_GT] = ACTIONS(1990), + [anon_sym_o_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT] = ACTIONS(1990), + [anon_sym_err_GT_GT] = ACTIONS(1992), + [anon_sym_out_GT_GT] = ACTIONS(1992), + [anon_sym_e_GT_GT] = ACTIONS(1992), + [anon_sym_o_GT_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1992), + [aux_sym_unquoted_token1] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1992), + }, + [1502] = { + [sym_comment] = STATE(1502), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4851), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4851), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1540), + }, + [1503] = { + [sym_cell_path] = STATE(1938), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1503), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT] = ACTIONS(1475), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1475), + [aux_sym__val_number_decimal_token3] = ACTIONS(1475), + [aux_sym__val_number_decimal_token4] = ACTIONS(1475), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [1504] = { + [sym_comment] = STATE(1504), [sym__newline] = ACTIONS(1921), [anon_sym_SEMI] = ACTIONS(1921), [anon_sym_PIPE] = ACTIONS(1921), @@ -216400,7 +354745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), [anon_sym_RPAREN] = ACTIONS(1921), [anon_sym_DOLLAR] = ACTIONS(1919), [anon_sym_DASH_DASH] = ACTIONS(1921), @@ -216408,9 +354753,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1921), [anon_sym_RBRACE] = ACTIONS(1921), [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_LPAREN2] = ACTIONS(1921), [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4855), [anon_sym_null] = ACTIONS(1921), [anon_sym_true] = ACTIONS(1921), [anon_sym_false] = ACTIONS(1921), @@ -216450,1740 +354796,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), [aux_sym_unquoted_token1] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(1921), }, - [1501] = { - [sym_comment] = STATE(1501), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_GT2] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_in2] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_STAR2] = ACTIONS(1044), - [anon_sym_and2] = ACTIONS(1046), - [anon_sym_xor2] = ACTIONS(1046), - [anon_sym_or2] = ACTIONS(1046), - [anon_sym_not_DASHin2] = ACTIONS(1046), - [anon_sym_starts_DASHwith2] = ACTIONS(1046), - [anon_sym_ends_DASHwith2] = ACTIONS(1046), - [anon_sym_EQ_EQ2] = ACTIONS(1046), - [anon_sym_BANG_EQ2] = ACTIONS(1046), - [anon_sym_LT2] = ACTIONS(1044), - [anon_sym_LT_EQ2] = ACTIONS(1046), - [anon_sym_GT_EQ2] = ACTIONS(1046), - [anon_sym_EQ_TILDE2] = ACTIONS(1046), - [anon_sym_BANG_TILDE2] = ACTIONS(1046), - [anon_sym_STAR_STAR2] = ACTIONS(1046), - [anon_sym_PLUS_PLUS2] = ACTIONS(1044), - [anon_sym_SLASH2] = ACTIONS(1044), - [anon_sym_mod2] = ACTIONS(1046), - [anon_sym_SLASH_SLASH2] = ACTIONS(1046), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1046), - [anon_sym_bit_DASHshr2] = ACTIONS(1046), - [anon_sym_bit_DASHand2] = ACTIONS(1046), - [anon_sym_bit_DASHxor2] = ACTIONS(1046), - [anon_sym_bit_DASHor2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, - [1502] = { - [sym_comment] = STATE(1502), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1503] = { - [sym_cell_path] = STATE(1924), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [1504] = { - [sym_comment] = STATE(1504), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_DOT_DOT2] = ACTIONS(4815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4817), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4817), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_0b] = ACTIONS(2122), - [anon_sym_0o] = ACTIONS(2122), - [anon_sym_0x] = ACTIONS(2122), - [sym_val_date] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym__str_single_quotes] = ACTIONS(2128), - [sym__str_back_ticks] = ACTIONS(2128), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [aux_sym_unquoted_token1] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2128), - }, [1505] = { + [sym_cell_path] = STATE(1887), + [sym_path] = STATE(1775), [sym_comment] = STATE(1505), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_DOT_DOT2] = ACTIONS(4819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2130), - [anon_sym_DOT_DOT_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4821), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4821), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [aux_sym_unquoted_token1] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2136), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym__newline] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_err_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_GT_PIPE] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1976), + [anon_sym_DOT_DOT_LT] = ACTIONS(1976), + [anon_sym_null] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(1976), + [aux_sym__val_number_decimal_token4] = ACTIONS(1976), + [aux_sym__val_number_token1] = ACTIONS(1976), + [aux_sym__val_number_token2] = ACTIONS(1976), + [aux_sym__val_number_token3] = ACTIONS(1976), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym__str_single_quotes] = ACTIONS(1976), + [sym__str_back_ticks] = ACTIONS(1976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1976), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1976), + [anon_sym_out_GT_GT] = ACTIONS(1976), + [anon_sym_e_GT_GT] = ACTIONS(1976), + [anon_sym_o_GT_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1976), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1976), }, [1506] = { [sym_comment] = STATE(1506), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(4823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4825), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4825), - [anon_sym_null] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), - [anon_sym_0b] = ACTIONS(2146), - [anon_sym_0o] = ACTIONS(2146), - [anon_sym_0x] = ACTIONS(2146), - [sym_val_date] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), - [aux_sym_unquoted_token1] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2152), + [anon_sym_EQ] = ACTIONS(4857), + [anon_sym_PLUS_EQ] = ACTIONS(4859), + [anon_sym_DASH_EQ] = ACTIONS(4859), + [anon_sym_STAR_EQ] = ACTIONS(4859), + [anon_sym_SLASH_EQ] = ACTIONS(4859), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4859), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), }, [1507] = { + [sym_cell_path] = STATE(1889), + [sym_path] = STATE(1775), [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4783), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym__newline] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_err_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_GT_PIPE] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2020), + [anon_sym_DOT_DOT_LT] = ACTIONS(2020), + [anon_sym_null] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2020), + [aux_sym__val_number_token5] = ACTIONS(2020), + [aux_sym__val_number_token6] = ACTIONS(2020), + [anon_sym_0b] = ACTIONS(2018), + [anon_sym_0o] = ACTIONS(2018), + [anon_sym_0x] = ACTIONS(2018), + [sym_val_date] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2020), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2020), + [anon_sym_out_GT_GT] = ACTIONS(2020), + [anon_sym_e_GT_GT] = ACTIONS(2020), + [anon_sym_o_GT_GT] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2020), + [aux_sym_unquoted_token1] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2020), }, [1508] = { - [sym_cell_path] = STATE(1925), - [sym_path] = STATE(1823), [sym_comment] = STATE(1508), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1889), - [sym__newline] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_err_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_GT_PIPE] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_null] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1887), - [anon_sym_0o] = ACTIONS(1887), - [anon_sym_0x] = ACTIONS(1887), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1889), - [anon_sym_out_GT_GT] = ACTIONS(1889), - [anon_sym_e_GT_GT] = ACTIONS(1889), - [anon_sym_o_GT_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), - [aux_sym_unquoted_token1] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1889), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_DOT_DOT2] = ACTIONS(4861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4863), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4863), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(2228), + [anon_sym_out_GT] = ACTIONS(2228), + [anon_sym_e_GT] = ACTIONS(2228), + [anon_sym_o_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT] = ACTIONS(2228), + [anon_sym_err_GT_GT] = ACTIONS(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2234), }, [1509] = { - [sym_cell_path] = STATE(1927), - [sym_path] = STATE(1823), [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1893), + [sym__newline] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_err_GT_PIPE] = ACTIONS(2183), + [anon_sym_out_GT_PIPE] = ACTIONS(2183), + [anon_sym_e_GT_PIPE] = ACTIONS(2183), + [anon_sym_o_GT_PIPE] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT2] = ACTIONS(4865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2177), + [anon_sym_DOT_DOT_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4867), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4867), + [anon_sym_null] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_0b] = ACTIONS(2177), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2183), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), + [anon_sym_err_GT] = ACTIONS(2177), + [anon_sym_out_GT] = ACTIONS(2177), + [anon_sym_e_GT] = ACTIONS(2177), + [anon_sym_o_GT] = ACTIONS(2177), + [anon_sym_err_PLUSout_GT] = ACTIONS(2177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2177), + [anon_sym_o_PLUSe_GT] = ACTIONS(2177), + [anon_sym_e_PLUSo_GT] = ACTIONS(2177), + [anon_sym_err_GT_GT] = ACTIONS(2183), + [anon_sym_out_GT_GT] = ACTIONS(2183), + [anon_sym_e_GT_GT] = ACTIONS(2183), + [anon_sym_o_GT_GT] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2183), + [aux_sym_unquoted_token1] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2183), }, [1510] = { [sym_comment] = STATE(1510), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_EQ_GT] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4827), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_err_GT_PIPE] = ACTIONS(2191), + [anon_sym_out_GT_PIPE] = ACTIONS(2191), + [anon_sym_e_GT_PIPE] = ACTIONS(2191), + [anon_sym_o_GT_PIPE] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_DOT_DOT2] = ACTIONS(4869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4871), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4871), + [anon_sym_null] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2191), + [aux_sym__val_number_decimal_token3] = ACTIONS(2191), + [aux_sym__val_number_decimal_token4] = ACTIONS(2191), + [aux_sym__val_number_token1] = ACTIONS(2191), + [aux_sym__val_number_token2] = ACTIONS(2191), + [aux_sym__val_number_token3] = ACTIONS(2191), + [aux_sym__val_number_token4] = ACTIONS(2191), + [aux_sym__val_number_token5] = ACTIONS(2191), + [aux_sym__val_number_token6] = ACTIONS(2191), + [anon_sym_0b] = ACTIONS(2185), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [sym__str_single_quotes] = ACTIONS(2191), + [sym__str_back_ticks] = ACTIONS(2191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2191), + [anon_sym_err_GT] = ACTIONS(2185), + [anon_sym_out_GT] = ACTIONS(2185), + [anon_sym_e_GT] = ACTIONS(2185), + [anon_sym_o_GT] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT] = ACTIONS(2185), + [anon_sym_err_GT_GT] = ACTIONS(2191), + [anon_sym_out_GT_GT] = ACTIONS(2191), + [anon_sym_e_GT_GT] = ACTIONS(2191), + [anon_sym_o_GT_GT] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2191), + [aux_sym_unquoted_token1] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2191), }, [1511] = { - [sym_cell_path] = STATE(1928), - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(1890), + [sym_path] = STATE(1775), [sym_comment] = STATE(1511), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1897), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2022), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_0b] = ACTIONS(2022), + [anon_sym_0o] = ACTIONS(2022), + [anon_sym_0x] = ACTIONS(2022), + [sym_val_date] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2024), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [aux_sym_unquoted_token1] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2024), }, [1512] = { + [sym_cell_path] = STATE(1888), + [sym_path] = STATE(1775), [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4831), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_DASH2] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2016), + [anon_sym_DOT_DOT_LT] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [aux_sym__val_number_decimal_token1] = ACTIONS(2014), + [aux_sym__val_number_decimal_token2] = ACTIONS(2016), + [aux_sym__val_number_decimal_token3] = ACTIONS(2016), + [aux_sym__val_number_decimal_token4] = ACTIONS(2016), + [aux_sym__val_number_token1] = ACTIONS(2016), + [aux_sym__val_number_token2] = ACTIONS(2016), + [aux_sym__val_number_token3] = ACTIONS(2016), + [aux_sym__val_number_token4] = ACTIONS(2016), + [aux_sym__val_number_token5] = ACTIONS(2016), + [aux_sym__val_number_token6] = ACTIONS(2016), + [anon_sym_0b] = ACTIONS(2014), + [anon_sym_0o] = ACTIONS(2014), + [anon_sym_0x] = ACTIONS(2014), + [sym_val_date] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [sym__str_single_quotes] = ACTIONS(2016), + [sym__str_back_ticks] = ACTIONS(2016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2016), + [anon_sym_err_GT] = ACTIONS(2014), + [anon_sym_out_GT] = ACTIONS(2014), + [anon_sym_e_GT] = ACTIONS(2014), + [anon_sym_o_GT] = ACTIONS(2014), + [anon_sym_err_PLUSout_GT] = ACTIONS(2014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2014), + [anon_sym_o_PLUSe_GT] = ACTIONS(2014), + [anon_sym_e_PLUSo_GT] = ACTIONS(2014), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), + [aux_sym_unquoted_token1] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2016), }, [1513] = { - [sym_cell_path] = STATE(1929), - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(1856), + [sym_path] = STATE(1775), [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym__newline] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_err_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_GT_PIPE] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_null] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1911), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_0b] = ACTIONS(1911), - [anon_sym_0o] = ACTIONS(1911), - [anon_sym_0x] = ACTIONS(1911), - [sym_val_date] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1913), - [anon_sym_out_GT_GT] = ACTIONS(1913), - [anon_sym_e_GT_GT] = ACTIONS(1913), - [anon_sym_o_GT_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), - [aux_sym_unquoted_token1] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1913), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym__newline] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_err_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_GT_PIPE] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1996), + [anon_sym_DOT_DOT_LT] = ACTIONS(1996), + [anon_sym_null] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1994), + [aux_sym__val_number_decimal_token2] = ACTIONS(1996), + [aux_sym__val_number_decimal_token3] = ACTIONS(1996), + [aux_sym__val_number_decimal_token4] = ACTIONS(1996), + [aux_sym__val_number_token1] = ACTIONS(1996), + [aux_sym__val_number_token2] = ACTIONS(1996), + [aux_sym__val_number_token3] = ACTIONS(1996), + [aux_sym__val_number_token4] = ACTIONS(1996), + [aux_sym__val_number_token5] = ACTIONS(1996), + [aux_sym__val_number_token6] = ACTIONS(1996), + [anon_sym_0b] = ACTIONS(1994), + [anon_sym_0o] = ACTIONS(1994), + [anon_sym_0x] = ACTIONS(1994), + [sym_val_date] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1996), + [sym__str_back_ticks] = ACTIONS(1996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1996), + [anon_sym_err_GT] = ACTIONS(1994), + [anon_sym_out_GT] = ACTIONS(1994), + [anon_sym_e_GT] = ACTIONS(1994), + [anon_sym_o_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT] = ACTIONS(1994), + [anon_sym_err_GT_GT] = ACTIONS(1996), + [anon_sym_out_GT_GT] = ACTIONS(1996), + [anon_sym_e_GT_GT] = ACTIONS(1996), + [anon_sym_o_GT_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1996), + [aux_sym_unquoted_token1] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1996), }, [1514] = { - [sym_cell_path] = STATE(1930), - [sym_path] = STATE(1823), [sym_comment] = STATE(1514), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym__newline] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_LT] = ACTIONS(1917), - [anon_sym_null] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1915), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_0b] = ACTIONS(1915), - [anon_sym_0o] = ACTIONS(1915), - [anon_sym_0x] = ACTIONS(1915), - [sym_val_date] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), - [anon_sym_err_GT] = ACTIONS(1915), - [anon_sym_out_GT] = ACTIONS(1915), - [anon_sym_e_GT] = ACTIONS(1915), - [anon_sym_o_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT] = ACTIONS(1915), - [anon_sym_err_GT_GT] = ACTIONS(1917), - [anon_sym_out_GT_GT] = ACTIONS(1917), - [anon_sym_e_GT_GT] = ACTIONS(1917), - [anon_sym_o_GT_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), - [aux_sym_unquoted_token1] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4875), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), }, [1515] = { + [sym_cell_path] = STATE(1891), + [sym_path] = STATE(1775), [sym_comment] = STATE(1515), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(4833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1028), - [aux_sym__val_number_token5] = ACTIONS(1028), - [aux_sym__val_number_token6] = ACTIONS(1028), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), - }, - [1516] = { - [sym_comment] = STATE(1516), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1046), - [aux_sym__val_number_token5] = ACTIONS(1046), - [aux_sym__val_number_token6] = ACTIONS(1046), - [anon_sym_0b] = ACTIONS(1044), - [anon_sym_0o] = ACTIONS(1044), - [anon_sym_0x] = ACTIONS(1044), - [sym_val_date] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [aux_sym_unquoted_token1] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), - }, - [1517] = { - [sym_comment] = STATE(1517), - [sym__newline] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_err_GT_PIPE] = ACTIONS(2163), - [anon_sym_out_GT_PIPE] = ACTIONS(2163), - [anon_sym_e_GT_PIPE] = ACTIONS(2163), - [anon_sym_o_GT_PIPE] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_DOT_DOT2] = ACTIONS(4837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), - [anon_sym_DOT_DOT_LT] = ACTIONS(2157), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4839), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4839), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_decimal_token4] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [aux_sym__val_number_token4] = ACTIONS(2163), - [aux_sym__val_number_token5] = ACTIONS(2163), - [aux_sym__val_number_token6] = ACTIONS(2163), - [anon_sym_0b] = ACTIONS(2157), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2163), - [anon_sym_err_GT] = ACTIONS(2157), - [anon_sym_out_GT] = ACTIONS(2157), - [anon_sym_e_GT] = ACTIONS(2157), - [anon_sym_o_GT] = ACTIONS(2157), - [anon_sym_err_PLUSout_GT] = ACTIONS(2157), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2157), - [anon_sym_o_PLUSe_GT] = ACTIONS(2157), - [anon_sym_e_PLUSo_GT] = ACTIONS(2157), - [anon_sym_err_GT_GT] = ACTIONS(2163), - [anon_sym_out_GT_GT] = ACTIONS(2163), - [anon_sym_e_GT_GT] = ACTIONS(2163), - [anon_sym_o_GT_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), - [aux_sym_unquoted_token1] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2163), - }, - [1518] = { - [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__immediate_decimal_token1] = ACTIONS(4841), - [aux_sym__immediate_decimal_token2] = ACTIONS(4843), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1519] = { - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), - }, - [1520] = { - [sym_cell_path] = STATE(1931), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1520), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1921), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT] = ACTIONS(1921), - [anon_sym_null] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1919), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [aux_sym__val_number_token4] = ACTIONS(1921), - [aux_sym__val_number_token5] = ACTIONS(1921), - [aux_sym__val_number_token6] = ACTIONS(1921), - [anon_sym_0b] = ACTIONS(1919), - [anon_sym_0o] = ACTIONS(1919), - [anon_sym_0x] = ACTIONS(1919), - [sym_val_date] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), - [anon_sym_err_GT] = ACTIONS(1919), - [anon_sym_out_GT] = ACTIONS(1919), - [anon_sym_e_GT] = ACTIONS(1919), - [anon_sym_o_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT] = ACTIONS(1919), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [aux_sym_unquoted_token1] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1921), - }, - [1521] = { - [sym_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1522] = { - [sym_cell_path] = STATE(1932), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1522), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1929), - [sym__newline] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_err_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_GT_PIPE] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [anon_sym_DOT_DOT_LT] = ACTIONS(1929), - [anon_sym_null] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [aux_sym__val_number_token4] = ACTIONS(1929), - [aux_sym__val_number_token5] = ACTIONS(1929), - [aux_sym__val_number_token6] = ACTIONS(1929), - [anon_sym_0b] = ACTIONS(1927), - [anon_sym_0o] = ACTIONS(1927), - [anon_sym_0x] = ACTIONS(1927), - [sym_val_date] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_err_GT] = ACTIONS(1927), - [anon_sym_out_GT] = ACTIONS(1927), - [anon_sym_e_GT] = ACTIONS(1927), - [anon_sym_o_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT] = ACTIONS(1927), - [anon_sym_err_GT_GT] = ACTIONS(1929), - [anon_sym_out_GT_GT] = ACTIONS(1929), - [anon_sym_e_GT_GT] = ACTIONS(1929), - [anon_sym_o_GT_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), - [aux_sym_unquoted_token1] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1929), - }, - [1523] = { - [sym_cell_path] = STATE(1933), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1523), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1944), - [sym__newline] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_err_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_GT_PIPE] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1944), - [anon_sym_DOT_DOT_LT] = ACTIONS(1944), - [anon_sym_null] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1942), - [aux_sym__val_number_decimal_token2] = ACTIONS(1944), - [aux_sym__val_number_decimal_token3] = ACTIONS(1944), - [aux_sym__val_number_decimal_token4] = ACTIONS(1944), - [aux_sym__val_number_token1] = ACTIONS(1944), - [aux_sym__val_number_token2] = ACTIONS(1944), - [aux_sym__val_number_token3] = ACTIONS(1944), - [aux_sym__val_number_token4] = ACTIONS(1944), - [aux_sym__val_number_token5] = ACTIONS(1944), - [aux_sym__val_number_token6] = ACTIONS(1944), - [anon_sym_0b] = ACTIONS(1942), - [anon_sym_0o] = ACTIONS(1942), - [anon_sym_0x] = ACTIONS(1942), - [sym_val_date] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym__str_single_quotes] = ACTIONS(1944), - [sym__str_back_ticks] = ACTIONS(1944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1944), - [anon_sym_err_GT] = ACTIONS(1942), - [anon_sym_out_GT] = ACTIONS(1942), - [anon_sym_e_GT] = ACTIONS(1942), - [anon_sym_o_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT] = ACTIONS(1942), - [anon_sym_err_GT_GT] = ACTIONS(1944), - [anon_sym_out_GT_GT] = ACTIONS(1944), - [anon_sym_e_GT_GT] = ACTIONS(1944), - [anon_sym_o_GT_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), - [aux_sym_unquoted_token1] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1944), - }, - [1524] = { - [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [1526] = { - [sym_cell_path] = STATE(1934), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1526), - [aux_sym_cell_path_repeat1] = STATE(1574), + [aux_sym_cell_path_repeat1] = STATE(1614), [ts_builtin_sym_end] = ACTIONS(2028), [sym__newline] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2028), @@ -218203,7 +355514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2026), [anon_sym_LBRACE] = ACTIONS(2028), [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT] = ACTIONS(4853), [anon_sym_DOT_DOT_EQ] = ACTIONS(2028), [anon_sym_DOT_DOT_LT] = ACTIONS(2028), [anon_sym_null] = ACTIONS(2028), @@ -218245,152 +355556,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), [aux_sym_unquoted_token1] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2028), }, - [1527] = { - [sym_cell_path] = STATE(1652), - [sym_path] = STATE(1615), - [sym_comment] = STATE(1527), - [aux_sym_cell_path_repeat1] = STATE(1643), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_GT2] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1749), - [anon_sym_in2] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_STAR2] = ACTIONS(1747), - [anon_sym_and2] = ACTIONS(1749), - [anon_sym_xor2] = ACTIONS(1749), - [anon_sym_or2] = ACTIONS(1749), - [anon_sym_not_DASHin2] = ACTIONS(1749), - [anon_sym_starts_DASHwith2] = ACTIONS(1749), - [anon_sym_ends_DASHwith2] = ACTIONS(1749), - [anon_sym_EQ_EQ2] = ACTIONS(1749), - [anon_sym_BANG_EQ2] = ACTIONS(1749), - [anon_sym_LT2] = ACTIONS(1747), - [anon_sym_LT_EQ2] = ACTIONS(1749), - [anon_sym_GT_EQ2] = ACTIONS(1749), - [anon_sym_EQ_TILDE2] = ACTIONS(1749), - [anon_sym_BANG_TILDE2] = ACTIONS(1749), - [anon_sym_STAR_STAR2] = ACTIONS(1749), - [anon_sym_PLUS_PLUS2] = ACTIONS(1749), - [anon_sym_SLASH2] = ACTIONS(1747), - [anon_sym_mod2] = ACTIONS(1749), - [anon_sym_SLASH_SLASH2] = ACTIONS(1749), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_bit_DASHshl2] = ACTIONS(1749), - [anon_sym_bit_DASHshr2] = ACTIONS(1749), - [anon_sym_bit_DASHand2] = ACTIONS(1749), - [anon_sym_bit_DASHxor2] = ACTIONS(1749), - [anon_sym_bit_DASHor2] = ACTIONS(1749), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(247), + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_DOT_DOT_LT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), }, - [1528] = { - [sym_path] = STATE(1678), - [sym_comment] = STATE(1528), - [aux_sym_cell_path_repeat1] = STATE(1530), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_DOT_DOT_LT] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [1517] = { + [sym_comment] = STATE(1517), + [sym__newline] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_err_GT_PIPE] = ACTIONS(2203), + [anon_sym_out_GT_PIPE] = ACTIONS(2203), + [anon_sym_e_GT_PIPE] = ACTIONS(2203), + [anon_sym_o_GT_PIPE] = ACTIONS(2203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_DOT_DOT2] = ACTIONS(4877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2197), + [anon_sym_DOT_DOT_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4879), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4879), + [anon_sym_null] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2203), + [aux_sym__val_number_decimal_token3] = ACTIONS(2203), + [aux_sym__val_number_decimal_token4] = ACTIONS(2203), + [aux_sym__val_number_token1] = ACTIONS(2203), + [aux_sym__val_number_token2] = ACTIONS(2203), + [aux_sym__val_number_token3] = ACTIONS(2203), + [aux_sym__val_number_token4] = ACTIONS(2203), + [aux_sym__val_number_token5] = ACTIONS(2203), + [aux_sym__val_number_token6] = ACTIONS(2203), + [anon_sym_0b] = ACTIONS(2197), + [anon_sym_0o] = ACTIONS(2197), + [anon_sym_0x] = ACTIONS(2197), + [sym_val_date] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2203), + [sym__str_single_quotes] = ACTIONS(2203), + [sym__str_back_ticks] = ACTIONS(2203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2203), + [anon_sym_err_GT] = ACTIONS(2197), + [anon_sym_out_GT] = ACTIONS(2197), + [anon_sym_e_GT] = ACTIONS(2197), + [anon_sym_o_GT] = ACTIONS(2197), + [anon_sym_err_PLUSout_GT] = ACTIONS(2197), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2197), + [anon_sym_o_PLUSe_GT] = ACTIONS(2197), + [anon_sym_e_PLUSo_GT] = ACTIONS(2197), + [anon_sym_err_GT_GT] = ACTIONS(2203), + [anon_sym_out_GT_GT] = ACTIONS(2203), + [anon_sym_e_GT_GT] = ACTIONS(2203), + [anon_sym_o_GT_GT] = ACTIONS(2203), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2203), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2203), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2203), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2203), + [aux_sym_unquoted_token1] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2203), }, - [1529] = { - [sym_cell_path] = STATE(1937), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1574), + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_in2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(4881), + [aux_sym__immediate_decimal_token2] = ACTIONS(4883), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), + }, + [1519] = { + [sym_cell_path] = STATE(1892), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1519), + [aux_sym_cell_path_repeat1] = STATE(1614), [ts_builtin_sym_end] = ACTIONS(2032), [sym__newline] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2032), @@ -218410,7 +355790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2030), [anon_sym_LBRACE] = ACTIONS(2032), [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT] = ACTIONS(4853), [anon_sym_DOT_DOT_EQ] = ACTIONS(2032), [anon_sym_DOT_DOT_LT] = ACTIONS(2032), [anon_sym_null] = ACTIONS(2032), @@ -218452,83 +355832,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), [aux_sym_unquoted_token1] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2032), }, - [1530] = { - [sym_path] = STATE(1678), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1530), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [1520] = { + [sym_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4885), + [aux_sym__immediate_decimal_token2] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, - [1531] = { - [sym_cell_path] = STATE(1938), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1531), - [aux_sym_cell_path_repeat1] = STATE(1574), + [1521] = { + [sym_cell_path] = STATE(1893), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1521), + [aux_sym_cell_path_repeat1] = STATE(1614), [ts_builtin_sym_end] = ACTIONS(2036), [sym__newline] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2036), @@ -218548,7 +355928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2034), [anon_sym_LBRACE] = ACTIONS(2036), [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT] = ACTIONS(4853), [anon_sym_DOT_DOT_EQ] = ACTIONS(2036), [anon_sym_DOT_DOT_LT] = ACTIONS(2036), [anon_sym_null] = ACTIONS(2036), @@ -218590,83 +355970,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), [aux_sym_unquoted_token1] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2036), }, - [1532] = { - [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4852), - [aux_sym__immediate_decimal_token2] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [1522] = { + [sym_cell_path] = STATE(1895), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1522), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym__newline] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_err_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_GT_PIPE] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2173), + [anon_sym_DOT_DOT_LT] = ACTIONS(2173), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2171), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2171), + [anon_sym_0o] = ACTIONS(2171), + [anon_sym_0x] = ACTIONS(2171), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_err_GT] = ACTIONS(2171), + [anon_sym_out_GT] = ACTIONS(2171), + [anon_sym_e_GT] = ACTIONS(2171), + [anon_sym_o_GT] = ACTIONS(2171), + [anon_sym_err_PLUSout_GT] = ACTIONS(2171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2171), + [anon_sym_o_PLUSe_GT] = ACTIONS(2171), + [anon_sym_e_PLUSo_GT] = ACTIONS(2171), + [anon_sym_err_GT_GT] = ACTIONS(2173), + [anon_sym_out_GT_GT] = ACTIONS(2173), + [anon_sym_e_GT_GT] = ACTIONS(2173), + [anon_sym_o_GT_GT] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), + [aux_sym_unquoted_token1] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2173), }, - [1533] = { - [sym_cell_path] = STATE(1939), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1533), - [aux_sym_cell_path_repeat1] = STATE(1574), + [1523] = { + [sym_comment] = STATE(1523), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1502), + [anon_sym_in2] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_EQ_GT] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4889), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1502), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(255), + }, + [1524] = { + [sym_comment] = STATE(1524), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_in2] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4891), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(255), + }, + [1525] = { + [sym_cell_path] = STATE(1898), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1525), + [aux_sym_cell_path_repeat1] = STATE(1614), [ts_builtin_sym_end] = ACTIONS(2040), [sym__newline] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2040), @@ -218686,7 +356204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2038), [anon_sym_LBRACE] = ACTIONS(2040), [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT] = ACTIONS(4853), [anon_sym_DOT_DOT_EQ] = ACTIONS(2040), [anon_sym_DOT_DOT_LT] = ACTIONS(2040), [anon_sym_null] = ACTIONS(2040), @@ -218728,5627 +356246,7403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), [aux_sym_unquoted_token1] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(2040), }, + [1526] = { + [sym_cell_path] = STATE(1904), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1526), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym__newline] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_err_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_GT_PIPE] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2042), + [anon_sym_DASH_DASH] = ACTIONS(2044), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2044), + [aux_sym__val_number_decimal_token3] = ACTIONS(2044), + [aux_sym__val_number_decimal_token4] = ACTIONS(2044), + [aux_sym__val_number_token1] = ACTIONS(2044), + [aux_sym__val_number_token2] = ACTIONS(2044), + [aux_sym__val_number_token3] = ACTIONS(2044), + [aux_sym__val_number_token4] = ACTIONS(2044), + [aux_sym__val_number_token5] = ACTIONS(2044), + [aux_sym__val_number_token6] = ACTIONS(2044), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2042), + [anon_sym_0x] = ACTIONS(2042), + [sym_val_date] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym__str_single_quotes] = ACTIONS(2044), + [sym__str_back_ticks] = ACTIONS(2044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2044), + [anon_sym_err_GT] = ACTIONS(2042), + [anon_sym_out_GT] = ACTIONS(2042), + [anon_sym_e_GT] = ACTIONS(2042), + [anon_sym_o_GT] = ACTIONS(2042), + [anon_sym_err_PLUSout_GT] = ACTIONS(2042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2042), + [anon_sym_o_PLUSe_GT] = ACTIONS(2042), + [anon_sym_e_PLUSo_GT] = ACTIONS(2042), + [anon_sym_err_GT_GT] = ACTIONS(2044), + [anon_sym_out_GT_GT] = ACTIONS(2044), + [anon_sym_e_GT_GT] = ACTIONS(2044), + [anon_sym_o_GT_GT] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2044), + [aux_sym_unquoted_token1] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2044), + }, + [1527] = { + [sym_cell_path] = STATE(1905), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1527), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym__newline] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_err_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_GT_PIPE] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2046), + [anon_sym_DASH_DASH] = ACTIONS(2048), + [anon_sym_DASH2] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2048), + [anon_sym_DOT_DOT_LT] = ACTIONS(2048), + [anon_sym_null] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2048), + [anon_sym_false] = ACTIONS(2048), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2048), + [aux_sym__val_number_decimal_token4] = ACTIONS(2048), + [aux_sym__val_number_token1] = ACTIONS(2048), + [aux_sym__val_number_token2] = ACTIONS(2048), + [aux_sym__val_number_token3] = ACTIONS(2048), + [aux_sym__val_number_token4] = ACTIONS(2048), + [aux_sym__val_number_token5] = ACTIONS(2048), + [aux_sym__val_number_token6] = ACTIONS(2048), + [anon_sym_0b] = ACTIONS(2046), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2048), + [sym__str_back_ticks] = ACTIONS(2048), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2048), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2048), + [anon_sym_err_GT] = ACTIONS(2046), + [anon_sym_out_GT] = ACTIONS(2046), + [anon_sym_e_GT] = ACTIONS(2046), + [anon_sym_o_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT] = ACTIONS(2046), + [anon_sym_err_GT_GT] = ACTIONS(2048), + [anon_sym_out_GT_GT] = ACTIONS(2048), + [anon_sym_e_GT_GT] = ACTIONS(2048), + [anon_sym_o_GT_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2048), + [aux_sym_unquoted_token1] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2048), + }, + [1528] = { + [sym_cell_path] = STATE(1911), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1528), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym__newline] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_err_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_GT_PIPE] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2050), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [anon_sym_null] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2052), + [anon_sym_false] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2050), + [aux_sym__val_number_decimal_token2] = ACTIONS(2052), + [aux_sym__val_number_decimal_token3] = ACTIONS(2052), + [aux_sym__val_number_decimal_token4] = ACTIONS(2052), + [aux_sym__val_number_token1] = ACTIONS(2052), + [aux_sym__val_number_token2] = ACTIONS(2052), + [aux_sym__val_number_token3] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2052), + [aux_sym__val_number_token5] = ACTIONS(2052), + [aux_sym__val_number_token6] = ACTIONS(2052), + [anon_sym_0b] = ACTIONS(2050), + [anon_sym_0o] = ACTIONS(2050), + [anon_sym_0x] = ACTIONS(2050), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), + [anon_sym_err_GT] = ACTIONS(2050), + [anon_sym_out_GT] = ACTIONS(2050), + [anon_sym_e_GT] = ACTIONS(2050), + [anon_sym_o_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT] = ACTIONS(2050), + [anon_sym_err_GT_GT] = ACTIONS(2052), + [anon_sym_out_GT_GT] = ACTIONS(2052), + [anon_sym_e_GT_GT] = ACTIONS(2052), + [anon_sym_o_GT_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2052), + [aux_sym_unquoted_token1] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2052), + }, + [1529] = { + [sym_cell_path] = STATE(1912), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym__newline] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_err_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_GT_PIPE] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(2056), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2054), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2056), + [anon_sym_DOT_DOT_LT] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2056), + [aux_sym__val_number_decimal_token4] = ACTIONS(2056), + [aux_sym__val_number_token1] = ACTIONS(2056), + [aux_sym__val_number_token2] = ACTIONS(2056), + [aux_sym__val_number_token3] = ACTIONS(2056), + [aux_sym__val_number_token4] = ACTIONS(2056), + [aux_sym__val_number_token5] = ACTIONS(2056), + [aux_sym__val_number_token6] = ACTIONS(2056), + [anon_sym_0b] = ACTIONS(2054), + [anon_sym_0o] = ACTIONS(2054), + [anon_sym_0x] = ACTIONS(2054), + [sym_val_date] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym__str_single_quotes] = ACTIONS(2056), + [sym__str_back_ticks] = ACTIONS(2056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_err_GT] = ACTIONS(2054), + [anon_sym_out_GT] = ACTIONS(2054), + [anon_sym_e_GT] = ACTIONS(2054), + [anon_sym_o_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT] = ACTIONS(2054), + [anon_sym_err_GT_GT] = ACTIONS(2056), + [anon_sym_out_GT_GT] = ACTIONS(2056), + [anon_sym_e_GT_GT] = ACTIONS(2056), + [anon_sym_o_GT_GT] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2056), + [aux_sym_unquoted_token1] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2056), + }, + [1530] = { + [sym_comment] = STATE(1530), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1531] = { + [sym_comment] = STATE(1531), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4821), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1532] = { + [sym_cell_path] = STATE(1913), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1532), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym__newline] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_err_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_GT_PIPE] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_DASH2] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2058), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2060), + [anon_sym_DOT_DOT_LT] = ACTIONS(2060), + [anon_sym_null] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [aux_sym__val_number_decimal_token1] = ACTIONS(2058), + [aux_sym__val_number_decimal_token2] = ACTIONS(2060), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2060), + [aux_sym__val_number_token5] = ACTIONS(2060), + [aux_sym__val_number_token6] = ACTIONS(2060), + [anon_sym_0b] = ACTIONS(2058), + [anon_sym_0o] = ACTIONS(2058), + [anon_sym_0x] = ACTIONS(2058), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2060), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2060), + [anon_sym_out_GT_GT] = ACTIONS(2060), + [anon_sym_e_GT_GT] = ACTIONS(2060), + [anon_sym_o_GT_GT] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2060), + [aux_sym_unquoted_token1] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2060), + }, + [1533] = { + [sym_cell_path] = STATE(1914), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1533), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym__newline] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2062), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [anon_sym_0b] = ACTIONS(2062), + [anon_sym_0o] = ACTIONS(2062), + [anon_sym_0x] = ACTIONS(2062), + [sym_val_date] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2064), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2064), + [anon_sym_out_GT_GT] = ACTIONS(2064), + [anon_sym_e_GT_GT] = ACTIONS(2064), + [anon_sym_o_GT_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2064), + [aux_sym_unquoted_token1] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2064), + }, [1534] = { - [sym_cell_path] = STATE(1940), - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(1917), + [sym_path] = STATE(1775), [sym_comment] = STATE(1534), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1933), - [sym__newline] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_err_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_GT_PIPE] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_DASH_DASH] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1931), - [anon_sym_0o] = ACTIONS(1931), - [anon_sym_0x] = ACTIONS(1931), - [sym_val_date] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_err_GT] = ACTIONS(1931), - [anon_sym_out_GT] = ACTIONS(1931), - [anon_sym_e_GT] = ACTIONS(1931), - [anon_sym_o_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT] = ACTIONS(1931), - [anon_sym_err_GT_GT] = ACTIONS(1933), - [anon_sym_out_GT_GT] = ACTIONS(1933), - [anon_sym_e_GT_GT] = ACTIONS(1933), - [anon_sym_o_GT_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), - [aux_sym_unquoted_token1] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1933), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2068), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [aux_sym_unquoted_token1] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2068), }, [1535] = { [sym_comment] = STATE(1535), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4795), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1536] = { - [sym_cell_path] = STATE(1941), - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(1918), + [sym_path] = STATE(1775), [sym_comment] = STATE(1536), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1901), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_DASH_DASH] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2070), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_null] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2070), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_0b] = ACTIONS(2070), + [anon_sym_0o] = ACTIONS(2070), + [anon_sym_0x] = ACTIONS(2070), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2070), + [anon_sym_out_GT] = ACTIONS(2070), + [anon_sym_e_GT] = ACTIONS(2070), + [anon_sym_o_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT] = ACTIONS(2070), + [anon_sym_err_GT_GT] = ACTIONS(2072), + [anon_sym_out_GT_GT] = ACTIONS(2072), + [anon_sym_e_GT_GT] = ACTIONS(2072), + [anon_sym_o_GT_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [aux_sym_unquoted_token1] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2072), }, [1537] = { [sym_comment] = STATE(1537), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4856), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1538] = { - [sym__expr_parenthesized_immediate] = STATE(7707), + [sym_path] = STATE(1691), [sym_comment] = STATE(1538), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1719), - [anon_sym_xor2] = ACTIONS(1719), - [anon_sym_or2] = ACTIONS(1719), - [anon_sym_not_DASHin2] = ACTIONS(1719), - [anon_sym_starts_DASHwith2] = ACTIONS(1719), - [anon_sym_ends_DASHwith2] = ACTIONS(1719), - [anon_sym_EQ_EQ2] = ACTIONS(1719), - [anon_sym_BANG_EQ2] = ACTIONS(1719), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1719), - [anon_sym_GT_EQ2] = ACTIONS(1719), - [anon_sym_EQ_TILDE2] = ACTIONS(1719), - [anon_sym_BANG_TILDE2] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_STAR_STAR2] = ACTIONS(1719), - [anon_sym_PLUS_PLUS2] = ACTIONS(1719), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1719), - [anon_sym_SLASH_SLASH2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1719), - [anon_sym_bit_DASHshr2] = ACTIONS(1719), - [anon_sym_bit_DASHand2] = ACTIONS(1719), - [anon_sym_bit_DASHxor2] = ACTIONS(1719), - [anon_sym_bit_DASHor2] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(4858), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), - [sym_filesize_unit] = ACTIONS(4862), - [sym_duration_unit] = ACTIONS(4864), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token2] = ACTIONS(4866), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1564), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1481), + [aux_sym__val_number_token5] = ACTIONS(1481), + [aux_sym__val_number_token6] = ACTIONS(1481), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), }, [1539] = { [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1540] = { - [sym_cell_path] = STATE(1942), - [sym_path] = STATE(1823), - [sym_comment] = STATE(1540), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT] = ACTIONS(1909), - [anon_sym_null] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [anon_sym_0b] = ACTIONS(1907), - [anon_sym_0o] = ACTIONS(1907), - [anon_sym_0x] = ACTIONS(1907), - [sym_val_date] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [aux_sym_unquoted_token1] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1909), - }, - [1541] = { - [sym_comment] = STATE(1541), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_EQ_GT] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4872), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [1542] = { - [sym_comment] = STATE(1542), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - }, - [1543] = { - [sym_comment] = STATE(1543), - [sym__newline] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_err_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_GT_PIPE] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_DASH_DASH] = ACTIONS(2054), - [anon_sym_DASH2] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_DOT_DOT2] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), - [anon_sym_DOT_DOT_LT] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), - [anon_sym_null] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [aux_sym__val_number_decimal_token1] = ACTIONS(2052), - [aux_sym__val_number_decimal_token2] = ACTIONS(2054), - [aux_sym__val_number_decimal_token3] = ACTIONS(2054), - [aux_sym__val_number_decimal_token4] = ACTIONS(2054), - [aux_sym__val_number_token1] = ACTIONS(2054), - [aux_sym__val_number_token2] = ACTIONS(2054), - [aux_sym__val_number_token3] = ACTIONS(2054), - [aux_sym__val_number_token4] = ACTIONS(2054), - [aux_sym__val_number_token5] = ACTIONS(2054), - [aux_sym__val_number_token6] = ACTIONS(2054), - [anon_sym_0b] = ACTIONS(2052), - [anon_sym_0o] = ACTIONS(2052), - [anon_sym_0x] = ACTIONS(2052), - [sym_val_date] = ACTIONS(2054), - [anon_sym_DQUOTE] = ACTIONS(2054), - [sym__str_single_quotes] = ACTIONS(2054), - [sym__str_back_ticks] = ACTIONS(2054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), - [anon_sym_err_GT] = ACTIONS(2052), - [anon_sym_out_GT] = ACTIONS(2052), - [anon_sym_e_GT] = ACTIONS(2052), - [anon_sym_o_GT] = ACTIONS(2052), - [anon_sym_err_PLUSout_GT] = ACTIONS(2052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), - [anon_sym_o_PLUSe_GT] = ACTIONS(2052), - [anon_sym_e_PLUSo_GT] = ACTIONS(2052), - [anon_sym_err_GT_GT] = ACTIONS(2054), - [anon_sym_out_GT_GT] = ACTIONS(2054), - [anon_sym_e_GT_GT] = ACTIONS(2054), - [anon_sym_o_GT_GT] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), - [aux_sym_unquoted_token1] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2054), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [1540] = { + [sym_cell_path] = STATE(1875), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1540), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2012), + [anon_sym_DOT_DOT_LT] = ACTIONS(2012), + [anon_sym_null] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2010), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_0b] = ACTIONS(2010), + [anon_sym_0o] = ACTIONS(2010), + [anon_sym_0x] = ACTIONS(2010), + [sym_val_date] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2012), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [aux_sym_unquoted_token1] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2012), + }, + [1541] = { + [sym_comment] = STATE(1541), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ_GT] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [aux_sym_record_entry_token1] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), + }, + [1542] = { + [sym_cell_path] = STATE(1967), + [sym_path] = STATE(1775), + [sym_comment] = STATE(1542), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT] = ACTIONS(2000), + [anon_sym_null] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_0b] = ACTIONS(1998), + [anon_sym_0o] = ACTIONS(1998), + [anon_sym_0x] = ACTIONS(1998), + [sym_val_date] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [aux_sym_unquoted_token1] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2000), + }, + [1543] = { + [sym_comment] = STATE(1543), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_in2] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), }, [1544] = { + [sym_cell_path] = STATE(1726), + [sym_path] = STATE(1650), [sym_comment] = STATE(1544), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1615), + [sym__newline] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1884), + [anon_sym_in2] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1884), + [anon_sym_xor2] = ACTIONS(1884), + [anon_sym_or2] = ACTIONS(1884), + [anon_sym_not_DASHin2] = ACTIONS(1884), + [anon_sym_starts_DASHwith2] = ACTIONS(1884), + [anon_sym_ends_DASHwith2] = ACTIONS(1884), + [anon_sym_EQ_EQ2] = ACTIONS(1884), + [anon_sym_BANG_EQ2] = ACTIONS(1884), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1884), + [anon_sym_GT_EQ2] = ACTIONS(1884), + [anon_sym_EQ_TILDE2] = ACTIONS(1884), + [anon_sym_BANG_TILDE2] = ACTIONS(1884), + [anon_sym_STAR_STAR2] = ACTIONS(1884), + [anon_sym_PLUS_PLUS2] = ACTIONS(1884), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1884), + [anon_sym_SLASH_SLASH2] = ACTIONS(1884), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1884), + [anon_sym_bit_DASHshr2] = ACTIONS(1884), + [anon_sym_bit_DASHand2] = ACTIONS(1884), + [anon_sym_bit_DASHxor2] = ACTIONS(1884), + [anon_sym_bit_DASHor2] = ACTIONS(1884), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(255), }, [1545] = { - [sym_cell_path] = STATE(1959), - [sym_path] = STATE(1823), [sym_comment] = STATE(1545), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1869), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DASH2] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_LT] = ACTIONS(1869), - [anon_sym_null] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1869), - [aux_sym__val_number_decimal_token3] = ACTIONS(1869), - [aux_sym__val_number_decimal_token4] = ACTIONS(1869), - [aux_sym__val_number_token1] = ACTIONS(1869), - [aux_sym__val_number_token2] = ACTIONS(1869), - [aux_sym__val_number_token3] = ACTIONS(1869), - [aux_sym__val_number_token4] = ACTIONS(1869), - [aux_sym__val_number_token5] = ACTIONS(1869), - [aux_sym__val_number_token6] = ACTIONS(1869), - [anon_sym_0b] = ACTIONS(1867), - [anon_sym_0o] = ACTIONS(1867), - [anon_sym_0x] = ACTIONS(1867), - [sym_val_date] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [sym__str_single_quotes] = ACTIONS(1869), - [sym__str_back_ticks] = ACTIONS(1869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_err_GT] = ACTIONS(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [aux_sym_unquoted_token1] = ACTIONS(1867), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1869), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_in2] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [aux_sym_record_entry_token1] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), }, [1546] = { [sym_comment] = STATE(1546), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4876), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1888), + [aux_sym__val_number_token5] = ACTIONS(1888), + [aux_sym__val_number_token6] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1886), + [anon_sym_0o] = ACTIONS(1886), + [anon_sym_0x] = ACTIONS(1886), + [sym_val_date] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [aux_sym_unquoted_token1] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), }, [1547] = { [sym_comment] = STATE(1547), - [sym__newline] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_err_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_GT_PIPE] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), - [anon_sym_DOT_DOT_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2185), - [aux_sym__val_number_token5] = ACTIONS(2185), - [aux_sym__val_number_token6] = ACTIONS(2185), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2183), - [anon_sym_0x] = ACTIONS(2183), - [sym_val_date] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), - [anon_sym_err_GT] = ACTIONS(2183), - [anon_sym_out_GT] = ACTIONS(2183), - [anon_sym_e_GT] = ACTIONS(2183), - [anon_sym_o_GT] = ACTIONS(2183), - [anon_sym_err_PLUSout_GT] = ACTIONS(2183), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), - [anon_sym_o_PLUSe_GT] = ACTIONS(2183), - [anon_sym_e_PLUSo_GT] = ACTIONS(2183), - [anon_sym_err_GT_GT] = ACTIONS(2185), - [anon_sym_out_GT_GT] = ACTIONS(2185), - [anon_sym_e_GT_GT] = ACTIONS(2185), - [anon_sym_o_GT_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), + [sym__newline] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_err_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_GT_PIPE] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_DOT_DOT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [aux_sym__val_number_token4] = ACTIONS(2217), + [aux_sym__val_number_token5] = ACTIONS(2217), + [aux_sym__val_number_token6] = ACTIONS(2217), + [anon_sym_0b] = ACTIONS(2215), + [anon_sym_0o] = ACTIONS(2215), + [anon_sym_0x] = ACTIONS(2215), + [sym_val_date] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2217), + [anon_sym_err_GT] = ACTIONS(2215), + [anon_sym_out_GT] = ACTIONS(2215), + [anon_sym_e_GT] = ACTIONS(2215), + [anon_sym_o_GT] = ACTIONS(2215), + [anon_sym_err_PLUSout_GT] = ACTIONS(2215), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2215), + [anon_sym_o_PLUSe_GT] = ACTIONS(2215), + [anon_sym_e_PLUSo_GT] = ACTIONS(2215), + [anon_sym_err_GT_GT] = ACTIONS(2217), + [anon_sym_out_GT_GT] = ACTIONS(2217), + [anon_sym_e_GT_GT] = ACTIONS(2217), + [anon_sym_o_GT_GT] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2217), + [aux_sym_unquoted_token1] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2217), }, [1548] = { - [sym_cell_path] = STATE(1914), - [sym_path] = STATE(1823), [sym_comment] = STATE(1548), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1873), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2240), + [anon_sym_DOT_DOT_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2242), + [aux_sym__val_number_decimal_token4] = ACTIONS(2242), + [aux_sym__val_number_token1] = ACTIONS(2242), + [aux_sym__val_number_token2] = ACTIONS(2242), + [aux_sym__val_number_token3] = ACTIONS(2242), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [anon_sym_0b] = ACTIONS(2240), + [anon_sym_0o] = ACTIONS(2240), + [anon_sym_0x] = ACTIONS(2240), + [sym_val_date] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [aux_sym_unquoted_token1] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2242), }, [1549] = { [sym_comment] = STATE(1549), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_PLUS_EQ] = ACTIONS(4880), - [anon_sym_DASH_EQ] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(4880), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4880), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_err_GT_PIPE] = ACTIONS(2221), + [anon_sym_out_GT_PIPE] = ACTIONS(2221), + [anon_sym_e_GT_PIPE] = ACTIONS(2221), + [anon_sym_o_GT_PIPE] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_DOT_DOT2] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2219), + [anon_sym_DOT_DOT_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2221), + [aux_sym__val_number_decimal_token3] = ACTIONS(2221), + [aux_sym__val_number_decimal_token4] = ACTIONS(2221), + [aux_sym__val_number_token1] = ACTIONS(2221), + [aux_sym__val_number_token2] = ACTIONS(2221), + [aux_sym__val_number_token3] = ACTIONS(2221), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2219), + [anon_sym_0o] = ACTIONS(2219), + [anon_sym_0x] = ACTIONS(2219), + [sym_val_date] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2221), + [anon_sym_err_GT] = ACTIONS(2219), + [anon_sym_out_GT] = ACTIONS(2219), + [anon_sym_e_GT] = ACTIONS(2219), + [anon_sym_o_GT] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT] = ACTIONS(2219), + [anon_sym_err_GT_GT] = ACTIONS(2221), + [anon_sym_out_GT_GT] = ACTIONS(2221), + [anon_sym_e_GT_GT] = ACTIONS(2221), + [anon_sym_o_GT_GT] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2221), + [aux_sym_unquoted_token1] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2221), }, [1550] = { - [sym_cell_path] = STATE(1705), - [sym_path] = STATE(1615), [sym_comment] = STATE(1550), - [aux_sym_cell_path_repeat1] = STATE(1643), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_PLUS_EQ] = ACTIONS(4897), + [anon_sym_DASH_EQ] = ACTIONS(4897), + [anon_sym_STAR_EQ] = ACTIONS(4897), + [anon_sym_SLASH_EQ] = ACTIONS(4897), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4897), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(4899), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4901), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4901), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), }, [1551] = { + [sym_cell_path] = STATE(1704), + [sym_path] = STATE(1650), [sym_comment] = STATE(1551), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1615), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_in2] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1886), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1886), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1886), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), }, [1552] = { [sym_comment] = STATE(1552), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_EQ_GT] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(4903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1553] = { [sym_comment] = STATE(1553), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_EQ_GT] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1554] = { + [sym__expr_parenthesized_immediate] = STATE(7710), [sym_comment] = STATE(1554), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1800), + [anon_sym_in2] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1800), + [anon_sym_xor2] = ACTIONS(1800), + [anon_sym_or2] = ACTIONS(1800), + [anon_sym_not_DASHin2] = ACTIONS(1800), + [anon_sym_starts_DASHwith2] = ACTIONS(1800), + [anon_sym_ends_DASHwith2] = ACTIONS(1800), + [anon_sym_EQ_EQ2] = ACTIONS(1800), + [anon_sym_BANG_EQ2] = ACTIONS(1800), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1800), + [anon_sym_GT_EQ2] = ACTIONS(1800), + [anon_sym_EQ_TILDE2] = ACTIONS(1800), + [anon_sym_BANG_TILDE2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_STAR_STAR2] = ACTIONS(1800), + [anon_sym_PLUS_PLUS2] = ACTIONS(1800), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1800), + [anon_sym_SLASH_SLASH2] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1800), + [anon_sym_bit_DASHshr2] = ACTIONS(1800), + [anon_sym_bit_DASHand2] = ACTIONS(1800), + [anon_sym_bit_DASHxor2] = ACTIONS(1800), + [anon_sym_bit_DASHor2] = ACTIONS(1800), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [sym_filesize_unit] = ACTIONS(4911), + [sym_duration_unit] = ACTIONS(4913), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token2] = ACTIONS(4915), + [anon_sym_POUND] = ACTIONS(255), }, [1555] = { - [sym_cell_path] = STATE(1972), - [sym_path] = STATE(1823), [sym_comment] = STATE(1555), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1851), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_DOT_DOT_LT] = ACTIONS(1851), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(4917), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1556] = { [sym_comment] = STATE(1556), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_DOT_DOT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), - [anon_sym_null] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_0b] = ACTIONS(2118), - [anon_sym_0o] = ACTIONS(2118), - [anon_sym_0x] = ACTIONS(2118), - [sym_val_date] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [aux_sym_unquoted_token1] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2120), + [sym__newline] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_in2] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_EQ_GT] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1516), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [aux_sym_record_entry_token1] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), }, [1557] = { [sym_comment] = STATE(1557), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_in2] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1683), - [anon_sym_xor2] = ACTIONS(1683), - [anon_sym_or2] = ACTIONS(1683), - [anon_sym_not_DASHin2] = ACTIONS(1683), - [anon_sym_starts_DASHwith2] = ACTIONS(1683), - [anon_sym_ends_DASHwith2] = ACTIONS(1683), - [anon_sym_EQ_EQ2] = ACTIONS(1683), - [anon_sym_BANG_EQ2] = ACTIONS(1683), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1683), - [anon_sym_GT_EQ2] = ACTIONS(1683), - [anon_sym_EQ_TILDE2] = ACTIONS(1683), - [anon_sym_BANG_TILDE2] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_STAR_STAR2] = ACTIONS(1683), - [anon_sym_PLUS_PLUS2] = ACTIONS(1683), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1683), - [anon_sym_SLASH_SLASH2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1683), - [anon_sym_bit_DASHshr2] = ACTIONS(1683), - [anon_sym_bit_DASHand2] = ACTIONS(1683), - [anon_sym_bit_DASHxor2] = ACTIONS(1683), - [anon_sym_bit_DASHor2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), }, [1558] = { [sym_comment] = STATE(1558), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_EQ_GT] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_PLUS_EQ] = ACTIONS(4921), + [anon_sym_DASH_EQ] = ACTIONS(4921), + [anon_sym_STAR_EQ] = ACTIONS(4921), + [anon_sym_SLASH_EQ] = ACTIONS(4921), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4921), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), }, [1559] = { - [sym_cell_path] = STATE(1885), - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(1665), + [sym_path] = STATE(1650), [sym_comment] = STATE(1559), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1861), - [sym__newline] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_err_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_GT_PIPE] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_0b] = ACTIONS(1859), - [anon_sym_0o] = ACTIONS(1859), - [anon_sym_0x] = ACTIONS(1859), - [sym_val_date] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_err_GT] = ACTIONS(1859), - [anon_sym_out_GT] = ACTIONS(1859), - [anon_sym_e_GT] = ACTIONS(1859), - [anon_sym_o_GT] = ACTIONS(1859), - [anon_sym_err_PLUSout_GT] = ACTIONS(1859), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), - [anon_sym_o_PLUSe_GT] = ACTIONS(1859), - [anon_sym_e_PLUSo_GT] = ACTIONS(1859), - [anon_sym_err_GT_GT] = ACTIONS(1861), - [anon_sym_out_GT_GT] = ACTIONS(1861), - [anon_sym_e_GT_GT] = ACTIONS(1861), - [anon_sym_o_GT_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), - [aux_sym_unquoted_token1] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1861), + [aux_sym_cell_path_repeat1] = STATE(1615), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1475), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, [1560] = { - [sym_cell_path] = STATE(1722), - [sym_path] = STATE(1615), [sym_comment] = STATE(1560), - [aux_sym_cell_path_repeat1] = STATE(1643), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), }, [1561] = { + [sym_cell_path] = STATE(1970), + [sym_path] = STATE(1775), [sym_comment] = STATE(1561), - [sym__newline] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4882), - [anon_sym_err_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_GT_PIPE] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_DOLLAR] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_DASH2] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_DOT_DOT2] = ACTIONS(4833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), - [anon_sym_DOT_DOT_LT] = ACTIONS(4884), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [aux_sym__val_number_decimal_token1] = ACTIONS(4884), - [aux_sym__val_number_decimal_token2] = ACTIONS(4882), - [aux_sym__val_number_decimal_token3] = ACTIONS(4882), - [aux_sym__val_number_decimal_token4] = ACTIONS(4882), - [aux_sym__val_number_token1] = ACTIONS(4882), - [aux_sym__val_number_token2] = ACTIONS(4882), - [aux_sym__val_number_token3] = ACTIONS(4882), - [aux_sym__val_number_token4] = ACTIONS(4882), - [aux_sym__val_number_token5] = ACTIONS(4882), - [aux_sym__val_number_token6] = ACTIONS(4882), - [anon_sym_0b] = ACTIONS(4884), - [anon_sym_0o] = ACTIONS(4884), - [anon_sym_0x] = ACTIONS(4884), - [sym_val_date] = ACTIONS(4882), - [anon_sym_DQUOTE] = ACTIONS(4882), - [sym__str_single_quotes] = ACTIONS(4882), - [sym__str_back_ticks] = ACTIONS(4882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), - [anon_sym_err_GT] = ACTIONS(4884), - [anon_sym_out_GT] = ACTIONS(4884), - [anon_sym_e_GT] = ACTIONS(4884), - [anon_sym_o_GT] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT] = ACTIONS(4884), - [anon_sym_err_GT_GT] = ACTIONS(4882), - [anon_sym_out_GT_GT] = ACTIONS(4882), - [anon_sym_e_GT_GT] = ACTIONS(4882), - [anon_sym_o_GT_GT] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), - [aux_sym_unquoted_token1] = ACTIONS(4884), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4882), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym__newline] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_err_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_GT_PIPE] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1992), + [anon_sym_DOT_DOT_LT] = ACTIONS(1992), + [anon_sym_null] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1990), + [aux_sym__val_number_decimal_token2] = ACTIONS(1992), + [aux_sym__val_number_decimal_token3] = ACTIONS(1992), + [aux_sym__val_number_decimal_token4] = ACTIONS(1992), + [aux_sym__val_number_token1] = ACTIONS(1992), + [aux_sym__val_number_token2] = ACTIONS(1992), + [aux_sym__val_number_token3] = ACTIONS(1992), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1990), + [anon_sym_0x] = ACTIONS(1990), + [sym_val_date] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1992), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1992), + [anon_sym_err_GT] = ACTIONS(1990), + [anon_sym_out_GT] = ACTIONS(1990), + [anon_sym_e_GT] = ACTIONS(1990), + [anon_sym_o_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT] = ACTIONS(1990), + [anon_sym_err_GT_GT] = ACTIONS(1992), + [anon_sym_out_GT_GT] = ACTIONS(1992), + [anon_sym_e_GT_GT] = ACTIONS(1992), + [anon_sym_o_GT_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1992), + [aux_sym_unquoted_token1] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1992), }, [1562] = { + [sym_cell_path] = STATE(1958), + [sym_path] = STATE(1775), [sym_comment] = STATE(1562), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym__newline] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_DASH_DASH] = ACTIONS(2008), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2008), + [anon_sym_DOT_DOT_LT] = ACTIONS(2008), + [anon_sym_null] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [aux_sym__val_number_decimal_token1] = ACTIONS(2006), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2008), + [aux_sym__val_number_token2] = ACTIONS(2008), + [aux_sym__val_number_token3] = ACTIONS(2008), + [aux_sym__val_number_token4] = ACTIONS(2008), + [aux_sym__val_number_token5] = ACTIONS(2008), + [aux_sym__val_number_token6] = ACTIONS(2008), + [anon_sym_0b] = ACTIONS(2006), + [anon_sym_0o] = ACTIONS(2006), + [anon_sym_0x] = ACTIONS(2006), + [sym_val_date] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [sym__str_single_quotes] = ACTIONS(2008), + [sym__str_back_ticks] = ACTIONS(2008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2008), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2008), + [anon_sym_out_GT_GT] = ACTIONS(2008), + [anon_sym_e_GT_GT] = ACTIONS(2008), + [anon_sym_o_GT_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2008), + [aux_sym_unquoted_token1] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2008), }, [1563] = { [sym_comment] = STATE(1563), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym__newline] = ACTIONS(4923), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_err_GT_PIPE] = ACTIONS(4923), + [anon_sym_out_GT_PIPE] = ACTIONS(4923), + [anon_sym_e_GT_PIPE] = ACTIONS(4923), + [anon_sym_o_GT_PIPE] = ACTIONS(4923), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4923), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4923), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4923), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4923), + [anon_sym_DASH2] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_DOT_DOT2] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4925), + [anon_sym_DOT_DOT_LT] = ACTIONS(4925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4851), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4851), + [anon_sym_null] = ACTIONS(4923), + [anon_sym_true] = ACTIONS(4923), + [anon_sym_false] = ACTIONS(4923), + [aux_sym__val_number_decimal_token1] = ACTIONS(4925), + [aux_sym__val_number_decimal_token2] = ACTIONS(4923), + [aux_sym__val_number_decimal_token3] = ACTIONS(4923), + [aux_sym__val_number_decimal_token4] = ACTIONS(4923), + [aux_sym__val_number_token1] = ACTIONS(4923), + [aux_sym__val_number_token2] = ACTIONS(4923), + [aux_sym__val_number_token3] = ACTIONS(4923), + [aux_sym__val_number_token4] = ACTIONS(4923), + [aux_sym__val_number_token5] = ACTIONS(4923), + [aux_sym__val_number_token6] = ACTIONS(4923), + [anon_sym_0b] = ACTIONS(4925), + [anon_sym_0o] = ACTIONS(4925), + [anon_sym_0x] = ACTIONS(4925), + [sym_val_date] = ACTIONS(4923), + [anon_sym_DQUOTE] = ACTIONS(4923), + [sym__str_single_quotes] = ACTIONS(4923), + [sym__str_back_ticks] = ACTIONS(4923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4923), + [anon_sym_err_GT] = ACTIONS(4925), + [anon_sym_out_GT] = ACTIONS(4925), + [anon_sym_e_GT] = ACTIONS(4925), + [anon_sym_o_GT] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT] = ACTIONS(4925), + [anon_sym_err_GT_GT] = ACTIONS(4923), + [anon_sym_out_GT_GT] = ACTIONS(4923), + [anon_sym_e_GT_GT] = ACTIONS(4923), + [anon_sym_o_GT_GT] = ACTIONS(4923), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4923), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4923), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4923), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4923), + [aux_sym_unquoted_token1] = ACTIONS(4925), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4923), }, [1564] = { + [sym_path] = STATE(1691), [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_PLUS_EQ] = ACTIONS(4888), - [anon_sym_DASH_EQ] = ACTIONS(4888), - [anon_sym_STAR_EQ] = ACTIONS(4888), - [anon_sym_SLASH_EQ] = ACTIONS(4888), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4888), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(4890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4892), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1564), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1483), + [anon_sym_0x] = ACTIONS(1483), + [sym_val_date] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [aux_sym_unquoted_token1] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), }, [1565] = { [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1822), + [anon_sym_in2] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1822), + [anon_sym_xor2] = ACTIONS(1822), + [anon_sym_or2] = ACTIONS(1822), + [anon_sym_not_DASHin2] = ACTIONS(1822), + [anon_sym_starts_DASHwith2] = ACTIONS(1822), + [anon_sym_ends_DASHwith2] = ACTIONS(1822), + [anon_sym_EQ_EQ2] = ACTIONS(1822), + [anon_sym_BANG_EQ2] = ACTIONS(1822), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1822), + [anon_sym_GT_EQ2] = ACTIONS(1822), + [anon_sym_EQ_TILDE2] = ACTIONS(1822), + [anon_sym_BANG_TILDE2] = ACTIONS(1822), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_STAR_STAR2] = ACTIONS(1822), + [anon_sym_PLUS_PLUS2] = ACTIONS(1822), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1822), + [anon_sym_SLASH_SLASH2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1822), + [anon_sym_bit_DASHshr2] = ACTIONS(1822), + [anon_sym_bit_DASHand2] = ACTIONS(1822), + [anon_sym_bit_DASHxor2] = ACTIONS(1822), + [anon_sym_bit_DASHor2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), }, [1566] = { - [sym_cell_path] = STATE(1898), - [sym_path] = STATE(1823), [sym_comment] = STATE(1566), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_DOT_DOT_LT] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_null] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1558), + [aux_sym__val_number_token5] = ACTIONS(1558), + [aux_sym__val_number_token6] = ACTIONS(1558), + [anon_sym_0b] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1556), + [anon_sym_0x] = ACTIONS(1556), + [sym_val_date] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1558), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), }, [1567] = { [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), + [anon_sym_DOT_DOT_LT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1528), + [aux_sym__val_number_token5] = ACTIONS(1528), + [aux_sym__val_number_token6] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1526), + [anon_sym_0o] = ACTIONS(1526), + [anon_sym_0x] = ACTIONS(1526), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [aux_sym_unquoted_token1] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), }, [1568] = { - [sym_cell_path] = STATE(1903), - [sym_path] = STATE(1823), [sym_comment] = STATE(1568), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1865), - [sym__newline] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_err_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_GT_PIPE] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_null] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1863), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1865), - [anon_sym_out_GT_GT] = ACTIONS(1865), - [anon_sym_e_GT_GT] = ACTIONS(1865), - [anon_sym_o_GT_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), - [aux_sym_unquoted_token1] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1865), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_in2] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_EQ_GT] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [aux_sym_record_entry_token1] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), }, [1569] = { - [sym_cell_path] = STATE(1923), - [sym_path] = STATE(1823), [sym_comment] = STATE(1569), - [aux_sym_cell_path_repeat1] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1881), - [aux_sym__val_number_token5] = ACTIONS(1881), - [aux_sym__val_number_token6] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1881), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_in2] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), }, [1570] = { [sym_comment] = STATE(1570), - [anon_sym_EQ] = ACTIONS(1020), - [anon_sym_PLUS_EQ] = ACTIONS(1022), - [anon_sym_DASH_EQ] = ACTIONS(1022), - [anon_sym_STAR_EQ] = ACTIONS(1022), - [anon_sym_SLASH_EQ] = ACTIONS(1022), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), }, [1571] = { - [sym_cell_path] = STATE(2001), - [sym_path] = STATE(1882), [sym_comment] = STATE(1571), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_GT2] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_in2] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_EQ_GT] = ACTIONS(1921), - [anon_sym_STAR2] = ACTIONS(1919), - [anon_sym_and2] = ACTIONS(1921), - [anon_sym_xor2] = ACTIONS(1921), - [anon_sym_or2] = ACTIONS(1921), - [anon_sym_not_DASHin2] = ACTIONS(1921), - [anon_sym_starts_DASHwith2] = ACTIONS(1921), - [anon_sym_ends_DASHwith2] = ACTIONS(1921), - [anon_sym_EQ_EQ2] = ACTIONS(1921), - [anon_sym_BANG_EQ2] = ACTIONS(1921), - [anon_sym_LT2] = ACTIONS(1919), - [anon_sym_LT_EQ2] = ACTIONS(1921), - [anon_sym_GT_EQ2] = ACTIONS(1921), - [anon_sym_EQ_TILDE2] = ACTIONS(1921), - [anon_sym_BANG_TILDE2] = ACTIONS(1921), - [anon_sym_STAR_STAR2] = ACTIONS(1921), - [anon_sym_PLUS_PLUS2] = ACTIONS(1921), - [anon_sym_SLASH2] = ACTIONS(1919), - [anon_sym_mod2] = ACTIONS(1921), - [anon_sym_SLASH_SLASH2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1919), - [anon_sym_bit_DASHshl2] = ACTIONS(1921), - [anon_sym_bit_DASHshr2] = ACTIONS(1921), - [anon_sym_bit_DASHand2] = ACTIONS(1921), - [anon_sym_bit_DASHxor2] = ACTIONS(1921), - [anon_sym_bit_DASHor2] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1919), - [anon_sym_out_GT] = ACTIONS(1919), - [anon_sym_e_GT] = ACTIONS(1919), - [anon_sym_o_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT] = ACTIONS(1919), - [anon_sym_err_GT_GT] = ACTIONS(1921), - [anon_sym_out_GT_GT] = ACTIONS(1921), - [anon_sym_e_GT_GT] = ACTIONS(1921), - [anon_sym_o_GT_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4932), + [anon_sym_DASH_EQ] = ACTIONS(4932), + [anon_sym_STAR_EQ] = ACTIONS(4932), + [anon_sym_SLASH_EQ] = ACTIONS(4932), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4932), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), }, [1572] = { [sym_comment] = STATE(1572), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_EQ_GT] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_err_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_GT_PIPE] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_DASH2] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), + [anon_sym_DOT_DOT_LT] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2357), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [aux_sym__val_number_token4] = ACTIONS(2361), + [aux_sym__val_number_token5] = ACTIONS(2361), + [aux_sym__val_number_token6] = ACTIONS(2361), + [anon_sym_0b] = ACTIONS(2357), + [anon_sym_0o] = ACTIONS(2357), + [anon_sym_0x] = ACTIONS(2357), + [sym_val_date] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2361), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2361), + [anon_sym_out_GT_GT] = ACTIONS(2361), + [anon_sym_e_GT_GT] = ACTIONS(2361), + [anon_sym_o_GT_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), + [aux_sym_unquoted_token1] = ACTIONS(2357), + [aux_sym_unquoted_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2361), }, [1573] = { + [sym_cell_path] = STATE(2074), + [sym_path] = STATE(1909), [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_err_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_GT_PIPE] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_GT2] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2056), + [anon_sym_in2] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_EQ_GT] = ACTIONS(2056), + [anon_sym_STAR2] = ACTIONS(2054), + [anon_sym_and2] = ACTIONS(2056), + [anon_sym_xor2] = ACTIONS(2056), + [anon_sym_or2] = ACTIONS(2056), + [anon_sym_not_DASHin2] = ACTIONS(2056), + [anon_sym_starts_DASHwith2] = ACTIONS(2056), + [anon_sym_ends_DASHwith2] = ACTIONS(2056), + [anon_sym_EQ_EQ2] = ACTIONS(2056), + [anon_sym_BANG_EQ2] = ACTIONS(2056), + [anon_sym_LT2] = ACTIONS(2054), + [anon_sym_LT_EQ2] = ACTIONS(2056), + [anon_sym_GT_EQ2] = ACTIONS(2056), + [anon_sym_EQ_TILDE2] = ACTIONS(2056), + [anon_sym_BANG_TILDE2] = ACTIONS(2056), + [anon_sym_STAR_STAR2] = ACTIONS(2056), + [anon_sym_PLUS_PLUS2] = ACTIONS(2056), + [anon_sym_SLASH2] = ACTIONS(2054), + [anon_sym_mod2] = ACTIONS(2056), + [anon_sym_SLASH_SLASH2] = ACTIONS(2056), + [anon_sym_PLUS2] = ACTIONS(2054), + [anon_sym_bit_DASHshl2] = ACTIONS(2056), + [anon_sym_bit_DASHshr2] = ACTIONS(2056), + [anon_sym_bit_DASHand2] = ACTIONS(2056), + [anon_sym_bit_DASHxor2] = ACTIONS(2056), + [anon_sym_bit_DASHor2] = ACTIONS(2056), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2054), + [anon_sym_out_GT] = ACTIONS(2054), + [anon_sym_e_GT] = ACTIONS(2054), + [anon_sym_o_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT] = ACTIONS(2054), + [anon_sym_err_GT_GT] = ACTIONS(2056), + [anon_sym_out_GT_GT] = ACTIONS(2056), + [anon_sym_e_GT_GT] = ACTIONS(2056), + [anon_sym_o_GT_GT] = ACTIONS(2056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(255), }, [1574] = { - [sym_path] = STATE(1823), + [sym_cell_path] = STATE(2075), + [sym_path] = STATE(1909), [sym_comment] = STATE(1574), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_DOT_DOT_LT] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_err_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_GT_PIPE] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_GT2] = ACTIONS(2058), + [anon_sym_DASH2] = ACTIONS(2060), + [anon_sym_in2] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_EQ_GT] = ACTIONS(2060), + [anon_sym_STAR2] = ACTIONS(2058), + [anon_sym_and2] = ACTIONS(2060), + [anon_sym_xor2] = ACTIONS(2060), + [anon_sym_or2] = ACTIONS(2060), + [anon_sym_not_DASHin2] = ACTIONS(2060), + [anon_sym_starts_DASHwith2] = ACTIONS(2060), + [anon_sym_ends_DASHwith2] = ACTIONS(2060), + [anon_sym_EQ_EQ2] = ACTIONS(2060), + [anon_sym_BANG_EQ2] = ACTIONS(2060), + [anon_sym_LT2] = ACTIONS(2058), + [anon_sym_LT_EQ2] = ACTIONS(2060), + [anon_sym_GT_EQ2] = ACTIONS(2060), + [anon_sym_EQ_TILDE2] = ACTIONS(2060), + [anon_sym_BANG_TILDE2] = ACTIONS(2060), + [anon_sym_STAR_STAR2] = ACTIONS(2060), + [anon_sym_PLUS_PLUS2] = ACTIONS(2060), + [anon_sym_SLASH2] = ACTIONS(2058), + [anon_sym_mod2] = ACTIONS(2060), + [anon_sym_SLASH_SLASH2] = ACTIONS(2060), + [anon_sym_PLUS2] = ACTIONS(2058), + [anon_sym_bit_DASHshl2] = ACTIONS(2060), + [anon_sym_bit_DASHshr2] = ACTIONS(2060), + [anon_sym_bit_DASHand2] = ACTIONS(2060), + [anon_sym_bit_DASHxor2] = ACTIONS(2060), + [anon_sym_bit_DASHor2] = ACTIONS(2060), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2060), + [anon_sym_out_GT_GT] = ACTIONS(2060), + [anon_sym_e_GT_GT] = ACTIONS(2060), + [anon_sym_o_GT_GT] = ACTIONS(2060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(255), }, [1575] = { + [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1575), - [sym__newline] = ACTIONS(4896), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_err_GT_PIPE] = ACTIONS(4896), - [anon_sym_out_GT_PIPE] = ACTIONS(4896), - [anon_sym_e_GT_PIPE] = ACTIONS(4896), - [anon_sym_o_GT_PIPE] = ACTIONS(4896), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4896), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4896), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4896), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_DOLLAR] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_DASH2] = ACTIONS(4898), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_DOT_DOT2] = ACTIONS(4833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), - [anon_sym_DOT_DOT_LT] = ACTIONS(4898), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4896), - [anon_sym_false] = ACTIONS(4896), - [aux_sym__val_number_decimal_token1] = ACTIONS(4898), - [aux_sym__val_number_decimal_token2] = ACTIONS(4896), - [aux_sym__val_number_decimal_token3] = ACTIONS(4896), - [aux_sym__val_number_decimal_token4] = ACTIONS(4896), - [aux_sym__val_number_token1] = ACTIONS(4896), - [aux_sym__val_number_token2] = ACTIONS(4896), - [aux_sym__val_number_token3] = ACTIONS(4896), - [aux_sym__val_number_token4] = ACTIONS(4896), - [aux_sym__val_number_token5] = ACTIONS(4896), - [aux_sym__val_number_token6] = ACTIONS(4896), - [anon_sym_0b] = ACTIONS(4898), - [anon_sym_0o] = ACTIONS(4898), - [anon_sym_0x] = ACTIONS(4898), - [sym_val_date] = ACTIONS(4896), - [anon_sym_DQUOTE] = ACTIONS(4896), - [sym__str_single_quotes] = ACTIONS(4896), - [sym__str_back_ticks] = ACTIONS(4896), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4896), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4896), - [anon_sym_err_GT] = ACTIONS(4898), - [anon_sym_out_GT] = ACTIONS(4898), - [anon_sym_e_GT] = ACTIONS(4898), - [anon_sym_o_GT] = ACTIONS(4898), - [anon_sym_err_PLUSout_GT] = ACTIONS(4898), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4898), - [anon_sym_o_PLUSe_GT] = ACTIONS(4898), - [anon_sym_e_PLUSo_GT] = ACTIONS(4898), - [anon_sym_err_GT_GT] = ACTIONS(4896), - [anon_sym_out_GT_GT] = ACTIONS(4896), - [anon_sym_e_GT_GT] = ACTIONS(4896), - [anon_sym_o_GT_GT] = ACTIONS(4896), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4896), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4896), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4896), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4896), - [aux_sym_unquoted_token1] = ACTIONS(4898), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4896), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_err_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_GT_PIPE] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_DASH2] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [aux_sym__val_number_decimal_token1] = ACTIONS(4938), + [aux_sym__val_number_decimal_token2] = ACTIONS(4936), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4936), + [aux_sym__val_number_token1] = ACTIONS(4936), + [aux_sym__val_number_token2] = ACTIONS(4936), + [aux_sym__val_number_token3] = ACTIONS(4936), + [aux_sym__val_number_token4] = ACTIONS(4936), + [aux_sym__val_number_token5] = ACTIONS(4936), + [aux_sym__val_number_token6] = ACTIONS(4936), + [anon_sym_0b] = ACTIONS(4938), + [anon_sym_0o] = ACTIONS(4938), + [anon_sym_0x] = ACTIONS(4938), + [sym_val_date] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [sym__str_single_quotes] = ACTIONS(4936), + [sym__str_back_ticks] = ACTIONS(4936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), + [anon_sym_err_GT] = ACTIONS(4938), + [anon_sym_out_GT] = ACTIONS(4938), + [anon_sym_e_GT] = ACTIONS(4938), + [anon_sym_o_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT] = ACTIONS(4938), + [anon_sym_err_GT_GT] = ACTIONS(4936), + [anon_sym_out_GT_GT] = ACTIONS(4936), + [anon_sym_e_GT_GT] = ACTIONS(4936), + [anon_sym_o_GT_GT] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), + [aux_sym_unquoted_token1] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4936), }, [1576] = { - [sym_cell_path] = STATE(1991), - [sym_path] = STATE(1882), + [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1576), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_err_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_GT_PIPE] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_GT2] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1889), - [anon_sym_STAR2] = ACTIONS(1887), - [anon_sym_and2] = ACTIONS(1889), - [anon_sym_xor2] = ACTIONS(1889), - [anon_sym_or2] = ACTIONS(1889), - [anon_sym_not_DASHin2] = ACTIONS(1889), - [anon_sym_starts_DASHwith2] = ACTIONS(1889), - [anon_sym_ends_DASHwith2] = ACTIONS(1889), - [anon_sym_EQ_EQ2] = ACTIONS(1889), - [anon_sym_BANG_EQ2] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1887), - [anon_sym_LT_EQ2] = ACTIONS(1889), - [anon_sym_GT_EQ2] = ACTIONS(1889), - [anon_sym_EQ_TILDE2] = ACTIONS(1889), - [anon_sym_BANG_TILDE2] = ACTIONS(1889), - [anon_sym_STAR_STAR2] = ACTIONS(1889), - [anon_sym_PLUS_PLUS2] = ACTIONS(1889), - [anon_sym_SLASH2] = ACTIONS(1887), - [anon_sym_mod2] = ACTIONS(1889), - [anon_sym_SLASH_SLASH2] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_bit_DASHshl2] = ACTIONS(1889), - [anon_sym_bit_DASHshr2] = ACTIONS(1889), - [anon_sym_bit_DASHand2] = ACTIONS(1889), - [anon_sym_bit_DASHxor2] = ACTIONS(1889), - [anon_sym_bit_DASHor2] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1887), - [anon_sym_out_GT] = ACTIONS(1887), - [anon_sym_e_GT] = ACTIONS(1887), - [anon_sym_o_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT] = ACTIONS(1887), - [anon_sym_err_GT_GT] = ACTIONS(1889), - [anon_sym_out_GT_GT] = ACTIONS(1889), - [anon_sym_e_GT_GT] = ACTIONS(1889), - [anon_sym_o_GT_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_err_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_GT_PIPE] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_DASH2] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4940), + [anon_sym_DOT_DOT_LT] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [aux_sym__val_number_decimal_token1] = ACTIONS(4942), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4940), + [aux_sym__val_number_decimal_token4] = ACTIONS(4940), + [aux_sym__val_number_token1] = ACTIONS(4940), + [aux_sym__val_number_token2] = ACTIONS(4940), + [aux_sym__val_number_token3] = ACTIONS(4940), + [aux_sym__val_number_token4] = ACTIONS(4940), + [aux_sym__val_number_token5] = ACTIONS(4940), + [aux_sym__val_number_token6] = ACTIONS(4940), + [anon_sym_0b] = ACTIONS(4942), + [anon_sym_0o] = ACTIONS(4942), + [anon_sym_0x] = ACTIONS(4942), + [sym_val_date] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [sym__str_single_quotes] = ACTIONS(4940), + [sym__str_back_ticks] = ACTIONS(4940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4940), + [anon_sym_err_GT] = ACTIONS(4942), + [anon_sym_out_GT] = ACTIONS(4942), + [anon_sym_e_GT] = ACTIONS(4942), + [anon_sym_o_GT] = ACTIONS(4942), + [anon_sym_err_PLUSout_GT] = ACTIONS(4942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4942), + [anon_sym_o_PLUSe_GT] = ACTIONS(4942), + [anon_sym_e_PLUSo_GT] = ACTIONS(4942), + [anon_sym_err_GT_GT] = ACTIONS(4940), + [anon_sym_out_GT_GT] = ACTIONS(4940), + [anon_sym_e_GT_GT] = ACTIONS(4940), + [anon_sym_o_GT_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4940), + [aux_sym_unquoted_token1] = ACTIONS(4942), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4940), }, [1577] = { + [sym_path] = STATE(1650), [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(4900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4902), - [anon_sym_null] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1028), - [aux_sym__val_number_token5] = ACTIONS(1028), - [aux_sym__val_number_token6] = ACTIONS(1028), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), + [aux_sym_cell_path_repeat1] = STATE(1577), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1485), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1578] = { - [sym_cell_path] = STATE(1983), - [sym_path] = STATE(1882), [sym_comment] = STATE(1578), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_in2] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1891), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1891), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_err_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_GT_PIPE] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_DASH2] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_LT] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2369), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [aux_sym__val_number_token4] = ACTIONS(2373), + [aux_sym__val_number_token5] = ACTIONS(2373), + [aux_sym__val_number_token6] = ACTIONS(2373), + [anon_sym_0b] = ACTIONS(2369), + [anon_sym_0o] = ACTIONS(2369), + [anon_sym_0x] = ACTIONS(2369), + [sym_val_date] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_err_GT] = ACTIONS(2369), + [anon_sym_out_GT] = ACTIONS(2369), + [anon_sym_e_GT] = ACTIONS(2369), + [anon_sym_o_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT] = ACTIONS(2369), + [anon_sym_err_GT_GT] = ACTIONS(2373), + [anon_sym_out_GT_GT] = ACTIONS(2373), + [anon_sym_e_GT_GT] = ACTIONS(2373), + [anon_sym_o_GT_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2373), + [aux_sym_unquoted_token1] = ACTIONS(2369), + [aux_sym_unquoted_token2] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2373), }, [1579] = { + [sym_cell_path] = STATE(2076), + [sym_path] = STATE(1909), [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(4882), - [sym__newline] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4882), - [anon_sym_err_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_GT_PIPE] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_DOLLAR] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_DASH2] = ACTIONS(4884), - [anon_sym_LBRACE] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_DOT_DOT2] = ACTIONS(4900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), - [anon_sym_DOT_DOT_LT] = ACTIONS(4884), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4902), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4902), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [aux_sym__val_number_decimal_token1] = ACTIONS(4884), - [aux_sym__val_number_decimal_token2] = ACTIONS(4882), - [aux_sym__val_number_decimal_token3] = ACTIONS(4882), - [aux_sym__val_number_decimal_token4] = ACTIONS(4882), - [aux_sym__val_number_token1] = ACTIONS(4882), - [aux_sym__val_number_token2] = ACTIONS(4882), - [aux_sym__val_number_token3] = ACTIONS(4882), - [aux_sym__val_number_token4] = ACTIONS(4882), - [aux_sym__val_number_token5] = ACTIONS(4882), - [aux_sym__val_number_token6] = ACTIONS(4882), - [anon_sym_0b] = ACTIONS(4884), - [anon_sym_0o] = ACTIONS(4884), - [anon_sym_0x] = ACTIONS(4884), - [sym_val_date] = ACTIONS(4882), - [anon_sym_DQUOTE] = ACTIONS(4882), - [sym__str_single_quotes] = ACTIONS(4882), - [sym__str_back_ticks] = ACTIONS(4882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), - [anon_sym_err_GT] = ACTIONS(4884), - [anon_sym_out_GT] = ACTIONS(4884), - [anon_sym_e_GT] = ACTIONS(4884), - [anon_sym_o_GT] = ACTIONS(4884), - [anon_sym_err_PLUSout_GT] = ACTIONS(4884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), - [anon_sym_o_PLUSe_GT] = ACTIONS(4884), - [anon_sym_e_PLUSo_GT] = ACTIONS(4884), - [anon_sym_err_GT_GT] = ACTIONS(4882), - [anon_sym_out_GT_GT] = ACTIONS(4882), - [anon_sym_e_GT_GT] = ACTIONS(4882), - [anon_sym_o_GT_GT] = ACTIONS(4882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), - [aux_sym_unquoted_token1] = ACTIONS(4884), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4882), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_GT2] = ACTIONS(2062), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_EQ_GT] = ACTIONS(2064), + [anon_sym_STAR2] = ACTIONS(2062), + [anon_sym_and2] = ACTIONS(2064), + [anon_sym_xor2] = ACTIONS(2064), + [anon_sym_or2] = ACTIONS(2064), + [anon_sym_not_DASHin2] = ACTIONS(2064), + [anon_sym_starts_DASHwith2] = ACTIONS(2064), + [anon_sym_ends_DASHwith2] = ACTIONS(2064), + [anon_sym_EQ_EQ2] = ACTIONS(2064), + [anon_sym_BANG_EQ2] = ACTIONS(2064), + [anon_sym_LT2] = ACTIONS(2062), + [anon_sym_LT_EQ2] = ACTIONS(2064), + [anon_sym_GT_EQ2] = ACTIONS(2064), + [anon_sym_EQ_TILDE2] = ACTIONS(2064), + [anon_sym_BANG_TILDE2] = ACTIONS(2064), + [anon_sym_STAR_STAR2] = ACTIONS(2064), + [anon_sym_PLUS_PLUS2] = ACTIONS(2064), + [anon_sym_SLASH2] = ACTIONS(2062), + [anon_sym_mod2] = ACTIONS(2064), + [anon_sym_SLASH_SLASH2] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2062), + [anon_sym_bit_DASHshl2] = ACTIONS(2064), + [anon_sym_bit_DASHshr2] = ACTIONS(2064), + [anon_sym_bit_DASHand2] = ACTIONS(2064), + [anon_sym_bit_DASHxor2] = ACTIONS(2064), + [anon_sym_bit_DASHor2] = ACTIONS(2064), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2064), + [anon_sym_out_GT_GT] = ACTIONS(2064), + [anon_sym_e_GT_GT] = ACTIONS(2064), + [anon_sym_o_GT_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(255), }, [1580] = { [sym_comment] = STATE(1580), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1520), + [anon_sym_in2] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1520), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(255), }, [1581] = { [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_in2] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1524), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(255), }, [1582] = { - [sym_cell_path] = STATE(2003), - [sym_path] = STATE(1882), + [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1582), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1897), - [anon_sym_in2] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1897), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1897), - [anon_sym_xor2] = ACTIONS(1897), - [anon_sym_or2] = ACTIONS(1897), - [anon_sym_not_DASHin2] = ACTIONS(1897), - [anon_sym_starts_DASHwith2] = ACTIONS(1897), - [anon_sym_ends_DASHwith2] = ACTIONS(1897), - [anon_sym_EQ_EQ2] = ACTIONS(1897), - [anon_sym_BANG_EQ2] = ACTIONS(1897), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1897), - [anon_sym_GT_EQ2] = ACTIONS(1897), - [anon_sym_EQ_TILDE2] = ACTIONS(1897), - [anon_sym_BANG_TILDE2] = ACTIONS(1897), - [anon_sym_STAR_STAR2] = ACTIONS(1897), - [anon_sym_PLUS_PLUS2] = ACTIONS(1897), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1897), - [anon_sym_SLASH_SLASH2] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1897), - [anon_sym_bit_DASHshr2] = ACTIONS(1897), - [anon_sym_bit_DASHand2] = ACTIONS(1897), - [anon_sym_bit_DASHxor2] = ACTIONS(1897), - [anon_sym_bit_DASHor2] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(4947), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_err_GT_PIPE] = ACTIONS(4947), + [anon_sym_out_GT_PIPE] = ACTIONS(4947), + [anon_sym_e_GT_PIPE] = ACTIONS(4947), + [anon_sym_o_GT_PIPE] = ACTIONS(4947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_DASH2] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_DOT_DOT] = ACTIONS(4949), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4947), + [anon_sym_DOT_DOT_LT] = ACTIONS(4947), + [anon_sym_null] = ACTIONS(4947), + [anon_sym_true] = ACTIONS(4947), + [anon_sym_false] = ACTIONS(4947), + [aux_sym__val_number_decimal_token1] = ACTIONS(4949), + [aux_sym__val_number_decimal_token2] = ACTIONS(4947), + [aux_sym__val_number_decimal_token3] = ACTIONS(4947), + [aux_sym__val_number_decimal_token4] = ACTIONS(4947), + [aux_sym__val_number_token1] = ACTIONS(4947), + [aux_sym__val_number_token2] = ACTIONS(4947), + [aux_sym__val_number_token3] = ACTIONS(4947), + [aux_sym__val_number_token4] = ACTIONS(4947), + [aux_sym__val_number_token5] = ACTIONS(4947), + [aux_sym__val_number_token6] = ACTIONS(4947), + [anon_sym_0b] = ACTIONS(4949), + [anon_sym_0o] = ACTIONS(4949), + [anon_sym_0x] = ACTIONS(4949), + [sym_val_date] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [sym__str_single_quotes] = ACTIONS(4947), + [sym__str_back_ticks] = ACTIONS(4947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4947), + [anon_sym_err_GT] = ACTIONS(4949), + [anon_sym_out_GT] = ACTIONS(4949), + [anon_sym_e_GT] = ACTIONS(4949), + [anon_sym_o_GT] = ACTIONS(4949), + [anon_sym_err_PLUSout_GT] = ACTIONS(4949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4949), + [anon_sym_o_PLUSe_GT] = ACTIONS(4949), + [anon_sym_e_PLUSo_GT] = ACTIONS(4949), + [anon_sym_err_GT_GT] = ACTIONS(4947), + [anon_sym_out_GT_GT] = ACTIONS(4947), + [anon_sym_e_GT_GT] = ACTIONS(4947), + [anon_sym_o_GT_GT] = ACTIONS(4947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4947), + [aux_sym_unquoted_token1] = ACTIONS(4949), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4947), }, [1583] = { - [sym_cell_path] = STATE(2057), - [sym_path] = STATE(1882), + [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1583), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_err_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_GT_PIPE] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_GT2] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_in2] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_STAR2] = ACTIONS(1911), - [anon_sym_and2] = ACTIONS(1913), - [anon_sym_xor2] = ACTIONS(1913), - [anon_sym_or2] = ACTIONS(1913), - [anon_sym_not_DASHin2] = ACTIONS(1913), - [anon_sym_starts_DASHwith2] = ACTIONS(1913), - [anon_sym_ends_DASHwith2] = ACTIONS(1913), - [anon_sym_EQ_EQ2] = ACTIONS(1913), - [anon_sym_BANG_EQ2] = ACTIONS(1913), - [anon_sym_LT2] = ACTIONS(1911), - [anon_sym_LT_EQ2] = ACTIONS(1913), - [anon_sym_GT_EQ2] = ACTIONS(1913), - [anon_sym_EQ_TILDE2] = ACTIONS(1913), - [anon_sym_BANG_TILDE2] = ACTIONS(1913), - [anon_sym_STAR_STAR2] = ACTIONS(1913), - [anon_sym_PLUS_PLUS2] = ACTIONS(1913), - [anon_sym_SLASH2] = ACTIONS(1911), - [anon_sym_mod2] = ACTIONS(1913), - [anon_sym_SLASH_SLASH2] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1911), - [anon_sym_bit_DASHshl2] = ACTIONS(1913), - [anon_sym_bit_DASHshr2] = ACTIONS(1913), - [anon_sym_bit_DASHand2] = ACTIONS(1913), - [anon_sym_bit_DASHxor2] = ACTIONS(1913), - [anon_sym_bit_DASHor2] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1911), - [anon_sym_out_GT] = ACTIONS(1911), - [anon_sym_e_GT] = ACTIONS(1911), - [anon_sym_o_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT] = ACTIONS(1911), - [anon_sym_err_GT_GT] = ACTIONS(1913), - [anon_sym_out_GT_GT] = ACTIONS(1913), - [anon_sym_e_GT_GT] = ACTIONS(1913), - [anon_sym_o_GT_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_err_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_GT_PIPE] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_DOLLAR] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_DASH2] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), + [anon_sym_DOT_DOT_LT] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_true] = ACTIONS(4951), + [anon_sym_false] = ACTIONS(4951), + [aux_sym__val_number_decimal_token1] = ACTIONS(4953), + [aux_sym__val_number_decimal_token2] = ACTIONS(4951), + [aux_sym__val_number_decimal_token3] = ACTIONS(4951), + [aux_sym__val_number_decimal_token4] = ACTIONS(4951), + [aux_sym__val_number_token1] = ACTIONS(4951), + [aux_sym__val_number_token2] = ACTIONS(4951), + [aux_sym__val_number_token3] = ACTIONS(4951), + [aux_sym__val_number_token4] = ACTIONS(4951), + [aux_sym__val_number_token5] = ACTIONS(4951), + [aux_sym__val_number_token6] = ACTIONS(4951), + [anon_sym_0b] = ACTIONS(4953), + [anon_sym_0o] = ACTIONS(4953), + [anon_sym_0x] = ACTIONS(4953), + [sym_val_date] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [sym__str_single_quotes] = ACTIONS(4951), + [sym__str_back_ticks] = ACTIONS(4951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_err_GT] = ACTIONS(4953), + [anon_sym_out_GT] = ACTIONS(4953), + [anon_sym_e_GT] = ACTIONS(4953), + [anon_sym_o_GT] = ACTIONS(4953), + [anon_sym_err_PLUSout_GT] = ACTIONS(4953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), + [anon_sym_o_PLUSe_GT] = ACTIONS(4953), + [anon_sym_e_PLUSo_GT] = ACTIONS(4953), + [anon_sym_err_GT_GT] = ACTIONS(4951), + [anon_sym_out_GT_GT] = ACTIONS(4951), + [anon_sym_e_GT_GT] = ACTIONS(4951), + [anon_sym_o_GT_GT] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), + [aux_sym_unquoted_token1] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4951), }, [1584] = { + [sym_cell_path] = STATE(1665), + [sym_path] = STATE(1909), [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1475), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ_GT] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, [1585] = { [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym__newline] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_err_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_GT_PIPE] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), - [anon_sym_DOT_DOT_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2185), - [aux_sym__val_number_token5] = ACTIONS(2185), - [aux_sym__val_number_token6] = ACTIONS(2185), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2183), - [anon_sym_0x] = ACTIONS(2183), - [sym_val_date] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), - [anon_sym_err_GT] = ACTIONS(2183), - [anon_sym_out_GT] = ACTIONS(2183), - [anon_sym_e_GT] = ACTIONS(2183), - [anon_sym_o_GT] = ACTIONS(2183), - [anon_sym_err_PLUSout_GT] = ACTIONS(2183), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), - [anon_sym_o_PLUSe_GT] = ACTIONS(2183), - [anon_sym_e_PLUSo_GT] = ACTIONS(2183), - [anon_sym_err_GT_GT] = ACTIONS(2185), - [anon_sym_out_GT_GT] = ACTIONS(2185), - [anon_sym_e_GT_GT] = ACTIONS(2185), - [anon_sym_o_GT_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym__newline] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_err_GT_PIPE] = ACTIONS(2221), + [anon_sym_out_GT_PIPE] = ACTIONS(2221), + [anon_sym_e_GT_PIPE] = ACTIONS(2221), + [anon_sym_o_GT_PIPE] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_DASH2] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_DOT_DOT2] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2219), + [anon_sym_DOT_DOT_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), + [anon_sym_null] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [aux_sym__val_number_decimal_token1] = ACTIONS(2219), + [aux_sym__val_number_decimal_token2] = ACTIONS(2221), + [aux_sym__val_number_decimal_token3] = ACTIONS(2221), + [aux_sym__val_number_decimal_token4] = ACTIONS(2221), + [aux_sym__val_number_token1] = ACTIONS(2221), + [aux_sym__val_number_token2] = ACTIONS(2221), + [aux_sym__val_number_token3] = ACTIONS(2221), + [aux_sym__val_number_token4] = ACTIONS(2221), + [aux_sym__val_number_token5] = ACTIONS(2221), + [aux_sym__val_number_token6] = ACTIONS(2221), + [anon_sym_0b] = ACTIONS(2219), + [anon_sym_0o] = ACTIONS(2219), + [anon_sym_0x] = ACTIONS(2219), + [sym_val_date] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [sym__str_single_quotes] = ACTIONS(2221), + [sym__str_back_ticks] = ACTIONS(2221), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2221), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2221), + [anon_sym_err_GT] = ACTIONS(2219), + [anon_sym_out_GT] = ACTIONS(2219), + [anon_sym_e_GT] = ACTIONS(2219), + [anon_sym_o_GT] = ACTIONS(2219), + [anon_sym_err_PLUSout_GT] = ACTIONS(2219), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2219), + [anon_sym_o_PLUSe_GT] = ACTIONS(2219), + [anon_sym_e_PLUSo_GT] = ACTIONS(2219), + [anon_sym_err_GT_GT] = ACTIONS(2221), + [anon_sym_out_GT_GT] = ACTIONS(2221), + [anon_sym_e_GT_GT] = ACTIONS(2221), + [anon_sym_o_GT_GT] = ACTIONS(2221), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2221), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2221), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2221), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2221), + [aux_sym_unquoted_token1] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2221), }, [1586] = { - [sym_path] = STATE(1615), [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1586), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1587] = { [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_DOT_DOT2] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(4923), + [sym__newline] = ACTIONS(4923), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_PIPE] = ACTIONS(4923), + [anon_sym_err_GT_PIPE] = ACTIONS(4923), + [anon_sym_out_GT_PIPE] = ACTIONS(4923), + [anon_sym_e_GT_PIPE] = ACTIONS(4923), + [anon_sym_o_GT_PIPE] = ACTIONS(4923), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4923), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4923), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4923), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4923), + [anon_sym_DASH2] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_DOT_DOT2] = ACTIONS(4955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4925), + [anon_sym_DOT_DOT_LT] = ACTIONS(4925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4957), + [anon_sym_null] = ACTIONS(4923), + [anon_sym_true] = ACTIONS(4923), + [anon_sym_false] = ACTIONS(4923), + [aux_sym__val_number_decimal_token1] = ACTIONS(4925), + [aux_sym__val_number_decimal_token2] = ACTIONS(4923), + [aux_sym__val_number_decimal_token3] = ACTIONS(4923), + [aux_sym__val_number_decimal_token4] = ACTIONS(4923), + [aux_sym__val_number_token1] = ACTIONS(4923), + [aux_sym__val_number_token2] = ACTIONS(4923), + [aux_sym__val_number_token3] = ACTIONS(4923), + [aux_sym__val_number_token4] = ACTIONS(4923), + [aux_sym__val_number_token5] = ACTIONS(4923), + [aux_sym__val_number_token6] = ACTIONS(4923), + [anon_sym_0b] = ACTIONS(4925), + [anon_sym_0o] = ACTIONS(4925), + [anon_sym_0x] = ACTIONS(4925), + [sym_val_date] = ACTIONS(4923), + [anon_sym_DQUOTE] = ACTIONS(4923), + [sym__str_single_quotes] = ACTIONS(4923), + [sym__str_back_ticks] = ACTIONS(4923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4923), + [anon_sym_err_GT] = ACTIONS(4925), + [anon_sym_out_GT] = ACTIONS(4925), + [anon_sym_e_GT] = ACTIONS(4925), + [anon_sym_o_GT] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT] = ACTIONS(4925), + [anon_sym_err_GT_GT] = ACTIONS(4923), + [anon_sym_out_GT_GT] = ACTIONS(4923), + [anon_sym_e_GT_GT] = ACTIONS(4923), + [anon_sym_o_GT_GT] = ACTIONS(4923), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4923), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4923), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4923), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4923), + [aux_sym_unquoted_token1] = ACTIONS(4925), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4923), }, [1588] = { [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_err_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_GT_PIPE] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [aux_sym__val_number_token4] = ACTIONS(2232), - [aux_sym__val_number_token5] = ACTIONS(2232), - [aux_sym__val_number_token6] = ACTIONS(2232), - [anon_sym_0b] = ACTIONS(2230), - [anon_sym_0o] = ACTIONS(2230), - [anon_sym_0x] = ACTIONS(2230), - [sym_val_date] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2232), - [anon_sym_out_GT_GT] = ACTIONS(2232), - [anon_sym_e_GT_GT] = ACTIONS(2232), - [anon_sym_o_GT_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), - [aux_sym_unquoted_token1] = ACTIONS(2230), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2232), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(4959), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_null] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1502), + [aux_sym__val_number_token5] = ACTIONS(1502), + [aux_sym__val_number_token6] = ACTIONS(1502), + [anon_sym_0b] = ACTIONS(1500), + [anon_sym_0o] = ACTIONS(1500), + [anon_sym_0x] = ACTIONS(1500), + [sym_val_date] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [aux_sym_unquoted_token1] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, [1589] = { [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4907), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(4961), + [aux_sym__immediate_decimal_token2] = ACTIONS(4963), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1590] = { [sym_comment] = STATE(1590), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4909), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym__newline] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_err_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_GT_PIPE] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_DOT_DOT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2217), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2217), + [anon_sym_null] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [aux_sym__val_number_token4] = ACTIONS(2217), + [aux_sym__val_number_token5] = ACTIONS(2217), + [aux_sym__val_number_token6] = ACTIONS(2217), + [anon_sym_0b] = ACTIONS(2215), + [anon_sym_0o] = ACTIONS(2215), + [anon_sym_0x] = ACTIONS(2215), + [sym_val_date] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2217), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2217), + [anon_sym_err_GT] = ACTIONS(2215), + [anon_sym_out_GT] = ACTIONS(2215), + [anon_sym_e_GT] = ACTIONS(2215), + [anon_sym_o_GT] = ACTIONS(2215), + [anon_sym_err_PLUSout_GT] = ACTIONS(2215), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2215), + [anon_sym_o_PLUSe_GT] = ACTIONS(2215), + [anon_sym_e_PLUSo_GT] = ACTIONS(2215), + [anon_sym_err_GT_GT] = ACTIONS(2217), + [anon_sym_out_GT_GT] = ACTIONS(2217), + [anon_sym_e_GT_GT] = ACTIONS(2217), + [anon_sym_o_GT_GT] = ACTIONS(2217), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2217), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2217), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2217), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2217), + [aux_sym_unquoted_token1] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2217), }, [1591] = { - [sym_cell_path] = STATE(2089), - [sym_path] = STATE(1947), + [sym__expr_parenthesized_immediate] = STATE(7577), [sym_comment] = STATE(1591), - [aux_sym_cell_path_repeat1] = STATE(1659), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [aux_sym_record_entry_token1] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_GT2] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1800), + [anon_sym_in2] = ACTIONS(1800), + [anon_sym_STAR2] = ACTIONS(1788), + [anon_sym_and2] = ACTIONS(1800), + [anon_sym_xor2] = ACTIONS(1800), + [anon_sym_or2] = ACTIONS(1800), + [anon_sym_not_DASHin2] = ACTIONS(1800), + [anon_sym_starts_DASHwith2] = ACTIONS(1800), + [anon_sym_ends_DASHwith2] = ACTIONS(1800), + [anon_sym_EQ_EQ2] = ACTIONS(1800), + [anon_sym_BANG_EQ2] = ACTIONS(1800), + [anon_sym_LT2] = ACTIONS(1788), + [anon_sym_LT_EQ2] = ACTIONS(1800), + [anon_sym_GT_EQ2] = ACTIONS(1800), + [anon_sym_EQ_TILDE2] = ACTIONS(1800), + [anon_sym_BANG_TILDE2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_STAR_STAR2] = ACTIONS(1800), + [anon_sym_PLUS_PLUS2] = ACTIONS(1800), + [anon_sym_SLASH2] = ACTIONS(1788), + [anon_sym_mod2] = ACTIONS(1800), + [anon_sym_SLASH_SLASH2] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(1788), + [anon_sym_bit_DASHshl2] = ACTIONS(1800), + [anon_sym_bit_DASHshr2] = ACTIONS(1800), + [anon_sym_bit_DASHand2] = ACTIONS(1800), + [anon_sym_bit_DASHxor2] = ACTIONS(1800), + [anon_sym_bit_DASHor2] = ACTIONS(1800), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [sym_filesize_unit] = ACTIONS(4965), + [sym_duration_unit] = ACTIONS(4967), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token2] = ACTIONS(4969), + [anon_sym_POUND] = ACTIONS(255), }, [1592] = { [sym_comment] = STATE(1592), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1802), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), + [sym__newline] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_err_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_GT_PIPE] = ACTIONS(2891), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2891), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2891), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2891), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_DOLLAR] = ACTIONS(4971), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DASH2] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_DOT_DOT] = ACTIONS(4971), + [anon_sym_DOT_DOT2] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), + [anon_sym_DOT_DOT_LT] = ACTIONS(4971), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4851), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4851), + [anon_sym_null] = ACTIONS(2891), + [anon_sym_true] = ACTIONS(2891), + [anon_sym_false] = ACTIONS(2891), + [aux_sym__val_number_decimal_token1] = ACTIONS(4971), + [aux_sym__val_number_decimal_token2] = ACTIONS(2891), + [aux_sym__val_number_decimal_token3] = ACTIONS(2891), + [aux_sym__val_number_decimal_token4] = ACTIONS(2891), + [aux_sym__val_number_token1] = ACTIONS(2891), + [aux_sym__val_number_token2] = ACTIONS(2891), + [aux_sym__val_number_token3] = ACTIONS(2891), + [aux_sym__val_number_token4] = ACTIONS(2891), + [aux_sym__val_number_token5] = ACTIONS(2891), + [aux_sym__val_number_token6] = ACTIONS(2891), + [anon_sym_0b] = ACTIONS(4971), + [anon_sym_0o] = ACTIONS(4971), + [anon_sym_0x] = ACTIONS(4971), + [sym_val_date] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2891), + [sym__str_back_ticks] = ACTIONS(2891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2891), + [anon_sym_err_GT] = ACTIONS(4971), + [anon_sym_out_GT] = ACTIONS(4971), + [anon_sym_e_GT] = ACTIONS(4971), + [anon_sym_o_GT] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT] = ACTIONS(4971), + [anon_sym_err_GT_GT] = ACTIONS(2891), + [anon_sym_out_GT_GT] = ACTIONS(2891), + [anon_sym_e_GT_GT] = ACTIONS(2891), + [anon_sym_o_GT_GT] = ACTIONS(2891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2891), + [aux_sym_unquoted_token1] = ACTIONS(4971), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2891), }, [1593] = { - [sym_path] = STATE(1823), [sym_comment] = STATE(1593), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, [1594] = { [sym_comment] = STATE(1594), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_DOLLAR] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_LPAREN2] = ACTIONS(2260), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), - [anon_sym_DOT_DOT_LT] = ACTIONS(2262), - [anon_sym_null] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2262), - [anon_sym_false] = ACTIONS(2262), - [aux_sym__val_number_decimal_token1] = ACTIONS(2258), - [aux_sym__val_number_decimal_token2] = ACTIONS(2262), - [aux_sym__val_number_decimal_token3] = ACTIONS(2262), - [aux_sym__val_number_decimal_token4] = ACTIONS(2262), - [aux_sym__val_number_token1] = ACTIONS(2262), - [aux_sym__val_number_token2] = ACTIONS(2262), - [aux_sym__val_number_token3] = ACTIONS(2262), - [aux_sym__val_number_token4] = ACTIONS(2262), - [aux_sym__val_number_token5] = ACTIONS(2262), - [aux_sym__val_number_token6] = ACTIONS(2262), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2258), - [anon_sym_0x] = ACTIONS(2258), - [sym_val_date] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [sym__str_single_quotes] = ACTIONS(2262), - [sym__str_back_ticks] = ACTIONS(2262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2262), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2258), - [anon_sym_out_GT] = ACTIONS(2258), - [anon_sym_e_GT] = ACTIONS(2258), - [anon_sym_o_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT] = ACTIONS(2258), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), - [aux_sym_unquoted_token1] = ACTIONS(2258), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2262), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1508), + [aux_sym__val_number_token5] = ACTIONS(1508), + [aux_sym__val_number_token6] = ACTIONS(1508), + [anon_sym_0b] = ACTIONS(1506), + [anon_sym_0o] = ACTIONS(1506), + [anon_sym_0x] = ACTIONS(1506), + [sym_val_date] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [aux_sym_unquoted_token1] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), }, [1595] = { [sym_comment] = STATE(1595), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [aux_sym_unquoted_token1] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, [1596] = { [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT] = ACTIONS(1498), + [anon_sym_null] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1498), + [aux_sym__val_number_token5] = ACTIONS(1498), + [aux_sym__val_number_token6] = ACTIONS(1498), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, [1597] = { - [sym__expr_parenthesized_immediate] = STATE(8105), [sym_comment] = STATE(1597), - [sym__newline] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_err_GT_PIPE] = ACTIONS(4920), - [anon_sym_out_GT_PIPE] = ACTIONS(4920), - [anon_sym_e_GT_PIPE] = ACTIONS(4920), - [anon_sym_o_GT_PIPE] = ACTIONS(4920), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4920), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4920), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4920), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4920), - [anon_sym_DOLLAR] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_DASH2] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4920), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), - [anon_sym_DOT_DOT_LT] = ACTIONS(4920), - [anon_sym_null] = ACTIONS(4920), - [anon_sym_true] = ACTIONS(4920), - [anon_sym_false] = ACTIONS(4920), - [aux_sym__val_number_decimal_token1] = ACTIONS(4922), - [aux_sym__val_number_decimal_token2] = ACTIONS(4920), - [aux_sym__val_number_decimal_token3] = ACTIONS(4920), - [aux_sym__val_number_decimal_token4] = ACTIONS(4920), - [aux_sym__val_number_token1] = ACTIONS(4920), - [aux_sym__val_number_token2] = ACTIONS(4920), - [aux_sym__val_number_token3] = ACTIONS(4920), - [aux_sym__val_number_token4] = ACTIONS(4920), - [aux_sym__val_number_token5] = ACTIONS(4920), - [aux_sym__val_number_token6] = ACTIONS(4920), - [anon_sym_0b] = ACTIONS(4922), - [anon_sym_0o] = ACTIONS(4922), - [anon_sym_0x] = ACTIONS(4922), - [sym_val_date] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [sym__str_single_quotes] = ACTIONS(4920), - [sym__str_back_ticks] = ACTIONS(4920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4920), - [anon_sym_err_GT] = ACTIONS(4922), - [anon_sym_out_GT] = ACTIONS(4922), - [anon_sym_e_GT] = ACTIONS(4922), - [anon_sym_o_GT] = ACTIONS(4922), - [anon_sym_err_PLUSout_GT] = ACTIONS(4922), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4922), - [anon_sym_o_PLUSe_GT] = ACTIONS(4922), - [anon_sym_e_PLUSo_GT] = ACTIONS(4922), - [anon_sym_err_GT_GT] = ACTIONS(4920), - [anon_sym_out_GT_GT] = ACTIONS(4920), - [anon_sym_e_GT_GT] = ACTIONS(4920), - [anon_sym_o_GT_GT] = ACTIONS(4920), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4920), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4920), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4920), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4920), - [aux_sym_unquoted_token1] = ACTIONS(4922), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4920), + [sym__newline] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_err_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_GT_PIPE] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1948), + [anon_sym_DOT_DOT_LT] = ACTIONS(1948), + [anon_sym_null] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_0b] = ACTIONS(1940), + [anon_sym_0o] = ACTIONS(1940), + [anon_sym_0x] = ACTIONS(1940), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1948), + [anon_sym_err_GT] = ACTIONS(1940), + [anon_sym_out_GT] = ACTIONS(1940), + [anon_sym_e_GT] = ACTIONS(1940), + [anon_sym_o_GT] = ACTIONS(1940), + [anon_sym_err_PLUSout_GT] = ACTIONS(1940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), + [anon_sym_o_PLUSe_GT] = ACTIONS(1940), + [anon_sym_e_PLUSo_GT] = ACTIONS(1940), + [anon_sym_err_GT_GT] = ACTIONS(1948), + [anon_sym_out_GT_GT] = ACTIONS(1948), + [anon_sym_e_GT_GT] = ACTIONS(1948), + [anon_sym_o_GT_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1948), + [aux_sym_unquoted_token1] = ACTIONS(1940), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), }, [1598] = { + [sym_cell_path] = STATE(2023), + [sym_path] = STATE(1909), [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_in2] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1683), - [anon_sym_xor2] = ACTIONS(1683), - [anon_sym_or2] = ACTIONS(1683), - [anon_sym_not_DASHin2] = ACTIONS(1683), - [anon_sym_starts_DASHwith2] = ACTIONS(1683), - [anon_sym_ends_DASHwith2] = ACTIONS(1683), - [anon_sym_EQ_EQ2] = ACTIONS(1683), - [anon_sym_BANG_EQ2] = ACTIONS(1683), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1683), - [anon_sym_GT_EQ2] = ACTIONS(1683), - [anon_sym_EQ_TILDE2] = ACTIONS(1683), - [anon_sym_BANG_TILDE2] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_STAR_STAR2] = ACTIONS(1683), - [anon_sym_PLUS_PLUS2] = ACTIONS(1683), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1683), - [anon_sym_SLASH_SLASH2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1683), - [anon_sym_bit_DASHshr2] = ACTIONS(1683), - [anon_sym_bit_DASHand2] = ACTIONS(1683), - [anon_sym_bit_DASHxor2] = ACTIONS(1683), - [anon_sym_bit_DASHor2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(4924), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_err_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_GT_PIPE] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_GT2] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_EQ_GT] = ACTIONS(2012), + [anon_sym_STAR2] = ACTIONS(2010), + [anon_sym_and2] = ACTIONS(2012), + [anon_sym_xor2] = ACTIONS(2012), + [anon_sym_or2] = ACTIONS(2012), + [anon_sym_not_DASHin2] = ACTIONS(2012), + [anon_sym_starts_DASHwith2] = ACTIONS(2012), + [anon_sym_ends_DASHwith2] = ACTIONS(2012), + [anon_sym_EQ_EQ2] = ACTIONS(2012), + [anon_sym_BANG_EQ2] = ACTIONS(2012), + [anon_sym_LT2] = ACTIONS(2010), + [anon_sym_LT_EQ2] = ACTIONS(2012), + [anon_sym_GT_EQ2] = ACTIONS(2012), + [anon_sym_EQ_TILDE2] = ACTIONS(2012), + [anon_sym_BANG_TILDE2] = ACTIONS(2012), + [anon_sym_STAR_STAR2] = ACTIONS(2012), + [anon_sym_PLUS_PLUS2] = ACTIONS(2012), + [anon_sym_SLASH2] = ACTIONS(2010), + [anon_sym_mod2] = ACTIONS(2012), + [anon_sym_SLASH_SLASH2] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2010), + [anon_sym_bit_DASHshl2] = ACTIONS(2012), + [anon_sym_bit_DASHshr2] = ACTIONS(2012), + [anon_sym_bit_DASHand2] = ACTIONS(2012), + [anon_sym_bit_DASHxor2] = ACTIONS(2012), + [anon_sym_bit_DASHor2] = ACTIONS(2012), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2010), + [anon_sym_out_GT] = ACTIONS(2010), + [anon_sym_e_GT] = ACTIONS(2010), + [anon_sym_o_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT] = ACTIONS(2010), + [anon_sym_err_GT_GT] = ACTIONS(2012), + [anon_sym_out_GT_GT] = ACTIONS(2012), + [anon_sym_e_GT_GT] = ACTIONS(2012), + [anon_sym_o_GT_GT] = ACTIONS(2012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(255), }, [1599] = { - [sym__expr_parenthesized_immediate] = STATE(8105), [sym_comment] = STATE(1599), - [sym__newline] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4926), - [anon_sym_err_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_GT_PIPE] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_DOLLAR] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_DASH2] = ACTIONS(4928), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), - [anon_sym_DOT_DOT_LT] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [aux_sym__val_number_decimal_token1] = ACTIONS(4928), - [aux_sym__val_number_decimal_token2] = ACTIONS(4926), - [aux_sym__val_number_decimal_token3] = ACTIONS(4926), - [aux_sym__val_number_decimal_token4] = ACTIONS(4926), - [aux_sym__val_number_token1] = ACTIONS(4926), - [aux_sym__val_number_token2] = ACTIONS(4926), - [aux_sym__val_number_token3] = ACTIONS(4926), - [aux_sym__val_number_token4] = ACTIONS(4926), - [aux_sym__val_number_token5] = ACTIONS(4926), - [aux_sym__val_number_token6] = ACTIONS(4926), - [anon_sym_0b] = ACTIONS(4928), - [anon_sym_0o] = ACTIONS(4928), - [anon_sym_0x] = ACTIONS(4928), - [sym_val_date] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(4926), - [sym__str_single_quotes] = ACTIONS(4926), - [sym__str_back_ticks] = ACTIONS(4926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), - [anon_sym_err_GT] = ACTIONS(4928), - [anon_sym_out_GT] = ACTIONS(4928), - [anon_sym_e_GT] = ACTIONS(4928), - [anon_sym_o_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT] = ACTIONS(4928), - [anon_sym_err_GT_GT] = ACTIONS(4926), - [anon_sym_out_GT_GT] = ACTIONS(4926), - [anon_sym_e_GT_GT] = ACTIONS(4926), - [anon_sym_o_GT_GT] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), - [aux_sym_unquoted_token1] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4926), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(4973), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1492), + [aux_sym__val_number_token5] = ACTIONS(1492), + [aux_sym__val_number_token6] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1490), + [anon_sym_0o] = ACTIONS(1490), + [anon_sym_0x] = ACTIONS(1490), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, [1600] = { + [sym_cell_path] = STATE(2077), + [sym_path] = STATE(1909), [sym_comment] = STATE(1600), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_EQ_GT] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2066), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2066), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2066), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(255), }, [1601] = { + [sym_cell_path] = STATE(2078), + [sym_path] = STATE(1909), [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2274), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), - [anon_sym_DOT_DOT_LT] = ACTIONS(2276), - [anon_sym_null] = ACTIONS(2276), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [aux_sym__val_number_token4] = ACTIONS(2276), - [aux_sym__val_number_token5] = ACTIONS(2276), - [aux_sym__val_number_token6] = ACTIONS(2276), - [anon_sym_0b] = ACTIONS(2272), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2276), - [sym__str_back_ticks] = ACTIONS(2276), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [aux_sym_unquoted_token1] = ACTIONS(2272), - [aux_sym_unquoted_token2] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2276), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_GT2] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_EQ_GT] = ACTIONS(2072), + [anon_sym_STAR2] = ACTIONS(2070), + [anon_sym_and2] = ACTIONS(2072), + [anon_sym_xor2] = ACTIONS(2072), + [anon_sym_or2] = ACTIONS(2072), + [anon_sym_not_DASHin2] = ACTIONS(2072), + [anon_sym_starts_DASHwith2] = ACTIONS(2072), + [anon_sym_ends_DASHwith2] = ACTIONS(2072), + [anon_sym_EQ_EQ2] = ACTIONS(2072), + [anon_sym_BANG_EQ2] = ACTIONS(2072), + [anon_sym_LT2] = ACTIONS(2070), + [anon_sym_LT_EQ2] = ACTIONS(2072), + [anon_sym_GT_EQ2] = ACTIONS(2072), + [anon_sym_EQ_TILDE2] = ACTIONS(2072), + [anon_sym_BANG_TILDE2] = ACTIONS(2072), + [anon_sym_STAR_STAR2] = ACTIONS(2072), + [anon_sym_PLUS_PLUS2] = ACTIONS(2072), + [anon_sym_SLASH2] = ACTIONS(2070), + [anon_sym_mod2] = ACTIONS(2072), + [anon_sym_SLASH_SLASH2] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_bit_DASHshl2] = ACTIONS(2072), + [anon_sym_bit_DASHshr2] = ACTIONS(2072), + [anon_sym_bit_DASHand2] = ACTIONS(2072), + [anon_sym_bit_DASHxor2] = ACTIONS(2072), + [anon_sym_bit_DASHor2] = ACTIONS(2072), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2070), + [anon_sym_out_GT] = ACTIONS(2070), + [anon_sym_e_GT] = ACTIONS(2070), + [anon_sym_o_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT] = ACTIONS(2070), + [anon_sym_err_GT_GT] = ACTIONS(2072), + [anon_sym_out_GT_GT] = ACTIONS(2072), + [anon_sym_e_GT_GT] = ACTIONS(2072), + [anon_sym_o_GT_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(255), }, [1602] = { [sym_comment] = STATE(1602), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_long_flag_identifier] = ACTIONS(4975), + [sym__newline] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_err_GT_PIPE] = ACTIONS(4977), + [anon_sym_out_GT_PIPE] = ACTIONS(4977), + [anon_sym_e_GT_PIPE] = ACTIONS(4977), + [anon_sym_o_GT_PIPE] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4977), + [anon_sym_DOLLAR] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH2] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4977), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4977), + [anon_sym_DOT_DOT_LT] = ACTIONS(4977), + [anon_sym_null] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4979), + [anon_sym_false] = ACTIONS(4979), + [aux_sym__val_number_decimal_token1] = ACTIONS(4979), + [aux_sym__val_number_decimal_token2] = ACTIONS(4977), + [aux_sym__val_number_decimal_token3] = ACTIONS(4977), + [aux_sym__val_number_decimal_token4] = ACTIONS(4977), + [aux_sym__val_number_token1] = ACTIONS(4979), + [aux_sym__val_number_token2] = ACTIONS(4979), + [aux_sym__val_number_token3] = ACTIONS(4979), + [aux_sym__val_number_token4] = ACTIONS(4979), + [aux_sym__val_number_token5] = ACTIONS(4977), + [aux_sym__val_number_token6] = ACTIONS(4979), + [anon_sym_0b] = ACTIONS(4979), + [anon_sym_0o] = ACTIONS(4979), + [anon_sym_0x] = ACTIONS(4979), + [sym_val_date] = ACTIONS(4979), + [anon_sym_DQUOTE] = ACTIONS(4977), + [sym__str_single_quotes] = ACTIONS(4977), + [sym__str_back_ticks] = ACTIONS(4977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4977), + [anon_sym_err_GT] = ACTIONS(4979), + [anon_sym_out_GT] = ACTIONS(4979), + [anon_sym_e_GT] = ACTIONS(4979), + [anon_sym_o_GT] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT] = ACTIONS(4979), + [anon_sym_err_GT_GT] = ACTIONS(4977), + [anon_sym_out_GT_GT] = ACTIONS(4977), + [anon_sym_e_GT_GT] = ACTIONS(4977), + [anon_sym_o_GT_GT] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4977), + [anon_sym_EQ2] = ACTIONS(4981), + [aux_sym_unquoted_token1] = ACTIONS(4979), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4977), }, [1603] = { [sym_comment] = STATE(1603), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [aux_sym_unquoted_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4875), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), }, [1604] = { [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(4955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4957), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4957), + [anon_sym_null] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1540), + [aux_sym__val_number_token5] = ACTIONS(1540), + [aux_sym__val_number_token6] = ACTIONS(1540), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1540), }, [1605] = { - [sym__expr_parenthesized_immediate] = STATE(8105), [sym_comment] = STATE(1605), - [sym__newline] = ACTIONS(4932), - [anon_sym_SEMI] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4932), - [anon_sym_err_GT_PIPE] = ACTIONS(4932), - [anon_sym_out_GT_PIPE] = ACTIONS(4932), - [anon_sym_e_GT_PIPE] = ACTIONS(4932), - [anon_sym_o_GT_PIPE] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4934), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_DOLLAR] = ACTIONS(4934), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_DASH2] = ACTIONS(4934), - [anon_sym_LBRACE] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), - [anon_sym_DOT_DOT_LT] = ACTIONS(4932), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [aux_sym__val_number_decimal_token1] = ACTIONS(4934), - [aux_sym__val_number_decimal_token2] = ACTIONS(4932), - [aux_sym__val_number_decimal_token3] = ACTIONS(4932), - [aux_sym__val_number_decimal_token4] = ACTIONS(4932), - [aux_sym__val_number_token1] = ACTIONS(4932), - [aux_sym__val_number_token2] = ACTIONS(4932), - [aux_sym__val_number_token3] = ACTIONS(4932), - [aux_sym__val_number_token4] = ACTIONS(4932), - [aux_sym__val_number_token5] = ACTIONS(4932), - [aux_sym__val_number_token6] = ACTIONS(4932), - [anon_sym_0b] = ACTIONS(4934), - [anon_sym_0o] = ACTIONS(4934), - [anon_sym_0x] = ACTIONS(4934), - [sym_val_date] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4932), - [sym__str_single_quotes] = ACTIONS(4932), - [sym__str_back_ticks] = ACTIONS(4932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_err_GT] = ACTIONS(4934), - [anon_sym_out_GT] = ACTIONS(4934), - [anon_sym_e_GT] = ACTIONS(4934), - [anon_sym_o_GT] = ACTIONS(4934), - [anon_sym_err_PLUSout_GT] = ACTIONS(4934), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4934), - [anon_sym_o_PLUSe_GT] = ACTIONS(4934), - [anon_sym_e_PLUSo_GT] = ACTIONS(4934), - [anon_sym_err_GT_GT] = ACTIONS(4932), - [anon_sym_out_GT_GT] = ACTIONS(4932), - [anon_sym_e_GT_GT] = ACTIONS(4932), - [anon_sym_o_GT_GT] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4932), - [aux_sym_unquoted_token1] = ACTIONS(4934), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4932), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1606] = { - [sym__expr_parenthesized_immediate] = STATE(8105), [sym_comment] = STATE(1606), - [sym__newline] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_PIPE] = ACTIONS(4936), - [anon_sym_err_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_GT_PIPE] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4936), - [anon_sym_DOLLAR] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4936), - [anon_sym_DASH2] = ACTIONS(4938), - [anon_sym_LBRACE] = ACTIONS(4936), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(4936), - [anon_sym_true] = ACTIONS(4936), - [anon_sym_false] = ACTIONS(4936), - [aux_sym__val_number_decimal_token1] = ACTIONS(4938), - [aux_sym__val_number_decimal_token2] = ACTIONS(4936), - [aux_sym__val_number_decimal_token3] = ACTIONS(4936), - [aux_sym__val_number_decimal_token4] = ACTIONS(4936), - [aux_sym__val_number_token1] = ACTIONS(4936), - [aux_sym__val_number_token2] = ACTIONS(4936), - [aux_sym__val_number_token3] = ACTIONS(4936), - [aux_sym__val_number_token4] = ACTIONS(4936), - [aux_sym__val_number_token5] = ACTIONS(4936), - [aux_sym__val_number_token6] = ACTIONS(4936), - [anon_sym_0b] = ACTIONS(4938), - [anon_sym_0o] = ACTIONS(4938), - [anon_sym_0x] = ACTIONS(4938), - [sym_val_date] = ACTIONS(4936), - [anon_sym_DQUOTE] = ACTIONS(4936), - [sym__str_single_quotes] = ACTIONS(4936), - [sym__str_back_ticks] = ACTIONS(4936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), - [anon_sym_err_GT] = ACTIONS(4938), - [anon_sym_out_GT] = ACTIONS(4938), - [anon_sym_e_GT] = ACTIONS(4938), - [anon_sym_o_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT] = ACTIONS(4938), - [anon_sym_err_GT_GT] = ACTIONS(4936), - [anon_sym_out_GT_GT] = ACTIONS(4936), - [anon_sym_e_GT_GT] = ACTIONS(4936), - [anon_sym_o_GT_GT] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), - [aux_sym_unquoted_token1] = ACTIONS(4938), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4936), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4985), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1607] = { + [sym_cell_path] = STATE(2035), + [sym_path] = STATE(1909), [sym_comment] = STATE(1607), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4942), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_err_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_GT_PIPE] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_GT2] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_in2] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_EQ_GT] = ACTIONS(1976), + [anon_sym_STAR2] = ACTIONS(1972), + [anon_sym_and2] = ACTIONS(1976), + [anon_sym_xor2] = ACTIONS(1976), + [anon_sym_or2] = ACTIONS(1976), + [anon_sym_not_DASHin2] = ACTIONS(1976), + [anon_sym_starts_DASHwith2] = ACTIONS(1976), + [anon_sym_ends_DASHwith2] = ACTIONS(1976), + [anon_sym_EQ_EQ2] = ACTIONS(1976), + [anon_sym_BANG_EQ2] = ACTIONS(1976), + [anon_sym_LT2] = ACTIONS(1972), + [anon_sym_LT_EQ2] = ACTIONS(1976), + [anon_sym_GT_EQ2] = ACTIONS(1976), + [anon_sym_EQ_TILDE2] = ACTIONS(1976), + [anon_sym_BANG_TILDE2] = ACTIONS(1976), + [anon_sym_STAR_STAR2] = ACTIONS(1976), + [anon_sym_PLUS_PLUS2] = ACTIONS(1976), + [anon_sym_SLASH2] = ACTIONS(1972), + [anon_sym_mod2] = ACTIONS(1976), + [anon_sym_SLASH_SLASH2] = ACTIONS(1976), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_bit_DASHshl2] = ACTIONS(1976), + [anon_sym_bit_DASHshr2] = ACTIONS(1976), + [anon_sym_bit_DASHand2] = ACTIONS(1976), + [anon_sym_bit_DASHxor2] = ACTIONS(1976), + [anon_sym_bit_DASHor2] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1976), + [anon_sym_out_GT_GT] = ACTIONS(1976), + [anon_sym_e_GT_GT] = ACTIONS(1976), + [anon_sym_o_GT_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(255), }, [1608] = { - [sym_cell_path] = STATE(1992), - [sym_path] = STATE(1882), [sym_comment] = STATE(1608), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_GT2] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_STAR2] = ACTIONS(1915), - [anon_sym_and2] = ACTIONS(1917), - [anon_sym_xor2] = ACTIONS(1917), - [anon_sym_or2] = ACTIONS(1917), - [anon_sym_not_DASHin2] = ACTIONS(1917), - [anon_sym_starts_DASHwith2] = ACTIONS(1917), - [anon_sym_ends_DASHwith2] = ACTIONS(1917), - [anon_sym_EQ_EQ2] = ACTIONS(1917), - [anon_sym_BANG_EQ2] = ACTIONS(1917), - [anon_sym_LT2] = ACTIONS(1915), - [anon_sym_LT_EQ2] = ACTIONS(1917), - [anon_sym_GT_EQ2] = ACTIONS(1917), - [anon_sym_EQ_TILDE2] = ACTIONS(1917), - [anon_sym_BANG_TILDE2] = ACTIONS(1917), - [anon_sym_STAR_STAR2] = ACTIONS(1917), - [anon_sym_PLUS_PLUS2] = ACTIONS(1917), - [anon_sym_SLASH2] = ACTIONS(1915), - [anon_sym_mod2] = ACTIONS(1917), - [anon_sym_SLASH_SLASH2] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1915), - [anon_sym_bit_DASHshl2] = ACTIONS(1917), - [anon_sym_bit_DASHshr2] = ACTIONS(1917), - [anon_sym_bit_DASHand2] = ACTIONS(1917), - [anon_sym_bit_DASHxor2] = ACTIONS(1917), - [anon_sym_bit_DASHor2] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1915), - [anon_sym_out_GT] = ACTIONS(1915), - [anon_sym_e_GT] = ACTIONS(1915), - [anon_sym_o_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT] = ACTIONS(1915), - [anon_sym_err_GT_GT] = ACTIONS(1917), - [anon_sym_out_GT_GT] = ACTIONS(1917), - [anon_sym_e_GT_GT] = ACTIONS(1917), - [anon_sym_o_GT_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1609] = { + [sym_cell_path] = STATE(1997), + [sym_path] = STATE(1921), [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_DOT_DOT2] = ACTIONS(4944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4946), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), - [anon_sym_0b] = ACTIONS(2146), - [anon_sym_0o] = ACTIONS(2146), - [anon_sym_0x] = ACTIONS(2146), - [sym_val_date] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), - [aux_sym_unquoted_token1] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2152), + [aux_sym_cell_path_repeat1] = STATE(1697), + [sym__newline] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_in2] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1886), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1886), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1886), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(4987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [aux_sym_record_entry_token1] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), }, [1610] = { - [sym_cell_path] = STATE(2010), - [sym_path] = STATE(1882), [sym_comment] = STATE(1610), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_err_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_GT_PIPE] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_GT2] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_in2] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_EQ_GT] = ACTIONS(1929), - [anon_sym_STAR2] = ACTIONS(1927), - [anon_sym_and2] = ACTIONS(1929), - [anon_sym_xor2] = ACTIONS(1929), - [anon_sym_or2] = ACTIONS(1929), - [anon_sym_not_DASHin2] = ACTIONS(1929), - [anon_sym_starts_DASHwith2] = ACTIONS(1929), - [anon_sym_ends_DASHwith2] = ACTIONS(1929), - [anon_sym_EQ_EQ2] = ACTIONS(1929), - [anon_sym_BANG_EQ2] = ACTIONS(1929), - [anon_sym_LT2] = ACTIONS(1927), - [anon_sym_LT_EQ2] = ACTIONS(1929), - [anon_sym_GT_EQ2] = ACTIONS(1929), - [anon_sym_EQ_TILDE2] = ACTIONS(1929), - [anon_sym_BANG_TILDE2] = ACTIONS(1929), - [anon_sym_STAR_STAR2] = ACTIONS(1929), - [anon_sym_PLUS_PLUS2] = ACTIONS(1929), - [anon_sym_SLASH2] = ACTIONS(1927), - [anon_sym_mod2] = ACTIONS(1929), - [anon_sym_SLASH_SLASH2] = ACTIONS(1929), - [anon_sym_PLUS2] = ACTIONS(1927), - [anon_sym_bit_DASHshl2] = ACTIONS(1929), - [anon_sym_bit_DASHshr2] = ACTIONS(1929), - [anon_sym_bit_DASHand2] = ACTIONS(1929), - [anon_sym_bit_DASHxor2] = ACTIONS(1929), - [anon_sym_bit_DASHor2] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1927), - [anon_sym_out_GT] = ACTIONS(1927), - [anon_sym_e_GT] = ACTIONS(1927), - [anon_sym_o_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT] = ACTIONS(1927), - [anon_sym_err_GT_GT] = ACTIONS(1929), - [anon_sym_out_GT_GT] = ACTIONS(1929), - [anon_sym_e_GT_GT] = ACTIONS(1929), - [anon_sym_o_GT_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1611] = { - [sym_cell_path] = STATE(2011), - [sym_path] = STATE(1882), + [sym_cell_path] = STATE(2042), + [sym_path] = STATE(1909), [sym_comment] = STATE(1611), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_err_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_GT_PIPE] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_GT2] = ACTIONS(1942), - [anon_sym_DASH2] = ACTIONS(1944), - [anon_sym_in2] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_STAR2] = ACTIONS(1942), - [anon_sym_and2] = ACTIONS(1944), - [anon_sym_xor2] = ACTIONS(1944), - [anon_sym_or2] = ACTIONS(1944), - [anon_sym_not_DASHin2] = ACTIONS(1944), - [anon_sym_starts_DASHwith2] = ACTIONS(1944), - [anon_sym_ends_DASHwith2] = ACTIONS(1944), - [anon_sym_EQ_EQ2] = ACTIONS(1944), - [anon_sym_BANG_EQ2] = ACTIONS(1944), - [anon_sym_LT2] = ACTIONS(1942), - [anon_sym_LT_EQ2] = ACTIONS(1944), - [anon_sym_GT_EQ2] = ACTIONS(1944), - [anon_sym_EQ_TILDE2] = ACTIONS(1944), - [anon_sym_BANG_TILDE2] = ACTIONS(1944), - [anon_sym_STAR_STAR2] = ACTIONS(1944), - [anon_sym_PLUS_PLUS2] = ACTIONS(1944), - [anon_sym_SLASH2] = ACTIONS(1942), - [anon_sym_mod2] = ACTIONS(1944), - [anon_sym_SLASH_SLASH2] = ACTIONS(1944), - [anon_sym_PLUS2] = ACTIONS(1942), - [anon_sym_bit_DASHshl2] = ACTIONS(1944), - [anon_sym_bit_DASHshr2] = ACTIONS(1944), - [anon_sym_bit_DASHand2] = ACTIONS(1944), - [anon_sym_bit_DASHxor2] = ACTIONS(1944), - [anon_sym_bit_DASHor2] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1942), - [anon_sym_out_GT] = ACTIONS(1942), - [anon_sym_e_GT] = ACTIONS(1942), - [anon_sym_o_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT] = ACTIONS(1942), - [anon_sym_err_GT_GT] = ACTIONS(1944), - [anon_sym_out_GT_GT] = ACTIONS(1944), - [anon_sym_e_GT_GT] = ACTIONS(1944), - [anon_sym_o_GT_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_err_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_GT_PIPE] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_GT2] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2016), + [anon_sym_in2] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_EQ_GT] = ACTIONS(2016), + [anon_sym_STAR2] = ACTIONS(2014), + [anon_sym_and2] = ACTIONS(2016), + [anon_sym_xor2] = ACTIONS(2016), + [anon_sym_or2] = ACTIONS(2016), + [anon_sym_not_DASHin2] = ACTIONS(2016), + [anon_sym_starts_DASHwith2] = ACTIONS(2016), + [anon_sym_ends_DASHwith2] = ACTIONS(2016), + [anon_sym_EQ_EQ2] = ACTIONS(2016), + [anon_sym_BANG_EQ2] = ACTIONS(2016), + [anon_sym_LT2] = ACTIONS(2014), + [anon_sym_LT_EQ2] = ACTIONS(2016), + [anon_sym_GT_EQ2] = ACTIONS(2016), + [anon_sym_EQ_TILDE2] = ACTIONS(2016), + [anon_sym_BANG_TILDE2] = ACTIONS(2016), + [anon_sym_STAR_STAR2] = ACTIONS(2016), + [anon_sym_PLUS_PLUS2] = ACTIONS(2016), + [anon_sym_SLASH2] = ACTIONS(2014), + [anon_sym_mod2] = ACTIONS(2016), + [anon_sym_SLASH_SLASH2] = ACTIONS(2016), + [anon_sym_PLUS2] = ACTIONS(2014), + [anon_sym_bit_DASHshl2] = ACTIONS(2016), + [anon_sym_bit_DASHshr2] = ACTIONS(2016), + [anon_sym_bit_DASHand2] = ACTIONS(2016), + [anon_sym_bit_DASHxor2] = ACTIONS(2016), + [anon_sym_bit_DASHor2] = ACTIONS(2016), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2014), + [anon_sym_out_GT] = ACTIONS(2014), + [anon_sym_e_GT] = ACTIONS(2014), + [anon_sym_o_GT] = ACTIONS(2014), + [anon_sym_err_PLUSout_GT] = ACTIONS(2014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2014), + [anon_sym_o_PLUSe_GT] = ACTIONS(2014), + [anon_sym_e_PLUSo_GT] = ACTIONS(2014), + [anon_sym_err_GT_GT] = ACTIONS(2016), + [anon_sym_out_GT_GT] = ACTIONS(2016), + [anon_sym_e_GT_GT] = ACTIONS(2016), + [anon_sym_o_GT_GT] = ACTIONS(2016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(255), }, [1612] = { [sym_comment] = STATE(1612), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2238), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_0b] = ACTIONS(2238), - [anon_sym_0o] = ACTIONS(2238), - [anon_sym_0x] = ACTIONS(2238), - [sym_val_date] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2238), - [anon_sym_out_GT] = ACTIONS(2238), - [anon_sym_e_GT] = ACTIONS(2238), - [anon_sym_o_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT] = ACTIONS(2238), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [aux_sym_unquoted_token1] = ACTIONS(2238), - [aux_sym_unquoted_token4] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [sym__newline] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_err_GT_PIPE] = ACTIONS(2335), + [anon_sym_out_GT_PIPE] = ACTIONS(2335), + [anon_sym_e_GT_PIPE] = ACTIONS(2335), + [anon_sym_o_GT_PIPE] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_null] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2335), + [aux_sym__val_number_decimal_token3] = ACTIONS(2335), + [aux_sym__val_number_decimal_token4] = ACTIONS(2335), + [aux_sym__val_number_token1] = ACTIONS(2335), + [aux_sym__val_number_token2] = ACTIONS(2335), + [aux_sym__val_number_token3] = ACTIONS(2335), + [aux_sym__val_number_token4] = ACTIONS(2335), + [aux_sym__val_number_token5] = ACTIONS(2335), + [aux_sym__val_number_token6] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2333), + [anon_sym_0o] = ACTIONS(2333), + [anon_sym_0x] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_err_GT] = ACTIONS(2333), + [anon_sym_out_GT] = ACTIONS(2333), + [anon_sym_e_GT] = ACTIONS(2333), + [anon_sym_o_GT] = ACTIONS(2333), + [anon_sym_err_PLUSout_GT] = ACTIONS(2333), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2333), + [anon_sym_o_PLUSe_GT] = ACTIONS(2333), + [anon_sym_e_PLUSo_GT] = ACTIONS(2333), + [anon_sym_err_GT_GT] = ACTIONS(2335), + [anon_sym_out_GT_GT] = ACTIONS(2335), + [anon_sym_e_GT_GT] = ACTIONS(2335), + [anon_sym_o_GT_GT] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2335), + [aux_sym_unquoted_token1] = ACTIONS(2333), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2335), }, [1613] = { - [sym_cell_path] = STATE(2076), - [sym_path] = STATE(1882), [sym_comment] = STATE(1613), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_GT2] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1881), - [anon_sym_in2] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_EQ_GT] = ACTIONS(1881), - [anon_sym_STAR2] = ACTIONS(1879), - [anon_sym_and2] = ACTIONS(1881), - [anon_sym_xor2] = ACTIONS(1881), - [anon_sym_or2] = ACTIONS(1881), - [anon_sym_not_DASHin2] = ACTIONS(1881), - [anon_sym_starts_DASHwith2] = ACTIONS(1881), - [anon_sym_ends_DASHwith2] = ACTIONS(1881), - [anon_sym_EQ_EQ2] = ACTIONS(1881), - [anon_sym_BANG_EQ2] = ACTIONS(1881), - [anon_sym_LT2] = ACTIONS(1879), - [anon_sym_LT_EQ2] = ACTIONS(1881), - [anon_sym_GT_EQ2] = ACTIONS(1881), - [anon_sym_EQ_TILDE2] = ACTIONS(1881), - [anon_sym_BANG_TILDE2] = ACTIONS(1881), - [anon_sym_STAR_STAR2] = ACTIONS(1881), - [anon_sym_PLUS_PLUS2] = ACTIONS(1881), - [anon_sym_SLASH2] = ACTIONS(1879), - [anon_sym_mod2] = ACTIONS(1881), - [anon_sym_SLASH_SLASH2] = ACTIONS(1881), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_bit_DASHshl2] = ACTIONS(1881), - [anon_sym_bit_DASHshr2] = ACTIONS(1881), - [anon_sym_bit_DASHand2] = ACTIONS(1881), - [anon_sym_bit_DASHxor2] = ACTIONS(1881), - [anon_sym_bit_DASHor2] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_err_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_GT_PIPE] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1958), + [anon_sym_DOT_DOT_LT] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1958), + [aux_sym__val_number_token5] = ACTIONS(1958), + [aux_sym__val_number_token6] = ACTIONS(1958), + [anon_sym_0b] = ACTIONS(1950), + [anon_sym_0o] = ACTIONS(1950), + [anon_sym_0x] = ACTIONS(1950), + [sym_val_date] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1950), + [anon_sym_out_GT] = ACTIONS(1950), + [anon_sym_e_GT] = ACTIONS(1950), + [anon_sym_o_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT] = ACTIONS(1950), + [anon_sym_err_GT_GT] = ACTIONS(1958), + [anon_sym_out_GT_GT] = ACTIONS(1958), + [anon_sym_e_GT_GT] = ACTIONS(1958), + [anon_sym_o_GT_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1958), + [aux_sym_unquoted_token1] = ACTIONS(1950), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), }, [1614] = { - [sym_cell_path] = STATE(2083), - [sym_path] = STATE(1882), + [sym_path] = STATE(1775), [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_GT2] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_in2] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_STAR2] = ACTIONS(1883), - [anon_sym_and2] = ACTIONS(1885), - [anon_sym_xor2] = ACTIONS(1885), - [anon_sym_or2] = ACTIONS(1885), - [anon_sym_not_DASHin2] = ACTIONS(1885), - [anon_sym_starts_DASHwith2] = ACTIONS(1885), - [anon_sym_ends_DASHwith2] = ACTIONS(1885), - [anon_sym_EQ_EQ2] = ACTIONS(1885), - [anon_sym_BANG_EQ2] = ACTIONS(1885), - [anon_sym_LT2] = ACTIONS(1883), - [anon_sym_LT_EQ2] = ACTIONS(1885), - [anon_sym_GT_EQ2] = ACTIONS(1885), - [anon_sym_EQ_TILDE2] = ACTIONS(1885), - [anon_sym_BANG_TILDE2] = ACTIONS(1885), - [anon_sym_STAR_STAR2] = ACTIONS(1885), - [anon_sym_PLUS_PLUS2] = ACTIONS(1885), - [anon_sym_SLASH2] = ACTIONS(1883), - [anon_sym_mod2] = ACTIONS(1885), - [anon_sym_SLASH_SLASH2] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_bit_DASHshl2] = ACTIONS(1885), - [anon_sym_bit_DASHshr2] = ACTIONS(1885), - [anon_sym_bit_DASHand2] = ACTIONS(1885), - [anon_sym_bit_DASHxor2] = ACTIONS(1885), - [anon_sym_bit_DASHor2] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1481), + [aux_sym__val_number_decimal_token3] = ACTIONS(1481), + [aux_sym__val_number_decimal_token4] = ACTIONS(1481), + [aux_sym__val_number_token1] = ACTIONS(1481), + [aux_sym__val_number_token2] = ACTIONS(1481), + [aux_sym__val_number_token3] = ACTIONS(1481), + [aux_sym__val_number_token4] = ACTIONS(1481), + [aux_sym__val_number_token5] = ACTIONS(1481), + [aux_sym__val_number_token6] = ACTIONS(1481), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym__str_single_quotes] = ACTIONS(1481), + [sym__str_back_ticks] = ACTIONS(1481), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1481), }, [1615] = { + [sym_path] = STATE(1650), [sym_comment] = STATE(1615), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_EQ_GT] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1577), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1481), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1481), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1616] = { - [sym_cell_path] = STATE(2015), - [sym_path] = STATE(1882), [sym_comment] = STATE(1616), - [aux_sym_cell_path_repeat1] = STATE(1690), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym__newline] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_err_GT_PIPE] = ACTIONS(2183), + [anon_sym_out_GT_PIPE] = ACTIONS(2183), + [anon_sym_e_GT_PIPE] = ACTIONS(2183), + [anon_sym_o_GT_PIPE] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT2] = ACTIONS(4989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2177), + [anon_sym_DOT_DOT_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4991), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4991), + [anon_sym_null] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2177), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_0b] = ACTIONS(2177), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2183), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2183), + [anon_sym_err_GT] = ACTIONS(2177), + [anon_sym_out_GT] = ACTIONS(2177), + [anon_sym_e_GT] = ACTIONS(2177), + [anon_sym_o_GT] = ACTIONS(2177), + [anon_sym_err_PLUSout_GT] = ACTIONS(2177), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2177), + [anon_sym_o_PLUSe_GT] = ACTIONS(2177), + [anon_sym_e_PLUSo_GT] = ACTIONS(2177), + [anon_sym_err_GT_GT] = ACTIONS(2183), + [anon_sym_out_GT_GT] = ACTIONS(2183), + [anon_sym_e_GT_GT] = ACTIONS(2183), + [anon_sym_o_GT_GT] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2183), + [aux_sym_unquoted_token1] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2183), + }, + [1617] = { + [sym_path] = STATE(1775), + [sym_comment] = STATE(1617), + [aux_sym_cell_path_repeat1] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1485), + [aux_sym__val_number_decimal_token3] = ACTIONS(1485), + [aux_sym__val_number_decimal_token4] = ACTIONS(1485), + [aux_sym__val_number_token1] = ACTIONS(1485), + [aux_sym__val_number_token2] = ACTIONS(1485), + [aux_sym__val_number_token3] = ACTIONS(1485), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1483), + [anon_sym_0o] = ACTIONS(1483), + [anon_sym_0x] = ACTIONS(1483), + [sym_val_date] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym__str_single_quotes] = ACTIONS(1485), + [sym__str_back_ticks] = ACTIONS(1485), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [aux_sym_unquoted_token1] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1485), + }, + [1618] = { + [sym_comment] = STATE(1618), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym__newline] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_err_GT_PIPE] = ACTIONS(2191), + [anon_sym_out_GT_PIPE] = ACTIONS(2191), + [anon_sym_e_GT_PIPE] = ACTIONS(2191), + [anon_sym_o_GT_PIPE] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_DASH2] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_DOT_DOT2] = ACTIONS(4996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4998), + [anon_sym_null] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [aux_sym__val_number_decimal_token1] = ACTIONS(2185), + [aux_sym__val_number_decimal_token2] = ACTIONS(2191), + [aux_sym__val_number_decimal_token3] = ACTIONS(2191), + [aux_sym__val_number_decimal_token4] = ACTIONS(2191), + [aux_sym__val_number_token1] = ACTIONS(2191), + [aux_sym__val_number_token2] = ACTIONS(2191), + [aux_sym__val_number_token3] = ACTIONS(2191), + [aux_sym__val_number_token4] = ACTIONS(2191), + [aux_sym__val_number_token5] = ACTIONS(2191), + [aux_sym__val_number_token6] = ACTIONS(2191), + [anon_sym_0b] = ACTIONS(2185), + [anon_sym_0o] = ACTIONS(2185), + [anon_sym_0x] = ACTIONS(2185), + [sym_val_date] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [sym__str_single_quotes] = ACTIONS(2191), + [sym__str_back_ticks] = ACTIONS(2191), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2191), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2191), + [anon_sym_err_GT] = ACTIONS(2185), + [anon_sym_out_GT] = ACTIONS(2185), + [anon_sym_e_GT] = ACTIONS(2185), + [anon_sym_o_GT] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT] = ACTIONS(2185), + [anon_sym_err_GT_GT] = ACTIONS(2191), + [anon_sym_out_GT_GT] = ACTIONS(2191), + [anon_sym_e_GT_GT] = ACTIONS(2191), + [anon_sym_o_GT_GT] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2191), + [aux_sym_unquoted_token1] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2191), + }, + [1619] = { + [sym_comment] = STATE(1619), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [aux_sym_unquoted_token4] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1540), + }, + [1620] = { + [sym_comment] = STATE(1620), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1621] = { + [sym_comment] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1822), + [anon_sym_in2] = ACTIONS(1822), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1822), + [anon_sym_xor2] = ACTIONS(1822), + [anon_sym_or2] = ACTIONS(1822), + [anon_sym_not_DASHin2] = ACTIONS(1822), + [anon_sym_starts_DASHwith2] = ACTIONS(1822), + [anon_sym_ends_DASHwith2] = ACTIONS(1822), + [anon_sym_EQ_EQ2] = ACTIONS(1822), + [anon_sym_BANG_EQ2] = ACTIONS(1822), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1822), + [anon_sym_GT_EQ2] = ACTIONS(1822), + [anon_sym_EQ_TILDE2] = ACTIONS(1822), + [anon_sym_BANG_TILDE2] = ACTIONS(1822), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_STAR_STAR2] = ACTIONS(1822), + [anon_sym_PLUS_PLUS2] = ACTIONS(1822), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1822), + [anon_sym_SLASH_SLASH2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1822), + [anon_sym_bit_DASHshr2] = ACTIONS(1822), + [anon_sym_bit_DASHand2] = ACTIONS(1822), + [anon_sym_bit_DASHxor2] = ACTIONS(1822), + [anon_sym_bit_DASHor2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [aux_sym__immediate_decimal_token2] = ACTIONS(5000), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + }, + [1622] = { + [sym_comment] = STATE(1622), + [ts_builtin_sym_end] = ACTIONS(1558), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_DASH2] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_null] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [aux_sym__val_number_decimal_token1] = ACTIONS(1556), + [aux_sym__val_number_decimal_token2] = ACTIONS(1558), + [aux_sym__val_number_decimal_token3] = ACTIONS(1558), + [aux_sym__val_number_decimal_token4] = ACTIONS(1558), + [aux_sym__val_number_token1] = ACTIONS(1558), + [aux_sym__val_number_token2] = ACTIONS(1558), + [aux_sym__val_number_token3] = ACTIONS(1558), + [aux_sym__val_number_token4] = ACTIONS(1558), + [aux_sym__val_number_token5] = ACTIONS(1558), + [aux_sym__val_number_token6] = ACTIONS(1558), + [anon_sym_0b] = ACTIONS(1556), + [anon_sym_0o] = ACTIONS(1556), + [anon_sym_0x] = ACTIONS(1556), + [sym_val_date] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym__str_single_quotes] = ACTIONS(1558), + [sym__str_back_ticks] = ACTIONS(1558), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1558), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [aux_sym_unquoted_token1] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1558), + }, + [1623] = { + [sym_comment] = STATE(1623), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(5002), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [1624] = { + [sym_comment] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1625] = { + [sym_cell_path] = STATE(2052), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1625), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_err_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_GT_PIPE] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2020), + [anon_sym_GT2] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_in2] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_EQ_GT] = ACTIONS(2020), + [anon_sym_STAR2] = ACTIONS(2018), + [anon_sym_and2] = ACTIONS(2020), + [anon_sym_xor2] = ACTIONS(2020), + [anon_sym_or2] = ACTIONS(2020), + [anon_sym_not_DASHin2] = ACTIONS(2020), + [anon_sym_starts_DASHwith2] = ACTIONS(2020), + [anon_sym_ends_DASHwith2] = ACTIONS(2020), + [anon_sym_EQ_EQ2] = ACTIONS(2020), + [anon_sym_BANG_EQ2] = ACTIONS(2020), + [anon_sym_LT2] = ACTIONS(2018), + [anon_sym_LT_EQ2] = ACTIONS(2020), + [anon_sym_GT_EQ2] = ACTIONS(2020), + [anon_sym_EQ_TILDE2] = ACTIONS(2020), + [anon_sym_BANG_TILDE2] = ACTIONS(2020), + [anon_sym_STAR_STAR2] = ACTIONS(2020), + [anon_sym_PLUS_PLUS2] = ACTIONS(2020), + [anon_sym_SLASH2] = ACTIONS(2018), + [anon_sym_mod2] = ACTIONS(2020), + [anon_sym_SLASH_SLASH2] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_bit_DASHshl2] = ACTIONS(2020), + [anon_sym_bit_DASHshr2] = ACTIONS(2020), + [anon_sym_bit_DASHand2] = ACTIONS(2020), + [anon_sym_bit_DASHxor2] = ACTIONS(2020), + [anon_sym_bit_DASHor2] = ACTIONS(2020), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2018), + [anon_sym_out_GT] = ACTIONS(2018), + [anon_sym_e_GT] = ACTIONS(2018), + [anon_sym_o_GT] = ACTIONS(2018), + [anon_sym_err_PLUSout_GT] = ACTIONS(2018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2018), + [anon_sym_o_PLUSe_GT] = ACTIONS(2018), + [anon_sym_e_PLUSo_GT] = ACTIONS(2018), + [anon_sym_err_GT_GT] = ACTIONS(2020), + [anon_sym_out_GT_GT] = ACTIONS(2020), + [anon_sym_e_GT_GT] = ACTIONS(2020), + [anon_sym_o_GT_GT] = ACTIONS(2020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(255), + }, + [1626] = { + [sym_comment] = STATE(1626), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT_DOT2] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [1627] = { + [sym_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT2] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1968), + [anon_sym_DOT_DOT_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [1628] = { + [sym_comment] = STATE(1628), + [sym__newline] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_err_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_GT_PIPE] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2337), + [anon_sym_DOT_DOT_LT] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_0b] = ACTIONS(2337), + [anon_sym_0o] = ACTIONS(2337), + [anon_sym_0x] = ACTIONS(2337), + [sym_val_date] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), + [anon_sym_err_GT] = ACTIONS(2337), + [anon_sym_out_GT] = ACTIONS(2337), + [anon_sym_e_GT] = ACTIONS(2337), + [anon_sym_o_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT] = ACTIONS(2337), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [aux_sym_unquoted_token1] = ACTIONS(2337), + [aux_sym_unquoted_token4] = ACTIONS(2343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2341), + }, + [1629] = { + [sym_comment] = STATE(1629), + [sym__newline] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_err_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_GT_PIPE] = ACTIONS(2349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2345), + [anon_sym_DOT_DOT_LT] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [aux_sym__val_number_token4] = ACTIONS(2345), + [aux_sym__val_number_token5] = ACTIONS(2345), + [aux_sym__val_number_token6] = ACTIONS(2345), + [anon_sym_0b] = ACTIONS(2345), + [anon_sym_0o] = ACTIONS(2345), + [anon_sym_0x] = ACTIONS(2345), + [sym_val_date] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [aux_sym_unquoted_token1] = ACTIONS(2345), + [aux_sym_unquoted_token4] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2349), + }, + [1630] = { + [sym_comment] = STATE(1630), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2353), + [anon_sym_DOT_DOT_LT] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2353), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2353), + [aux_sym__val_number_token5] = ACTIONS(2353), + [aux_sym__val_number_token6] = ACTIONS(2353), + [anon_sym_0b] = ACTIONS(2353), + [anon_sym_0o] = ACTIONS(2353), + [anon_sym_0x] = ACTIONS(2353), + [sym_val_date] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2355), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [aux_sym_unquoted_token1] = ACTIONS(2353), + [aux_sym_unquoted_token4] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2355), + }, + [1631] = { + [sym_cell_path] = STATE(2053), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1631), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_err_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_GT_PIPE] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_GT2] = ACTIONS(2022), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_in2] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_STAR2] = ACTIONS(2022), + [anon_sym_and2] = ACTIONS(2024), + [anon_sym_xor2] = ACTIONS(2024), + [anon_sym_or2] = ACTIONS(2024), + [anon_sym_not_DASHin2] = ACTIONS(2024), + [anon_sym_starts_DASHwith2] = ACTIONS(2024), + [anon_sym_ends_DASHwith2] = ACTIONS(2024), + [anon_sym_EQ_EQ2] = ACTIONS(2024), + [anon_sym_BANG_EQ2] = ACTIONS(2024), + [anon_sym_LT2] = ACTIONS(2022), + [anon_sym_LT_EQ2] = ACTIONS(2024), + [anon_sym_GT_EQ2] = ACTIONS(2024), + [anon_sym_EQ_TILDE2] = ACTIONS(2024), + [anon_sym_BANG_TILDE2] = ACTIONS(2024), + [anon_sym_STAR_STAR2] = ACTIONS(2024), + [anon_sym_PLUS_PLUS2] = ACTIONS(2024), + [anon_sym_SLASH2] = ACTIONS(2022), + [anon_sym_mod2] = ACTIONS(2024), + [anon_sym_SLASH_SLASH2] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2022), + [anon_sym_bit_DASHshl2] = ACTIONS(2024), + [anon_sym_bit_DASHshr2] = ACTIONS(2024), + [anon_sym_bit_DASHand2] = ACTIONS(2024), + [anon_sym_bit_DASHxor2] = ACTIONS(2024), + [anon_sym_bit_DASHor2] = ACTIONS(2024), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2022), + [anon_sym_out_GT] = ACTIONS(2022), + [anon_sym_e_GT] = ACTIONS(2022), + [anon_sym_o_GT] = ACTIONS(2022), + [anon_sym_err_PLUSout_GT] = ACTIONS(2022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2022), + [anon_sym_o_PLUSe_GT] = ACTIONS(2022), + [anon_sym_e_PLUSo_GT] = ACTIONS(2022), + [anon_sym_err_GT_GT] = ACTIONS(2024), + [anon_sym_out_GT_GT] = ACTIONS(2024), + [anon_sym_e_GT_GT] = ACTIONS(2024), + [anon_sym_o_GT_GT] = ACTIONS(2024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(255), + }, + [1632] = { + [sym_cell_path] = STATE(2054), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1632), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2028), + [anon_sym_STAR2] = ACTIONS(2026), + [anon_sym_and2] = ACTIONS(2028), + [anon_sym_xor2] = ACTIONS(2028), + [anon_sym_or2] = ACTIONS(2028), + [anon_sym_not_DASHin2] = ACTIONS(2028), + [anon_sym_starts_DASHwith2] = ACTIONS(2028), + [anon_sym_ends_DASHwith2] = ACTIONS(2028), + [anon_sym_EQ_EQ2] = ACTIONS(2028), + [anon_sym_BANG_EQ2] = ACTIONS(2028), + [anon_sym_LT2] = ACTIONS(2026), + [anon_sym_LT_EQ2] = ACTIONS(2028), + [anon_sym_GT_EQ2] = ACTIONS(2028), + [anon_sym_EQ_TILDE2] = ACTIONS(2028), + [anon_sym_BANG_TILDE2] = ACTIONS(2028), + [anon_sym_STAR_STAR2] = ACTIONS(2028), + [anon_sym_PLUS_PLUS2] = ACTIONS(2028), + [anon_sym_SLASH2] = ACTIONS(2026), + [anon_sym_mod2] = ACTIONS(2028), + [anon_sym_SLASH_SLASH2] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_bit_DASHshl2] = ACTIONS(2028), + [anon_sym_bit_DASHshr2] = ACTIONS(2028), + [anon_sym_bit_DASHand2] = ACTIONS(2028), + [anon_sym_bit_DASHxor2] = ACTIONS(2028), + [anon_sym_bit_DASHor2] = ACTIONS(2028), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(255), + }, + [1633] = { + [sym_comment] = STATE(1633), + [anon_sym_EQ] = ACTIONS(5004), + [anon_sym_PLUS_EQ] = ACTIONS(5006), + [anon_sym_DASH_EQ] = ACTIONS(5006), + [anon_sym_STAR_EQ] = ACTIONS(5006), + [anon_sym_SLASH_EQ] = ACTIONS(5006), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(5006), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1552), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(255), + }, + [1634] = { + [sym_cell_path] = STATE(2055), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1634), + [aux_sym_cell_path_repeat1] = STATE(1689), [sym__newline] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2032), [anon_sym_PIPE] = ACTIONS(2032), @@ -224393,7 +363687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2032), [anon_sym_bit_DASHxor2] = ACTIONS(2032), [anon_sym_bit_DASHor2] = ACTIONS(2032), - [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4934), [anon_sym_err_GT] = ACTIONS(2030), [anon_sym_out_GT] = ACTIONS(2030), [anon_sym_e_GT] = ACTIONS(2030), @@ -224410,81 +363704,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), }, - [1617] = { - [sym_cell_path] = STATE(1705), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1617), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [1635] = { + [sym_comment] = STATE(1635), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_null] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [aux_sym__val_number_decimal_token1] = ACTIONS(1886), + [aux_sym__val_number_decimal_token2] = ACTIONS(1888), + [aux_sym__val_number_decimal_token3] = ACTIONS(1888), + [aux_sym__val_number_decimal_token4] = ACTIONS(1888), + [aux_sym__val_number_token1] = ACTIONS(1888), + [aux_sym__val_number_token2] = ACTIONS(1888), + [aux_sym__val_number_token3] = ACTIONS(1888), + [aux_sym__val_number_token4] = ACTIONS(1888), + [aux_sym__val_number_token5] = ACTIONS(1888), + [aux_sym__val_number_token6] = ACTIONS(1888), + [anon_sym_0b] = ACTIONS(1886), + [anon_sym_0o] = ACTIONS(1886), + [anon_sym_0x] = ACTIONS(1886), + [sym_val_date] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [sym__str_single_quotes] = ACTIONS(1888), + [sym__str_back_ticks] = ACTIONS(1888), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1888), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [aux_sym_unquoted_token1] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1888), }, - [1618] = { - [sym_cell_path] = STATE(2016), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1618), - [aux_sym_cell_path_repeat1] = STATE(1690), + [1636] = { + [sym_comment] = STATE(1636), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2240), + [anon_sym_DOT_DOT_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2242), + [aux_sym__val_number_decimal_token4] = ACTIONS(2242), + [aux_sym__val_number_token1] = ACTIONS(2242), + [aux_sym__val_number_token2] = ACTIONS(2242), + [aux_sym__val_number_token3] = ACTIONS(2242), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [anon_sym_0b] = ACTIONS(2240), + [anon_sym_0o] = ACTIONS(2240), + [anon_sym_0x] = ACTIONS(2240), + [sym_val_date] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [aux_sym_unquoted_token1] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2242), + }, + [1637] = { + [sym_cell_path] = STATE(1979), + [sym_path] = STATE(1921), + [sym_comment] = STATE(1637), + [aux_sym_cell_path_repeat1] = STATE(1697), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1884), + [anon_sym_in2] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1884), + [anon_sym_xor2] = ACTIONS(1884), + [anon_sym_or2] = ACTIONS(1884), + [anon_sym_not_DASHin2] = ACTIONS(1884), + [anon_sym_starts_DASHwith2] = ACTIONS(1884), + [anon_sym_ends_DASHwith2] = ACTIONS(1884), + [anon_sym_EQ_EQ2] = ACTIONS(1884), + [anon_sym_BANG_EQ2] = ACTIONS(1884), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1884), + [anon_sym_GT_EQ2] = ACTIONS(1884), + [anon_sym_EQ_TILDE2] = ACTIONS(1884), + [anon_sym_BANG_TILDE2] = ACTIONS(1884), + [anon_sym_STAR_STAR2] = ACTIONS(1884), + [anon_sym_PLUS_PLUS2] = ACTIONS(1884), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1884), + [anon_sym_SLASH_SLASH2] = ACTIONS(1884), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1884), + [anon_sym_bit_DASHshr2] = ACTIONS(1884), + [anon_sym_bit_DASHand2] = ACTIONS(1884), + [anon_sym_bit_DASHxor2] = ACTIONS(1884), + [anon_sym_bit_DASHor2] = ACTIONS(1884), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(4987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [aux_sym_record_entry_token1] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(255), + }, + [1638] = { + [sym_cell_path] = STATE(2065), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1638), + [aux_sym_cell_path_repeat1] = STATE(1689), [sym__newline] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2036), [anon_sym_PIPE] = ACTIONS(2036), @@ -224529,7 +363959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2036), [anon_sym_bit_DASHxor2] = ACTIONS(2036), [anon_sym_bit_DASHor2] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4934), [anon_sym_err_GT] = ACTIONS(2034), [anon_sym_out_GT] = ACTIONS(2034), [anon_sym_e_GT] = ACTIONS(2034), @@ -224546,353 +363976,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1619] = { - [sym_comment] = STATE(1619), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(255), }, - [1620] = { - [sym_comment] = STATE(1620), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), - }, - [1621] = { - [sym_comment] = STATE(1621), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [1639] = { + [sym_comment] = STATE(1639), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym__newline] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_err_GT_PIPE] = ACTIONS(2203), + [anon_sym_out_GT_PIPE] = ACTIONS(2203), + [anon_sym_e_GT_PIPE] = ACTIONS(2203), + [anon_sym_o_GT_PIPE] = ACTIONS(2203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_DOT_DOT2] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2197), + [anon_sym_DOT_DOT_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5010), + [anon_sym_null] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2203), + [aux_sym__val_number_decimal_token3] = ACTIONS(2203), + [aux_sym__val_number_decimal_token4] = ACTIONS(2203), + [aux_sym__val_number_token1] = ACTIONS(2203), + [aux_sym__val_number_token2] = ACTIONS(2203), + [aux_sym__val_number_token3] = ACTIONS(2203), + [aux_sym__val_number_token4] = ACTIONS(2203), + [aux_sym__val_number_token5] = ACTIONS(2203), + [aux_sym__val_number_token6] = ACTIONS(2203), + [anon_sym_0b] = ACTIONS(2197), + [anon_sym_0o] = ACTIONS(2197), + [anon_sym_0x] = ACTIONS(2197), + [sym_val_date] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2203), + [sym__str_single_quotes] = ACTIONS(2203), + [sym__str_back_ticks] = ACTIONS(2203), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2203), + [anon_sym_err_GT] = ACTIONS(2197), + [anon_sym_out_GT] = ACTIONS(2197), + [anon_sym_e_GT] = ACTIONS(2197), + [anon_sym_o_GT] = ACTIONS(2197), + [anon_sym_err_PLUSout_GT] = ACTIONS(2197), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2197), + [anon_sym_o_PLUSe_GT] = ACTIONS(2197), + [anon_sym_e_PLUSo_GT] = ACTIONS(2197), + [anon_sym_err_GT_GT] = ACTIONS(2203), + [anon_sym_out_GT_GT] = ACTIONS(2203), + [anon_sym_e_GT_GT] = ACTIONS(2203), + [anon_sym_o_GT_GT] = ACTIONS(2203), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2203), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2203), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2203), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2203), + [aux_sym_unquoted_token1] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2203), }, - [1622] = { - [sym_comment] = STATE(1622), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1002), - [anon_sym_0o] = ACTIONS(1002), - [anon_sym_0x] = ACTIONS(1002), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), + [1640] = { + [sym_cell_path] = STATE(2066), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1640), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_err_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_GT_PIPE] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_GT2] = ACTIONS(2171), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_EQ_GT] = ACTIONS(2173), + [anon_sym_STAR2] = ACTIONS(2171), + [anon_sym_and2] = ACTIONS(2173), + [anon_sym_xor2] = ACTIONS(2173), + [anon_sym_or2] = ACTIONS(2173), + [anon_sym_not_DASHin2] = ACTIONS(2173), + [anon_sym_starts_DASHwith2] = ACTIONS(2173), + [anon_sym_ends_DASHwith2] = ACTIONS(2173), + [anon_sym_EQ_EQ2] = ACTIONS(2173), + [anon_sym_BANG_EQ2] = ACTIONS(2173), + [anon_sym_LT2] = ACTIONS(2171), + [anon_sym_LT_EQ2] = ACTIONS(2173), + [anon_sym_GT_EQ2] = ACTIONS(2173), + [anon_sym_EQ_TILDE2] = ACTIONS(2173), + [anon_sym_BANG_TILDE2] = ACTIONS(2173), + [anon_sym_STAR_STAR2] = ACTIONS(2173), + [anon_sym_PLUS_PLUS2] = ACTIONS(2173), + [anon_sym_SLASH2] = ACTIONS(2171), + [anon_sym_mod2] = ACTIONS(2173), + [anon_sym_SLASH_SLASH2] = ACTIONS(2173), + [anon_sym_PLUS2] = ACTIONS(2171), + [anon_sym_bit_DASHshl2] = ACTIONS(2173), + [anon_sym_bit_DASHshr2] = ACTIONS(2173), + [anon_sym_bit_DASHand2] = ACTIONS(2173), + [anon_sym_bit_DASHxor2] = ACTIONS(2173), + [anon_sym_bit_DASHor2] = ACTIONS(2173), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2171), + [anon_sym_out_GT] = ACTIONS(2171), + [anon_sym_e_GT] = ACTIONS(2171), + [anon_sym_o_GT] = ACTIONS(2171), + [anon_sym_err_PLUSout_GT] = ACTIONS(2171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2171), + [anon_sym_o_PLUSe_GT] = ACTIONS(2171), + [anon_sym_e_PLUSo_GT] = ACTIONS(2171), + [anon_sym_err_GT_GT] = ACTIONS(2173), + [anon_sym_out_GT_GT] = ACTIONS(2173), + [anon_sym_e_GT_GT] = ACTIONS(2173), + [anon_sym_o_GT_GT] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(255), }, - [1623] = { - [sym_comment] = STATE(1623), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_PLUS_EQ] = ACTIONS(4950), - [anon_sym_DASH_EQ] = ACTIONS(4950), - [anon_sym_STAR_EQ] = ACTIONS(4950), - [anon_sym_SLASH_EQ] = ACTIONS(4950), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4950), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [1641] = { + [sym_comment] = STATE(1641), + [sym__newline] = ACTIONS(5012), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5012), + [anon_sym_err_GT_PIPE] = ACTIONS(5012), + [anon_sym_out_GT_PIPE] = ACTIONS(5012), + [anon_sym_e_GT_PIPE] = ACTIONS(5012), + [anon_sym_o_GT_PIPE] = ACTIONS(5012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_LPAREN] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [anon_sym_DOLLAR] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_DASH2] = ACTIONS(5014), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_DOT_DOT] = ACTIONS(5014), + [anon_sym_DOT_DOT2] = ACTIONS(4849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_DOT_DOT_LT] = ACTIONS(5014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4851), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4851), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [aux_sym__val_number_decimal_token1] = ACTIONS(5014), + [aux_sym__val_number_decimal_token2] = ACTIONS(5012), + [aux_sym__val_number_decimal_token3] = ACTIONS(5012), + [aux_sym__val_number_decimal_token4] = ACTIONS(5012), + [aux_sym__val_number_token1] = ACTIONS(5012), + [aux_sym__val_number_token2] = ACTIONS(5012), + [aux_sym__val_number_token3] = ACTIONS(5012), + [aux_sym__val_number_token4] = ACTIONS(5012), + [aux_sym__val_number_token5] = ACTIONS(5012), + [aux_sym__val_number_token6] = ACTIONS(5012), + [anon_sym_0b] = ACTIONS(5014), + [anon_sym_0o] = ACTIONS(5014), + [anon_sym_0x] = ACTIONS(5014), + [sym_val_date] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5012), + [sym__str_single_quotes] = ACTIONS(5012), + [sym__str_back_ticks] = ACTIONS(5012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5012), + [anon_sym_err_GT] = ACTIONS(5014), + [anon_sym_out_GT] = ACTIONS(5014), + [anon_sym_e_GT] = ACTIONS(5014), + [anon_sym_o_GT] = ACTIONS(5014), + [anon_sym_err_PLUSout_GT] = ACTIONS(5014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5014), + [anon_sym_o_PLUSe_GT] = ACTIONS(5014), + [anon_sym_e_PLUSo_GT] = ACTIONS(5014), + [anon_sym_err_GT_GT] = ACTIONS(5012), + [anon_sym_out_GT_GT] = ACTIONS(5012), + [anon_sym_e_GT_GT] = ACTIONS(5012), + [anon_sym_o_GT_GT] = ACTIONS(5012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5012), + [aux_sym_unquoted_token1] = ACTIONS(5014), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5012), }, - [1624] = { - [sym_cell_path] = STATE(2018), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1624), - [aux_sym_cell_path_repeat1] = STATE(1690), + [1642] = { + [sym_cell_path] = STATE(2068), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1642), + [aux_sym_cell_path_repeat1] = STATE(1689), [sym__newline] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2040), [anon_sym_PIPE] = ACTIONS(2040), @@ -224937,7 +364231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2040), [anon_sym_bit_DASHxor2] = ACTIONS(2040), [anon_sym_bit_DASHor2] = ACTIONS(2040), - [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4934), [anon_sym_err_GT] = ACTIONS(2038), [anon_sym_out_GT] = ACTIONS(2038), [anon_sym_e_GT] = ACTIONS(2038), @@ -224954,1981 +364248,2298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2040), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), }, - [1625] = { - [sym__expr_parenthesized_immediate] = STATE(7463), - [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1719), - [anon_sym_xor2] = ACTIONS(1719), - [anon_sym_or2] = ACTIONS(1719), - [anon_sym_not_DASHin2] = ACTIONS(1719), - [anon_sym_starts_DASHwith2] = ACTIONS(1719), - [anon_sym_ends_DASHwith2] = ACTIONS(1719), - [anon_sym_EQ_EQ2] = ACTIONS(1719), - [anon_sym_BANG_EQ2] = ACTIONS(1719), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1719), - [anon_sym_GT_EQ2] = ACTIONS(1719), - [anon_sym_EQ_TILDE2] = ACTIONS(1719), - [anon_sym_BANG_TILDE2] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_STAR_STAR2] = ACTIONS(1719), - [anon_sym_PLUS_PLUS2] = ACTIONS(1719), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1719), - [anon_sym_SLASH_SLASH2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1719), - [anon_sym_bit_DASHshr2] = ACTIONS(1719), - [anon_sym_bit_DASHand2] = ACTIONS(1719), - [anon_sym_bit_DASHxor2] = ACTIONS(1719), - [anon_sym_bit_DASHor2] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(4858), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), - [sym_filesize_unit] = ACTIONS(4952), - [sym_duration_unit] = ACTIONS(4954), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token2] = ACTIONS(4956), - [anon_sym_POUND] = ACTIONS(247), + [1643] = { + [sym__expr_parenthesized_immediate] = STATE(7492), + [sym_comment] = STATE(1643), + [sym__newline] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_err_GT_PIPE] = ACTIONS(5016), + [anon_sym_out_GT_PIPE] = ACTIONS(5016), + [anon_sym_e_GT_PIPE] = ACTIONS(5016), + [anon_sym_o_GT_PIPE] = ACTIONS(5016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_RPAREN] = ACTIONS(5016), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_DASH2] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_RBRACE] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5016), + [anon_sym_DOT_DOT_LT] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [aux_sym__val_number_decimal_token1] = ACTIONS(5018), + [aux_sym__val_number_decimal_token2] = ACTIONS(5016), + [aux_sym__val_number_decimal_token3] = ACTIONS(5016), + [aux_sym__val_number_decimal_token4] = ACTIONS(5016), + [aux_sym__val_number_token1] = ACTIONS(5016), + [aux_sym__val_number_token2] = ACTIONS(5016), + [aux_sym__val_number_token3] = ACTIONS(5016), + [aux_sym__val_number_token4] = ACTIONS(5016), + [aux_sym__val_number_token5] = ACTIONS(5016), + [aux_sym__val_number_token6] = ACTIONS(5016), + [anon_sym_0b] = ACTIONS(5018), + [anon_sym_0o] = ACTIONS(5018), + [anon_sym_0x] = ACTIONS(5018), + [sym_val_date] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [sym__str_single_quotes] = ACTIONS(5016), + [sym__str_back_ticks] = ACTIONS(5016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5016), + [anon_sym_err_GT] = ACTIONS(5018), + [anon_sym_out_GT] = ACTIONS(5018), + [anon_sym_e_GT] = ACTIONS(5018), + [anon_sym_o_GT] = ACTIONS(5018), + [anon_sym_err_PLUSout_GT] = ACTIONS(5018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5018), + [anon_sym_o_PLUSe_GT] = ACTIONS(5018), + [anon_sym_e_PLUSo_GT] = ACTIONS(5018), + [anon_sym_err_GT_GT] = ACTIONS(5016), + [anon_sym_out_GT_GT] = ACTIONS(5016), + [anon_sym_e_GT_GT] = ACTIONS(5016), + [anon_sym_o_GT_GT] = ACTIONS(5016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5016), + [aux_sym_unquoted_token1] = ACTIONS(5018), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5016), }, - [1626] = { - [sym_cell_path] = STATE(2023), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1626), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_err_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_GT_PIPE] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_GT2] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_EQ_GT] = ACTIONS(1933), - [anon_sym_STAR2] = ACTIONS(1931), - [anon_sym_and2] = ACTIONS(1933), - [anon_sym_xor2] = ACTIONS(1933), - [anon_sym_or2] = ACTIONS(1933), - [anon_sym_not_DASHin2] = ACTIONS(1933), - [anon_sym_starts_DASHwith2] = ACTIONS(1933), - [anon_sym_ends_DASHwith2] = ACTIONS(1933), - [anon_sym_EQ_EQ2] = ACTIONS(1933), - [anon_sym_BANG_EQ2] = ACTIONS(1933), - [anon_sym_LT2] = ACTIONS(1931), - [anon_sym_LT_EQ2] = ACTIONS(1933), - [anon_sym_GT_EQ2] = ACTIONS(1933), - [anon_sym_EQ_TILDE2] = ACTIONS(1933), - [anon_sym_BANG_TILDE2] = ACTIONS(1933), - [anon_sym_STAR_STAR2] = ACTIONS(1933), - [anon_sym_PLUS_PLUS2] = ACTIONS(1933), - [anon_sym_SLASH2] = ACTIONS(1931), - [anon_sym_mod2] = ACTIONS(1933), - [anon_sym_SLASH_SLASH2] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1931), - [anon_sym_bit_DASHshl2] = ACTIONS(1933), - [anon_sym_bit_DASHshr2] = ACTIONS(1933), - [anon_sym_bit_DASHand2] = ACTIONS(1933), - [anon_sym_bit_DASHxor2] = ACTIONS(1933), - [anon_sym_bit_DASHor2] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1931), - [anon_sym_out_GT] = ACTIONS(1931), - [anon_sym_e_GT] = ACTIONS(1931), - [anon_sym_o_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT] = ACTIONS(1931), - [anon_sym_err_GT_GT] = ACTIONS(1933), - [anon_sym_out_GT_GT] = ACTIONS(1933), - [anon_sym_e_GT_GT] = ACTIONS(1933), - [anon_sym_o_GT_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(247), + [1644] = { + [sym_comment] = STATE(1644), + [sym__newline] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2409), + [anon_sym_err_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_GT_PIPE] = ACTIONS(2409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_0b] = ACTIONS(2407), + [anon_sym_0o] = ACTIONS(2407), + [anon_sym_0x] = ACTIONS(2407), + [sym_val_date] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [anon_sym_err_GT] = ACTIONS(2407), + [anon_sym_out_GT] = ACTIONS(2407), + [anon_sym_e_GT] = ACTIONS(2407), + [anon_sym_o_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT] = ACTIONS(2407), + [anon_sym_err_GT_GT] = ACTIONS(2407), + [anon_sym_out_GT_GT] = ACTIONS(2407), + [anon_sym_e_GT_GT] = ACTIONS(2407), + [anon_sym_o_GT_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2407), + [aux_sym_unquoted_token1] = ACTIONS(2407), + [aux_sym_unquoted_token4] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2409), }, - [1627] = { - [sym_cell_path] = STATE(2074), - [sym_path] = STATE(1947), - [sym_comment] = STATE(1627), - [aux_sym_cell_path_repeat1] = STATE(1659), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_GT2] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1749), - [anon_sym_in2] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_STAR2] = ACTIONS(1747), - [anon_sym_and2] = ACTIONS(1749), - [anon_sym_xor2] = ACTIONS(1749), - [anon_sym_or2] = ACTIONS(1749), - [anon_sym_not_DASHin2] = ACTIONS(1749), - [anon_sym_starts_DASHwith2] = ACTIONS(1749), - [anon_sym_ends_DASHwith2] = ACTIONS(1749), - [anon_sym_EQ_EQ2] = ACTIONS(1749), - [anon_sym_BANG_EQ2] = ACTIONS(1749), - [anon_sym_LT2] = ACTIONS(1747), - [anon_sym_LT_EQ2] = ACTIONS(1749), - [anon_sym_GT_EQ2] = ACTIONS(1749), - [anon_sym_EQ_TILDE2] = ACTIONS(1749), - [anon_sym_BANG_TILDE2] = ACTIONS(1749), - [anon_sym_STAR_STAR2] = ACTIONS(1749), - [anon_sym_PLUS_PLUS2] = ACTIONS(1749), - [anon_sym_SLASH2] = ACTIONS(1747), - [anon_sym_mod2] = ACTIONS(1749), - [anon_sym_SLASH_SLASH2] = ACTIONS(1749), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_bit_DASHshl2] = ACTIONS(1749), - [anon_sym_bit_DASHshr2] = ACTIONS(1749), - [anon_sym_bit_DASHand2] = ACTIONS(1749), - [anon_sym_bit_DASHxor2] = ACTIONS(1749), - [anon_sym_bit_DASHor2] = ACTIONS(1749), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [aux_sym_record_entry_token1] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(247), + [1645] = { + [sym_comment] = STATE(1645), + [sym__newline] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_err_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_GT_PIPE] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH2] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5020), + [anon_sym_DOT_DOT_LT] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5022), + [anon_sym_false] = ACTIONS(5022), + [aux_sym__val_number_decimal_token1] = ACTIONS(5022), + [aux_sym__val_number_decimal_token2] = ACTIONS(5022), + [aux_sym__val_number_decimal_token3] = ACTIONS(5020), + [aux_sym__val_number_decimal_token4] = ACTIONS(5020), + [aux_sym__val_number_token1] = ACTIONS(5022), + [aux_sym__val_number_token2] = ACTIONS(5022), + [aux_sym__val_number_token3] = ACTIONS(5022), + [aux_sym__val_number_token4] = ACTIONS(5022), + [aux_sym__val_number_token5] = ACTIONS(5022), + [aux_sym__val_number_token6] = ACTIONS(5022), + [anon_sym_0b] = ACTIONS(5022), + [anon_sym_0o] = ACTIONS(5022), + [anon_sym_0x] = ACTIONS(5022), + [sym_val_date] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5020), + [sym__str_single_quotes] = ACTIONS(5020), + [sym__str_back_ticks] = ACTIONS(5020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5020), + [anon_sym_err_GT] = ACTIONS(5022), + [anon_sym_out_GT] = ACTIONS(5022), + [anon_sym_e_GT] = ACTIONS(5022), + [anon_sym_o_GT] = ACTIONS(5022), + [anon_sym_err_PLUSout_GT] = ACTIONS(5022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5022), + [anon_sym_o_PLUSe_GT] = ACTIONS(5022), + [anon_sym_e_PLUSo_GT] = ACTIONS(5022), + [anon_sym_err_GT_GT] = ACTIONS(5020), + [anon_sym_out_GT_GT] = ACTIONS(5020), + [anon_sym_e_GT_GT] = ACTIONS(5020), + [anon_sym_o_GT_GT] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5020), + [anon_sym_EQ2] = ACTIONS(5024), + [sym_short_flag_identifier] = ACTIONS(5026), + [aux_sym_unquoted_token1] = ACTIONS(5022), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5020), }, - [1628] = { - [sym_cell_path] = STATE(2046), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1628), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_GT2] = ACTIONS(1899), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_in2] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1901), - [anon_sym_STAR2] = ACTIONS(1899), - [anon_sym_and2] = ACTIONS(1901), - [anon_sym_xor2] = ACTIONS(1901), - [anon_sym_or2] = ACTIONS(1901), - [anon_sym_not_DASHin2] = ACTIONS(1901), - [anon_sym_starts_DASHwith2] = ACTIONS(1901), - [anon_sym_ends_DASHwith2] = ACTIONS(1901), - [anon_sym_EQ_EQ2] = ACTIONS(1901), - [anon_sym_BANG_EQ2] = ACTIONS(1901), - [anon_sym_LT2] = ACTIONS(1899), - [anon_sym_LT_EQ2] = ACTIONS(1901), - [anon_sym_GT_EQ2] = ACTIONS(1901), - [anon_sym_EQ_TILDE2] = ACTIONS(1901), - [anon_sym_BANG_TILDE2] = ACTIONS(1901), - [anon_sym_STAR_STAR2] = ACTIONS(1901), - [anon_sym_PLUS_PLUS2] = ACTIONS(1901), - [anon_sym_SLASH2] = ACTIONS(1899), - [anon_sym_mod2] = ACTIONS(1901), - [anon_sym_SLASH_SLASH2] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1899), - [anon_sym_bit_DASHshl2] = ACTIONS(1901), - [anon_sym_bit_DASHshr2] = ACTIONS(1901), - [anon_sym_bit_DASHand2] = ACTIONS(1901), - [anon_sym_bit_DASHxor2] = ACTIONS(1901), - [anon_sym_bit_DASHor2] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(247), + [1646] = { + [sym_comment] = STATE(1646), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [aux_sym_unquoted_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), }, - [1629] = { - [sym_cell_path] = STATE(2049), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1629), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_err_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_GT_PIPE] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_GT2] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_in2] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_EQ_GT] = ACTIONS(1909), - [anon_sym_STAR2] = ACTIONS(1907), - [anon_sym_and2] = ACTIONS(1909), - [anon_sym_xor2] = ACTIONS(1909), - [anon_sym_or2] = ACTIONS(1909), - [anon_sym_not_DASHin2] = ACTIONS(1909), - [anon_sym_starts_DASHwith2] = ACTIONS(1909), - [anon_sym_ends_DASHwith2] = ACTIONS(1909), - [anon_sym_EQ_EQ2] = ACTIONS(1909), - [anon_sym_BANG_EQ2] = ACTIONS(1909), - [anon_sym_LT2] = ACTIONS(1907), - [anon_sym_LT_EQ2] = ACTIONS(1909), - [anon_sym_GT_EQ2] = ACTIONS(1909), - [anon_sym_EQ_TILDE2] = ACTIONS(1909), - [anon_sym_BANG_TILDE2] = ACTIONS(1909), - [anon_sym_STAR_STAR2] = ACTIONS(1909), - [anon_sym_PLUS_PLUS2] = ACTIONS(1909), - [anon_sym_SLASH2] = ACTIONS(1907), - [anon_sym_mod2] = ACTIONS(1909), - [anon_sym_SLASH_SLASH2] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_bit_DASHshl2] = ACTIONS(1909), - [anon_sym_bit_DASHshr2] = ACTIONS(1909), - [anon_sym_bit_DASHand2] = ACTIONS(1909), - [anon_sym_bit_DASHxor2] = ACTIONS(1909), - [anon_sym_bit_DASHor2] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1909), - [anon_sym_out_GT_GT] = ACTIONS(1909), - [anon_sym_e_GT_GT] = ACTIONS(1909), - [anon_sym_o_GT_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(247), + [1647] = { + [sym_cell_path] = STATE(2070), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1647), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_err_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_GT_PIPE] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2044), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_GT2] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2044), + [anon_sym_in2] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_EQ_GT] = ACTIONS(2044), + [anon_sym_STAR2] = ACTIONS(2042), + [anon_sym_and2] = ACTIONS(2044), + [anon_sym_xor2] = ACTIONS(2044), + [anon_sym_or2] = ACTIONS(2044), + [anon_sym_not_DASHin2] = ACTIONS(2044), + [anon_sym_starts_DASHwith2] = ACTIONS(2044), + [anon_sym_ends_DASHwith2] = ACTIONS(2044), + [anon_sym_EQ_EQ2] = ACTIONS(2044), + [anon_sym_BANG_EQ2] = ACTIONS(2044), + [anon_sym_LT2] = ACTIONS(2042), + [anon_sym_LT_EQ2] = ACTIONS(2044), + [anon_sym_GT_EQ2] = ACTIONS(2044), + [anon_sym_EQ_TILDE2] = ACTIONS(2044), + [anon_sym_BANG_TILDE2] = ACTIONS(2044), + [anon_sym_STAR_STAR2] = ACTIONS(2044), + [anon_sym_PLUS_PLUS2] = ACTIONS(2044), + [anon_sym_SLASH2] = ACTIONS(2042), + [anon_sym_mod2] = ACTIONS(2044), + [anon_sym_SLASH_SLASH2] = ACTIONS(2044), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_bit_DASHshl2] = ACTIONS(2044), + [anon_sym_bit_DASHshr2] = ACTIONS(2044), + [anon_sym_bit_DASHand2] = ACTIONS(2044), + [anon_sym_bit_DASHxor2] = ACTIONS(2044), + [anon_sym_bit_DASHor2] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2042), + [anon_sym_out_GT] = ACTIONS(2042), + [anon_sym_e_GT] = ACTIONS(2042), + [anon_sym_o_GT] = ACTIONS(2042), + [anon_sym_err_PLUSout_GT] = ACTIONS(2042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2042), + [anon_sym_o_PLUSe_GT] = ACTIONS(2042), + [anon_sym_e_PLUSo_GT] = ACTIONS(2042), + [anon_sym_err_GT_GT] = ACTIONS(2044), + [anon_sym_out_GT_GT] = ACTIONS(2044), + [anon_sym_e_GT_GT] = ACTIONS(2044), + [anon_sym_o_GT_GT] = ACTIONS(2044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(255), }, - [1630] = { - [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), + [1648] = { + [sym_cell_path] = STATE(2071), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1648), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_err_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_GT_PIPE] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_GT2] = ACTIONS(2046), + [anon_sym_DASH2] = ACTIONS(2048), + [anon_sym_in2] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_STAR2] = ACTIONS(2046), + [anon_sym_and2] = ACTIONS(2048), + [anon_sym_xor2] = ACTIONS(2048), + [anon_sym_or2] = ACTIONS(2048), + [anon_sym_not_DASHin2] = ACTIONS(2048), + [anon_sym_starts_DASHwith2] = ACTIONS(2048), + [anon_sym_ends_DASHwith2] = ACTIONS(2048), + [anon_sym_EQ_EQ2] = ACTIONS(2048), + [anon_sym_BANG_EQ2] = ACTIONS(2048), + [anon_sym_LT2] = ACTIONS(2046), + [anon_sym_LT_EQ2] = ACTIONS(2048), + [anon_sym_GT_EQ2] = ACTIONS(2048), + [anon_sym_EQ_TILDE2] = ACTIONS(2048), + [anon_sym_BANG_TILDE2] = ACTIONS(2048), + [anon_sym_STAR_STAR2] = ACTIONS(2048), + [anon_sym_PLUS_PLUS2] = ACTIONS(2048), + [anon_sym_SLASH2] = ACTIONS(2046), + [anon_sym_mod2] = ACTIONS(2048), + [anon_sym_SLASH_SLASH2] = ACTIONS(2048), + [anon_sym_PLUS2] = ACTIONS(2046), + [anon_sym_bit_DASHshl2] = ACTIONS(2048), + [anon_sym_bit_DASHshr2] = ACTIONS(2048), + [anon_sym_bit_DASHand2] = ACTIONS(2048), + [anon_sym_bit_DASHxor2] = ACTIONS(2048), + [anon_sym_bit_DASHor2] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2046), + [anon_sym_out_GT] = ACTIONS(2046), + [anon_sym_e_GT] = ACTIONS(2046), + [anon_sym_o_GT] = ACTIONS(2046), + [anon_sym_err_PLUSout_GT] = ACTIONS(2046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2046), + [anon_sym_o_PLUSe_GT] = ACTIONS(2046), + [anon_sym_e_PLUSo_GT] = ACTIONS(2046), + [anon_sym_err_GT_GT] = ACTIONS(2048), + [anon_sym_out_GT_GT] = ACTIONS(2048), + [anon_sym_e_GT_GT] = ACTIONS(2048), + [anon_sym_o_GT_GT] = ACTIONS(2048), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2048), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2048), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2048), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(255), }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym__newline] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_err_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_GT_PIPE] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_DASH_DASH] = ACTIONS(2054), + [1649] = { + [sym_cell_path] = STATE(2073), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1649), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_err_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_GT_PIPE] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_GT2] = ACTIONS(2050), [anon_sym_DASH2] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_DOT_DOT2] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), - [anon_sym_DOT_DOT_LT] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), - [anon_sym_null] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [aux_sym__val_number_decimal_token1] = ACTIONS(2052), - [aux_sym__val_number_decimal_token2] = ACTIONS(2054), - [aux_sym__val_number_decimal_token3] = ACTIONS(2054), - [aux_sym__val_number_decimal_token4] = ACTIONS(2054), - [aux_sym__val_number_token1] = ACTIONS(2054), - [aux_sym__val_number_token2] = ACTIONS(2054), - [aux_sym__val_number_token3] = ACTIONS(2054), - [aux_sym__val_number_token4] = ACTIONS(2054), - [aux_sym__val_number_token5] = ACTIONS(2054), - [aux_sym__val_number_token6] = ACTIONS(2054), - [anon_sym_0b] = ACTIONS(2052), - [anon_sym_0o] = ACTIONS(2052), - [anon_sym_0x] = ACTIONS(2052), - [sym_val_date] = ACTIONS(2054), - [anon_sym_DQUOTE] = ACTIONS(2054), - [sym__str_single_quotes] = ACTIONS(2054), - [sym__str_back_ticks] = ACTIONS(2054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), - [anon_sym_err_GT] = ACTIONS(2052), - [anon_sym_out_GT] = ACTIONS(2052), - [anon_sym_e_GT] = ACTIONS(2052), - [anon_sym_o_GT] = ACTIONS(2052), - [anon_sym_err_PLUSout_GT] = ACTIONS(2052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), - [anon_sym_o_PLUSe_GT] = ACTIONS(2052), - [anon_sym_e_PLUSo_GT] = ACTIONS(2052), - [anon_sym_err_GT_GT] = ACTIONS(2054), - [anon_sym_out_GT_GT] = ACTIONS(2054), - [anon_sym_e_GT_GT] = ACTIONS(2054), - [anon_sym_o_GT_GT] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), - [aux_sym_unquoted_token1] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_EQ_GT] = ACTIONS(2052), + [anon_sym_STAR2] = ACTIONS(2050), + [anon_sym_and2] = ACTIONS(2052), + [anon_sym_xor2] = ACTIONS(2052), + [anon_sym_or2] = ACTIONS(2052), + [anon_sym_not_DASHin2] = ACTIONS(2052), + [anon_sym_starts_DASHwith2] = ACTIONS(2052), + [anon_sym_ends_DASHwith2] = ACTIONS(2052), + [anon_sym_EQ_EQ2] = ACTIONS(2052), + [anon_sym_BANG_EQ2] = ACTIONS(2052), + [anon_sym_LT2] = ACTIONS(2050), + [anon_sym_LT_EQ2] = ACTIONS(2052), + [anon_sym_GT_EQ2] = ACTIONS(2052), + [anon_sym_EQ_TILDE2] = ACTIONS(2052), + [anon_sym_BANG_TILDE2] = ACTIONS(2052), + [anon_sym_STAR_STAR2] = ACTIONS(2052), + [anon_sym_PLUS_PLUS2] = ACTIONS(2052), + [anon_sym_SLASH2] = ACTIONS(2050), + [anon_sym_mod2] = ACTIONS(2052), + [anon_sym_SLASH_SLASH2] = ACTIONS(2052), + [anon_sym_PLUS2] = ACTIONS(2050), + [anon_sym_bit_DASHshl2] = ACTIONS(2052), + [anon_sym_bit_DASHshr2] = ACTIONS(2052), + [anon_sym_bit_DASHand2] = ACTIONS(2052), + [anon_sym_bit_DASHxor2] = ACTIONS(2052), + [anon_sym_bit_DASHor2] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2050), + [anon_sym_out_GT] = ACTIONS(2050), + [anon_sym_e_GT] = ACTIONS(2050), + [anon_sym_o_GT] = ACTIONS(2050), + [anon_sym_err_PLUSout_GT] = ACTIONS(2050), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2050), + [anon_sym_o_PLUSe_GT] = ACTIONS(2050), + [anon_sym_e_PLUSo_GT] = ACTIONS(2050), + [anon_sym_err_GT_GT] = ACTIONS(2052), + [anon_sym_out_GT_GT] = ACTIONS(2052), + [anon_sym_e_GT_GT] = ACTIONS(2052), + [anon_sym_o_GT_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(255), + }, + [1650] = { + [sym_comment] = STATE(1650), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_in2] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ_GT] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(255), + }, + [1651] = { + [sym_comment] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(2234), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_DOT_DOT2] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5030), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2228), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_0b] = ACTIONS(2228), + [anon_sym_0o] = ACTIONS(2228), + [anon_sym_0x] = ACTIONS(2228), + [sym_val_date] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(2228), + [anon_sym_out_GT] = ACTIONS(2228), + [anon_sym_e_GT] = ACTIONS(2228), + [anon_sym_o_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT] = ACTIONS(2228), + [anon_sym_err_GT_GT] = ACTIONS(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [1652] = { + [sym_comment] = STATE(1652), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1506), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1508), + [aux_sym__val_number_token5] = ACTIONS(1508), + [aux_sym__val_number_token6] = ACTIONS(1508), + [anon_sym_0b] = ACTIONS(1506), + [anon_sym_0o] = ACTIONS(1506), + [anon_sym_0x] = ACTIONS(1506), + [sym_val_date] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [aux_sym_unquoted_token1] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1508), + }, + [1653] = { + [sym_cell_path] = STATE(2174), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1653), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_GT2] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_in2] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_EQ_GT] = ACTIONS(2008), + [anon_sym_STAR2] = ACTIONS(2006), + [anon_sym_and2] = ACTIONS(2008), + [anon_sym_xor2] = ACTIONS(2008), + [anon_sym_or2] = ACTIONS(2008), + [anon_sym_not_DASHin2] = ACTIONS(2008), + [anon_sym_starts_DASHwith2] = ACTIONS(2008), + [anon_sym_ends_DASHwith2] = ACTIONS(2008), + [anon_sym_EQ_EQ2] = ACTIONS(2008), + [anon_sym_BANG_EQ2] = ACTIONS(2008), + [anon_sym_LT2] = ACTIONS(2006), + [anon_sym_LT_EQ2] = ACTIONS(2008), + [anon_sym_GT_EQ2] = ACTIONS(2008), + [anon_sym_EQ_TILDE2] = ACTIONS(2008), + [anon_sym_BANG_TILDE2] = ACTIONS(2008), + [anon_sym_STAR_STAR2] = ACTIONS(2008), + [anon_sym_PLUS_PLUS2] = ACTIONS(2008), + [anon_sym_SLASH2] = ACTIONS(2006), + [anon_sym_mod2] = ACTIONS(2008), + [anon_sym_SLASH_SLASH2] = ACTIONS(2008), + [anon_sym_PLUS2] = ACTIONS(2006), + [anon_sym_bit_DASHshl2] = ACTIONS(2008), + [anon_sym_bit_DASHshr2] = ACTIONS(2008), + [anon_sym_bit_DASHand2] = ACTIONS(2008), + [anon_sym_bit_DASHxor2] = ACTIONS(2008), + [anon_sym_bit_DASHor2] = ACTIONS(2008), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2008), + [anon_sym_out_GT_GT] = ACTIONS(2008), + [anon_sym_e_GT_GT] = ACTIONS(2008), + [anon_sym_o_GT_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(255), + }, + [1654] = { + [sym_comment] = STATE(1654), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym__newline] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_err_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_GT_PIPE] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_DASH2] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_LPAREN2] = ACTIONS(2359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), + [anon_sym_DOT_DOT_LT] = ACTIONS(2361), + [anon_sym_null] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2357), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [aux_sym__val_number_token4] = ACTIONS(2361), + [aux_sym__val_number_token5] = ACTIONS(2361), + [aux_sym__val_number_token6] = ACTIONS(2361), + [anon_sym_0b] = ACTIONS(2357), + [anon_sym_0o] = ACTIONS(2357), + [anon_sym_0x] = ACTIONS(2357), + [sym_val_date] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2361), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2361), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2361), + [anon_sym_out_GT_GT] = ACTIONS(2361), + [anon_sym_e_GT_GT] = ACTIONS(2361), + [anon_sym_o_GT_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), + [aux_sym_unquoted_token1] = ACTIONS(2357), + [aux_sym_unquoted_token2] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2361), + }, + [1655] = { + [sym_comment] = STATE(1655), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1656] = { + [sym_comment] = STATE(1656), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym__newline] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_err_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_GT_PIPE] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), + [anon_sym_GT2] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1822), + [anon_sym_in2] = ACTIONS(1822), + [anon_sym_STAR2] = ACTIONS(1820), + [anon_sym_and2] = ACTIONS(1822), + [anon_sym_xor2] = ACTIONS(1822), + [anon_sym_or2] = ACTIONS(1822), + [anon_sym_not_DASHin2] = ACTIONS(1822), + [anon_sym_starts_DASHwith2] = ACTIONS(1822), + [anon_sym_ends_DASHwith2] = ACTIONS(1822), + [anon_sym_EQ_EQ2] = ACTIONS(1822), + [anon_sym_BANG_EQ2] = ACTIONS(1822), + [anon_sym_LT2] = ACTIONS(1820), + [anon_sym_LT_EQ2] = ACTIONS(1822), + [anon_sym_GT_EQ2] = ACTIONS(1822), + [anon_sym_EQ_TILDE2] = ACTIONS(1822), + [anon_sym_BANG_TILDE2] = ACTIONS(1822), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_STAR_STAR2] = ACTIONS(1822), + [anon_sym_PLUS_PLUS2] = ACTIONS(1822), + [anon_sym_SLASH2] = ACTIONS(1820), + [anon_sym_mod2] = ACTIONS(1822), + [anon_sym_SLASH_SLASH2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_bit_DASHshl2] = ACTIONS(1822), + [anon_sym_bit_DASHshr2] = ACTIONS(1822), + [anon_sym_bit_DASHand2] = ACTIONS(1822), + [anon_sym_bit_DASHxor2] = ACTIONS(1822), + [anon_sym_bit_DASHor2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1820), + [sym_duration_unit] = ACTIONS(1822), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1822), + [anon_sym_out_GT_GT] = ACTIONS(1822), + [anon_sym_e_GT_GT] = ACTIONS(1822), + [anon_sym_o_GT_GT] = ACTIONS(1822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), + [aux_sym_unquoted_token2] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(255), + }, + [1657] = { + [sym_comment] = STATE(1657), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [aux_sym_unquoted_token2] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, - [1632] = { - [sym_comment] = STATE(1632), - [ts_builtin_sym_end] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_DOT_DOT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), - [anon_sym_null] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2118), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_0b] = ACTIONS(2118), - [anon_sym_0o] = ACTIONS(2118), - [anon_sym_0x] = ACTIONS(2118), - [sym_val_date] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [aux_sym_unquoted_token1] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2120), + [1658] = { + [sym_comment] = STATE(1658), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_in2] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1866), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1866), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1866), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1868), + [sym_filesize_unit] = ACTIONS(1866), + [sym_duration_unit] = ACTIONS(1868), + [anon_sym_err_GT] = ACTIONS(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [aux_sym_unquoted_token2] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(255), }, - [1633] = { - [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_DOT_DOT2] = ACTIONS(4958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2130), - [anon_sym_DOT_DOT_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4960), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2130), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_0b] = ACTIONS(2130), - [anon_sym_0o] = ACTIONS(2130), - [anon_sym_0x] = ACTIONS(2130), - [sym_val_date] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [aux_sym_unquoted_token1] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2136), + [1659] = { + [sym_comment] = STATE(1659), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_err_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_GT_PIPE] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [aux_sym__val_number_decimal_token1] = ACTIONS(1518), + [aux_sym__val_number_decimal_token2] = ACTIONS(1520), + [aux_sym__val_number_decimal_token3] = ACTIONS(1520), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), + [aux_sym__val_number_token1] = ACTIONS(1520), + [aux_sym__val_number_token2] = ACTIONS(1520), + [aux_sym__val_number_token3] = ACTIONS(1520), + [aux_sym__val_number_token4] = ACTIONS(1520), + [aux_sym__val_number_token5] = ACTIONS(1520), + [aux_sym__val_number_token6] = ACTIONS(1520), + [anon_sym_0b] = ACTIONS(1518), + [anon_sym_0o] = ACTIONS(1518), + [anon_sym_0x] = ACTIONS(1518), + [sym_val_date] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym__str_single_quotes] = ACTIONS(1520), + [sym__str_back_ticks] = ACTIONS(1520), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), + [anon_sym_err_GT] = ACTIONS(1518), + [anon_sym_out_GT] = ACTIONS(1518), + [anon_sym_e_GT] = ACTIONS(1518), + [anon_sym_o_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT] = ACTIONS(1518), + [anon_sym_err_GT_GT] = ACTIONS(1520), + [anon_sym_out_GT_GT] = ACTIONS(1520), + [anon_sym_e_GT_GT] = ACTIONS(1520), + [anon_sym_o_GT_GT] = ACTIONS(1520), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [aux_sym_unquoted_token1] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1520), }, - [1634] = { - [sym_comment] = STATE(1634), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_null] = ACTIONS(1026), - [anon_sym_true] = ACTIONS(1026), - [anon_sym_false] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1026), - [anon_sym_out_GT_GT] = ACTIONS(1026), - [anon_sym_e_GT_GT] = ACTIONS(1026), - [anon_sym_o_GT_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [aux_sym_unquoted_token4] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [1660] = { + [sym_comment] = STATE(1660), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [aux_sym_unquoted_token2] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1970), }, - [1635] = { - [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [aux_sym__val_number_token4] = ACTIONS(2246), - [aux_sym__val_number_token5] = ACTIONS(2246), - [aux_sym__val_number_token6] = ACTIONS(2246), - [anon_sym_0b] = ACTIONS(2246), - [anon_sym_0o] = ACTIONS(2246), - [anon_sym_0x] = ACTIONS(2246), - [sym_val_date] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [aux_sym_unquoted_token1] = ACTIONS(2246), - [aux_sym_unquoted_token4] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [1661] = { + [sym_comment] = STATE(1661), + [sym__newline] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5032), + [anon_sym_PIPE] = ACTIONS(5032), + [anon_sym_err_GT_PIPE] = ACTIONS(5032), + [anon_sym_out_GT_PIPE] = ACTIONS(5032), + [anon_sym_e_GT_PIPE] = ACTIONS(5032), + [anon_sym_o_GT_PIPE] = ACTIONS(5032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5032), + [anon_sym_LBRACK] = ACTIONS(5032), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_DASH_DASH] = ACTIONS(5032), + [anon_sym_DASH2] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5032), + [anon_sym_RBRACE] = ACTIONS(5032), + [anon_sym_DOT_DOT] = ACTIONS(5034), + [anon_sym_LPAREN2] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5032), + [anon_sym_DOT_DOT_LT] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), + [anon_sym_true] = ACTIONS(5032), + [anon_sym_false] = ACTIONS(5032), + [aux_sym__val_number_decimal_token1] = ACTIONS(5034), + [aux_sym__val_number_decimal_token2] = ACTIONS(5032), + [aux_sym__val_number_decimal_token3] = ACTIONS(5032), + [aux_sym__val_number_decimal_token4] = ACTIONS(5032), + [aux_sym__val_number_token1] = ACTIONS(5032), + [aux_sym__val_number_token2] = ACTIONS(5032), + [aux_sym__val_number_token3] = ACTIONS(5032), + [aux_sym__val_number_token4] = ACTIONS(5032), + [aux_sym__val_number_token5] = ACTIONS(5032), + [aux_sym__val_number_token6] = ACTIONS(5032), + [anon_sym_0b] = ACTIONS(5034), + [anon_sym_0o] = ACTIONS(5034), + [anon_sym_0x] = ACTIONS(5034), + [sym_val_date] = ACTIONS(5032), + [anon_sym_DQUOTE] = ACTIONS(5032), + [sym__str_single_quotes] = ACTIONS(5032), + [sym__str_back_ticks] = ACTIONS(5032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5032), + [anon_sym_err_GT] = ACTIONS(5034), + [anon_sym_out_GT] = ACTIONS(5034), + [anon_sym_e_GT] = ACTIONS(5034), + [anon_sym_o_GT] = ACTIONS(5034), + [anon_sym_err_PLUSout_GT] = ACTIONS(5034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5034), + [anon_sym_o_PLUSe_GT] = ACTIONS(5034), + [anon_sym_e_PLUSo_GT] = ACTIONS(5034), + [anon_sym_err_GT_GT] = ACTIONS(5032), + [anon_sym_out_GT_GT] = ACTIONS(5032), + [anon_sym_e_GT_GT] = ACTIONS(5032), + [anon_sym_o_GT_GT] = ACTIONS(5032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5032), + [aux_sym_unquoted_token1] = ACTIONS(5034), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5032), }, - [1636] = { - [sym_comment] = STATE(1636), - [sym__newline] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_err_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_GT_PIPE] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), + [1662] = { + [sym_cell_path] = STATE(2101), + [sym_path] = STATE(2085), + [sym_comment] = STATE(1662), + [aux_sym_cell_path_repeat1] = STATE(1838), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1475), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [anon_sym_DOT_DOT2] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(255), }, - [1637] = { - [sym_comment] = STATE(1637), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [1663] = { + [sym_comment] = STATE(1663), + [sym__newline] = ACTIONS(5038), + [anon_sym_SEMI] = ACTIONS(5038), + [anon_sym_PIPE] = ACTIONS(5038), + [anon_sym_err_GT_PIPE] = ACTIONS(5038), + [anon_sym_out_GT_PIPE] = ACTIONS(5038), + [anon_sym_e_GT_PIPE] = ACTIONS(5038), + [anon_sym_o_GT_PIPE] = ACTIONS(5038), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5038), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5038), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5038), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_RPAREN] = ACTIONS(5038), + [anon_sym_DOLLAR] = ACTIONS(5040), + [anon_sym_DASH_DASH] = ACTIONS(5038), + [anon_sym_DASH2] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_DOT_DOT] = ACTIONS(5040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), + [anon_sym_DOT_DOT_LT] = ACTIONS(5038), + [anon_sym_null] = ACTIONS(5038), + [anon_sym_true] = ACTIONS(5038), + [anon_sym_false] = ACTIONS(5038), + [aux_sym__val_number_decimal_token1] = ACTIONS(5040), + [aux_sym__val_number_decimal_token2] = ACTIONS(5038), + [aux_sym__val_number_decimal_token3] = ACTIONS(5038), + [aux_sym__val_number_decimal_token4] = ACTIONS(5038), + [aux_sym__val_number_token1] = ACTIONS(5038), + [aux_sym__val_number_token2] = ACTIONS(5038), + [aux_sym__val_number_token3] = ACTIONS(5038), + [aux_sym__val_number_token4] = ACTIONS(5038), + [aux_sym__val_number_token5] = ACTIONS(5038), + [aux_sym__val_number_token6] = ACTIONS(5038), + [anon_sym_0b] = ACTIONS(5040), + [anon_sym_0o] = ACTIONS(5040), + [anon_sym_0x] = ACTIONS(5040), + [sym_val_date] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [sym__str_single_quotes] = ACTIONS(5038), + [sym__str_back_ticks] = ACTIONS(5038), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5038), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5038), + [anon_sym_err_GT] = ACTIONS(5040), + [anon_sym_out_GT] = ACTIONS(5040), + [anon_sym_e_GT] = ACTIONS(5040), + [anon_sym_o_GT] = ACTIONS(5040), + [anon_sym_err_PLUSout_GT] = ACTIONS(5040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5040), + [anon_sym_o_PLUSe_GT] = ACTIONS(5040), + [anon_sym_e_PLUSo_GT] = ACTIONS(5040), + [anon_sym_err_GT_GT] = ACTIONS(5038), + [anon_sym_out_GT_GT] = ACTIONS(5038), + [anon_sym_e_GT_GT] = ACTIONS(5038), + [anon_sym_o_GT_GT] = ACTIONS(5038), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5038), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5038), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5038), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5038), + [anon_sym_EQ2] = ACTIONS(5042), + [aux_sym_unquoted_token1] = ACTIONS(5040), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5038), }, - [1638] = { - [sym__expr_parenthesized_immediate] = STATE(7675), - [sym_comment] = STATE(1638), - [sym__newline] = ACTIONS(4962), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4962), - [anon_sym_err_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_GT_PIPE] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4964), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_DOLLAR] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_DASH2] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4964), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), - [anon_sym_DOT_DOT_LT] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4962), - [anon_sym_true] = ACTIONS(4962), - [anon_sym_false] = ACTIONS(4962), - [aux_sym__val_number_decimal_token1] = ACTIONS(4964), - [aux_sym__val_number_decimal_token2] = ACTIONS(4962), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4962), - [aux_sym__val_number_token1] = ACTIONS(4962), - [aux_sym__val_number_token2] = ACTIONS(4962), - [aux_sym__val_number_token3] = ACTIONS(4962), - [aux_sym__val_number_token4] = ACTIONS(4962), - [aux_sym__val_number_token5] = ACTIONS(4962), - [aux_sym__val_number_token6] = ACTIONS(4962), - [anon_sym_0b] = ACTIONS(4964), - [anon_sym_0o] = ACTIONS(4964), - [anon_sym_0x] = ACTIONS(4964), - [sym_val_date] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [sym__str_single_quotes] = ACTIONS(4962), - [sym__str_back_ticks] = ACTIONS(4962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), - [anon_sym_err_GT] = ACTIONS(4964), - [anon_sym_out_GT] = ACTIONS(4964), - [anon_sym_e_GT] = ACTIONS(4964), - [anon_sym_o_GT] = ACTIONS(4964), - [anon_sym_err_PLUSout_GT] = ACTIONS(4964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), - [anon_sym_o_PLUSe_GT] = ACTIONS(4964), - [anon_sym_e_PLUSo_GT] = ACTIONS(4964), - [anon_sym_err_GT_GT] = ACTIONS(4962), - [anon_sym_out_GT_GT] = ACTIONS(4962), - [anon_sym_e_GT_GT] = ACTIONS(4962), - [anon_sym_o_GT_GT] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), - [aux_sym_unquoted_token1] = ACTIONS(4964), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4962), + [1664] = { + [sym_comment] = STATE(1664), + [sym__newline] = ACTIONS(5044), + [anon_sym_SEMI] = ACTIONS(5044), + [anon_sym_PIPE] = ACTIONS(5044), + [anon_sym_err_GT_PIPE] = ACTIONS(5044), + [anon_sym_out_GT_PIPE] = ACTIONS(5044), + [anon_sym_e_GT_PIPE] = ACTIONS(5044), + [anon_sym_o_GT_PIPE] = ACTIONS(5044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5044), + [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5044), + [anon_sym_DOLLAR] = ACTIONS(5046), + [anon_sym_DASH_DASH] = ACTIONS(5044), + [anon_sym_DASH2] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_RBRACE] = ACTIONS(5044), + [anon_sym_DOT_DOT] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5044), + [anon_sym_DOT_DOT_LT] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), + [anon_sym_true] = ACTIONS(5044), + [anon_sym_false] = ACTIONS(5044), + [aux_sym__val_number_decimal_token1] = ACTIONS(5046), + [aux_sym__val_number_decimal_token2] = ACTIONS(5044), + [aux_sym__val_number_decimal_token3] = ACTIONS(5044), + [aux_sym__val_number_decimal_token4] = ACTIONS(5044), + [aux_sym__val_number_token1] = ACTIONS(5044), + [aux_sym__val_number_token2] = ACTIONS(5044), + [aux_sym__val_number_token3] = ACTIONS(5044), + [aux_sym__val_number_token4] = ACTIONS(5044), + [aux_sym__val_number_token5] = ACTIONS(5044), + [aux_sym__val_number_token6] = ACTIONS(5044), + [anon_sym_0b] = ACTIONS(5046), + [anon_sym_0o] = ACTIONS(5046), + [anon_sym_0x] = ACTIONS(5046), + [sym_val_date] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(5044), + [sym__str_single_quotes] = ACTIONS(5044), + [sym__str_back_ticks] = ACTIONS(5044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5044), + [anon_sym_err_GT] = ACTIONS(5046), + [anon_sym_out_GT] = ACTIONS(5046), + [anon_sym_e_GT] = ACTIONS(5046), + [anon_sym_o_GT] = ACTIONS(5046), + [anon_sym_err_PLUSout_GT] = ACTIONS(5046), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5046), + [anon_sym_o_PLUSe_GT] = ACTIONS(5046), + [anon_sym_e_PLUSo_GT] = ACTIONS(5046), + [anon_sym_err_GT_GT] = ACTIONS(5044), + [anon_sym_out_GT_GT] = ACTIONS(5044), + [anon_sym_e_GT_GT] = ACTIONS(5044), + [anon_sym_o_GT_GT] = ACTIONS(5044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5044), + [aux_sym_unquoted_token1] = ACTIONS(5046), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5044), }, - [1639] = { - [sym_comment] = STATE(1639), - [sym_long_flag_identifier] = ACTIONS(4966), - [sym__newline] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_err_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_GT_PIPE] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4968), - [anon_sym_RPAREN] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4968), - [anon_sym_RBRACE] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), - [anon_sym_DOT_DOT_LT] = ACTIONS(4968), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4970), - [anon_sym_false] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(4970), - [aux_sym__val_number_decimal_token2] = ACTIONS(4968), - [aux_sym__val_number_decimal_token3] = ACTIONS(4968), - [aux_sym__val_number_decimal_token4] = ACTIONS(4968), - [aux_sym__val_number_token1] = ACTIONS(4970), - [aux_sym__val_number_token2] = ACTIONS(4970), - [aux_sym__val_number_token3] = ACTIONS(4970), - [aux_sym__val_number_token4] = ACTIONS(4970), - [aux_sym__val_number_token5] = ACTIONS(4968), - [aux_sym__val_number_token6] = ACTIONS(4970), - [anon_sym_0b] = ACTIONS(4970), - [anon_sym_0o] = ACTIONS(4970), - [anon_sym_0x] = ACTIONS(4970), - [sym_val_date] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4968), - [sym__str_single_quotes] = ACTIONS(4968), - [sym__str_back_ticks] = ACTIONS(4968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(4970), - [anon_sym_out_GT] = ACTIONS(4970), - [anon_sym_e_GT] = ACTIONS(4970), - [anon_sym_o_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT] = ACTIONS(4970), - [anon_sym_err_GT_GT] = ACTIONS(4968), - [anon_sym_out_GT_GT] = ACTIONS(4968), - [anon_sym_e_GT_GT] = ACTIONS(4968), - [anon_sym_o_GT_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), - [anon_sym_EQ2] = ACTIONS(4972), - [aux_sym_unquoted_token1] = ACTIONS(4970), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4968), + [1665] = { + [sym_comment] = STATE(1665), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_err_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_GT_PIPE] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_GT2] = ACTIONS(1556), + [anon_sym_DASH2] = ACTIONS(1558), + [anon_sym_in2] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ_GT] = ACTIONS(1558), + [anon_sym_STAR2] = ACTIONS(1556), + [anon_sym_and2] = ACTIONS(1558), + [anon_sym_xor2] = ACTIONS(1558), + [anon_sym_or2] = ACTIONS(1558), + [anon_sym_not_DASHin2] = ACTIONS(1558), + [anon_sym_starts_DASHwith2] = ACTIONS(1558), + [anon_sym_ends_DASHwith2] = ACTIONS(1558), + [anon_sym_EQ_EQ2] = ACTIONS(1558), + [anon_sym_BANG_EQ2] = ACTIONS(1558), + [anon_sym_LT2] = ACTIONS(1556), + [anon_sym_LT_EQ2] = ACTIONS(1558), + [anon_sym_GT_EQ2] = ACTIONS(1558), + [anon_sym_EQ_TILDE2] = ACTIONS(1558), + [anon_sym_BANG_TILDE2] = ACTIONS(1558), + [anon_sym_STAR_STAR2] = ACTIONS(1558), + [anon_sym_PLUS_PLUS2] = ACTIONS(1558), + [anon_sym_SLASH2] = ACTIONS(1556), + [anon_sym_mod2] = ACTIONS(1558), + [anon_sym_SLASH_SLASH2] = ACTIONS(1558), + [anon_sym_PLUS2] = ACTIONS(1556), + [anon_sym_bit_DASHshl2] = ACTIONS(1558), + [anon_sym_bit_DASHshr2] = ACTIONS(1558), + [anon_sym_bit_DASHand2] = ACTIONS(1558), + [anon_sym_bit_DASHxor2] = ACTIONS(1558), + [anon_sym_bit_DASHor2] = ACTIONS(1558), + [anon_sym_DOT_DOT2] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), + [anon_sym_err_GT] = ACTIONS(1556), + [anon_sym_out_GT] = ACTIONS(1556), + [anon_sym_e_GT] = ACTIONS(1556), + [anon_sym_o_GT] = ACTIONS(1556), + [anon_sym_err_PLUSout_GT] = ACTIONS(1556), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), + [anon_sym_o_PLUSe_GT] = ACTIONS(1556), + [anon_sym_e_PLUSo_GT] = ACTIONS(1556), + [anon_sym_err_GT_GT] = ACTIONS(1558), + [anon_sym_out_GT_GT] = ACTIONS(1558), + [anon_sym_e_GT_GT] = ACTIONS(1558), + [anon_sym_o_GT_GT] = ACTIONS(1558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(255), }, - [1640] = { - [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = ACTIONS(1046), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1044), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [aux_sym__val_number_token4] = ACTIONS(1046), - [aux_sym__val_number_token5] = ACTIONS(1046), - [aux_sym__val_number_token6] = ACTIONS(1046), - [anon_sym_0b] = ACTIONS(1044), - [anon_sym_0o] = ACTIONS(1044), - [anon_sym_0x] = ACTIONS(1044), - [sym_val_date] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [aux_sym_unquoted_token1] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1046), + [1666] = { + [sym_comment] = STATE(1666), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4763), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, - [1641] = { - [sym_comment] = STATE(1641), - [sym__newline] = ACTIONS(4974), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4974), - [anon_sym_err_GT_PIPE] = ACTIONS(4974), - [anon_sym_out_GT_PIPE] = ACTIONS(4974), - [anon_sym_e_GT_PIPE] = ACTIONS(4974), - [anon_sym_o_GT_PIPE] = ACTIONS(4974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_DOLLAR] = ACTIONS(4976), - [anon_sym_DASH_DASH] = ACTIONS(4976), - [anon_sym_DASH2] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), - [anon_sym_DOT_DOT_LT] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4976), - [anon_sym_true] = ACTIONS(4976), - [anon_sym_false] = ACTIONS(4976), - [aux_sym__val_number_decimal_token1] = ACTIONS(4976), - [aux_sym__val_number_decimal_token2] = ACTIONS(4976), - [aux_sym__val_number_decimal_token3] = ACTIONS(4974), - [aux_sym__val_number_decimal_token4] = ACTIONS(4974), - [aux_sym__val_number_token1] = ACTIONS(4976), - [aux_sym__val_number_token2] = ACTIONS(4976), - [aux_sym__val_number_token3] = ACTIONS(4976), - [aux_sym__val_number_token4] = ACTIONS(4976), - [aux_sym__val_number_token5] = ACTIONS(4976), - [aux_sym__val_number_token6] = ACTIONS(4976), - [anon_sym_0b] = ACTIONS(4976), - [anon_sym_0o] = ACTIONS(4976), - [anon_sym_0x] = ACTIONS(4976), - [sym_val_date] = ACTIONS(4976), - [anon_sym_DQUOTE] = ACTIONS(4974), - [sym__str_single_quotes] = ACTIONS(4974), - [sym__str_back_ticks] = ACTIONS(4974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4974), - [anon_sym_err_GT] = ACTIONS(4976), - [anon_sym_out_GT] = ACTIONS(4976), - [anon_sym_e_GT] = ACTIONS(4976), - [anon_sym_o_GT] = ACTIONS(4976), - [anon_sym_err_PLUSout_GT] = ACTIONS(4976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4976), - [anon_sym_o_PLUSe_GT] = ACTIONS(4976), - [anon_sym_e_PLUSo_GT] = ACTIONS(4976), - [anon_sym_err_GT_GT] = ACTIONS(4974), - [anon_sym_out_GT_GT] = ACTIONS(4974), - [anon_sym_e_GT_GT] = ACTIONS(4974), - [anon_sym_o_GT_GT] = ACTIONS(4974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4974), - [anon_sym_EQ2] = ACTIONS(4978), - [sym_short_flag_identifier] = ACTIONS(4980), - [aux_sym_unquoted_token1] = ACTIONS(4976), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4974), + [1667] = { + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_err_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_GT_PIPE] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2427), + [anon_sym_DOT_DOT_LT] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2427), + [aux_sym__val_number_token5] = ACTIONS(2427), + [aux_sym__val_number_token6] = ACTIONS(2427), + [anon_sym_0b] = ACTIONS(2423), + [anon_sym_0o] = ACTIONS(2423), + [anon_sym_0x] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(5048), + [sym_val_date] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2427), + [anon_sym_err_GT] = ACTIONS(2423), + [anon_sym_out_GT] = ACTIONS(2423), + [anon_sym_e_GT] = ACTIONS(2423), + [anon_sym_o_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT] = ACTIONS(2423), + [anon_sym_err_GT_GT] = ACTIONS(2427), + [anon_sym_out_GT_GT] = ACTIONS(2427), + [anon_sym_e_GT_GT] = ACTIONS(2427), + [anon_sym_o_GT_GT] = ACTIONS(2427), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2427), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2427), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2427), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2427), + [aux_sym_unquoted_token1] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2427), }, - [1642] = { - [sym_comment] = STATE(1642), - [ts_builtin_sym_end] = ACTIONS(2163), - [sym__newline] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_err_GT_PIPE] = ACTIONS(2163), - [anon_sym_out_GT_PIPE] = ACTIONS(2163), - [anon_sym_e_GT_PIPE] = ACTIONS(2163), - [anon_sym_o_GT_PIPE] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_DASH2] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_DOT_DOT2] = ACTIONS(4982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), - [anon_sym_DOT_DOT_LT] = ACTIONS(2157), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2157), - [aux_sym__val_number_decimal_token2] = ACTIONS(2163), - [aux_sym__val_number_decimal_token3] = ACTIONS(2163), - [aux_sym__val_number_decimal_token4] = ACTIONS(2163), - [aux_sym__val_number_token1] = ACTIONS(2163), - [aux_sym__val_number_token2] = ACTIONS(2163), - [aux_sym__val_number_token3] = ACTIONS(2163), - [aux_sym__val_number_token4] = ACTIONS(2163), - [aux_sym__val_number_token5] = ACTIONS(2163), - [aux_sym__val_number_token6] = ACTIONS(2163), - [anon_sym_0b] = ACTIONS(2157), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2163), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2163), - [anon_sym_err_GT] = ACTIONS(2157), - [anon_sym_out_GT] = ACTIONS(2157), - [anon_sym_e_GT] = ACTIONS(2157), - [anon_sym_o_GT] = ACTIONS(2157), - [anon_sym_err_PLUSout_GT] = ACTIONS(2157), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2157), - [anon_sym_o_PLUSe_GT] = ACTIONS(2157), - [anon_sym_e_PLUSo_GT] = ACTIONS(2157), - [anon_sym_err_GT_GT] = ACTIONS(2163), - [anon_sym_out_GT_GT] = ACTIONS(2163), - [anon_sym_e_GT_GT] = ACTIONS(2163), - [anon_sym_o_GT_GT] = ACTIONS(2163), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), - [aux_sym_unquoted_token1] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2163), + [1668] = { + [sym_cell_path] = STATE(1726), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1668), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1884), + [anon_sym_in2] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1884), + [anon_sym_xor2] = ACTIONS(1884), + [anon_sym_or2] = ACTIONS(1884), + [anon_sym_not_DASHin2] = ACTIONS(1884), + [anon_sym_starts_DASHwith2] = ACTIONS(1884), + [anon_sym_ends_DASHwith2] = ACTIONS(1884), + [anon_sym_EQ_EQ2] = ACTIONS(1884), + [anon_sym_BANG_EQ2] = ACTIONS(1884), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1884), + [anon_sym_GT_EQ2] = ACTIONS(1884), + [anon_sym_EQ_TILDE2] = ACTIONS(1884), + [anon_sym_BANG_TILDE2] = ACTIONS(1884), + [anon_sym_STAR_STAR2] = ACTIONS(1884), + [anon_sym_PLUS_PLUS2] = ACTIONS(1884), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1884), + [anon_sym_SLASH_SLASH2] = ACTIONS(1884), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1884), + [anon_sym_bit_DASHshr2] = ACTIONS(1884), + [anon_sym_bit_DASHand2] = ACTIONS(1884), + [anon_sym_bit_DASHxor2] = ACTIONS(1884), + [anon_sym_bit_DASHor2] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(255), }, - [1643] = { - [sym_path] = STATE(1615), - [sym_comment] = STATE(1643), - [aux_sym_cell_path_repeat1] = STATE(1586), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [1669] = { + [sym_comment] = STATE(1669), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1524), + [aux_sym__val_number_decimal_token3] = ACTIONS(1524), + [aux_sym__val_number_decimal_token4] = ACTIONS(1524), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [aux_sym__val_number_token4] = ACTIONS(1524), + [aux_sym__val_number_token5] = ACTIONS(1524), + [aux_sym__val_number_token6] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1524), }, - [1644] = { - [sym_comment] = STATE(1644), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2268), - [anon_sym_LPAREN2] = ACTIONS(2270), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), - [anon_sym_DOT_DOT_LT] = ACTIONS(2268), - [anon_sym_null] = ACTIONS(2268), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [aux_sym__val_number_decimal_token1] = ACTIONS(2268), - [aux_sym__val_number_decimal_token2] = ACTIONS(2268), - [aux_sym__val_number_decimal_token3] = ACTIONS(2268), - [aux_sym__val_number_decimal_token4] = ACTIONS(2268), - [aux_sym__val_number_token1] = ACTIONS(2268), - [aux_sym__val_number_token2] = ACTIONS(2268), - [aux_sym__val_number_token3] = ACTIONS(2268), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_0b] = ACTIONS(2268), - [anon_sym_0o] = ACTIONS(2268), - [anon_sym_0x] = ACTIONS(2268), - [sym_val_date] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2268), - [anon_sym_out_GT] = ACTIONS(2268), - [anon_sym_e_GT] = ACTIONS(2268), - [anon_sym_o_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT] = ACTIONS(2268), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), - [aux_sym_unquoted_token1] = ACTIONS(2268), - [aux_sym_unquoted_token4] = ACTIONS(2268), + [1670] = { + [sym_comment] = STATE(1670), + [sym__newline] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_err_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_GT_PIPE] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2337), + [anon_sym_DOT_DOT_LT] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_0b] = ACTIONS(2337), + [anon_sym_0o] = ACTIONS(2337), + [anon_sym_0x] = ACTIONS(2337), + [sym_val_date] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), + [anon_sym_err_GT] = ACTIONS(2337), + [anon_sym_out_GT] = ACTIONS(2337), + [anon_sym_e_GT] = ACTIONS(2337), + [anon_sym_o_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT] = ACTIONS(2337), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [aux_sym_unquoted_token1] = ACTIONS(2337), + [aux_sym_unquoted_token4] = ACTIONS(2343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [aux_sym__immediate_decimal_token2] = ACTIONS(4831), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - }, - [1646] = { - [sym_comment] = STATE(1646), - [sym__newline] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_err_GT_PIPE] = ACTIONS(2807), - [anon_sym_out_GT_PIPE] = ACTIONS(2807), - [anon_sym_e_GT_PIPE] = ACTIONS(2807), - [anon_sym_o_GT_PIPE] = ACTIONS(2807), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2807), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2807), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2807), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_DOLLAR] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [anon_sym_DASH2] = ACTIONS(4986), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_DOT_DOT2] = ACTIONS(4833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT] = ACTIONS(4986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), - [anon_sym_null] = ACTIONS(2807), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [aux_sym__val_number_decimal_token1] = ACTIONS(4986), - [aux_sym__val_number_decimal_token2] = ACTIONS(2807), - [aux_sym__val_number_decimal_token3] = ACTIONS(2807), - [aux_sym__val_number_decimal_token4] = ACTIONS(2807), - [aux_sym__val_number_token1] = ACTIONS(2807), - [aux_sym__val_number_token2] = ACTIONS(2807), - [aux_sym__val_number_token3] = ACTIONS(2807), - [aux_sym__val_number_token4] = ACTIONS(2807), - [aux_sym__val_number_token5] = ACTIONS(2807), - [aux_sym__val_number_token6] = ACTIONS(2807), - [anon_sym_0b] = ACTIONS(4986), - [anon_sym_0o] = ACTIONS(4986), - [anon_sym_0x] = ACTIONS(4986), - [sym_val_date] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [sym__str_single_quotes] = ACTIONS(2807), - [sym__str_back_ticks] = ACTIONS(2807), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2807), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), - [anon_sym_err_GT] = ACTIONS(4986), - [anon_sym_out_GT] = ACTIONS(4986), - [anon_sym_e_GT] = ACTIONS(4986), - [anon_sym_o_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT] = ACTIONS(4986), - [anon_sym_err_GT_GT] = ACTIONS(2807), - [anon_sym_out_GT_GT] = ACTIONS(2807), - [anon_sym_e_GT_GT] = ACTIONS(2807), - [anon_sym_o_GT_GT] = ACTIONS(2807), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2807), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2807), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2807), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2807), - [aux_sym_unquoted_token1] = ACTIONS(4986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2807), - }, - [1647] = { - [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(2341), }, - [1648] = { - [sym_cell_path] = STATE(2050), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1648), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_GT2] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1873), - [anon_sym_in2] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_EQ_GT] = ACTIONS(1873), - [anon_sym_STAR2] = ACTIONS(1871), - [anon_sym_and2] = ACTIONS(1873), - [anon_sym_xor2] = ACTIONS(1873), - [anon_sym_or2] = ACTIONS(1873), - [anon_sym_not_DASHin2] = ACTIONS(1873), - [anon_sym_starts_DASHwith2] = ACTIONS(1873), - [anon_sym_ends_DASHwith2] = ACTIONS(1873), - [anon_sym_EQ_EQ2] = ACTIONS(1873), - [anon_sym_BANG_EQ2] = ACTIONS(1873), - [anon_sym_LT2] = ACTIONS(1871), - [anon_sym_LT_EQ2] = ACTIONS(1873), - [anon_sym_GT_EQ2] = ACTIONS(1873), - [anon_sym_EQ_TILDE2] = ACTIONS(1873), - [anon_sym_BANG_TILDE2] = ACTIONS(1873), - [anon_sym_STAR_STAR2] = ACTIONS(1873), - [anon_sym_PLUS_PLUS2] = ACTIONS(1873), - [anon_sym_SLASH2] = ACTIONS(1871), - [anon_sym_mod2] = ACTIONS(1873), - [anon_sym_SLASH_SLASH2] = ACTIONS(1873), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_bit_DASHshl2] = ACTIONS(1873), - [anon_sym_bit_DASHshr2] = ACTIONS(1873), - [anon_sym_bit_DASHand2] = ACTIONS(1873), - [anon_sym_bit_DASHxor2] = ACTIONS(1873), - [anon_sym_bit_DASHor2] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(247), + [1671] = { + [sym_cell_path] = STATE(1704), + [sym_path] = STATE(1909), + [sym_comment] = STATE(1671), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_in2] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1886), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1886), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1886), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), }, - [1649] = { - [sym_comment] = STATE(1649), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4988), - [aux_sym__immediate_decimal_token2] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [1672] = { + [sym__expr_parenthesized_immediate] = STATE(7966), + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(4947), + [sym__newline] = ACTIONS(4947), + [anon_sym_SEMI] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_err_GT_PIPE] = ACTIONS(4947), + [anon_sym_out_GT_PIPE] = ACTIONS(4947), + [anon_sym_e_GT_PIPE] = ACTIONS(4947), + [anon_sym_o_GT_PIPE] = ACTIONS(4947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4947), + [anon_sym_LBRACK] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4949), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_DASH2] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4947), + [anon_sym_DOT_DOT] = ACTIONS(4949), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4947), + [anon_sym_DOT_DOT_LT] = ACTIONS(4947), + [anon_sym_null] = ACTIONS(4947), + [anon_sym_true] = ACTIONS(4947), + [anon_sym_false] = ACTIONS(4947), + [aux_sym__val_number_decimal_token1] = ACTIONS(4949), + [aux_sym__val_number_decimal_token2] = ACTIONS(4947), + [aux_sym__val_number_decimal_token3] = ACTIONS(4947), + [aux_sym__val_number_decimal_token4] = ACTIONS(4947), + [aux_sym__val_number_token1] = ACTIONS(4947), + [aux_sym__val_number_token2] = ACTIONS(4947), + [aux_sym__val_number_token3] = ACTIONS(4947), + [aux_sym__val_number_token4] = ACTIONS(4947), + [aux_sym__val_number_token5] = ACTIONS(4947), + [aux_sym__val_number_token6] = ACTIONS(4947), + [anon_sym_0b] = ACTIONS(4949), + [anon_sym_0o] = ACTIONS(4949), + [anon_sym_0x] = ACTIONS(4949), + [sym_val_date] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [sym__str_single_quotes] = ACTIONS(4947), + [sym__str_back_ticks] = ACTIONS(4947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4947), + [anon_sym_err_GT] = ACTIONS(4949), + [anon_sym_out_GT] = ACTIONS(4949), + [anon_sym_e_GT] = ACTIONS(4949), + [anon_sym_o_GT] = ACTIONS(4949), + [anon_sym_err_PLUSout_GT] = ACTIONS(4949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4949), + [anon_sym_o_PLUSe_GT] = ACTIONS(4949), + [anon_sym_e_PLUSo_GT] = ACTIONS(4949), + [anon_sym_err_GT_GT] = ACTIONS(4947), + [anon_sym_out_GT_GT] = ACTIONS(4947), + [anon_sym_e_GT_GT] = ACTIONS(4947), + [anon_sym_o_GT_GT] = ACTIONS(4947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4947), + [aux_sym_unquoted_token1] = ACTIONS(4949), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4947), }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_DOT_DOT2] = ACTIONS(4992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4994), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym__val_number_decimal_token1] = ACTIONS(2122), - [aux_sym__val_number_decimal_token2] = ACTIONS(2128), - [aux_sym__val_number_decimal_token3] = ACTIONS(2128), - [aux_sym__val_number_decimal_token4] = ACTIONS(2128), - [aux_sym__val_number_token1] = ACTIONS(2128), - [aux_sym__val_number_token2] = ACTIONS(2128), - [aux_sym__val_number_token3] = ACTIONS(2128), - [aux_sym__val_number_token4] = ACTIONS(2128), - [aux_sym__val_number_token5] = ACTIONS(2128), - [aux_sym__val_number_token6] = ACTIONS(2128), - [anon_sym_0b] = ACTIONS(2122), - [anon_sym_0o] = ACTIONS(2122), - [anon_sym_0x] = ACTIONS(2122), - [sym_val_date] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym__str_single_quotes] = ACTIONS(2128), - [sym__str_back_ticks] = ACTIONS(2128), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [aux_sym_unquoted_token1] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2128), + [1673] = { + [sym__expr_parenthesized_immediate] = STATE(7966), + [sym_comment] = STATE(1673), + [ts_builtin_sym_end] = ACTIONS(4951), + [sym__newline] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_err_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_GT_PIPE] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_DASH2] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), + [anon_sym_DOT_DOT_LT] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [anon_sym_true] = ACTIONS(4951), + [anon_sym_false] = ACTIONS(4951), + [aux_sym__val_number_decimal_token1] = ACTIONS(4953), + [aux_sym__val_number_decimal_token2] = ACTIONS(4951), + [aux_sym__val_number_decimal_token3] = ACTIONS(4951), + [aux_sym__val_number_decimal_token4] = ACTIONS(4951), + [aux_sym__val_number_token1] = ACTIONS(4951), + [aux_sym__val_number_token2] = ACTIONS(4951), + [aux_sym__val_number_token3] = ACTIONS(4951), + [aux_sym__val_number_token4] = ACTIONS(4951), + [aux_sym__val_number_token5] = ACTIONS(4951), + [aux_sym__val_number_token6] = ACTIONS(4951), + [anon_sym_0b] = ACTIONS(4953), + [anon_sym_0o] = ACTIONS(4953), + [anon_sym_0x] = ACTIONS(4953), + [sym_val_date] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [sym__str_single_quotes] = ACTIONS(4951), + [sym__str_back_ticks] = ACTIONS(4951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_err_GT] = ACTIONS(4953), + [anon_sym_out_GT] = ACTIONS(4953), + [anon_sym_e_GT] = ACTIONS(4953), + [anon_sym_o_GT] = ACTIONS(4953), + [anon_sym_err_PLUSout_GT] = ACTIONS(4953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), + [anon_sym_o_PLUSe_GT] = ACTIONS(4953), + [anon_sym_e_PLUSo_GT] = ACTIONS(4953), + [anon_sym_err_GT_GT] = ACTIONS(4951), + [anon_sym_out_GT_GT] = ACTIONS(4951), + [anon_sym_e_GT_GT] = ACTIONS(4951), + [anon_sym_o_GT_GT] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), + [aux_sym_unquoted_token1] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4951), }, - [1651] = { - [sym_cell_path] = STATE(2012), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1651), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_err_GT_PIPE] = ACTIONS(2028), - [anon_sym_out_GT_PIPE] = ACTIONS(2028), - [anon_sym_e_GT_PIPE] = ACTIONS(2028), - [anon_sym_o_GT_PIPE] = ACTIONS(2028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_GT2] = ACTIONS(2026), - [anon_sym_DASH2] = ACTIONS(2028), - [anon_sym_in2] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_EQ_GT] = ACTIONS(2028), - [anon_sym_STAR2] = ACTIONS(2026), - [anon_sym_and2] = ACTIONS(2028), - [anon_sym_xor2] = ACTIONS(2028), - [anon_sym_or2] = ACTIONS(2028), - [anon_sym_not_DASHin2] = ACTIONS(2028), - [anon_sym_starts_DASHwith2] = ACTIONS(2028), - [anon_sym_ends_DASHwith2] = ACTIONS(2028), - [anon_sym_EQ_EQ2] = ACTIONS(2028), - [anon_sym_BANG_EQ2] = ACTIONS(2028), - [anon_sym_LT2] = ACTIONS(2026), - [anon_sym_LT_EQ2] = ACTIONS(2028), - [anon_sym_GT_EQ2] = ACTIONS(2028), - [anon_sym_EQ_TILDE2] = ACTIONS(2028), - [anon_sym_BANG_TILDE2] = ACTIONS(2028), - [anon_sym_STAR_STAR2] = ACTIONS(2028), - [anon_sym_PLUS_PLUS2] = ACTIONS(2028), - [anon_sym_SLASH2] = ACTIONS(2026), - [anon_sym_mod2] = ACTIONS(2028), - [anon_sym_SLASH_SLASH2] = ACTIONS(2028), - [anon_sym_PLUS2] = ACTIONS(2026), - [anon_sym_bit_DASHshl2] = ACTIONS(2028), - [anon_sym_bit_DASHshr2] = ACTIONS(2028), - [anon_sym_bit_DASHand2] = ACTIONS(2028), - [anon_sym_bit_DASHxor2] = ACTIONS(2028), - [anon_sym_bit_DASHor2] = ACTIONS(2028), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(2026), - [anon_sym_out_GT] = ACTIONS(2026), - [anon_sym_e_GT] = ACTIONS(2026), - [anon_sym_o_GT] = ACTIONS(2026), - [anon_sym_err_PLUSout_GT] = ACTIONS(2026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), - [anon_sym_o_PLUSe_GT] = ACTIONS(2026), - [anon_sym_e_PLUSo_GT] = ACTIONS(2026), - [anon_sym_err_GT_GT] = ACTIONS(2028), - [anon_sym_out_GT_GT] = ACTIONS(2028), - [anon_sym_e_GT_GT] = ACTIONS(2028), - [anon_sym_o_GT_GT] = ACTIONS(2028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(247), + [1674] = { + [sym_comment] = STATE(1674), + [sym__newline] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_err_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_GT_PIPE] = ACTIONS(2349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2345), + [anon_sym_DOT_DOT_LT] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [aux_sym__val_number_token4] = ACTIONS(2345), + [aux_sym__val_number_token5] = ACTIONS(2345), + [aux_sym__val_number_token6] = ACTIONS(2345), + [anon_sym_0b] = ACTIONS(2345), + [anon_sym_0o] = ACTIONS(2345), + [anon_sym_0x] = ACTIONS(2345), + [sym_val_date] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [aux_sym_unquoted_token1] = ACTIONS(2345), + [aux_sym_unquoted_token4] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2349), }, - [1652] = { - [sym_comment] = STATE(1652), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_EQ_GT] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), + [1675] = { + [sym_comment] = STATE(1675), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2353), + [anon_sym_DOT_DOT_LT] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2353), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2353), + [aux_sym__val_number_token5] = ACTIONS(2353), + [aux_sym__val_number_token6] = ACTIONS(2353), + [anon_sym_0b] = ACTIONS(2353), + [anon_sym_0o] = ACTIONS(2353), + [anon_sym_0x] = ACTIONS(2353), + [sym_val_date] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2355), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [aux_sym_unquoted_token1] = ACTIONS(2353), + [aux_sym_unquoted_token4] = ACTIONS(2351), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2355), }, - [1653] = { - [sym__expr_parenthesized_immediate] = STATE(8105), - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(4932), - [sym__newline] = ACTIONS(4932), - [anon_sym_SEMI] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4932), - [anon_sym_err_GT_PIPE] = ACTIONS(4932), - [anon_sym_out_GT_PIPE] = ACTIONS(4932), - [anon_sym_e_GT_PIPE] = ACTIONS(4932), - [anon_sym_o_GT_PIPE] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4934), - [anon_sym_DOLLAR] = ACTIONS(4934), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_DASH2] = ACTIONS(4934), - [anon_sym_LBRACE] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), - [anon_sym_DOT_DOT_LT] = ACTIONS(4932), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [aux_sym__val_number_decimal_token1] = ACTIONS(4934), - [aux_sym__val_number_decimal_token2] = ACTIONS(4932), - [aux_sym__val_number_decimal_token3] = ACTIONS(4932), - [aux_sym__val_number_decimal_token4] = ACTIONS(4932), - [aux_sym__val_number_token1] = ACTIONS(4932), - [aux_sym__val_number_token2] = ACTIONS(4932), - [aux_sym__val_number_token3] = ACTIONS(4932), - [aux_sym__val_number_token4] = ACTIONS(4932), - [aux_sym__val_number_token5] = ACTIONS(4932), - [aux_sym__val_number_token6] = ACTIONS(4932), - [anon_sym_0b] = ACTIONS(4934), - [anon_sym_0o] = ACTIONS(4934), - [anon_sym_0x] = ACTIONS(4934), - [sym_val_date] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4932), - [sym__str_single_quotes] = ACTIONS(4932), - [sym__str_back_ticks] = ACTIONS(4932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4932), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_err_GT] = ACTIONS(4934), - [anon_sym_out_GT] = ACTIONS(4934), - [anon_sym_e_GT] = ACTIONS(4934), - [anon_sym_o_GT] = ACTIONS(4934), - [anon_sym_err_PLUSout_GT] = ACTIONS(4934), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4934), - [anon_sym_o_PLUSe_GT] = ACTIONS(4934), - [anon_sym_e_PLUSo_GT] = ACTIONS(4934), - [anon_sym_err_GT_GT] = ACTIONS(4932), - [anon_sym_out_GT_GT] = ACTIONS(4932), - [anon_sym_e_GT_GT] = ACTIONS(4932), - [anon_sym_o_GT_GT] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4932), - [aux_sym_unquoted_token1] = ACTIONS(4934), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4932), + [1676] = { + [sym_cell_path] = STATE(2116), + [sym_path] = STATE(2085), + [sym_comment] = STATE(1676), + [aux_sym_cell_path_repeat1] = STATE(1838), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_in2] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1886), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1886), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1886), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), }, - [1654] = { - [sym__expr_parenthesized_immediate] = STATE(8105), - [sym_comment] = STATE(1654), + [1677] = { + [sym__expr_parenthesized_immediate] = STATE(7966), + [sym_comment] = STATE(1677), [ts_builtin_sym_end] = ACTIONS(4936), [sym__newline] = ACTIONS(4936), [anon_sym_SEMI] = ACTIONS(4936), @@ -226948,7 +366559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(4938), [anon_sym_LBRACE] = ACTIONS(4936), [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_LPAREN2] = ACTIONS(4281), [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), [anon_sym_DOT_DOT_LT] = ACTIONS(4936), [anon_sym_null] = ACTIONS(4936), @@ -226990,4844 +366601,3715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), [aux_sym_unquoted_token1] = ACTIONS(4938), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(255), [sym_raw_string_begin] = ACTIONS(4936), }, - [1655] = { - [sym_comment] = STATE(1655), - [sym__newline] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4996), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_err_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_GT_PIPE] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_RPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4996), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4996), - [anon_sym_RBRACE] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4996), - [anon_sym_DOT_DOT_LT] = ACTIONS(4996), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [aux_sym__val_number_decimal_token1] = ACTIONS(4998), - [aux_sym__val_number_decimal_token2] = ACTIONS(4996), - [aux_sym__val_number_decimal_token3] = ACTIONS(4996), - [aux_sym__val_number_decimal_token4] = ACTIONS(4996), - [aux_sym__val_number_token1] = ACTIONS(4996), - [aux_sym__val_number_token2] = ACTIONS(4996), - [aux_sym__val_number_token3] = ACTIONS(4996), - [aux_sym__val_number_token4] = ACTIONS(4996), - [aux_sym__val_number_token5] = ACTIONS(4996), - [aux_sym__val_number_token6] = ACTIONS(4996), - [anon_sym_0b] = ACTIONS(4998), - [anon_sym_0o] = ACTIONS(4998), - [anon_sym_0x] = ACTIONS(4998), - [sym_val_date] = ACTIONS(4996), - [anon_sym_DQUOTE] = ACTIONS(4996), - [sym__str_single_quotes] = ACTIONS(4996), - [sym__str_back_ticks] = ACTIONS(4996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4996), - [anon_sym_err_GT] = ACTIONS(4998), - [anon_sym_out_GT] = ACTIONS(4998), - [anon_sym_e_GT] = ACTIONS(4998), - [anon_sym_o_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT] = ACTIONS(4998), - [anon_sym_err_GT_GT] = ACTIONS(4996), - [anon_sym_out_GT_GT] = ACTIONS(4996), - [anon_sym_e_GT_GT] = ACTIONS(4996), - [anon_sym_o_GT_GT] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4996), - [anon_sym_EQ2] = ACTIONS(5000), - [aux_sym_unquoted_token1] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4996), - }, - [1656] = { - [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2268), - [anon_sym_LPAREN2] = ACTIONS(2270), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), - [anon_sym_DOT_DOT_LT] = ACTIONS(2268), - [anon_sym_null] = ACTIONS(2268), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [aux_sym__val_number_decimal_token1] = ACTIONS(2268), - [aux_sym__val_number_decimal_token2] = ACTIONS(2268), - [aux_sym__val_number_decimal_token3] = ACTIONS(2268), - [aux_sym__val_number_decimal_token4] = ACTIONS(2268), - [aux_sym__val_number_token1] = ACTIONS(2268), - [aux_sym__val_number_token2] = ACTIONS(2268), - [aux_sym__val_number_token3] = ACTIONS(2268), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_0b] = ACTIONS(2268), - [anon_sym_0o] = ACTIONS(2268), - [anon_sym_0x] = ACTIONS(2268), - [sym_val_date] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2268), - [anon_sym_out_GT] = ACTIONS(2268), - [anon_sym_e_GT] = ACTIONS(2268), - [anon_sym_o_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT] = ACTIONS(2268), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), - [aux_sym_unquoted_token1] = ACTIONS(2268), - [aux_sym_unquoted_token4] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym__newline] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_err_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_GT_PIPE] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), - }, - [1658] = { - [sym_cell_path] = STATE(2094), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1658), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_GT2] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_EQ_GT] = ACTIONS(1851), - [anon_sym_STAR2] = ACTIONS(1847), - [anon_sym_and2] = ACTIONS(1851), - [anon_sym_xor2] = ACTIONS(1851), - [anon_sym_or2] = ACTIONS(1851), - [anon_sym_not_DASHin2] = ACTIONS(1851), - [anon_sym_starts_DASHwith2] = ACTIONS(1851), - [anon_sym_ends_DASHwith2] = ACTIONS(1851), - [anon_sym_EQ_EQ2] = ACTIONS(1851), - [anon_sym_BANG_EQ2] = ACTIONS(1851), - [anon_sym_LT2] = ACTIONS(1847), - [anon_sym_LT_EQ2] = ACTIONS(1851), - [anon_sym_GT_EQ2] = ACTIONS(1851), - [anon_sym_EQ_TILDE2] = ACTIONS(1851), - [anon_sym_BANG_TILDE2] = ACTIONS(1851), - [anon_sym_STAR_STAR2] = ACTIONS(1851), - [anon_sym_PLUS_PLUS2] = ACTIONS(1851), - [anon_sym_SLASH2] = ACTIONS(1847), - [anon_sym_mod2] = ACTIONS(1851), - [anon_sym_SLASH_SLASH2] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_bit_DASHshl2] = ACTIONS(1851), - [anon_sym_bit_DASHshr2] = ACTIONS(1851), - [anon_sym_bit_DASHand2] = ACTIONS(1851), - [anon_sym_bit_DASHxor2] = ACTIONS(1851), - [anon_sym_bit_DASHor2] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(247), - }, - [1659] = { - [sym_path] = STATE(1947), - [sym_comment] = STATE(1659), - [aux_sym_cell_path_repeat1] = STATE(1664), - [sym__newline] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4911), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [aux_sym_record_entry_token1] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), - }, - [1660] = { - [sym_comment] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_err_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_GT_PIPE] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), - [anon_sym_GT2] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_STAR2] = ACTIONS(1573), - [anon_sym_and2] = ACTIONS(1575), - [anon_sym_xor2] = ACTIONS(1575), - [anon_sym_or2] = ACTIONS(1575), - [anon_sym_not_DASHin2] = ACTIONS(1575), - [anon_sym_starts_DASHwith2] = ACTIONS(1575), - [anon_sym_ends_DASHwith2] = ACTIONS(1575), - [anon_sym_EQ_EQ2] = ACTIONS(1575), - [anon_sym_BANG_EQ2] = ACTIONS(1575), - [anon_sym_LT2] = ACTIONS(1573), - [anon_sym_LT_EQ2] = ACTIONS(1575), - [anon_sym_GT_EQ2] = ACTIONS(1575), - [anon_sym_EQ_TILDE2] = ACTIONS(1575), - [anon_sym_BANG_TILDE2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_STAR_STAR2] = ACTIONS(1575), - [anon_sym_PLUS_PLUS2] = ACTIONS(1575), - [anon_sym_SLASH2] = ACTIONS(1573), - [anon_sym_mod2] = ACTIONS(1575), - [anon_sym_SLASH_SLASH2] = ACTIONS(1575), - [anon_sym_PLUS2] = ACTIONS(1573), - [anon_sym_bit_DASHshl2] = ACTIONS(1575), - [anon_sym_bit_DASHshr2] = ACTIONS(1575), - [anon_sym_bit_DASHand2] = ACTIONS(1575), - [anon_sym_bit_DASHxor2] = ACTIONS(1575), - [anon_sym_bit_DASHor2] = ACTIONS(1575), - [anon_sym_DOT_DOT2] = ACTIONS(1573), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), - [sym_filesize_unit] = ACTIONS(1573), - [sym_duration_unit] = ACTIONS(1575), - [anon_sym_err_GT] = ACTIONS(1573), - [anon_sym_out_GT] = ACTIONS(1573), - [anon_sym_e_GT] = ACTIONS(1573), - [anon_sym_o_GT] = ACTIONS(1573), - [anon_sym_err_PLUSout_GT] = ACTIONS(1573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), - [anon_sym_o_PLUSe_GT] = ACTIONS(1573), - [anon_sym_e_PLUSo_GT] = ACTIONS(1573), - [anon_sym_err_GT_GT] = ACTIONS(1575), - [anon_sym_out_GT_GT] = ACTIONS(1575), - [anon_sym_e_GT_GT] = ACTIONS(1575), - [anon_sym_o_GT_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), - [aux_sym_unquoted_token2] = ACTIONS(1573), - [anon_sym_POUND] = ACTIONS(247), - }, - [1661] = { - [sym__expr_parenthesized_immediate] = STATE(7675), - [sym_comment] = STATE(1661), - [sym__newline] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5002), - [anon_sym_err_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_GT_PIPE] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5004), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_DOLLAR] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_DASH2] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), - [anon_sym_DOT_DOT_LT] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5002), - [anon_sym_false] = ACTIONS(5002), - [aux_sym__val_number_decimal_token1] = ACTIONS(5004), - [aux_sym__val_number_decimal_token2] = ACTIONS(5002), - [aux_sym__val_number_decimal_token3] = ACTIONS(5002), - [aux_sym__val_number_decimal_token4] = ACTIONS(5002), - [aux_sym__val_number_token1] = ACTIONS(5002), - [aux_sym__val_number_token2] = ACTIONS(5002), - [aux_sym__val_number_token3] = ACTIONS(5002), - [aux_sym__val_number_token4] = ACTIONS(5002), - [aux_sym__val_number_token5] = ACTIONS(5002), - [aux_sym__val_number_token6] = ACTIONS(5002), - [anon_sym_0b] = ACTIONS(5004), - [anon_sym_0o] = ACTIONS(5004), - [anon_sym_0x] = ACTIONS(5004), - [sym_val_date] = ACTIONS(5002), - [anon_sym_DQUOTE] = ACTIONS(5002), - [sym__str_single_quotes] = ACTIONS(5002), - [sym__str_back_ticks] = ACTIONS(5002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5002), - [anon_sym_err_GT] = ACTIONS(5004), - [anon_sym_out_GT] = ACTIONS(5004), - [anon_sym_e_GT] = ACTIONS(5004), - [anon_sym_o_GT] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT] = ACTIONS(5004), - [anon_sym_err_GT_GT] = ACTIONS(5002), - [anon_sym_out_GT_GT] = ACTIONS(5002), - [anon_sym_e_GT_GT] = ACTIONS(5002), - [anon_sym_o_GT_GT] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5002), - [aux_sym_unquoted_token1] = ACTIONS(5004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5002), - }, - [1662] = { - [sym_cell_path] = STATE(1722), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1662), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_EQ_GT] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - }, - [1663] = { - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1664] = { - [sym_path] = STATE(1947), - [sym_comment] = STATE(1664), - [aux_sym_cell_path_repeat1] = STATE(1664), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(5006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [aux_sym_record_entry_token1] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - }, - [1665] = { - [sym__expr_parenthesized_immediate] = STATE(7675), - [sym_comment] = STATE(1665), - [sym__newline] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(5009), - [anon_sym_PIPE] = ACTIONS(5009), - [anon_sym_err_GT_PIPE] = ACTIONS(5009), - [anon_sym_out_GT_PIPE] = ACTIONS(5009), - [anon_sym_e_GT_PIPE] = ACTIONS(5009), - [anon_sym_o_GT_PIPE] = ACTIONS(5009), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5009), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5009), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5009), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH2] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5009), - [anon_sym_DOT_DOT] = ACTIONS(5011), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5009), - [anon_sym_DOT_DOT_LT] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5009), - [anon_sym_true] = ACTIONS(5009), - [anon_sym_false] = ACTIONS(5009), - [aux_sym__val_number_decimal_token1] = ACTIONS(5011), - [aux_sym__val_number_decimal_token2] = ACTIONS(5009), - [aux_sym__val_number_decimal_token3] = ACTIONS(5009), - [aux_sym__val_number_decimal_token4] = ACTIONS(5009), - [aux_sym__val_number_token1] = ACTIONS(5009), - [aux_sym__val_number_token2] = ACTIONS(5009), - [aux_sym__val_number_token3] = ACTIONS(5009), - [aux_sym__val_number_token4] = ACTIONS(5009), - [aux_sym__val_number_token5] = ACTIONS(5009), - [aux_sym__val_number_token6] = ACTIONS(5009), - [anon_sym_0b] = ACTIONS(5011), - [anon_sym_0o] = ACTIONS(5011), - [anon_sym_0x] = ACTIONS(5011), - [sym_val_date] = ACTIONS(5009), - [anon_sym_DQUOTE] = ACTIONS(5009), - [sym__str_single_quotes] = ACTIONS(5009), - [sym__str_back_ticks] = ACTIONS(5009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5009), - [anon_sym_err_GT] = ACTIONS(5011), - [anon_sym_out_GT] = ACTIONS(5011), - [anon_sym_e_GT] = ACTIONS(5011), - [anon_sym_o_GT] = ACTIONS(5011), - [anon_sym_err_PLUSout_GT] = ACTIONS(5011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5011), - [anon_sym_o_PLUSe_GT] = ACTIONS(5011), - [anon_sym_e_PLUSo_GT] = ACTIONS(5011), - [anon_sym_err_GT_GT] = ACTIONS(5009), - [anon_sym_out_GT_GT] = ACTIONS(5009), - [anon_sym_e_GT_GT] = ACTIONS(5009), - [anon_sym_o_GT_GT] = ACTIONS(5009), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5009), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5009), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5009), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5009), - [aux_sym_unquoted_token1] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5009), - }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1585), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1585), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1585), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1585), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1667] = { - [sym_comment] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(5015), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), - }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1671] = { - [sym_path] = STATE(1882), - [sym_comment] = STATE(1671), - [aux_sym_cell_path_repeat1] = STATE(1671), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), - }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1002), - [anon_sym_0o] = ACTIONS(1002), - [anon_sym_0x] = ACTIONS(1002), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [1673] = { - [sym_comment] = STATE(1673), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - }, - [1674] = { - [sym_comment] = STATE(1674), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - }, - [1675] = { - [sym_comment] = STATE(1675), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - }, - [1676] = { - [sym_comment] = STATE(1676), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - }, - [1677] = { - [sym_cell_path] = STATE(2124), - [sym_path] = STATE(1882), - [sym_comment] = STATE(1677), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_err_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_GT_PIPE] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_GT2] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_in2] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_EQ_GT] = ACTIONS(1865), - [anon_sym_STAR2] = ACTIONS(1863), - [anon_sym_and2] = ACTIONS(1865), - [anon_sym_xor2] = ACTIONS(1865), - [anon_sym_or2] = ACTIONS(1865), - [anon_sym_not_DASHin2] = ACTIONS(1865), - [anon_sym_starts_DASHwith2] = ACTIONS(1865), - [anon_sym_ends_DASHwith2] = ACTIONS(1865), - [anon_sym_EQ_EQ2] = ACTIONS(1865), - [anon_sym_BANG_EQ2] = ACTIONS(1865), - [anon_sym_LT2] = ACTIONS(1863), - [anon_sym_LT_EQ2] = ACTIONS(1865), - [anon_sym_GT_EQ2] = ACTIONS(1865), - [anon_sym_EQ_TILDE2] = ACTIONS(1865), - [anon_sym_BANG_TILDE2] = ACTIONS(1865), - [anon_sym_STAR_STAR2] = ACTIONS(1865), - [anon_sym_PLUS_PLUS2] = ACTIONS(1865), - [anon_sym_SLASH2] = ACTIONS(1863), - [anon_sym_mod2] = ACTIONS(1865), - [anon_sym_SLASH_SLASH2] = ACTIONS(1865), - [anon_sym_PLUS2] = ACTIONS(1863), - [anon_sym_bit_DASHshl2] = ACTIONS(1865), - [anon_sym_bit_DASHshr2] = ACTIONS(1865), - [anon_sym_bit_DASHand2] = ACTIONS(1865), - [anon_sym_bit_DASHxor2] = ACTIONS(1865), - [anon_sym_bit_DASHor2] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1863), - [anon_sym_out_GT] = ACTIONS(1863), - [anon_sym_e_GT] = ACTIONS(1863), - [anon_sym_o_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT] = ACTIONS(1863), - [anon_sym_err_GT_GT] = ACTIONS(1865), - [anon_sym_out_GT_GT] = ACTIONS(1865), - [anon_sym_e_GT_GT] = ACTIONS(1865), - [anon_sym_o_GT_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(247), - }, [1678] = { + [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1678), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [ts_builtin_sym_end] = ACTIONS(4940), + [sym__newline] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_err_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_GT_PIPE] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_DASH2] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4940), + [anon_sym_DOT_DOT_LT] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [aux_sym__val_number_decimal_token1] = ACTIONS(4942), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4940), + [aux_sym__val_number_decimal_token4] = ACTIONS(4940), + [aux_sym__val_number_token1] = ACTIONS(4940), + [aux_sym__val_number_token2] = ACTIONS(4940), + [aux_sym__val_number_token3] = ACTIONS(4940), + [aux_sym__val_number_token4] = ACTIONS(4940), + [aux_sym__val_number_token5] = ACTIONS(4940), + [aux_sym__val_number_token6] = ACTIONS(4940), + [anon_sym_0b] = ACTIONS(4942), + [anon_sym_0o] = ACTIONS(4942), + [anon_sym_0x] = ACTIONS(4942), + [sym_val_date] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [sym__str_single_quotes] = ACTIONS(4940), + [sym__str_back_ticks] = ACTIONS(4940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4940), + [anon_sym_err_GT] = ACTIONS(4942), + [anon_sym_out_GT] = ACTIONS(4942), + [anon_sym_e_GT] = ACTIONS(4942), + [anon_sym_o_GT] = ACTIONS(4942), + [anon_sym_err_PLUSout_GT] = ACTIONS(4942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4942), + [anon_sym_o_PLUSe_GT] = ACTIONS(4942), + [anon_sym_e_PLUSo_GT] = ACTIONS(4942), + [anon_sym_err_GT_GT] = ACTIONS(4940), + [anon_sym_out_GT_GT] = ACTIONS(4940), + [anon_sym_e_GT_GT] = ACTIONS(4940), + [anon_sym_o_GT_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4940), + [aux_sym_unquoted_token1] = ACTIONS(4942), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4940), }, [1679] = { - [sym__expr_parenthesized_immediate] = STATE(8105), [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(4920), - [sym__newline] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_err_GT_PIPE] = ACTIONS(4920), - [anon_sym_out_GT_PIPE] = ACTIONS(4920), - [anon_sym_e_GT_PIPE] = ACTIONS(4920), - [anon_sym_o_GT_PIPE] = ACTIONS(4920), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4920), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4920), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4920), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_DOLLAR] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4920), - [anon_sym_DASH2] = ACTIONS(4922), - [anon_sym_LBRACE] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), - [anon_sym_DOT_DOT_LT] = ACTIONS(4920), - [anon_sym_null] = ACTIONS(4920), - [anon_sym_true] = ACTIONS(4920), - [anon_sym_false] = ACTIONS(4920), - [aux_sym__val_number_decimal_token1] = ACTIONS(4922), - [aux_sym__val_number_decimal_token2] = ACTIONS(4920), - [aux_sym__val_number_decimal_token3] = ACTIONS(4920), - [aux_sym__val_number_decimal_token4] = ACTIONS(4920), - [aux_sym__val_number_token1] = ACTIONS(4920), - [aux_sym__val_number_token2] = ACTIONS(4920), - [aux_sym__val_number_token3] = ACTIONS(4920), - [aux_sym__val_number_token4] = ACTIONS(4920), - [aux_sym__val_number_token5] = ACTIONS(4920), - [aux_sym__val_number_token6] = ACTIONS(4920), - [anon_sym_0b] = ACTIONS(4922), - [anon_sym_0o] = ACTIONS(4922), - [anon_sym_0x] = ACTIONS(4922), - [sym_val_date] = ACTIONS(4920), - [anon_sym_DQUOTE] = ACTIONS(4920), - [sym__str_single_quotes] = ACTIONS(4920), - [sym__str_back_ticks] = ACTIONS(4920), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4920), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4920), - [anon_sym_err_GT] = ACTIONS(4922), - [anon_sym_out_GT] = ACTIONS(4922), - [anon_sym_e_GT] = ACTIONS(4922), - [anon_sym_o_GT] = ACTIONS(4922), - [anon_sym_err_PLUSout_GT] = ACTIONS(4922), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4922), - [anon_sym_o_PLUSe_GT] = ACTIONS(4922), - [anon_sym_e_PLUSo_GT] = ACTIONS(4922), - [anon_sym_err_GT_GT] = ACTIONS(4920), - [anon_sym_out_GT_GT] = ACTIONS(4920), - [anon_sym_e_GT_GT] = ACTIONS(4920), - [anon_sym_o_GT_GT] = ACTIONS(4920), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4920), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4920), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4920), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4920), - [aux_sym_unquoted_token1] = ACTIONS(4922), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4920), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym__newline] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_err_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_GT_PIPE] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_DASH2] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2369), + [anon_sym_LPAREN2] = ACTIONS(2371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_LT] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2369), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [aux_sym__val_number_token4] = ACTIONS(2373), + [aux_sym__val_number_token5] = ACTIONS(2373), + [aux_sym__val_number_token6] = ACTIONS(2373), + [anon_sym_0b] = ACTIONS(2369), + [anon_sym_0o] = ACTIONS(2369), + [anon_sym_0x] = ACTIONS(2369), + [sym_val_date] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_err_GT] = ACTIONS(2369), + [anon_sym_out_GT] = ACTIONS(2369), + [anon_sym_e_GT] = ACTIONS(2369), + [anon_sym_o_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT] = ACTIONS(2369), + [anon_sym_err_GT_GT] = ACTIONS(2373), + [anon_sym_out_GT_GT] = ACTIONS(2373), + [anon_sym_e_GT_GT] = ACTIONS(2373), + [anon_sym_o_GT_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2373), + [aux_sym_unquoted_token1] = ACTIONS(2369), + [aux_sym_unquoted_token2] = ACTIONS(2375), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2373), }, [1680] = { - [sym__expr_parenthesized_immediate] = STATE(8105), + [sym__expr_parenthesized_immediate] = STATE(7677), [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(4926), - [sym__newline] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4926), - [anon_sym_err_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_GT_PIPE] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4928), - [anon_sym_DOLLAR] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_DASH2] = ACTIONS(4928), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), - [anon_sym_DOT_DOT_LT] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [aux_sym__val_number_decimal_token1] = ACTIONS(4928), - [aux_sym__val_number_decimal_token2] = ACTIONS(4926), - [aux_sym__val_number_decimal_token3] = ACTIONS(4926), - [aux_sym__val_number_decimal_token4] = ACTIONS(4926), - [aux_sym__val_number_token1] = ACTIONS(4926), - [aux_sym__val_number_token2] = ACTIONS(4926), - [aux_sym__val_number_token3] = ACTIONS(4926), - [aux_sym__val_number_token4] = ACTIONS(4926), - [aux_sym__val_number_token5] = ACTIONS(4926), - [aux_sym__val_number_token6] = ACTIONS(4926), - [anon_sym_0b] = ACTIONS(4928), - [anon_sym_0o] = ACTIONS(4928), - [anon_sym_0x] = ACTIONS(4928), - [sym_val_date] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(4926), - [sym__str_single_quotes] = ACTIONS(4926), - [sym__str_back_ticks] = ACTIONS(4926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), - [anon_sym_err_GT] = ACTIONS(4928), - [anon_sym_out_GT] = ACTIONS(4928), - [anon_sym_e_GT] = ACTIONS(4928), - [anon_sym_o_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT] = ACTIONS(4928), - [anon_sym_err_GT_GT] = ACTIONS(4926), - [anon_sym_out_GT_GT] = ACTIONS(4926), - [anon_sym_e_GT_GT] = ACTIONS(4926), - [anon_sym_o_GT_GT] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), - [aux_sym_unquoted_token1] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4926), + [ts_builtin_sym_end] = ACTIONS(5016), + [sym__newline] = ACTIONS(5016), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_err_GT_PIPE] = ACTIONS(5016), + [anon_sym_out_GT_PIPE] = ACTIONS(5016), + [anon_sym_e_GT_PIPE] = ACTIONS(5016), + [anon_sym_o_GT_PIPE] = ACTIONS(5016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5018), + [anon_sym_DOLLAR] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_DASH2] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5016), + [anon_sym_DOT_DOT] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5016), + [anon_sym_DOT_DOT_LT] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), + [anon_sym_true] = ACTIONS(5016), + [anon_sym_false] = ACTIONS(5016), + [aux_sym__val_number_decimal_token1] = ACTIONS(5018), + [aux_sym__val_number_decimal_token2] = ACTIONS(5016), + [aux_sym__val_number_decimal_token3] = ACTIONS(5016), + [aux_sym__val_number_decimal_token4] = ACTIONS(5016), + [aux_sym__val_number_token1] = ACTIONS(5016), + [aux_sym__val_number_token2] = ACTIONS(5016), + [aux_sym__val_number_token3] = ACTIONS(5016), + [aux_sym__val_number_token4] = ACTIONS(5016), + [aux_sym__val_number_token5] = ACTIONS(5016), + [aux_sym__val_number_token6] = ACTIONS(5016), + [anon_sym_0b] = ACTIONS(5018), + [anon_sym_0o] = ACTIONS(5018), + [anon_sym_0x] = ACTIONS(5018), + [sym_val_date] = ACTIONS(5016), + [anon_sym_DQUOTE] = ACTIONS(5016), + [sym__str_single_quotes] = ACTIONS(5016), + [sym__str_back_ticks] = ACTIONS(5016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5016), + [anon_sym_err_GT] = ACTIONS(5018), + [anon_sym_out_GT] = ACTIONS(5018), + [anon_sym_e_GT] = ACTIONS(5018), + [anon_sym_o_GT] = ACTIONS(5018), + [anon_sym_err_PLUSout_GT] = ACTIONS(5018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5018), + [anon_sym_o_PLUSe_GT] = ACTIONS(5018), + [anon_sym_e_PLUSo_GT] = ACTIONS(5018), + [anon_sym_err_GT_GT] = ACTIONS(5016), + [anon_sym_out_GT_GT] = ACTIONS(5016), + [anon_sym_e_GT_GT] = ACTIONS(5016), + [anon_sym_o_GT_GT] = ACTIONS(5016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5016), + [aux_sym_unquoted_token1] = ACTIONS(5018), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5016), }, [1681] = { [sym_comment] = STATE(1681), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [sym__newline] = ACTIONS(5050), + [anon_sym_SEMI] = ACTIONS(5050), + [anon_sym_PIPE] = ACTIONS(5050), + [anon_sym_err_GT_PIPE] = ACTIONS(5050), + [anon_sym_out_GT_PIPE] = ACTIONS(5050), + [anon_sym_e_GT_PIPE] = ACTIONS(5050), + [anon_sym_o_GT_PIPE] = ACTIONS(5050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_LPAREN] = ACTIONS(5050), + [anon_sym_RPAREN] = ACTIONS(5050), + [anon_sym_DOLLAR] = ACTIONS(5052), + [anon_sym_DASH_DASH] = ACTIONS(5050), + [anon_sym_DASH2] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(5050), + [anon_sym_RBRACE] = ACTIONS(5050), + [anon_sym_DOT_DOT] = ACTIONS(5052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5050), + [anon_sym_DOT_DOT_LT] = ACTIONS(5050), + [anon_sym_null] = ACTIONS(5050), + [anon_sym_true] = ACTIONS(5050), + [anon_sym_false] = ACTIONS(5050), + [aux_sym__val_number_decimal_token1] = ACTIONS(5052), + [aux_sym__val_number_decimal_token2] = ACTIONS(5050), + [aux_sym__val_number_decimal_token3] = ACTIONS(5050), + [aux_sym__val_number_decimal_token4] = ACTIONS(5050), + [aux_sym__val_number_token1] = ACTIONS(5050), + [aux_sym__val_number_token2] = ACTIONS(5050), + [aux_sym__val_number_token3] = ACTIONS(5050), + [aux_sym__val_number_token4] = ACTIONS(5050), + [aux_sym__val_number_token5] = ACTIONS(5050), + [aux_sym__val_number_token6] = ACTIONS(5050), + [anon_sym_0b] = ACTIONS(5052), + [anon_sym_0o] = ACTIONS(5052), + [anon_sym_0x] = ACTIONS(5052), + [sym_val_date] = ACTIONS(5050), + [anon_sym_DQUOTE] = ACTIONS(5050), + [sym__str_single_quotes] = ACTIONS(5050), + [sym__str_back_ticks] = ACTIONS(5050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), + [anon_sym_err_GT] = ACTIONS(5052), + [anon_sym_out_GT] = ACTIONS(5052), + [anon_sym_e_GT] = ACTIONS(5052), + [anon_sym_o_GT] = ACTIONS(5052), + [anon_sym_err_PLUSout_GT] = ACTIONS(5052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5052), + [anon_sym_o_PLUSe_GT] = ACTIONS(5052), + [anon_sym_e_PLUSo_GT] = ACTIONS(5052), + [anon_sym_err_GT_GT] = ACTIONS(5050), + [anon_sym_out_GT_GT] = ACTIONS(5050), + [anon_sym_e_GT_GT] = ACTIONS(5050), + [anon_sym_o_GT_GT] = ACTIONS(5050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5050), + [anon_sym_EQ2] = ACTIONS(5054), + [aux_sym_unquoted_token1] = ACTIONS(5052), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5050), }, [1682] = { [sym_comment] = STATE(1682), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [aux_sym_unquoted_token4] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1540), }, [1683] = { - [sym_cell_path] = STATE(2096), - [sym_path] = STATE(2080), + [sym_cell_path] = STATE(2144), + [sym_path] = STATE(1909), [sym_comment] = STATE(1683), - [aux_sym_cell_path_repeat1] = STATE(1816), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_GT2] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_EQ_GT] = ACTIONS(2000), + [anon_sym_STAR2] = ACTIONS(1998), + [anon_sym_and2] = ACTIONS(2000), + [anon_sym_xor2] = ACTIONS(2000), + [anon_sym_or2] = ACTIONS(2000), + [anon_sym_not_DASHin2] = ACTIONS(2000), + [anon_sym_starts_DASHwith2] = ACTIONS(2000), + [anon_sym_ends_DASHwith2] = ACTIONS(2000), + [anon_sym_EQ_EQ2] = ACTIONS(2000), + [anon_sym_BANG_EQ2] = ACTIONS(2000), + [anon_sym_LT2] = ACTIONS(1998), + [anon_sym_LT_EQ2] = ACTIONS(2000), + [anon_sym_GT_EQ2] = ACTIONS(2000), + [anon_sym_EQ_TILDE2] = ACTIONS(2000), + [anon_sym_BANG_TILDE2] = ACTIONS(2000), + [anon_sym_STAR_STAR2] = ACTIONS(2000), + [anon_sym_PLUS_PLUS2] = ACTIONS(2000), + [anon_sym_SLASH2] = ACTIONS(1998), + [anon_sym_mod2] = ACTIONS(2000), + [anon_sym_SLASH_SLASH2] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_bit_DASHshl2] = ACTIONS(2000), + [anon_sym_bit_DASHshr2] = ACTIONS(2000), + [anon_sym_bit_DASHand2] = ACTIONS(2000), + [anon_sym_bit_DASHxor2] = ACTIONS(2000), + [anon_sym_bit_DASHor2] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(255), }, [1684] = { + [sym__expr_parenthesized_immediate] = STATE(7492), [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym__newline] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_err_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_GT_PIPE] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5058), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_DASH2] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5056), + [anon_sym_DOT_DOT_LT] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [aux_sym__val_number_decimal_token1] = ACTIONS(5058), + [aux_sym__val_number_decimal_token2] = ACTIONS(5056), + [aux_sym__val_number_decimal_token3] = ACTIONS(5056), + [aux_sym__val_number_decimal_token4] = ACTIONS(5056), + [aux_sym__val_number_token1] = ACTIONS(5056), + [aux_sym__val_number_token2] = ACTIONS(5056), + [aux_sym__val_number_token3] = ACTIONS(5056), + [aux_sym__val_number_token4] = ACTIONS(5056), + [aux_sym__val_number_token5] = ACTIONS(5056), + [aux_sym__val_number_token6] = ACTIONS(5056), + [anon_sym_0b] = ACTIONS(5058), + [anon_sym_0o] = ACTIONS(5058), + [anon_sym_0x] = ACTIONS(5058), + [sym_val_date] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym__str_single_quotes] = ACTIONS(5056), + [sym__str_back_ticks] = ACTIONS(5056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), + [anon_sym_err_GT] = ACTIONS(5058), + [anon_sym_out_GT] = ACTIONS(5058), + [anon_sym_e_GT] = ACTIONS(5058), + [anon_sym_o_GT] = ACTIONS(5058), + [anon_sym_err_PLUSout_GT] = ACTIONS(5058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5058), + [anon_sym_o_PLUSe_GT] = ACTIONS(5058), + [anon_sym_e_PLUSo_GT] = ACTIONS(5058), + [anon_sym_err_GT_GT] = ACTIONS(5056), + [anon_sym_out_GT_GT] = ACTIONS(5056), + [anon_sym_e_GT_GT] = ACTIONS(5056), + [anon_sym_o_GT_GT] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5056), + [aux_sym_unquoted_token1] = ACTIONS(5058), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5056), }, [1685] = { [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_err_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_GT_PIPE] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1683), - [anon_sym_in2] = ACTIONS(1683), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1683), - [anon_sym_xor2] = ACTIONS(1683), - [anon_sym_or2] = ACTIONS(1683), - [anon_sym_not_DASHin2] = ACTIONS(1683), - [anon_sym_starts_DASHwith2] = ACTIONS(1683), - [anon_sym_ends_DASHwith2] = ACTIONS(1683), - [anon_sym_EQ_EQ2] = ACTIONS(1683), - [anon_sym_BANG_EQ2] = ACTIONS(1683), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1683), - [anon_sym_GT_EQ2] = ACTIONS(1683), - [anon_sym_EQ_TILDE2] = ACTIONS(1683), - [anon_sym_BANG_TILDE2] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_STAR_STAR2] = ACTIONS(1683), - [anon_sym_PLUS_PLUS2] = ACTIONS(1683), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1683), - [anon_sym_SLASH_SLASH2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1683), - [anon_sym_bit_DASHshr2] = ACTIONS(1683), - [anon_sym_bit_DASHand2] = ACTIONS(1683), - [anon_sym_bit_DASHxor2] = ACTIONS(1683), - [anon_sym_bit_DASHor2] = ACTIONS(1683), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), - [sym_filesize_unit] = ACTIONS(1681), - [sym_duration_unit] = ACTIONS(1683), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1683), - [anon_sym_out_GT_GT] = ACTIONS(1683), - [anon_sym_e_GT_GT] = ACTIONS(1683), - [anon_sym_o_GT_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), - [aux_sym_unquoted_token2] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym__newline] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_err_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_GT_PIPE] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2337), + [anon_sym_DOT_DOT_LT] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_0b] = ACTIONS(2337), + [anon_sym_0o] = ACTIONS(2337), + [anon_sym_0x] = ACTIONS(2337), + [sym_val_date] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), + [anon_sym_err_GT] = ACTIONS(2337), + [anon_sym_out_GT] = ACTIONS(2337), + [anon_sym_e_GT] = ACTIONS(2337), + [anon_sym_o_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT] = ACTIONS(2337), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [aux_sym_unquoted_token1] = ACTIONS(2337), + [aux_sym_unquoted_token4] = ACTIONS(2343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2341), }, [1686] = { [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(5022), - [aux_sym__immediate_decimal_token2] = ACTIONS(5024), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1538), + [aux_sym__val_number_token5] = ACTIONS(1538), + [aux_sym__val_number_token6] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [aux_sym_unquoted_token4] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1540), }, [1687] = { - [sym__expr_parenthesized_immediate] = STATE(7472), + [sym_cell_path] = STATE(2131), + [sym_path] = STATE(1909), [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = ACTIONS(4962), - [sym__newline] = ACTIONS(4962), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4962), - [anon_sym_err_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_GT_PIPE] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4964), - [anon_sym_DOLLAR] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_DASH2] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4964), - [anon_sym_LPAREN2] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), - [anon_sym_DOT_DOT_LT] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4962), - [anon_sym_true] = ACTIONS(4962), - [anon_sym_false] = ACTIONS(4962), - [aux_sym__val_number_decimal_token1] = ACTIONS(4964), - [aux_sym__val_number_decimal_token2] = ACTIONS(4962), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4962), - [aux_sym__val_number_token1] = ACTIONS(4962), - [aux_sym__val_number_token2] = ACTIONS(4962), - [aux_sym__val_number_token3] = ACTIONS(4962), - [aux_sym__val_number_token4] = ACTIONS(4962), - [aux_sym__val_number_token5] = ACTIONS(4962), - [aux_sym__val_number_token6] = ACTIONS(4962), - [anon_sym_0b] = ACTIONS(4964), - [anon_sym_0o] = ACTIONS(4964), - [anon_sym_0x] = ACTIONS(4964), - [sym_val_date] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [sym__str_single_quotes] = ACTIONS(4962), - [sym__str_back_ticks] = ACTIONS(4962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), - [anon_sym_err_GT] = ACTIONS(4964), - [anon_sym_out_GT] = ACTIONS(4964), - [anon_sym_e_GT] = ACTIONS(4964), - [anon_sym_o_GT] = ACTIONS(4964), - [anon_sym_err_PLUSout_GT] = ACTIONS(4964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), - [anon_sym_o_PLUSe_GT] = ACTIONS(4964), - [anon_sym_e_PLUSo_GT] = ACTIONS(4964), - [anon_sym_err_GT_GT] = ACTIONS(4962), - [anon_sym_out_GT_GT] = ACTIONS(4962), - [anon_sym_e_GT_GT] = ACTIONS(4962), - [anon_sym_o_GT_GT] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), - [aux_sym_unquoted_token1] = ACTIONS(4964), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4962), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_err_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_GT_PIPE] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_GT2] = ACTIONS(1990), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_in2] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_STAR2] = ACTIONS(1990), + [anon_sym_and2] = ACTIONS(1992), + [anon_sym_xor2] = ACTIONS(1992), + [anon_sym_or2] = ACTIONS(1992), + [anon_sym_not_DASHin2] = ACTIONS(1992), + [anon_sym_starts_DASHwith2] = ACTIONS(1992), + [anon_sym_ends_DASHwith2] = ACTIONS(1992), + [anon_sym_EQ_EQ2] = ACTIONS(1992), + [anon_sym_BANG_EQ2] = ACTIONS(1992), + [anon_sym_LT2] = ACTIONS(1990), + [anon_sym_LT_EQ2] = ACTIONS(1992), + [anon_sym_GT_EQ2] = ACTIONS(1992), + [anon_sym_EQ_TILDE2] = ACTIONS(1992), + [anon_sym_BANG_TILDE2] = ACTIONS(1992), + [anon_sym_STAR_STAR2] = ACTIONS(1992), + [anon_sym_PLUS_PLUS2] = ACTIONS(1992), + [anon_sym_SLASH2] = ACTIONS(1990), + [anon_sym_mod2] = ACTIONS(1992), + [anon_sym_SLASH_SLASH2] = ACTIONS(1992), + [anon_sym_PLUS2] = ACTIONS(1990), + [anon_sym_bit_DASHshl2] = ACTIONS(1992), + [anon_sym_bit_DASHshr2] = ACTIONS(1992), + [anon_sym_bit_DASHand2] = ACTIONS(1992), + [anon_sym_bit_DASHxor2] = ACTIONS(1992), + [anon_sym_bit_DASHor2] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1990), + [anon_sym_out_GT] = ACTIONS(1990), + [anon_sym_e_GT] = ACTIONS(1990), + [anon_sym_o_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT] = ACTIONS(1990), + [anon_sym_err_GT_GT] = ACTIONS(1992), + [anon_sym_out_GT_GT] = ACTIONS(1992), + [anon_sym_e_GT_GT] = ACTIONS(1992), + [anon_sym_o_GT_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(255), }, [1688] = { [sym_comment] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4985), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1689] = { + [sym_path] = STATE(1909), [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1761), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1761), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1761), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1761), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1761), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1761), - [anon_sym_out_GT] = ACTIONS(1761), - [anon_sym_e_GT] = ACTIONS(1761), - [anon_sym_o_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT] = ACTIONS(1761), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1481), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1481), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1690] = { - [sym_path] = STATE(1882), + [sym_cell_path] = STATE(2132), + [sym_path] = STATE(2085), [sym_comment] = STATE(1690), - [aux_sym_cell_path_repeat1] = STATE(1671), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1838), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym__newline] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_err_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_GT_PIPE] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1884), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1884), + [anon_sym_in2] = ACTIONS(1884), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1884), + [anon_sym_xor2] = ACTIONS(1884), + [anon_sym_or2] = ACTIONS(1884), + [anon_sym_not_DASHin2] = ACTIONS(1884), + [anon_sym_starts_DASHwith2] = ACTIONS(1884), + [anon_sym_ends_DASHwith2] = ACTIONS(1884), + [anon_sym_EQ_EQ2] = ACTIONS(1884), + [anon_sym_BANG_EQ2] = ACTIONS(1884), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1884), + [anon_sym_GT_EQ2] = ACTIONS(1884), + [anon_sym_EQ_TILDE2] = ACTIONS(1884), + [anon_sym_BANG_TILDE2] = ACTIONS(1884), + [anon_sym_STAR_STAR2] = ACTIONS(1884), + [anon_sym_PLUS_PLUS2] = ACTIONS(1884), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1884), + [anon_sym_SLASH_SLASH2] = ACTIONS(1884), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1884), + [anon_sym_bit_DASHshr2] = ACTIONS(1884), + [anon_sym_bit_DASHand2] = ACTIONS(1884), + [anon_sym_bit_DASHxor2] = ACTIONS(1884), + [anon_sym_bit_DASHor2] = ACTIONS(1884), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1884), + [anon_sym_out_GT_GT] = ACTIONS(1884), + [anon_sym_e_GT_GT] = ACTIONS(1884), + [anon_sym_o_GT_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(255), }, [1691] = { [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(1843), - [sym__newline] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_err_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_GT_PIPE] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT] = ACTIONS(1843), - [anon_sym_null] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1841), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1841), - [anon_sym_0o] = ACTIONS(1841), - [anon_sym_0x] = ACTIONS(1841), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_err_GT] = ACTIONS(1841), - [anon_sym_out_GT] = ACTIONS(1841), - [anon_sym_e_GT] = ACTIONS(1841), - [anon_sym_o_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT] = ACTIONS(1841), - [anon_sym_err_GT_GT] = ACTIONS(1843), - [anon_sym_out_GT_GT] = ACTIONS(1843), - [anon_sym_e_GT_GT] = ACTIONS(1843), - [anon_sym_o_GT_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), - [aux_sym_unquoted_token1] = ACTIONS(1841), - [aux_sym_unquoted_token2] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1843), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1526), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1528), + [aux_sym__val_number_token5] = ACTIONS(1528), + [aux_sym__val_number_token6] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1526), + [anon_sym_0o] = ACTIONS(1526), + [anon_sym_0x] = ACTIONS(1526), + [sym_val_date] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1528), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1528), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [aux_sym_unquoted_token1] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1528), }, [1692] = { [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [aux_sym__val_number_token4] = ACTIONS(2246), - [aux_sym__val_number_token5] = ACTIONS(2246), - [aux_sym__val_number_token6] = ACTIONS(2246), - [anon_sym_0b] = ACTIONS(2246), - [anon_sym_0o] = ACTIONS(2246), - [anon_sym_0x] = ACTIONS(2246), - [sym_val_date] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [aux_sym_unquoted_token1] = ACTIONS(2246), - [aux_sym_unquoted_token4] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_DASH_DASH] = ACTIONS(2353), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2353), + [anon_sym_DOT_DOT_LT] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2353), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2353), + [aux_sym__val_number_token5] = ACTIONS(2353), + [aux_sym__val_number_token6] = ACTIONS(2353), + [anon_sym_0b] = ACTIONS(2353), + [anon_sym_0o] = ACTIONS(2353), + [anon_sym_0x] = ACTIONS(2353), + [sym_val_date] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2355), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2353), + [anon_sym_out_GT] = ACTIONS(2353), + [anon_sym_e_GT] = ACTIONS(2353), + [anon_sym_o_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT] = ACTIONS(2353), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [aux_sym_unquoted_token1] = ACTIONS(2353), + [aux_sym_unquoted_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [sym_raw_string_begin] = ACTIONS(2355), }, [1693] = { [sym_comment] = STATE(1693), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4730), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT] = ACTIONS(1800), + [anon_sym_null] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1800), + [aux_sym__val_number_decimal_token3] = ACTIONS(1800), + [aux_sym__val_number_decimal_token4] = ACTIONS(1800), + [aux_sym__val_number_token1] = ACTIONS(1800), + [aux_sym__val_number_token2] = ACTIONS(1800), + [aux_sym__val_number_token3] = ACTIONS(1800), + [aux_sym__val_number_token4] = ACTIONS(1800), + [aux_sym__val_number_token5] = ACTIONS(1800), + [aux_sym__val_number_token6] = ACTIONS(1800), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [sym__str_single_quotes] = ACTIONS(1800), + [sym__str_back_ticks] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1800), }, [1694] = { [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym__newline] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2335), + [anon_sym_err_GT_PIPE] = ACTIONS(2335), + [anon_sym_out_GT_PIPE] = ACTIONS(2335), + [anon_sym_e_GT_PIPE] = ACTIONS(2335), + [anon_sym_o_GT_PIPE] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2335), + [anon_sym_DOT_DOT_LT] = ACTIONS(2335), + [anon_sym_null] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2335), + [aux_sym__val_number_decimal_token3] = ACTIONS(2335), + [aux_sym__val_number_decimal_token4] = ACTIONS(2335), + [aux_sym__val_number_token1] = ACTIONS(2335), + [aux_sym__val_number_token2] = ACTIONS(2335), + [aux_sym__val_number_token3] = ACTIONS(2335), + [aux_sym__val_number_token4] = ACTIONS(2335), + [aux_sym__val_number_token5] = ACTIONS(2335), + [aux_sym__val_number_token6] = ACTIONS(2335), + [anon_sym_0b] = ACTIONS(2333), + [anon_sym_0o] = ACTIONS(2333), + [anon_sym_0x] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2335), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2335), + [anon_sym_err_GT] = ACTIONS(2333), + [anon_sym_out_GT] = ACTIONS(2333), + [anon_sym_e_GT] = ACTIONS(2333), + [anon_sym_o_GT] = ACTIONS(2333), + [anon_sym_err_PLUSout_GT] = ACTIONS(2333), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2333), + [anon_sym_o_PLUSe_GT] = ACTIONS(2333), + [anon_sym_e_PLUSo_GT] = ACTIONS(2333), + [anon_sym_err_GT_GT] = ACTIONS(2335), + [anon_sym_out_GT_GT] = ACTIONS(2335), + [anon_sym_e_GT_GT] = ACTIONS(2335), + [anon_sym_o_GT_GT] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2335), + [aux_sym_unquoted_token1] = ACTIONS(2333), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(2335), }, [1695] = { [sym_comment] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2274), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), - [anon_sym_DOT_DOT_LT] = ACTIONS(2276), - [anon_sym_null] = ACTIONS(2276), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [aux_sym__val_number_token4] = ACTIONS(2276), - [aux_sym__val_number_token5] = ACTIONS(2276), - [aux_sym__val_number_token6] = ACTIONS(2276), - [anon_sym_0b] = ACTIONS(2272), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2276), - [sym__str_back_ticks] = ACTIONS(2276), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [aux_sym_unquoted_token1] = ACTIONS(2272), - [aux_sym_unquoted_token2] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2276), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(5060), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT] = ACTIONS(1502), + [anon_sym_null] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [aux_sym__val_number_decimal_token1] = ACTIONS(1500), + [aux_sym__val_number_decimal_token2] = ACTIONS(1502), + [aux_sym__val_number_decimal_token3] = ACTIONS(1502), + [aux_sym__val_number_decimal_token4] = ACTIONS(1502), + [aux_sym__val_number_token1] = ACTIONS(1502), + [aux_sym__val_number_token2] = ACTIONS(1502), + [aux_sym__val_number_token3] = ACTIONS(1502), + [aux_sym__val_number_token4] = ACTIONS(1502), + [aux_sym__val_number_token5] = ACTIONS(1502), + [aux_sym__val_number_token6] = ACTIONS(1502), + [anon_sym_0b] = ACTIONS(1500), + [anon_sym_0o] = ACTIONS(1500), + [anon_sym_0x] = ACTIONS(1500), + [sym_val_date] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym__str_single_quotes] = ACTIONS(1502), + [sym__str_back_ticks] = ACTIONS(1502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1502), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [aux_sym_unquoted_token1] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1502), }, [1696] = { [sym_comment] = STATE(1696), - [ts_builtin_sym_end] = ACTIONS(4968), - [sym_long_flag_identifier] = ACTIONS(5028), - [sym__newline] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_err_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_GT_PIPE] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), - [anon_sym_DOT_DOT_LT] = ACTIONS(4968), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4970), - [anon_sym_false] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(4970), - [aux_sym__val_number_decimal_token2] = ACTIONS(4968), - [aux_sym__val_number_decimal_token3] = ACTIONS(4968), - [aux_sym__val_number_decimal_token4] = ACTIONS(4968), - [aux_sym__val_number_token1] = ACTIONS(4970), - [aux_sym__val_number_token2] = ACTIONS(4970), - [aux_sym__val_number_token3] = ACTIONS(4970), - [aux_sym__val_number_token4] = ACTIONS(4970), - [aux_sym__val_number_token5] = ACTIONS(4968), - [aux_sym__val_number_token6] = ACTIONS(4970), - [anon_sym_0b] = ACTIONS(4970), - [anon_sym_0o] = ACTIONS(4970), - [anon_sym_0x] = ACTIONS(4970), - [sym_val_date] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4968), - [sym__str_single_quotes] = ACTIONS(4968), - [sym__str_back_ticks] = ACTIONS(4968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(4970), - [anon_sym_out_GT] = ACTIONS(4970), - [anon_sym_e_GT] = ACTIONS(4970), - [anon_sym_o_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT] = ACTIONS(4970), - [anon_sym_err_GT_GT] = ACTIONS(4968), - [anon_sym_out_GT_GT] = ACTIONS(4968), - [anon_sym_e_GT_GT] = ACTIONS(4968), - [anon_sym_o_GT_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), - [anon_sym_EQ2] = ACTIONS(5030), - [aux_sym_unquoted_token1] = ACTIONS(4970), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4968), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_QMARK2] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [aux_sym__val_number_decimal_token1] = ACTIONS(1490), + [aux_sym__val_number_decimal_token2] = ACTIONS(1492), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1492), + [aux_sym__val_number_token2] = ACTIONS(1492), + [aux_sym__val_number_token3] = ACTIONS(1492), + [aux_sym__val_number_token4] = ACTIONS(1492), + [aux_sym__val_number_token5] = ACTIONS(1492), + [aux_sym__val_number_token6] = ACTIONS(1492), + [anon_sym_0b] = ACTIONS(1490), + [anon_sym_0o] = ACTIONS(1490), + [anon_sym_0x] = ACTIONS(1490), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym__str_single_quotes] = ACTIONS(1492), + [sym__str_back_ticks] = ACTIONS(1492), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [aux_sym_unquoted_token1] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1492), }, [1697] = { + [sym_path] = STATE(1921), [sym_comment] = STATE(1697), - [ts_builtin_sym_end] = ACTIONS(4974), - [sym__newline] = ACTIONS(4974), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4974), - [anon_sym_err_GT_PIPE] = ACTIONS(4974), - [anon_sym_out_GT_PIPE] = ACTIONS(4974), - [anon_sym_e_GT_PIPE] = ACTIONS(4974), - [anon_sym_o_GT_PIPE] = ACTIONS(4974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_DOLLAR] = ACTIONS(4976), - [anon_sym_DASH_DASH] = ACTIONS(4976), - [anon_sym_DASH2] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), - [anon_sym_DOT_DOT_LT] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4976), - [anon_sym_true] = ACTIONS(4976), - [anon_sym_false] = ACTIONS(4976), - [aux_sym__val_number_decimal_token1] = ACTIONS(4976), - [aux_sym__val_number_decimal_token2] = ACTIONS(4976), - [aux_sym__val_number_decimal_token3] = ACTIONS(4974), - [aux_sym__val_number_decimal_token4] = ACTIONS(4974), - [aux_sym__val_number_token1] = ACTIONS(4976), - [aux_sym__val_number_token2] = ACTIONS(4976), - [aux_sym__val_number_token3] = ACTIONS(4976), - [aux_sym__val_number_token4] = ACTIONS(4976), - [aux_sym__val_number_token5] = ACTIONS(4976), - [aux_sym__val_number_token6] = ACTIONS(4976), - [anon_sym_0b] = ACTIONS(4976), - [anon_sym_0o] = ACTIONS(4976), - [anon_sym_0x] = ACTIONS(4976), - [sym_val_date] = ACTIONS(4976), - [anon_sym_DQUOTE] = ACTIONS(4974), - [sym__str_single_quotes] = ACTIONS(4974), - [sym__str_back_ticks] = ACTIONS(4974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4974), - [anon_sym_err_GT] = ACTIONS(4976), - [anon_sym_out_GT] = ACTIONS(4976), - [anon_sym_e_GT] = ACTIONS(4976), - [anon_sym_o_GT] = ACTIONS(4976), - [anon_sym_err_PLUSout_GT] = ACTIONS(4976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4976), - [anon_sym_o_PLUSe_GT] = ACTIONS(4976), - [anon_sym_e_PLUSo_GT] = ACTIONS(4976), - [anon_sym_err_GT_GT] = ACTIONS(4974), - [anon_sym_out_GT_GT] = ACTIONS(4974), - [anon_sym_e_GT_GT] = ACTIONS(4974), - [anon_sym_o_GT_GT] = ACTIONS(4974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4974), - [anon_sym_EQ2] = ACTIONS(5032), - [sym_short_flag_identifier] = ACTIONS(5034), - [aux_sym_unquoted_token1] = ACTIONS(4976), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4974), + [aux_sym_cell_path_repeat1] = STATE(1698), + [sym__newline] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_err_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_GT_PIPE] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1481), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1481), + [anon_sym_in2] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1481), + [anon_sym_xor2] = ACTIONS(1481), + [anon_sym_or2] = ACTIONS(1481), + [anon_sym_not_DASHin2] = ACTIONS(1481), + [anon_sym_starts_DASHwith2] = ACTIONS(1481), + [anon_sym_ends_DASHwith2] = ACTIONS(1481), + [anon_sym_EQ_EQ2] = ACTIONS(1481), + [anon_sym_BANG_EQ2] = ACTIONS(1481), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1481), + [anon_sym_GT_EQ2] = ACTIONS(1481), + [anon_sym_EQ_TILDE2] = ACTIONS(1481), + [anon_sym_BANG_TILDE2] = ACTIONS(1481), + [anon_sym_STAR_STAR2] = ACTIONS(1481), + [anon_sym_PLUS_PLUS2] = ACTIONS(1481), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1481), + [anon_sym_SLASH_SLASH2] = ACTIONS(1481), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1481), + [anon_sym_bit_DASHshr2] = ACTIONS(1481), + [anon_sym_bit_DASHand2] = ACTIONS(1481), + [anon_sym_bit_DASHxor2] = ACTIONS(1481), + [anon_sym_bit_DASHor2] = ACTIONS(1481), + [anon_sym_DOT_DOT2] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(4987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1481), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1481), + [aux_sym_record_entry_token1] = ACTIONS(1481), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1481), + [anon_sym_out_GT_GT] = ACTIONS(1481), + [anon_sym_e_GT_GT] = ACTIONS(1481), + [anon_sym_o_GT_GT] = ACTIONS(1481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(255), }, [1698] = { - [sym_cmd_identifier] = STATE(4154), - [sym__command_name] = STATE(6522), - [sym_scope_pattern] = STATE(6743), - [sym_wild_card] = STATE(6524), - [sym_command_list] = STATE(6525), - [sym__val_number_decimal] = STATE(3764), - [sym_val_string] = STATE(4161), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), + [sym_path] = STATE(1921), [sym_comment] = STATE(1698), - [aux_sym_cmd_identifier_token1] = ACTIONS(5036), - [aux_sym_cmd_identifier_token2] = ACTIONS(5038), - [aux_sym_cmd_identifier_token3] = ACTIONS(5038), - [aux_sym_cmd_identifier_token4] = ACTIONS(5038), - [aux_sym_cmd_identifier_token5] = ACTIONS(5038), - [aux_sym_cmd_identifier_token6] = ACTIONS(5038), - [aux_sym_cmd_identifier_token7] = ACTIONS(5038), - [aux_sym_cmd_identifier_token8] = ACTIONS(5038), - [aux_sym_cmd_identifier_token9] = ACTIONS(5036), - [aux_sym_cmd_identifier_token10] = ACTIONS(5038), - [aux_sym_cmd_identifier_token11] = ACTIONS(5038), - [aux_sym_cmd_identifier_token12] = ACTIONS(5038), - [aux_sym_cmd_identifier_token13] = ACTIONS(5036), - [aux_sym_cmd_identifier_token14] = ACTIONS(5038), - [aux_sym_cmd_identifier_token15] = ACTIONS(5036), - [aux_sym_cmd_identifier_token16] = ACTIONS(5038), - [aux_sym_cmd_identifier_token17] = ACTIONS(5038), - [aux_sym_cmd_identifier_token18] = ACTIONS(5038), - [aux_sym_cmd_identifier_token19] = ACTIONS(5038), - [aux_sym_cmd_identifier_token20] = ACTIONS(5038), - [aux_sym_cmd_identifier_token21] = ACTIONS(5038), - [aux_sym_cmd_identifier_token22] = ACTIONS(5038), - [aux_sym_cmd_identifier_token23] = ACTIONS(5038), - [aux_sym_cmd_identifier_token24] = ACTIONS(5038), - [aux_sym_cmd_identifier_token25] = ACTIONS(5038), - [aux_sym_cmd_identifier_token26] = ACTIONS(5038), - [aux_sym_cmd_identifier_token27] = ACTIONS(5038), - [aux_sym_cmd_identifier_token28] = ACTIONS(5038), - [aux_sym_cmd_identifier_token29] = ACTIONS(5038), - [aux_sym_cmd_identifier_token30] = ACTIONS(5038), - [aux_sym_cmd_identifier_token31] = ACTIONS(5038), - [aux_sym_cmd_identifier_token32] = ACTIONS(5038), - [aux_sym_cmd_identifier_token33] = ACTIONS(5038), - [aux_sym_cmd_identifier_token34] = ACTIONS(5036), - [aux_sym_cmd_identifier_token35] = ACTIONS(5038), - [aux_sym_cmd_identifier_token36] = ACTIONS(5038), - [aux_sym_cmd_identifier_token37] = ACTIONS(5038), - [aux_sym_cmd_identifier_token38] = ACTIONS(5036), - [aux_sym_cmd_identifier_token39] = ACTIONS(5038), - [aux_sym_cmd_identifier_token40] = ACTIONS(5038), - [sym__newline] = ACTIONS(5040), - [anon_sym_SEMI] = ACTIONS(5040), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5040), - [anon_sym_RBRACE] = ACTIONS(5040), - [anon_sym_STAR2] = ACTIONS(5044), - [aux_sym__val_number_decimal_token1] = ACTIONS(5046), - [aux_sym__val_number_decimal_token2] = ACTIONS(5046), - [aux_sym__val_number_decimal_token3] = ACTIONS(5048), - [aux_sym__val_number_decimal_token4] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [aux_sym_cell_path_repeat1] = STATE(1698), + [sym__newline] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1485), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT_DOT2] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(5064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1485), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1485), + [aux_sym_record_entry_token1] = ACTIONS(1485), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1699] = { - [sym_cell_path] = STATE(2163), - [sym_path] = STATE(1882), [sym_comment] = STATE(1699), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_err_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_GT_PIPE] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_GT2] = ACTIONS(1867), - [anon_sym_DASH2] = ACTIONS(1869), - [anon_sym_in2] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_EQ_GT] = ACTIONS(1869), - [anon_sym_STAR2] = ACTIONS(1867), - [anon_sym_and2] = ACTIONS(1869), - [anon_sym_xor2] = ACTIONS(1869), - [anon_sym_or2] = ACTIONS(1869), - [anon_sym_not_DASHin2] = ACTIONS(1869), - [anon_sym_starts_DASHwith2] = ACTIONS(1869), - [anon_sym_ends_DASHwith2] = ACTIONS(1869), - [anon_sym_EQ_EQ2] = ACTIONS(1869), - [anon_sym_BANG_EQ2] = ACTIONS(1869), - [anon_sym_LT2] = ACTIONS(1867), - [anon_sym_LT_EQ2] = ACTIONS(1869), - [anon_sym_GT_EQ2] = ACTIONS(1869), - [anon_sym_EQ_TILDE2] = ACTIONS(1869), - [anon_sym_BANG_TILDE2] = ACTIONS(1869), - [anon_sym_STAR_STAR2] = ACTIONS(1869), - [anon_sym_PLUS_PLUS2] = ACTIONS(1869), - [anon_sym_SLASH2] = ACTIONS(1867), - [anon_sym_mod2] = ACTIONS(1869), - [anon_sym_SLASH_SLASH2] = ACTIONS(1869), - [anon_sym_PLUS2] = ACTIONS(1867), - [anon_sym_bit_DASHshl2] = ACTIONS(1869), - [anon_sym_bit_DASHshr2] = ACTIONS(1869), - [anon_sym_bit_DASHand2] = ACTIONS(1869), - [anon_sym_bit_DASHxor2] = ACTIONS(1869), - [anon_sym_bit_DASHor2] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1867), - [anon_sym_out_GT] = ACTIONS(1867), - [anon_sym_e_GT] = ACTIONS(1867), - [anon_sym_o_GT] = ACTIONS(1867), - [anon_sym_err_PLUSout_GT] = ACTIONS(1867), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), - [anon_sym_o_PLUSe_GT] = ACTIONS(1867), - [anon_sym_e_PLUSo_GT] = ACTIONS(1867), - [anon_sym_err_GT_GT] = ACTIONS(1869), - [anon_sym_out_GT_GT] = ACTIONS(1869), - [anon_sym_e_GT_GT] = ACTIONS(1869), - [anon_sym_o_GT_GT] = ACTIONS(1869), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_in2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(255), }, [1700] = { [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym__newline] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_err_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_GT_PIPE] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [aux_sym__val_number_token4] = ACTIONS(2232), - [aux_sym__val_number_token5] = ACTIONS(2232), - [aux_sym__val_number_token6] = ACTIONS(2232), - [anon_sym_0b] = ACTIONS(2230), - [anon_sym_0o] = ACTIONS(2230), - [anon_sym_0x] = ACTIONS(2230), - [sym_val_date] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2232), - [anon_sym_out_GT_GT] = ACTIONS(2232), - [anon_sym_e_GT_GT] = ACTIONS(2232), - [anon_sym_o_GT_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), - [aux_sym_unquoted_token1] = ACTIONS(2230), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2232), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_in2] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(255), }, [1701] = { [sym_comment] = STATE(1701), - [sym__newline] = ACTIONS(5052), - [anon_sym_SEMI] = ACTIONS(5052), - [anon_sym_PIPE] = ACTIONS(5052), - [anon_sym_err_GT_PIPE] = ACTIONS(5052), - [anon_sym_out_GT_PIPE] = ACTIONS(5052), - [anon_sym_e_GT_PIPE] = ACTIONS(5052), - [anon_sym_o_GT_PIPE] = ACTIONS(5052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5052), - [anon_sym_LBRACK] = ACTIONS(5052), - [anon_sym_LPAREN] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(5052), - [anon_sym_DOLLAR] = ACTIONS(5054), - [anon_sym_DASH_DASH] = ACTIONS(5052), - [anon_sym_DASH2] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5052), - [anon_sym_RBRACE] = ACTIONS(5052), - [anon_sym_DOT_DOT] = ACTIONS(5054), - [anon_sym_LPAREN2] = ACTIONS(5052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5052), - [anon_sym_DOT_DOT_LT] = ACTIONS(5052), - [anon_sym_null] = ACTIONS(5052), - [anon_sym_true] = ACTIONS(5052), - [anon_sym_false] = ACTIONS(5052), - [aux_sym__val_number_decimal_token1] = ACTIONS(5054), - [aux_sym__val_number_decimal_token2] = ACTIONS(5052), - [aux_sym__val_number_decimal_token3] = ACTIONS(5052), - [aux_sym__val_number_decimal_token4] = ACTIONS(5052), - [aux_sym__val_number_token1] = ACTIONS(5052), - [aux_sym__val_number_token2] = ACTIONS(5052), - [aux_sym__val_number_token3] = ACTIONS(5052), - [aux_sym__val_number_token4] = ACTIONS(5052), - [aux_sym__val_number_token5] = ACTIONS(5052), - [aux_sym__val_number_token6] = ACTIONS(5052), - [anon_sym_0b] = ACTIONS(5054), - [anon_sym_0o] = ACTIONS(5054), - [anon_sym_0x] = ACTIONS(5054), - [sym_val_date] = ACTIONS(5052), - [anon_sym_DQUOTE] = ACTIONS(5052), - [sym__str_single_quotes] = ACTIONS(5052), - [sym__str_back_ticks] = ACTIONS(5052), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5052), - [anon_sym_err_GT] = ACTIONS(5054), - [anon_sym_out_GT] = ACTIONS(5054), - [anon_sym_e_GT] = ACTIONS(5054), - [anon_sym_o_GT] = ACTIONS(5054), - [anon_sym_err_PLUSout_GT] = ACTIONS(5054), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5054), - [anon_sym_o_PLUSe_GT] = ACTIONS(5054), - [anon_sym_e_PLUSo_GT] = ACTIONS(5054), - [anon_sym_err_GT_GT] = ACTIONS(5052), - [anon_sym_out_GT_GT] = ACTIONS(5052), - [anon_sym_e_GT_GT] = ACTIONS(5052), - [anon_sym_o_GT_GT] = ACTIONS(5052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5052), - [aux_sym_unquoted_token1] = ACTIONS(5054), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5052), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_in2] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1516), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(255), }, [1702] = { + [sym_path] = STATE(1909), [sym_comment] = STATE(1702), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_null] = ACTIONS(1026), - [anon_sym_true] = ACTIONS(1026), - [anon_sym_false] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1026), - [anon_sym_out_GT_GT] = ACTIONS(1026), - [anon_sym_e_GT_GT] = ACTIONS(1026), - [anon_sym_o_GT_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [aux_sym_unquoted_token4] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_err_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_GT_PIPE] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1485), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_GT2] = ACTIONS(1483), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_in2] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_STAR2] = ACTIONS(1483), + [anon_sym_and2] = ACTIONS(1485), + [anon_sym_xor2] = ACTIONS(1485), + [anon_sym_or2] = ACTIONS(1485), + [anon_sym_not_DASHin2] = ACTIONS(1485), + [anon_sym_starts_DASHwith2] = ACTIONS(1485), + [anon_sym_ends_DASHwith2] = ACTIONS(1485), + [anon_sym_EQ_EQ2] = ACTIONS(1485), + [anon_sym_BANG_EQ2] = ACTIONS(1485), + [anon_sym_LT2] = ACTIONS(1483), + [anon_sym_LT_EQ2] = ACTIONS(1485), + [anon_sym_GT_EQ2] = ACTIONS(1485), + [anon_sym_EQ_TILDE2] = ACTIONS(1485), + [anon_sym_BANG_TILDE2] = ACTIONS(1485), + [anon_sym_STAR_STAR2] = ACTIONS(1485), + [anon_sym_PLUS_PLUS2] = ACTIONS(1485), + [anon_sym_SLASH2] = ACTIONS(1483), + [anon_sym_mod2] = ACTIONS(1485), + [anon_sym_SLASH_SLASH2] = ACTIONS(1485), + [anon_sym_PLUS2] = ACTIONS(1483), + [anon_sym_bit_DASHshl2] = ACTIONS(1485), + [anon_sym_bit_DASHshr2] = ACTIONS(1485), + [anon_sym_bit_DASHand2] = ACTIONS(1485), + [anon_sym_bit_DASHxor2] = ACTIONS(1485), + [anon_sym_bit_DASHor2] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_err_GT] = ACTIONS(1483), + [anon_sym_out_GT] = ACTIONS(1483), + [anon_sym_e_GT] = ACTIONS(1483), + [anon_sym_o_GT] = ACTIONS(1483), + [anon_sym_err_PLUSout_GT] = ACTIONS(1483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1483), + [anon_sym_o_PLUSe_GT] = ACTIONS(1483), + [anon_sym_e_PLUSo_GT] = ACTIONS(1483), + [anon_sym_err_GT_GT] = ACTIONS(1485), + [anon_sym_out_GT_GT] = ACTIONS(1485), + [anon_sym_e_GT_GT] = ACTIONS(1485), + [anon_sym_o_GT_GT] = ACTIONS(1485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(255), }, [1703] = { - [sym_cell_path] = STATE(2153), - [sym_path] = STATE(2080), [sym_comment] = STATE(1703), - [aux_sym_cell_path_repeat1] = STATE(1816), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_in2] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(255), }, [1704] = { [sym_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_LPAREN2] = ACTIONS(2260), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), - [anon_sym_DOT_DOT_LT] = ACTIONS(2262), - [anon_sym_null] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2262), - [anon_sym_false] = ACTIONS(2262), - [aux_sym__val_number_decimal_token1] = ACTIONS(2258), - [aux_sym__val_number_decimal_token2] = ACTIONS(2262), - [aux_sym__val_number_decimal_token3] = ACTIONS(2262), - [aux_sym__val_number_decimal_token4] = ACTIONS(2262), - [aux_sym__val_number_token1] = ACTIONS(2262), - [aux_sym__val_number_token2] = ACTIONS(2262), - [aux_sym__val_number_token3] = ACTIONS(2262), - [aux_sym__val_number_token4] = ACTIONS(2262), - [aux_sym__val_number_token5] = ACTIONS(2262), - [aux_sym__val_number_token6] = ACTIONS(2262), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2258), - [anon_sym_0x] = ACTIONS(2258), - [sym_val_date] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [sym__str_single_quotes] = ACTIONS(2262), - [sym__str_back_ticks] = ACTIONS(2262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2262), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2258), - [anon_sym_out_GT] = ACTIONS(2258), - [anon_sym_e_GT] = ACTIONS(2258), - [anon_sym_o_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT] = ACTIONS(2258), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), - [aux_sym_unquoted_token1] = ACTIONS(2258), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2262), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_GT2] = ACTIONS(2240), + [anon_sym_DASH2] = ACTIONS(2242), + [anon_sym_in2] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_EQ_GT] = ACTIONS(2242), + [anon_sym_STAR2] = ACTIONS(2240), + [anon_sym_and2] = ACTIONS(2242), + [anon_sym_xor2] = ACTIONS(2242), + [anon_sym_or2] = ACTIONS(2242), + [anon_sym_not_DASHin2] = ACTIONS(2242), + [anon_sym_starts_DASHwith2] = ACTIONS(2242), + [anon_sym_ends_DASHwith2] = ACTIONS(2242), + [anon_sym_EQ_EQ2] = ACTIONS(2242), + [anon_sym_BANG_EQ2] = ACTIONS(2242), + [anon_sym_LT2] = ACTIONS(2240), + [anon_sym_LT_EQ2] = ACTIONS(2242), + [anon_sym_GT_EQ2] = ACTIONS(2242), + [anon_sym_EQ_TILDE2] = ACTIONS(2242), + [anon_sym_BANG_TILDE2] = ACTIONS(2242), + [anon_sym_STAR_STAR2] = ACTIONS(2242), + [anon_sym_PLUS_PLUS2] = ACTIONS(2242), + [anon_sym_SLASH2] = ACTIONS(2240), + [anon_sym_mod2] = ACTIONS(2242), + [anon_sym_SLASH_SLASH2] = ACTIONS(2242), + [anon_sym_PLUS2] = ACTIONS(2240), + [anon_sym_bit_DASHshl2] = ACTIONS(2242), + [anon_sym_bit_DASHshr2] = ACTIONS(2242), + [anon_sym_bit_DASHand2] = ACTIONS(2242), + [anon_sym_bit_DASHxor2] = ACTIONS(2242), + [anon_sym_bit_DASHor2] = ACTIONS(2242), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2240), + [anon_sym_out_GT] = ACTIONS(2240), + [anon_sym_e_GT] = ACTIONS(2240), + [anon_sym_o_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT] = ACTIONS(2240), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(255), }, [1705] = { [sym_comment] = STATE(1705), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_err_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_GT_PIPE] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_GT2] = ACTIONS(1044), - [anon_sym_DASH2] = ACTIONS(1046), - [anon_sym_in2] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_EQ_GT] = ACTIONS(1046), - [anon_sym_STAR2] = ACTIONS(1044), - [anon_sym_and2] = ACTIONS(1046), - [anon_sym_xor2] = ACTIONS(1046), - [anon_sym_or2] = ACTIONS(1046), - [anon_sym_not_DASHin2] = ACTIONS(1046), - [anon_sym_starts_DASHwith2] = ACTIONS(1046), - [anon_sym_ends_DASHwith2] = ACTIONS(1046), - [anon_sym_EQ_EQ2] = ACTIONS(1046), - [anon_sym_BANG_EQ2] = ACTIONS(1046), - [anon_sym_LT2] = ACTIONS(1044), - [anon_sym_LT_EQ2] = ACTIONS(1046), - [anon_sym_GT_EQ2] = ACTIONS(1046), - [anon_sym_EQ_TILDE2] = ACTIONS(1046), - [anon_sym_BANG_TILDE2] = ACTIONS(1046), - [anon_sym_STAR_STAR2] = ACTIONS(1046), - [anon_sym_PLUS_PLUS2] = ACTIONS(1046), - [anon_sym_SLASH2] = ACTIONS(1044), - [anon_sym_mod2] = ACTIONS(1046), - [anon_sym_SLASH_SLASH2] = ACTIONS(1046), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1046), - [anon_sym_bit_DASHshr2] = ACTIONS(1046), - [anon_sym_bit_DASHand2] = ACTIONS(1046), - [anon_sym_bit_DASHxor2] = ACTIONS(1046), - [anon_sym_bit_DASHor2] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1044), - [anon_sym_out_GT] = ACTIONS(1044), - [anon_sym_e_GT] = ACTIONS(1044), - [anon_sym_o_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT] = ACTIONS(1044), - [anon_sym_err_GT_GT] = ACTIONS(1046), - [anon_sym_out_GT_GT] = ACTIONS(1046), - [anon_sym_e_GT_GT] = ACTIONS(1046), - [anon_sym_o_GT_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__immediate_decimal_token1] = ACTIONS(5070), + [aux_sym__immediate_decimal_token2] = ACTIONS(5072), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1892), }, [1706] = { [sym_comment] = STATE(1706), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1707), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [aux_sym_unquoted_token2] = ACTIONS(4553), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(4977), + [sym_long_flag_identifier] = ACTIONS(5074), + [sym__newline] = ACTIONS(4977), + [anon_sym_SEMI] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_err_GT_PIPE] = ACTIONS(4977), + [anon_sym_out_GT_PIPE] = ACTIONS(4977), + [anon_sym_e_GT_PIPE] = ACTIONS(4977), + [anon_sym_o_GT_PIPE] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4977), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_DOLLAR] = ACTIONS(4979), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH2] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4977), + [anon_sym_DOT_DOT] = ACTIONS(4979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4977), + [anon_sym_DOT_DOT_LT] = ACTIONS(4977), + [anon_sym_null] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4979), + [anon_sym_false] = ACTIONS(4979), + [aux_sym__val_number_decimal_token1] = ACTIONS(4979), + [aux_sym__val_number_decimal_token2] = ACTIONS(4977), + [aux_sym__val_number_decimal_token3] = ACTIONS(4977), + [aux_sym__val_number_decimal_token4] = ACTIONS(4977), + [aux_sym__val_number_token1] = ACTIONS(4979), + [aux_sym__val_number_token2] = ACTIONS(4979), + [aux_sym__val_number_token3] = ACTIONS(4979), + [aux_sym__val_number_token4] = ACTIONS(4979), + [aux_sym__val_number_token5] = ACTIONS(4977), + [aux_sym__val_number_token6] = ACTIONS(4979), + [anon_sym_0b] = ACTIONS(4979), + [anon_sym_0o] = ACTIONS(4979), + [anon_sym_0x] = ACTIONS(4979), + [sym_val_date] = ACTIONS(4979), + [anon_sym_DQUOTE] = ACTIONS(4977), + [sym__str_single_quotes] = ACTIONS(4977), + [sym__str_back_ticks] = ACTIONS(4977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4977), + [anon_sym_err_GT] = ACTIONS(4979), + [anon_sym_out_GT] = ACTIONS(4979), + [anon_sym_e_GT] = ACTIONS(4979), + [anon_sym_o_GT] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT] = ACTIONS(4979), + [anon_sym_err_GT_GT] = ACTIONS(4977), + [anon_sym_out_GT_GT] = ACTIONS(4977), + [anon_sym_e_GT_GT] = ACTIONS(4977), + [anon_sym_o_GT_GT] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4977), + [anon_sym_EQ2] = ACTIONS(5076), + [aux_sym_unquoted_token1] = ACTIONS(4979), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4977), }, [1707] = { + [sym_cmd_identifier] = STATE(4183), + [sym__command_name] = STATE(6658), + [sym_scope_pattern] = STATE(6659), + [sym_wild_card] = STATE(6662), + [sym_command_list] = STATE(6663), + [sym__val_number_decimal] = STATE(3820), + [sym_val_string] = STATE(4210), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), [sym_comment] = STATE(1707), - [sym__newline] = ACTIONS(5056), - [anon_sym_SEMI] = ACTIONS(5056), - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_err_GT_PIPE] = ACTIONS(5056), - [anon_sym_out_GT_PIPE] = ACTIONS(5056), - [anon_sym_e_GT_PIPE] = ACTIONS(5056), - [anon_sym_o_GT_PIPE] = ACTIONS(5056), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5056), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5056), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5056), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5056), - [anon_sym_LBRACK] = ACTIONS(5056), - [anon_sym_LPAREN] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5056), - [anon_sym_DOLLAR] = ACTIONS(5058), - [anon_sym_DASH_DASH] = ACTIONS(5056), - [anon_sym_DASH2] = ACTIONS(5058), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_RBRACE] = ACTIONS(5056), - [anon_sym_DOT_DOT] = ACTIONS(5058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5056), - [anon_sym_DOT_DOT_LT] = ACTIONS(5056), - [anon_sym_null] = ACTIONS(5056), - [anon_sym_true] = ACTIONS(5056), - [anon_sym_false] = ACTIONS(5056), - [aux_sym__val_number_decimal_token1] = ACTIONS(5058), - [aux_sym__val_number_decimal_token2] = ACTIONS(5056), - [aux_sym__val_number_decimal_token3] = ACTIONS(5056), - [aux_sym__val_number_decimal_token4] = ACTIONS(5056), - [aux_sym__val_number_token1] = ACTIONS(5056), - [aux_sym__val_number_token2] = ACTIONS(5056), - [aux_sym__val_number_token3] = ACTIONS(5056), - [aux_sym__val_number_token4] = ACTIONS(5056), - [aux_sym__val_number_token5] = ACTIONS(5056), - [aux_sym__val_number_token6] = ACTIONS(5056), - [anon_sym_0b] = ACTIONS(5058), - [anon_sym_0o] = ACTIONS(5058), - [anon_sym_0x] = ACTIONS(5058), - [sym_val_date] = ACTIONS(5056), - [anon_sym_DQUOTE] = ACTIONS(5056), - [sym__str_single_quotes] = ACTIONS(5056), - [sym__str_back_ticks] = ACTIONS(5056), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), - [anon_sym_err_GT] = ACTIONS(5058), - [anon_sym_out_GT] = ACTIONS(5058), - [anon_sym_e_GT] = ACTIONS(5058), - [anon_sym_o_GT] = ACTIONS(5058), - [anon_sym_err_PLUSout_GT] = ACTIONS(5058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5058), - [anon_sym_o_PLUSe_GT] = ACTIONS(5058), - [anon_sym_e_PLUSo_GT] = ACTIONS(5058), - [anon_sym_err_GT_GT] = ACTIONS(5056), - [anon_sym_out_GT_GT] = ACTIONS(5056), - [anon_sym_e_GT_GT] = ACTIONS(5056), - [anon_sym_o_GT_GT] = ACTIONS(5056), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5056), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5056), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5056), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5056), - [anon_sym_EQ2] = ACTIONS(5060), - [aux_sym_unquoted_token1] = ACTIONS(5058), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5056), + [aux_sym_cmd_identifier_token1] = ACTIONS(5078), + [aux_sym_cmd_identifier_token2] = ACTIONS(5080), + [aux_sym_cmd_identifier_token3] = ACTIONS(5080), + [aux_sym_cmd_identifier_token4] = ACTIONS(5080), + [aux_sym_cmd_identifier_token5] = ACTIONS(5080), + [aux_sym_cmd_identifier_token6] = ACTIONS(5080), + [aux_sym_cmd_identifier_token7] = ACTIONS(5080), + [aux_sym_cmd_identifier_token8] = ACTIONS(5080), + [aux_sym_cmd_identifier_token9] = ACTIONS(5078), + [aux_sym_cmd_identifier_token10] = ACTIONS(5080), + [aux_sym_cmd_identifier_token11] = ACTIONS(5080), + [aux_sym_cmd_identifier_token12] = ACTIONS(5080), + [aux_sym_cmd_identifier_token13] = ACTIONS(5078), + [aux_sym_cmd_identifier_token14] = ACTIONS(5080), + [aux_sym_cmd_identifier_token15] = ACTIONS(5078), + [aux_sym_cmd_identifier_token16] = ACTIONS(5080), + [aux_sym_cmd_identifier_token17] = ACTIONS(5080), + [aux_sym_cmd_identifier_token18] = ACTIONS(5080), + [aux_sym_cmd_identifier_token19] = ACTIONS(5080), + [aux_sym_cmd_identifier_token20] = ACTIONS(5080), + [aux_sym_cmd_identifier_token21] = ACTIONS(5080), + [aux_sym_cmd_identifier_token22] = ACTIONS(5080), + [aux_sym_cmd_identifier_token23] = ACTIONS(5080), + [aux_sym_cmd_identifier_token24] = ACTIONS(5080), + [aux_sym_cmd_identifier_token25] = ACTIONS(5080), + [aux_sym_cmd_identifier_token26] = ACTIONS(5080), + [aux_sym_cmd_identifier_token27] = ACTIONS(5080), + [aux_sym_cmd_identifier_token28] = ACTIONS(5080), + [aux_sym_cmd_identifier_token29] = ACTIONS(5080), + [aux_sym_cmd_identifier_token30] = ACTIONS(5080), + [aux_sym_cmd_identifier_token31] = ACTIONS(5080), + [aux_sym_cmd_identifier_token32] = ACTIONS(5080), + [aux_sym_cmd_identifier_token33] = ACTIONS(5080), + [aux_sym_cmd_identifier_token34] = ACTIONS(5078), + [aux_sym_cmd_identifier_token35] = ACTIONS(5080), + [aux_sym_cmd_identifier_token36] = ACTIONS(5080), + [aux_sym_cmd_identifier_token37] = ACTIONS(5080), + [aux_sym_cmd_identifier_token38] = ACTIONS(5078), + [aux_sym_cmd_identifier_token39] = ACTIONS(5080), + [aux_sym_cmd_identifier_token40] = ACTIONS(5080), + [sym__newline] = ACTIONS(5082), + [anon_sym_SEMI] = ACTIONS(5082), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5082), + [anon_sym_RBRACE] = ACTIONS(5082), + [anon_sym_STAR2] = ACTIONS(5086), + [aux_sym__val_number_decimal_token1] = ACTIONS(5088), + [aux_sym__val_number_decimal_token2] = ACTIONS(5088), + [aux_sym__val_number_decimal_token3] = ACTIONS(5090), + [aux_sym__val_number_decimal_token4] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1708] = { + [sym_cmd_identifier] = STATE(4183), + [sym__command_name] = STATE(6658), + [sym_scope_pattern] = STATE(6712), + [sym_wild_card] = STATE(6662), + [sym_command_list] = STATE(6663), + [sym__val_number_decimal] = STATE(3820), + [sym_val_string] = STATE(4210), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), [sym_comment] = STATE(1708), - [sym__newline] = ACTIONS(5062), - [anon_sym_SEMI] = ACTIONS(5062), - [anon_sym_PIPE] = ACTIONS(5062), - [anon_sym_err_GT_PIPE] = ACTIONS(5062), - [anon_sym_out_GT_PIPE] = ACTIONS(5062), - [anon_sym_e_GT_PIPE] = ACTIONS(5062), - [anon_sym_o_GT_PIPE] = ACTIONS(5062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_DOLLAR] = ACTIONS(5064), - [anon_sym_DASH_DASH] = ACTIONS(5062), - [anon_sym_DASH2] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_DOT_DOT] = ACTIONS(5064), - [anon_sym_LPAREN2] = ACTIONS(5062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5062), - [anon_sym_DOT_DOT_LT] = ACTIONS(5062), - [anon_sym_null] = ACTIONS(5062), - [anon_sym_true] = ACTIONS(5062), - [anon_sym_false] = ACTIONS(5062), - [aux_sym__val_number_decimal_token1] = ACTIONS(5064), - [aux_sym__val_number_decimal_token2] = ACTIONS(5062), - [aux_sym__val_number_decimal_token3] = ACTIONS(5062), - [aux_sym__val_number_decimal_token4] = ACTIONS(5062), - [aux_sym__val_number_token1] = ACTIONS(5062), - [aux_sym__val_number_token2] = ACTIONS(5062), - [aux_sym__val_number_token3] = ACTIONS(5062), - [aux_sym__val_number_token4] = ACTIONS(5062), - [aux_sym__val_number_token5] = ACTIONS(5062), - [aux_sym__val_number_token6] = ACTIONS(5062), - [anon_sym_0b] = ACTIONS(5064), - [anon_sym_0o] = ACTIONS(5064), - [anon_sym_0x] = ACTIONS(5064), - [sym_val_date] = ACTIONS(5062), - [anon_sym_DQUOTE] = ACTIONS(5062), - [sym__str_single_quotes] = ACTIONS(5062), - [sym__str_back_ticks] = ACTIONS(5062), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5062), - [anon_sym_err_GT] = ACTIONS(5064), - [anon_sym_out_GT] = ACTIONS(5064), - [anon_sym_e_GT] = ACTIONS(5064), - [anon_sym_o_GT] = ACTIONS(5064), - [anon_sym_err_PLUSout_GT] = ACTIONS(5064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5064), - [anon_sym_o_PLUSe_GT] = ACTIONS(5064), - [anon_sym_e_PLUSo_GT] = ACTIONS(5064), - [anon_sym_err_GT_GT] = ACTIONS(5062), - [anon_sym_out_GT_GT] = ACTIONS(5062), - [anon_sym_e_GT_GT] = ACTIONS(5062), - [anon_sym_o_GT_GT] = ACTIONS(5062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5062), - [aux_sym_unquoted_token1] = ACTIONS(5064), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5062), + [aux_sym_cmd_identifier_token1] = ACTIONS(5078), + [aux_sym_cmd_identifier_token2] = ACTIONS(5080), + [aux_sym_cmd_identifier_token3] = ACTIONS(5080), + [aux_sym_cmd_identifier_token4] = ACTIONS(5080), + [aux_sym_cmd_identifier_token5] = ACTIONS(5080), + [aux_sym_cmd_identifier_token6] = ACTIONS(5080), + [aux_sym_cmd_identifier_token7] = ACTIONS(5080), + [aux_sym_cmd_identifier_token8] = ACTIONS(5080), + [aux_sym_cmd_identifier_token9] = ACTIONS(5078), + [aux_sym_cmd_identifier_token10] = ACTIONS(5080), + [aux_sym_cmd_identifier_token11] = ACTIONS(5080), + [aux_sym_cmd_identifier_token12] = ACTIONS(5080), + [aux_sym_cmd_identifier_token13] = ACTIONS(5078), + [aux_sym_cmd_identifier_token14] = ACTIONS(5080), + [aux_sym_cmd_identifier_token15] = ACTIONS(5078), + [aux_sym_cmd_identifier_token16] = ACTIONS(5080), + [aux_sym_cmd_identifier_token17] = ACTIONS(5080), + [aux_sym_cmd_identifier_token18] = ACTIONS(5080), + [aux_sym_cmd_identifier_token19] = ACTIONS(5080), + [aux_sym_cmd_identifier_token20] = ACTIONS(5080), + [aux_sym_cmd_identifier_token21] = ACTIONS(5080), + [aux_sym_cmd_identifier_token22] = ACTIONS(5080), + [aux_sym_cmd_identifier_token23] = ACTIONS(5080), + [aux_sym_cmd_identifier_token24] = ACTIONS(5080), + [aux_sym_cmd_identifier_token25] = ACTIONS(5080), + [aux_sym_cmd_identifier_token26] = ACTIONS(5080), + [aux_sym_cmd_identifier_token27] = ACTIONS(5080), + [aux_sym_cmd_identifier_token28] = ACTIONS(5080), + [aux_sym_cmd_identifier_token29] = ACTIONS(5080), + [aux_sym_cmd_identifier_token30] = ACTIONS(5080), + [aux_sym_cmd_identifier_token31] = ACTIONS(5080), + [aux_sym_cmd_identifier_token32] = ACTIONS(5080), + [aux_sym_cmd_identifier_token33] = ACTIONS(5080), + [aux_sym_cmd_identifier_token34] = ACTIONS(5078), + [aux_sym_cmd_identifier_token35] = ACTIONS(5080), + [aux_sym_cmd_identifier_token36] = ACTIONS(5080), + [aux_sym_cmd_identifier_token37] = ACTIONS(5080), + [aux_sym_cmd_identifier_token38] = ACTIONS(5078), + [aux_sym_cmd_identifier_token39] = ACTIONS(5080), + [aux_sym_cmd_identifier_token40] = ACTIONS(5080), + [sym__newline] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_STAR2] = ACTIONS(5086), + [aux_sym__val_number_decimal_token1] = ACTIONS(5088), + [aux_sym__val_number_decimal_token2] = ACTIONS(5088), + [aux_sym__val_number_decimal_token3] = ACTIONS(5090), + [aux_sym__val_number_decimal_token4] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1709] = { - [sym_cell_path] = STATE(2140), - [sym_path] = STATE(2080), [sym_comment] = STATE(1709), - [aux_sym_cell_path_repeat1] = STATE(1816), - [ts_builtin_sym_end] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_GT2] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1749), - [anon_sym_in2] = ACTIONS(1749), - [anon_sym_STAR2] = ACTIONS(1747), - [anon_sym_and2] = ACTIONS(1749), - [anon_sym_xor2] = ACTIONS(1749), - [anon_sym_or2] = ACTIONS(1749), - [anon_sym_not_DASHin2] = ACTIONS(1749), - [anon_sym_starts_DASHwith2] = ACTIONS(1749), - [anon_sym_ends_DASHwith2] = ACTIONS(1749), - [anon_sym_EQ_EQ2] = ACTIONS(1749), - [anon_sym_BANG_EQ2] = ACTIONS(1749), - [anon_sym_LT2] = ACTIONS(1747), - [anon_sym_LT_EQ2] = ACTIONS(1749), - [anon_sym_GT_EQ2] = ACTIONS(1749), - [anon_sym_EQ_TILDE2] = ACTIONS(1749), - [anon_sym_BANG_TILDE2] = ACTIONS(1749), - [anon_sym_STAR_STAR2] = ACTIONS(1749), - [anon_sym_PLUS_PLUS2] = ACTIONS(1749), - [anon_sym_SLASH2] = ACTIONS(1747), - [anon_sym_mod2] = ACTIONS(1749), - [anon_sym_SLASH_SLASH2] = ACTIONS(1749), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_bit_DASHshl2] = ACTIONS(1749), - [anon_sym_bit_DASHshr2] = ACTIONS(1749), - [anon_sym_bit_DASHand2] = ACTIONS(1749), - [anon_sym_bit_DASHxor2] = ACTIONS(1749), - [anon_sym_bit_DASHor2] = ACTIONS(1749), - [anon_sym_DOT_DOT2] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2409), + [sym__newline] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2409), + [anon_sym_err_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_GT_PIPE] = ACTIONS(2409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_0b] = ACTIONS(2407), + [anon_sym_0o] = ACTIONS(2407), + [anon_sym_0x] = ACTIONS(2407), + [sym_val_date] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [anon_sym_err_GT] = ACTIONS(2407), + [anon_sym_out_GT] = ACTIONS(2407), + [anon_sym_e_GT] = ACTIONS(2407), + [anon_sym_o_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT] = ACTIONS(2407), + [anon_sym_err_GT_GT] = ACTIONS(2407), + [anon_sym_out_GT_GT] = ACTIONS(2407), + [anon_sym_e_GT_GT] = ACTIONS(2407), + [anon_sym_o_GT_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2407), + [aux_sym_unquoted_token1] = ACTIONS(2407), + [aux_sym_unquoted_token4] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2409), }, [1710] = { - [sym_cmd_identifier] = STATE(4154), - [sym__command_name] = STATE(6522), - [sym_scope_pattern] = STATE(6253), - [sym_wild_card] = STATE(6524), - [sym_command_list] = STATE(6525), - [sym__val_number_decimal] = STATE(3764), - [sym_val_string] = STATE(4161), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), [sym_comment] = STATE(1710), - [aux_sym_cmd_identifier_token1] = ACTIONS(5036), - [aux_sym_cmd_identifier_token2] = ACTIONS(5038), - [aux_sym_cmd_identifier_token3] = ACTIONS(5038), - [aux_sym_cmd_identifier_token4] = ACTIONS(5038), - [aux_sym_cmd_identifier_token5] = ACTIONS(5038), - [aux_sym_cmd_identifier_token6] = ACTIONS(5038), - [aux_sym_cmd_identifier_token7] = ACTIONS(5038), - [aux_sym_cmd_identifier_token8] = ACTIONS(5038), - [aux_sym_cmd_identifier_token9] = ACTIONS(5036), - [aux_sym_cmd_identifier_token10] = ACTIONS(5038), - [aux_sym_cmd_identifier_token11] = ACTIONS(5038), - [aux_sym_cmd_identifier_token12] = ACTIONS(5038), - [aux_sym_cmd_identifier_token13] = ACTIONS(5036), - [aux_sym_cmd_identifier_token14] = ACTIONS(5038), - [aux_sym_cmd_identifier_token15] = ACTIONS(5036), - [aux_sym_cmd_identifier_token16] = ACTIONS(5038), - [aux_sym_cmd_identifier_token17] = ACTIONS(5038), - [aux_sym_cmd_identifier_token18] = ACTIONS(5038), - [aux_sym_cmd_identifier_token19] = ACTIONS(5038), - [aux_sym_cmd_identifier_token20] = ACTIONS(5038), - [aux_sym_cmd_identifier_token21] = ACTIONS(5038), - [aux_sym_cmd_identifier_token22] = ACTIONS(5038), - [aux_sym_cmd_identifier_token23] = ACTIONS(5038), - [aux_sym_cmd_identifier_token24] = ACTIONS(5038), - [aux_sym_cmd_identifier_token25] = ACTIONS(5038), - [aux_sym_cmd_identifier_token26] = ACTIONS(5038), - [aux_sym_cmd_identifier_token27] = ACTIONS(5038), - [aux_sym_cmd_identifier_token28] = ACTIONS(5038), - [aux_sym_cmd_identifier_token29] = ACTIONS(5038), - [aux_sym_cmd_identifier_token30] = ACTIONS(5038), - [aux_sym_cmd_identifier_token31] = ACTIONS(5038), - [aux_sym_cmd_identifier_token32] = ACTIONS(5038), - [aux_sym_cmd_identifier_token33] = ACTIONS(5038), - [aux_sym_cmd_identifier_token34] = ACTIONS(5036), - [aux_sym_cmd_identifier_token35] = ACTIONS(5038), - [aux_sym_cmd_identifier_token36] = ACTIONS(5038), - [aux_sym_cmd_identifier_token37] = ACTIONS(5038), - [aux_sym_cmd_identifier_token38] = ACTIONS(5036), - [aux_sym_cmd_identifier_token39] = ACTIONS(5038), - [aux_sym_cmd_identifier_token40] = ACTIONS(5038), - [sym__newline] = ACTIONS(5066), - [anon_sym_SEMI] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5066), - [anon_sym_RBRACE] = ACTIONS(5066), - [anon_sym_STAR2] = ACTIONS(5044), - [aux_sym__val_number_decimal_token1] = ACTIONS(5046), - [aux_sym__val_number_decimal_token2] = ACTIONS(5046), - [aux_sym__val_number_decimal_token3] = ACTIONS(5048), - [aux_sym__val_number_decimal_token4] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym__newline] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_err_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_GT_PIPE] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_LPAREN2] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1958), + [anon_sym_DOT_DOT_LT] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1950), + [aux_sym__val_number_decimal_token2] = ACTIONS(1958), + [aux_sym__val_number_decimal_token3] = ACTIONS(1958), + [aux_sym__val_number_decimal_token4] = ACTIONS(1958), + [aux_sym__val_number_token1] = ACTIONS(1958), + [aux_sym__val_number_token2] = ACTIONS(1958), + [aux_sym__val_number_token3] = ACTIONS(1958), + [aux_sym__val_number_token4] = ACTIONS(1958), + [aux_sym__val_number_token5] = ACTIONS(1958), + [aux_sym__val_number_token6] = ACTIONS(1958), + [anon_sym_0b] = ACTIONS(1950), + [anon_sym_0o] = ACTIONS(1950), + [anon_sym_0x] = ACTIONS(1950), + [sym_val_date] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym__str_single_quotes] = ACTIONS(1958), + [sym__str_back_ticks] = ACTIONS(1958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1950), + [anon_sym_out_GT] = ACTIONS(1950), + [anon_sym_e_GT] = ACTIONS(1950), + [anon_sym_o_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT] = ACTIONS(1950), + [anon_sym_err_GT_GT] = ACTIONS(1958), + [anon_sym_out_GT_GT] = ACTIONS(1958), + [anon_sym_e_GT_GT] = ACTIONS(1958), + [anon_sym_o_GT_GT] = ACTIONS(1958), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1958), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1958), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1958), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1958), + [aux_sym_unquoted_token1] = ACTIONS(1950), + [aux_sym_unquoted_token2] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1958), }, [1711] = { [sym_comment] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_LPAREN2] = ACTIONS(2240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2238), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_0b] = ACTIONS(2238), - [anon_sym_0o] = ACTIONS(2238), - [anon_sym_0x] = ACTIONS(2238), - [sym_val_date] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2238), - [anon_sym_out_GT] = ACTIONS(2238), - [anon_sym_e_GT] = ACTIONS(2238), - [anon_sym_o_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT] = ACTIONS(2238), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [aux_sym_unquoted_token1] = ACTIONS(2238), - [aux_sym_unquoted_token4] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1768), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_in2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1768), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1768), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1768), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1768), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1768), + [sym_duration_unit] = ACTIONS(1770), + [anon_sym_err_GT] = ACTIONS(1768), + [anon_sym_out_GT] = ACTIONS(1768), + [anon_sym_e_GT] = ACTIONS(1768), + [anon_sym_o_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT] = ACTIONS(1768), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [aux_sym_unquoted_token2] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(255), }, [1712] = { + [sym_cmd_identifier] = STATE(4183), + [sym__command_name] = STATE(6658), + [sym_scope_pattern] = STATE(6338), + [sym_wild_card] = STATE(6662), + [sym_command_list] = STATE(6663), + [sym__val_number_decimal] = STATE(3820), + [sym_val_string] = STATE(4210), + [sym__raw_str] = STATE(4386), + [sym__str_double_quotes] = STATE(4386), [sym_comment] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(1828), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1822), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [aux_sym_unquoted_token2] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1828), + [aux_sym_cmd_identifier_token1] = ACTIONS(5078), + [aux_sym_cmd_identifier_token2] = ACTIONS(5080), + [aux_sym_cmd_identifier_token3] = ACTIONS(5080), + [aux_sym_cmd_identifier_token4] = ACTIONS(5080), + [aux_sym_cmd_identifier_token5] = ACTIONS(5080), + [aux_sym_cmd_identifier_token6] = ACTIONS(5080), + [aux_sym_cmd_identifier_token7] = ACTIONS(5080), + [aux_sym_cmd_identifier_token8] = ACTIONS(5080), + [aux_sym_cmd_identifier_token9] = ACTIONS(5078), + [aux_sym_cmd_identifier_token10] = ACTIONS(5080), + [aux_sym_cmd_identifier_token11] = ACTIONS(5080), + [aux_sym_cmd_identifier_token12] = ACTIONS(5080), + [aux_sym_cmd_identifier_token13] = ACTIONS(5078), + [aux_sym_cmd_identifier_token14] = ACTIONS(5080), + [aux_sym_cmd_identifier_token15] = ACTIONS(5078), + [aux_sym_cmd_identifier_token16] = ACTIONS(5080), + [aux_sym_cmd_identifier_token17] = ACTIONS(5080), + [aux_sym_cmd_identifier_token18] = ACTIONS(5080), + [aux_sym_cmd_identifier_token19] = ACTIONS(5080), + [aux_sym_cmd_identifier_token20] = ACTIONS(5080), + [aux_sym_cmd_identifier_token21] = ACTIONS(5080), + [aux_sym_cmd_identifier_token22] = ACTIONS(5080), + [aux_sym_cmd_identifier_token23] = ACTIONS(5080), + [aux_sym_cmd_identifier_token24] = ACTIONS(5080), + [aux_sym_cmd_identifier_token25] = ACTIONS(5080), + [aux_sym_cmd_identifier_token26] = ACTIONS(5080), + [aux_sym_cmd_identifier_token27] = ACTIONS(5080), + [aux_sym_cmd_identifier_token28] = ACTIONS(5080), + [aux_sym_cmd_identifier_token29] = ACTIONS(5080), + [aux_sym_cmd_identifier_token30] = ACTIONS(5080), + [aux_sym_cmd_identifier_token31] = ACTIONS(5080), + [aux_sym_cmd_identifier_token32] = ACTIONS(5080), + [aux_sym_cmd_identifier_token33] = ACTIONS(5080), + [aux_sym_cmd_identifier_token34] = ACTIONS(5078), + [aux_sym_cmd_identifier_token35] = ACTIONS(5080), + [aux_sym_cmd_identifier_token36] = ACTIONS(5080), + [aux_sym_cmd_identifier_token37] = ACTIONS(5080), + [aux_sym_cmd_identifier_token38] = ACTIONS(5078), + [aux_sym_cmd_identifier_token39] = ACTIONS(5080), + [aux_sym_cmd_identifier_token40] = ACTIONS(5080), + [sym__newline] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5096), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_STAR2] = ACTIONS(5086), + [aux_sym__val_number_decimal_token1] = ACTIONS(5088), + [aux_sym__val_number_decimal_token2] = ACTIONS(5088), + [aux_sym__val_number_decimal_token3] = ACTIONS(5090), + [aux_sym__val_number_decimal_token4] = ACTIONS(5092), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym__str_single_quotes] = ACTIONS(4043), + [sym__str_back_ticks] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(4045), }, [1713] = { [sym_comment] = STATE(1713), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2238), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_0b] = ACTIONS(2238), - [anon_sym_0o] = ACTIONS(2238), - [anon_sym_0x] = ACTIONS(2238), - [sym_val_date] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2238), - [anon_sym_out_GT] = ACTIONS(2238), - [anon_sym_e_GT] = ACTIONS(2238), - [anon_sym_o_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT] = ACTIONS(2238), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [aux_sym_unquoted_token1] = ACTIONS(2238), - [aux_sym_unquoted_token4] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2242), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1921), }, [1714] = { [sym_comment] = STATE(1714), - [sym__newline] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_err_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_GT_PIPE] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_DASH2] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2326), - [anon_sym_DOT_DOT_LT] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2322), - [aux_sym__val_number_decimal_token2] = ACTIONS(2326), - [aux_sym__val_number_decimal_token3] = ACTIONS(2326), - [aux_sym__val_number_decimal_token4] = ACTIONS(2326), - [aux_sym__val_number_token1] = ACTIONS(2326), - [aux_sym__val_number_token2] = ACTIONS(2326), - [aux_sym__val_number_token3] = ACTIONS(2326), - [aux_sym__val_number_token4] = ACTIONS(2326), - [aux_sym__val_number_token5] = ACTIONS(2326), - [aux_sym__val_number_token6] = ACTIONS(2326), - [anon_sym_0b] = ACTIONS(2322), - [anon_sym_0o] = ACTIONS(2322), - [anon_sym_0x] = ACTIONS(2322), - [anon_sym_LBRACK2] = ACTIONS(5068), - [sym_val_date] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym__str_single_quotes] = ACTIONS(2326), - [sym__str_back_ticks] = ACTIONS(2326), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), - [anon_sym_err_GT] = ACTIONS(2322), - [anon_sym_out_GT] = ACTIONS(2322), - [anon_sym_e_GT] = ACTIONS(2322), - [anon_sym_o_GT] = ACTIONS(2322), - [anon_sym_err_PLUSout_GT] = ACTIONS(2322), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2322), - [anon_sym_o_PLUSe_GT] = ACTIONS(2322), - [anon_sym_e_PLUSo_GT] = ACTIONS(2322), - [anon_sym_err_GT_GT] = ACTIONS(2326), - [anon_sym_out_GT_GT] = ACTIONS(2326), - [anon_sym_e_GT_GT] = ACTIONS(2326), - [anon_sym_o_GT_GT] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), - [aux_sym_unquoted_token1] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [sym_filesize_unit] = ACTIONS(1760), + [sym_duration_unit] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(255), }, [1715] = { [sym_comment] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_null] = ACTIONS(1026), - [anon_sym_true] = ACTIONS(1026), - [anon_sym_false] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1026), - [anon_sym_out_GT_GT] = ACTIONS(1026), - [anon_sym_e_GT_GT] = ACTIONS(1026), - [anon_sym_o_GT_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [aux_sym_unquoted_token4] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym__newline] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_err_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_GT_PIPE] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1948), + [anon_sym_DOT_DOT_LT] = ACTIONS(1948), + [anon_sym_null] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_0b] = ACTIONS(1940), + [anon_sym_0o] = ACTIONS(1940), + [anon_sym_0x] = ACTIONS(1940), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1948), + [anon_sym_err_GT] = ACTIONS(1940), + [anon_sym_out_GT] = ACTIONS(1940), + [anon_sym_e_GT] = ACTIONS(1940), + [anon_sym_o_GT] = ACTIONS(1940), + [anon_sym_err_PLUSout_GT] = ACTIONS(1940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), + [anon_sym_o_PLUSe_GT] = ACTIONS(1940), + [anon_sym_e_PLUSo_GT] = ACTIONS(1940), + [anon_sym_err_GT_GT] = ACTIONS(1948), + [anon_sym_out_GT_GT] = ACTIONS(1948), + [anon_sym_e_GT_GT] = ACTIONS(1948), + [anon_sym_o_GT_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1948), + [aux_sym_unquoted_token1] = ACTIONS(1940), + [aux_sym_unquoted_token2] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1948), }, [1716] = { + [sym__expr_parenthesized_immediate] = STATE(7492), [sym_comment] = STATE(1716), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [aux_sym__val_number_token4] = ACTIONS(2246), - [aux_sym__val_number_token5] = ACTIONS(2246), - [aux_sym__val_number_token6] = ACTIONS(2246), - [anon_sym_0b] = ACTIONS(2246), - [anon_sym_0o] = ACTIONS(2246), - [anon_sym_0x] = ACTIONS(2246), - [sym_val_date] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [aux_sym_unquoted_token1] = ACTIONS(2246), - [aux_sym_unquoted_token4] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [sym__newline] = ACTIONS(5100), + [anon_sym_SEMI] = ACTIONS(5100), + [anon_sym_PIPE] = ACTIONS(5100), + [anon_sym_err_GT_PIPE] = ACTIONS(5100), + [anon_sym_out_GT_PIPE] = ACTIONS(5100), + [anon_sym_e_GT_PIPE] = ACTIONS(5100), + [anon_sym_o_GT_PIPE] = ACTIONS(5100), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5100), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5100), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5100), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5100), + [anon_sym_LBRACK] = ACTIONS(5100), + [anon_sym_LPAREN] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5100), + [anon_sym_DOLLAR] = ACTIONS(5102), + [anon_sym_DASH_DASH] = ACTIONS(5100), + [anon_sym_DASH2] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_DOT_DOT] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(4281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5100), + [anon_sym_DOT_DOT_LT] = ACTIONS(5100), + [anon_sym_null] = ACTIONS(5100), + [anon_sym_true] = ACTIONS(5100), + [anon_sym_false] = ACTIONS(5100), + [aux_sym__val_number_decimal_token1] = ACTIONS(5102), + [aux_sym__val_number_decimal_token2] = ACTIONS(5100), + [aux_sym__val_number_decimal_token3] = ACTIONS(5100), + [aux_sym__val_number_decimal_token4] = ACTIONS(5100), + [aux_sym__val_number_token1] = ACTIONS(5100), + [aux_sym__val_number_token2] = ACTIONS(5100), + [aux_sym__val_number_token3] = ACTIONS(5100), + [aux_sym__val_number_token4] = ACTIONS(5100), + [aux_sym__val_number_token5] = ACTIONS(5100), + [aux_sym__val_number_token6] = ACTIONS(5100), + [anon_sym_0b] = ACTIONS(5102), + [anon_sym_0o] = ACTIONS(5102), + [anon_sym_0x] = ACTIONS(5102), + [sym_val_date] = ACTIONS(5100), + [anon_sym_DQUOTE] = ACTIONS(5100), + [sym__str_single_quotes] = ACTIONS(5100), + [sym__str_back_ticks] = ACTIONS(5100), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5100), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5100), + [anon_sym_err_GT] = ACTIONS(5102), + [anon_sym_out_GT] = ACTIONS(5102), + [anon_sym_e_GT] = ACTIONS(5102), + [anon_sym_o_GT] = ACTIONS(5102), + [anon_sym_err_PLUSout_GT] = ACTIONS(5102), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5102), + [anon_sym_o_PLUSe_GT] = ACTIONS(5102), + [anon_sym_e_PLUSo_GT] = ACTIONS(5102), + [anon_sym_err_GT_GT] = ACTIONS(5100), + [anon_sym_out_GT_GT] = ACTIONS(5100), + [anon_sym_e_GT_GT] = ACTIONS(5100), + [anon_sym_o_GT_GT] = ACTIONS(5100), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5100), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5100), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5100), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5100), + [aux_sym_unquoted_token1] = ACTIONS(5102), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5100), }, [1717] = { [sym_comment] = STATE(1717), - [sym__newline] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_err_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_GT_PIPE] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym__newline] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_err_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_GT_PIPE] = ACTIONS(2349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_DASH_DASH] = ACTIONS(2345), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_LPAREN2] = ACTIONS(2347), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2345), + [anon_sym_DOT_DOT_LT] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [aux_sym__val_number_token4] = ACTIONS(2345), + [aux_sym__val_number_token5] = ACTIONS(2345), + [aux_sym__val_number_token6] = ACTIONS(2345), + [anon_sym_0b] = ACTIONS(2345), + [anon_sym_0o] = ACTIONS(2345), + [anon_sym_0x] = ACTIONS(2345), + [sym_val_date] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2349), + [anon_sym_err_GT] = ACTIONS(2345), + [anon_sym_out_GT] = ACTIONS(2345), + [anon_sym_e_GT] = ACTIONS(2345), + [anon_sym_o_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT] = ACTIONS(2345), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [aux_sym_unquoted_token1] = ACTIONS(2345), + [aux_sym_unquoted_token4] = ACTIONS(2351), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), + [sym_raw_string_begin] = ACTIONS(2349), }, [1718] = { - [sym_cell_path] = STATE(1652), - [sym_path] = STATE(1882), [sym_comment] = STATE(1718), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_GT2] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1749), - [anon_sym_in2] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_EQ_GT] = ACTIONS(1749), - [anon_sym_STAR2] = ACTIONS(1747), - [anon_sym_and2] = ACTIONS(1749), - [anon_sym_xor2] = ACTIONS(1749), - [anon_sym_or2] = ACTIONS(1749), - [anon_sym_not_DASHin2] = ACTIONS(1749), - [anon_sym_starts_DASHwith2] = ACTIONS(1749), - [anon_sym_ends_DASHwith2] = ACTIONS(1749), - [anon_sym_EQ_EQ2] = ACTIONS(1749), - [anon_sym_BANG_EQ2] = ACTIONS(1749), - [anon_sym_LT2] = ACTIONS(1747), - [anon_sym_LT_EQ2] = ACTIONS(1749), - [anon_sym_GT_EQ2] = ACTIONS(1749), - [anon_sym_EQ_TILDE2] = ACTIONS(1749), - [anon_sym_BANG_TILDE2] = ACTIONS(1749), - [anon_sym_STAR_STAR2] = ACTIONS(1749), - [anon_sym_PLUS_PLUS2] = ACTIONS(1749), - [anon_sym_SLASH2] = ACTIONS(1747), - [anon_sym_mod2] = ACTIONS(1749), - [anon_sym_SLASH_SLASH2] = ACTIONS(1749), - [anon_sym_PLUS2] = ACTIONS(1747), - [anon_sym_bit_DASHshl2] = ACTIONS(1749), - [anon_sym_bit_DASHshr2] = ACTIONS(1749), - [anon_sym_bit_DASHand2] = ACTIONS(1749), - [anon_sym_bit_DASHxor2] = ACTIONS(1749), - [anon_sym_bit_DASHor2] = ACTIONS(1749), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2409), + [anon_sym_err_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_GT_PIPE] = ACTIONS(2409), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_DOT_DOT] = ACTIONS(2407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [anon_sym_null] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_0b] = ACTIONS(2407), + [anon_sym_0o] = ACTIONS(2407), + [anon_sym_0x] = ACTIONS(2407), + [sym_val_date] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [anon_sym_err_GT] = ACTIONS(2407), + [anon_sym_out_GT] = ACTIONS(2407), + [anon_sym_e_GT] = ACTIONS(2407), + [anon_sym_o_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT] = ACTIONS(2407), + [anon_sym_err_GT_GT] = ACTIONS(2407), + [anon_sym_out_GT_GT] = ACTIONS(2407), + [anon_sym_e_GT_GT] = ACTIONS(2407), + [anon_sym_o_GT_GT] = ACTIONS(2407), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2407), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2407), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2407), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2407), + [aux_sym_unquoted_token1] = ACTIONS(2407), + [aux_sym_unquoted_token4] = ACTIONS(2407), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2409), }, [1719] = { [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [aux_sym__val_number_token4] = ACTIONS(1810), - [aux_sym__val_number_token5] = ACTIONS(1810), - [aux_sym__val_number_token6] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1802), - [aux_sym_unquoted_token2] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [aux_sym_unquoted_token2] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1720] = { [sym_comment] = STATE(1720), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1512), + [aux_sym__val_number_token5] = ACTIONS(1512), + [aux_sym__val_number_token6] = ACTIONS(1512), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1512), }, [1721] = { - [sym_cell_path] = STATE(2128), - [sym_path] = STATE(1882), [sym_comment] = STATE(1721), - [aux_sym_cell_path_repeat1] = STATE(1690), - [sym__newline] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_err_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_GT_PIPE] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_GT2] = ACTIONS(1859), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_EQ_GT] = ACTIONS(1861), - [anon_sym_STAR2] = ACTIONS(1859), - [anon_sym_and2] = ACTIONS(1861), - [anon_sym_xor2] = ACTIONS(1861), - [anon_sym_or2] = ACTIONS(1861), - [anon_sym_not_DASHin2] = ACTIONS(1861), - [anon_sym_starts_DASHwith2] = ACTIONS(1861), - [anon_sym_ends_DASHwith2] = ACTIONS(1861), - [anon_sym_EQ_EQ2] = ACTIONS(1861), - [anon_sym_BANG_EQ2] = ACTIONS(1861), - [anon_sym_LT2] = ACTIONS(1859), - [anon_sym_LT_EQ2] = ACTIONS(1861), - [anon_sym_GT_EQ2] = ACTIONS(1861), - [anon_sym_EQ_TILDE2] = ACTIONS(1861), - [anon_sym_BANG_TILDE2] = ACTIONS(1861), - [anon_sym_STAR_STAR2] = ACTIONS(1861), - [anon_sym_PLUS_PLUS2] = ACTIONS(1861), - [anon_sym_SLASH2] = ACTIONS(1859), - [anon_sym_mod2] = ACTIONS(1861), - [anon_sym_SLASH_SLASH2] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1859), - [anon_sym_bit_DASHshl2] = ACTIONS(1861), - [anon_sym_bit_DASHshr2] = ACTIONS(1861), - [anon_sym_bit_DASHand2] = ACTIONS(1861), - [anon_sym_bit_DASHxor2] = ACTIONS(1861), - [anon_sym_bit_DASHor2] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_err_GT] = ACTIONS(1859), - [anon_sym_out_GT] = ACTIONS(1859), - [anon_sym_e_GT] = ACTIONS(1859), - [anon_sym_o_GT] = ACTIONS(1859), - [anon_sym_err_PLUSout_GT] = ACTIONS(1859), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), - [anon_sym_o_PLUSe_GT] = ACTIONS(1859), - [anon_sym_e_PLUSo_GT] = ACTIONS(1859), - [anon_sym_err_GT_GT] = ACTIONS(1861), - [anon_sym_out_GT_GT] = ACTIONS(1861), - [anon_sym_e_GT_GT] = ACTIONS(1861), - [anon_sym_o_GT_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym__newline] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_err_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_GT_PIPE] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [aux_sym__immediate_decimal_token2] = ACTIONS(5106), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1872), + [aux_sym__val_number_decimal_token2] = ACTIONS(1874), + [aux_sym__val_number_decimal_token3] = ACTIONS(1874), + [aux_sym__val_number_decimal_token4] = ACTIONS(1874), + [aux_sym__val_number_token1] = ACTIONS(1874), + [aux_sym__val_number_token2] = ACTIONS(1874), + [aux_sym__val_number_token3] = ACTIONS(1874), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1872), + [anon_sym_0o] = ACTIONS(1872), + [anon_sym_0x] = ACTIONS(1872), + [sym_val_date] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym__str_single_quotes] = ACTIONS(1874), + [sym__str_back_ticks] = ACTIONS(1874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1874), + [anon_sym_out_GT_GT] = ACTIONS(1874), + [anon_sym_e_GT_GT] = ACTIONS(1874), + [anon_sym_o_GT_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [aux_sym_unquoted_token1] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1874), }, [1722] = { [sym_comment] = STATE(1722), - [sym__newline] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_err_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_GT_PIPE] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_GT2] = ACTIONS(2052), - [anon_sym_DASH2] = ACTIONS(2054), - [anon_sym_in2] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2054), - [anon_sym_STAR2] = ACTIONS(2052), - [anon_sym_and2] = ACTIONS(2054), - [anon_sym_xor2] = ACTIONS(2054), - [anon_sym_or2] = ACTIONS(2054), - [anon_sym_not_DASHin2] = ACTIONS(2054), - [anon_sym_starts_DASHwith2] = ACTIONS(2054), - [anon_sym_ends_DASHwith2] = ACTIONS(2054), - [anon_sym_EQ_EQ2] = ACTIONS(2054), - [anon_sym_BANG_EQ2] = ACTIONS(2054), - [anon_sym_LT2] = ACTIONS(2052), - [anon_sym_LT_EQ2] = ACTIONS(2054), - [anon_sym_GT_EQ2] = ACTIONS(2054), - [anon_sym_EQ_TILDE2] = ACTIONS(2054), - [anon_sym_BANG_TILDE2] = ACTIONS(2054), - [anon_sym_STAR_STAR2] = ACTIONS(2054), - [anon_sym_PLUS_PLUS2] = ACTIONS(2054), - [anon_sym_SLASH2] = ACTIONS(2052), - [anon_sym_mod2] = ACTIONS(2054), - [anon_sym_SLASH_SLASH2] = ACTIONS(2054), - [anon_sym_PLUS2] = ACTIONS(2052), - [anon_sym_bit_DASHshl2] = ACTIONS(2054), - [anon_sym_bit_DASHshr2] = ACTIONS(2054), - [anon_sym_bit_DASHand2] = ACTIONS(2054), - [anon_sym_bit_DASHxor2] = ACTIONS(2054), - [anon_sym_bit_DASHor2] = ACTIONS(2054), - [anon_sym_DOT_DOT2] = ACTIONS(2052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), - [anon_sym_err_GT] = ACTIONS(2052), - [anon_sym_out_GT] = ACTIONS(2052), - [anon_sym_e_GT] = ACTIONS(2052), - [anon_sym_o_GT] = ACTIONS(2052), - [anon_sym_err_PLUSout_GT] = ACTIONS(2052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), - [anon_sym_o_PLUSe_GT] = ACTIONS(2052), - [anon_sym_e_PLUSo_GT] = ACTIONS(2052), - [anon_sym_err_GT_GT] = ACTIONS(2054), - [anon_sym_out_GT_GT] = ACTIONS(2054), - [anon_sym_e_GT_GT] = ACTIONS(2054), - [anon_sym_o_GT_GT] = ACTIONS(2054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [aux_sym_unquoted_token1] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1516), }, [1723] = { [sym_comment] = STATE(1723), - [ts_builtin_sym_end] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(5070), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [ts_builtin_sym_end] = ACTIONS(5020), + [sym__newline] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_err_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_GT_PIPE] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_DASH2] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5020), + [anon_sym_DOT_DOT_LT] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5022), + [anon_sym_true] = ACTIONS(5022), + [anon_sym_false] = ACTIONS(5022), + [aux_sym__val_number_decimal_token1] = ACTIONS(5022), + [aux_sym__val_number_decimal_token2] = ACTIONS(5022), + [aux_sym__val_number_decimal_token3] = ACTIONS(5020), + [aux_sym__val_number_decimal_token4] = ACTIONS(5020), + [aux_sym__val_number_token1] = ACTIONS(5022), + [aux_sym__val_number_token2] = ACTIONS(5022), + [aux_sym__val_number_token3] = ACTIONS(5022), + [aux_sym__val_number_token4] = ACTIONS(5022), + [aux_sym__val_number_token5] = ACTIONS(5022), + [aux_sym__val_number_token6] = ACTIONS(5022), + [anon_sym_0b] = ACTIONS(5022), + [anon_sym_0o] = ACTIONS(5022), + [anon_sym_0x] = ACTIONS(5022), + [sym_val_date] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5020), + [sym__str_single_quotes] = ACTIONS(5020), + [sym__str_back_ticks] = ACTIONS(5020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5020), + [anon_sym_err_GT] = ACTIONS(5022), + [anon_sym_out_GT] = ACTIONS(5022), + [anon_sym_e_GT] = ACTIONS(5022), + [anon_sym_o_GT] = ACTIONS(5022), + [anon_sym_err_PLUSout_GT] = ACTIONS(5022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5022), + [anon_sym_o_PLUSe_GT] = ACTIONS(5022), + [anon_sym_e_PLUSo_GT] = ACTIONS(5022), + [anon_sym_err_GT_GT] = ACTIONS(5020), + [anon_sym_out_GT_GT] = ACTIONS(5020), + [anon_sym_e_GT_GT] = ACTIONS(5020), + [anon_sym_o_GT_GT] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5020), + [anon_sym_EQ2] = ACTIONS(5108), + [sym_short_flag_identifier] = ACTIONS(5110), + [aux_sym_unquoted_token1] = ACTIONS(5022), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(5020), }, [1724] = { [sym_comment] = STATE(1724), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(5072), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT] = ACTIONS(1498), + [anon_sym_null] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [aux_sym__val_number_decimal_token1] = ACTIONS(1496), + [aux_sym__val_number_decimal_token2] = ACTIONS(1498), + [aux_sym__val_number_decimal_token3] = ACTIONS(1498), + [aux_sym__val_number_decimal_token4] = ACTIONS(1498), + [aux_sym__val_number_token1] = ACTIONS(1498), + [aux_sym__val_number_token2] = ACTIONS(1498), + [aux_sym__val_number_token3] = ACTIONS(1498), + [aux_sym__val_number_token4] = ACTIONS(1498), + [aux_sym__val_number_token5] = ACTIONS(1498), + [aux_sym__val_number_token6] = ACTIONS(1498), + [anon_sym_0b] = ACTIONS(1496), + [anon_sym_0o] = ACTIONS(1496), + [anon_sym_0x] = ACTIONS(1496), + [sym_val_date] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1498), + [sym__str_back_ticks] = ACTIONS(1498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [aux_sym_unquoted_token1] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(255), + [sym_raw_string_begin] = ACTIONS(1498), }, [1725] = { + [sym_cell_path] = STATE(2098), + [sym_path] = STATE(1909), [sym_comment] = STATE(1725), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2268), - [anon_sym_DASH_DASH] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2268), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), - [anon_sym_DOT_DOT_LT] = ACTIONS(2268), - [anon_sym_null] = ACTIONS(2268), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [aux_sym__val_number_decimal_token1] = ACTIONS(2268), - [aux_sym__val_number_decimal_token2] = ACTIONS(2268), - [aux_sym__val_number_decimal_token3] = ACTIONS(2268), - [aux_sym__val_number_decimal_token4] = ACTIONS(2268), - [aux_sym__val_number_token1] = ACTIONS(2268), - [aux_sym__val_number_token2] = ACTIONS(2268), - [aux_sym__val_number_token3] = ACTIONS(2268), - [aux_sym__val_number_token4] = ACTIONS(2268), - [aux_sym__val_number_token5] = ACTIONS(2268), - [aux_sym__val_number_token6] = ACTIONS(2268), - [anon_sym_0b] = ACTIONS(2268), - [anon_sym_0o] = ACTIONS(2268), - [anon_sym_0x] = ACTIONS(2268), - [sym_val_date] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2268), - [anon_sym_out_GT] = ACTIONS(2268), - [anon_sym_e_GT] = ACTIONS(2268), - [anon_sym_o_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT] = ACTIONS(2268), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), - [aux_sym_unquoted_token1] = ACTIONS(2268), - [aux_sym_unquoted_token4] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), + [aux_sym_cell_path_repeat1] = STATE(1689), + [sym__newline] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_err_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_GT_PIPE] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1996), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_GT2] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1996), + [anon_sym_in2] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_EQ_GT] = ACTIONS(1996), + [anon_sym_STAR2] = ACTIONS(1994), + [anon_sym_and2] = ACTIONS(1996), + [anon_sym_xor2] = ACTIONS(1996), + [anon_sym_or2] = ACTIONS(1996), + [anon_sym_not_DASHin2] = ACTIONS(1996), + [anon_sym_starts_DASHwith2] = ACTIONS(1996), + [anon_sym_ends_DASHwith2] = ACTIONS(1996), + [anon_sym_EQ_EQ2] = ACTIONS(1996), + [anon_sym_BANG_EQ2] = ACTIONS(1996), + [anon_sym_LT2] = ACTIONS(1994), + [anon_sym_LT_EQ2] = ACTIONS(1996), + [anon_sym_GT_EQ2] = ACTIONS(1996), + [anon_sym_EQ_TILDE2] = ACTIONS(1996), + [anon_sym_BANG_TILDE2] = ACTIONS(1996), + [anon_sym_STAR_STAR2] = ACTIONS(1996), + [anon_sym_PLUS_PLUS2] = ACTIONS(1996), + [anon_sym_SLASH2] = ACTIONS(1994), + [anon_sym_mod2] = ACTIONS(1996), + [anon_sym_SLASH_SLASH2] = ACTIONS(1996), + [anon_sym_PLUS2] = ACTIONS(1994), + [anon_sym_bit_DASHshl2] = ACTIONS(1996), + [anon_sym_bit_DASHshr2] = ACTIONS(1996), + [anon_sym_bit_DASHand2] = ACTIONS(1996), + [anon_sym_bit_DASHxor2] = ACTIONS(1996), + [anon_sym_bit_DASHor2] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1994), + [anon_sym_out_GT] = ACTIONS(1994), + [anon_sym_e_GT] = ACTIONS(1994), + [anon_sym_o_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT] = ACTIONS(1994), + [anon_sym_err_GT_GT] = ACTIONS(1996), + [anon_sym_out_GT_GT] = ACTIONS(1996), + [anon_sym_e_GT_GT] = ACTIONS(1996), + [anon_sym_o_GT_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(255), }, [1726] = { - [sym_cmd_identifier] = STATE(4154), - [sym__command_name] = STATE(6522), - [sym_scope_pattern] = STATE(6523), - [sym_wild_card] = STATE(6524), - [sym_command_list] = STATE(6525), - [sym__val_number_decimal] = STATE(3764), - [sym_val_string] = STATE(4161), - [sym__raw_str] = STATE(4332), - [sym__str_double_quotes] = STATE(4332), [sym_comment] = STATE(1726), - [aux_sym_cmd_identifier_token1] = ACTIONS(5036), - [aux_sym_cmd_identifier_token2] = ACTIONS(5038), - [aux_sym_cmd_identifier_token3] = ACTIONS(5038), - [aux_sym_cmd_identifier_token4] = ACTIONS(5038), - [aux_sym_cmd_identifier_token5] = ACTIONS(5038), - [aux_sym_cmd_identifier_token6] = ACTIONS(5038), - [aux_sym_cmd_identifier_token7] = ACTIONS(5038), - [aux_sym_cmd_identifier_token8] = ACTIONS(5038), - [aux_sym_cmd_identifier_token9] = ACTIONS(5036), - [aux_sym_cmd_identifier_token10] = ACTIONS(5038), - [aux_sym_cmd_identifier_token11] = ACTIONS(5038), - [aux_sym_cmd_identifier_token12] = ACTIONS(5038), - [aux_sym_cmd_identifier_token13] = ACTIONS(5036), - [aux_sym_cmd_identifier_token14] = ACTIONS(5038), - [aux_sym_cmd_identifier_token15] = ACTIONS(5036), - [aux_sym_cmd_identifier_token16] = ACTIONS(5038), - [aux_sym_cmd_identifier_token17] = ACTIONS(5038), - [aux_sym_cmd_identifier_token18] = ACTIONS(5038), - [aux_sym_cmd_identifier_token19] = ACTIONS(5038), - [aux_sym_cmd_identifier_token20] = ACTIONS(5038), - [aux_sym_cmd_identifier_token21] = ACTIONS(5038), - [aux_sym_cmd_identifier_token22] = ACTIONS(5038), - [aux_sym_cmd_identifier_token23] = ACTIONS(5038), - [aux_sym_cmd_identifier_token24] = ACTIONS(5038), - [aux_sym_cmd_identifier_token25] = ACTIONS(5038), - [aux_sym_cmd_identifier_token26] = ACTIONS(5038), - [aux_sym_cmd_identifier_token27] = ACTIONS(5038), - [aux_sym_cmd_identifier_token28] = ACTIONS(5038), - [aux_sym_cmd_identifier_token29] = ACTIONS(5038), - [aux_sym_cmd_identifier_token30] = ACTIONS(5038), - [aux_sym_cmd_identifier_token31] = ACTIONS(5038), - [aux_sym_cmd_identifier_token32] = ACTIONS(5038), - [aux_sym_cmd_identifier_token33] = ACTIONS(5038), - [aux_sym_cmd_identifier_token34] = ACTIONS(5036), - [aux_sym_cmd_identifier_token35] = ACTIONS(5038), - [aux_sym_cmd_identifier_token36] = ACTIONS(5038), - [aux_sym_cmd_identifier_token37] = ACTIONS(5038), - [aux_sym_cmd_identifier_token38] = ACTIONS(5036), - [aux_sym_cmd_identifier_token39] = ACTIONS(5038), - [aux_sym_cmd_identifier_token40] = ACTIONS(5038), - [sym__newline] = ACTIONS(5074), - [anon_sym_SEMI] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_RPAREN] = ACTIONS(5074), - [anon_sym_RBRACE] = ACTIONS(5074), - [anon_sym_STAR2] = ACTIONS(5044), - [aux_sym__val_number_decimal_token1] = ACTIONS(5046), - [aux_sym__val_number_decimal_token2] = ACTIONS(5046), - [aux_sym__val_number_decimal_token3] = ACTIONS(5048), - [aux_sym__val_number_decimal_token4] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(4001), - [sym__str_single_quotes] = ACTIONS(4003), - [sym__str_back_ticks] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4005), + [sym__newline] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_err_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_GT_PIPE] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1888), + [anon_sym_in2] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_EQ_GT] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1886), + [anon_sym_and2] = ACTIONS(1888), + [anon_sym_xor2] = ACTIONS(1888), + [anon_sym_or2] = ACTIONS(1888), + [anon_sym_not_DASHin2] = ACTIONS(1888), + [anon_sym_starts_DASHwith2] = ACTIONS(1888), + [anon_sym_ends_DASHwith2] = ACTIONS(1888), + [anon_sym_EQ_EQ2] = ACTIONS(1888), + [anon_sym_BANG_EQ2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1886), + [anon_sym_LT_EQ2] = ACTIONS(1888), + [anon_sym_GT_EQ2] = ACTIONS(1888), + [anon_sym_EQ_TILDE2] = ACTIONS(1888), + [anon_sym_BANG_TILDE2] = ACTIONS(1888), + [anon_sym_STAR_STAR2] = ACTIONS(1888), + [anon_sym_PLUS_PLUS2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1886), + [anon_sym_mod2] = ACTIONS(1888), + [anon_sym_SLASH_SLASH2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1886), + [anon_sym_bit_DASHshl2] = ACTIONS(1888), + [anon_sym_bit_DASHshr2] = ACTIONS(1888), + [anon_sym_bit_DASHand2] = ACTIONS(1888), + [anon_sym_bit_DASHxor2] = ACTIONS(1888), + [anon_sym_bit_DASHor2] = ACTIONS(1888), + [anon_sym_DOT_DOT2] = ACTIONS(1886), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1888), + [anon_sym_err_GT] = ACTIONS(1886), + [anon_sym_out_GT] = ACTIONS(1886), + [anon_sym_e_GT] = ACTIONS(1886), + [anon_sym_o_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT] = ACTIONS(1886), + [anon_sym_err_GT_GT] = ACTIONS(1888), + [anon_sym_out_GT_GT] = ACTIONS(1888), + [anon_sym_e_GT_GT] = ACTIONS(1888), + [anon_sym_o_GT_GT] = ACTIONS(1888), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1888), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1888), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1888), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(255), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(247), 1, + [0] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1727), 1, + sym_comment, + ACTIONS(5115), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5112), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1728), 1, + sym_comment, + ACTIONS(2018), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2020), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [146] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1729), 1, + sym_comment, + ACTIONS(2597), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2599), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [219] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1730), 1, + sym_comment, + ACTIONS(2508), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2510), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [292] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1731), 1, + sym_comment, + ACTIONS(2197), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2203), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [365] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1732), 1, + sym_comment, + ACTIONS(2512), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2514), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [438] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4569), 1, - aux_sym_unquoted_token2, - STATE(1727), 1, + STATE(1733), 1, sym_comment, - ACTIONS(1707), 16, + ACTIONS(2034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -231844,9 +370326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1719), 45, + ACTIONS(2036), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231860,8 +370341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -231890,23 +370373,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75] = 6, - ACTIONS(247), 1, + [511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5076), 1, - anon_sym_DOT, - STATE(2080), 1, - sym_path, - STATE(1728), 2, + STATE(1734), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(2409), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2407), 41, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231915,8 +370432,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 45, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [584] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1735), 1, + sym_comment, + ACTIONS(2038), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2040), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231928,31 +370477,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [657] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1736), 1, + sym_comment, + ACTIONS(2042), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2044), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231961,12 +370580,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [152] = 4, - ACTIONS(247), 1, + [730] = 19, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1729), 1, + ACTIONS(2302), 1, + sym_raw_string_begin, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(4337), 1, + anon_sym_DQUOTE, + ACTIONS(4341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5118), 1, + anon_sym_LPAREN, + STATE(1737), 1, + sym_comment, + STATE(3795), 1, + sym__val_number_decimal, + STATE(4933), 1, + sym__inter_single_quotes, + STATE(4935), 1, + sym__inter_double_quotes, + ACTIONS(4339), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4591), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4685), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(21), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [833] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1738), 1, sym_comment, - ACTIONS(2444), 13, + ACTIONS(2567), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -231980,7 +370683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2446), 49, + ACTIONS(2569), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232030,12 +370733,788 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [225] = 4, - ACTIONS(247), 1, + [906] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1730), 1, + STATE(1739), 1, + sym_comment, + ACTIONS(2531), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2533), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [979] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1740), 1, + sym_comment, + ACTIONS(2054), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2056), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1052] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1741), 1, + sym_comment, + ACTIONS(2535), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2537), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1125] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1742), 1, + sym_comment, + ACTIONS(2539), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2541), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1198] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1743), 1, + sym_comment, + ACTIONS(2058), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2060), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1271] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1744), 1, + sym_comment, + ACTIONS(2066), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2068), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1344] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1745), 1, + sym_comment, + ACTIONS(2605), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2607), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1417] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1746), 1, + sym_comment, + ACTIONS(2547), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2549), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1490] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1747), 1, + sym_comment, + ACTIONS(2551), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2553), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1563] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1748), 1, + sym_comment, + ACTIONS(2070), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2072), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1636] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5124), 1, + anon_sym_LBRACK, + ACTIONS(5126), 1, + anon_sym_STAR2, + STATE(1749), 1, + sym_comment, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(7137), 1, + sym_scope_pattern, + STATE(7267), 1, + sym__command_name, + STATE(7302), 1, + sym_wild_card, + STATE(7304), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5094), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5120), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5122), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [1743] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1750), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(2559), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232052,7 +371531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 46, + ACTIONS(2561), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232099,14 +371578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [298] = 5, - ACTIONS(247), 1, + [1816] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5015), 1, - aux_sym__immediate_decimal_token2, - STATE(1731), 1, + STATE(1751), 1, sym_comment, - ACTIONS(1765), 16, + ACTIONS(2563), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232123,9 +371600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1767), 45, + ACTIONS(2565), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232139,8 +371615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -232169,12 +371647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [373] = 4, - ACTIONS(247), 1, + [1889] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1732), 1, + STATE(1752), 1, sym_comment, - ACTIONS(5081), 16, + ACTIONS(1872), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232191,7 +371669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5079), 46, + ACTIONS(1874), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232238,12 +371716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [446] = 4, - ACTIONS(247), 1, + [1962] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1733), 1, + STATE(1753), 1, sym_comment, - ACTIONS(1942), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232260,7 +371738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1944), 46, + ACTIONS(5128), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232307,12 +371785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [519] = 4, - ACTIONS(247), 1, + [2035] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1734), 1, + STATE(1754), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(1788), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232329,7 +371807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(996), 46, + ACTIONS(1800), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232376,81 +371854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [592] = 4, - ACTIONS(247), 1, + [2108] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1735), 1, - sym_comment, - ACTIONS(994), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(996), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [665] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1736), 1, + ACTIONS(5132), 1, + anon_sym_LBRACK2, + STATE(1755), 1, sym_comment, - ACTIONS(998), 16, + ACTIONS(2423), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232467,8 +371879,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1000), 46, + ACTIONS(2427), 44, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232480,12 +371893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -232514,12 +371924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [738] = 4, - ACTIONS(247), 1, + [2183] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1737), 1, + STATE(1756), 1, sym_comment, - ACTIONS(5085), 16, + ACTIONS(2567), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232536,7 +371946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5083), 46, + ACTIONS(2569), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232583,116 +371993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [811] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_STAR2, - STATE(1738), 1, - sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - STATE(6994), 1, - sym__command_name, - STATE(7121), 1, - sym_wild_card, - STATE(7125), 1, - sym_command_list, - STATE(7429), 1, - sym_scope_pattern, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5066), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5087), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [918] = 4, - ACTIONS(247), 1, + [2256] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1739), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(1757), 1, sym_comment, - ACTIONS(1010), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1012), 45, + ACTIONS(2349), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -232708,13 +372016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2345), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -232724,12 +372042,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232738,12 +372062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [991] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [2331] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1758), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(2006), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232760,7 +372085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 46, + ACTIONS(2008), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232807,12 +372132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1064] = 4, - ACTIONS(247), 1, + [2404] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1741), 1, + STATE(1759), 1, sym_comment, - ACTIONS(2498), 16, + ACTIONS(5136), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232829,7 +372154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2500), 46, + ACTIONS(5134), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232876,17 +372201,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1137] = 5, - ACTIONS(3), 1, + [2477] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(1742), 1, - sym_comment, - ACTIONS(2242), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5138), 1, sym__newline, + STATE(1760), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1231), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1233), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -232897,46 +372234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2238), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_in2, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232945,97 +372271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1212] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2116), 1, - sym_raw_string_begin, - ACTIONS(4505), 1, - anon_sym_DOLLAR, - ACTIONS(4529), 1, - anon_sym_DQUOTE, - ACTIONS(4533), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4535), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5095), 1, - anon_sym_LPAREN, - STATE(1743), 1, - sym_comment, - STATE(3806), 1, - sym__val_number_decimal, - STATE(4891), 1, - sym__inter_single_quotes, - STATE(4896), 1, - sym__inter_double_quotes, - ACTIONS(4531), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4528), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4742), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(19), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(21), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [1315] = 4, - ACTIONS(247), 1, + [2552] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1761), 1, sym_comment, - ACTIONS(2456), 16, + ACTIONS(5143), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233052,7 +372293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2458), 46, + ACTIONS(5141), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233099,12 +372340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1388] = 4, - ACTIONS(247), 1, + [2625] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1745), 1, + STATE(1762), 1, sym_comment, - ACTIONS(2406), 16, + ACTIONS(2635), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233121,7 +372362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2408), 46, + ACTIONS(2637), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233168,12 +372409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1461] = 4, - ACTIONS(247), 1, + [2698] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1746), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2514), 16, + ACTIONS(2484), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233190,7 +372431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2516), 46, + ACTIONS(2486), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233237,16 +372478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1534] = 5, - ACTIONS(3), 1, + [2771] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(1747), 1, + STATE(1764), 1, sym_comment, - ACTIONS(2250), 21, + ACTIONS(1538), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1540), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233260,23 +372515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2246), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -233286,18 +372533,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233306,15 +372547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1609] = 5, + [2844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(1748), 1, + STATE(1765), 1, sym_comment, - ACTIONS(2256), 21, + ACTIONS(2355), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -233336,7 +372576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2254), 40, + ACTIONS(2353), 40, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -233377,12 +372617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [1684] = 4, - ACTIONS(247), 1, + [2919] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1766), 1, sym_comment, - ACTIONS(2402), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233399,7 +372639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2404), 46, + ACTIONS(2470), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233446,12 +372686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1757] = 4, - ACTIONS(247), 1, + [2992] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1767), 1, sym_comment, - ACTIONS(1044), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233468,7 +372708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1046), 46, + ACTIONS(2470), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233515,12 +372755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1830] = 4, - ACTIONS(247), 1, + [3065] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1768), 1, sym_comment, - ACTIONS(5099), 16, + ACTIONS(5034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233537,7 +372777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5097), 46, + ACTIONS(5032), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233584,118 +372824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1903] = 41, - ACTIONS(247), 1, + [3138] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1752), 1, - sym_comment, - STATE(2107), 1, - sym_short_flag, - STATE(2133), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5758), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2050] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1753), 1, + STATE(1769), 1, sym_comment, - ACTIONS(2351), 16, + ACTIONS(2228), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233712,7 +372846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2353), 46, + ACTIONS(2234), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233759,12 +372893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2123] = 4, - ACTIONS(247), 1, + [3211] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1770), 1, sym_comment, - ACTIONS(2355), 16, + ACTIONS(2472), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233781,7 +372915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2357), 46, + ACTIONS(2474), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233828,12 +372962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2196] = 4, - ACTIONS(247), 1, + [3284] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1771), 1, sym_comment, - ACTIONS(5121), 16, + ACTIONS(2177), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233850,7 +372984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5119), 46, + ACTIONS(2183), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233897,57 +373031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2269] = 4, - ACTIONS(3), 1, + [3357] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1756), 1, + STATE(1772), 1, sym_comment, - ACTIONS(2270), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2268), 41, + ACTIONS(2476), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233956,36 +373052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [2342] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1757), 1, - sym_comment, - ACTIONS(998), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1000), 49, + ACTIONS(2478), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233997,220 +373066,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2415] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2010), 1, - sym_raw_string_begin, - ACTIONS(4125), 1, - anon_sym_DOLLAR, - ACTIONS(4149), 1, - anon_sym_DQUOTE, - ACTIONS(4153), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4155), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5123), 1, - anon_sym_LPAREN, - STATE(1758), 1, - sym_comment, - STATE(3819), 1, - sym__val_number_decimal, - STATE(4731), 1, - sym__inter_single_quotes, - STATE(4732), 1, - sym__inter_double_quotes, - ACTIONS(4151), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4371), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4562), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [2518] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_STAR2, - STATE(1759), 1, - sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - STATE(6994), 1, - sym__command_name, - STATE(7121), 1, - sym_wild_card, - STATE(7125), 1, - sym_command_list, - STATE(7257), 1, - sym_scope_pattern, - ACTIONS(111), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3430] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1773), 1, + sym_comment, + ACTIONS(2480), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5040), 3, - ts_builtin_sym_end, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2482), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, - ACTIONS(5087), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [2625] = 4, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3503] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1774), 1, sym_comment, - ACTIONS(2359), 16, + ACTIONS(5046), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234227,7 +373191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2361), 46, + ACTIONS(5044), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234274,20 +373238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2698] = 5, - ACTIONS(247), 1, + [3576] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - STATE(1761), 2, + STATE(1775), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1526), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234296,7 +373260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1296), 47, + aux_sym_unquoted_token1, + ACTIONS(1528), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234307,35 +373275,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234344,12 +373307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2773] = 4, - ACTIONS(247), 1, + [3649] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1762), 1, + STATE(1776), 1, sym_comment, - ACTIONS(1002), 16, + ACTIONS(2215), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234366,7 +373329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1004), 46, + ACTIONS(2217), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234413,12 +373376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2846] = 4, - ACTIONS(247), 1, + [3722] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1763), 1, + STATE(1777), 1, sym_comment, - ACTIONS(5130), 16, + ACTIONS(2185), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234435,7 +373398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5128), 46, + ACTIONS(2191), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234482,12 +373445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2919] = 4, - ACTIONS(247), 1, + [3795] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1764), 1, + STATE(1778), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(2492), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234504,7 +373467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 46, + ACTIONS(2494), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234551,12 +373514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2992] = 4, - ACTIONS(247), 1, + [3868] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1765), 1, + STATE(1779), 1, sym_comment, - ACTIONS(5134), 16, + ACTIONS(2496), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234573,7 +373536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5132), 46, + ACTIONS(2498), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234620,12 +373583,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3065] = 4, - ACTIONS(247), 1, + [3941] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1766), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5124), 1, + anon_sym_LBRACK, + ACTIONS(5126), 1, + anon_sym_STAR2, + STATE(1780), 1, + sym_comment, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(7267), 1, + sym__command_name, + STATE(7299), 1, + sym_scope_pattern, + STATE(7302), 1, + sym_wild_card, + STATE(7304), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5082), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5120), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5122), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [4048] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5145), 1, + anon_sym_DOT, + STATE(2085), 1, + sym_path, + STATE(1781), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1485), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4125] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1782), 1, sym_comment, - ACTIONS(5138), 16, + ACTIONS(5150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234642,7 +373762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5136), 46, + ACTIONS(5148), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234689,14 +373809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3138] = 5, - ACTIONS(247), 1, + [4198] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5140), 1, - anon_sym_EQ2, - STATE(1767), 1, + STATE(1783), 1, sym_comment, - ACTIONS(4998), 16, + ACTIONS(2219), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234713,9 +373831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4996), 45, + ACTIONS(2221), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234729,8 +373846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -234759,12 +373878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3213] = 4, - ACTIONS(247), 1, + [4271] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1014), 17, + ACTIONS(1518), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234782,7 +373901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1016), 45, + ACTIONS(1520), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234828,17 +373947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3286] = 5, - ACTIONS(247), 1, + [4344] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5142), 1, - anon_sym_EQ2, - STATE(1769), 1, + STATE(1785), 1, sym_comment, - ACTIONS(5058), 16, + ACTIONS(1522), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -234852,7 +373970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5056), 45, + ACTIONS(1524), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234898,12 +374016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3361] = 4, - ACTIONS(247), 1, + [4417] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1770), 1, + STATE(1786), 1, sym_comment, - ACTIONS(5146), 16, + ACTIONS(5154), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234920,7 +374038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5144), 46, + ACTIONS(5152), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234967,12 +374085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3434] = 4, - ACTIONS(247), 1, + [4490] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1787), 1, sym_comment, - ACTIONS(990), 13, + ACTIONS(1788), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -234986,7 +374104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 49, + ACTIONS(1800), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235036,12 +374154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3507] = 4, - ACTIONS(247), 1, + [4563] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1788), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(2516), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235058,7 +374176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5148), 46, + ACTIONS(2518), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235105,12 +374223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3580] = 4, - ACTIONS(247), 1, + [4636] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1789), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(2520), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235127,7 +374245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 46, + ACTIONS(2522), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235174,15 +374292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3653] = 5, - ACTIONS(247), 1, + [4709] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_LBRACK2, - STATE(1774), 1, + STATE(1790), 1, sym_comment, - ACTIONS(2322), 17, - anon_sym_LBRACK, + ACTIONS(2524), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235199,9 +374314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2326), 44, + ACTIONS(2526), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235213,9 +374327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235244,12 +374361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3728] = 4, - ACTIONS(247), 1, + [4782] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1775), 1, + ACTIONS(5156), 1, + anon_sym_EQ2, + STATE(1791), 1, sym_comment, - ACTIONS(1847), 16, + ACTIONS(5052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235266,8 +374385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1851), 46, + ACTIONS(5050), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235281,10 +374401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235313,19 +374431,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3801] = 4, - ACTIONS(247), 1, + [4857] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1776), 1, + ACTIONS(5158), 1, + anon_sym_QMARK2, + STATE(1792), 1, sym_comment, - ACTIONS(2490), 16, - anon_sym_DOLLAR, + ACTIONS(1500), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1502), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4932] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5160), 1, + anon_sym_QMARK2, + STATE(1793), 1, + sym_comment, + ACTIONS(1490), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235334,9 +374525,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2492), 46, + ACTIONS(1492), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5007] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(1794), 1, + sym_comment, + ACTIONS(1540), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235350,15 +374594,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1538), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -235368,12 +374620,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235382,19 +374640,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3874] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [5082] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(5162), 1, + anon_sym_QMARK2, + STATE(1795), 1, sym_comment, - ACTIONS(1915), 16, - anon_sym_DOLLAR, + ACTIONS(1500), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1502), 48, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5157] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5164), 1, + anon_sym_QMARK2, + STATE(1796), 1, + sym_comment, + ACTIONS(1490), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235403,9 +374732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1917), 46, - sym_raw_string_begin, + ACTIONS(1492), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235417,32 +374744,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235451,14 +374781,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3947] = 5, - ACTIONS(247), 1, + [5232] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5154), 1, - aux_sym__immediate_decimal_token2, - STATE(1778), 1, + ACTIONS(2153), 1, + sym_raw_string_begin, + ACTIONS(4353), 1, + anon_sym_DOLLAR, + ACTIONS(4379), 1, + anon_sym_DQUOTE, + ACTIONS(4383), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4385), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5166), 1, + anon_sym_LPAREN, + STATE(1797), 1, + sym_comment, + STATE(3861), 1, + sym__val_number_decimal, + STATE(4693), 1, + sym__inter_single_quotes, + STATE(4694), 1, + sym__inter_double_quotes, + ACTIONS(4381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4475), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4750), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(371), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(373), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [5335] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1798), 1, sym_comment, - ACTIONS(1785), 16, + ACTIONS(1510), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235475,9 +374887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1787), 45, + ACTIONS(1512), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235491,8 +374902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235521,12 +374934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4022] = 4, - ACTIONS(247), 1, + [5408] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1779), 1, + ACTIONS(5106), 1, + aux_sym__immediate_decimal_token2, + STATE(1799), 1, sym_comment, - ACTIONS(2444), 16, + ACTIONS(1872), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235543,8 +374958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2446), 46, + ACTIONS(1874), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235558,10 +374974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235590,118 +375004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4095] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1780), 1, - sym_comment, - STATE(2141), 1, - sym_short_flag, - STATE(2142), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5806), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [4242] = 4, - ACTIONS(247), 1, + [5483] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1800), 1, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1496), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -235715,7 +375023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 49, + ACTIONS(1498), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235765,330 +375073,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4315] = 41, - ACTIONS(247), 1, + [5556] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, + STATE(1801), 1, + sym_comment, + ACTIONS(1506), 16, anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, anon_sym_DASH2, - ACTIONS(5109), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1782), 1, - sym_comment, - STATE(2143), 1, - sym_short_flag, - STATE(2144), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5848), 1, - sym__expression, - ACTIONS(3427), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1508), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [4462] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3435), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1783), 1, - sym_comment, - STATE(2145), 1, - sym_short_flag, - STATE(2146), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5849), 1, - sym__expression, - ACTIONS(3427), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5629] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1802), 1, + sym_comment, + ACTIONS(1514), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1516), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [4609] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3435), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5702] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1803), 1, + sym_comment, + ACTIONS(5170), 16, anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, anon_sym_DASH2, - ACTIONS(5109), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1784), 1, - sym_comment, - STATE(2147), 1, - sym_short_flag, - STATE(2148), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5851), 1, - sym__expression, - ACTIONS(3427), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5168), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [4756] = 4, - ACTIONS(247), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5775] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1804), 1, sym_comment, - ACTIONS(2034), 16, + ACTIONS(5174), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236105,7 +375302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2036), 46, + ACTIONS(5172), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236152,13 +375349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4829] = 4, - ACTIONS(247), 1, + [5848] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1805), 1, sym_comment, - ACTIONS(5064), 17, - anon_sym_LPAREN, + ACTIONS(1556), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236175,9 +375371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5062), 45, + ACTIONS(1558), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236190,9 +375385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236221,12 +375418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4902] = 4, - ACTIONS(247), 1, + [5921] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1806), 1, sym_comment, - ACTIONS(2343), 16, + ACTIONS(1994), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236243,7 +375440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2345), 46, + ACTIONS(1996), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236290,22 +375487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4975] = 5, - ACTIONS(247), 1, + [5994] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_QMARK2, - STATE(1788), 1, + STATE(1807), 1, sym_comment, - ACTIONS(978), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1496), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236314,7 +375508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, + aux_sym_unquoted_token1, + ACTIONS(1498), 46, + sym_raw_string_begin, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236325,33 +375522,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236360,224 +375556,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5050] = 41, - ACTIONS(247), 1, + [6067] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(5176), 1, + aux_sym__immediate_decimal_token2, + STATE(1808), 1, + sym_comment, + ACTIONS(1919), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1921), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3401), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3435), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6142] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1809), 1, + sym_comment, + ACTIONS(2593), 16, anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, anon_sym_DASH2, - ACTIONS(5109), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1789), 1, - sym_comment, - STATE(2149), 1, - sym_short_flag, - STATE(2150), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5904), 1, - sym__expression, - ACTIONS(3427), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2595), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5197] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3435), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6215] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2153), 1, sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1790), 1, + ACTIONS(4379), 1, + anon_sym_DQUOTE, + ACTIONS(4383), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4385), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5166), 1, + anon_sym_LPAREN, + STATE(1810), 1, sym_comment, - STATE(2151), 1, - sym_short_flag, - STATE(2152), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3861), 1, sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5905), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, + STATE(4693), 1, + sym__inter_single_quotes, + STATE(4694), 1, + sym__inter_double_quotes, + ACTIONS(4381), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4475), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, + STATE(4548), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, sym_val_string, sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5344] = 4, - ACTIONS(247), 1, + ACTIONS(371), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(373), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [6318] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1811), 1, sym_comment, - ACTIONS(990), 16, + ACTIONS(2543), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236594,7 +375801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(992), 46, + ACTIONS(2545), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236641,12 +375848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5417] = 4, - ACTIONS(247), 1, + [6391] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1812), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(5180), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236663,7 +375870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 46, + ACTIONS(5178), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236710,12 +375917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5490] = 4, - ACTIONS(247), 1, + [6464] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1813), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(5184), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236732,7 +375939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 46, + ACTIONS(5182), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236779,12 +375986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5563] = 4, - ACTIONS(247), 1, + [6537] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1794), 1, + ACTIONS(4635), 1, + aux_sym_unquoted_token2, + STATE(1814), 1, sym_comment, - ACTIONS(2038), 16, + ACTIONS(1788), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236801,8 +376010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2040), 46, + ACTIONS(1800), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236816,10 +376026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236848,22 +376056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5636] = 5, - ACTIONS(247), 1, + [6612] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5158), 1, - anon_sym_QMARK2, - STATE(1795), 1, + STATE(1815), 1, sym_comment, - ACTIONS(984), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2555), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236872,7 +376077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 45, + aux_sym_unquoted_token1, + ACTIONS(2557), 46, + sym_raw_string_begin, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236883,33 +376091,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236918,12 +376125,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5711] = 4, - ACTIONS(247), 1, + [6685] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5124), 1, + anon_sym_LBRACK, + ACTIONS(5126), 1, + anon_sym_STAR2, + STATE(1816), 1, + sym_comment, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(7174), 1, + sym_scope_pattern, + STATE(7267), 1, + sym__command_name, + STATE(7302), 1, + sym_wild_card, + STATE(7304), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5096), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5120), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5122), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [6792] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1817), 1, sym_comment, - ACTIONS(5163), 16, + ACTIONS(5018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236940,7 +376233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5160), 46, + ACTIONS(5016), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236987,12 +376280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5784] = 4, - ACTIONS(247), 1, + [6865] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1818), 1, sym_comment, - ACTIONS(1887), 16, + ACTIONS(5188), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237009,7 +376302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1889), 46, + ACTIONS(5186), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237030,176 +376323,674 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6938] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1819), 1, + sym_comment, + STATE(2156), 1, + sym_short_flag, + STATE(2157), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5735), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7085] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1820), 1, + sym_comment, + STATE(2158), 1, + sym_short_flag, + STATE(2159), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5910), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7232] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1821), 1, + sym_comment, + STATE(2160), 1, + sym_short_flag, + STATE(2161), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5911), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7379] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1822), 1, + sym_comment, + STATE(2162), 1, + sym_short_flag, + STATE(2163), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5912), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7526] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5857] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(2464), 16, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, anon_sym_DASH2, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1823), 1, + sym_comment, + STATE(2166), 1, + sym_short_flag, + STATE(2167), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5945), 1, + sym__expression, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2466), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7673] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5930] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1799), 1, - sym_comment, - ACTIONS(2464), 16, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, anon_sym_DASH2, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1824), 1, + sym_comment, + STATE(2168), 1, + sym_short_flag, + STATE(2169), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5946), 1, + sym__expression, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2466), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6003] = 4, - ACTIONS(247), 1, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7820] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1825), 1, sym_comment, - ACTIONS(2122), 16, + ACTIONS(2639), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237216,7 +377007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2128), 46, + ACTIONS(2641), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237263,12 +377054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6076] = 4, - ACTIONS(247), 1, + [7893] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1801), 1, + STATE(1826), 1, sym_comment, - ACTIONS(5054), 16, + ACTIONS(2575), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237285,7 +377076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5052), 46, + ACTIONS(2577), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237332,12 +377123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6149] = 4, - ACTIONS(247), 1, + [7966] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(4782), 1, + aux_sym_unquoted_token2, + STATE(1827), 1, sym_comment, - ACTIONS(2390), 16, + ACTIONS(1788), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237354,8 +377147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2392), 46, + ACTIONS(1800), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237369,10 +377163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237401,150 +377193,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6222] = 4, - ACTIONS(247), 1, + [8041] = 41, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1803), 1, - sym_comment, - ACTIONS(1927), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1929), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(3497), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(3505), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6295] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1804), 1, - sym_comment, - ACTIONS(2130), 16, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, anon_sym_DASH2, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1828), 1, + sym_comment, + STATE(2110), 1, + sym_short_flag, + STATE(2111), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5899), 1, + sym__expression, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2136), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6368] = 4, - ACTIONS(247), 1, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8188] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1829), 1, sym_comment, - ACTIONS(2414), 16, + ACTIONS(2579), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237561,7 +377321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 46, + ACTIONS(2581), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237608,292 +377368,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6441] = 5, - ACTIONS(247), 1, + [8261] = 41, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5166), 1, - anon_sym_QMARK2, - STATE(1806), 1, - sym_comment, - ACTIONS(978), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(980), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6516] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4762), 1, - aux_sym_unquoted_token2, - STATE(1807), 1, - sym_comment, - ACTIONS(1707), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1719), 45, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + ACTIONS(5190), 1, anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1830), 1, + sym_comment, + STATE(2115), 1, + sym_short_flag, + STATE(2117), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5901), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8408] = 41, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6591] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1808), 1, - sym_comment, - ACTIONS(1002), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1004), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6664] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1809), 1, - sym_comment, - ACTIONS(1899), 16, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, anon_sym_DASH2, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1831), 1, + sym_comment, + STATE(2118), 1, + sym_short_flag, + STATE(2120), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5903), 1, + sym__expression, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1901), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6737] = 5, - ACTIONS(247), 1, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8555] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_QMARK2, - STATE(1810), 1, + STATE(1832), 1, sym_comment, - ACTIONS(984), 13, + ACTIONS(1510), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -237907,7 +377599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 48, + ACTIONS(1512), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237926,6 +377618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -237956,234 +377649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6812] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1811), 1, - sym_comment, - ACTIONS(2146), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2152), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6885] = 4, - ACTIONS(247), 1, + [8628] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1833), 1, sym_comment, - ACTIONS(1707), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1719), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6958] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2010), 1, - sym_raw_string_begin, - ACTIONS(4125), 1, - anon_sym_DOLLAR, - ACTIONS(4149), 1, - anon_sym_DQUOTE, - ACTIONS(4153), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4155), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5123), 1, + ACTIONS(5034), 17, anon_sym_LPAREN, - STATE(1813), 1, - sym_comment, - STATE(3819), 1, - sym__val_number_decimal, - STATE(4731), 1, - sym__inter_single_quotes, - STATE(4732), 1, - sym__inter_double_quotes, - ACTIONS(4151), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4371), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4649), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [7061] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1814), 1, - sym_comment, - ACTIONS(2486), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238200,8 +377672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2488), 46, + ACTIONS(5032), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238214,11 +377687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238247,12 +377718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7134] = 4, - ACTIONS(247), 1, + [8701] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1815), 1, + STATE(1834), 1, sym_comment, - ACTIONS(5172), 16, + ACTIONS(2583), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238269,7 +377740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5170), 46, + ACTIONS(2585), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238316,84 +377787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7207] = 7, - ACTIONS(247), 1, + [8774] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_DOT, - STATE(1728), 1, - aux_sym_cell_path_repeat1, - STATE(1816), 1, - sym_comment, - STATE(2080), 1, - sym_path, - ACTIONS(967), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(969), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [7286] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1817), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2510), 16, + ACTIONS(2587), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238410,7 +377809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2512), 46, + ACTIONS(2589), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238457,12 +377856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7359] = 4, - ACTIONS(247), 1, + [8847] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1818), 1, + STATE(1836), 1, sym_comment, - ACTIONS(5176), 16, + ACTIONS(5210), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238479,7 +377878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5174), 46, + ACTIONS(5208), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238526,12 +377925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7432] = 4, - ACTIONS(247), 1, + [8920] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1819), 1, + STATE(1837), 1, sym_comment, - ACTIONS(2448), 16, + ACTIONS(2488), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238548,7 +377947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2450), 46, + ACTIONS(2490), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238595,19 +377994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7505] = 4, - ACTIONS(247), 1, + [8993] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(5036), 1, + anon_sym_DOT, + STATE(1781), 1, + aux_sym_cell_path_repeat1, + STATE(1838), 1, sym_comment, - ACTIONS(2183), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2085), 1, + sym_path, + ACTIONS(1479), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238616,9 +378020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2185), 46, - sym_raw_string_begin, + ACTIONS(1481), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238630,32 +378033,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238664,12 +378066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7578] = 4, - ACTIONS(247), 1, + [9072] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1839), 1, sym_comment, - ACTIONS(2452), 16, + ACTIONS(1919), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238686,7 +378088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2454), 46, + ACTIONS(1921), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238733,12 +378135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7651] = 4, - ACTIONS(247), 1, + [9145] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1840), 1, sym_comment, - ACTIONS(5064), 16, + ACTIONS(1968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238755,7 +378157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5062), 46, + ACTIONS(1970), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238802,16 +378204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7724] = 4, - ACTIONS(247), 1, + [9218] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1841), 1, sym_comment, - ACTIONS(1006), 17, + ACTIONS(4925), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -238825,9 +378226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1008), 45, + ACTIONS(4923), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238841,8 +378241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238871,13 +378273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7797] = 4, - ACTIONS(247), 1, + [9291] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1842), 1, sym_comment, - ACTIONS(5054), 17, - anon_sym_LPAREN, + ACTIONS(2609), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238894,9 +378295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5052), 45, + ACTIONS(2611), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238909,9 +378309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238940,19 +378342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7870] = 4, - ACTIONS(247), 1, + [9364] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1843), 1, sym_comment, - ACTIONS(1907), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1506), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238961,9 +378361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1909), 46, - sym_raw_string_begin, + ACTIONS(1508), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238975,32 +378373,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239009,30 +378411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7943] = 4, - ACTIONS(247), 1, + [9437] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1826), 1, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(1844), 1, sym_comment, - ACTIONS(4884), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4882), 46, + ACTIONS(2341), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239045,16 +378433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2337), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -239064,12 +378460,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239078,19 +378480,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8016] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [9512] = 41, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1827), 1, - sym_comment, - ACTIONS(2398), 16, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, anon_sym_DASH2, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1845), 1, + sym_comment, + STATE(2121), 1, + sym_short_flag, + STATE(2122), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5915), 1, + sym__expression, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9659] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1846), 1, + sym_comment, + ACTIONS(1514), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239099,9 +378606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2400), 46, - sym_raw_string_begin, + ACTIONS(1516), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239113,32 +378618,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239147,12 +378656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8089] = 4, - ACTIONS(247), 1, + [9732] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1847), 1, sym_comment, - ACTIONS(4964), 16, + ACTIONS(2601), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239169,7 +378678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4962), 46, + ACTIONS(2603), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239216,12 +378725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8162] = 4, - ACTIONS(247), 1, + [9805] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1829), 1, + ACTIONS(5212), 1, + anon_sym_EQ2, + STATE(1848), 1, sym_comment, - ACTIONS(1026), 16, + ACTIONS(5040), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239238,8 +378749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1028), 46, + ACTIONS(5038), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239253,10 +378765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239285,12 +378795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8235] = 4, - ACTIONS(247), 1, + [9880] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1830), 1, + STATE(1849), 1, sym_comment, - ACTIONS(2440), 16, + ACTIONS(2500), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239307,7 +378817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2442), 46, + ACTIONS(2502), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239354,100 +378864,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8308] = 41, - ACTIONS(247), 1, + [9953] = 41, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5105), 1, + ACTIONS(5194), 1, anon_sym_DASH_DASH, - ACTIONS(5107), 1, + ACTIONS(5196), 1, anon_sym_DASH2, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(1831), 1, + STATE(1850), 1, sym_comment, - STATE(2103), 1, + STATE(2106), 1, sym_short_flag, - STATE(2104), 1, + STATE(2107), 1, sym_long_flag, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5781), 1, + STATE(5832), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -239460,12 +378970,13 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8455] = 4, - ACTIONS(247), 1, + [10100] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1851), 1, sym_comment, - ACTIONS(2422), 16, + ACTIONS(5046), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239482,8 +378993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2424), 46, + ACTIONS(5044), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239496,11 +379008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239529,12 +379039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8528] = 4, - ACTIONS(247), 1, + [10173] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(2504), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239551,7 +379061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 46, + ACTIONS(2506), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239598,12 +379108,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8601] = 4, - ACTIONS(247), 1, + [10246] = 41, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1834), 1, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5194), 1, + anon_sym_DASH_DASH, + ACTIONS(5196), 1, + anon_sym_DASH2, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(1853), 1, + sym_comment, + STATE(2108), 1, + sym_short_flag, + STATE(2109), 1, + sym_long_flag, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5849), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [10393] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1854), 1, sym_comment, - ACTIONS(2118), 16, + ACTIONS(1890), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239620,7 +379236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2120), 46, + ACTIONS(1892), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239667,19 +379283,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8674] = 4, - ACTIONS(247), 1, + [10466] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1855), 1, sym_comment, - ACTIONS(2426), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239688,9 +379306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2428), 46, - sym_raw_string_begin, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239702,32 +379318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239736,12 +379353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8747] = 4, - ACTIONS(247), 1, + [10542] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1856), 1, sym_comment, - ACTIONS(2472), 16, + ACTIONS(2601), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239758,8 +379375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2474), 46, + ACTIONS(2603), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239773,10 +379391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239805,12 +379421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8820] = 4, - ACTIONS(247), 1, + [10614] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1857), 1, sym_comment, - ACTIONS(2468), 16, + ACTIONS(2605), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239827,8 +379443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2470), 46, + ACTIONS(2607), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239842,10 +379459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239874,19 +379489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8893] = 4, - ACTIONS(247), 1, + [10686] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1838), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1858), 1, sym_comment, - ACTIONS(2478), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239895,9 +379512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2480), 46, - sym_raw_string_begin, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239909,32 +379524,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239943,12 +379559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8966] = 4, - ACTIONS(247), 1, + [10762] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1839), 1, + STATE(1859), 1, sym_comment, - ACTIONS(2347), 16, + ACTIONS(2593), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239965,8 +379581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2349), 46, + ACTIONS(2595), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239980,10 +379597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240012,12 +379627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9039] = 4, - ACTIONS(247), 1, + [10834] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1860), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(2488), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240034,8 +379649,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 46, + ACTIONS(2490), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240049,10 +379665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240081,12 +379695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9112] = 4, - ACTIONS(247), 1, + [10906] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1861), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(2516), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240103,8 +379717,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 46, + ACTIONS(2518), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240118,10 +379733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240150,118 +379763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9185] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1842), 1, - sym_comment, - STATE(2165), 1, - sym_short_flag, - STATE(2166), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5805), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9332] = 4, - ACTIONS(247), 1, + [10978] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1765), 16, + ACTIONS(2484), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240278,8 +379785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1767), 46, + ACTIONS(2486), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240293,10 +379801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240325,118 +379831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9405] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1844), 1, - sym_comment, - STATE(2091), 1, - sym_short_flag, - STATE(2167), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5812), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9552] = 4, - ACTIONS(247), 1, + [11050] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1863), 1, sym_comment, - ACTIONS(2157), 16, + ACTIONS(1890), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240453,8 +379853,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2163), 46, + ACTIONS(1892), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240468,10 +379869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240500,188 +379899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9625] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(1846), 1, - sym_comment, - ACTIONS(1028), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1026), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [9700] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1847), 1, - sym_comment, - STATE(2168), 1, - sym_short_flag, - STATE(2169), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5820), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9847] = 4, - ACTIONS(247), 1, + [11122] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1864), 1, sym_comment, - ACTIONS(1739), 16, + ACTIONS(2520), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240698,8 +379921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1741), 46, + ACTIONS(2522), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240713,10 +379937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240745,204 +379967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9920] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_STAR2, - STATE(1849), 1, - sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - STATE(6994), 1, - sym__command_name, - STATE(7112), 1, - sym_scope_pattern, - STATE(7121), 1, - sym_wild_card, - STATE(7125), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5074), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5087), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [10027] = 41, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5105), 1, - anon_sym_DASH_DASH, - ACTIONS(5107), 1, - anon_sym_DASH2, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(1850), 1, - sym_comment, - STATE(2105), 1, - sym_short_flag, - STATE(2106), 1, - sym_long_flag, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5783), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [10174] = 4, - ACTIONS(247), 1, + [11194] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1851), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1785), 16, + ACTIONS(2524), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240959,8 +379989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1787), 46, + ACTIONS(2526), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240974,10 +380005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241006,19 +380035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10247] = 4, - ACTIONS(247), 1, + [11266] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1841), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1496), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241027,9 +380056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1843), 46, - sym_raw_string_begin, + ACTIONS(1498), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241041,32 +380069,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241075,12 +380103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10320] = 4, - ACTIONS(247), 1, + [11338] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1867), 1, sym_comment, - ACTIONS(2436), 16, + ACTIONS(2500), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241097,8 +380125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2438), 46, + ACTIONS(2502), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241112,10 +380141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241144,12 +380171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10393] = 4, - ACTIONS(247), 1, + [11410] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1868), 1, sym_comment, - ACTIONS(1863), 16, + ACTIONS(5188), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241166,8 +380193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1865), 46, + ACTIONS(5186), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241181,10 +380209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241213,12 +380239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10466] = 4, - ACTIONS(247), 1, + [11482] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1855), 1, + STATE(1869), 1, sym_comment, - ACTIONS(4898), 16, + ACTIONS(5210), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241235,8 +380261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4896), 45, + ACTIONS(5208), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241250,7 +380277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -241281,19 +380307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10538] = 4, - ACTIONS(247), 1, + [11554] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1870), 1, sym_comment, - ACTIONS(990), 15, + ACTIONS(1518), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241302,8 +380326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 46, - ts_builtin_sym_end, + ACTIONS(1520), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241315,9 +380338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -241339,8 +380366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241349,12 +380375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10610] = 4, - ACTIONS(247), 1, + [11626] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1871), 1, sym_comment, - ACTIONS(5064), 16, + ACTIONS(2197), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241371,7 +380397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5062), 45, + ACTIONS(2203), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241417,19 +380443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10682] = 4, - ACTIONS(247), 1, + [11698] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1872), 1, sym_comment, - ACTIONS(994), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1919), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241438,7 +380464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 46, + aux_sym_unquoted_token1, + ACTIONS(1921), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241451,32 +380479,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241485,19 +380511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10754] = 4, - ACTIONS(247), 1, + [11770] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1873), 1, sym_comment, - ACTIONS(998), 15, + ACTIONS(1522), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241506,8 +380530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 46, - ts_builtin_sym_end, + ACTIONS(1524), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241519,9 +380542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_QMARK2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -241543,8 +380570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241553,19 +380579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10826] = 4, - ACTIONS(247), 1, + [11842] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1874), 1, sym_comment, - ACTIONS(1002), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2496), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241574,7 +380600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1004), 46, + aux_sym_unquoted_token1, + ACTIONS(2498), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241587,32 +380615,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241621,21 +380647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10898] = 6, - ACTIONS(247), 1, + [11914] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1861), 1, + STATE(1875), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2504), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241644,7 +380668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2506), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241656,33 +380683,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241691,16 +380715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10974] = 6, - ACTIONS(247), 1, + [11986] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1862), 1, + STATE(1876), 1, sym_comment, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241714,7 +380738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241761,12 +380785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11050] = 4, - ACTIONS(247), 1, + [12062] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1002), 16, + ACTIONS(1968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241783,7 +380807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1004), 45, + ACTIONS(1970), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241829,91 +380853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11122] = 6, - ACTIONS(247), 1, + [12134] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1864), 1, + STATE(1878), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4922), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4920), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2609), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [11198] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1865), 1, - sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4928), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241922,7 +380874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4926), 46, + aux_sym_unquoted_token1, + ACTIONS(2611), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241934,33 +380889,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241969,21 +380921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11274] = 6, - ACTIONS(247), 1, + [12206] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1866), 1, + STATE(1879), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2543), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241992,7 +380942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2545), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242004,33 +380957,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242039,12 +380989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11350] = 4, - ACTIONS(247), 1, + [12278] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1880), 1, sym_comment, - ACTIONS(5146), 16, + ACTIONS(2555), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242061,7 +381011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5144), 45, + ACTIONS(2557), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242107,12 +381057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11422] = 4, - ACTIONS(247), 1, + [12350] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1881), 1, sym_comment, - ACTIONS(4986), 16, + ACTIONS(2639), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242129,8 +381079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2807), 45, + ACTIONS(2641), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242144,7 +381095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -242175,16 +381125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11494] = 6, - ACTIONS(247), 1, + [12422] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1869), 1, + STATE(1882), 1, sym_comment, - STATE(8105), 1, + STATE(7966), 1, sym__expr_parenthesized_immediate, - ACTIONS(4934), 13, + ACTIONS(4938), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242198,7 +381148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4932), 46, + ACTIONS(4936), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242245,21 +381195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11570] = 6, - ACTIONS(247), 1, + [12498] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1870), 1, + STATE(1883), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4938), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2575), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242268,7 +381216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4936), 46, + aux_sym_unquoted_token1, + ACTIONS(2577), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242280,33 +381231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242315,12 +381263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11646] = 4, - ACTIONS(247), 1, + [12570] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1884), 1, sym_comment, - ACTIONS(5004), 16, + ACTIONS(2579), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242337,8 +381285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5002), 45, + ACTIONS(2581), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242352,7 +381301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -242383,21 +381331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11718] = 6, - ACTIONS(247), 1, + [12642] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1872), 1, + STATE(1885), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2583), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242406,7 +381352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2585), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242418,33 +381367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242453,125 +381399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11794] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [12714] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, + STATE(1886), 1, + sym_comment, + ACTIONS(2587), 16, anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(1873), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(2814), 1, - aux_sym_shebang_repeat1, - STATE(3548), 1, - sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, - sym_expr_parenthesized, - STATE(3915), 1, - sym__expr_binary_expression_parenthesized, - STATE(3942), 1, - sym_val_range, - STATE(6809), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2460), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11938] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1874), 1, - sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242580,7 +381420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2589), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242592,33 +381435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242627,21 +381467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12014] = 6, - ACTIONS(247), 1, + [12786] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1875), 1, + STATE(1887), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2018), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242650,7 +381488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2020), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242662,33 +381503,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242697,12 +381535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12090] = 4, - ACTIONS(247), 1, + [12858] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1026), 16, + ACTIONS(2508), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242719,7 +381557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1028), 45, + ACTIONS(2510), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242765,12 +381603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12162] = 4, - ACTIONS(247), 1, + [12930] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1889), 1, sym_comment, - ACTIONS(2472), 16, + ACTIONS(2512), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242787,7 +381625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2474), 45, + ACTIONS(2514), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242833,12 +381671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12234] = 4, - ACTIONS(247), 1, + [13002] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2157), 16, + ACTIONS(2034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242855,7 +381693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2163), 45, + ACTIONS(2036), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242901,12 +381739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12306] = 4, - ACTIONS(247), 1, + [13074] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2118), 16, + ACTIONS(2038), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242923,7 +381761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2120), 45, + ACTIONS(2040), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242969,12 +381807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12378] = 4, - ACTIONS(247), 1, + [13146] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1892), 1, sym_comment, - ACTIONS(5163), 16, + ACTIONS(2042), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242991,7 +381829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5160), 45, + ACTIONS(2044), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243037,21 +381875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12450] = 6, - ACTIONS(247), 1, + [13218] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1881), 1, + STATE(1893), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2531), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243060,7 +381896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2533), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243072,33 +381911,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243107,12 +381943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12526] = 4, - ACTIONS(247), 1, + [13290] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1894), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(5034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243126,7 +381962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 48, + ACTIONS(5032), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243157,6 +381993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -243166,7 +382003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243175,12 +382011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12598] = 4, - ACTIONS(247), 1, + [13362] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2183), 16, + ACTIONS(2054), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243197,7 +382033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2185), 45, + ACTIONS(2056), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243243,21 +382079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12670] = 6, - ACTIONS(247), 1, + [13434] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1884), 1, + STATE(1896), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2480), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243266,7 +382100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + aux_sym_unquoted_token1, + ACTIONS(2482), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243278,33 +382115,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243313,12 +382147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12746] = 4, - ACTIONS(247), 1, + [13506] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1897), 1, sym_comment, - ACTIONS(1863), 16, + ACTIONS(4971), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243335,9 +382169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1865), 45, + ACTIONS(2891), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243351,6 +382184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -243381,12 +382215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12818] = 4, - ACTIONS(247), 1, + [13578] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2398), 16, + ACTIONS(2535), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243403,7 +382237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 45, + ACTIONS(2537), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243449,12 +382283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12890] = 4, - ACTIONS(247), 1, + [13650] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1899), 1, sym_comment, - ACTIONS(2402), 16, + ACTIONS(5154), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243471,7 +382305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2404), 45, + ACTIONS(5152), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243517,80 +382351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12962] = 4, - ACTIONS(247), 1, + [13722] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1888), 1, - sym_comment, - ACTIONS(2383), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2385), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13034] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1889), 1, + STATE(1900), 1, sym_comment, - ACTIONS(2122), 16, + ACTIONS(5174), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243607,7 +382373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2128), 45, + ACTIONS(5172), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243653,80 +382419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13106] = 4, - ACTIONS(247), 1, + [13794] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1890), 1, - sym_comment, - ACTIONS(5011), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5009), 45, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13178] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1891), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2130), 16, + ACTIONS(2492), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243743,7 +382441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2136), 45, + ACTIONS(2494), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243789,82 +382487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13250] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1892), 1, - sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13326] = 4, - ACTIONS(247), 1, + [13866] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2146), 16, + ACTIONS(2228), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243881,7 +382509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2152), 45, + ACTIONS(2234), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243927,12 +382555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13398] = 4, - ACTIONS(247), 1, + [13938] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1903), 1, sym_comment, - ACTIONS(5099), 16, + ACTIONS(5180), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243949,7 +382577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5097), 45, + ACTIONS(5178), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243995,12 +382623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13470] = 4, - ACTIONS(247), 1, + [14010] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1904), 1, sym_comment, - ACTIONS(5121), 16, + ACTIONS(2539), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244017,7 +382645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5119), 45, + ACTIONS(2541), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244063,12 +382691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13542] = 4, - ACTIONS(247), 1, + [14082] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1905), 1, sym_comment, - ACTIONS(5172), 16, + ACTIONS(2058), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244085,7 +382713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5170), 45, + ACTIONS(2060), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244131,12 +382759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13614] = 4, - ACTIONS(247), 1, + [14154] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1906), 1, sym_comment, - ACTIONS(5176), 16, + ACTIONS(2177), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244153,7 +382781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5174), 45, + ACTIONS(2183), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244199,12 +382827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13686] = 4, - ACTIONS(247), 1, + [14226] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1907), 1, sym_comment, - ACTIONS(1044), 16, + ACTIONS(5184), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244221,7 +382849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1046), 45, + ACTIONS(5182), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244267,12 +382895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13758] = 4, - ACTIONS(247), 1, + [14298] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1908), 1, sym_comment, - ACTIONS(4884), 16, + ACTIONS(4925), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244289,7 +382917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4882), 45, + ACTIONS(4923), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244335,83 +382963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13830] = 5, - ACTIONS(247), 1, + [14370] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5186), 1, - anon_sym_QMARK2, - STATE(1900), 1, - sym_comment, - ACTIONS(978), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13904] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5188), 1, - anon_sym_LBRACK2, - STATE(1901), 1, + STATE(1909), 1, sym_comment, - ACTIONS(2322), 13, + ACTIONS(1526), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244425,7 +382982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2326), 47, + ACTIONS(1528), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244465,6 +383022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244473,12 +383031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13978] = 4, - ACTIONS(247), 1, + [14442] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1910), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(1510), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244495,7 +383053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 45, + ACTIONS(1512), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244541,12 +383099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14050] = 4, - ACTIONS(247), 1, + [14514] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2414), 16, + ACTIONS(2066), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244563,7 +383121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 45, + ACTIONS(2068), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244609,12 +383167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14122] = 4, - ACTIONS(247), 1, + [14586] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1912), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(2547), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244631,7 +383189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 45, + ACTIONS(2549), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244677,12 +383235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14194] = 4, - ACTIONS(247), 1, + [14658] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2422), 16, + ACTIONS(2551), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244699,7 +383257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2424), 45, + ACTIONS(2553), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244745,12 +383303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14266] = 4, - ACTIONS(247), 1, + [14730] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1914), 1, sym_comment, - ACTIONS(2426), 16, + ACTIONS(2070), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244767,7 +383325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2428), 45, + ACTIONS(2072), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244813,12 +383371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14338] = 4, - ACTIONS(247), 1, + [14802] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2436), 16, + ACTIONS(2185), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244835,7 +383393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2438), 45, + ACTIONS(2191), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244881,12 +383439,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14410] = 4, - ACTIONS(247), 1, + [14874] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1908), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1916), 1, sym_comment, - ACTIONS(2390), 16, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4953), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4951), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14950] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1917), 1, + sym_comment, + ACTIONS(2559), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244903,7 +383531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2392), 45, + ACTIONS(2561), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244949,12 +383577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14482] = 4, - ACTIONS(247), 1, + [15022] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1918), 1, sym_comment, - ACTIONS(5134), 16, + ACTIONS(2563), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244971,7 +383599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5132), 45, + ACTIONS(2565), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245017,12 +383645,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14554] = 4, - ACTIONS(247), 1, + [15094] = 40, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1910), 1, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(985), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + sym__newline, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(1919), 1, sym_comment, - ACTIONS(5138), 16, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(2826), 1, + aux_sym_shebang_repeat1, + STATE(3549), 1, + sym__val_number_decimal, + STATE(3607), 1, + sym_expr_parenthesized, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, + sym__expr_binary_expression_parenthesized, + STATE(3950), 1, + sym_val_range, + STATE(6805), 1, + sym__expression_parenthesized, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2337), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [15238] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1920), 1, + sym_comment, + ACTIONS(5034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245039,7 +383771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5136), 45, + ACTIONS(5032), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245085,17 +383817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14626] = 4, - ACTIONS(247), 1, + [15310] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1010), 13, + ACTIONS(1526), 16, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245104,8 +383839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 48, - sym__newline, + ACTIONS(1528), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245116,13 +383850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -245144,7 +383874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245153,17 +383885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14698] = 4, - ACTIONS(247), 1, + [15382] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1912), 1, + ACTIONS(5222), 1, + anon_sym_QMARK2, + STATE(1922), 1, sym_comment, - ACTIONS(1014), 13, + ACTIONS(1500), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245172,7 +383908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 48, + ACTIONS(1502), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245184,13 +383921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -245212,7 +383944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245221,12 +383954,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14770] = 4, - ACTIONS(247), 1, + [15456] = 40, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1913), 1, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(985), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + sym__newline, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(1923), 1, sym_comment, - ACTIONS(4964), 16, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(2826), 1, + aux_sym_shebang_repeat1, + STATE(3549), 1, + sym__val_number_decimal, + STATE(3607), 1, + sym_expr_parenthesized, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, + sym__expr_binary_expression_parenthesized, + STATE(3950), 1, + sym_val_range, + STATE(6507), 1, + sym__expression_parenthesized, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2337), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [15600] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1924), 1, + sym_comment, + ACTIONS(1506), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245243,7 +384080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4962), 45, + ACTIONS(1508), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245289,19 +384126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14842] = 4, - ACTIONS(247), 1, + [15672] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2406), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1246), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245310,10 +384145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2408), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1244), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245325,30 +384157,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245357,12 +384194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14914] = 4, - ACTIONS(247), 1, + [15744] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245379,7 +384216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 45, + ACTIONS(5128), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245425,12 +384262,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14986] = 4, - ACTIONS(247), 1, + [15816] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1916), 1, + ACTIONS(5224), 1, + anon_sym_LBRACK2, + STATE(1927), 1, + sym_comment, + ACTIONS(2423), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2427), 47, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15890] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1928), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(5115), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245447,7 +384353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 45, + ACTIONS(5112), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245493,19 +384399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15058] = 4, - ACTIONS(247), 1, + [15962] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1917), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1929), 1, sym_comment, - ACTIONS(2498), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245514,10 +384422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2500), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245529,30 +384434,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245561,12 +384469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15130] = 4, - ACTIONS(247), 1, + [16038] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2514), 16, + ACTIONS(1788), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245583,7 +384491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2516), 45, + ACTIONS(1800), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245629,19 +384537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15202] = 4, - ACTIONS(247), 1, + [16110] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1931), 1, sym_comment, - ACTIONS(998), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1510), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245650,9 +384558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1000), 45, - sym_raw_string_begin, + ACTIONS(1512), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -245665,30 +384571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245697,19 +384605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15274] = 4, - ACTIONS(247), 1, + [16182] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1932), 1, sym_comment, - ACTIONS(2355), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245718,10 +384628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2357), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245733,30 +384640,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245765,12 +384675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15346] = 4, - ACTIONS(247), 1, + [16258] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1933), 1, sym_comment, - ACTIONS(2359), 16, + ACTIONS(2567), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245787,7 +384697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2361), 45, + ACTIONS(2569), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245833,12 +384743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15418] = 4, - ACTIONS(247), 1, + [16330] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(5136), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245855,7 +384765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 45, + ACTIONS(5134), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245901,12 +384811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15490] = 4, - ACTIONS(247), 1, + [16402] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1935), 1, sym_comment, - ACTIONS(1887), 16, + ACTIONS(2215), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245923,7 +384833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1889), 45, + ACTIONS(2217), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245969,19 +384879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15562] = 4, - ACTIONS(247), 1, + [16474] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1924), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1936), 1, sym_comment, - ACTIONS(2343), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245990,10 +384902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2345), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246005,30 +384914,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246037,12 +384949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15634] = 4, - ACTIONS(247), 1, + [16550] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2440), 16, + ACTIONS(1538), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246059,7 +384971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2442), 45, + ACTIONS(1540), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246105,80 +385017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15706] = 4, - ACTIONS(247), 1, + [16622] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1926), 1, - sym_comment, - ACTIONS(1290), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1288), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15778] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1927), 1, + STATE(1938), 1, sym_comment, - ACTIONS(1915), 16, + ACTIONS(1556), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246195,7 +385039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1917), 45, + ACTIONS(1558), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246241,12 +385085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15850] = 4, - ACTIONS(247), 1, + [16694] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1939), 1, sym_comment, - ACTIONS(1927), 16, + ACTIONS(5058), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246263,9 +385107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1929), 45, + ACTIONS(5056), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246279,6 +385122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -246309,12 +385153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15922] = 4, - ACTIONS(247), 1, + [16766] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1940), 1, sym_comment, - ACTIONS(1942), 16, + ACTIONS(5143), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246331,7 +385175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1944), 45, + ACTIONS(5141), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246377,19 +385221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15994] = 4, - ACTIONS(247), 1, + [16838] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1941), 1, sym_comment, - ACTIONS(2490), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5046), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246398,10 +385240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2492), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5044), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246413,30 +385252,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246445,12 +385289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16066] = 4, - ACTIONS(247), 1, + [16910] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1942), 1, sym_comment, - ACTIONS(2034), 16, + ACTIONS(2219), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246467,7 +385311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2036), 45, + ACTIONS(2221), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246513,12 +385357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16138] = 4, - ACTIONS(247), 1, + [16982] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(1943), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(1496), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246535,7 +385379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 45, + ACTIONS(1498), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246581,12 +385425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16210] = 4, - ACTIONS(247), 1, + [17054] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1933), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(5170), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246603,7 +385447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 45, + ACTIONS(5168), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246649,19 +385493,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16282] = 4, - ACTIONS(247), 1, + [17126] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1945), 1, sym_comment, - ACTIONS(2038), 16, - anon_sym_DOLLAR, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5214), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17202] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1946), 1, + sym_comment, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246670,10 +385586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2040), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246685,30 +385598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246717,12 +385633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16354] = 4, - ACTIONS(247), 1, + [17278] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1947), 1, sym_comment, - ACTIONS(2464), 16, + ACTIONS(1514), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246739,7 +385655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2466), 45, + ACTIONS(1516), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246785,12 +385701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16426] = 4, - ACTIONS(247), 1, + [17350] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1948), 1, sym_comment, - ACTIONS(2464), 16, + ACTIONS(5014), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246807,9 +385723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2466), 45, + ACTIONS(5012), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246823,6 +385738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -246853,12 +385769,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16498] = 4, - ACTIONS(247), 1, + [17422] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1949), 1, + sym_comment, + ACTIONS(1518), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1520), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17494] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1950), 1, + sym_comment, + ACTIONS(1522), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1524), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17566] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1951), 1, sym_comment, - ACTIONS(1899), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246875,7 +385927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1901), 45, + ACTIONS(2470), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246921,12 +385973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16570] = 4, - ACTIONS(247), 1, + [17638] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1952), 1, sym_comment, - ACTIONS(2448), 16, + ACTIONS(5018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246943,7 +385995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2450), 45, + ACTIONS(5016), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246989,12 +386041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16642] = 4, - ACTIONS(247), 1, + [17710] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1953), 1, sym_comment, - ACTIONS(2452), 16, + ACTIONS(5102), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247011,9 +386063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2454), 45, + ACTIONS(5100), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247027,6 +386078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -247057,12 +386109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16714] = 4, - ACTIONS(247), 1, + [17782] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1954), 1, sym_comment, - ACTIONS(1907), 16, + ACTIONS(5046), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247079,7 +386131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1909), 45, + ACTIONS(5044), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247125,10 +386177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16786] = 4, - ACTIONS(247), 1, + [17854] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1955), 1, sym_comment, ACTIONS(2468), 16, anon_sym_DOLLAR, @@ -247193,12 +386245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16858] = 4, - ACTIONS(247), 1, + [17926] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(2476), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247215,7 +386267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 45, + ACTIONS(2478), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247261,12 +386313,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16930] = 4, - ACTIONS(247), 1, + [17998] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1943), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1957), 1, + sym_comment, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5214), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18074] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1958), 1, sym_comment, - ACTIONS(2486), 16, + ACTIONS(2635), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247283,7 +386405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2488), 45, + ACTIONS(2637), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247329,19 +386451,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17002] = 4, - ACTIONS(247), 1, + [18146] = 40, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(985), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + sym__newline, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(1923), 1, + aux_sym_shebang_repeat1, + STATE(1959), 1, + sym_comment, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3549), 1, + sym__val_number_decimal, + STATE(3607), 1, + sym_expr_parenthesized, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, + sym__expr_binary_expression_parenthesized, + STATE(3950), 1, + sym_val_range, + STATE(6733), 1, + sym__expression_parenthesized, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2337), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18290] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1944), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1960), 1, sym_comment, - ACTIONS(2510), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247350,10 +386578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2512), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247365,30 +386590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247397,21 +386625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17074] = 5, - ACTIONS(247), 1, + [18366] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_QMARK2, - STATE(1945), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1961), 1, sym_comment, - ACTIONS(984), 15, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247420,8 +386648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 45, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247433,8 +386660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247456,8 +386687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247466,19 +386695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17148] = 4, - ACTIONS(247), 1, + [18442] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1946), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1962), 1, sym_comment, - ACTIONS(1707), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4949), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247487,10 +386718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1719), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4947), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247502,30 +386730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247534,13 +386765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17220] = 4, - ACTIONS(247), 1, + [18518] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1963), 1, sym_comment, - ACTIONS(1006), 16, - sym__newline, + ACTIONS(1506), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247556,7 +386786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, + ACTIONS(1508), 46, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247569,7 +386801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247593,7 +386825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247602,16 +386833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17292] = 6, - ACTIONS(247), 1, + [18590] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1948), 1, + STATE(1964), 1, sym_comment, - STATE(7681), 1, + STATE(7966), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(4942), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247625,7 +386856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(4940), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247672,12 +386903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17368] = 4, - ACTIONS(247), 1, + [18666] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1965), 1, sym_comment, - ACTIONS(2444), 16, + ACTIONS(5150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247694,7 +386925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2446), 45, + ACTIONS(5148), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247740,12 +386971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17440] = 4, - ACTIONS(247), 1, + [18738] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1966), 1, sym_comment, - ACTIONS(2478), 16, + ACTIONS(1872), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247762,7 +386993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2480), 45, + ACTIONS(1874), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247808,12 +387039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17512] = 4, - ACTIONS(247), 1, + [18810] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1967), 1, sym_comment, - ACTIONS(2347), 16, + ACTIONS(2006), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247830,7 +387061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2349), 45, + ACTIONS(2008), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247876,16 +387107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17584] = 6, - ACTIONS(247), 1, + [18882] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1952), 1, + STATE(1968), 1, sym_comment, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247899,7 +387130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247946,88 +387177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17660] = 4, - ACTIONS(247), 1, + [18958] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1969), 1, sym_comment, - ACTIONS(1010), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2472), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [17732] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1954), 1, - sym_comment, - ACTIONS(1014), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248036,7 +387198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, + aux_sym_unquoted_token1, + ACTIONS(2474), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248047,33 +387213,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248082,12 +387245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17804] = 4, - ACTIONS(247), 1, + [19030] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1970), 1, sym_comment, - ACTIONS(5081), 16, + ACTIONS(1994), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248104,7 +387267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5079), 45, + ACTIONS(1996), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248150,12 +387313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17876] = 4, - ACTIONS(247), 1, + [19102] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1956), 1, + STATE(1971), 1, sym_comment, - ACTIONS(5085), 16, + ACTIONS(2597), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248172,7 +387335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5083), 45, + ACTIONS(2599), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248218,17 +387381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17948] = 4, - ACTIONS(247), 1, + [19174] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1957), 1, + STATE(1972), 1, sym_comment, - ACTIONS(5054), 13, + ACTIONS(1514), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248237,7 +387402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(1516), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248249,13 +387415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248268,7 +387430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -248278,6 +387439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248286,19 +387449,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18020] = 4, - ACTIONS(247), 1, + [19246] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1958), 1, + ACTIONS(5226), 1, + anon_sym_QMARK2, + STATE(1973), 1, sym_comment, - ACTIONS(1765), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1490), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248307,9 +387472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1767), 45, - sym_raw_string_begin, + ACTIONS(1492), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248322,30 +387485,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248354,234 +387518,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18092] = 4, - ACTIONS(247), 1, + [19320] = 40, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1959), 1, - sym_comment, - ACTIONS(1847), 16, - anon_sym_DOLLAR, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1851), 45, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(985), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(1974), 1, + sym_comment, + STATE(1975), 1, + aux_sym_shebang_repeat1, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3549), 1, + sym__val_number_decimal, + STATE(3607), 1, + sym_expr_parenthesized, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, + sym__expr_binary_expression_parenthesized, + STATE(3950), 1, + sym_val_range, + STATE(6793), 1, + sym__expression_parenthesized, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2337), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19464] = 40, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18164] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1960), 1, - sym_comment, - ACTIONS(5150), 16, - anon_sym_DOLLAR, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5148), 45, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(985), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(5218), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(1975), 1, + sym_comment, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(2826), 1, + aux_sym_shebang_repeat1, + STATE(3549), 1, + sym__val_number_decimal, + STATE(3607), 1, + sym_expr_parenthesized, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, + sym__expr_binary_expression_parenthesized, + STATE(3950), 1, + sym_val_range, + STATE(6796), 1, + sym__expression_parenthesized, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2337), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18236] = 40, - ACTIONS(153), 1, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19608] = 40, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(379), 1, + ACTIONS(387), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(1048), 1, + ACTIONS(985), 1, anon_sym_DOLLAR, - ACTIONS(3287), 1, + ACTIONS(3371), 1, sym__newline, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(5182), 1, + ACTIONS(5218), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1961), 1, + STATE(1919), 1, + aux_sym_shebang_repeat1, + STATE(1976), 1, sym_comment, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(2814), 1, - aux_sym_shebang_repeat1, - STATE(3548), 1, + STATE(3549), 1, sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, + STATE(3607), 1, sym_expr_parenthesized, - STATE(3915), 1, + STATE(3614), 1, + sym_val_variable, + STATE(3891), 1, sym__expr_binary_expression_parenthesized, - STATE(3942), 1, + STATE(3950), 1, sym_val_range, - STATE(6266), 1, + STATE(6803), 1, sym__expression_parenthesized, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2460), 3, + STATE(2337), 3, sym_expr_unary, sym_expr_binary_parenthesized, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -248594,16 +387830,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18380] = 6, - ACTIONS(247), 1, + [19752] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1962), 1, + STATE(1977), 1, sym_comment, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248617,7 +387853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248664,98 +387900,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18456] = 40, - ACTIONS(153), 1, + [19828] = 39, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(5182), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1961), 1, - aux_sym_shebang_repeat1, - STATE(1963), 1, + STATE(1978), 1, sym_comment, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3548), 1, + STATE(3572), 1, sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, - sym_expr_parenthesized, - STATE(3915), 1, - sym__expr_binary_expression_parenthesized, - STATE(3942), 1, + STATE(3622), 1, sym_val_range, - STATE(6246), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, + sym__expr_binary_expression, + STATE(7567), 1, + sym__expression, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2460), 3, + STATE(2145), 3, sym_expr_unary, - sym_expr_binary_parenthesized, + sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -248768,19 +388002,370 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18600] = 4, - ACTIONS(247), 1, + [19969] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1979), 1, + sym_comment, + ACTIONS(1886), 15, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1888), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20040] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1980), 1, + sym_comment, + STATE(2199), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5232), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20117] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1981), 1, + sym_comment, + STATE(2206), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5232), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20194] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1982), 1, + sym_comment, + STATE(2210), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5232), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20271] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1983), 1, + sym_comment, + STATE(2213), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5232), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20348] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1964), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1984), 1, sym_comment, - ACTIONS(1739), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2234), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248789,10 +388374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1741), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248804,30 +388386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248836,19 +388419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18672] = 4, - ACTIONS(247), 1, + [20425] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(5236), 1, + anon_sym_DOT, + STATE(2306), 1, + sym_path, + STATE(1985), 2, sym_comment, - ACTIONS(990), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248857,9 +388443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(992), 45, - sym_raw_string_begin, + ACTIONS(1485), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248872,30 +388456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248904,19 +388488,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18744] = 4, - ACTIONS(247), 1, + [20500] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1966), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1986), 1, sym_comment, - ACTIONS(5130), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2246), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248925,10 +388513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5128), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248940,30 +388525,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248972,12 +388558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18816] = 4, - ACTIONS(247), 1, + [20577] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1967), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1987), 1, sym_comment, - ACTIONS(5064), 13, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248991,7 +388583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 48, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249006,10 +388598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249022,7 +388611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -249040,19 +388628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18888] = 4, - ACTIONS(247), 1, + [20654] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1968), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(1988), 1, sym_comment, - ACTIONS(5054), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2465), 1, + sym_cell_path, + ACTIONS(2010), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249061,9 +388655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5052), 45, - sym_raw_string_begin, + ACTIONS(2012), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -249076,30 +388668,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249108,16 +388699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18960] = 6, - ACTIONS(247), 1, + [20733] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1969), 1, + STATE(1989), 1, sym_comment, - STATE(7681), 1, + STATE(2295), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249131,7 +388724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249147,8 +388740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249178,19 +388769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19036] = 4, - ACTIONS(247), 1, + [20810] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1990), 1, sym_comment, - ACTIONS(1785), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2184), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249199,10 +388794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1787), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249214,30 +388806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249246,19 +388839,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19108] = 4, - ACTIONS(247), 1, + [20887] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1971), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1991), 1, sym_comment, - ACTIONS(994), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2188), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249267,10 +388864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(996), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249282,30 +388876,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249314,19 +388909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19180] = 4, - ACTIONS(247), 1, + [20964] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1972), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1992), 1, sym_comment, - ACTIONS(2456), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2190), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249335,10 +388934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2458), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249350,30 +388946,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249382,19 +388979,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19252] = 4, - ACTIONS(247), 1, + [21041] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1973), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1993), 1, sym_comment, - ACTIONS(1841), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249403,10 +389004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1843), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249418,30 +389016,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249450,331 +389049,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19324] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(1974), 1, - sym_comment, - STATE(1975), 1, - aux_sym_shebang_repeat1, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3548), 1, - sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, - sym_expr_parenthesized, - STATE(3915), 1, - sym__expr_binary_expression_parenthesized, - STATE(3942), 1, - sym_val_range, - STATE(6798), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2460), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19468] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [21118] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(1975), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1994), 1, sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(2814), 1, - aux_sym_shebang_repeat1, - STATE(3548), 1, - sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, - sym_expr_parenthesized, - STATE(3915), 1, - sym__expr_binary_expression_parenthesized, - STATE(3942), 1, - sym_val_range, - STATE(6801), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2460), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19612] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(1873), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - STATE(1976), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3548), 1, - sym__val_number_decimal, - STATE(3631), 1, - sym_val_variable, - STATE(3634), 1, - sym_expr_parenthesized, - STATE(3915), 1, - sym__expr_binary_expression_parenthesized, - STATE(3942), 1, - sym_val_range, - STATE(6807), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2460), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19756] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1977), 1, - sym_comment, - ACTIONS(2351), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5234), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249783,10 +389074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2353), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249798,30 +389086,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249830,18 +389119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19828] = 7, - ACTIONS(247), 1, + [21195] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1978), 1, + STATE(1995), 1, sym_comment, - STATE(2265), 1, + STATE(2222), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249855,7 +389144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249900,20 +389189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19905] = 8, - ACTIONS(247), 1, + [21272] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(1979), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1996), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2096), 1, - sym_cell_path, - STATE(2251), 1, - sym_path, - ACTIONS(1733), 13, + STATE(2235), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249927,8 +389214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249940,8 +389226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249971,19 +389259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19984] = 4, - ACTIONS(247), 1, + [21349] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(1997), 1, sym_comment, - ACTIONS(1014), 15, + ACTIONS(2240), 15, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249992,9 +389280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2242), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250007,6 +389293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250030,6 +389317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250038,20 +389326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20055] = 8, - ACTIONS(247), 1, + [21420] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(1981), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(1998), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2548), 1, - sym_cell_path, - ACTIONS(1887), 13, + STATE(2242), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250065,8 +389351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1889), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250078,8 +389363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250109,20 +389396,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20134] = 8, - ACTIONS(247), 1, + [21497] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(1982), 1, + STATE(1999), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2549), 1, + STATE(2525), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(2018), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250136,7 +389423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 43, + ACTIONS(2020), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250180,12 +389467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20213] = 4, - ACTIONS(247), 1, + [21576] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2000), 1, sym_comment, - ACTIONS(1915), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2526), 1, + sym_cell_path, + ACTIONS(2022), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250199,7 +389494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1917), 47, + ACTIONS(2024), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250211,13 +389507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250247,20 +389538,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20284] = 8, - ACTIONS(247), 1, + [21655] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(1984), 1, + STATE(2001), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2552), 1, + STATE(2528), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(2026), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250274,7 +389565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 43, + ACTIONS(2028), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250318,20 +389609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20363] = 8, - ACTIONS(247), 1, + [21734] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(1985), 1, + STATE(2002), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2511), 1, + STATE(2529), 1, sym_cell_path, - ACTIONS(1911), 13, + ACTIONS(2030), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250345,7 +389636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1913), 43, + ACTIONS(2032), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250389,12 +389680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20442] = 4, - ACTIONS(247), 1, + [21813] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1986), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2003), 1, sym_comment, - ACTIONS(2402), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2549), 1, + sym_cell_path, + ACTIONS(1994), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250408,7 +389707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2404), 47, + ACTIONS(1996), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250420,13 +389720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250456,18 +389751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20513] = 7, - ACTIONS(247), 1, + [21892] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(1987), 1, + STATE(2004), 1, sym_comment, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(2488), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250481,7 +389770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2490), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250496,7 +389785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250526,20 +389818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20590] = 8, - ACTIONS(247), 1, + [21963] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(1988), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2005), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2534), 1, - sym_cell_path, - ACTIONS(1879), 13, + STATE(2245), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250553,8 +389843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250566,8 +389855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250597,20 +389888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20669] = 8, - ACTIONS(247), 1, + [22040] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(1989), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2006), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2535), 1, - sym_cell_path, - ACTIONS(1883), 13, + STATE(2248), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250624,8 +389913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250637,8 +389925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250668,18 +389958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20748] = 7, - ACTIONS(247), 1, + [22117] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1990), 1, + STATE(2007), 1, sym_comment, - STATE(2193), 1, + STATE(2255), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250693,7 +389983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250738,12 +390028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20825] = 4, - ACTIONS(247), 1, + [22194] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1991), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2008), 1, sym_comment, - ACTIONS(2440), 13, + STATE(2223), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250757,7 +390053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2442), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250772,10 +390068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250805,12 +390098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20896] = 4, - ACTIONS(247), 1, + [22271] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1992), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2009), 1, sym_comment, - ACTIONS(2490), 13, + STATE(2224), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250824,7 +390123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2492), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250839,10 +390138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250872,18 +390168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20967] = 7, - ACTIONS(247), 1, + [22348] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1993), 1, + STATE(2010), 1, sym_comment, - STATE(2195), 1, + STATE(2225), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250897,7 +390193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250942,18 +390238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21044] = 7, - ACTIONS(247), 1, + [22425] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1994), 1, + STATE(2011), 1, sym_comment, - STATE(2196), 1, + STATE(2226), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250967,7 +390263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251012,18 +390308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21121] = 7, - ACTIONS(247), 1, + [22502] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1995), 1, + STATE(2012), 1, sym_comment, - STATE(2197), 1, + STATE(2227), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251037,7 +390333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251082,18 +390378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21198] = 7, - ACTIONS(247), 1, + [22579] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1996), 1, + STATE(2013), 1, sym_comment, - STATE(2207), 1, + STATE(2228), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251107,7 +390403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251152,18 +390448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21275] = 7, - ACTIONS(247), 1, + [22656] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1997), 1, + STATE(2014), 1, sym_comment, - STATE(2209), 1, + STATE(2229), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251177,7 +390473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251222,23 +390518,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21352] = 8, - ACTIONS(247), 1, + [22733] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - STATE(1998), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2015), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, + STATE(2268), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251247,7 +390543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 21, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251260,18 +390556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251293,18 +390580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21431] = 7, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22810] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(1999), 1, + STATE(2016), 1, sym_comment, - STATE(2210), 1, + STATE(2275), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251318,7 +390613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251363,17 +390658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21508] = 6, - ACTIONS(247), 1, + [22887] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - STATE(2000), 1, + STATE(2017), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 13, + ACTIONS(2500), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251387,7 +390677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 44, + ACTIONS(2502), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251402,7 +390692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251432,12 +390725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21583] = 4, - ACTIONS(247), 1, + [22958] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2001), 1, + STATE(2018), 1, sym_comment, - ACTIONS(2034), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251451,7 +390744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2036), 47, + ACTIONS(2474), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251499,18 +390792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21654] = 7, - ACTIONS(247), 1, + [23029] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2002), 1, + STATE(2019), 1, sym_comment, - STATE(2233), 1, + STATE(2301), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251524,7 +390817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251569,12 +390862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21731] = 4, - ACTIONS(247), 1, + [23106] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2003), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2020), 1, sym_comment, - ACTIONS(1927), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_cell_path, + STATE(2306), 1, + sym_path, + ACTIONS(1880), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251588,7 +390889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1929), 47, + ACTIONS(1884), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251600,13 +390902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251636,18 +390933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21802] = 7, - ACTIONS(247), 1, + [23185] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2004), 1, + STATE(2021), 1, sym_comment, - STATE(2238), 1, + STATE(2305), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251661,7 +390958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251706,18 +391003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21879] = 7, - ACTIONS(247), 1, + [23262] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2005), 1, + STATE(2022), 1, sym_comment, - STATE(2214), 1, + STATE(2230), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251731,7 +391028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251776,20 +391073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21956] = 8, - ACTIONS(247), 1, + [23339] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2006), 1, + STATE(2023), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2153), 1, - sym_cell_path, - STATE(2251), 1, - sym_path, - ACTIONS(961), 13, + ACTIONS(2504), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251803,8 +391092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 43, - ts_builtin_sym_end, + ACTIONS(2506), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251816,8 +391104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251847,18 +391140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22035] = 7, - ACTIONS(247), 1, + [23410] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2007), 1, + STATE(2024), 1, sym_comment, - STATE(2249), 1, + STATE(2312), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251872,7 +391165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251917,18 +391210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22112] = 7, - ACTIONS(247), 1, + [23487] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2008), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2025), 1, sym_comment, - STATE(2215), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2534), 1, + sym_cell_path, + ACTIONS(1998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251942,7 +391237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(2000), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251954,10 +391250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251987,18 +391281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22189] = 7, - ACTIONS(247), 1, + [23566] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2009), 1, + STATE(2026), 1, sym_comment, - STATE(2218), 1, + STATE(2314), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252012,7 +391306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252057,12 +391351,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22266] = 4, - ACTIONS(247), 1, + [23643] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2010), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2027), 1, sym_comment, - ACTIONS(2367), 13, + STATE(2231), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252076,7 +391376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252091,10 +391391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252124,12 +391421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22337] = 4, - ACTIONS(247), 1, + [23720] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2011), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2028), 1, sym_comment, - ACTIONS(2379), 13, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252143,7 +391446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252158,10 +391461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252191,12 +391491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22408] = 4, - ACTIONS(247), 1, + [23797] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2012), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2029), 1, sym_comment, - ACTIONS(2038), 13, + STATE(2238), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252210,7 +391516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2040), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252225,10 +391531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252258,18 +391561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22479] = 7, - ACTIONS(247), 1, + [23874] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2013), 1, + STATE(2030), 1, sym_comment, - STATE(2242), 1, + STATE(2239), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252283,7 +391586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252328,114 +391631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22556] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [23951] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2014), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7658), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [22697] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2015), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2031), 1, sym_comment, - ACTIONS(1899), 13, + STATE(2240), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252449,7 +391656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 47, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252464,10 +391671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252497,17 +391701,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22768] = 4, - ACTIONS(247), 1, + [24028] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2016), 1, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + STATE(2032), 1, sym_comment, - ACTIONS(2448), 13, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252516,7 +391726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2450), 47, + ACTIONS(5249), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252529,12 +391739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252556,122 +391772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [22839] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2017), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7674), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [22980] = 4, - ACTIONS(247), 1, + [24107] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2018), 1, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + STATE(2033), 1, sym_comment, - ACTIONS(2452), 13, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252685,7 +391796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2454), 47, + ACTIONS(1540), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252700,10 +391811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252733,18 +391841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23051] = 7, - ACTIONS(247), 1, + [24182] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2019), 1, + STATE(2034), 1, sym_comment, - STATE(2258), 1, + STATE(2320), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252758,7 +391866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252803,17 +391911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23128] = 6, - ACTIONS(247), 1, + [24259] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2251), 1, - sym_path, - STATE(2020), 2, + STATE(2035), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 13, + ACTIONS(2018), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252827,8 +391930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 44, - ts_builtin_sym_end, + ACTIONS(2020), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252840,9 +391942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252872,20 +391978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23203] = 8, - ACTIONS(247), 1, + [24330] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2021), 1, + STATE(2036), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2477), 1, + STATE(2101), 1, sym_cell_path, - ACTIONS(1871), 13, + STATE(2306), 1, + sym_path, + ACTIONS(1473), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252899,7 +392005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, + ACTIONS(1475), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252943,20 +392049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23282] = 8, - ACTIONS(247), 1, + [24409] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2022), 1, + STATE(2037), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2478), 1, + STATE(2480), 1, sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252970,7 +392076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1861), 43, + ACTIONS(2036), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253014,12 +392120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23361] = 4, - ACTIONS(247), 1, + [24488] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2023), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2038), 1, sym_comment, - ACTIONS(1907), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2481), 1, + sym_cell_path, + ACTIONS(2171), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253033,7 +392147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1909), 47, + ACTIONS(2173), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253045,13 +392160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253081,26 +392191,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23432] = 9, - ACTIONS(247), 1, + [24567] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - ACTIONS(4801), 1, - aux_sym_record_entry_token1, - STATE(2024), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2039), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2485), 1, + sym_cell_path, + ACTIONS(2038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5212), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253109,7 +392218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 19, + ACTIONS(2040), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253120,16 +392231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -253153,20 +392254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23513] = 8, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24646] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2025), 1, + STATE(2040), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2465), 1, + STATE(2486), 1, sym_cell_path, - ACTIONS(1915), 13, + ACTIONS(2042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253180,7 +392289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1917), 43, + ACTIONS(2044), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253224,20 +392333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23592] = 8, - ACTIONS(247), 1, + [24725] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2026), 1, + STATE(2041), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2466), 1, + STATE(2116), 1, sym_cell_path, - ACTIONS(1919), 13, + STATE(2306), 1, + sym_path, + ACTIONS(1886), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253251,7 +392360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1921), 43, + ACTIONS(1888), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253295,20 +392404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23671] = 8, - ACTIONS(247), 1, + [24804] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2027), 1, + STATE(2042), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2467), 1, - sym_cell_path, - ACTIONS(1927), 13, + ACTIONS(2508), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253322,8 +392423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1929), 43, - ts_builtin_sym_end, + ACTIONS(2510), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253335,8 +392435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253366,20 +392471,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23750] = 8, - ACTIONS(247), 1, + [24875] = 39, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(2043), 1, + sym_comment, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3572), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_range, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, + sym__expr_binary_expression, + STATE(7555), 1, + sym__expression, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2145), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [25016] = 39, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(2044), 1, + sym_comment, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3572), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_range, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, + sym__expr_binary_expression, + STATE(7567), 1, + sym__expression, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2145), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [25157] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2028), 1, + STATE(2045), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, STATE(2468), 1, sym_cell_path, - ACTIONS(1942), 13, + ACTIONS(1990), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253393,7 +392702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1944), 43, + ACTIONS(1992), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253437,20 +392746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23829] = 8, - ACTIONS(247), 1, + [25236] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2029), 1, + STATE(2046), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2469), 1, + STATE(2487), 1, sym_cell_path, - ACTIONS(2026), 13, + ACTIONS(2046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253464,7 +392773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2028), 43, + ACTIONS(2048), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253508,20 +392817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23908] = 8, - ACTIONS(247), 1, + [25315] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2030), 1, + STATE(2047), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, STATE(2471), 1, sym_cell_path, - ACTIONS(2030), 13, + ACTIONS(1972), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253535,7 +392844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2032), 43, + ACTIONS(1976), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253579,18 +392888,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23987] = 7, - ACTIONS(247), 1, + [25394] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2031), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2048), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2474), 1, + sym_cell_path, + ACTIONS(2014), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253604,7 +392915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(2016), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253616,10 +392928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253649,18 +392959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24064] = 7, - ACTIONS(247), 1, + [25473] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2032), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2049), 1, sym_comment, - STATE(2270), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2489), 1, + sym_cell_path, + ACTIONS(2050), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253674,7 +392986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2052), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253686,10 +392999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253719,23 +393030,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24141] = 7, - ACTIONS(247), 1, + [25552] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2033), 1, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + ACTIONS(4825), 1, + aux_sym_record_entry_token1, + STATE(2050), 1, sym_comment, - STATE(2271), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5255), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253744,8 +393058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, - sym__newline, + ACTIONS(5249), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253756,10 +393069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253781,26 +393102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24218] = 7, - ACTIONS(247), 1, + [25633] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2034), 1, + STATE(2051), 1, sym_comment, - STATE(2272), 1, + STATE(2260), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253814,7 +393127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253859,18 +393172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24295] = 7, - ACTIONS(247), 1, + [25710] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2035), 1, + STATE(2052), 1, sym_comment, - STATE(2287), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(2512), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253884,7 +393191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2514), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253899,7 +393206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253929,18 +393239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24372] = 7, - ACTIONS(247), 1, + [25781] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2036), 1, + STATE(2053), 1, sym_comment, - STATE(2191), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253954,7 +393258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(2036), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253969,7 +393273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253999,18 +393306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24449] = 7, - ACTIONS(247), 1, + [25852] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2037), 1, + STATE(2054), 1, sym_comment, - STATE(2278), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(2038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254024,7 +393325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2040), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254039,7 +393340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254069,19 +393373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24526] = 4, - ACTIONS(247), 1, + [25923] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2038), 1, + STATE(2055), 1, sym_comment, - ACTIONS(1010), 15, + ACTIONS(2042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254090,8 +393392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, - ts_builtin_sym_end, + ACTIONS(2044), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254103,8 +393404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254126,8 +393432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254136,18 +393440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24597] = 7, - ACTIONS(247), 1, + [25994] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2039), 1, + STATE(2056), 1, sym_comment, - STATE(2286), 1, + STATE(2262), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254161,7 +393465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254206,18 +393510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24674] = 7, - ACTIONS(247), 1, + [26071] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2040), 1, + STATE(2057), 1, sym_comment, - STATE(2187), 1, + STATE(2265), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254231,7 +393535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254276,18 +393580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24751] = 7, - ACTIONS(247), 1, + [26148] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2041), 1, + STATE(2058), 1, sym_comment, - STATE(2279), 1, + STATE(2277), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254301,7 +393605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254346,20 +393650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24828] = 8, - ACTIONS(247), 1, + [26225] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2042), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2059), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2472), 1, - sym_cell_path, - ACTIONS(2034), 13, + STATE(2307), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254373,8 +393675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2036), 43, - ts_builtin_sym_end, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254386,8 +393687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254417,20 +393720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24907] = 8, - ACTIONS(247), 1, + [26302] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2043), 1, - sym_comment, STATE(2060), 1, + sym_comment, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2473), 1, + STATE(2492), 1, sym_cell_path, - ACTIONS(2038), 13, + ACTIONS(2054), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254444,7 +393747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2040), 43, + ACTIONS(2056), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254488,20 +393791,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24986] = 8, - ACTIONS(247), 1, + [26381] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2044), 1, + STATE(2061), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2474), 1, + STATE(2493), 1, sym_cell_path, - ACTIONS(1931), 13, + ACTIONS(2058), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254515,7 +393818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1933), 43, + ACTIONS(2060), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254559,20 +393862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25065] = 8, - ACTIONS(247), 1, + [26460] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2045), 1, + STATE(2062), 1, sym_comment, - STATE(2060), 1, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2475), 1, + STATE(2494), 1, sym_cell_path, - ACTIONS(1899), 13, + ACTIONS(2062), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254586,7 +393889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 43, + ACTIONS(2064), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254630,12 +393933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25144] = 4, - ACTIONS(247), 1, + [26539] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2046), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2063), 1, sym_comment, - ACTIONS(2468), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2496), 1, + sym_cell_path, + ACTIONS(2066), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254649,7 +393960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 47, + ACTIONS(2068), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254661,13 +393973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254697,25 +394004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25215] = 8, - ACTIONS(247), 1, + [26618] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2047), 1, + STATE(2064), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2539), 1, - sym_cell_path, - ACTIONS(1867), 13, + ACTIONS(1518), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254724,7 +394025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1869), 43, + ACTIONS(1520), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254760,6 +394061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254768,12 +394071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25294] = 4, - ACTIONS(247), 1, + [26689] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(2065), 1, sym_comment, - ACTIONS(2390), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254787,7 +394090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2392), 47, + ACTIONS(2533), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254835,12 +394138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25365] = 4, - ACTIONS(247), 1, + [26760] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2049), 1, + STATE(2066), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(2054), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254854,7 +394157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2484), 47, + ACTIONS(2056), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254902,17 +394205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25436] = 4, - ACTIONS(247), 1, + [26831] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2050), 1, + STATE(2067), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(1522), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254921,7 +394226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 47, + ACTIONS(1524), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254933,13 +394239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254961,6 +394262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254969,18 +394272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25507] = 7, - ACTIONS(247), 1, + [26902] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2051), 1, + STATE(2068), 1, sym_comment, - STATE(2190), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(2535), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254994,7 +394291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2537), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255009,7 +394306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255039,20 +394339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25584] = 8, - ACTIONS(247), 1, + [26973] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2052), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2069), 1, sym_comment, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2476), 1, - sym_cell_path, - ACTIONS(1907), 13, + STATE(2310), 1, + aux_sym_shebang_repeat1, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255066,8 +394364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1909), 43, - ts_builtin_sym_end, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255079,8 +394376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255110,12 +394409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25663] = 4, - ACTIONS(247), 1, + [27050] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(2070), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2539), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255129,7 +394428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2474), 47, + ACTIONS(2541), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255177,18 +394476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25734] = 7, - ACTIONS(247), 1, + [27121] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2054), 1, + STATE(2071), 1, sym_comment, - STATE(2291), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(2058), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255202,7 +394495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2060), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255217,7 +394510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255247,18 +394543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25811] = 7, - ACTIONS(247), 1, + [27192] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2055), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2072), 1, sym_comment, - STATE(2295), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2499), 1, + sym_cell_path, + ACTIONS(2070), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255272,7 +394570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2072), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255284,10 +394583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255317,18 +394614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25888] = 7, - ACTIONS(247), 1, + [27271] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2056), 1, + STATE(2073), 1, sym_comment, - STATE(2255), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(2066), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255342,7 +394633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(2068), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255357,7 +394648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255387,12 +394681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25965] = 4, - ACTIONS(247), 1, + [27342] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2057), 1, + STATE(2074), 1, sym_comment, - ACTIONS(1942), 13, + ACTIONS(2547), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255406,7 +394700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1944), 47, + ACTIONS(2549), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255454,18 +394748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26036] = 7, - ACTIONS(247), 1, + [27413] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2058), 1, + STATE(2075), 1, sym_comment, - STATE(2302), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(2551), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255479,7 +394767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2553), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255494,7 +394782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255524,18 +394815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26113] = 7, - ACTIONS(247), 1, + [27484] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2059), 1, + STATE(2076), 1, sym_comment, - STATE(2316), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(2070), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255549,7 +394834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2072), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255564,7 +394849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255594,18 +394882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26190] = 7, - ACTIONS(247), 1, + [27555] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2020), 1, - aux_sym_cell_path_repeat1, - STATE(2060), 1, + STATE(2077), 1, sym_comment, - STATE(2251), 1, - sym_path, - ACTIONS(967), 13, + ACTIONS(2559), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255619,8 +394901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 44, - ts_builtin_sym_end, + ACTIONS(2561), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255632,9 +394913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255664,89 +394949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26267] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2061), 1, - sym_comment, - STATE(2251), 1, - sym_path, - STATE(2528), 1, - sym_cell_path, - ACTIONS(1847), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1851), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26346] = 7, - ACTIONS(247), 1, + [27626] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2062), 1, + STATE(2078), 1, sym_comment, - STATE(2317), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, + ACTIONS(2563), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255760,7 +394968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2565), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255775,7 +394983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255805,18 +395016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26423] = 7, - ACTIONS(247), 1, + [27697] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2063), 1, + STATE(2079), 1, sym_comment, - STATE(2177), 1, + STATE(2316), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255830,7 +395041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255875,18 +395086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26500] = 7, - ACTIONS(247), 1, + [27774] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2064), 1, + STATE(2080), 1, sym_comment, - STATE(2201), 1, + STATE(2198), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255900,7 +395111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255945,198 +395156,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26577] = 39, - ACTIONS(153), 1, + [27851] = 39, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2065), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7658), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [26718] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, anon_sym_0b, - ACTIONS(233), 1, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(3365), 1, + ACTIONS(3449), 1, aux_sym_record_entry_token1, - ACTIONS(3591), 1, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5216), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(2066), 1, + STATE(2081), 1, sym_comment, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3558), 1, + STATE(3572), 1, sym__val_number_decimal, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, + STATE(3674), 1, sym_expr_parenthesized, - STATE(3980), 1, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(7674), 1, + STATE(7555), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2130), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -256149,95 +395258,25 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26859] = 7, - ACTIONS(247), 1, + [27992] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2067), 1, - sym_comment, - STATE(2185), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26936] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1038), 1, + ACTIONS(1550), 1, anon_sym_DOT_DOT2, - ACTIONS(1042), 1, + ACTIONS(1554), 1, aux_sym_record_entry_token1, - STATE(2068), 1, + STATE(2082), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(1552), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5212), 9, + ACTIONS(5255), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256247,7 +395286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 19, + ACTIONS(5249), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256267,7 +395306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -256291,18 +395330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27017] = 7, - ACTIONS(247), 1, + [28073] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2069), 1, + STATE(2083), 1, sym_comment, - STATE(2221), 1, + STATE(2276), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256316,7 +395355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256361,18 +395400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27094] = 7, - ACTIONS(247), 1, + [28150] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2070), 1, + STATE(2084), 1, sym_comment, - STATE(2231), 1, + STATE(2282), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256386,7 +395425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256431,23 +395470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27171] = 7, - ACTIONS(247), 1, + [28227] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2071), 1, + STATE(2085), 1, sym_comment, - STATE(2194), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(1526), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256456,7 +395491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(1528), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256468,10 +395504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256493,6 +395527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256501,20 +395537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27248] = 8, - ACTIONS(247), 1, + [28298] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2060), 1, + STATE(1985), 1, aux_sym_cell_path_repeat1, - STATE(2072), 1, + STATE(2086), 1, sym_comment, - STATE(2251), 1, + STATE(2306), 1, sym_path, - STATE(2546), 1, - sym_cell_path, - ACTIONS(1863), 13, + ACTIONS(1479), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256528,7 +395562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1865), 43, + ACTIONS(1481), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -256543,75 +395577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27327] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2073), 1, - sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -256642,19 +395607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27404] = 4, - ACTIONS(247), 1, + [28375] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2074), 1, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2087), 1, sym_comment, - ACTIONS(1733), 15, - sym__newline, + STATE(2306), 1, + sym_path, + STATE(2484), 1, + sym_cell_path, + ACTIONS(2006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256663,7 +395634,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 45, + ACTIONS(2008), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256676,7 +395649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256698,9 +395670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256709,18 +395678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27475] = 7, - ACTIONS(247), 1, + [28454] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2075), 1, + STATE(2088), 1, sym_comment, - STATE(2224), 1, + STATE(2291), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256734,7 +395703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256779,85 +395748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27552] = 4, - ACTIONS(247), 1, + [28531] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2076), 1, - sym_comment, - ACTIONS(1887), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1889), 47, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27623] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2077), 1, + STATE(2089), 1, sym_comment, - STATE(2234), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256871,7 +395773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256916,18 +395818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27700] = 7, - ACTIONS(247), 1, + [28608] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2090), 1, sym_comment, - STATE(2260), 1, + STATE(2196), 1, aux_sym_shebang_repeat1, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256941,7 +395843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256986,20 +395888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27777] = 8, - ACTIONS(247), 1, + [28685] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2079), 1, + STATE(2091), 1, sym_comment, - STATE(2140), 1, - sym_cell_path, - STATE(2251), 1, - sym_path, - ACTIONS(1747), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257013,8 +395907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 43, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257026,8 +395919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257057,19 +395954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27856] = 4, - ACTIONS(247), 1, + [28755] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(2092), 1, sym_comment, - ACTIONS(1006), 15, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257078,8 +395973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, - ts_builtin_sym_end, + ACTIONS(5261), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257091,8 +395985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257114,8 +396012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257124,18 +396020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27927] = 7, - ACTIONS(247), 1, + [28825] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2081), 1, + STATE(2093), 1, sym_comment, - STATE(2243), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(1538), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257149,7 +396039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(1540), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257165,6 +396055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257194,18 +396086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28004] = 7, - ACTIONS(247), 1, + [28895] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2082), 1, + STATE(2094), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257219,7 +396105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257235,6 +396121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257264,12 +396152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28081] = 4, - ACTIONS(247), 1, + [28965] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2095), 1, sym_comment, - ACTIONS(2343), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257283,7 +396171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2345), 47, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257298,7 +396186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -257331,18 +396218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28152] = 7, - ACTIONS(247), 1, + [29035] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + STATE(2096), 1, sym_comment, - STATE(2303), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(2597), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257356,7 +396237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(2599), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257372,6 +396253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257401,18 +396284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28229] = 7, - ACTIONS(247), 1, + [29105] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2085), 1, + ACTIONS(4899), 1, + anon_sym_DOT_DOT2, + STATE(2097), 1, sym_comment, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5200), 13, + ACTIONS(4901), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257426,7 +396308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(1540), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257438,10 +396321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257471,18 +396352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28306] = 7, - ACTIONS(247), 1, + [29179] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2086), 1, + STATE(2098), 1, sym_comment, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(2601), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257496,7 +396371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(2603), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257512,6 +396387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257541,18 +396418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28383] = 7, - ACTIONS(247), 1, + [29249] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2087), 1, + STATE(2099), 1, sym_comment, - STATE(2178), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5223), 13, + ACTIONS(2605), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257566,7 +396437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(2607), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257582,6 +396453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257611,18 +396484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28460] = 7, - ACTIONS(247), 1, + [29319] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2088), 1, + STATE(2100), 1, sym_comment, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5204), 13, + ACTIONS(2476), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257636,7 +396503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(2478), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257652,6 +396519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257681,13 +396550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28537] = 4, - ACTIONS(247), 1, + [29389] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(2101), 1, sym_comment, - ACTIONS(2052), 15, - sym__newline, + ACTIONS(1556), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257702,7 +396570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2054), 45, + ACTIONS(1558), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257715,7 +396585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257739,7 +396608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257748,32 +396616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28608] = 7, - ACTIONS(247), 1, + [29459] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2090), 1, + STATE(2102), 1, sym_comment, - STATE(2273), 1, - aux_sym_shebang_repeat1, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5194), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(2409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257786,9 +396634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2407), 45, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257797,19 +396649,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257818,112 +396681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28685] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2091), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5774), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [28823] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [29529] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(2103), 1, sym_comment, - ACTIONS(2510), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257937,7 +396701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2512), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257984,12 +396748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28893] = 4, - ACTIONS(247), 1, + [29599] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2104), 1, sym_comment, - ACTIONS(990), 13, + ACTIONS(1496), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258003,7 +396767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 46, + ACTIONS(1498), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258050,12 +396814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28963] = 4, - ACTIONS(247), 1, + [29669] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(2105), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(2480), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258069,7 +396833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 46, + ACTIONS(2482), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258116,210 +396880,612 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29033] = 4, - ACTIONS(247), 1, + [29739] = 38, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, + anon_sym_DASH2, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2106), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5925), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [29877] = 38, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, + anon_sym_DASH2, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2107), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5927), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30015] = 38, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, + anon_sym_DASH2, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2108), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5928), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30153] = 38, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, + anon_sym_DASH2, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2109), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5929), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30291] = 38, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2095), 1, - sym_comment, - ACTIONS(2478), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2480), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3505), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29103] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2096), 1, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2110), 1, sym_comment, - ACTIONS(2052), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2054), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29173] = 4, - ACTIONS(247), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5872), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30429] = 38, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2097), 1, - sym_comment, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3505), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29243] = 4, - ACTIONS(247), 1, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2111), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(5959), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30567] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2112), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258333,7 +397499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258380,12 +397546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29313] = 4, - ACTIONS(247), 1, + [30637] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2099), 1, + STATE(2113), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(2609), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258399,7 +397565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2488), 46, + ACTIONS(2611), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258446,19 +397612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29383] = 5, - ACTIONS(247), 1, + [30707] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2100), 1, + ACTIONS(4899), 1, + anon_sym_DOT_DOT2, + STATE(2114), 1, sym_comment, - ACTIONS(978), 13, + ACTIONS(4901), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258467,7 +397637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, + ACTIONS(5249), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258480,31 +397650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258513,43 +397658,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29455] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_QMARK2, - STATE(2101), 1, - sym_comment, - ACTIONS(984), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(986), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258571,26 +397682,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29527] = 4, - ACTIONS(247), 1, + [30785] = 38, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2102), 1, + ACTIONS(3497), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, + anon_sym_DASH2, + ACTIONS(3505), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(3517), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3519), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3521), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3523), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3529), 1, + anon_sym_0b, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3539), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3541), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3545), 1, + sym_raw_string_begin, + ACTIONS(5190), 1, + anon_sym_LPAREN, + ACTIONS(5192), 1, + anon_sym_DOLLAR, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_null, + ACTIONS(5206), 1, + sym_val_date, + STATE(2115), 1, + sym_comment, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, + sym__inter_double_quotes, + STATE(3528), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3613), 1, + sym_val_variable, + STATE(3622), 1, + sym_val_range, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, + sym__expr_unary_minus, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(6028), 1, + sym__expression, + ACTIONS(3531), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3537), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5200), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5204), 2, + anon_sym_true, + anon_sym_false, + STATE(3588), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3904), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3525), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3530), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30923] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2116), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(2240), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258599,7 +397802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 46, + ACTIONS(2242), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258611,12 +397815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258638,6 +397838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258646,94 +397848,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29597] = 38, - ACTIONS(247), 1, + [30993] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2103), 1, + STATE(2117), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5791), 1, + STATE(5753), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -258746,94 +397948,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29735] = 38, - ACTIONS(247), 1, + [31131] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2104), 1, + STATE(2118), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5954), 1, + STATE(5768), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -258846,94 +398048,162 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29873] = 38, - ACTIONS(247), 1, + [31269] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(2119), 1, + sym_comment, + ACTIONS(2341), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2337), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31343] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2105), 1, + STATE(2120), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5989), 1, + STATE(5797), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -258946,94 +398216,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30011] = 38, - ACTIONS(247), 1, + [31481] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2106), 1, + STATE(2121), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5995), 1, + STATE(5896), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -259046,94 +398316,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30149] = 38, - ACTIONS(247), 1, + [31619] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2107), 1, + STATE(2122), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5798), 1, + STATE(5898), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -259146,16 +398416,26 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30287] = 6, - ACTIONS(3), 1, + [31757] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(2108), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2242), 13, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259168,12 +398448,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2238), 44, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31827] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2124), 1, + sym_comment, + ACTIONS(5216), 13, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5214), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259182,22 +398527,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31897] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2125), 1, + sym_comment, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259206,6 +398567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5214), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259214,16 +398614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30361] = 6, + [31967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(2329), 1, anon_sym_LPAREN2, - ACTIONS(2228), 1, + ACTIONS(2331), 1, aux_sym_unquoted_token4, - STATE(2109), 1, + STATE(2126), 1, sym_comment, - ACTIONS(1028), 13, + ACTIONS(1540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259237,7 +398637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1026), 44, + ACTIONS(1538), 44, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -259282,112 +398682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30435] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2110), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7505), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [30573] = 4, - ACTIONS(247), 1, + [32041] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2111), 1, + STATE(2127), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259401,7 +398701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259448,12 +398748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30643] = 4, - ACTIONS(247), 1, + [32111] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(5265), 1, + anon_sym_QMARK2, + STATE(2128), 1, sym_comment, - ACTIONS(994), 13, + ACTIONS(1500), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259467,7 +398769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 46, + ACTIONS(1502), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259483,7 +398785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259514,12 +398815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30713] = 4, - ACTIONS(247), 1, + [32183] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(2129), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5269), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259533,7 +398834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5267), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259580,12 +398881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30783] = 4, - ACTIONS(247), 1, + [32253] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(1510), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259599,7 +398900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(1512), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259611,12 +398913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259638,6 +398938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259646,112 +398947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30853] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [32323] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3475), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3477), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3479), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3481), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5229), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2115), 1, - sym_comment, STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3599), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3716), 1, - sym_expr_parenthesized, - STATE(3717), 1, - sym_val_variable, - STATE(3986), 1, - sym__expr_binary_expression, - STATE(7718), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5231), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [30991] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2116), 1, sym_comment, - ACTIONS(1026), 13, + ACTIONS(1994), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259765,7 +398966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 46, + ACTIONS(1996), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259812,17 +399013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31061] = 4, - ACTIONS(247), 1, + [32393] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2132), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(1886), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259831,7 +399033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(1888), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259843,12 +399046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259870,6 +399069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259878,16 +399079,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31131] = 6, - ACTIONS(3), 1, + [32463] = 38, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2118), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3559), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3561), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3563), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3565), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5271), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(2133), 1, + sym_comment, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3587), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_range, + STATE(3717), 1, + sym_expr_parenthesized, + STATE(3718), 1, + sym_val_variable, + STATE(3982), 1, + sym__expr_binary_expression, + STATE(8055), 1, + sym__expression, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5273), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2145), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [32601] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2134), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(2492), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2494), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259900,12 +399211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2246), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259914,30 +399224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259946,16 +399245,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31205] = 6, - ACTIONS(3), 1, + [32671] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2119), 1, + STATE(2135), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2496), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2498), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259968,12 +399277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2254), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259982,30 +399290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260014,12 +399311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31279] = 4, - ACTIONS(247), 1, + [32741] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2120), 1, + STATE(2136), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(2593), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260033,7 +399330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2412), 46, + ACTIONS(2595), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260080,12 +399377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31349] = 4, - ACTIONS(247), 1, + [32811] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2121), 1, + ACTIONS(5275), 1, + anon_sym_QMARK2, + STATE(2137), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(1490), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260099,7 +399398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(1492), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260111,12 +399411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260138,6 +399435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260146,12 +399444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31419] = 4, - ACTIONS(247), 1, + [32883] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2122), 1, + STATE(2138), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260165,7 +399463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260212,117 +399510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31489] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [32953] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2123), 1, - sym_comment, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7527), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31627] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2124), 1, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + ACTIONS(5277), 1, + sym__newline, + STATE(2139), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5282), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260331,8 +399537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2416), 46, - sym__newline, + ACTIONS(5280), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260344,11 +399549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5284), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260370,20 +399581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31697] = 4, - ACTIONS(247), 1, + [33033] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2125), 1, + STATE(2140), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(1506), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260397,7 +399600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 46, + ACTIONS(1508), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260409,12 +399613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260436,6 +399638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260444,17 +399647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31767] = 6, - ACTIONS(247), 1, + [33103] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - STATE(2126), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260468,8 +399666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 43, - ts_builtin_sym_end, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260481,8 +399678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260512,27 +399713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31841] = 4, - ACTIONS(247), 1, + [33173] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2142), 1, sym_comment, - ACTIONS(998), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1000), 46, - ts_builtin_sym_end, + ACTIONS(2349), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260544,10 +399734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2345), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260556,20 +399749,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260578,12 +399781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31911] = 4, - ACTIONS(247), 1, + [33247] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2128), 1, + STATE(2143), 1, sym_comment, - ACTIONS(1863), 13, + ACTIONS(2337), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260597,7 +399800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1865), 46, + ACTIONS(2341), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260644,12 +399847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31981] = 4, - ACTIONS(247), 1, + [33317] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(2144), 1, sym_comment, - ACTIONS(2238), 13, + ACTIONS(2006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260663,7 +399866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 46, + ACTIONS(2008), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260710,18 +399913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32051] = 6, - ACTIONS(247), 1, + [33387] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2130), 1, + STATE(2145), 1, sym_comment, - ACTIONS(5208), 5, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5212), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260730,7 +399933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 23, + ACTIONS(5249), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260754,7 +399957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -260778,12 +399981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32125] = 4, - ACTIONS(247), 1, + [33461] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(2146), 1, sym_comment, - ACTIONS(5235), 13, + ACTIONS(5290), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260797,7 +400000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5233), 46, + ACTIONS(5288), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260844,12 +400047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32195] = 4, - ACTIONS(247), 1, + [33531] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2147), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260863,7 +400066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(2409), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260910,94 +400113,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32265] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, + [33601] = 38, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2148), 1, + sym_comment, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3572), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_range, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, + sym__expr_binary_expression, + STATE(7540), 1, + sym__expression, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2145), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33739] = 38, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2133), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, + STATE(1738), 1, sym__val_number, - STATE(3540), 1, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2149), 1, + sym_comment, + STATE(2164), 1, sym__inter_single_quotes, - STATE(3544), 1, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3572), 1, sym__val_number_decimal, STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(5804), 1, + STATE(7539), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261010,78 +400313,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32403] = 4, - ACTIONS(247), 1, + [33877] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(5208), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5210), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32473] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(1514), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261095,7 +400332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 46, + ACTIONS(1516), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261107,12 +400345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261134,6 +400370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261142,94 +400379,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32543] = 38, - ACTIONS(153), 1, + [33947] = 38, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(3591), 1, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5216), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2136), 1, + STATE(2151), 1, sym_comment, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3558), 1, + STATE(3572), 1, sym__val_number_decimal, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, + STATE(3674), 1, sym_expr_parenthesized, - STATE(3980), 1, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(7674), 1, + STATE(7555), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2130), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261242,78 +400479,112 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32681] = 4, - ACTIONS(247), 1, + [34085] = 38, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, + sym_val_date, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2137), 1, - sym_comment, - ACTIONS(2398), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2400), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(393), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32751] = 4, - ACTIONS(247), 1, + ACTIONS(439), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(3403), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3405), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3407), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3409), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3443), 1, + anon_sym_null, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + anon_sym_DOT_DOT, + STATE(1738), 1, + sym__val_number, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(2152), 1, + sym_comment, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(3572), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_range, + STATE(3674), 1, + sym_expr_parenthesized, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, + sym__expr_binary_expression, + STATE(7567), 1, + sym__expression, + ACTIONS(235), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(441), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5220), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2145), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(435), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2093), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34223] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2153), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261327,7 +400598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261374,12 +400645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32821] = 4, - ACTIONS(247), 1, + [34293] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2154), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261393,7 +400664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5241), 46, + ACTIONS(5214), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261440,18 +400711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32891] = 4, - ACTIONS(247), 1, + [34363] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2155), 1, sym_comment, - ACTIONS(1733), 14, + ACTIONS(5294), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261460,8 +400730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 45, - ts_builtin_sym_end, + ACTIONS(5292), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261473,8 +400742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261496,8 +400769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261506,94 +400777,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32961] = 38, - ACTIONS(247), 1, + [34433] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2141), 1, + STATE(2156), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5841), 1, + STATE(5905), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261606,94 +400877,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33099] = 38, - ACTIONS(247), 1, + [34571] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2142), 1, + STATE(2157), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5845), 1, + STATE(5909), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261706,94 +400977,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33237] = 38, - ACTIONS(247), 1, + [34709] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2143), 1, + STATE(2158), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5892), 1, + STATE(5936), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261806,94 +401077,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33375] = 38, - ACTIONS(247), 1, + [34847] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2144), 1, + STATE(2159), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5897), 1, + STATE(5937), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -261906,94 +401177,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33513] = 38, - ACTIONS(247), 1, + [34985] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2145), 1, + STATE(2160), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5899), 1, + STATE(5938), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262006,94 +401277,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33651] = 38, - ACTIONS(247), 1, + [35123] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2146), 1, + STATE(2161), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5900), 1, + STATE(5939), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262106,94 +401377,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33789] = 38, - ACTIONS(247), 1, + [35261] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2147), 1, + STATE(2162), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5902), 1, + STATE(5943), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262206,94 +401477,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33927] = 38, - ACTIONS(247), 1, + [35399] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2148), 1, + STATE(2163), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5903), 1, + STATE(5944), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262306,94 +401577,226 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34065] = 38, - ACTIONS(247), 1, + [35537] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2164), 1, + sym_comment, + ACTIONS(2468), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2470), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35607] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2165), 1, + sym_comment, + ACTIONS(2468), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2470), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35677] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2149), 1, + STATE(2166), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5944), 1, + STATE(5964), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262406,94 +401809,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34203] = 38, - ACTIONS(247), 1, + [35815] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2150), 1, + STATE(2167), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5945), 1, + STATE(5965), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262506,94 +401909,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34341] = 38, - ACTIONS(247), 1, + [35953] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2151), 1, + STATE(2168), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5946), 1, + STATE(5966), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262606,94 +402009,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34479] = 38, - ACTIONS(247), 1, + [36091] = 38, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3393), 1, + ACTIONS(3497), 1, anon_sym_LBRACK, - ACTIONS(3399), 1, + ACTIONS(3503), 1, anon_sym_DASH2, - ACTIONS(3401), 1, + ACTIONS(3505), 1, anon_sym_LBRACE, - ACTIONS(3405), 1, + ACTIONS(3509), 1, aux_sym_expr_unary_token1, - ACTIONS(3413), 1, + ACTIONS(3517), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, + ACTIONS(3519), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, + ACTIONS(3521), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, + ACTIONS(3523), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, + ACTIONS(3529), 1, anon_sym_0b, - ACTIONS(3431), 1, + ACTIONS(3535), 1, anon_sym_DQUOTE, - ACTIONS(3435), 1, + ACTIONS(3539), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, + ACTIONS(3541), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(5101), 1, + ACTIONS(5190), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5192), 1, anon_sym_DOLLAR, - ACTIONS(5109), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5113), 1, + ACTIONS(5202), 1, anon_sym_null, - ACTIONS(5117), 1, + ACTIONS(5206), 1, sym_val_date, - STATE(2152), 1, + STATE(2169), 1, sym_comment, - STATE(3518), 1, + STATE(3526), 1, + sym__inter_single_quotes, + STATE(3527), 1, sym__inter_double_quotes, - STATE(3521), 1, + STATE(3528), 1, sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3622), 1, + STATE(3613), 1, sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3908), 1, + STATE(3625), 1, + sym_expr_parenthesized, + STATE(3905), 1, sym__expr_unary_minus, - STATE(3984), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5947), 1, + STATE(5967), 1, sym__expression, - ACTIONS(3427), 2, + ACTIONS(3531), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3433), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5111), 2, + ACTIONS(5200), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(3562), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - STATE(3902), 3, + STATE(3904), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3421), 6, + ACTIONS(3525), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3510), 12, + STATE(3530), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262706,160 +402109,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34617] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(1044), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1046), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34687] = 38, - ACTIONS(153), 1, + [36229] = 38, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(3591), 1, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5216), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2154), 1, - sym_comment, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3558), 1, + STATE(2170), 1, + sym_comment, + STATE(3572), 1, sym__val_number_decimal, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, + STATE(3674), 1, sym_expr_parenthesized, - STATE(3980), 1, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(7575), 1, + STATE(7579), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2130), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -262872,160 +402209,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34825] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(2270), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2268), 45, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [34895] = 38, - ACTIONS(153), 1, + [36367] = 38, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(3591), 1, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5216), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2156), 1, - sym_comment, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3558), 1, + STATE(2171), 1, + sym_comment, + STATE(3572), 1, sym__val_number_decimal, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, + STATE(3674), 1, sym_expr_parenthesized, - STATE(3980), 1, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(7602), 1, + STATE(7613), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2130), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -263038,226 +402309,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35033] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2157), 1, - sym_comment, - ACTIONS(2430), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2432), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35103] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2158), 1, - sym_comment, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35173] = 38, - ACTIONS(153), 1, + [36505] = 38, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, ACTIONS(233), 1, + anon_sym_0b, + ACTIONS(237), 1, sym_val_date, - ACTIONS(239), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(431), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(435), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(3335), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3407), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, + ACTIONS(3409), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, + ACTIONS(3443), 1, anon_sym_null, - ACTIONS(3591), 1, + ACTIONS(3697), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(5216), 1, + ACTIONS(5230), 1, anon_sym_DOT_DOT, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(2159), 1, - sym_comment, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(3558), 1, + STATE(2172), 1, + sym_comment, + STATE(3572), 1, sym__val_number_decimal, - STATE(3626), 1, + STATE(3622), 1, sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, + STATE(3674), 1, sym_expr_parenthesized, - STATE(3980), 1, + STATE(3697), 1, + sym_val_variable, + STATE(3994), 1, sym__expr_binary_expression, - STATE(7610), 1, + STATE(7621), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(235), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3361), 2, + ACTIONS(3445), 2, anon_sym_true, anon_sym_false, - ACTIONS(5184), 2, + ACTIONS(5220), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1771), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - STATE(2130), 3, + STATE(2145), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(427), 6, + ACTIONS(435), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2116), 12, + STATE(2093), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -263270,26 +402409,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35311] = 4, - ACTIONS(247), 1, + [36643] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2173), 1, sym_comment, - ACTIONS(5247), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5245), 46, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263302,11 +402431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2353), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263315,19 +402445,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263336,12 +402477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35381] = 4, - ACTIONS(247), 1, + [36717] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2161), 1, + STATE(2174), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2635), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263355,7 +402496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(2637), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263402,12 +402543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35451] = 4, - ACTIONS(247), 1, + [36787] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2175), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263421,7 +402562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5253), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263468,12 +402609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35521] = 4, - ACTIONS(247), 1, + [36857] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2176), 1, sym_comment, - ACTIONS(1847), 13, + ACTIONS(5298), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263487,7 +402630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1851), 46, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263503,8 +402646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263534,12 +402675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35591] = 4, - ACTIONS(247), 1, + [36928] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2177), 1, sym_comment, - ACTIONS(1002), 13, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263553,8 +402696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1004), 46, - ts_builtin_sym_end, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263566,10 +402708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263591,553 +402733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35661] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2165), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5769), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [35799] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2166), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5771), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [35937] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2167), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5778), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36075] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2168), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5779), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36213] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_LBRACK, - ACTIONS(3399), 1, - anon_sym_DASH2, - ACTIONS(3401), 1, - anon_sym_LBRACE, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(3413), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3415), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3419), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3425), 1, - anon_sym_0b, - ACTIONS(3431), 1, - anon_sym_DQUOTE, - ACTIONS(3435), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3437), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_DOLLAR, - ACTIONS(5109), 1, - anon_sym_DOT_DOT, - ACTIONS(5113), 1, - anon_sym_null, - ACTIONS(5117), 1, - sym_val_date, - STATE(2169), 1, - sym_comment, - STATE(3518), 1, - sym__inter_double_quotes, - STATE(3521), 1, - sym__val_number, - STATE(3540), 1, - sym__inter_single_quotes, - STATE(3544), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_variable, - STATE(3624), 1, - sym_expr_parenthesized, - STATE(3626), 1, - sym_val_range, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(3984), 1, - sym__expr_binary_expression, - STATE(5780), 1, - sym__expression, - ACTIONS(3427), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5111), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3562), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3902), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3421), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3510), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36351] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - STATE(2170), 1, - sym_comment, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5212), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5206), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264146,36 +402741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [36429] = 4, - ACTIONS(247), 1, + [36999] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2178), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(5302), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264189,7 +402762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 46, + ACTIONS(5300), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264205,8 +402778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264236,12 +402807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36499] = 4, - ACTIONS(247), 1, + [37070] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2464), 13, + STATE(2305), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264255,7 +402828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 46, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264271,8 +402844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264302,25 +402873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36569] = 9, - ACTIONS(247), 1, + [37141] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - ACTIONS(5249), 1, - sym__newline, - STATE(2173), 1, + STATE(2180), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5254), 5, + STATE(2190), 1, + aux_sym_shebang_repeat1, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5258), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264329,7 +402894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 19, + ACTIONS(5232), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264341,17 +402907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5256), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264373,12 +402931,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36649] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37212] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2181), 1, sym_comment, - ACTIONS(5180), 13, + STATE(2312), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264392,7 +402960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 46, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264408,8 +402976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264439,114 +403005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36719] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [37283] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3335), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3337), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3341), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(5216), 1, - anon_sym_DOT_DOT, - STATE(1729), 1, - sym__val_number, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(2175), 1, - sym_comment, - STATE(3558), 1, - sym__val_number_decimal, - STATE(3626), 1, - sym_val_range, - STATE(3657), 1, - sym_val_variable, - STATE(3698), 1, - sym_expr_parenthesized, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(7658), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2130), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2116), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36857] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2176), 1, - sym_comment, - STATE(2238), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(2182), 1, + sym_comment, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264560,7 +403026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264605,14 +403071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36928] = 5, - ACTIONS(247), 1, + [37354] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2177), 1, + STATE(2183), 1, sym_comment, - ACTIONS(5262), 13, + STATE(2314), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264626,7 +403092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264671,14 +403137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36999] = 5, - ACTIONS(247), 1, + [37425] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2178), 1, + STATE(2184), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264692,7 +403158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264737,12 +403203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37070] = 4, - ACTIONS(247), 1, + [37496] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2176), 1, + aux_sym_shebang_repeat1, + STATE(2185), 1, sym_comment, - ACTIONS(1014), 13, + ACTIONS(5314), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264756,8 +403224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, + ACTIONS(5312), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264769,6 +403236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -264793,7 +403261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264802,14 +403269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37139] = 5, - ACTIONS(247), 1, + [37567] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(2180), 1, + STATE(2186), 1, sym_comment, - ACTIONS(1707), 13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264823,7 +403290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264838,7 +403305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264868,16 +403335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37210] = 6, - ACTIONS(247), 1, + [37638] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2181), 1, + STATE(2187), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + STATE(2210), 1, + aux_sym_shebang_repeat1, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264891,8 +403356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264904,8 +403368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264935,85 +403401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37283] = 8, - ACTIONS(247), 1, + [37709] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5264), 1, - anon_sym_DOT, - STATE(2182), 1, - sym_comment, - STATE(2404), 1, - aux_sym_cell_path_repeat1, - STATE(2575), 1, - sym_path, - STATE(2650), 1, - sym_cell_path, - ACTIONS(1747), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1749), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37360] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2183), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2188), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265027,8 +403422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265040,8 +403434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265071,14 +403467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37433] = 5, - ACTIONS(247), 1, + [37780] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2189), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2237), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265092,7 +403488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265137,14 +403533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37504] = 5, - ACTIONS(247), 1, + [37851] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2185), 1, + STATE(2190), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265158,7 +403554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265203,14 +403599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37575] = 5, - ACTIONS(247), 1, + [37922] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2191), 1, sym_comment, - STATE(2270), 1, + STATE(2238), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265224,7 +403620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265269,14 +403665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37646] = 5, - ACTIONS(247), 1, + [37993] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2187), 1, + STATE(2192), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265290,7 +403686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265335,14 +403731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37717] = 5, - ACTIONS(247), 1, + [38064] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2193), 1, sym_comment, - STATE(2249), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265356,7 +403752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265401,14 +403797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37788] = 5, - ACTIONS(247), 1, + [38135] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2194), 1, sym_comment, - STATE(2271), 1, + STATE(2239), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265422,7 +403818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265467,14 +403863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37859] = 5, - ACTIONS(247), 1, + [38206] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2190), 1, + STATE(2195), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265488,7 +403884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265533,14 +403929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37930] = 5, - ACTIONS(247), 1, + [38277] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2191), 1, + STATE(2196), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265554,7 +403950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265599,14 +403995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38001] = 5, - ACTIONS(247), 1, + [38348] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2192), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2240), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265620,7 +404016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265665,14 +404061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38072] = 5, - ACTIONS(247), 1, + [38419] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2193), 1, + STATE(2198), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265686,7 +404082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265731,14 +404127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38143] = 5, - ACTIONS(247), 1, + [38490] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2194), 1, + STATE(2199), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265752,7 +404148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265797,14 +404193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38214] = 5, - ACTIONS(247), 1, + [38561] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2195), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2200), 1, sym_comment, - ACTIONS(5268), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265818,7 +404216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265830,10 +404229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265863,14 +404260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38285] = 5, - ACTIONS(247), 1, + [38634] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2201), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265884,7 +404281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265929,14 +404326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38356] = 5, - ACTIONS(247), 1, + [38705] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2197), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2320), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265950,7 +404347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265995,14 +404392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38427] = 5, - ACTIONS(247), 1, + [38776] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2198), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2203), 1, sym_comment, - STATE(2287), 1, - aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266016,7 +404415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(4936), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266028,10 +404428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266061,14 +404459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38498] = 5, - ACTIONS(247), 1, + [38849] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2199), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2204), 1, sym_comment, - STATE(2214), 1, - aux_sym_shebang_repeat1, - ACTIONS(5204), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4942), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266082,7 +404482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(4940), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266094,10 +404495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266127,14 +404526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38569] = 5, - ACTIONS(247), 1, + [38922] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2205), 1, sym_comment, - STATE(2272), 1, + STATE(2223), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266148,7 +404547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266193,14 +404592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38640] = 5, - ACTIONS(247), 1, + [38993] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2201), 1, + STATE(2206), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266214,7 +404613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266259,14 +404658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38711] = 5, - ACTIONS(247), 1, + [39064] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2206), 1, aux_sym_shebang_repeat1, - STATE(2202), 1, + STATE(2207), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266280,7 +404679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266325,14 +404724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38782] = 5, - ACTIONS(247), 1, + [39135] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2208), 1, sym_comment, - STATE(2273), 1, + STATE(2224), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266346,7 +404745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266391,14 +404790,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38853] = 5, - ACTIONS(247), 1, + [39206] = 19, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2204), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2209), 1, sym_comment, - STATE(2278), 1, + STATE(2445), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6661), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [39305] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(2210), 1, + sym_comment, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266412,7 +404891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266457,14 +404936,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38924] = 5, - ACTIONS(247), 1, + [39376] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2205), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2657), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + anon_sym_LPAREN2, + ACTIONS(5320), 1, + anon_sym_DOT, + ACTIONS(5324), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token5, + STATE(2211), 1, sym_comment, - ACTIONS(5272), 13, + STATE(2744), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5322), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2861), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [39463] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2212), 1, + sym_comment, + STATE(2225), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266478,7 +405031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266523,14 +405076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38995] = 5, - ACTIONS(247), 1, + [39534] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2191), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2206), 1, + STATE(2213), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266544,7 +405097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266589,14 +405142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39066] = 5, - ACTIONS(247), 1, + [39605] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - STATE(2207), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266610,7 +405163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266655,14 +405208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39137] = 5, - ACTIONS(247), 1, + [39676] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2208), 1, + STATE(2215), 1, sym_comment, - ACTIONS(5276), 13, + STATE(2222), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266676,7 +405229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266721,14 +405274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39208] = 5, - ACTIONS(247), 1, + [39747] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2216), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1518), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266742,7 +405293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(1520), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266754,7 +405306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -266779,6 +405330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266787,14 +405339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39279] = 5, - ACTIONS(247), 1, + [39816] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(2217), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1522), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266808,7 +405358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(1524), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266820,7 +405371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -266845,6 +405395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266853,14 +405404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39350] = 5, - ACTIONS(247), 1, + [39885] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2211), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2218), 1, sym_comment, - STATE(2286), 1, - aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4949), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266874,57 +405427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [39421] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2212), 1, - sym_comment, - ACTIONS(2270), 13, + ACTIONS(4947), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266937,12 +405440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2268), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266951,30 +405450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266983,15 +405471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [39490] = 5, - ACTIONS(247), 1, + [39958] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2213), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2219), 1, sym_comment, - ACTIONS(5262), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4953), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267005,7 +405494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(4951), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267017,10 +405507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267050,14 +405538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39561] = 5, - ACTIONS(247), 1, + [40031] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(2220), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2235), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267071,7 +405559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267116,14 +405604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39632] = 5, - ACTIONS(247), 1, + [40102] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2215), 1, + STATE(2221), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2226), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267137,7 +405625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267182,12 +405670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39703] = 4, - ACTIONS(247), 1, + [40173] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2216), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2222), 1, sym_comment, - ACTIONS(5054), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267201,8 +405691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 45, - ts_builtin_sym_end, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267214,6 +405703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -267229,7 +405719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267247,14 +405736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39772] = 5, - ACTIONS(247), 1, + [40244] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2187), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2217), 1, + STATE(2223), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267268,7 +405757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267313,14 +405802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39843] = 5, - ACTIONS(247), 1, + [40315] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2218), 1, + STATE(2224), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267334,7 +405823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267379,157 +405868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39914] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5264), 1, - anon_sym_DOT, - STATE(2219), 1, - sym_comment, - STATE(2404), 1, - aux_sym_cell_path_repeat1, - STATE(2575), 1, - sym_path, - STATE(2658), 1, - sym_cell_path, - ACTIONS(1733), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1737), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [39991] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2540), 1, - anon_sym_DOLLAR, - ACTIONS(5278), 1, - anon_sym_LPAREN2, - ACTIONS(5280), 1, - anon_sym_DOT, - ACTIONS(5284), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5286), 1, - aux_sym__immediate_decimal_token5, - STATE(2220), 1, - sym_comment, - STATE(2687), 1, - sym__immediate_decimal, - ACTIONS(1557), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5282), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2848), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [40078] = 5, - ACTIONS(247), 1, + [40386] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2221), 1, + STATE(2225), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267543,7 +405889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267588,14 +405934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40149] = 5, - ACTIONS(247), 1, + [40457] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2222), 1, - sym_comment, - STATE(2242), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(2226), 1, + sym_comment, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267609,7 +405955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267654,14 +406000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40220] = 5, - ACTIONS(247), 1, + [40528] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2223), 1, + STATE(2227), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267675,7 +406021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267720,14 +406066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40291] = 5, - ACTIONS(247), 1, + [40599] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2224), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267741,7 +406087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267786,81 +406132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40362] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(2225), 1, - sym_comment, - ACTIONS(2242), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2238), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40435] = 5, - ACTIONS(247), 1, + [40670] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2226), 1, - sym_comment, - STATE(2248), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + STATE(2229), 1, + sym_comment, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267874,7 +406153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267919,17 +406198,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40506] = 6, - ACTIONS(3), 1, + [40741] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(2227), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2230), 1, sym_comment, - ACTIONS(1028), 12, - ts_builtin_sym_end, + ACTIONS(5334), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267941,11 +406231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1026), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267954,30 +406243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267986,14 +406264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40579] = 5, - ACTIONS(247), 1, + [40812] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2228), 1, - sym_comment, - STATE(2279), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + STATE(2231), 1, + sym_comment, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268007,7 +406285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268052,52 +406330,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40650] = 19, - ACTIONS(247), 1, + [40883] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2229), 1, + ACTIONS(5336), 1, + anon_sym_DOT, + STATE(2232), 1, sym_comment, - STATE(2436), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6745), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + STATE(2350), 1, + aux_sym_cell_path_repeat1, + STATE(2554), 1, + sym_path, + STATE(2664), 1, + sym_cell_path, + ACTIONS(1880), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(1884), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -268132,81 +406386,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [40749] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2230), 1, - sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40822] = 5, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [40960] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2231), 1, + STATE(2233), 1, sym_comment, - ACTIONS(5262), 13, + STATE(2260), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268220,7 +406420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268265,14 +406465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40893] = 5, - ACTIONS(247), 1, + [41031] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268286,7 +406486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268331,14 +406531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40964] = 5, - ACTIONS(247), 1, + [41102] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2235), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268352,7 +406552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268397,14 +406597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41035] = 5, - ACTIONS(247), 1, + [41173] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2227), 1, aux_sym_shebang_repeat1, - STATE(2234), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268418,7 +406618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268463,14 +406663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41106] = 5, - ACTIONS(247), 1, + [41244] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2237), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268484,7 +406684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268529,14 +406729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41177] = 5, - ACTIONS(247), 1, + [41315] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2236), 1, + STATE(2238), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268550,7 +406750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268595,14 +406795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41248] = 5, - ACTIONS(247), 1, + [41386] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2237), 1, + STATE(2239), 1, sym_comment, - ACTIONS(5296), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268616,7 +406816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268661,14 +406861,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41319] = 5, - ACTIONS(247), 1, + [41457] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268682,7 +406882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5332), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268727,14 +406927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41390] = 5, - ACTIONS(247), 1, + [41528] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2241), 1, sym_comment, - STATE(2282), 1, + STATE(2262), 1, aux_sym_shebang_repeat1, - ACTIONS(5300), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268748,7 +406948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268793,14 +406993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41461] = 5, - ACTIONS(247), 1, + [41599] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2240), 1, + STATE(2242), 1, sym_comment, - ACTIONS(5304), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268814,7 +407014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268859,14 +407059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41532] = 5, - ACTIONS(247), 1, + [41670] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2241), 1, - sym_comment, - STATE(2291), 1, + STATE(2242), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + STATE(2243), 1, + sym_comment, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268880,7 +407080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268925,14 +407125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41603] = 5, - ACTIONS(247), 1, + [41741] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2242), 1, + STATE(2244), 1, sym_comment, - ACTIONS(5272), 13, + STATE(2265), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268946,7 +407146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268991,14 +407191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41674] = 5, - ACTIONS(247), 1, + [41812] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2243), 1, + STATE(2245), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269012,7 +407212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269057,14 +407257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41745] = 5, - ACTIONS(247), 1, + [41883] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2246), 1, sym_comment, - ACTIONS(5308), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269078,7 +407278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269123,14 +407323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41816] = 5, - ACTIONS(247), 1, + [41954] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2245), 1, + STATE(2247), 1, sym_comment, - STATE(2255), 1, + STATE(2277), 1, aux_sym_shebang_repeat1, - ACTIONS(5200), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269144,7 +407344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269189,94 +407389,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41887] = 19, - ACTIONS(247), 1, + [42025] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5316), 1, - anon_sym_RBRACK, - STATE(2246), 1, - sym_comment, - STATE(2374), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2558), 1, - aux_sym_command_list_repeat1, - STATE(3820), 1, - sym__val_number_decimal, - STATE(6876), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [41986] = 5, - ACTIONS(247), 1, + STATE(2248), 1, + sym_comment, + ACTIONS(5330), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5328), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42096] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2247), 1, + STATE(2249), 1, sym_comment, - STATE(2295), 1, + STATE(2307), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269290,7 +407476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269335,14 +407521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42057] = 5, - ACTIONS(247), 1, + [42167] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2234), 1, aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2250), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269356,7 +407542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269401,14 +407587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42128] = 5, - ACTIONS(247), 1, + [42238] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2199), 1, aux_sym_shebang_repeat1, - STATE(2249), 1, + STATE(2251), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269422,7 +407608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269467,16 +407653,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42199] = 6, - ACTIONS(247), 1, + [42309] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, + STATE(2252), 1, + sym_comment, + ACTIONS(2409), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LPAREN2, - STATE(2250), 1, + ACTIONS(2407), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + [42378] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2253), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4922), 13, + STATE(2295), 1, + aux_sym_shebang_repeat1, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269490,8 +407739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4920), 43, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269503,8 +407751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269534,12 +407784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42272] = 4, - ACTIONS(247), 1, + [42449] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(2254), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269553,8 +407805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, - ts_builtin_sym_end, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269566,6 +407817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -269590,7 +407842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269599,14 +407850,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42341] = 5, - ACTIONS(247), 1, + [42520] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2252), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269620,7 +407871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269665,14 +407916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42412] = 5, - ACTIONS(247), 1, + [42591] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2253), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + STATE(2256), 1, sym_comment, - STATE(2302), 1, - aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + ACTIONS(1788), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269686,7 +407937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(1800), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269701,7 +407952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269731,16 +407982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42483] = 6, - ACTIONS(247), 1, + [42662] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2254), 1, + STATE(2246), 1, + aux_sym_shebang_repeat1, + STATE(2257), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4928), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269754,8 +408003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4926), 43, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269767,8 +408015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269798,14 +408048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42556] = 5, - ACTIONS(247), 1, + [42733] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5272), 13, + STATE(2310), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269819,7 +408069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269864,16 +408114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42627] = 6, - ACTIONS(247), 1, + [42804] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2256), 1, + STATE(2245), 1, + aux_sym_shebang_repeat1, + STATE(2259), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269887,8 +408135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269900,8 +408147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269931,16 +408180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42700] = 6, - ACTIONS(247), 1, + [42875] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2257), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2260), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269954,8 +408201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269967,8 +408213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269998,14 +408246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42773] = 5, - ACTIONS(247), 1, + [42946] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2258), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270019,7 +408267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270064,14 +408312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42844] = 5, - ACTIONS(247), 1, + [43017] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2259), 1, - sym_comment, - STATE(2316), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5194), 13, + STATE(2262), 1, + sym_comment, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270085,7 +408333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270130,28 +408378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42915] = 5, - ACTIONS(247), 1, + [43088] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2260), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(2263), 1, sym_comment, - ACTIONS(5272), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(2341), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270163,10 +408400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2337), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270175,40 +408413,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42986] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2261), 1, - sym_comment, - ACTIONS(5262), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270217,43 +408437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270262,28 +408445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43057] = 5, - ACTIONS(247), 1, + [43161] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(2264), 1, sym_comment, - STATE(2317), 1, - aux_sym_shebang_repeat1, - ACTIONS(5194), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(1540), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270295,10 +408467,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1538), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270307,19 +408480,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270328,14 +408512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43128] = 5, - ACTIONS(247), 1, + [43234] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2263), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270349,7 +408533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270394,83 +408578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43199] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5264), 1, - anon_sym_DOT, - STATE(2264), 1, - sym_comment, - STATE(2404), 1, - aux_sym_cell_path_repeat1, - STATE(2575), 1, - sym_path, - STATE(2605), 1, - sym_cell_path, - ACTIONS(961), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(963), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43276] = 5, - ACTIONS(247), 1, + [43305] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270484,7 +408597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5044), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270496,7 +408610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -270512,6 +408625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270529,14 +408643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43347] = 5, - ACTIONS(247), 1, + [43374] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2193), 1, - aux_sym_shebang_repeat1, - STATE(2266), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2267), 1, sym_comment, - ACTIONS(5204), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270550,7 +408666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270562,10 +408679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270595,96 +408710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43418] = 19, - ACTIONS(247), 1, + [43447] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2267), 1, - sym_comment, - STATE(2436), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6745), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [43517] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2268), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270698,8 +408731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270711,8 +408743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270742,14 +408776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43590] = 5, - ACTIONS(247), 1, + [43518] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(2178), 1, aux_sym_shebang_repeat1, STATE(2269), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270763,7 +408797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270808,14 +408842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43661] = 5, - ACTIONS(247), 1, + [43589] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2270), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5344), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270829,7 +408863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5342), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270874,14 +408908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43732] = 5, - ACTIONS(247), 1, + [43660] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(2271), 1, sym_comment, - ACTIONS(5292), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270895,7 +408931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270907,10 +408944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270940,14 +408975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43803] = 5, - ACTIONS(247), 1, + [43733] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2255), 1, aux_sym_shebang_repeat1, STATE(2272), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270961,7 +408996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271006,14 +409041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43874] = 5, - ACTIONS(247), 1, + [43804] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(2273), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271027,7 +409060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5032), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271039,7 +409073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -271055,6 +409088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271072,14 +409106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43945] = 5, - ACTIONS(247), 1, + [43873] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2221), 1, - aux_sym_shebang_repeat1, STATE(2274), 1, sym_comment, - ACTIONS(5223), 13, + STATE(2316), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271093,7 +409127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271138,14 +409172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44016] = 5, - ACTIONS(247), 1, + [43944] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2275), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271159,7 +409193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271204,14 +409238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44087] = 5, - ACTIONS(247), 1, + [44015] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2231), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2276), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271225,7 +409259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271270,16 +409304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44158] = 6, - ACTIONS(247), 1, + [44086] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2277), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271293,8 +409325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271306,8 +409337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271337,14 +409370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44231] = 5, - ACTIONS(247), 1, + [44157] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(2278), 1, sym_comment, - ACTIONS(5272), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271358,7 +409393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271370,10 +409406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271403,14 +409437,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44302] = 5, - ACTIONS(247), 1, + [44230] = 19, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5350), 1, + sym__newline, + ACTIONS(5352), 1, + anon_sym_RBRACK, STATE(2279), 1, sym_comment, - ACTIONS(5292), 13, + STATE(2324), 1, + aux_sym_shebang_repeat1, + STATE(2584), 1, + aux_sym_command_list_repeat1, + STATE(3804), 1, + sym__val_number_decimal, + STATE(7243), 1, + sym__command_name, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5348), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [44329] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2280), 1, + sym_comment, + STATE(2445), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6661), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [44428] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2281), 1, + sym_comment, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271424,7 +409620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271436,10 +409633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271469,14 +409664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44373] = 5, - ACTIONS(247), 1, + [44501] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2280), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5194), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271490,7 +409685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271535,14 +409730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44444] = 5, - ACTIONS(247), 1, + [44572] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2198), 1, aux_sym_shebang_repeat1, - STATE(2281), 1, + STATE(2283), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271556,7 +409751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271601,14 +409796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44515] = 5, - ACTIONS(247), 1, + [44643] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2248), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2284), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271622,7 +409817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271667,16 +409862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44586] = 6, - ACTIONS(247), 1, + [44714] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2283), 1, + STATE(2285), 1, sym_comment, - STATE(7470), 1, + STATE(7578), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271690,7 +409885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271734,14 +409929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44659] = 5, - ACTIONS(247), 1, + [44787] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2268), 1, aux_sym_shebang_repeat1, - STATE(2284), 1, + STATE(2286), 1, sym_comment, - ACTIONS(5194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271755,7 +409950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271800,81 +409995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44730] = 6, - ACTIONS(3), 1, + [44858] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2285), 1, - sym_comment, - ACTIONS(2250), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2246), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44803] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5272), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271888,7 +410018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271900,10 +410031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271933,14 +410062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44874] = 5, - ACTIONS(247), 1, + [44931] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2287), 1, + STATE(2288), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5356), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271954,7 +410083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5354), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271999,81 +410128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44945] = 6, - ACTIONS(3), 1, + [45002] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2288), 1, - sym_comment, - ACTIONS(2256), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2254), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45018] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2213), 1, - aux_sym_shebang_repeat1, STATE(2289), 1, sym_comment, - ACTIONS(5223), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272087,7 +410151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272099,10 +410164,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272132,16 +410195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45089] = 6, - ACTIONS(247), 1, + [45075] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + STATE(2184), 1, + aux_sym_shebang_repeat1, STATE(2290), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272155,8 +410216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272168,8 +410228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272199,14 +410261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45162] = 5, - ACTIONS(247), 1, + [45146] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2291), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272220,7 +410282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272265,14 +410327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45233] = 5, - ACTIONS(247), 1, + [45217] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2218), 1, + STATE(2229), 1, aux_sym_shebang_repeat1, STATE(2292), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272286,7 +410348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272331,14 +410393,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45304] = 5, - ACTIONS(247), 1, + [45288] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2224), 1, - aux_sym_shebang_repeat1, + ACTIONS(5336), 1, + anon_sym_DOT, STATE(2293), 1, sym_comment, - ACTIONS(5223), 13, + STATE(2350), 1, + aux_sym_cell_path_repeat1, + STATE(2554), 1, + sym_path, + STATE(2619), 1, + sym_cell_path, + ACTIONS(1473), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1475), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45365] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2275), 1, + aux_sym_shebang_repeat1, + STATE(2294), 1, + sym_comment, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272352,7 +410483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272397,14 +410528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45375] = 5, - ACTIONS(247), 1, + [45436] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2294), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(5310), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272418,7 +410549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5308), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272463,14 +410594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45446] = 5, - ACTIONS(247), 1, + [45507] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2288), 1, aux_sym_shebang_repeat1, - STATE(2295), 1, + STATE(2296), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5360), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272484,7 +410615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5358), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272529,14 +410660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45517] = 5, - ACTIONS(247), 1, + [45578] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2234), 1, + STATE(2196), 1, aux_sym_shebang_repeat1, - STATE(2296), 1, + STATE(2297), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272550,7 +410681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272595,94 +410726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45588] = 19, - ACTIONS(247), 1, + [45649] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5322), 1, - anon_sym_RBRACK, - STATE(2297), 1, - sym_comment, - STATE(2361), 1, - aux_sym_shebang_repeat1, - STATE(2593), 1, - aux_sym_command_list_repeat1, - STATE(3820), 1, - sym__val_number_decimal, - STATE(6908), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [45687] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2260), 1, - aux_sym_shebang_repeat1, STATE(2298), 1, sym_comment, - ACTIONS(5200), 13, + STATE(2301), 1, + aux_sym_shebang_repeat1, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272696,7 +410747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272741,12 +410792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45758] = 4, - ACTIONS(247), 1, + [45720] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(2299), 1, sym_comment, - ACTIONS(5064), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272760,7 +410815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5062), 45, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272775,7 +410830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272788,7 +410842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -272806,14 +410859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45827] = 5, - ACTIONS(247), 1, + [45793] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2240), 1, + STATE(2188), 1, aux_sym_shebang_repeat1, STATE(2300), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272827,7 +410880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5232), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272872,14 +410925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45898] = 5, - ACTIONS(247), 1, + [45864] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2301), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272893,7 +410946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272938,14 +410991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45969] = 5, - ACTIONS(247), 1, + [45935] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2270), 1, aux_sym_shebang_repeat1, STATE(2302), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5364), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272959,7 +411012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5362), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273004,14 +411057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46040] = 5, - ACTIONS(247), 1, + [46006] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2276), 1, aux_sym_shebang_repeat1, STATE(2303), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273025,7 +411078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273070,14 +411123,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46111] = 5, - ACTIONS(247), 1, + [46077] = 19, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2243), 1, - aux_sym_shebang_repeat1, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5350), 1, + sym__newline, + ACTIONS(5366), 1, + anon_sym_RBRACK, STATE(2304), 1, sym_comment, - ACTIONS(5223), 13, + STATE(2385), 1, + aux_sym_shebang_repeat1, + STATE(2593), 1, + aux_sym_command_list_repeat1, + STATE(3804), 1, + sym__val_number_decimal, + STATE(6887), 1, + sym__command_name, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5348), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [46176] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2305), 1, + sym_comment, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273091,7 +411224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273136,16 +411269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46182] = 6, - ACTIONS(247), 1, + [46247] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2305), 1, + STATE(2306), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(1526), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273159,7 +411288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(1528), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273174,6 +411303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273195,6 +411325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273203,16 +411334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46255] = 6, - ACTIONS(247), 1, + [46316] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2306), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2307), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273226,8 +411355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, - ts_builtin_sym_end, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273239,8 +411367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273270,14 +411400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46328] = 5, - ACTIONS(247), 1, + [46387] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2282), 1, aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273291,7 +411421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273336,16 +411466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46399] = 6, - ACTIONS(247), 1, + [46458] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2308), 1, + STATE(2309), 1, sym_comment, - STATE(7470), 1, + STATE(7578), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273359,7 +411489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273403,14 +411533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46472] = 5, - ACTIONS(247), 1, + [46531] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2303), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2309), 1, + STATE(2310), 1, sym_comment, - ACTIONS(5223), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273424,7 +411554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273469,14 +411599,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46543] = 5, - ACTIONS(247), 1, + [46602] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5336), 1, + anon_sym_DOT, + STATE(2311), 1, + sym_comment, + STATE(2350), 1, + aux_sym_cell_path_repeat1, + STATE(2554), 1, + sym_path, + STATE(2613), 1, + sym_cell_path, + ACTIONS(1886), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1888), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46679] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2310), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273490,7 +411689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5198), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273535,14 +411734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46614] = 5, - ACTIONS(247), 1, + [46750] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2311), 1, - sym_comment, - STATE(2319), 1, + STATE(2291), 1, aux_sym_shebang_repeat1, - ACTIONS(5223), 13, + STATE(2313), 1, + sym_comment, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273556,7 +411755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273601,16 +411800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46685] = 6, - ACTIONS(247), 1, + [46821] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2312), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2314), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4934), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273624,8 +411821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4932), 43, - ts_builtin_sym_end, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273637,8 +411833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273668,28 +411866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46758] = 5, - ACTIONS(247), 1, + [46892] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, - aux_sym_shebang_repeat1, - STATE(2313), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2315), 1, sym_comment, - ACTIONS(5223), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5221), 44, + ACTIONS(2349), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273701,10 +411888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2345), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273713,19 +411901,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273734,16 +411933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46829] = 6, - ACTIONS(247), 1, + [46965] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(2314), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2316), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4938), 13, + ACTIONS(5306), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273757,8 +411954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4936), 43, - ts_builtin_sym_end, + ACTIONS(5304), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273770,8 +411966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273801,16 +411999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46902] = 6, - ACTIONS(247), 1, + [47036] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - STATE(2315), 1, + STATE(2317), 1, sym_comment, - STATE(7470), 1, + STATE(7578), 1, sym__expr_parenthesized_immediate, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273824,7 +412022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273868,14 +412066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46975] = 5, - ACTIONS(247), 1, + [47109] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273889,7 +412087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273934,14 +412132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47046] = 5, - ACTIONS(247), 1, + [47180] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2317), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2319), 1, sym_comment, - ACTIONS(5292), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273955,7 +412155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273967,10 +412168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274000,14 +412199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47117] = 5, - ACTIONS(247), 1, + [47253] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2265), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5194), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274021,7 +412220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 44, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274066,14 +412265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47188] = 5, - ACTIONS(247), 1, + [47324] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2319), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(2321), 1, sym_comment, - ACTIONS(5262), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274087,7 +412288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5214), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274099,10 +412301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274132,28 +412332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47259] = 5, - ACTIONS(247), 1, + [47397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(2320), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2322), 1, sym_comment, - ACTIONS(5330), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5328), 44, + ACTIONS(2355), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274165,10 +412354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2353), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274177,19 +412367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274198,12 +412399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47330] = 4, - ACTIONS(247), 1, + [47470] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2321), 1, + STATE(2231), 1, + aux_sym_shebang_repeat1, + STATE(2323), 1, sym_comment, - ACTIONS(1010), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274217,8 +412420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, - ts_builtin_sym_end, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274230,6 +412432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -274254,7 +412457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274263,19 +412465,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47399] = 5, - ACTIONS(247), 1, + [47541] = 18, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2215), 1, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5350), 1, + sym__newline, + STATE(2324), 1, + sym_comment, + STATE(2592), 1, + aux_sym_command_list_repeat1, + STATE(2924), 1, aux_sym_shebang_repeat1, - STATE(2322), 1, + STATE(3804), 1, + sym__val_number_decimal, + STATE(7433), 1, + sym__command_name, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5348), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [47637] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + STATE(2325), 1, sym_comment, - ACTIONS(5204), 13, - anon_sym_GT2, + STATE(2429), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5314), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274284,8 +412576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, - sym__newline, + ACTIONS(5312), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274297,9 +412588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274312,10 +412601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -274329,19 +412614,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47470] = 5, - ACTIONS(247), 1, + [47719] = 18, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(2323), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + STATE(2326), 1, sym_comment, - ACTIONS(5204), 13, - anon_sym_GT2, + STATE(2440), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274350,8 +412668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5202), 44, - sym__newline, + ACTIONS(5312), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274363,29 +412680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -274395,54 +412692,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47541] = 19, - ACTIONS(247), 1, + [47815] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5417), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, + ACTIONS(5419), 1, anon_sym_bit_DASHor2, - STATE(2324), 1, - sym_comment, - STATE(2345), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + STATE(2327), 1, + sym_comment, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274451,7 +412746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 22, + ACTIONS(5354), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274474,22 +412770,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47639] = 6, - ACTIONS(247), 1, + [47911] = 14, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2325), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + STATE(2328), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2393), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5276), 13, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274498,8 +412812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 41, - sym__newline, + ACTIONS(5312), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274511,7 +412824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -274519,16 +412831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -274540,50 +412844,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47711] = 17, - ACTIONS(247), 1, + [47999] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - STATE(2326), 1, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + STATE(2329), 1, sym_comment, - STATE(2426), 1, + STATE(2391), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274592,7 +412900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 24, + ACTIONS(5362), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274607,8 +412915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274617,50 +412923,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47805] = 17, - ACTIONS(247), 1, + [48097] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(2330), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2403), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274669,8 +412981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 24, - sym__newline, + ACTIONS(5312), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274682,10 +412993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274694,26 +413003,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47899] = 8, - ACTIONS(247), 1, + [48197] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2328), 1, + ACTIONS(5428), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5430), 1, + aux_sym__immediate_decimal_token2, + STATE(2331), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5304), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(1770), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1768), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274722,38 +413059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274762,38 +413067,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47975] = 13, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [48269] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + ACTIONS(5432), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2329), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5371), 4, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274802,7 +413125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 32, + ACTIONS(5354), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274815,18 +413138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274835,29 +413148,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48061] = 10, - ACTIONS(247), 1, + [48367] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2330), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5304), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274866,7 +413193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 38, + ACTIONS(5342), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274879,21 +413206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -274905,50 +413222,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48141] = 17, - ACTIONS(247), 1, + [48455] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2331), 1, + ACTIONS(5434), 1, + sym__newline, + STATE(2334), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2458), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274957,8 +413276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 24, - sym__newline, + ACTIONS(5338), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274982,48 +413300,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48235] = 16, - ACTIONS(247), 1, + [48551] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5445), 1, + aux_sym__immediate_decimal_token5, + STATE(2335), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + STATE(2917), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5441), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3079), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [48635] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2336), 1, + sym_comment, + ACTIONS(5282), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5304), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275032,7 +413391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 25, + ACTIONS(5284), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275045,9 +413404,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -275058,46 +413436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48327] = 15, - ACTIONS(247), 1, + [48703] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5401), 1, - anon_sym_PLUS2, - ACTIONS(5405), 1, - anon_sym_bit_DASHand2, - STATE(2333), 1, + ACTIONS(5277), 1, + sym__newline, + STATE(2337), 1, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5282), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5395), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5239), 8, + anon_sym_PLUS2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275106,8 +413458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 26, - sym__newline, + ACTIONS(5280), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275119,12 +413470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275133,52 +413479,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48417] = 18, - ACTIONS(247), 1, + ACTIONS(5284), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [48777] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - STATE(2334), 1, + ACTIONS(5434), 1, + sym__newline, + STATE(2338), 1, sym_comment, - STATE(2448), 1, + STATE(2388), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275187,7 +413555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 23, + ACTIONS(5338), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275202,6 +413570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -275211,31 +413580,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48513] = 11, - ACTIONS(247), 1, + [48871] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5434), 1, sym__newline, - STATE(2335), 1, + STATE(2339), 1, sym_comment, - STATE(2427), 1, + STATE(2439), 1, aux_sym_shebang_repeat1, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 10, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275244,7 +413638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 37, + ACTIONS(5338), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275256,24 +413650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275282,78 +413660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48595] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5412), 1, - aux_sym__immediate_decimal_token2, - STATE(2336), 1, - sym_comment, - ACTIONS(1585), 11, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [48667] = 4, - ACTIONS(247), 1, + [48971] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2337), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2340), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5302), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275367,7 +413684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5256), 44, + ACTIONS(5300), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275382,7 +413699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275395,8 +413711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -275412,29 +413726,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48735] = 8, - ACTIONS(247), 1, + [49043] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_DOT, - STATE(2338), 1, + ACTIONS(5447), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5449), 1, + aux_sym__immediate_decimal_token2, + STATE(2341), 1, sym_comment, - STATE(2547), 1, - aux_sym_cell_path_repeat1, - STATE(2627), 1, - sym_path, - STATE(2669), 1, - sym_cell_path, - ACTIONS(1747), 6, + ACTIONS(1768), 11, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1749), 47, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 44, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275469,166 +413783,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [48811] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5416), 1, - sym__newline, - STATE(2339), 1, - sym_comment, - STATE(2450), 1, - aux_sym_shebang_repeat1, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5326), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5324), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48895] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5419), 1, - anon_sym_DOT, - ACTIONS(5421), 1, - aux_sym__immediate_decimal_token2, - STATE(2340), 1, - sym_comment, - ACTIONS(1575), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1573), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [48967] = 6, - ACTIONS(247), 1, + [49115] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2341), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2342), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2460), 1, + aux_sym_shebang_repeat1, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5320), 13, + ACTIONS(5360), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275642,8 +413818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 41, - sym__newline, + ACTIONS(5358), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275684,110 +413859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49039] = 18, - ACTIONS(247), 1, + [49189] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2342), 1, - sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5276), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5274), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [49135] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5425), 1, + ACTIONS(5451), 1, sym__newline, STATE(2343), 1, sym_comment, - STATE(2352), 1, + STATE(2377), 1, aux_sym_shebang_repeat1, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5330), 10, + ACTIONS(5360), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -275798,7 +413895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 35, + ACTIONS(5358), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275834,56 +413931,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49219] = 20, - ACTIONS(247), 1, + [49273] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(5428), 1, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, anon_sym_and2, STATE(2344), 1, sym_comment, - STATE(2347), 1, + STATE(2434), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275892,7 +413989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 21, + ACTIONS(5362), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275914,52 +414011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49319] = 18, - ACTIONS(247), 1, + [49373] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(5434), 1, + sym__newline, STATE(2345), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + STATE(2437), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5340), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275968,8 +414041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 23, - sym__newline, + ACTIONS(5338), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275981,9 +414053,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275992,16 +414080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49415] = 6, + [49451] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5432), 1, + ACTIONS(5454), 1, + anon_sym_DOT, + ACTIONS(5456), 1, aux_sym__immediate_decimal_token2, STATE(2346), 1, sym_comment, - ACTIONS(1587), 7, + ACTIONS(1762), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -276009,7 +414097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1585), 48, + ACTIONS(1760), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -276058,54 +414146,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [49487] = 19, - ACTIONS(247), 1, + [49523] = 21, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, + ACTIONS(5426), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(5458), 1, + anon_sym_xor2, STATE(2347), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2348), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276114,8 +414206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 22, - sym__newline, + ACTIONS(5338), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276127,7 +414218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -276137,56 +414227,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49585] = 20, - ACTIONS(247), 1, + [49625] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5417), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, + ACTIONS(5419), 1, anon_sym_bit_DASHor2, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(5428), 1, + ACTIONS(5432), 1, anon_sym_and2, + ACTIONS(5460), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2348), 1, sym_comment, - STATE(2414), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276195,7 +414285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 21, + ACTIONS(5300), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276207,7 +414298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -276217,30 +414307,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49685] = 11, - ACTIONS(247), 1, + [49725] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2349), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5276), 10, + ACTIONS(5344), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -276251,7 +414341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 36, + ACTIONS(5342), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276288,50 +414378,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49767] = 18, - ACTIONS(247), 1, + [49807] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(5336), 1, + anon_sym_DOT, + STATE(2350), 1, + sym_comment, + STATE(2351), 1, + aux_sym_cell_path_repeat1, + STATE(2554), 1, + sym_path, + ACTIONS(1479), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1481), 48, sym_raw_string_begin, - ACTIONS(5048), 1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2350), 1, - sym_comment, - STATE(2799), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6314), 1, - sym__command_name, - ACTIONS(4003), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + [49881] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5462), 1, + anon_sym_DOT, + STATE(2554), 1, + sym_path, + STATE(2351), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(1485), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276366,28 +414498,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [49863] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5416), 1, sym__newline, - STATE(2328), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [49953] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5341), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5326), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276396,7 +414559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 38, + ACTIONS(5300), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276408,22 +414572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276435,32 +414586,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49941] = 11, - ACTIONS(247), 1, + [50043] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2352), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5296), 10, + ACTIONS(5344), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276469,7 +414614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 36, + ACTIONS(5342), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276482,6 +414627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -276495,6 +414641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276506,56 +414654,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50023] = 20, - ACTIONS(247), 1, + [50119] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5417), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5419), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, + ACTIONS(5432), 1, anon_sym_and2, - ACTIONS(5436), 1, + ACTIONS(5460), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2353), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276564,7 +414712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 21, + ACTIONS(5354), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276586,40 +414734,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50123] = 14, - ACTIONS(247), 1, + [50219] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2354), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3973), 1, + anon_sym_DOLLAR, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5467), 1, + anon_sym_DOT, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5473), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5475), 1, + aux_sym__immediate_decimal_token5, + STATE(2355), 1, sym_comment, - STATE(2452), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, + STATE(2816), 1, + sym__immediate_decimal, + STATE(2907), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276628,30 +414778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1726), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276660,15 +414808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50211] = 5, - ACTIONS(247), 1, + [50307] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1042), 1, - aux_sym_record_entry_token1, - STATE(2355), 1, - sym_comment, - ACTIONS(1026), 14, + ACTIONS(5368), 1, sym__newline, + STATE(2356), 1, + sym_comment, + STATE(2395), 1, + aux_sym_shebang_repeat1, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276682,7 +414834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 42, + ACTIONS(5312), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276693,9 +414845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276708,8 +414860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -276725,30 +414875,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50281] = 11, - ACTIONS(247), 1, + [50381] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2356), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5320), 10, + ACTIONS(5302), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -276759,7 +414909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 36, + ACTIONS(5300), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276796,119 +414946,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50363] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - ACTIONS(5434), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2357), 1, - sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5320), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5318), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [50461] = 14, - ACTIONS(247), 1, + [50463] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5416), 1, + ACTIONS(5451), 1, sym__newline, - STATE(2329), 1, - aux_sym_shebang_repeat1, STATE(2358), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + STATE(2417), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5360), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276917,7 +414976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 31, + ACTIONS(5358), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276929,6 +414988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -276936,8 +414996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276949,34 +415015,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50549] = 12, - ACTIONS(247), 1, + [50541] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(2356), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2359), 1, sym_comment, - ACTIONS(5341), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5300), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276985,7 +415055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 35, + ACTIONS(5342), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277004,10 +415075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -277021,206 +415088,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50633] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5446), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, - sym_comment, - STATE(2902), 1, - sym__immediate_decimal, - ACTIONS(1659), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3030), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [50717] = 18, - ACTIONS(247), 1, + [50627] = 21, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5314), 1, + ACTIONS(3965), 1, sym__newline, - STATE(2361), 1, - sym_comment, - STATE(2594), 1, - aux_sym_command_list_repeat1, - STATE(2873), 1, - aux_sym_shebang_repeat1, - STATE(3820), 1, - sym__val_number_decimal, - STATE(7058), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [50813] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5436), 1, + ACTIONS(5458), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2362), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2405), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277229,8 +415148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 21, - sym__newline, + ACTIONS(5312), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277251,56 +415169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50913] = 20, - ACTIONS(247), 1, + [50729] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, ACTIONS(5434), 1, - anon_sym_and2, - ACTIONS(5436), 1, - anon_sym_xor2, - STATE(1761), 1, + sym__newline, + STATE(2340), 1, aux_sym_shebang_repeat1, - STATE(2363), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5340), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5304), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277309,8 +415195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 21, - sym__newline, + ACTIONS(5338), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277322,85 +415207,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51013] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, - sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5302), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277409,52 +415236,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51109] = 18, - ACTIONS(247), 1, + [50803] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5425), 1, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, sym__newline, - STATE(2331), 1, - aux_sym_shebang_repeat1, - STATE(2365), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + STATE(2409), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277463,7 +415292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 23, + ACTIONS(5338), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277478,7 +415307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277487,19 +415315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51205] = 7, - ACTIONS(247), 1, + [50901] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - STATE(2366), 1, - sym_comment, - STATE(2403), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5347), 2, + STATE(2363), 1, + sym_comment, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5326), 13, + ACTIONS(5344), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277513,7 +415339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 40, + ACTIONS(5342), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277554,128 +415381,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51279] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2350), 1, - aux_sym_decl_def_repeat1, - STATE(2367), 1, - sym_comment, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6763), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [51375] = 18, - ACTIONS(247), 1, + [50973] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, + ACTIONS(5316), 1, anon_sym_DASH_DASH, - STATE(2368), 1, + STATE(2364), 1, sym_comment, - STATE(2410), 1, + STATE(2379), 1, aux_sym_decl_def_repeat1, - STATE(3007), 1, + STATE(3009), 1, sym_long_flag, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6297), 1, + STATE(6759), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277710,31 +415459,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [51471] = 11, - ACTIONS(247), 1, + [51069] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5425), 1, - sym__newline, - STATE(2369), 1, + ACTIONS(4825), 1, + aux_sym_record_entry_token1, + STATE(2365), 1, sym_comment, - STATE(2413), 1, - aux_sym_shebang_repeat1, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 10, + ACTIONS(1538), 14, + sym__newline, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277743,7 +415481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 37, + ACTIONS(1540), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277754,8 +415492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277768,6 +415507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -277781,54 +415524,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51553] = 19, - ACTIONS(247), 1, + [51139] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5416), 1, + ACTIONS(5451), 1, sym__newline, - STATE(2364), 1, - aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + STATE(2456), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277837,7 +415578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 22, + ACTIONS(5358), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277852,6 +415593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277860,58 +415602,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51651] = 21, - ACTIONS(247), 1, + [51235] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHor2, - ACTIONS(5428), 1, - anon_sym_and2, - ACTIONS(5448), 1, - anon_sym_xor2, - STATE(2353), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2327), 1, aux_sym_shebang_repeat1, - STATE(2371), 1, + STATE(2367), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277920,7 +415658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 20, + ACTIONS(5358), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277932,6 +415670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277941,43 +415681,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51753] = 14, - ACTIONS(247), 1, + [51333] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2372), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + STATE(2432), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277986,8 +415731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 28, - sym__newline, + ACTIONS(5312), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278002,8 +415746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278015,28 +415757,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51841] = 9, - ACTIONS(247), 1, + [51425] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5434), 1, sym__newline, - STATE(2373), 1, + STATE(2369), 1, sym_comment, - STATE(2443), 1, + STATE(2412), 1, aux_sym_shebang_repeat1, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 11, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278045,7 +415804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 38, + ACTIONS(5338), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278057,25 +415816,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51515] = 21, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5458), 1, + anon_sym_xor2, + STATE(2370), 1, + sym_comment, + STATE(2442), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5364), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5362), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278084,118 +415913,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51919] = 18, - ACTIONS(247), 1, + [51617] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(2657), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + anon_sym_LPAREN2, + ACTIONS(5477), 1, + anon_sym_DOT, + ACTIONS(5481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5483), 1, + aux_sym__immediate_decimal_token5, + STATE(2371), 1, + sym_comment, + STATE(2860), 1, + sym__immediate_decimal, + ACTIONS(1786), 2, sym_raw_string_begin, - ACTIONS(5048), 1, + sym__entry_separator, + ACTIONS(5479), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2859), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5314), 1, - sym__newline, - STATE(2374), 1, - sym_comment, - STATE(2567), 1, - aux_sym_command_list_repeat1, - STATE(2873), 1, - aux_sym_shebang_repeat1, - STATE(3820), 1, - sym__val_number_decimal, - STATE(6992), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [52015] = 14, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [51701] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(2375), 1, + STATE(2372), 1, sym_comment, - STATE(2446), 1, + STATE(2383), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5314), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278204,7 +416021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 31, + ACTIONS(5312), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278223,6 +416040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -278236,33 +416057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52103] = 12, + [51785] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2540), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5437), 1, anon_sym_DOLLAR, - ACTIONS(5278), 1, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(5450), 1, - anon_sym_DOT, - ACTIONS(5454), 1, + ACTIONS(5443), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5456), 1, + ACTIONS(5445), 1, aux_sym__immediate_decimal_token5, - STATE(2376), 1, + STATE(2373), 1, sym_comment, - STATE(2853), 1, + STATE(2920), 1, sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(1742), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5452), 2, + ACTIONS(5441), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2829), 2, + STATE(3091), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 45, + ACTIONS(1730), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -278307,44 +416128,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [52187] = 14, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [51869] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5485), 1, + anon_sym_LBRACK2, + STATE(2374), 1, + sym_comment, + ACTIONS(2423), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2427), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51939] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5434), 1, + sym__newline, + STATE(2357), 1, aux_sym_shebang_repeat1, - STATE(2377), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5340), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278353,8 +416230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 28, - sym__newline, + ACTIONS(5338), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278366,9 +416242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -278382,38 +416266,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52275] = 13, - ACTIONS(247), 1, + [52023] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5371), 4, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278422,7 +416311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 32, + ACTIONS(5354), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278435,13 +416324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -278455,26 +416340,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52361] = 8, - ACTIONS(247), 1, + [52111] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 11, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5356), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278483,7 +416374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 39, + ACTIONS(5354), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278496,7 +416387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -278510,8 +416400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278523,56 +416411,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52437] = 20, - ACTIONS(247), 1, + [52193] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5416), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(5428), 1, - anon_sym_and2, - STATE(2380), 1, - sym_comment, - STATE(2440), 1, + STATE(2333), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + STATE(2378), 1, + sym_comment, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278581,7 +416458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 21, + ACTIONS(5362), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278593,8 +416470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278603,126 +416486,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52537] = 12, - ACTIONS(3), 1, + [52283] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5446), 1, - aux_sym__immediate_decimal_token5, - STATE(2381), 1, - sym_comment, - STATE(2876), 1, - sym__immediate_decimal, - ACTIONS(1557), 2, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3065), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2379), 1, + sym_comment, + STATE(2814), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6755), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [52621] = 19, - ACTIONS(247), 1, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [52379] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5407), 1, + ACTIONS(5451), 1, sym__newline, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(2382), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + STATE(2448), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278731,7 +416616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 22, + ACTIONS(5358), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278746,6 +416631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278754,56 +416641,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52719] = 20, - ACTIONS(247), 1, + [52473] = 21, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5436), 1, + ACTIONS(5458), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(2354), 1, aux_sym_shebang_repeat1, - STATE(2383), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278812,8 +416701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 21, - sym__newline, + ACTIONS(5358), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278834,96 +416722,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52819] = 18, - ACTIONS(247), 1, + [52575] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2327), 1, + STATE(2349), 1, aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2382), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5306), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52915] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(1707), 14, - sym__newline, + ACTIONS(5364), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278932,7 +416758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 43, + ACTIONS(5362), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278943,9 +416769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278958,16 +416783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278976,58 +416794,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52983] = 21, - ACTIONS(247), 1, + [52659] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5428), 1, - anon_sym_and2, - ACTIONS(5448), 1, - anon_sym_xor2, - STATE(2362), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5298), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279036,7 +416828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 20, + ACTIONS(5296), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279048,7 +416841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279057,22 +416865,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53085] = 6, - ACTIONS(247), 1, + [52741] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(5487), 1, + anon_sym_DOT, + STATE(2384), 1, + sym_comment, + STATE(2514), 1, + aux_sym_cell_path_repeat1, + STATE(2614), 1, + sym_path, + STATE(2721), 1, + sym_cell_path, + ACTIONS(1880), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1884), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [52817] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5350), 1, + sym__newline, + STATE(2385), 1, + sym_comment, + STATE(2560), 1, + aux_sym_command_list_repeat1, + STATE(2924), 1, + aux_sym_shebang_repeat1, + STATE(3804), 1, + sym__val_number_decimal, + STATE(7259), 1, + sym__command_name, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5348), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [52913] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2386), 1, + sym_comment, + STATE(2814), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6772), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [53009] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2387), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5401), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5296), 13, + ACTIONS(5409), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5344), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279081,7 +417120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 41, + ACTIONS(5342), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279094,7 +417133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -279108,8 +417146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -279123,43 +417159,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53157] = 14, - ACTIONS(247), 1, + [53089] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2388), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279168,7 +417209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 28, + ACTIONS(5300), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279184,9 +417225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -279197,40 +417235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53245] = 14, - ACTIONS(247), 1, + [53181] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5425), 1, - sym__newline, - STATE(2378), 1, - aux_sym_shebang_repeat1, STATE(2389), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(1788), 14, + sym__newline, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279239,7 +417255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 31, + ACTIONS(1800), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279250,19 +417266,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279271,19 +417299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53333] = 5, - ACTIONS(247), 1, + [53249] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_record_entry_token1, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2390), 1, sym_comment, - ACTIONS(1026), 14, - sym__newline, - anon_sym_GT2, + ACTIONS(5401), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5298), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -279293,7 +417327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 42, + ACTIONS(5296), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279304,9 +417339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279319,10 +417354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -279336,24 +417367,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53403] = 7, - ACTIONS(247), 1, + [53325] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - STATE(2341), 1, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2391), 1, sym_comment, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5300), 13, + ACTIONS(5395), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5401), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279362,7 +417421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 40, + ACTIONS(5342), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279374,27 +417434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279403,45 +417445,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53477] = 15, - ACTIONS(247), 1, + [53421] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2377), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2392), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279450,7 +417497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 27, + ACTIONS(5342), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279465,10 +417513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279478,28 +417522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53567] = 9, - ACTIONS(247), 1, + [53515] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2393), 1, sym_comment, - STATE(2396), 1, - aux_sym_shebang_repeat1, - ACTIONS(5341), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279508,7 +417562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 38, + ACTIONS(5296), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279520,7 +417575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -279528,14 +417582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279547,58 +417595,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53645] = 21, - ACTIONS(247), 1, + [53601] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHor2, - ACTIONS(5428), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5448), 1, - anon_sym_xor2, - STATE(2363), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2332), 1, aux_sym_shebang_repeat1, STATE(2394), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279607,7 +417653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 20, + ACTIONS(5358), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279619,6 +417665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279628,91 +417675,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53747] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_DOT, - ACTIONS(5460), 1, - aux_sym__immediate_decimal_token2, - STATE(2395), 1, - sym_comment, - ACTIONS(1573), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53819] = 8, - ACTIONS(247), 1, + [53701] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2396), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5298), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5375), 2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5296), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 11, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53773] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1554), 1, + aux_sym_record_entry_token1, + STATE(2396), 1, + sym_comment, + ACTIONS(1538), 14, + sym__newline, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -279722,8 +417763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 39, - sym__newline, + ACTIONS(1540), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279734,9 +417774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279749,6 +417789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -279762,42 +417806,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53895] = 14, - ACTIONS(247), 1, + [53843] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3937), 1, - anon_sym_DOLLAR, - ACTIONS(5462), 1, - anon_sym_LPAREN2, - ACTIONS(5464), 1, - anon_sym_DOT, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5470), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5472), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, STATE(2397), 1, sym_comment, - STATE(2811), 1, - sym__immediate_decimal, - STATE(2920), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2435), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279806,28 +417858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1557), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5312), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279836,29 +417883,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53983] = 10, - ACTIONS(247), 1, + [53937] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2398), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279867,7 +417937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 38, + ACTIONS(5296), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279880,24 +417950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279906,48 +417961,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54063] = 16, - ACTIONS(247), 1, + [54033] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5405), 1, - anon_sym_bit_DASHand2, - ACTIONS(5474), 1, - anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2399), 1, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279956,7 +418001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 25, + ACTIONS(5300), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279969,10 +418014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279982,19 +418034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54155] = 7, - ACTIONS(247), 1, + [54119] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - STATE(2325), 1, + STATE(2363), 1, aux_sym_shebang_repeat1, STATE(2400), 1, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5308), 13, + ACTIONS(5364), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280008,7 +418060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 40, + ACTIONS(5362), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280049,50 +418101,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54229] = 17, - ACTIONS(247), 1, + [54193] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2376), 1, aux_sym_shebang_repeat1, STATE(2401), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280101,8 +418148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 24, - sym__newline, + ACTIONS(5358), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280117,6 +418163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -280126,45 +418176,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54323] = 15, - ACTIONS(247), 1, + [54283] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - ACTIONS(5416), 1, + STATE(2402), 1, + sym_comment, + ACTIONS(5491), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5269), 10, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 37, sym__newline, - STATE(2388), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54363] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + ACTIONS(5432), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2402), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280173,7 +418302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 27, + ACTIONS(5296), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280185,14 +418315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280201,21 +418325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54413] = 6, - ACTIONS(247), 1, + [54461] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, + STATE(2404), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5491), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5304), 13, + ACTIONS(5495), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5269), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -280225,7 +418351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 41, + ACTIONS(5267), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280240,6 +418366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280252,8 +418379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -280267,115 +418392,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54485] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5264), 1, - anon_sym_DOT, - STATE(2404), 1, - sym_comment, - STATE(2419), 1, - aux_sym_cell_path_repeat1, - STATE(2575), 1, - sym_path, - ACTIONS(967), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(969), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54559] = 16, - ACTIONS(247), 1, + [54535] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5425), 1, - sym__newline, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + ACTIONS(5432), 1, + anon_sym_and2, + ACTIONS(5460), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2405), 1, sym_comment, - STATE(2433), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280384,7 +418450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 25, + ACTIONS(5296), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280396,12 +418463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280410,28 +418472,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54651] = 9, - ACTIONS(247), 1, + [54635] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - STATE(2379), 1, - aux_sym_shebang_repeat1, + ACTIONS(5489), 1, + anon_sym_DASH2, + ACTIONS(5497), 1, + anon_sym_PLUS2, STATE(2406), 1, sym_comment, - ACTIONS(5341), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 11, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5501), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5503), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280440,7 +418510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 38, + ACTIONS(5267), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280452,22 +418523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280479,45 +418544,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54729] = 15, - ACTIONS(247), 1, + [54719] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5425), 1, - sym__newline, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(2407), 1, sym_comment, - STATE(2462), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280526,7 +418589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 27, + ACTIONS(5296), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280554,45 +418618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54819] = 15, - ACTIONS(247), 1, + [54807] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - STATE(2372), 1, - aux_sym_shebang_repeat1, STATE(2408), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5300), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280601,7 +418640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 27, + ACTIONS(5267), 42, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280613,11 +418653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280629,46 +418683,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54909] = 15, - ACTIONS(247), 1, + [54877] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2409), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280677,7 +418737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 26, + ACTIONS(5300), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280693,9 +418753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280704,128 +418761,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54999] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2410), 1, - sym_comment, - STATE(2799), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6794), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [55095] = 17, - ACTIONS(247), 1, + [54973] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5425), 1, + ACTIONS(5434), 1, sym__newline, - STATE(2411), 1, + STATE(2410), 1, sym_comment, - STATE(2453), 1, + STATE(2446), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5340), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280834,7 +418794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 24, + ACTIONS(5338), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280846,9 +418806,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -280859,34 +418832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55189] = 12, - ACTIONS(247), 1, + [55055] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2349), 1, - aux_sym_shebang_repeat1, - STATE(2412), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5308), 10, + ACTIONS(2567), 14, + sym__newline, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280895,7 +418852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 35, + ACTIONS(2569), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280906,8 +418863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280920,9 +418878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280931,29 +418896,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55273] = 10, - ACTIONS(247), 1, + [55123] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2413), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280962,7 +418941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 38, + ACTIONS(5300), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280975,21 +418954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281001,54 +418970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55353] = 19, - ACTIONS(247), 1, + [55211] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5509), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5511), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5513), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2414), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5499), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281057,7 +419022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 22, + ACTIONS(5267), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281070,6 +419035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -281080,46 +419047,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55451] = 15, - ACTIONS(247), 1, + [55305] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2415), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281128,7 +419097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 26, + ACTIONS(5342), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281144,7 +419113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -281155,31 +419123,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55541] = 11, - ACTIONS(247), 1, + [55397] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - STATE(2398), 1, - aux_sym_shebang_repeat1, - STATE(2416), 1, + ACTIONS(5509), 1, + anon_sym_bit_DASHand2, + ACTIONS(5511), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5513), 1, + anon_sym_bit_DASHor2, + ACTIONS(5515), 1, + anon_sym_and2, + STATE(2415), 1, sym_comment, - ACTIONS(5341), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 10, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5501), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281188,7 +419177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 37, + ACTIONS(5267), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281200,24 +419190,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55493] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5489), 1, + anon_sym_DASH2, + ACTIONS(5497), 1, + anon_sym_PLUS2, + ACTIONS(5509), 1, + anon_sym_bit_DASHand2, + ACTIONS(5511), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5513), 1, + anon_sym_bit_DASHor2, + ACTIONS(5515), 1, + anon_sym_and2, + ACTIONS(5517), 1, + anon_sym_xor2, + STATE(2416), 1, + sym_comment, + ACTIONS(5491), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281226,23 +419280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55623] = 7, - ACTIONS(247), 1, + [55591] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - STATE(2387), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, STATE(2417), 1, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5401), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5330), 13, + ACTIONS(5409), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5356), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -281252,7 +419308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 40, + ACTIONS(5354), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281278,8 +419335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -281293,52 +419348,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55697] = 18, - ACTIONS(247), 1, + [55667] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(2418), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5499), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5503), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281347,7 +419391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 23, + ACTIONS(5267), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281360,9 +419404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281371,95 +419421,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55793] = 6, - ACTIONS(247), 1, + [55753] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5476), 1, - anon_sym_DOT, - STATE(2575), 1, - sym_path, - STATE(2419), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(973), 48, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2386), 1, + aux_sym_decl_def_repeat1, + STATE(2419), 1, + sym_comment, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6674), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [55865] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_DOT, - STATE(2420), 1, - sym_comment, - STATE(2547), 1, - aux_sym_cell_path_repeat1, - STATE(2627), 1, - sym_path, - STATE(2670), 1, - sym_cell_path, - ACTIONS(961), 6, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(963), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281494,40 +419499,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [55941] = 11, - ACTIONS(247), 1, + [55849] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5416), 1, + ACTIONS(5451), 1, sym__newline, - STATE(2330), 1, - aux_sym_shebang_repeat1, - STATE(2421), 1, + STATE(2420), 1, sym_comment, - ACTIONS(5341), 2, + STATE(2427), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5326), 10, + ACTIONS(5360), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -281538,7 +419532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 37, + ACTIONS(5358), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281576,103 +419570,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56023] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2422), 1, - sym_comment, - STATE(2439), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5306), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56115] = 8, - ACTIONS(247), 1, + [55931] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5487), 1, anon_sym_DOT, - STATE(2423), 1, + STATE(2421), 1, sym_comment, - STATE(2547), 1, + STATE(2514), 1, aux_sym_cell_path_repeat1, - STATE(2627), 1, + STATE(2614), 1, sym_path, - STATE(2708), 1, + STATE(2733), 1, sym_cell_path, - ACTIONS(1733), 6, + ACTIONS(1473), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1737), 47, + ACTIONS(1475), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -281720,56 +419638,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [56191] = 20, - ACTIONS(247), 1, + [56007] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5428), 1, - anon_sym_and2, - STATE(2357), 1, - aux_sym_shebang_repeat1, - STATE(2424), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5269), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281778,7 +419667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 21, + ACTIONS(5267), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281790,8 +419680,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281800,30 +419707,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56291] = 10, - ACTIONS(247), 1, + [56085] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5401), 1, - anon_sym_PLUS2, - STATE(2425), 1, + ACTIONS(5421), 1, + sym__newline, + STATE(2353), 1, + aux_sym_shebang_repeat1, + STATE(2423), 1, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5397), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5239), 10, + ACTIONS(5364), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281832,8 +419737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 37, - sym__newline, + ACTIONS(5362), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281845,8 +419749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281859,6 +419763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281870,105 +419776,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56371] = 16, - ACTIONS(247), 1, + [56163] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5391), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + STATE(2398), 1, aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5318), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56463] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2427), 1, - sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5276), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281977,8 +419832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 38, - sym__newline, + ACTIONS(5312), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281990,24 +419844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282016,48 +419855,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56543] = 16, - ACTIONS(247), 1, + [56261] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5416), 1, + ACTIONS(5434), 1, sym__newline, - STATE(2415), 1, + STATE(2352), 1, aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2425), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282066,7 +419905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 25, + ACTIONS(5338), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282092,24 +419931,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56635] = 7, - ACTIONS(247), 1, + [56353] = 14, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2429), 1, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5434), 1, + sym__newline, + STATE(2399), 1, + aux_sym_shebang_repeat1, + STATE(2426), 1, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5397), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 11, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5340), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282118,8 +419973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 40, - sym__newline, + ACTIONS(5338), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282131,23 +419985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282159,36 +420005,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56709] = 12, - ACTIONS(247), 1, + [56441] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(2430), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2427), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5397), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5393), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5356), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282197,7 +420036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 33, + ACTIONS(5354), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282211,15 +420050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282231,44 +420075,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56793] = 14, - ACTIONS(247), 1, + [56521] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - STATE(2431), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5499), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282277,7 +420121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 27, + ACTIONS(5267), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282305,124 +420149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56881] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2432), 1, - sym_comment, - STATE(2436), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6745), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [56977] = 15, - ACTIONS(247), 1, + [56609] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2433), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5298), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282431,7 +420180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 26, + ACTIONS(5296), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282444,9 +420193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282458,50 +420219,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57067] = 17, - ACTIONS(247), 1, + [56689] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5489), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5497), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5509), 1, anon_sym_bit_DASHand2, - ACTIONS(5416), 1, - sym__newline, - STATE(2332), 1, - aux_sym_shebang_repeat1, - STATE(2434), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5335), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5491), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5493), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5495), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5499), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282510,7 +420267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 24, + ACTIONS(5267), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282522,6 +420280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282535,176 +420294,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57161] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2435), 1, - sym_comment, - STATE(2438), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6758), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [57257] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2436), 1, - sym_comment, - STATE(2799), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6759), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [57353] = 5, - ACTIONS(247), 1, + [56779] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2437), 1, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5421), 1, + sym__newline, + STATE(2387), 1, + aux_sym_shebang_repeat1, + STATE(2431), 1, sym_comment, - ACTIONS(5397), 2, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5239), 13, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282713,8 +420327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 42, - sym__newline, + ACTIONS(5362), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282726,9 +420339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282741,8 +420352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -282756,124 +420365,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57423] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5288), 1, - anon_sym_DASH_DASH, - STATE(2438), 1, - sym_comment, - STATE(2799), 1, - aux_sym_decl_def_repeat1, - STATE(3007), 1, - sym_long_flag, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6761), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [57519] = 15, - ACTIONS(247), 1, + [56861] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2439), 1, + STATE(2432), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282882,7 +420413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 26, + ACTIONS(5296), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282909,54 +420440,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57609] = 19, - ACTIONS(247), 1, + [56951] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5489), 1, + anon_sym_DASH2, + ACTIONS(5497), 1, + anon_sym_PLUS2, + ACTIONS(5509), 1, + anon_sym_bit_DASHand2, + ACTIONS(5511), 1, + anon_sym_bit_DASHxor2, + STATE(2433), 1, + sym_comment, + ACTIONS(5491), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57043] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5383), 1, + ACTIONS(5417), 1, anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, + ACTIONS(5419), 1, anon_sym_bit_DASHor2, - ACTIONS(5434), 1, + ACTIONS(5432), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2434), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5304), 8, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282965,7 +420572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 22, + ACTIONS(5342), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282988,52 +420595,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57707] = 18, - ACTIONS(247), 1, + [57141] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5416), 1, - sym__newline, - STATE(2401), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2441), 1, + STATE(2435), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5326), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283042,7 +420645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 23, + ACTIONS(5296), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283057,6 +420661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283066,50 +420671,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57803] = 17, - ACTIONS(247), 1, + [57233] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5405), 1, - anon_sym_bit_DASHand2, - ACTIONS(5474), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5479), 1, - anon_sym_bit_DASHor2, - STATE(2442), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2436), 1, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283118,7 +420719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 24, + ACTIONS(5354), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283131,10 +420732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283143,23 +420746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57897] = 8, - ACTIONS(247), 1, + [57323] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2443), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5276), 11, + ACTIONS(5302), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -283171,7 +420774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 39, + ACTIONS(5300), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283211,19 +420814,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57973] = 5, - ACTIONS(247), 1, + [57399] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5481), 1, - anon_sym_LBRACK2, - STATE(2444), 1, + ACTIONS(5487), 1, + anon_sym_DOT, + STATE(2438), 1, sym_comment, - ACTIONS(2322), 13, - anon_sym_GT2, + STATE(2514), 1, + aux_sym_cell_path_repeat1, + STATE(2614), 1, + sym_path, + STATE(2743), 1, + sym_cell_path, + ACTIONS(1886), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1888), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [57475] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + ACTIONS(5432), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2439), 1, + sym_comment, + ACTIONS(5395), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(5401), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5413), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283232,8 +420938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2326), 43, - ts_builtin_sym_end, + ACTIONS(5300), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283245,29 +420950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283276,48 +420961,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58043] = 16, - ACTIONS(247), 1, + [57573] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(2409), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2445), 1, + STATE(2440), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 8, + ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283326,7 +421013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 25, + ACTIONS(5296), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283341,8 +421029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283352,38 +421038,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58135] = 13, - ACTIONS(247), 1, + [57667] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2446), 1, + ACTIONS(5421), 1, + sym__newline, + STATE(2441), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + STATE(2462), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5371), 4, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283392,8 +421088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 32, - sym__newline, + ACTIONS(5362), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283405,15 +421100,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283425,52 +421114,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58221] = 18, - ACTIONS(247), 1, + [57759] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5405), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5474), 1, + ACTIONS(5417), 1, anon_sym_bit_DASHxor2, - ACTIONS(5479), 1, + ACTIONS(5419), 1, anon_sym_bit_DASHor2, - ACTIONS(5483), 1, + ACTIONS(5432), 1, anon_sym_and2, - STATE(2447), 1, + ACTIONS(5460), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2442), 1, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283479,7 +421172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 23, + ACTIONS(5342), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283492,8 +421185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283503,50 +421194,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58317] = 17, - ACTIONS(247), 1, + [57859] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2443), 1, + sym_comment, + STATE(2445), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6661), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57955] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2444), 1, + sym_comment, + STATE(2447), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6676), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [58051] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2445), 1, + sym_comment, + STATE(2814), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6677), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [58147] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2448), 1, + STATE(2446), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5302), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283555,7 +421459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5318), 24, + ACTIONS(5300), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283568,9 +421472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283580,54 +421498,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58411] = 19, - ACTIONS(247), 1, + [58227] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5316), 1, + anon_sym_DASH_DASH, + STATE(2447), 1, + sym_comment, + STATE(2814), 1, + aux_sym_decl_def_repeat1, + STATE(3009), 1, + sym_long_flag, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6681), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5080), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [58323] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(5415), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5425), 1, - sym__newline, - STATE(2418), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2449), 1, + STATE(2448), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283636,7 +421626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 22, + ACTIONS(5354), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283651,6 +421642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283659,32 +421652,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58509] = 11, - ACTIONS(247), 1, + [58415] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2450), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2449), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + STATE(2453), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5304), 10, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283693,8 +421694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5302), 36, - sym__newline, + ACTIONS(5358), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283713,10 +421713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -283730,13 +421726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58591] = 4, - ACTIONS(247), 1, + [58503] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + STATE(2450), 1, sym_comment, - ACTIONS(2444), 14, - sym__newline, + ACTIONS(1788), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283750,7 +421747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2446), 43, + ACTIONS(1800), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283763,7 +421762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283785,7 +421783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283794,199 +421791,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58659] = 13, - ACTIONS(247), 1, + [58573] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5421), 1, + sym__newline, + STATE(2414), 1, aux_sym_shebang_repeat1, - STATE(2452), 1, + STATE(2451), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5276), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5274), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [58745] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(2453), 1, - sym_comment, - ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5296), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5294), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [58837] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_DASH2, - ACTIONS(5351), 1, - anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - sym__newline, - STATE(2454), 1, - sym_comment, - STATE(2458), 1, - aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + ACTIONS(5381), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5387), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283995,7 +421843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 24, + ACTIONS(5362), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284020,27 +421868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58931] = 9, - ACTIONS(247), 1, + [58667] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5401), 1, - anon_sym_PLUS2, - STATE(2455), 1, + ACTIONS(5368), 1, + sym__newline, + STATE(2390), 1, + aux_sym_shebang_repeat1, + STATE(2452), 1, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5397), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 10, + ACTIONS(5314), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284049,8 +421898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 39, - sym__newline, + ACTIONS(5312), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284062,8 +421910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284089,58 +421937,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59009] = 21, - ACTIONS(247), 1, + [58745] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, - anon_sym_bit_DASHand2, - ACTIONS(5357), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5428), 1, - anon_sym_and2, - ACTIONS(5448), 1, - anon_sym_xor2, - STATE(2383), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(2456), 1, + STATE(2453), 1, sym_comment, - ACTIONS(5335), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284149,7 +421977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 20, + ACTIONS(5354), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284161,7 +421990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284170,54 +422010,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59111] = 19, - ACTIONS(247), 1, + [58831] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5405), 1, - anon_sym_bit_DASHand2, - ACTIONS(5474), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5479), 1, - anon_sym_bit_DASHor2, - ACTIONS(5483), 1, - anon_sym_and2, - ACTIONS(5485), 1, - anon_sym_xor2, - STATE(2457), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(2436), 1, + aux_sym_shebang_repeat1, + STATE(2454), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5360), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284226,8 +422060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 22, - sym__newline, + ACTIONS(5358), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284239,8 +422072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284249,48 +422086,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59209] = 16, - ACTIONS(247), 1, + [58923] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - STATE(1761), 1, + ACTIONS(5421), 1, + sym__newline, + STATE(2359), 1, aux_sym_shebang_repeat1, - STATE(2458), 1, + STATE(2455), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284299,8 +422128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 25, - sym__newline, + ACTIONS(5362), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284312,9 +422140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -284325,41 +422160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59301] = 13, - ACTIONS(247), 1, + [59011] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5397), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(5411), 1, anon_sym_PLUS2, - STATE(2459), 1, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2456), 1, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5395), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5401), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5397), 2, + ACTIONS(5405), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5399), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5356), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284368,7 +422212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 29, + ACTIONS(5354), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284381,14 +422225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -284398,86 +422237,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59387] = 7, - ACTIONS(247), 1, + [59105] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5249), 1, - sym__newline, - STATE(2460), 1, + ACTIONS(5519), 1, + anon_sym_DOT, + ACTIONS(5521), 1, + aux_sym__immediate_decimal_token2, + STATE(2457), 1, + sym_comment, + ACTIONS(1760), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59177] = 17, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2458), 1, sym_comment, - ACTIONS(5254), 5, + ACTIONS(5395), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5401), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5258), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5252), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5256), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59461] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - STATE(2461), 1, - sym_comment, - ACTIONS(1707), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5399), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284486,8 +422355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 43, - ts_builtin_sym_end, + ACTIONS(5300), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284499,28 +422367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -284530,43 +422380,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59531] = 14, - ACTIONS(247), 1, + [59271] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5371), 1, anon_sym_DASH2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5421), 1, + sym__newline, + STATE(2392), 1, aux_sym_shebang_repeat1, - STATE(2462), 1, + STATE(2459), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, + ACTIONS(5373), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, + ACTIONS(5383), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 8, + ACTIONS(5364), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284575,8 +422434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 28, - sym__newline, + ACTIONS(5362), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284591,10 +422449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -284604,12 +422458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59619] = 4, - ACTIONS(247), 1, + [59367] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2460), 1, sym_comment, - ACTIONS(2402), 13, + ACTIONS(5407), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5356), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284623,8 +422482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2404), 43, - ts_builtin_sym_end, + ACTIONS(5354), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284636,6 +422494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -284650,8 +422509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -284667,143 +422524,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59686] = 4, - ACTIONS(247), 1, + [59439] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2464), 1, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + STATE(2407), 1, + aux_sym_shebang_repeat1, + STATE(2461), 1, sym_comment, - ACTIONS(2390), 13, - anon_sym_GT2, + ACTIONS(5373), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2392), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59753] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2465), 1, - sym_comment, - ACTIONS(2490), 13, + ACTIONS(5381), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2492), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59820] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2466), 1, - sym_comment, - ACTIONS(2034), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5314), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284812,9 +422571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2036), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5312), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284825,26 +422582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284856,143 +422599,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59887] = 4, - ACTIONS(247), 1, + [59529] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2467), 1, + ACTIONS(5397), 1, + anon_sym_DASH2, + ACTIONS(5411), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(2462), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(5395), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5401), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2369), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59954] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2468), 1, - sym_comment, - ACTIONS(2379), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2381), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + ACTIONS(5399), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60021] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2469), 1, - sym_comment, - ACTIONS(2038), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5344), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285001,8 +422647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2040), 43, - ts_builtin_sym_end, + ACTIONS(5342), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285014,26 +422659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285045,31 +422674,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60088] = 13, - ACTIONS(247), 1, + [59619] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3937), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5523), 1, anon_sym_DOLLAR, - ACTIONS(5462), 1, + ACTIONS(5525), 1, anon_sym_LPAREN2, - ACTIONS(5487), 1, - anon_sym_DOT, - ACTIONS(5489), 1, + ACTIONS(5527), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5491), 1, + ACTIONS(5529), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5493), 1, + ACTIONS(5531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5495), 1, + ACTIONS(5533), 1, aux_sym__immediate_decimal_token5, - STATE(2470), 1, + STATE(2463), 1, sym_comment, - STATE(2904), 1, + STATE(3093), 1, sym__immediate_decimal, - STATE(2893), 2, + STATE(3132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 18, + ACTIONS(1730), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -285088,7 +422717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1603), 28, + ACTIONS(1742), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -285117,201 +422746,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60173] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2471), 1, - sym_comment, - ACTIONS(1899), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1901), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60240] = 4, - ACTIONS(247), 1, + [59704] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2472), 1, + ACTIONS(5535), 1, + anon_sym_DOT, + STATE(2614), 1, + sym_path, + STATE(2464), 2, sym_comment, - ACTIONS(2448), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2450), 43, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1485), 47, + sym_raw_string_begin, ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60307] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2473), 1, - sym_comment, - ACTIONS(2452), 13, - anon_sym_GT2, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2454), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60374] = 4, - ACTIONS(247), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59775] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2474), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1907), 13, + ACTIONS(2504), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285325,7 +422830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1909), 43, + ACTIONS(2506), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285369,12 +422874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60441] = 4, - ACTIONS(247), 1, + [59842] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2475), 1, + STATE(2466), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(2609), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285388,7 +422893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 43, + ACTIONS(2611), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285432,12 +422937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60508] = 4, - ACTIONS(247), 1, + [59909] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2467), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(1788), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285451,7 +422956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2484), 43, + ACTIONS(1800), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285495,12 +423000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60575] = 4, - ACTIONS(247), 1, + [59976] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2477), 1, + STATE(2468), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(1994), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285514,7 +423019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 43, + ACTIONS(1996), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285558,12 +423063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60642] = 4, - ACTIONS(247), 1, + [60043] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1863), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285577,7 +423082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1865), 43, + ACTIONS(2474), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285621,59 +423126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60709] = 11, - ACTIONS(3), 1, + [60110] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token5, - STATE(2479), 1, + STATE(2470), 1, sym_comment, - STATE(3062), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5497), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3100), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1593), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2567), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285682,6 +423145,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2569), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285690,13 +423189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [60790] = 4, - ACTIONS(247), 1, + [60177] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2480), 1, + STATE(2471), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(2018), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285710,7 +423208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2400), 43, + ACTIONS(2020), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285754,12 +423252,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60857] = 4, - ACTIONS(247), 1, + [60244] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2481), 1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(5540), 1, + anon_sym_DOT_DOT2, + ACTIONS(5544), 1, + sym_filesize_unit, + ACTIONS(5546), 1, + sym_duration_unit, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token2, + STATE(2472), 1, + sym_comment, + STATE(7522), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1800), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [60325] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3973), 1, + anon_sym_DOLLAR, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5550), 1, + anon_sym_DOT, + ACTIONS(5552), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5558), 1, + aux_sym__immediate_decimal_token5, + STATE(2473), 1, sym_comment, - ACTIONS(1026), 13, + STATE(2906), 1, + sym__immediate_decimal, + STATE(2905), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1786), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60410] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2474), 1, + sym_comment, + ACTIONS(2508), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285773,7 +423413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 43, + ACTIONS(2510), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285817,12 +423457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60924] = 4, - ACTIONS(247), 1, + [60477] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2482), 1, + STATE(2475), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285836,7 +423476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2488), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285880,12 +423520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60991] = 4, - ACTIONS(247), 1, + [60544] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2476), 1, sym_comment, - ACTIONS(2510), 13, + ACTIONS(2496), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285899,7 +423539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2512), 43, + ACTIONS(2498), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285943,107 +423583,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61058] = 11, + [60611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token5, - STATE(2484), 1, + ACTIONS(5456), 1, + aux_sym__immediate_decimal_token2, + STATE(2477), 1, sym_comment, - STATE(3025), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(1762), 7, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5497), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3023), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [61139] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, anon_sym_LPAREN2, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token5, - STATE(2485), 1, - sym_comment, - STATE(3027), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, - sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(5497), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3026), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 45, + ACTIONS(1760), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -286083,59 +423646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [61220] = 11, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [60680] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token5, - STATE(2486), 1, + STATE(2478), 1, sym_comment, - STATE(3029), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5497), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3028), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5294), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286144,6 +423666,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5292), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286152,18 +423710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [61301] = 4, - ACTIONS(247), 1, + [60747] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2479), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286172,7 +423730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2480), 43, + ACTIONS(5249), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286185,6 +423743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -286208,20 +423775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [61368] = 4, - ACTIONS(247), 1, + [60818] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2488), 1, + STATE(2480), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286235,7 +423794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 43, + ACTIONS(2533), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286279,12 +423838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61435] = 4, - ACTIONS(247), 1, + [60885] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2481), 1, sym_comment, - ACTIONS(5208), 13, + ACTIONS(2054), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286298,7 +423857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 43, + ACTIONS(2056), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286342,30 +423901,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61502] = 10, - ACTIONS(247), 1, + [60952] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - STATE(2490), 1, + STATE(2482), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(5560), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5507), 2, + ACTIONS(5562), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, + ACTIONS(5564), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5239), 10, + ACTIONS(5269), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286374,7 +423927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 36, + ACTIONS(5267), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286387,6 +423940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -286400,6 +423954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286411,12 +423967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61581] = 4, - ACTIONS(247), 1, + [61025] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2491), 1, + STATE(2483), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5290), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286430,7 +423986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5288), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286474,23 +424030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61648] = 7, - ACTIONS(247), 1, + [61092] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2492), 1, + STATE(2484), 1, sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 11, + ACTIONS(2635), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286500,7 +424049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 39, + ACTIONS(2637), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286527,6 +424076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286540,12 +424093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61721] = 4, - ACTIONS(247), 1, + [61159] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2493), 1, + STATE(2485), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2535), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286559,7 +424112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2537), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286603,36 +424156,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61788] = 12, - ACTIONS(247), 1, + [61226] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - STATE(2494), 1, + STATE(2486), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(2539), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5507), 2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2541), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61293] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2487), 1, + sym_comment, + ACTIONS(2058), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5239), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286641,7 +424238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 32, + ACTIONS(2060), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286654,6 +424251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -286661,8 +424259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286674,12 +424282,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61871] = 4, - ACTIONS(247), 1, + [61360] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2495), 1, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token2, + STATE(2488), 1, + sym_comment, + ACTIONS(1822), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1820), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [61429] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2489), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2066), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286693,7 +424365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2068), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286737,15 +424409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61938] = 5, - ACTIONS(247), 1, + [61496] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 13, + ACTIONS(2593), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286759,7 +424428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 41, + ACTIONS(2595), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286786,6 +424455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -286801,12 +424472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62007] = 4, - ACTIONS(247), 1, + [61563] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2491), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286820,7 +424491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2474), 43, + ACTIONS(5253), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286864,12 +424535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62074] = 4, - ACTIONS(247), 1, + [61630] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2492), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2547), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286883,7 +424554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2549), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286927,88 +424598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62141] = 17, - ACTIONS(247), 1, + [61697] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - ACTIONS(5523), 1, - anon_sym_bit_DASHand2, - ACTIONS(5525), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5527), 1, - anon_sym_bit_DASHor2, - STATE(2499), 1, - sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5521), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5237), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62234] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2500), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2551), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287022,7 +424617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2553), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287066,89 +424661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62301] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - ACTIONS(5523), 1, - anon_sym_bit_DASHand2, - ACTIONS(5525), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5527), 1, - anon_sym_bit_DASHor2, - ACTIONS(5529), 1, - anon_sym_and2, - STATE(2501), 1, - sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5521), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5237), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62396] = 4, - ACTIONS(247), 1, + [61764] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2502), 1, + STATE(2494), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2070), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287162,7 +424680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2072), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287206,54 +424724,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62463] = 19, - ACTIONS(247), 1, + [61831] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5568), 1, anon_sym_DASH2, - ACTIONS(5511), 1, + ACTIONS(5570), 1, anon_sym_PLUS2, - ACTIONS(5523), 1, - anon_sym_bit_DASHand2, - ACTIONS(5525), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5527), 1, - anon_sym_bit_DASHor2, - ACTIONS(5529), 1, - anon_sym_and2, - ACTIONS(5531), 1, - anon_sym_xor2, - STATE(2503), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(5560), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5507), 2, + ACTIONS(5562), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, + ACTIONS(5564), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, + ACTIONS(5572), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + ACTIONS(5269), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5521), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287262,7 +424756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 21, + ACTIONS(5267), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287275,7 +424769,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287284,12 +424793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62560] = 4, - ACTIONS(247), 1, + [61910] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2504), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2559), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287303,7 +424812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2561), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287347,84 +424856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62627] = 13, - ACTIONS(247), 1, + [61977] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - STATE(2505), 1, - sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5237), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62712] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2506), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2468), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287438,7 +424875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2470), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287482,12 +424919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62779] = 4, - ACTIONS(247), 1, + [62044] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2507), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(2488), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287501,7 +424938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 43, + ACTIONS(2490), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287545,12 +424982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62846] = 4, - ACTIONS(247), 1, + [62111] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2563), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287564,7 +425001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2565), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287608,27 +425045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62913] = 9, - ACTIONS(247), 1, + [62178] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - STATE(2509), 1, + STATE(2500), 1, sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 10, + ACTIONS(2468), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287637,7 +425064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 38, + ACTIONS(2470), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287650,6 +425077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -287663,6 +425091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -287676,12 +425108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62990] = 4, - ACTIONS(247), 1, + [62245] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2510), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287695,7 +425127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287739,12 +425171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63057] = 4, - ACTIONS(247), 1, + [62312] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2502), 1, sym_comment, - ACTIONS(1942), 13, + ACTIONS(2492), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287758,7 +425190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1944), 43, + ACTIONS(2494), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287802,12 +425234,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63124] = 4, - ACTIONS(247), 1, + [62379] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2512), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5578), 1, + aux_sym__immediate_decimal_token5, + STATE(2503), 1, + sym_comment, + STATE(3078), 1, + sym__immediate_decimal, + ACTIONS(1786), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3077), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [62460] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2504), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287821,7 +425323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287865,25 +425367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63191] = 5, - ACTIONS(247), 1, + [62527] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5460), 1, - aux_sym__immediate_decimal_token2, - STATE(2513), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1573), 10, + ACTIONS(1510), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 45, + anon_sym_DOT, + ACTIONS(1512), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -287919,9 +425416,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287929,25 +425430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63260] = 5, - ACTIONS(247), 1, + [62594] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5533), 1, - aux_sym__immediate_decimal_token2, - STATE(2514), 1, + STATE(2506), 1, sym_comment, - ACTIONS(1681), 10, + ACTIONS(1506), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 45, + anon_sym_DOT, + ACTIONS(1508), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -287983,9 +425479,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287993,14 +425493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63329] = 5, - ACTIONS(247), 1, + [62661] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5535), 1, - anon_sym_QMARK2, - STATE(2515), 1, + STATE(2507), 1, sym_comment, - ACTIONS(978), 7, + ACTIONS(1514), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -288008,7 +425506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(980), 48, + ACTIONS(1516), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288050,6 +425548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288057,14 +425556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63398] = 5, - ACTIONS(247), 1, + [62728] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_QMARK2, - STATE(2516), 1, + STATE(2508), 1, sym_comment, - ACTIONS(984), 7, + ACTIONS(1496), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -288072,7 +425569,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(986), 48, + ACTIONS(1498), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288114,6 +425611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288121,46 +425619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63467] = 15, - ACTIONS(247), 1, + [62795] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - ACTIONS(5523), 1, - anon_sym_bit_DASHand2, - STATE(2517), 1, + STATE(2509), 1, sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, + ACTIONS(5562), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + ACTIONS(5269), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5521), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288169,7 +425641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 25, + ACTIONS(5267), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288182,9 +425654,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -288195,12 +425683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63556] = 4, - ACTIONS(247), 1, + [62864] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2518), 1, + STATE(2510), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288214,7 +425702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288258,48 +425746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63623] = 16, - ACTIONS(247), 1, + [62931] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_DASH2, - ACTIONS(5511), 1, - anon_sym_PLUS2, - ACTIONS(5523), 1, - anon_sym_bit_DASHand2, - ACTIONS(5525), 1, - anon_sym_bit_DASHxor2, - STATE(2519), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5505), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5507), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + ACTIONS(5216), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5521), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5519), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288308,7 +425765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 24, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288321,9 +425778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -288333,12 +425809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63714] = 4, - ACTIONS(247), 1, + [62998] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2512), 1, sym_comment, - ACTIONS(5180), 13, + ACTIONS(2500), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288352,7 +425828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5178), 43, + ACTIONS(2502), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288396,59 +425872,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63781] = 11, - ACTIONS(3), 1, + [63065] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5541), 1, - anon_sym_DOT_DOT2, - ACTIONS(5545), 1, - sym_filesize_unit, - ACTIONS(5547), 1, - sym_duration_unit, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token2, - STATE(2521), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2513), 1, sym_comment, - STATE(7608), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1719), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5543), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288457,6 +425910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5267), 32, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288465,19 +425943,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [63862] = 6, - ACTIONS(247), 1, + [63148] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2522), 1, + ACTIONS(5487), 1, + anon_sym_DOT, + STATE(2464), 1, + aux_sym_cell_path_repeat1, + STATE(2514), 1, sym_comment, - ACTIONS(5208), 5, + STATE(2614), 1, + sym_path, + ACTIONS(1479), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1481), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63221] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2515), 1, + sym_comment, + ACTIONS(2476), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288486,7 +426028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 20, + ACTIONS(2478), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288499,15 +426041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -288531,12 +426064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63933] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63288] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2523), 1, + STATE(2516), 1, sym_comment, - ACTIONS(5235), 13, + ACTIONS(2480), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288550,7 +426091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5233), 43, + ACTIONS(2482), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288594,264 +426135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64000] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2524), 1, - sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64067] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2525), 1, - sym_comment, - ACTIONS(994), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(996), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64134] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2526), 1, - sym_comment, - ACTIONS(998), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1000), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64201] = 4, - ACTIONS(247), 1, + [63355] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2527), 1, - sym_comment, - ACTIONS(1002), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1004), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64268] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2528), 1, + STATE(2517), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288865,7 +426154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288909,40 +426198,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64335] = 13, - ACTIONS(247), 1, + [63422] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, - aux_sym__immediate_decimal_token5, - STATE(2529), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5586), 1, + anon_sym_and2, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + ACTIONS(5592), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5594), 1, + anon_sym_bit_DASHor2, + STATE(2518), 1, sym_comment, - STATE(3024), 1, - sym__immediate_decimal, - STATE(3168), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288951,28 +426252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1557), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5267), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288981,52 +426275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64420] = 5, - ACTIONS(3), 1, + [63517] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5421), 1, - aux_sym__immediate_decimal_token2, - STATE(2530), 1, + STATE(2519), 1, sym_comment, - ACTIONS(1575), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1573), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5216), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289035,6 +426294,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5214), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289043,42 +426338,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [64489] = 13, - ACTIONS(247), 1, + [63584] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, - ACTIONS(5555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5557), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, - aux_sym__immediate_decimal_token5, - STATE(2531), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5586), 1, + anon_sym_and2, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + ACTIONS(5592), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5594), 1, + anon_sym_bit_DASHor2, + ACTIONS(5596), 1, + anon_sym_xor2, + STATE(2520), 1, sym_comment, - STATE(3017), 1, - sym__immediate_decimal, - STATE(3122), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289087,28 +426394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1659), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5267), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289117,52 +426416,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64574] = 5, - ACTIONS(3), 1, + [63681] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5563), 1, - aux_sym__immediate_decimal_token2, - STATE(2532), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1683), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1681), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2337), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2341), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63748] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2522), 1, + sym_comment, + ACTIONS(2407), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289171,6 +426498,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2409), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289179,14 +426542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [64643] = 4, - ACTIONS(247), 1, + [63815] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2533), 1, + STATE(2523), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289200,7 +426561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2432), 43, + ACTIONS(5261), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289244,12 +426605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64710] = 4, - ACTIONS(247), 1, + [63882] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2534), 1, + STATE(2524), 1, sym_comment, - ACTIONS(1887), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289263,7 +426624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1889), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289307,12 +426668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64777] = 4, - ACTIONS(247), 1, + [63949] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2535), 1, + STATE(2525), 1, sym_comment, - ACTIONS(2343), 13, + ACTIONS(2512), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289326,7 +426687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2345), 43, + ACTIONS(2514), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289370,12 +426731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64844] = 4, - ACTIONS(247), 1, + [64016] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2536), 1, + STATE(2526), 1, sym_comment, - ACTIONS(2444), 13, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289389,7 +426750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2446), 43, + ACTIONS(2036), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289433,12 +426794,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64911] = 4, - ACTIONS(247), 1, + [64083] = 13, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2537), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2527), 1, + sym_comment, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64168] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2528), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(2038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289452,7 +426885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 43, + ACTIONS(2040), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289496,12 +426929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64978] = 4, - ACTIONS(247), 1, + [64235] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2538), 1, + STATE(2529), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(2042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289515,7 +426948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 43, + ACTIONS(2044), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289559,12 +426992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65045] = 4, - ACTIONS(247), 1, + [64302] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2539), 1, + STATE(2530), 1, sym_comment, - ACTIONS(1847), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289578,7 +427011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1851), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289622,12 +427055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65112] = 4, - ACTIONS(247), 1, + [64369] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2540), 1, + STATE(2531), 1, sym_comment, - ACTIONS(2238), 13, + ACTIONS(1538), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289641,7 +427074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 43, + ACTIONS(1540), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289685,12 +427118,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65179] = 4, - ACTIONS(247), 1, + [64436] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(5521), 1, + aux_sym__immediate_decimal_token2, + STATE(2532), 1, + sym_comment, + ACTIONS(1760), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64505] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5523), 1, + anon_sym_DOLLAR, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5527), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5529), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5531), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5533), 1, + aux_sym__immediate_decimal_token5, + STATE(2533), 1, + sym_comment, + STATE(3056), 1, + sym__immediate_decimal, + STATE(3116), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1726), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64590] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2534), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(2006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289704,7 +427273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 43, + ACTIONS(2008), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289748,12 +427317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65246] = 4, - ACTIONS(247), 1, + [64657] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2542), 1, + STATE(2535), 1, sym_comment, - ACTIONS(1707), 13, + ACTIONS(5269), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289767,7 +427336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 43, + ACTIONS(5267), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289811,12 +427380,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65313] = 4, - ACTIONS(247), 1, + [64724] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2543), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5578), 1, + aux_sym__immediate_decimal_token5, + STATE(2536), 1, sym_comment, - ACTIONS(5247), 13, + STATE(3086), 1, + sym__immediate_decimal, + ACTIONS(1848), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3085), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1846), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [64805] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5578), 1, + aux_sym__immediate_decimal_token5, + STATE(2537), 1, + sym_comment, + STATE(3088), 1, + sym__immediate_decimal, + ACTIONS(1852), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3087), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1850), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [64886] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5598), 1, + aux_sym__immediate_decimal_token2, + STATE(2538), 1, + sym_comment, + ACTIONS(1820), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64955] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5578), 1, + aux_sym__immediate_decimal_token5, + STATE(2539), 1, + sym_comment, + STATE(3090), 1, + sym__immediate_decimal, + ACTIONS(1856), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5574), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3089), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1854), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [65036] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5600), 1, + anon_sym_QMARK2, + STATE(2540), 1, + sym_comment, + ACTIONS(1500), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1502), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65105] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5602), 1, + anon_sym_QMARK2, + STATE(2541), 1, + sym_comment, + ACTIONS(1490), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1492), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65174] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2542), 1, + sym_comment, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289830,7 +427801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5245), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289874,17 +427845,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65380] = 4, - ACTIONS(247), 1, + [65241] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2544), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2543), 1, sym_comment, - ACTIONS(5243), 13, - anon_sym_GT2, + ACTIONS(5560), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5269), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289893,7 +427874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5241), 43, + ACTIONS(5267), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289906,7 +427887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -289920,10 +427900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289937,12 +427913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65447] = 4, - ACTIONS(247), 1, + [65318] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2545), 1, + STATE(2544), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(2597), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289956,7 +427932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2412), 43, + ACTIONS(2599), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290000,12 +427976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65514] = 4, - ACTIONS(247), 1, + [65385] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2545), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290019,7 +427995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2416), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290063,78 +428039,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65581] = 7, - ACTIONS(247), 1, + [65452] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_DOT, - STATE(2547), 1, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + STATE(2546), 1, sym_comment, - STATE(2550), 1, - aux_sym_cell_path_repeat1, - STATE(2627), 1, - sym_path, - ACTIONS(967), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(969), 47, - sym_raw_string_begin, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 26, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65654] = 4, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65539] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2547), 1, sym_comment, - ACTIONS(2440), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290148,7 +428131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2442), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290192,12 +428175,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65721] = 4, - ACTIONS(247), 1, + [65606] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + STATE(2548), 1, + sym_comment, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5267), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65695] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(2549), 1, sym_comment, - ACTIONS(1915), 13, + ACTIONS(2601), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290211,7 +428268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1917), 43, + ACTIONS(2603), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290255,77 +428312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65788] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_DOT, - STATE(2627), 1, - sym_path, - STATE(2550), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(973), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65859] = 4, - ACTIONS(247), 1, + [65762] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2551), 1, + STATE(2550), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2605), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290339,7 +428331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 43, + ACTIONS(2607), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290383,12 +428375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65926] = 4, - ACTIONS(247), 1, + [65829] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2551), 1, sym_comment, - ACTIONS(1927), 13, + ACTIONS(5216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290402,7 +428394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1929), 43, + ACTIONS(5214), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290446,44 +428438,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65993] = 14, - ACTIONS(247), 1, + [65896] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5568), 1, anon_sym_DASH2, - ACTIONS(5511), 1, + ACTIONS(5570), 1, anon_sym_PLUS2, - STATE(2553), 1, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + ACTIONS(5592), 1, + anon_sym_bit_DASHxor2, + STATE(2552), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(5560), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5507), 2, + ACTIONS(5562), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, + ACTIONS(5564), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, + ACTIONS(5572), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + ACTIONS(5580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5521), 2, + ACTIONS(5588), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, + ACTIONS(5582), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5519), 4, + ACTIONS(5584), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290492,7 +428488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 26, + ACTIONS(5267), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290508,8 +428504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -290519,38 +428513,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66080] = 12, - ACTIONS(247), 1, + [65987] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, ACTIONS(5568), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DASH2, ACTIONS(5570), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5572), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token5, - STATE(2554), 1, + anon_sym_PLUS2, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + ACTIONS(5592), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5594), 1, + anon_sym_bit_DASHor2, + STATE(2553), 1, sym_comment, - STATE(3105), 1, - sym__immediate_decimal, - STATE(3104), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5269), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290559,28 +428565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1671), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5267), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290589,30 +428589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66162] = 9, - ACTIONS(247), 1, + [66080] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(5576), 1, - sym_filesize_unit, - ACTIONS(5578), 1, - sym_duration_unit, - ACTIONS(5580), 1, - aux_sym_unquoted_token2, - STATE(2555), 1, + STATE(2554), 1, sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 6, + ACTIONS(1526), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1719), 43, + anon_sym_DOT, + ACTIONS(1528), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290648,186 +428638,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [66238] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT, - STATE(2556), 1, - sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2749), 1, - sym_path, - STATE(2864), 1, - sym_cell_path, - ACTIONS(1749), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1747), 47, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [66312] = 8, - ACTIONS(3), 1, + [66146] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT, - STATE(2557), 1, + STATE(2555), 1, sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2749), 1, - sym_path, - STATE(2812), 1, - sym_cell_path, - ACTIONS(1737), 4, + ACTIONS(1496), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1498), 48, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1733), 47, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [66386] = 16, - ACTIONS(247), 1, + [66212] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2558), 1, + STATE(2556), 1, sym_comment, - STATE(2576), 1, - aux_sym_command_list_repeat1, STATE(3820), 1, sym__val_number_decimal, - STATE(6998), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, + STATE(4183), 1, sym_cmd_identifier, - ACTIONS(3129), 2, + STATE(4210), 1, + sym_val_string, + STATE(7729), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5625), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5310), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290862,165 +428787,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66476] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5572), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token5, - STATE(2559), 1, - sym_comment, - STATE(3150), 1, - sym__immediate_decimal, - STATE(3152), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1593), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1603), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66558] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5572), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token5, - STATE(2560), 1, - sym_comment, - STATE(3143), 1, - sym__immediate_decimal, - STATE(3101), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1675), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66640] = 8, + [66302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT, - STATE(2561), 1, + STATE(2557), 1, sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2749), 1, - sym_path, - STATE(2865), 1, - sym_cell_path, - ACTIONS(963), 4, + ACTIONS(1868), 7, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(961), 47, + ACTIONS(1866), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291068,80 +428848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [66714] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5584), 1, - anon_sym_DOT, - ACTIONS(5586), 1, - aux_sym__immediate_decimal_token2, - STATE(2562), 1, - sym_comment, - ACTIONS(1573), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66784] = 6, - ACTIONS(247), 1, + [66368] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5588), 1, + ACTIONS(5604), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5590), 1, + ACTIONS(5606), 1, aux_sym__immediate_decimal_token2, - STATE(2563), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1585), 18, + ACTIONS(1768), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -291160,7 +428877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 35, + ACTIONS(1770), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -291196,242 +428913,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66854] = 6, - ACTIONS(3), 1, + [66438] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5594), 1, - aux_sym__immediate_decimal_token2, - STATE(2564), 1, + STATE(2559), 1, sym_comment, - ACTIONS(1741), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1739), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, + ACTIONS(1760), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [66924] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2565), 1, - sym_comment, - ACTIONS(1575), 7, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 45, sym_raw_string_begin, - anon_sym_LPAREN2, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1573), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [66990] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5572), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token5, - STATE(2566), 1, - sym_comment, - STATE(3103), 1, - sym__immediate_decimal, - STATE(3151), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1679), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67072] = 16, - ACTIONS(247), 1, + [66504] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, + ACTIONS(3211), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(3217), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2567), 1, + STATE(2560), 1, sym_comment, - STATE(2576), 1, + STATE(2566), 1, aux_sym_command_list_repeat1, - STATE(3820), 1, + STATE(3804), 1, sym__val_number_decimal, - STATE(7011), 1, + STATE(7034), 1, sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, + STATE(7506), 1, sym_cmd_identifier, - ACTIONS(3129), 2, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5625), 2, + STATE(5550), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5310), 6, + ACTIONS(5346), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, + ACTIONS(5348), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291466,20 +429049,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67162] = 4, + [66594] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5608), 1, + anon_sym_DOT, + ACTIONS(5610), 1, + aux_sym__immediate_decimal_token2, + STATE(2561), 1, sym_comment, - ACTIONS(1587), 7, + ACTIONS(1874), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1585), 48, + ACTIONS(1872), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291528,20 +429113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [67228] = 4, + [66664] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2569), 1, + ACTIONS(5612), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5614), 1, + aux_sym__immediate_decimal_token2, + STATE(2562), 1, sym_comment, - ACTIONS(1683), 7, + ACTIONS(1892), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1681), 48, + ACTIONS(1890), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291590,20 +429177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [67294] = 4, + [66734] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2570), 1, + ACTIONS(5616), 1, + anon_sym_DOT, + STATE(2563), 1, sym_comment, - ACTIONS(1763), 7, + STATE(2653), 1, + aux_sym_cell_path_repeat1, + STATE(2755), 1, + sym_path, + STATE(2827), 1, + sym_cell_path, + ACTIONS(1475), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1761), 48, + ACTIONS(1473), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291651,61 +429243,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [67360] = 6, - ACTIONS(3), 1, + [66808] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5596), 1, - anon_sym_DOT, - ACTIONS(5598), 1, - aux_sym__immediate_decimal_token2, - STATE(2571), 1, + ACTIONS(5523), 1, + anon_sym_DOLLAR, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5620), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token5, + STATE(2564), 1, sym_comment, - ACTIONS(1767), 5, + STATE(3114), 1, + sym__immediate_decimal, + STATE(3113), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1786), 28, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 48, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291714,346 +429313,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [67430] = 4, - ACTIONS(247), 1, + [66890] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2572), 1, - sym_comment, - ACTIONS(1573), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, + ACTIONS(5626), 1, sym_filesize_unit, + ACTIONS(5628), 1, sym_duration_unit, + ACTIONS(5630), 1, aux_sym_unquoted_token2, - ACTIONS(1575), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(2565), 1, + sym_comment, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67496] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2573), 1, - sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 48, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67562] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2574), 1, - sym_comment, - ACTIONS(1002), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1004), 48, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67628] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2575), 1, - sym_comment, - ACTIONS(1006), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1008), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67694] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5609), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5612), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5615), 1, - anon_sym_DQUOTE, - ACTIONS(5621), 1, - sym_raw_string_begin, - STATE(3820), 1, - sym__val_number_decimal, - STATE(7516), 1, - sym_val_string, - STATE(7562), 1, - sym__command_name, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(5606), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5618), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2576), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5600), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5603), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [67782] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2577), 1, - sym_comment, - ACTIONS(1681), 10, + ACTIONS(1788), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 45, + ACTIONS(1800), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292090,8 +429373,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292099,108 +429380,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67848] = 4, - ACTIONS(247), 1, + [66966] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2578), 1, - sym_comment, - ACTIONS(994), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(996), 48, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5641), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5644), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5647), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67914] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(5653), 1, sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2579), 1, - sym_comment, - STATE(3764), 1, + STATE(3804), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(7506), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(7510), 1, sym_val_string, - STATE(8137), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, + STATE(7639), 1, + sym__command_name, + ACTIONS(5638), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + ACTIONS(5650), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2566), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5550), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5632), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5635), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292235,46 +429453,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68004] = 16, - ACTIONS(247), 1, + [67054] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3447), 1, aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2580), 1, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, + sym_raw_string_begin, + STATE(1708), 1, + sym__command_name, + STATE(2567), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, + STATE(2639), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(2652), 1, sym_val_string, - STATE(6332), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, + STATE(3800), 1, + sym__val_number_decimal, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2603), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5656), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5658), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292309,46 +429527,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68094] = 16, - ACTIONS(247), 1, + [67144] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2581), 1, + STATE(2568), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(5981), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(1506), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + anon_sym_DOT, + ACTIONS(1508), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292383,12 +429577,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68184] = 4, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67210] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2569), 1, sym_comment, - ACTIONS(1761), 10, + ACTIONS(1768), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -292399,7 +429605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1763), 45, + ACTIONS(1770), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292445,46 +429651,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68250] = 16, - ACTIONS(247), 1, + [67276] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(5048), 1, + STATE(2570), 1, + sym_comment, + ACTIONS(1770), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1768), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [67342] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(5632), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - STATE(1698), 1, - sym__command_name, - STATE(2583), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2571), 1, sym_comment, - STATE(2632), 1, - sym_val_string, - STATE(2656), 1, - sym_cmd_identifier, - STATE(3815), 1, + STATE(3820), 1, sym__val_number_decimal, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5630), 2, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(5975), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2628), 2, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5624), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5626), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292519,12 +429787,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68340] = 4, - ACTIONS(247), 1, + [67432] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2584), 1, + ACTIONS(5523), 1, + anon_sym_DOLLAR, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5620), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token5, + STATE(2572), 1, + sym_comment, + STATE(3127), 1, + sym__immediate_decimal, + STATE(3126), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1846), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1848), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67514] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2573), 1, sym_comment, - ACTIONS(1010), 7, + ACTIONS(1510), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -292532,8 +429870,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1012), 48, + ACTIONS(1512), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292571,9 +429910,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292581,21 +429919,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68406] = 4, - ACTIONS(247), 1, + [67580] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(5666), 1, + anon_sym_DOT, + ACTIONS(5668), 1, + aux_sym__immediate_decimal_token2, + STATE(2574), 1, + sym_comment, + ACTIONS(1760), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67650] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2575), 1, sym_comment, - ACTIONS(1014), 7, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6425), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292630,35 +430057,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68472] = 4, - ACTIONS(247), 1, + [67740] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2586), 1, + STATE(2576), 1, sym_comment, - ACTIONS(998), 7, + ACTIONS(1820), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1000), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292693,11 +430109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292705,24 +430119,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68538] = 5, - ACTIONS(247), 1, + [67806] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_QMARK2, - STATE(2587), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2577), 1, sym_comment, - ACTIONS(978), 7, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(5975), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(980), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292757,25 +430193,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + [67896] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5523), 1, + anon_sym_DOLLAR, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5620), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, + sym_comment, + STATE(3129), 1, + sym__immediate_decimal, + STATE(3128), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1850), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1852), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68606] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [67978] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5636), 1, + ACTIONS(5670), 1, anon_sym_QMARK2, - STATE(2588), 1, + STATE(2579), 1, sym_comment, - ACTIONS(984), 7, + ACTIONS(1500), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -292783,7 +430278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(986), 47, + ACTIONS(1502), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292831,46 +430326,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68674] = 16, - ACTIONS(247), 1, + [68046] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3449), 1, aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2589), 1, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, + sym_raw_string_begin, + STATE(1708), 1, + sym__command_name, + STATE(2580), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, + STATE(2639), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(2652), 1, sym_val_string, - STATE(8137), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, + STATE(3800), 1, + sym__val_number_decimal, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2603), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5656), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5658), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292905,46 +430400,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68764] = 16, - ACTIONS(247), 1, + [68136] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5523), 1, + anon_sym_DOLLAR, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5620), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token5, + STATE(2581), 1, + sym_comment, + STATE(3131), 1, + sym__immediate_decimal, + STATE(3130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1854), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2590), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6332), 1, - sym__command_name, - ACTIONS(4003), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1856), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68218] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2582), 1, + sym_comment, + ACTIONS(1866), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1868), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292979,46 +430522,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68854] = 16, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68284] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3447), 1, aux_sym_record_entry_token1, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2591), 1, + STATE(2583), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(5981), 1, + STATE(6425), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293053,46 +430606,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68944] = 16, - ACTIONS(247), 1, + [68374] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, + ACTIONS(3211), 1, anon_sym_DQUOTE, - ACTIONS(5632), 1, + ACTIONS(3217), 1, sym_raw_string_begin, - STATE(1698), 1, - sym__command_name, - STATE(2592), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2566), 1, + aux_sym_command_list_repeat1, + STATE(2584), 1, sym_comment, - STATE(2632), 1, - sym_val_string, - STATE(2656), 1, - sym_cmd_identifier, - STATE(3815), 1, + STATE(3804), 1, sym__val_number_decimal, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5630), 2, + STATE(7434), 1, + sym__command_name, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2628), 2, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5624), 6, + ACTIONS(5346), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5626), 34, + ACTIONS(5348), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293127,46 +430680,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69034] = 16, - ACTIONS(247), 1, + [68464] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(5616), 1, + anon_sym_DOT, + STATE(2585), 1, + sym_comment, + STATE(2653), 1, + aux_sym_cell_path_repeat1, + STATE(2755), 1, + sym_path, + STATE(2819), 1, + sym_cell_path, + ACTIONS(1884), 4, sym_raw_string_begin, - ACTIONS(5048), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1880), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2576), 1, - aux_sym_command_list_repeat1, - STATE(2593), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(7059), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [68538] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2586), 1, + sym_comment, + ACTIONS(1518), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, + anon_sym_DOT, + ACTIONS(1520), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293201,46 +430795,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69124] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2576), 1, - aux_sym_command_list_repeat1, - STATE(2594), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(7244), 1, - sym__command_name, - STATE(7516), 1, - sym_val_string, - STATE(7649), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5310), 6, + [68604] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2587), 1, + sym_comment, + ACTIONS(1514), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5312), 34, + anon_sym_DOT, + ACTIONS(1516), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293275,23 +430858,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69214] = 4, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68670] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2595), 1, + ACTIONS(5616), 1, + anon_sym_DOT, + STATE(2588), 1, + sym_comment, + STATE(2653), 1, + aux_sym_cell_path_repeat1, + STATE(2755), 1, + sym_path, + STATE(2821), 1, + sym_cell_path, + ACTIONS(1888), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1886), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [68744] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2589), 1, sym_comment, - ACTIONS(1585), 10, + ACTIONS(1522), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 45, + anon_sym_DOT, + ACTIONS(1524), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293327,54 +430985,257 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68810] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2590), 1, + sym_comment, + ACTIONS(1762), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1760), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69280] = 15, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [68876] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2591), 1, + sym_comment, + ACTIONS(1822), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1820), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [68942] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3657), 1, + ACTIONS(3211), 1, anon_sym_DQUOTE, - ACTIONS(3667), 1, + ACTIONS(3217), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2596), 1, + STATE(2566), 1, + aux_sym_command_list_repeat1, + STATE(2592), 1, sym_comment, - STATE(3764), 1, + STATE(3804), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(7164), 1, + sym__command_name, + STATE(7506), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(7510), 1, sym_val_string, - STATE(4816), 1, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5348), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [69032] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2566), 1, + aux_sym_command_list_repeat1, + STATE(2593), 1, + sym_comment, + STATE(3804), 1, + sym__val_number_decimal, + STATE(7260), 1, sym__command_name, - ACTIONS(3659), 2, + STATE(7506), 1, + sym_cmd_identifier, + STATE(7510), 1, + sym_val_string, + ACTIONS(3213), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4721), 2, + STATE(5550), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5346), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5348), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293409,20 +431270,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69367] = 4, - ACTIONS(247), 1, + [69122] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2597), 1, + ACTIONS(5672), 1, + anon_sym_QMARK2, + STATE(2594), 1, sym_comment, - ACTIONS(5054), 6, + ACTIONS(1490), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5052), 48, + anon_sym_DOT, + ACTIONS(1492), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293460,8 +431325,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -293470,20 +431333,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69432] = 4, - ACTIONS(247), 1, + [69190] = 16, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2598), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2595), 1, sym_comment, - ACTIONS(5064), 6, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(7729), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5062), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293518,57 +431407,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69497] = 15, - ACTIONS(247), 1, + [69280] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2599), 1, + STATE(2596), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(7777), 1, + STATE(8038), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293603,44 +431479,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69584] = 15, - ACTIONS(247), 1, + [69367] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2600), 1, + STATE(2597), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(5981), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5032), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293675,44 +431527,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69671] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, anon_sym_DQUOTE, - ACTIONS(5632), 1, - sym_raw_string_begin, - STATE(1698), 1, - sym__command_name, - STATE(2601), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [69432] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5674), 1, + anon_sym_DOT, + STATE(2755), 1, + sym_path, + STATE(2598), 2, sym_comment, - STATE(2632), 1, - sym_val_string, - STATE(2656), 1, - sym_cmd_identifier, - STATE(3815), 1, - sym__val_number_decimal, - ACTIONS(5046), 2, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1483), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5630), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2628), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5624), 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [69501] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2599), 1, + sym_comment, + ACTIONS(1518), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5626), 34, + anon_sym_DOT, + ACTIONS(1520), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293747,44 +431653,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69758] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2602), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6757), 1, - sym__command_name, - ACTIONS(4003), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + [69566] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2600), 1, + sym_comment, + ACTIONS(1496), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(1498), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293819,19 +431712,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69845] = 4, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69631] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2603), 1, + STATE(2601), 1, sym_comment, - ACTIONS(994), 6, + ACTIONS(5677), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(996), 48, + ACTIONS(5679), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293880,44 +431786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69910] = 15, - ACTIONS(247), 1, + [69696] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2604), 1, + STATE(2602), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(4816), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(1522), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + anon_sym_DOT, + ACTIONS(1524), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293952,19 +431836,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69997] = 4, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69761] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2605), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1044), 6, + ACTIONS(1510), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 48, + ACTIONS(1512), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294013,44 +431908,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70062] = 15, - ACTIONS(247), 1, + [69826] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2606), 1, + STATE(2604), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6352), 1, + STATE(8124), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294085,44 +431980,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70149] = 15, - ACTIONS(247), 1, + [69913] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2607), 1, + STATE(2605), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(7823), 1, + STATE(8112), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294157,106 +432052,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70236] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym__immediate_decimal_token2, - STATE(2608), 1, - sym_comment, - ACTIONS(1573), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70303] = 15, - ACTIONS(247), 1, + [70000] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2609), 1, + STATE(2606), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(8051), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5681), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5683), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294291,44 +432100,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70390] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2610), 1, - sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6227), 1, - sym__command_name, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - ACTIONS(111), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5087), 6, + [70065] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2607), 1, + sym_comment, + ACTIONS(2480), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(2482), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294363,44 +432161,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70477] = 15, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70130] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2611), 1, + STATE(2608), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6298), 1, + STATE(7985), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294435,20 +432246,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70564] = 4, - ACTIONS(247), 1, + [70217] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2612), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2609), 1, sym_comment, - ACTIONS(1002), 6, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(5845), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1004), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294483,57 +432318,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70629] = 15, + [70304] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2613), 1, + STATE(2610), 1, sym_comment, - STATE(3833), 1, + STATE(3812), 1, sym__val_number_decimal, - STATE(6080), 1, - sym__command_name, - STATE(6276), 1, + STATE(6274), 1, sym_cmd_identifier, - STATE(6277), 1, + STATE(6275), 1, sym_val_string, + STATE(6894), 1, + sym__command_name, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2093), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294568,20 +432390,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70716] = 4, - ACTIONS(247), 1, + [70391] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2614), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2611), 1, sym_comment, - ACTIONS(998), 6, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(6908), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1000), 48, - sym_raw_string_begin, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294616,27 +432462,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70781] = 5, - ACTIONS(247), 1, + [70478] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token2, - STATE(2615), 1, + ACTIONS(5685), 1, + anon_sym_DOT, + STATE(2612), 1, sym_comment, - ACTIONS(1681), 18, + STATE(2701), 1, + aux_sym_cell_path_repeat1, + STATE(2831), 1, + sym_path, + STATE(2889), 1, + sym_cell_path, + ACTIONS(1473), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -294654,8 +432493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 35, + ACTIONS(1475), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -294677,8 +432515,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -294691,106 +432527,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70848] = 5, - ACTIONS(3), 1, + [70551] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5598), 1, - aux_sym__immediate_decimal_token2, - STATE(2616), 1, + STATE(2613), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(2240), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2242), 48, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 48, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [70915] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, + [70616] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2617), 1, + STATE(2614), 1, sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - STATE(7273), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(1526), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + anon_sym_DOT, + ACTIONS(1528), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294825,44 +432638,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71002] = 15, - ACTIONS(109), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [70681] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2618), 1, + STATE(2615), 1, sym_comment, - STATE(3833), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(6276), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(6277), 1, + STATE(4210), 1, sym_val_string, - STATE(7276), 1, + STATE(7729), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2093), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294897,44 +432721,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71089] = 15, - ACTIONS(247), 1, + [70768] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2619), 1, + STATE(2616), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6796), 1, + STATE(6425), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294969,20 +432793,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71176] = 4, - ACTIONS(247), 1, + [70855] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2620), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2617), 1, sym_comment, - ACTIONS(2464), 6, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6461), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295017,33 +432865,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70942] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2618), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6527), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [71241] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2621), 1, - sym_comment, - ACTIONS(2464), 6, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295078,57 +432937,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71306] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, + [71029] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2622), 1, + STATE(2619), 1, sym_comment, - STATE(3833), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_cmd_identifier, - STATE(6277), 1, - sym_val_string, - STATE(7256), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(1556), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(1558), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295163,44 +432985,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71393] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5644), 1, anon_sym_DQUOTE, - ACTIONS(5648), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [71094] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, sym_raw_string_begin, - STATE(2623), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2620), 1, sym_comment, - STATE(3824), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(5654), 1, - sym__command_name, - STATE(5669), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(5672), 1, + STATE(4210), 1, sym_val_string, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5646), 2, + STATE(6565), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5539), 2, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5640), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5642), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295235,20 +433070,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71480] = 4, - ACTIONS(247), 1, + [71181] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2621), 1, sym_comment, - ACTIONS(2486), 6, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6460), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2488), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295283,33 +433142,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [71268] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2622), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(5003), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [71545] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2625), 1, - sym_comment, - ACTIONS(2510), 6, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2512), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295344,57 +433214,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71610] = 15, - ACTIONS(247), 1, + [71355] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2626), 1, + STATE(2623), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(7996), 1, + STATE(6718), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295429,22 +433286,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71697] = 4, - ACTIONS(247), 1, + [71442] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2624), 1, sym_comment, - ACTIONS(1006), 7, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6719), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1008), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295479,31 +433358,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [71529] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5691), 1, anon_sym_DQUOTE, + ACTIONS(5695), 1, + sym_raw_string_begin, + STATE(1749), 1, + sym__command_name, + STATE(2625), 1, + sym_comment, + STATE(2696), 1, + sym_val_string, + STATE(2745), 1, + sym_cmd_identifier, + STATE(3736), 1, + sym__val_number_decimal, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5693), 2, sym__str_single_quotes, sym__str_back_ticks, - [71762] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2628), 1, - sym_comment, - ACTIONS(990), 6, + STATE(2700), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5687), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(992), 48, - sym_raw_string_begin, + ACTIONS(5689), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295538,57 +433430,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71827] = 15, - ACTIONS(109), 1, + [71616] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3669), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(3679), 1, sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2629), 1, + STATE(2626), 1, sym_comment, - STATE(3833), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(6276), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(6277), 1, + STATE(4210), 1, sym_val_string, - STATE(6881), 1, + STATE(5003), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(3671), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2093), 2, + STATE(4712), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295623,44 +433502,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71914] = 15, - ACTIONS(247), 1, + [71703] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5697), 1, + aux_sym__immediate_decimal_token2, + STATE(2627), 1, + sym_comment, + ACTIONS(1820), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71770] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(5699), 1, + aux_sym__immediate_decimal_token2, + STATE(2628), 1, + sym_comment, + ACTIONS(1921), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1919), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [71837] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2630), 1, + STATE(2629), 1, sym_comment, - STATE(3764), 1, + STATE(3812), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(6088), 1, + sym__command_name, + STATE(6274), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(6275), 1, sym_val_string, - STATE(6397), 1, - sym__command_name, - ACTIONS(4003), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295695,44 +433698,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72001] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, + [71924] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2631), 1, + STATE(2630), 1, sym_comment, - STATE(3764), 1, + STATE(3812), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(6274), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(6275), 1, sym_val_string, - STATE(6398), 1, + STATE(7179), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295767,19 +433770,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72088] = 4, - ACTIONS(247), 1, + [72011] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2632), 1, + STATE(2631), 1, sym_comment, - ACTIONS(5650), 6, + ACTIONS(1514), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5652), 48, + ACTIONS(1516), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295828,105 +433831,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72153] = 4, - ACTIONS(247), 1, + [72076] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2633), 1, - sym_comment, - ACTIONS(2347), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2349), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72218] = 15, - ACTIONS(109), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2634), 1, + STATE(2632), 1, sym_comment, - STATE(3833), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(6276), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(6277), 1, + STATE(4210), 1, sym_val_string, - STATE(7262), 1, + STATE(6745), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2093), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295961,109 +433903,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72305] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_DOT, - STATE(2635), 1, - sym_comment, - STATE(2676), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2913), 1, - sym_cell_path, - ACTIONS(961), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(963), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72378] = 15, - ACTIONS(247), 1, + [72163] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2636), 1, + STATE(2633), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6507), 1, + STATE(7841), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296098,50 +433975,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72465] = 8, - ACTIONS(247), 1, + [72250] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_DOT, - STATE(2637), 1, + ACTIONS(5610), 1, + aux_sym__immediate_decimal_token2, + STATE(2634), 1, sym_comment, - STATE(2676), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2897), 1, - sym_cell_path, - ACTIONS(1747), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1749), 33, + ACTIONS(1874), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1872), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -296151,40 +434012,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72538] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_DOT, - STATE(2638), 1, - sym_comment, - STATE(2676), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - STATE(2915), 1, - sym_cell_path, - ACTIONS(1733), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296193,33 +434027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1737), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296228,44 +434035,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72611] = 15, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [72317] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2639), 1, + STATE(2635), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(5799), 1, + STATE(7832), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296300,83 +434109,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72698] = 4, - ACTIONS(247), 1, + [72404] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2640), 1, - sym_comment, - ACTIONS(1010), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1012), 47, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2636), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(6675), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [72763] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2641), 1, - sym_comment, - ACTIONS(1014), 7, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296411,31 +434181,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [72491] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2637), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(8019), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [72828] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2642), 1, - sym_comment, - ACTIONS(5656), 6, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5658), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296470,57 +434253,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72893] = 15, - ACTIONS(109), 1, + [72578] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2643), 1, + STATE(2638), 1, sym_comment, - STATE(3833), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(6276), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(6277), 1, + STATE(4210), 1, sym_val_string, - STATE(7185), 1, + STATE(7739), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2093), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5087), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5089), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296555,19 +434325,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72980] = 4, - ACTIONS(247), 1, + [72665] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2639), 1, sym_comment, - ACTIONS(5660), 6, + ACTIONS(5701), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5662), 48, + ACTIONS(5703), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296616,44 +434386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73045] = 15, - ACTIONS(247), 1, + [72730] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2645), 1, + STATE(2640), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(8137), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5705), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5707), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296688,116 +434434,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73132] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2646), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6332), 1, - sym__command_name, - ACTIONS(4003), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [73219] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, + [72795] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2647), 1, + STATE(2641), 1, sym_comment, - STATE(3764), 1, + STATE(3812), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(6042), 1, + sym__command_name, + STATE(6274), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(6275), 1, sym_val_string, - STATE(7818), 1, - sym__command_name, - ACTIONS(4003), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296832,44 +434519,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73306] = 15, - ACTIONS(247), 1, + [72882] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(5685), 1, + anon_sym_DOT, + STATE(2642), 1, + sym_comment, + STATE(2701), 1, + aux_sym_cell_path_repeat1, + STATE(2831), 1, + sym_path, + STATE(2903), 1, + sym_cell_path, + ACTIONS(1880), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1884), 33, sym_raw_string_begin, - ACTIONS(5048), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2648), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(6378), 1, - sym__command_name, - ACTIONS(4003), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72955] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2643), 1, + sym_comment, + ACTIONS(5709), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5711), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296904,44 +434632,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73393] = 15, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73020] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5668), 1, + ACTIONS(5660), 1, anon_sym_DQUOTE, - ACTIONS(5672), 1, + ACTIONS(5664), 1, sym_raw_string_begin, - STATE(1759), 1, + STATE(1708), 1, sym__command_name, - STATE(2649), 1, - sym_comment, - STATE(2726), 1, + STATE(2639), 1, sym_cmd_identifier, - STATE(2727), 1, + STATE(2644), 1, + sym_comment, + STATE(2652), 1, sym_val_string, - STATE(3752), 1, + STATE(3800), 1, sym__val_number_decimal, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5670), 2, + ACTIONS(5662), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2722), 2, + STATE(2603), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5664), 6, + ACTIONS(5656), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5666), 34, + ACTIONS(5658), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296976,19 +434717,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73480] = 4, - ACTIONS(247), 1, + [73107] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2650), 1, + ACTIONS(5668), 1, + aux_sym__immediate_decimal_token2, + STATE(2645), 1, + sym_comment, + ACTIONS(1760), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73174] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2646), 1, sym_comment, - ACTIONS(1733), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1737), 48, + ACTIONS(2470), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297037,50 +434840,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73545] = 5, - ACTIONS(3), 1, + [73239] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5674), 1, - aux_sym__immediate_decimal_token2, - STATE(2651), 1, + ACTIONS(5685), 1, + anon_sym_DOT, + STATE(2647), 1, sym_comment, - ACTIONS(1787), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2701), 1, + aux_sym_cell_path_repeat1, + STATE(2831), 1, + sym_path, + STATE(2886), 1, + sym_cell_path, + ACTIONS(1886), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297089,47 +434870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [73612] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT, - STATE(2652), 1, - sym_comment, - STATE(2653), 1, - aux_sym_cell_path_repeat1, - STATE(2749), 1, - sym_path, - ACTIONS(969), 4, + ACTIONS(1888), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(967), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -297139,21 +434893,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297162,108 +434905,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73683] = 6, - ACTIONS(3), 1, + [73312] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_DOT, - STATE(2749), 1, - sym_path, - STATE(2653), 2, + STATE(2648), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 4, + ACTIONS(1506), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1508), 48, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(971), 47, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73752] = 15, - ACTIONS(247), 1, + [73377] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2654), 1, + STATE(2649), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(6756), 1, + STATE(7746), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297298,19 +435038,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73839] = 4, - ACTIONS(247), 1, + [73464] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2655), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5679), 6, + ACTIONS(2492), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5681), 48, + ACTIONS(2494), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297359,19 +435099,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73904] = 4, - ACTIONS(247), 1, + [73529] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2656), 1, + STATE(2651), 1, + sym_comment, + ACTIONS(2468), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2470), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73594] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2652), 1, sym_comment, - ACTIONS(5683), 6, + ACTIONS(5713), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5685), 48, + ACTIONS(5715), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297420,19 +435221,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73969] = 4, - ACTIONS(247), 1, + [73659] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5616), 1, + anon_sym_DOT, + STATE(2598), 1, + aux_sym_cell_path_repeat1, + STATE(2653), 1, + sym_comment, + STATE(2755), 1, + sym_path, + ACTIONS(1481), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1479), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [73730] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2654), 1, sym_comment, - ACTIONS(5687), 6, + ACTIONS(2496), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5689), 48, + ACTIONS(2498), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297481,20 +435346,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74034] = 4, - ACTIONS(247), 1, + [73795] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2658), 1, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2655), 1, sym_comment, - ACTIONS(2052), 6, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(8132), 1, + sym__command_name, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2054), 48, - sym_raw_string_begin, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297529,57 +435418,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74099] = 15, - ACTIONS(247), 1, + [73882] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2659), 1, + STATE(2656), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(8052), 1, + STATE(7717), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297614,44 +435490,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74186] = 15, - ACTIONS(247), 1, + [73969] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2660), 1, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + STATE(2657), 1, sym_comment, - STATE(3764), 1, + STATE(3808), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(5668), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(5669), 1, sym_val_string, - STATE(7922), 1, + STATE(5722), 1, sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5717), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5719), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297686,44 +435562,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74273] = 15, - ACTIONS(247), 1, + [74056] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, - aux_sym__val_number_decimal_token4, - STATE(2661), 1, + STATE(2658), 1, sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(8166), 1, - sym__command_name, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(2476), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(2478), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297758,44 +435610,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74360] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(5048), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2662), 1, - sym_comment, - STATE(3764), 1, - sym__val_number_decimal, - STATE(4154), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym_val_string, - STATE(7790), 1, - sym__command_name, - ACTIONS(4003), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5036), 6, + [74121] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2659), 1, + sym_comment, + ACTIONS(5727), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5729), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297830,20 +435671,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74447] = 4, - ACTIONS(247), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74186] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2663), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2660), 1, sym_comment, - ACTIONS(5691), 6, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(7194), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5693), 48, - sym_raw_string_begin, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297878,57 +435756,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74512] = 15, - ACTIONS(247), 1, + [74273] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2664), 1, + STATE(2661), 1, sym_comment, - STATE(3764), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(4183), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(4210), 1, sym_val_string, - STATE(8154), 1, + STATE(6678), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297963,44 +435828,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74599] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4001), 1, + [74360] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(5048), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5050), 1, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - STATE(2665), 1, + STATE(2662), 1, sym_comment, - STATE(3764), 1, + STATE(3812), 1, sym__val_number_decimal, - STATE(4154), 1, + STATE(6274), 1, sym_cmd_identifier, - STATE(4161), 1, + STATE(6275), 1, sym_val_string, - STATE(7716), 1, + STATE(7195), 1, sym__command_name, - ACTIONS(4003), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5046), 2, + ACTIONS(5088), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4332), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5036), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5038), 34, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298035,19 +435900,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74686] = 4, - ACTIONS(247), 1, + [74447] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2666), 1, + STATE(2663), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(5046), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 48, + ACTIONS(5044), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298096,85 +435961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74751] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(5695), 1, - anon_sym_DOT_DOT2, - STATE(2667), 1, - sym_comment, - ACTIONS(1828), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5697), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74823] = 4, - ACTIONS(247), 1, + [74512] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2668), 1, + STATE(2664), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(1886), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1000), 47, + ACTIONS(1888), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298212,6 +436012,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -298220,21 +436022,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74887] = 4, - ACTIONS(247), 1, + [74577] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2669), 1, + ACTIONS(5090), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, + aux_sym__val_number_decimal_token4, + STATE(2665), 1, sym_comment, - ACTIONS(1733), 6, + STATE(3812), 1, + sym__val_number_decimal, + STATE(6274), 1, + sym_cmd_identifier, + STATE(6275), 1, + sym_val_string, + STATE(7427), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2130), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1737), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5122), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298269,32 +436094,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [74664] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(5090), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5092), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2666), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(4183), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym_val_string, + STATE(5975), 1, + sym__command_name, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - [74951] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2670), 1, - sym_comment, - ACTIONS(1044), 6, + ACTIONS(5088), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5080), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298329,30 +436166,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75015] = 4, - ACTIONS(247), 1, + [74751] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2671), 1, + STATE(2667), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(2496), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 47, + ACTIONS(2498), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -298400,208 +436226,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75079] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2337), 1, - sym_raw_string_begin, - ACTIONS(5699), 1, - sym__entry_separator, - STATE(2672), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2332), 50, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75145] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_RBRACK, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(5708), 1, - sym_raw_string_begin, - STATE(2672), 1, - aux_sym__multiple_types_repeat1, - STATE(2673), 1, - sym_comment, - ACTIONS(5702), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75215] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(5708), 1, - sym_raw_string_begin, - ACTIONS(5710), 1, - anon_sym_RBRACK, - STATE(2672), 1, - aux_sym__multiple_types_repeat1, - STATE(2674), 1, - sym_comment, - ACTIONS(5702), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75285] = 4, - ACTIONS(247), 1, + [74815] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2675), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2668), 1, sym_comment, - ACTIONS(1002), 6, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2965), 1, + sym_cell_path, + ACTIONS(2171), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1004), 47, + ACTIONS(2173), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298636,10 +436282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298647,26 +436290,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75349] = 7, - ACTIONS(247), 1, + [74887] = 30, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_DOT, - STATE(2676), 1, - sym_comment, - STATE(2678), 1, - aux_sym_cell_path_repeat1, - STATE(2801), 1, - sym_path, - ACTIONS(967), 17, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, + sym_raw_string_begin, + ACTIONS(5733), 1, + anon_sym_LPAREN, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(5737), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5745), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5747), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5749), 1, + aux_sym_unquoted_token1, + STATE(2646), 1, + sym__inter_single_quotes, + STATE(2651), 1, + sym__inter_double_quotes, + STATE(2669), 1, + sym_comment, + STATE(6020), 1, + sym__val_number_decimal, + STATE(7920), 1, + sym_val_bool, + STATE(8118), 1, + sym__val_range, + STATE(8123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5739), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2603), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5741), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1707), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298675,33 +436366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(969), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2765), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298710,16 +436376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75419] = 6, - ACTIONS(247), 1, + [75003] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5712), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5714), 1, - aux_sym__immediate_decimal_token2, - STATE(2677), 1, + STATE(2670), 1, sym_comment, - ACTIONS(1739), 18, + ACTIONS(1768), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -298738,7 +436400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1770), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -298760,6 +436422,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -298772,25 +436436,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75487] = 6, - ACTIONS(247), 1, + [75067] = 31, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_DOT, - STATE(2801), 1, - sym_path, - STATE(2678), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 17, + ACTIONS(3397), 1, + aux_sym_unquoted_token1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(4201), 1, + anon_sym_DOLLAR, + ACTIONS(4203), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5751), 1, + anon_sym_LPAREN, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(2671), 1, + sym_comment, + STATE(5941), 1, + sym__val_number_decimal, + STATE(6345), 1, + sym_unquoted, + STATE(7747), 1, + sym__val_range, + STATE(7793), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5753), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6344), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298799,33 +436513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(973), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2765), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298834,19 +436523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75555] = 4, - ACTIONS(247), 1, + [75185] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2679), 1, + STATE(2672), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(1514), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2349), 47, + ACTIONS(1516), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -298894,321 +436583,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75619] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(1573), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75683] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2681), 1, - sym_comment, - ACTIONS(1585), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75747] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2682), 1, - sym_comment, - ACTIONS(1681), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75811] = 9, - ACTIONS(247), 1, + [75249] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5719), 1, - anon_sym_DOT_DOT2, - ACTIONS(5723), 1, - sym_filesize_unit, - ACTIONS(5725), 1, - sym_duration_unit, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token2, - STATE(2683), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2673), 1, sym_comment, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1719), 31, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2960), 1, + sym_cell_path, + ACTIONS(2018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2020), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75885] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2684), 1, - sym_comment, - ACTIONS(1761), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1763), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75949] = 6, - ACTIONS(247), 1, + [75321] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(5731), 1, + ACTIONS(5757), 1, aux_sym__immediate_decimal_token2, - STATE(2685), 1, + STATE(2674), 1, sym_comment, - ACTIONS(1765), 18, + ACTIONS(1872), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -299227,7 +436675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -299261,84 +436709,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [76017] = 4, - ACTIONS(3), 1, + [75389] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2686), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2675), 1, sym_comment, - ACTIONS(1767), 5, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2961), 1, + sym_cell_path, + ACTIONS(2022), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2024), 43, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76081] = 8, + [75461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5733), 1, - anon_sym_DOT_DOT2, - STATE(2687), 1, + ACTIONS(5759), 1, + anon_sym_QMARK2, + STATE(2676), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1502), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5735), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 46, + sym__entry_separator, + ACTIONS(1500), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299346,6 +436793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -299385,18 +436834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76153] = 4, + [75527] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2688), 1, + ACTIONS(5761), 1, + anon_sym_QMARK2, + STATE(2677), 1, sym_comment, - ACTIONS(1741), 5, + ACTIONS(1492), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1739), 48, + ACTIONS(1490), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299405,6 +436855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -299444,32 +436895,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76217] = 4, - ACTIONS(3), 1, + [75593] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2689), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2678), 1, sym_comment, - ACTIONS(1787), 5, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2969), 1, + sym_cell_path, + ACTIONS(2046), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2048), 43, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75665] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5765), 1, + anon_sym_RBRACK, + ACTIONS(5767), 1, sym__entry_separator, - ACTIONS(1785), 48, + ACTIONS(5769), 1, + sym_raw_string_begin, + STATE(2679), 1, + sym_comment, + STATE(2720), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5763), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299487,6 +437002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299504,141 +437022,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76281] = 4, - ACTIONS(3), 1, + [75735] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2690), 1, + STATE(2680), 1, sym_comment, - ACTIONS(1843), 5, + ACTIONS(2476), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2478), 47, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1841), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76345] = 5, - ACTIONS(3), 1, + [75799] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5737), 1, - anon_sym_QMARK2, - STATE(2691), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2681), 1, sym_comment, - ACTIONS(980), 4, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2928), 1, + sym_cell_path, + ACTIONS(2050), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2052), 43, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(978), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75871] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2682), 1, + sym_comment, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2971), 1, + sym_cell_path, + ACTIONS(2054), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2056), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76411] = 5, + [75943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5739), 1, - anon_sym_QMARK2, - STATE(2692), 1, + STATE(2683), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(1892), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(984), 48, + ACTIONS(1890), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299647,7 +437230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -299687,195 +437269,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76477] = 33, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [76007] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - anon_sym_LPAREN, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(3109), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2684), 1, + sym_comment, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2974), 1, + sym_cell_path, + ACTIONS(2066), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2068), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3111), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3113), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3115), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3121), 1, - anon_sym_0b, - ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [76079] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_comment, + ACTIONS(5705), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5707), 47, sym_raw_string_begin, - ACTIONS(3137), 1, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LBRACE, - ACTIONS(5743), 1, - anon_sym_DOT_DOT, - ACTIONS(5747), 1, - anon_sym_null, - ACTIONS(5751), 1, - sym_val_date, - STATE(2693), 1, - sym_comment, - STATE(5655), 1, - sym__val_number_decimal, - STATE(5790), 1, - sym_val_variable, - STATE(6083), 1, - sym_expr_parenthesized, - STATE(6878), 1, - sym__val_number, - STATE(7238), 1, - sym__inter_single_quotes, - STATE(7239), 1, - sym__inter_double_quotes, - STATE(7538), 1, - sym_block, - ACTIONS(3123), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3129), 2, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5745), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5749), 2, - anon_sym_true, - anon_sym_false, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7541), 2, - sym_val_range, - sym__value, - ACTIONS(3117), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7142), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [76599] = 33, - ACTIONS(247), 1, + [76143] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - anon_sym_LPAREN, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(3109), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2686), 1, + sym_comment, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2972), 1, + sym_cell_path, + ACTIONS(2058), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2060), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3111), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3113), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3115), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3121), 1, - anon_sym_0b, - ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(3137), 1, - anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LBRACE, - ACTIONS(5743), 1, - anon_sym_DOT_DOT, - ACTIONS(5747), 1, - anon_sym_null, - ACTIONS(5751), 1, - sym_val_date, - STATE(2694), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [76215] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2687), 1, sym_comment, - STATE(5655), 1, - sym__val_number_decimal, - STATE(5790), 1, - sym_val_variable, - STATE(6085), 1, - sym_expr_parenthesized, - STATE(6878), 1, - sym__val_number, - STATE(7238), 1, - sym__inter_single_quotes, - STATE(7239), 1, - sym__inter_double_quotes, - STATE(7542), 1, - sym_block, - ACTIONS(3123), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3129), 2, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2973), 1, + sym_cell_path, + ACTIONS(2062), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2064), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5745), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5749), 2, - anon_sym_true, - anon_sym_false, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7544), 2, - sym_val_range, - sym__value, - ACTIONS(3117), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7142), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [76721] = 4, + [76287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2695), 1, + STATE(2688), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(1921), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(990), 49, + ACTIONS(1919), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299883,9 +437541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -299925,49 +437581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76785] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [76351] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2696), 1, + STATE(2689), 1, sym_comment, - ACTIONS(996), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(994), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1820), 18, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299976,42 +437604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76849] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, - sym_comment, - ACTIONS(1000), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 35, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(998), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300021,21 +437628,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300044,28 +437642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76913] = 4, + [76415] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, - sym_comment, - ACTIONS(1004), 4, + ACTIONS(5773), 1, + anon_sym_RBRACK, + ACTIONS(5776), 1, + anon_sym_DOT, + ACTIONS(5778), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(2690), 1, + sym_comment, + STATE(6023), 1, + aux_sym_cell_path_repeat1, + STATE(6814), 1, + sym_path, + STATE(7206), 1, + sym_cell_path, + ACTIONS(1998), 2, sym__entry_separator, - ACTIONS(1002), 49, + sym__table_head_separator, + ACTIONS(5771), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -300105,21 +437708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76977] = 6, + [76491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5753), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5755), 1, - aux_sym__immediate_decimal_token2, - STATE(2699), 1, + STATE(2691), 1, sym_comment, - ACTIONS(1741), 4, + ACTIONS(1512), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1739), 47, + ACTIONS(1510), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300127,7 +437726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -300167,27 +437768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77045] = 8, - ACTIONS(247), 1, + [76555] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2700), 1, + STATE(2692), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2968), 1, + STATE(2966), 1, sym_cell_path, - ACTIONS(1867), 6, + ACTIONS(2038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1869), 43, + ACTIONS(2040), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300231,35 +437832,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77117] = 6, - ACTIONS(3), 1, + [76627] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5759), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - aux_sym__immediate_decimal_token2, - STATE(2701), 1, + ACTIONS(5780), 1, + anon_sym_DOT_DOT2, + ACTIONS(5784), 1, + sym_filesize_unit, + ACTIONS(5786), 1, + sym_duration_unit, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token2, + STATE(2693), 1, sym_comment, - ACTIONS(1767), 4, - sym_raw_string_begin, + ACTIONS(5782), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(1788), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1800), 31, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300269,21 +437885,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300292,82 +437897,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77185] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2702), 1, - sym_comment, - ACTIONS(5064), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5062), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77249] = 4, - ACTIONS(247), 1, + [76701] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2703), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2694), 1, sym_comment, - ACTIONS(2464), 6, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2975), 1, + sym_cell_path, + ACTIONS(2070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 47, + ACTIONS(2072), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300401,11 +437952,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300413,32 +437961,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77313] = 7, + [76773] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(5708), 1, - sym_raw_string_begin, - ACTIONS(5763), 1, - anon_sym_RBRACK, - STATE(2672), 1, - aux_sym__multiple_types_repeat1, - STATE(2704), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(5790), 1, + anon_sym_DOT_DOT2, + STATE(2695), 1, sym_comment, - ACTIONS(5702), 49, + ACTIONS(1948), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5792), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300456,9 +438008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300476,19 +438025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77383] = 4, - ACTIONS(247), 1, + [76845] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2705), 1, + STATE(2696), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(5713), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 47, + ACTIONS(5715), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -300536,74 +438085,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77447] = 30, - ACTIONS(247), 1, + [76909] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, - anon_sym_DQUOTE, - ACTIONS(5632), 1, + STATE(2697), 1, + sym_comment, + ACTIONS(1874), 5, sym_raw_string_begin, - ACTIONS(5765), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1872), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5767), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5769), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5781), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_single_quotes, - STATE(2621), 1, - sym__inter_double_quotes, - STATE(2706), 1, - sym_comment, - STATE(5733), 1, - sym__val_number_decimal, - STATE(7726), 1, - sym__val_range, - STATE(7734), 1, - sym__unquoted_anonymous_prefix, - STATE(7802), 1, - sym_val_bool, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5630), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5771), 2, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2628), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5773), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1726), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300612,8 +438135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300622,75 +438143,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [77563] = 31, - ACTIONS(239), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [76973] = 31, + ACTIONS(243), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, + ACTIONS(245), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3313), 1, + ACTIONS(3397), 1, aux_sym_unquoted_token1, - ACTIONS(3363), 1, + ACTIONS(3447), 1, aux_sym_record_entry_token1, - ACTIONS(3989), 1, + ACTIONS(4029), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, + ACTIONS(4031), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, + ACTIONS(4033), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, + ACTIONS(4035), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(4331), 1, - anon_sym_DOT_DOT, - ACTIONS(4455), 1, + ACTIONS(4201), 1, anon_sym_DOLLAR, - ACTIONS(5775), 1, + ACTIONS(4203), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, sym_val_date, - ACTIONS(5783), 1, + ACTIONS(5751), 1, anon_sym_LPAREN, - STATE(2171), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(2165), 1, sym__inter_double_quotes, - STATE(2707), 1, + STATE(2698), 1, sym_comment, - STATE(5795), 1, + STATE(5941), 1, sym__val_number_decimal, - STATE(6351), 1, + STATE(6345), 1, sym_unquoted, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, + STATE(7747), 1, sym__val_range, - STATE(7913), 1, + STATE(7793), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, anon_sym_true, anon_sym_false, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4333), 2, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5785), 3, + ACTIONS(5753), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6349), 4, + STATE(6344), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2671), 8, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300699,7 +438222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + ACTIONS(2765), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -300709,19 +438232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [77681] = 4, - ACTIONS(247), 1, + [77091] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2708), 1, + STATE(2699), 1, sym_comment, - ACTIONS(2052), 6, + ACTIONS(2480), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2054), 47, + ACTIONS(2482), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -300769,82 +438292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77745] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(5708), 1, - sym_raw_string_begin, - ACTIONS(5787), 1, - anon_sym_RBRACK, - STATE(2672), 1, - aux_sym__multiple_types_repeat1, - STATE(2709), 1, - sym_comment, - ACTIONS(5702), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77815] = 4, - ACTIONS(247), 1, + [77155] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2710), 1, + STATE(2700), 1, sym_comment, - ACTIONS(5656), 6, + ACTIONS(1510), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5658), 47, + ACTIONS(1512), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -300892,143 +438352,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77879] = 8, - ACTIONS(247), 1, + [77219] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5685), 1, anon_sym_DOT, - STATE(2711), 1, + STATE(2701), 1, sym_comment, - STATE(2792), 1, + STATE(2703), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2831), 1, sym_path, - STATE(2959), 1, - sym_cell_path, - ACTIONS(1907), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1909), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1479), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1481), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77951] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77289] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2712), 1, + ACTIONS(5794), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5796), 1, + aux_sym__immediate_decimal_token2, + STATE(2702), 1, sym_comment, - ACTIONS(5660), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5662), 47, + ACTIONS(1890), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78015] = 6, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77357] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5789), 1, - sym__newline, - STATE(2713), 1, + ACTIONS(5798), 1, + anon_sym_DOT, + STATE(2831), 1, + sym_path, + STATE(2703), 2, sym_comment, - ACTIONS(5792), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1290), 15, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -301042,18 +438505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 35, + ACTIONS(1485), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301067,9 +438531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301078,28 +438539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [78083] = 8, - ACTIONS(247), 1, + [77425] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2714), 1, + STATE(2704), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2986), 1, - sym_cell_path, - ACTIONS(1847), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1851), 43, + ACTIONS(2470), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301134,7 +438588,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301142,19 +438599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78155] = 4, - ACTIONS(247), 1, + [77489] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2715), 1, + STATE(2705), 1, sym_comment, - ACTIONS(5679), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5681), 47, + ACTIONS(2470), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -301202,21 +438659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78219] = 4, - ACTIONS(247), 1, + [77553] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2716), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2706), 1, sym_comment, - ACTIONS(5687), 6, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2968), 1, + sym_cell_path, + ACTIONS(2042), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5689), 47, + ACTIONS(2044), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301251,10 +438715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301262,21 +438723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78283] = 4, - ACTIONS(247), 1, + [77625] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2717), 1, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2707), 1, sym_comment, - ACTIONS(2486), 6, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2958), 1, + sym_cell_path, + ACTIONS(1972), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2488), 47, + ACTIONS(1976), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301311,10 +438779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301322,19 +438787,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78347] = 4, - ACTIONS(247), 1, + [77697] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2718), 1, + STATE(2708), 1, + sym_comment, + ACTIONS(1760), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77761] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2709), 1, sym_comment, - ACTIONS(2510), 6, + ACTIONS(5727), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2512), 47, + ACTIONS(5729), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -301382,19 +438907,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78411] = 4, - ACTIONS(247), 1, + [77825] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2719), 1, + STATE(2710), 1, + sym_comment, + ACTIONS(1970), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1968), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77889] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5767), 1, + sym__entry_separator, + ACTIONS(5769), 1, + sym_raw_string_begin, + ACTIONS(5801), 1, + anon_sym_RBRACK, + STATE(2711), 1, + sym_comment, + STATE(2720), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5763), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77959] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2712), 1, sym_comment, - ACTIONS(5691), 6, + ACTIONS(5046), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5693), 47, + ACTIONS(5044), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -301442,27 +439090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78475] = 8, - ACTIONS(247), 1, + [78023] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2720), 1, + STATE(2713), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2995), 1, + STATE(2962), 1, sym_cell_path, - ACTIONS(1859), 6, + ACTIONS(2026), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1861), 43, + ACTIONS(2028), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301506,33 +439154,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78547] = 10, + [78095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5796), 1, + STATE(2714), 1, + sym_comment, + ACTIONS(1508), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1506), 49, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5799), 1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(5801), 1, - sym_raw_string_begin, - STATE(2721), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78159] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2715), 1, sym_comment, - STATE(5764), 1, - aux_sym_cell_path_repeat1, - STATE(6319), 1, - sym_path, - STATE(7006), 1, - sym_cell_path, - ACTIONS(1867), 2, + ACTIONS(1516), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5794), 45, + ACTIONS(1514), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -301572,19 +439274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78623] = 4, - ACTIONS(247), 1, + [78223] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2716), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(2492), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(992), 47, + ACTIONS(2494), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -301632,200 +439334,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78687] = 30, - ACTIONS(247), 1, + [78287] = 33, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3989), 1, + ACTIONS(2691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2693), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3179), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(3193), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, + ACTIONS(3195), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, + ACTIONS(3197), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, + ACTIONS(3199), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, + ACTIONS(3205), 1, + anon_sym_0b, + ACTIONS(3211), 1, anon_sym_DQUOTE, - ACTIONS(5632), 1, + ACTIONS(3217), 1, sym_raw_string_begin, - ACTIONS(5765), 1, - anon_sym_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5769), 1, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(5803), 1, + anon_sym_LBRACE, + ACTIONS(5805), 1, anon_sym_DOT_DOT, - ACTIONS(5775), 1, + ACTIONS(5809), 1, + anon_sym_null, + ACTIONS(5813), 1, sym_val_date, - ACTIONS(5777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5781), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_single_quotes, - STATE(2621), 1, - sym__inter_double_quotes, - STATE(2723), 1, + STATE(2717), 1, sym_comment, - STATE(5733), 1, + STATE(5692), 1, sym__val_number_decimal, - STATE(7726), 1, - sym__val_range, - STATE(7734), 1, - sym__unquoted_anonymous_prefix, - STATE(7802), 1, - sym_val_bool, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5630), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5771), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2628), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5773), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1726), 5, - sym_expr_parenthesized, + STATE(5979), 1, sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78803] = 31, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(4331), 1, - anon_sym_DOT_DOT, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5783), 1, - anon_sym_LPAREN, - STATE(2171), 1, + STATE(6123), 1, + sym_expr_parenthesized, + STATE(6854), 1, sym__inter_single_quotes, - STATE(2172), 1, + STATE(6856), 1, sym__inter_double_quotes, - STATE(2724), 1, - sym_comment, - STATE(5795), 1, - sym__val_number_decimal, - STATE(6351), 1, - sym_unquoted, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, - sym__val_range, - STATE(7913), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4003), 2, + STATE(7244), 1, + sym__val_number, + STATE(7685), 1, + sym_block, + ACTIONS(3207), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3213), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4333), 2, + ACTIONS(5807), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4332), 2, + ACTIONS(5811), 2, + anon_sym_true, + anon_sym_false, + STATE(5550), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5785), 3, + STATE(7690), 2, + sym_val_range, + sym__value, + ACTIONS(3201), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6349), 4, - sym_expr_parenthesized, - sym_val_variable, + STATE(7168), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, sym_val_string, sym_val_interpolated, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78921] = 8, - ACTIONS(247), 1, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [78409] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2725), 1, + STATE(2718), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2936), 1, + STATE(2959), 1, sym_cell_path, - ACTIONS(1863), 6, + ACTIONS(2014), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1865), 43, + ACTIONS(2016), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301869,79 +439487,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78993] = 4, - ACTIONS(247), 1, + [78481] = 33, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2726), 1, + ACTIONS(2691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2693), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3179), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(3193), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3195), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3197), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3199), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3205), 1, + anon_sym_0b, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(3227), 1, + anon_sym_LBRACK, + ACTIONS(5803), 1, + anon_sym_LBRACE, + ACTIONS(5805), 1, + anon_sym_DOT_DOT, + ACTIONS(5809), 1, + anon_sym_null, + ACTIONS(5813), 1, + sym_val_date, + STATE(2719), 1, sym_comment, - ACTIONS(5683), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5685), 47, + STATE(5692), 1, + sym__val_number_decimal, + STATE(5979), 1, + sym_val_variable, + STATE(6127), 1, + sym_expr_parenthesized, + STATE(6854), 1, + sym__inter_single_quotes, + STATE(6856), 1, + sym__inter_double_quotes, + STATE(7244), 1, + sym__val_number, + STATE(7700), 1, + sym_block, + ACTIONS(3207), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5807), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5811), 2, + anon_sym_true, + anon_sym_false, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7507), 2, + sym_val_range, + sym__value, + ACTIONS(3201), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7168), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [78603] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2440), 1, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5815), 1, + sym__entry_separator, + STATE(2720), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2435), 50, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79057] = 4, - ACTIONS(247), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78669] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2727), 1, + STATE(2721), 1, sym_comment, - ACTIONS(5650), 6, + ACTIONS(1886), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5652), 47, + ACTIONS(1888), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -301989,27 +439697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79121] = 8, - ACTIONS(247), 1, + [78733] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2728), 1, + STATE(2722), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2942), 1, + STATE(2955), 1, sym_cell_path, - ACTIONS(1871), 6, + ACTIONS(2010), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1873), 43, + ACTIONS(2012), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302053,27 +439761,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79193] = 8, - ACTIONS(247), 1, + [78805] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + STATE(2723), 1, + sym_comment, + ACTIONS(1866), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1868), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78869] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2729), 1, + STATE(2724), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2976), 1, + STATE(2963), 1, sym_cell_path, - ACTIONS(961), 6, + ACTIONS(2030), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(963), 43, + ACTIONS(2032), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302117,21 +439885,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79265] = 4, - ACTIONS(247), 1, + [78941] = 30, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2730), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, + sym_raw_string_begin, + ACTIONS(5733), 1, + anon_sym_LPAREN, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(5737), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5745), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5747), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5749), 1, + aux_sym_unquoted_token1, + STATE(2646), 1, + sym__inter_single_quotes, + STATE(2651), 1, + sym__inter_double_quotes, + STATE(2725), 1, + sym_comment, + STATE(6020), 1, + sym__val_number_decimal, + STATE(7920), 1, + sym_val_bool, + STATE(8118), 1, + sym__val_range, + STATE(8123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5739), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2603), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5741), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1707), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79057] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2726), 1, sym_comment, - ACTIONS(994), 6, + STATE(2756), 1, + aux_sym_cell_path_repeat1, + STATE(2904), 1, + sym_path, + STATE(2947), 1, + sym_cell_path, + ACTIONS(1990), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(996), 47, + ACTIONS(1992), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302166,10 +440027,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302177,27 +440035,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79329] = 8, - ACTIONS(247), 1, + [79129] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2731), 1, + STATE(2727), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2943), 1, + STATE(2980), 1, sym_cell_path, - ACTIONS(1879), 6, + ACTIONS(1998), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1881), 43, + ACTIONS(2000), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302241,28 +440099,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79401] = 8, - ACTIONS(247), 1, + [79201] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2732), 1, + STATE(2728), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2944), 1, - sym_cell_path, - ACTIONS(1883), 6, + ACTIONS(5677), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1885), 43, + ACTIONS(5679), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302297,7 +440148,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302305,28 +440159,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79473] = 8, - ACTIONS(247), 1, + [79265] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2733), 1, + STATE(2729), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2945), 1, - sym_cell_path, - ACTIONS(1887), 6, + ACTIONS(5709), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1889), 43, + ACTIONS(5711), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302361,7 +440208,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302369,28 +440219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79545] = 8, - ACTIONS(247), 1, + [79329] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2734), 1, + STATE(2730), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2946), 1, - sym_cell_path, - ACTIONS(1891), 6, + ACTIONS(5681), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, + ACTIONS(5683), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302425,7 +440268,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302433,28 +440279,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79617] = 8, - ACTIONS(247), 1, + [79393] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2735), 1, + ACTIONS(5767), 1, + sym__entry_separator, + ACTIONS(5769), 1, + sym_raw_string_begin, + ACTIONS(5818), 1, + anon_sym_RBRACK, + STATE(2720), 1, + aux_sym__multiple_types_repeat1, + STATE(2731), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2947), 1, - sym_cell_path, - ACTIONS(1895), 6, + ACTIONS(5763), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79463] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5820), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5822), 1, + aux_sym__immediate_decimal_token2, + STATE(2732), 1, + sym_comment, + ACTIONS(1892), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1890), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79531] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2733), 1, + sym_comment, + ACTIONS(1556), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1897), 43, + ACTIONS(1558), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302489,7 +440453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302497,27 +440464,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79689] = 8, - ACTIONS(247), 1, + [79595] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5757), 1, + STATE(2734), 1, + sym_comment, + ACTIONS(1498), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1496), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(2736), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79659] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2735), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2948), 1, + STATE(2983), 1, sym_cell_path, - ACTIONS(1911), 6, + ACTIONS(1473), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1913), 43, + ACTIONS(1475), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302561,27 +440588,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79761] = 8, - ACTIONS(247), 1, + [79731] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5767), 1, + sym__entry_separator, + ACTIONS(5769), 1, + sym_raw_string_begin, + ACTIONS(5824), 1, + anon_sym_RBRACK, + STATE(2720), 1, + aux_sym__multiple_types_repeat1, + STATE(2736), 1, + sym_comment, + ACTIONS(5763), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79801] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5731), 1, anon_sym_DOT, STATE(2737), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2949), 1, + STATE(2981), 1, sym_cell_path, - ACTIONS(1915), 6, + ACTIONS(2006), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1917), 43, + ACTIONS(2008), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302625,27 +440715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79833] = 8, - ACTIONS(247), 1, + [79873] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, STATE(2738), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2950), 1, + STATE(2951), 1, sym_cell_path, - ACTIONS(1919), 6, + ACTIONS(1994), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1921), 43, + ACTIONS(1996), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302689,28 +440779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79905] = 8, - ACTIONS(247), 1, + [79945] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, STATE(2739), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2951), 1, - sym_cell_path, - ACTIONS(1927), 6, + ACTIONS(5034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1929), 43, + ACTIONS(5032), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302745,7 +440828,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302753,28 +440839,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79977] = 8, - ACTIONS(247), 1, + [80009] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, STATE(2740), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2952), 1, - sym_cell_path, - ACTIONS(1942), 6, + ACTIONS(1496), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1944), 43, + ACTIONS(1498), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302809,7 +440888,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302817,27 +440899,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80049] = 8, - ACTIONS(247), 1, + [80073] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5731), 1, anon_sym_DOT, STATE(2741), 1, sym_comment, - STATE(2792), 1, + STATE(2756), 1, aux_sym_cell_path_repeat1, - STATE(2911), 1, + STATE(2904), 1, sym_path, - STATE(2953), 1, + STATE(2964), 1, sym_cell_path, - ACTIONS(2026), 6, + ACTIONS(2034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2028), 43, + ACTIONS(2036), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302881,92 +440963,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80121] = 8, - ACTIONS(247), 1, + [80145] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, + ACTIONS(5826), 1, + sym__newline, STATE(2742), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2928), 1, - sym_cell_path, - ACTIONS(2030), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2032), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5829), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1246), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1244), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80193] = 8, - ACTIONS(247), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80213] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, STATE(2743), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2955), 1, - sym_cell_path, - ACTIONS(2034), 6, + ACTIONS(2240), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2036), 43, + ACTIONS(2242), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303001,7 +441074,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303009,92 +441085,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80265] = 8, - ACTIONS(247), 1, + [80277] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5831), 1, + anon_sym_DOT_DOT2, STATE(2744), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2956), 1, - sym_cell_path, - ACTIONS(2038), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2040), 43, + ACTIONS(1958), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(5833), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1950), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80337] = 8, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80349] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, STATE(2745), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2957), 1, - sym_cell_path, - ACTIONS(1931), 6, + ACTIONS(5701), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1933), 43, + ACTIONS(5703), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303129,7 +441198,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303137,83 +441209,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80409] = 8, - ACTIONS(247), 1, + [80413] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5835), 1, anon_sym_DOT, + ACTIONS(5837), 1, + aux_sym__immediate_decimal_token2, STATE(2746), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2911), 1, - sym_path, - STATE(2958), 1, - sym_cell_path, - ACTIONS(1899), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1901), 43, + ACTIONS(1874), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1872), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, [80481] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(2747), 1, sym_comment, - ACTIONS(5054), 6, + ACTIONS(1506), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5052), 47, + ACTIONS(1508), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -303261,73 +441331,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80545] = 30, + [80545] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2748), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3024), 1, + sym_cell_path, + ACTIONS(2040), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2038), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80616] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2749), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3027), 1, + sym_cell_path, + ACTIONS(2052), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2050), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80687] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2750), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3044), 1, + sym_cell_path, + ACTIONS(1475), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1473), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80758] = 30, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(113), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(115), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(121), 1, + ACTIONS(125), 1, sym_raw_string_begin, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(3475), 1, aux_sym_unquoted_token1, - ACTIONS(3989), 1, + ACTIONS(4029), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, + ACTIONS(4031), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, + ACTIONS(4033), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, + ACTIONS(4035), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5775), 1, + ACTIONS(5743), 1, sym_val_date, - ACTIONS(5803), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(5805), 1, + ACTIONS(5843), 1, anon_sym_DOLLAR, - ACTIONS(5807), 1, + ACTIONS(5845), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2497), 1, sym__inter_single_quotes, - STATE(2538), 1, + STATE(2500), 1, sym__inter_double_quotes, - STATE(2748), 1, + STATE(2751), 1, sym_comment, - STATE(5736), 1, + STATE(5830), 1, sym__val_number_decimal, - STATE(7159), 1, + STATE(6886), 1, sym_unquoted, - STATE(7802), 1, - sym_val_bool, - STATE(7808), 1, - sym__unquoted_anonymous_prefix, - STATE(8160), 1, + STATE(7805), 1, sym__val_range, + STATE(7816), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3987), 2, + ACTIONS(4027), 2, anon_sym_true, anon_sym_false, - ACTIONS(5809), 2, + ACTIONS(5847), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2093), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5811), 3, + ACTIONS(5849), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(7140), 4, + STATE(7223), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2671), 8, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303336,7 +441595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + ACTIONS(2765), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -303346,17 +441605,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80660] = 4, + [80873] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2752), 1, sym_comment, - ACTIONS(1008), 4, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3030), 1, + sym_cell_path, + ACTIONS(2056), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1006), 48, + ACTIONS(2054), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303364,8 +441629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -303405,33 +441668,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80723] = 6, - ACTIONS(3), 1, + [80944] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5815), 1, + ACTIONS(5757), 1, aux_sym__immediate_decimal_token2, - STATE(2750), 1, + STATE(2753), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(1872), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303441,21 +441716,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303464,34 +441728,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [80790] = 4, - ACTIONS(3), 1, + [81009] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2751), 1, + ACTIONS(2000), 1, + sym__table_head_separator, + ACTIONS(5851), 1, + anon_sym_DOT, + STATE(2754), 1, sym_comment, - ACTIONS(1012), 4, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, + sym_path, + STATE(5883), 1, + sym_cell_path, + ACTIONS(5771), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5778), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1010), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303501,21 +441780,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303524,18 +441792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [80853] = 4, + [81082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2752), 1, + STATE(2755), 1, sym_comment, - ACTIONS(1016), 4, + ACTIONS(1528), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1014), 48, + ACTIONS(1526), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303584,24 +441851,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80916] = 6, - ACTIONS(247), 1, + [81145] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2911), 1, - sym_path, - STATE(2753), 2, + STATE(2756), 1, sym_comment, + STATE(2771), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 6, + STATE(2904), 1, + sym_path, + ACTIONS(1479), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(973), 43, + ACTIONS(1481), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303645,18 +441913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80983] = 6, - ACTIONS(247), 1, + [81214] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5820), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5822), 1, - aux_sym__immediate_decimal_token2, - STATE(2754), 1, + ACTIONS(5853), 1, + anon_sym_QMARK2, + STATE(2757), 1, sym_comment, - ACTIONS(1739), 17, + ACTIONS(1500), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303672,7 +441939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1741), 33, + ACTIONS(1502), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -303706,16 +441973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81050] = 5, - ACTIONS(247), 1, + [81279] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5731), 1, - aux_sym__immediate_decimal_token2, - STATE(2755), 1, + ACTIONS(5855), 1, + anon_sym_QMARK2, + STATE(2758), 1, sym_comment, - ACTIONS(1765), 18, + ACTIONS(1490), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303731,8 +441999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(1492), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -303766,21 +442033,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81115] = 5, - ACTIONS(247), 1, + [81344] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, - sym__newline, - STATE(2756), 2, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2759), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3038), 1, + sym_cell_path, + ACTIONS(2072), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2070), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303789,19 +442087,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 35, + [81415] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2760), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3023), 1, + sym_cell_path, + ACTIONS(2173), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2171), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303811,13 +442135,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303826,23 +442158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81180] = 8, + aux_sym__unquoted_in_list_token1, + [81486] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2757), 1, + STATE(2761), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3075), 1, + STATE(3065), 1, sym_cell_path, - ACTIONS(1873), 2, + ACTIONS(2012), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1871), 46, + ACTIONS(2010), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303889,23 +442222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81251] = 8, + [81557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2758), 1, + STATE(2762), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3081), 1, + STATE(3019), 1, sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(2024), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1879), 46, + ACTIONS(2022), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303952,25 +442285,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81322] = 8, + [81628] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(1992), 1, + sym__entry_separator, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2759), 1, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5862), 1, + sym_raw_string_begin, + STATE(2763), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3086), 1, + STATE(3097), 1, sym_cell_path, - ACTIONS(1885), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1883), 46, + ACTIONS(5857), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -304015,19 +442350,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81393] = 5, + [81703] = 29, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5691), 1, + anon_sym_DQUOTE, + ACTIONS(5695), 1, + sym_raw_string_begin, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5864), 1, + anon_sym_LPAREN, + ACTIONS(5866), 1, + anon_sym_DOLLAR, + ACTIONS(5868), 1, + anon_sym_DOT_DOT, + ACTIONS(5874), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5876), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5878), 1, + aux_sym_unquoted_token1, + STATE(2704), 1, + sym__inter_single_quotes, + STATE(2705), 1, + sym__inter_double_quotes, + STATE(2764), 1, + sym_comment, + STATE(5970), 1, + sym__val_number_decimal, + STATE(7759), 1, + sym__unquoted_anonymous_prefix, + STATE(7903), 1, + sym__val_range, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5693), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5870), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2700), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5872), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1780), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5761), 1, - aux_sym__immediate_decimal_token2, - STATE(2760), 1, + STATE(2765), 1, sym_comment, - ACTIONS(1767), 4, + ACTIONS(1520), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(1518), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304036,6 +442453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -304075,23 +442493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81458] = 8, + [81879] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2761), 1, + STATE(2766), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3087), 1, + STATE(3020), 1, sym_cell_path, - ACTIONS(1889), 2, + ACTIONS(2028), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1887), 46, + ACTIONS(2026), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304138,19 +442556,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81529] = 5, - ACTIONS(3), 1, + [81950] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2767), 1, + sym_comment, + ACTIONS(1496), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1498), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82013] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5829), 1, + ACTIONS(5880), 1, aux_sym__immediate_decimal_token2, - STATE(2762), 1, + STATE(2768), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1919), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 33, sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82078] = 29, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5691), 1, + anon_sym_DQUOTE, + ACTIONS(5695), 1, + sym_raw_string_begin, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5864), 1, + anon_sym_LPAREN, + ACTIONS(5866), 1, + anon_sym_DOLLAR, + ACTIONS(5868), 1, + anon_sym_DOT_DOT, + ACTIONS(5874), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5876), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5878), 1, + aux_sym_unquoted_token1, + STATE(2704), 1, + sym__inter_single_quotes, + STATE(2705), 1, + sym__inter_double_quotes, + STATE(2769), 1, + sym_comment, + STATE(5970), 1, + sym__val_number_decimal, + STATE(7759), 1, + sym__unquoted_anonymous_prefix, + STATE(7903), 1, + sym__val_range, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5693), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5870), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2700), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5872), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1816), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82191] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2770), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3031), 1, + sym_cell_path, + ACTIONS(2060), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1785), 47, + ACTIONS(2058), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304158,7 +442783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -304198,23 +442822,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81594] = 8, + [82262] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2904), 1, + sym_path, + STATE(2771), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1485), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82329] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2763), 1, + STATE(2772), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3088), 1, + STATE(3026), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(2048), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1891), 46, + ACTIONS(2046), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304261,23 +442946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81665] = 8, + [82400] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2764), 1, + STATE(2773), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3089), 1, + STATE(3025), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(2044), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1895), 46, + ACTIONS(2042), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304324,14 +443009,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81736] = 5, - ACTIONS(247), 1, + [82471] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5831), 1, + ACTIONS(5885), 1, + aux_sym__immediate_decimal_token2, + STATE(2774), 1, + sym_comment, + ACTIONS(1921), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1919), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82536] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + anon_sym_DOT, + STATE(2775), 1, + sym_comment, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3067), 1, + sym_cell_path, + ACTIONS(1976), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1972), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82607] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_comment, + ACTIONS(1510), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1512), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_QMARK2, - STATE(2765), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82670] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5887), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5889), 1, + aux_sym__immediate_decimal_token2, + STATE(2777), 1, + sym_comment, + ACTIONS(1890), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1892), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82737] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2778), 1, sym_comment, - ACTIONS(978), 18, + ACTIONS(1506), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -304350,7 +443276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(980), 33, + ACTIONS(1508), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304358,6 +443284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -304384,20 +443311,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81801] = 6, + [82800] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5767), 1, + sym__entry_separator, + ACTIONS(5769), 1, + sym_raw_string_begin, + STATE(2720), 1, + aux_sym__multiple_types_repeat1, + STATE(2779), 1, + sym_comment, + ACTIONS(5763), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82867] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5833), 1, + ACTIONS(5839), 1, anon_sym_DOT, - ACTIONS(5835), 1, - aux_sym__immediate_decimal_token2, - STATE(2766), 1, + STATE(2780), 1, sym_comment, - ACTIONS(1767), 3, + STATE(2845), 1, + aux_sym_cell_path_repeat1, + STATE(2944), 1, + sym_path, + STATE(3076), 1, + sym_cell_path, + ACTIONS(2016), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(2014), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304420,13 +443411,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82938] = 30, + ACTIONS(243), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(245), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3397), 1, + aux_sym_unquoted_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4041), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, + sym_raw_string_begin, + ACTIONS(4201), 1, + anon_sym_DOLLAR, + ACTIONS(4203), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5751), 1, + anon_sym_LPAREN, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(2781), 1, + sym_comment, + STATE(5941), 1, + sym__val_number_decimal, + STATE(6345), 1, + sym_unquoted, + STATE(7747), 1, + sym__val_range, + STATE(7793), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4043), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4386), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5753), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6344), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304435,6 +443510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304443,25 +443520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [81868] = 8, + [83053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2767), 1, + ACTIONS(5837), 1, + aux_sym__immediate_decimal_token2, + STATE(2782), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3090), 1, - sym_cell_path, - ACTIONS(1913), 2, + ACTIONS(1874), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1911), 46, + ACTIONS(1872), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304469,6 +443540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -304508,36 +443580,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81939] = 8, - ACTIONS(3), 1, + [83118] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5891), 1, anon_sym_DOT, - STATE(2768), 1, + ACTIONS(5893), 1, + aux_sym__immediate_decimal_token2, + STATE(2783), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3091), 1, - sym_cell_path, - ACTIONS(1917), 2, + ACTIONS(1872), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1874), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1915), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304547,21 +443629,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304570,21 +443641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82010] = 6, - ACTIONS(247), 1, + [83185] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_DOT, - ACTIONS(5839), 1, - aux_sym__immediate_decimal_token2, - STATE(2769), 1, + ACTIONS(5895), 1, + sym__newline, + STATE(2784), 2, sym_comment, - ACTIONS(1765), 17, + aux_sym_shebang_repeat1, + ACTIONS(1231), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304598,19 +443665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(1233), 35, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304624,6 +443690,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304632,23 +443701,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82077] = 8, + [83250] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2770), 1, + STATE(2785), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3092), 1, + STATE(3018), 1, sym_cell_path, - ACTIONS(1921), 2, + ACTIONS(2020), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1919), 46, + ACTIONS(2018), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304695,23 +443764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82148] = 8, + [83321] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5898), 1, anon_sym_DOT, - STATE(2771), 1, + ACTIONS(5900), 1, + aux_sym__immediate_decimal_token2, + STATE(2786), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3093), 1, - sym_cell_path, - ACTIONS(1929), 2, + ACTIONS(1874), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1927), 46, + ACTIONS(1872), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304758,52 +443824,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82219] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [83388] = 29, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2772), 1, - sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3070), 1, - sym_cell_path, - ACTIONS(963), 2, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(961), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5733), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5735), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5737), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5745), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5747), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5749), 1, + aux_sym_unquoted_token1, + STATE(2646), 1, + sym__inter_single_quotes, + STATE(2651), 1, + sym__inter_double_quotes, + STATE(2787), 1, + sym_comment, + STATE(6020), 1, + sym__val_number_decimal, + STATE(7920), 1, + sym_val_bool, + STATE(8118), 1, + sym__val_range, + STATE(8123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(4027), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5739), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2603), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5741), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(1712), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304812,6 +443899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304820,24 +443909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82290] = 8, + [83501] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2773), 1, + STATE(2788), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3095), 1, + STATE(3036), 1, sym_cell_path, - ACTIONS(2028), 2, + ACTIONS(2068), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2026), 46, + ACTIONS(2066), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304884,23 +443972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82361] = 8, + [83572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2774), 1, + ACTIONS(5902), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5904), 1, + aux_sym__immediate_decimal_token2, + STATE(2789), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3096), 1, - sym_cell_path, - ACTIONS(2032), 2, + ACTIONS(1892), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2030), 46, + ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304947,23 +444032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82432] = 8, + aux_sym__unquoted_in_list_token2, + [83639] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2775), 1, + STATE(2790), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3098), 1, - sym_cell_path, - ACTIONS(2036), 2, + ACTIONS(1524), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2034), 46, + ACTIONS(1522), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304971,6 +444051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305010,35 +444092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82503] = 8, + [83702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2776), 1, + STATE(2791), 1, sym_comment, - STATE(2820), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - STATE(3099), 1, - sym_cell_path, - ACTIONS(2040), 2, + ACTIONS(2617), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2038), 46, + ACTIONS(2615), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305056,6 +444131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305073,23 +444151,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82574] = 8, + [83765] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2777), 1, + STATE(2792), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3033), 1, + STATE(3021), 1, sym_cell_path, - ACTIONS(1933), 2, + ACTIONS(2032), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1931), 46, + ACTIONS(2030), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305136,23 +444214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82645] = 8, + [83836] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2778), 1, + STATE(2793), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3061), 1, + STATE(3022), 1, sym_cell_path, - ACTIONS(1901), 2, + ACTIONS(2036), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1899), 46, + ACTIONS(2034), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305199,14 +444277,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82716] = 5, - ACTIONS(247), 1, + [83907] = 29, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_QMARK2, - STATE(2779), 1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5660), 1, + anon_sym_DQUOTE, + ACTIONS(5664), 1, + sym_raw_string_begin, + ACTIONS(5733), 1, + anon_sym_LPAREN, + ACTIONS(5735), 1, + anon_sym_DOLLAR, + ACTIONS(5737), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5745), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5747), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5749), 1, + aux_sym_unquoted_token1, + STATE(2646), 1, + sym__inter_single_quotes, + STATE(2651), 1, + sym__inter_double_quotes, + STATE(2794), 1, + sym_comment, + STATE(6020), 1, + sym__val_number_decimal, + STATE(7920), 1, + sym_val_bool, + STATE(8118), 1, + sym__val_range, + STATE(8123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5662), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5739), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2603), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5741), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1707), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84020] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2795), 1, sym_comment, - ACTIONS(984), 18, + ACTIONS(1514), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -305225,7 +444385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + ACTIONS(1516), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305233,6 +444393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -305259,23 +444420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82781] = 8, + [84083] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2780), 1, + STATE(2796), 1, sym_comment, - STATE(2820), 1, + STATE(2845), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(2944), 1, sym_path, - STATE(3018), 1, + STATE(3035), 1, sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(2064), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1907), 46, + ACTIONS(2062), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305322,72 +444483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82852] = 29, - ACTIONS(247), 1, + [84154] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, - anon_sym_DQUOTE, - ACTIONS(5632), 1, - sym_raw_string_begin, - ACTIONS(5765), 1, - anon_sym_LPAREN, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5769), 1, - anon_sym_DOT_DOT, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5781), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_single_quotes, - STATE(2621), 1, - sym__inter_double_quotes, - STATE(2781), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2797), 1, sym_comment, - STATE(5733), 1, - sym__val_number_decimal, - STATE(7726), 1, - sym__val_range, - STATE(7734), 1, - sym__unquoted_anonymous_prefix, - STATE(7802), 1, - sym_val_bool, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5630), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5771), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2628), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5773), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1726), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3135), 1, + sym_cell_path, + ACTIONS(2018), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305396,8 +444510,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(2020), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305406,73 +444545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82965] = 30, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [84224] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4001), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, - sym_raw_string_begin, - ACTIONS(4331), 1, - anon_sym_DOT_DOT, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5783), 1, - anon_sym_LPAREN, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(2782), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2798), 1, sym_comment, - STATE(5795), 1, - sym__val_number_decimal, - STATE(6351), 1, - sym_unquoted, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, - sym__val_range, - STATE(7913), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4003), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4333), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4332), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5785), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6349), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2671), 8, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3104), 1, + sym_cell_path, + ACTIONS(2010), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305481,92 +444572,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83080] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5628), 1, - anon_sym_DQUOTE, - ACTIONS(5632), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(2012), 33, sym_raw_string_begin, - ACTIONS(5765), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5767), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5769), 1, - anon_sym_DOT_DOT, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5781), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_single_quotes, - STATE(2621), 1, - sym__inter_double_quotes, - STATE(2783), 1, - sym_comment, - STATE(5733), 1, - sym__val_number_decimal, - STATE(7726), 1, - sym__val_range, - STATE(7734), 1, - sym__unquoted_anonymous_prefix, - STATE(7802), 1, - sym_val_bool, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5630), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5771), 2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2628), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5773), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1710), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305575,18 +444607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83193] = 5, - ACTIONS(247), 1, + [84294] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2784), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2799), 1, sym_comment, - ACTIONS(1785), 18, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3157), 1, + sym_cell_path, + ACTIONS(2022), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -305600,8 +444635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + ACTIONS(2024), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305609,8 +444643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -305635,29 +444669,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83258] = 4, - ACTIONS(3), 1, + [84364] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2785), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2800), 1, sym_comment, - ACTIONS(2462), 2, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3133), 1, + sym_cell_path, + ACTIONS(2026), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2028), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2460), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305667,24 +444719,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305693,73 +444731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83321] = 29, - ACTIONS(247), 1, + [84434] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5668), 1, - anon_sym_DQUOTE, - ACTIONS(5672), 1, - sym_raw_string_begin, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5845), 1, - anon_sym_LPAREN, - ACTIONS(5847), 1, - anon_sym_DOLLAR, - ACTIONS(5849), 1, - anon_sym_DOT_DOT, - ACTIONS(5855), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5857), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5859), 1, - aux_sym_unquoted_token1, - STATE(2703), 1, - sym__inter_single_quotes, - STATE(2705), 1, - sym__inter_double_quotes, - STATE(2786), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2801), 1, sym_comment, - STATE(5743), 1, - sym__val_number_decimal, - STATE(7802), 1, - sym_val_bool, - STATE(7807), 1, - sym__val_range, - STATE(7995), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5670), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5851), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2722), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5853), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1738), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3141), 1, + sym_cell_path, + ACTIONS(2030), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305768,8 +444758,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(2032), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305778,38 +444793,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83434] = 10, - ACTIONS(3), 1, + [84504] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - ACTIONS(5827), 1, + ACTIONS(5906), 1, anon_sym_DOT, - ACTIONS(5863), 1, - anon_sym_RBRACK, - ACTIONS(5866), 1, - sym_raw_string_begin, - STATE(2787), 1, + STATE(2802), 1, sym_comment, - STATE(2820), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(3064), 1, sym_path, - STATE(3052), 1, + STATE(3153), 1, sym_cell_path, - ACTIONS(5861), 45, + ACTIONS(2034), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2036), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305819,21 +444843,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305842,73 +444855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83509] = 29, - ACTIONS(247), 1, + [84574] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5668), 1, - anon_sym_DQUOTE, - ACTIONS(5672), 1, - sym_raw_string_begin, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5845), 1, - anon_sym_LPAREN, - ACTIONS(5847), 1, - anon_sym_DOLLAR, - ACTIONS(5849), 1, - anon_sym_DOT_DOT, - ACTIONS(5855), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5857), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5859), 1, - aux_sym_unquoted_token1, - STATE(2703), 1, - sym__inter_single_quotes, - STATE(2705), 1, - sym__inter_double_quotes, - STATE(2788), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2803), 1, sym_comment, - STATE(5743), 1, - sym__val_number_decimal, - STATE(7802), 1, - sym_val_bool, - STATE(7807), 1, - sym__val_range, - STATE(7995), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5670), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5851), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2722), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5853), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1849), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2671), 8, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3109), 1, + sym_cell_path, + ACTIONS(2171), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305917,8 +444882,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(2173), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305927,22 +444917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83622] = 9, - ACTIONS(247), 1, + [84644] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__table_head_separator, - ACTIONS(5868), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2789), 1, + STATE(2804), 1, sym_comment, - STATE(3502), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(3607), 1, + STATE(3064), 1, sym_path, - STATE(5996), 1, + STATE(3145), 1, sym_cell_path, - ACTIONS(5794), 14, + ACTIONS(2038), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305957,7 +444945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5801), 33, + ACTIONS(2040), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305991,31 +444979,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83695] = 6, - ACTIONS(3), 1, + [84714] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(5708), 1, - sym_raw_string_begin, - STATE(2672), 1, - aux_sym__multiple_types_repeat1, - STATE(2790), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2805), 1, sym_comment, - ACTIONS(5702), 49, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3120), 1, + sym_cell_path, + ACTIONS(2014), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2016), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306025,24 +445029,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306051,18 +445041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83762] = 4, - ACTIONS(247), 1, + [84784] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2791), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2806), 1, sym_comment, - ACTIONS(990), 18, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3142), 1, + sym_cell_path, + ACTIONS(2046), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306076,7 +445069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 34, + ACTIONS(2048), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306084,9 +445077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306111,79 +445103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83825] = 7, - ACTIONS(247), 1, + [84854] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5757), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2753), 1, - aux_sym_cell_path_repeat1, - STATE(2792), 1, + STATE(2807), 1, sym_comment, - STATE(2911), 1, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, sym_path, - ACTIONS(967), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(969), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83894] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2793), 1, - sym_comment, - ACTIONS(994), 18, + STATE(3144), 1, + sym_cell_path, + ACTIONS(2050), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306197,7 +445131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(996), 34, + ACTIONS(2052), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306205,9 +445139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306232,17 +445165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83957] = 4, - ACTIONS(247), 1, + [84924] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2794), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2808), 1, sym_comment, - ACTIONS(998), 18, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3106), 1, + sym_cell_path, + ACTIONS(2054), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306256,7 +445193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1000), 34, + ACTIONS(2056), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306264,9 +445201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306291,17 +445227,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84020] = 4, - ACTIONS(247), 1, + [84994] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2795), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2809), 1, sym_comment, - ACTIONS(1002), 18, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3110), 1, + sym_cell_path, + ACTIONS(2058), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306315,7 +445255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1004), 34, + ACTIONS(2060), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306323,9 +445263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306350,36 +445289,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84083] = 8, - ACTIONS(3), 1, + [85064] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2796), 1, + STATE(2810), 1, sym_comment, - STATE(2820), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(2979), 1, + STATE(3064), 1, sym_path, - STATE(3094), 1, + STATE(3115), 1, sym_cell_path, - ACTIONS(1944), 2, + ACTIONS(2062), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2064), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1942), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306389,21 +445339,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306412,17 +445351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84154] = 4, - ACTIONS(247), 1, + [85134] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2811), 1, sym_comment, - ACTIONS(1841), 18, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3146), 1, + sym_cell_path, + ACTIONS(2066), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306436,8 +445379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 33, + ACTIONS(2068), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306445,8 +445387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306471,47 +445413,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84216] = 4, - ACTIONS(3), 1, + [85204] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2798), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2812), 1, sym_comment, - ACTIONS(1843), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1841), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3148), 1, + sym_cell_path, + ACTIONS(2070), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306520,100 +445440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84278] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_DASH, - STATE(3007), 1, - sym_long_flag, - STATE(2799), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5870), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5872), 42, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84344] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5835), 1, - aux_sym__immediate_decimal_token2, - STATE(2800), 1, - sym_comment, - ACTIONS(1767), 3, + ACTIONS(2072), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306623,21 +445463,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306646,17 +445475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84408] = 4, - ACTIONS(247), 1, + [85274] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2801), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5908), 1, + anon_sym_DOT_DOT2, + STATE(2813), 1, sym_comment, - ACTIONS(1006), 18, + ACTIONS(5910), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306672,7 +445504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1008), 33, + ACTIONS(1948), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306680,8 +445512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306706,22 +445536,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84470] = 5, - ACTIONS(247), 1, + [85342] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5877), 1, - anon_sym_QMARK2, - STATE(2802), 1, + ACTIONS(5916), 1, + anon_sym_DASH_DASH, + STATE(3009), 1, + sym_long_flag, + STATE(2814), 2, sym_comment, - ACTIONS(978), 7, + aux_sym_decl_def_repeat1, + ACTIONS(5912), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(980), 43, + ACTIONS(5914), 42, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306757,7 +445589,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306765,81 +445596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84534] = 7, + [85408] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_RBRACK, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, + ACTIONS(2440), 1, sym_raw_string_begin, - STATE(2803), 1, - sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84602] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(5919), 1, sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - ACTIONS(5887), 1, - anon_sym_RBRACK, - STATE(2804), 1, + STATE(2815), 2, sym_comment, - STATE(2850), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, + ACTIONS(2435), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306880,67 +445647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84670] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - ACTIONS(5889), 1, anon_sym_RBRACK, - STATE(2805), 1, - sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306948,16 +445655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84738] = 5, - ACTIONS(247), 1, + [85472] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5839), 1, - aux_sym__immediate_decimal_token2, - STATE(2806), 1, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5922), 1, + anon_sym_DOT_DOT2, + STATE(2816), 1, sym_comment, - ACTIONS(1765), 17, + ACTIONS(5924), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1950), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306973,7 +445684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(1958), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306981,8 +445692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307007,43 +445716,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84802] = 4, - ACTIONS(247), 1, + [85540] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2807), 1, - sym_comment, - ACTIONS(1785), 18, - anon_sym_DOT_DOT, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5930), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + ACTIONS(5934), 1, + sym__entry_separator, + ACTIONS(5936), 1, sym_raw_string_begin, + STATE(2817), 1, + sym_comment, + ACTIONS(5932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5926), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307053,10 +445754,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307065,17 +445777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84864] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [85610] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(5938), 1, + sym__newline, + STATE(2818), 2, sym_comment, - ACTIONS(1010), 18, + aux_sym_shebang_repeat1, + ACTIONS(1231), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -307088,17 +445802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1012), 33, + aux_sym_unquoted_token1, + ACTIONS(1233), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307115,6 +445827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307123,43 +445837,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84926] = 4, - ACTIONS(247), 1, + [85674] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2809), 1, + STATE(2819), 1, sym_comment, - ACTIONS(1014), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1016), 33, + ACTIONS(1888), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1886), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307169,10 +445871,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307181,22 +445894,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84988] = 6, + aux_sym__unquoted_in_list_token1, + [85736] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, + ACTIONS(1540), 1, + sym__entry_separator, + ACTIONS(5930), 1, anon_sym_DOT_DOT2, - STATE(2810), 1, - sym_comment, - ACTIONS(2163), 2, + ACTIONS(5943), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5893), 2, + STATE(2820), 1, + sym_comment, + ACTIONS(5932), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 46, + ACTIONS(5941), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -307241,26 +445957,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85054] = 7, - ACTIONS(247), 1, + [85806] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5895), 1, - anon_sym_DOT_DOT2, - STATE(2811), 1, + STATE(2821), 1, sym_comment, - ACTIONS(5897), 2, + ACTIONS(2242), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 16, + sym__entry_separator, + ACTIONS(2240), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307269,18 +446006,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1810), 31, + [85868] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5950), 1, + anon_sym_RBRACK, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2822), 1, + sym_comment, + ACTIONS(5948), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2823), 1, + sym_comment, + ACTIONS(2217), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2215), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307290,10 +446110,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307302,17 +446133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85122] = 4, + aux_sym__unquoted_in_list_token1, + [85998] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2812), 1, + STATE(2824), 1, sym_comment, - ACTIONS(2054), 4, + ACTIONS(2221), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2052), 47, + ACTIONS(2219), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307360,16 +446192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85184] = 6, - ACTIONS(247), 1, + [86060] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5899), 1, + ACTIONS(5956), 1, sym_long_flag_identifier, - ACTIONS(5901), 1, + ACTIONS(5958), 1, anon_sym_EQ2, - STATE(2813), 1, + STATE(2825), 1, sym_comment, - ACTIONS(4968), 9, + ACTIONS(4977), 9, sym_raw_string_begin, aux_sym_cmd_identifier_token39, anon_sym_DASH_DASH, @@ -307379,7 +446211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4970), 40, + ACTIONS(4979), 40, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307420,15 +446252,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - [85250] = 5, - ACTIONS(247), 1, + [86126] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(5960), 1, sym__newline, - STATE(2814), 2, + STATE(2826), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1294), 16, + ACTIONS(1231), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -307445,7 +446277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1296), 33, + ACTIONS(1233), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -307479,75 +446311,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85314] = 7, + [86190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, + STATE(2827), 1, + sym_comment, + ACTIONS(1558), 4, sym_raw_string_begin, - ACTIONS(5906), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1556), 47, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2815), 1, - sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85382] = 5, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [86252] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5908), 1, + ACTIONS(5963), 1, anon_sym_QMARK2, - STATE(2816), 1, + STATE(2828), 1, sym_comment, - ACTIONS(984), 7, + ACTIONS(1500), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -307555,7 +446384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(986), 43, + ACTIONS(1502), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307599,82 +446428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85446] = 7, - ACTIONS(3), 1, + [86316] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - ACTIONS(5910), 1, - anon_sym_RBRACK, - STATE(2817), 1, + ACTIONS(5965), 1, + anon_sym_QMARK2, + STATE(2829), 1, sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, + ACTIONS(1490), 7, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85514] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, + anon_sym_DOT, + ACTIONS(1492), 43, sym_raw_string_begin, - ACTIONS(5912), 1, - anon_sym_RBRACK, - STATE(2818), 1, - sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307682,13 +446452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -307707,13 +446474,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307721,95 +446487,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85582] = 7, - ACTIONS(3), 1, + [86380] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - ACTIONS(5914), 1, - anon_sym_RBRACK, - STATE(2819), 1, + STATE(2830), 1, sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1872), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85650] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2820), 1, - sym_comment, - STATE(2858), 1, - aux_sym_cell_path_repeat1, - STATE(2979), 1, - sym_path, - ACTIONS(969), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(967), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307819,13 +446533,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86442] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2831), 1, + sym_comment, + ACTIONS(1526), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307834,6 +446568,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1528), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307842,32 +446603,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85718] = 4, - ACTIONS(3), 1, + [86504] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2821), 1, + STATE(2832), 1, sym_comment, - ACTIONS(1767), 4, + ACTIONS(1890), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307877,13 +446649,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86566] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2833), 1, + sym_comment, + ACTIONS(1919), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307892,6 +446683,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307900,36 +446719,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85780] = 8, - ACTIONS(3), 1, + [86628] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5920), 1, + STATE(2834), 1, + sym_comment, + ACTIONS(1518), 18, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(5924), 1, - sym__entry_separator, - ACTIONS(5926), 1, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1520), 33, sym_raw_string_begin, - STATE(2822), 1, - sym_comment, - ACTIONS(5922), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5916), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307939,21 +446765,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307962,36 +446777,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85850] = 8, - ACTIONS(3), 1, + [86690] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(5920), 1, + STATE(2835), 1, + sym_comment, + ACTIONS(1522), 18, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(5930), 1, - anon_sym_RBRACK, - ACTIONS(5933), 1, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1524), 33, sym_raw_string_begin, - STATE(2823), 1, - sym_comment, - ACTIONS(5922), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5928), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308001,21 +446823,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308024,32 +446835,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85920] = 5, - ACTIONS(3), 1, + [86752] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5935), 1, - aux_sym__immediate_decimal_token2, - STATE(2824), 1, + STATE(2836), 1, sym_comment, - ACTIONS(1787), 3, + ACTIONS(1968), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1970), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1785), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308059,21 +446881,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308082,23 +446893,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85984] = 7, - ACTIONS(3), 1, + [86814] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - ACTIONS(5937), 1, - anon_sym_RBRACK, - STATE(2825), 1, + STATE(2837), 1, sym_comment, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5879), 47, + ACTIONS(1510), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1512), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308106,13 +446915,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -308131,13 +446937,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308145,20 +446951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86052] = 8, - ACTIONS(247), 1, + [86876] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2826), 1, + STATE(2838), 1, sym_comment, - STATE(2871), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(3077), 1, + STATE(3064), 1, sym_path, - STATE(3165), 1, + STATE(3107), 1, sym_cell_path, - ACTIONS(1871), 14, + ACTIONS(1473), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308173,65 +446979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86122] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2827), 1, - sym_comment, - ACTIONS(2120), 4, + ACTIONS(1475), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2118), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308241,21 +447001,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308264,131 +447013,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86184] = 4, - ACTIONS(3), 1, + [86946] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2828), 1, + STATE(2839), 1, sym_comment, - ACTIONS(2185), 4, + ACTIONS(1506), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1508), 44, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2183), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86246] = 6, - ACTIONS(3), 1, + [87008] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5941), 1, - anon_sym_DOT_DOT2, - STATE(2829), 1, + STATE(2840), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(1514), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1516), 44, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5943), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86312] = 4, - ACTIONS(247), 1, + [87070] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2830), 1, + STATE(2841), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(1496), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -308396,7 +447142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(992), 44, + ACTIONS(1498), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308441,47 +447187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86374] = 8, - ACTIONS(247), 1, + [87132] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2831), 1, + ACTIONS(5900), 1, + aux_sym__immediate_decimal_token2, + STATE(2842), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3166), 1, - sym_cell_path, - ACTIONS(1879), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1881), 33, + ACTIONS(1874), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1872), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308491,10 +447221,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308503,47 +447244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86444] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [87196] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2832), 1, + ACTIONS(5967), 1, + aux_sym__immediate_decimal_token2, + STATE(2843), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3107), 1, - sym_cell_path, - ACTIONS(1883), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 33, + ACTIONS(1921), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1919), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308553,10 +447280,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308565,12 +447303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86514] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [87260] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2833), 1, + ACTIONS(5893), 1, + aux_sym__immediate_decimal_token2, + STATE(2844), 1, sym_comment, - ACTIONS(1765), 18, + ACTIONS(1872), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -308588,8 +447330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308623,47 +447364,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86576] = 8, - ACTIONS(247), 1, + [87324] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2834), 1, + STATE(2845), 1, sym_comment, - STATE(2871), 1, + STATE(2846), 1, aux_sym_cell_path_repeat1, - STATE(3077), 1, + STATE(2944), 1, sym_path, - STATE(3148), 1, - sym_cell_path, - ACTIONS(961), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(963), 33, + ACTIONS(1481), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1479), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308673,10 +447401,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308685,47 +447424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86646] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87392] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(5969), 1, anon_sym_DOT, - STATE(2835), 1, - sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, + STATE(2944), 1, sym_path, - STATE(3116), 1, - sym_cell_path, - ACTIONS(1891), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1893), 33, + ACTIONS(1485), 2, sym_raw_string_begin, + sym__entry_separator, + STATE(2846), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308735,10 +447461,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308747,21 +447484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86716] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87458] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2836), 1, + ACTIONS(5972), 1, + aux_sym__immediate_decimal_token2, + STATE(2847), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3121), 1, - sym_cell_path, - ACTIONS(1895), 14, + ACTIONS(1919), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308775,7 +447510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1897), 33, + ACTIONS(1921), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308783,8 +447518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -308809,47 +447544,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86786] = 8, - ACTIONS(247), 1, + [87522] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2837), 1, + STATE(2848), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(5861), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5866), 33, + ACTIONS(1874), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1872), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308859,10 +447578,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308871,47 +447601,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86856] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2838), 1, + STATE(2849), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3123), 1, - sym_cell_path, - ACTIONS(1911), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1913), 33, + ACTIONS(1892), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308921,10 +447636,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308933,47 +447659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86926] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87646] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2839), 1, + STATE(2850), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3126), 1, - sym_cell_path, - ACTIONS(1915), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1917), 33, + ACTIONS(1921), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1919), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308983,10 +447694,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308995,47 +447717,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86996] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87708] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2840), 1, + STATE(2851), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3130), 1, - sym_cell_path, - ACTIONS(1919), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1921), 33, + ACTIONS(1970), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1968), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309045,10 +447752,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309057,21 +447775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87066] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [87770] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + ACTIONS(5974), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2852), 1, sym_comment, - ACTIONS(994), 7, + ACTIONS(5948), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(996), 44, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309079,10 +447798,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309101,13 +447823,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309115,82 +447837,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87128] = 8, - ACTIONS(247), 1, + [87838] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2842), 1, - sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3120), 1, - sym_cell_path, - ACTIONS(5947), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5945), 33, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5976), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2853), 1, + sym_comment, + ACTIONS(5948), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [87198] = 8, - ACTIONS(247), 1, + [87906] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2843), 1, + STATE(2854), 1, sym_comment, - STATE(2871), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(3077), 1, + STATE(3064), 1, sym_path, - STATE(3131), 1, + STATE(3112), 1, sym_cell_path, - ACTIONS(1927), 14, + ACTIONS(1972), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309205,7 +447926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1929), 33, + ACTIONS(1976), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309239,21 +447960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87268] = 4, - ACTIONS(247), 1, + [87976] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 1, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + ACTIONS(5978), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2855), 1, sym_comment, - ACTIONS(998), 7, + ACTIONS(5948), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1000), 44, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309261,10 +447982,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309283,13 +448007,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309297,21 +448021,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87330] = 4, - ACTIONS(247), 1, + [88044] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + ACTIONS(5980), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2856), 1, sym_comment, - ACTIONS(1002), 7, + ACTIONS(5948), 47, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1004), 44, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88112] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, sym_raw_string_begin, + ACTIONS(5982), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2857), 1, + sym_comment, + ACTIONS(5948), 47, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309319,10 +448104,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309341,13 +448129,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309355,47 +448143,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87392] = 8, - ACTIONS(247), 1, + [88180] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2846), 1, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + ACTIONS(5984), 1, + anon_sym_RBRACK, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2858), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3132), 1, - sym_cell_path, - ACTIONS(1942), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1944), 33, + ACTIONS(5948), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88248] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5986), 1, + anon_sym_DOT_DOT2, + STATE(2859), 1, + sym_comment, + ACTIONS(2234), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5988), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309405,10 +448240,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309417,47 +448263,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87462] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [88314] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2847), 1, + ACTIONS(5990), 1, + anon_sym_DOT_DOT2, + STATE(2860), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - ACTIONS(2026), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2028), 33, + ACTIONS(2183), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5992), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2177), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309467,10 +448300,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309479,20 +448323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87532] = 6, + aux_sym__unquoted_in_list_token1, + [88380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5949), 1, + ACTIONS(5994), 1, anon_sym_DOT_DOT2, - STATE(2848), 1, + STATE(2861), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2191), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5951), 2, + ACTIONS(5996), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 46, + ACTIONS(2185), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309539,20 +448384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87598] = 8, - ACTIONS(247), 1, + [88446] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(5906), 1, anon_sym_DOT, - STATE(2849), 1, + STATE(2862), 1, sym_comment, - STATE(2871), 1, + STATE(2892), 1, aux_sym_cell_path_repeat1, - STATE(3077), 1, + STATE(3064), 1, sym_path, - STATE(3136), 1, + STATE(3152), 1, sym_cell_path, - ACTIONS(2030), 14, + ACTIONS(5857), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309567,7 +448412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2032), 33, + ACTIONS(5862), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309601,17 +448446,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87668] = 5, - ACTIONS(3), 1, + [88516] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2863), 1, + sym_comment, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3156), 1, + sym_cell_path, + ACTIONS(6000), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5998), 33, sym_raw_string_begin, - ACTIONS(5953), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88586] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5952), 1, sym__entry_separator, - STATE(2850), 2, - sym_comment, + ACTIONS(5954), 1, + sym_raw_string_begin, + ACTIONS(6002), 1, + anon_sym_RBRACK, + STATE(2815), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2332), 48, + STATE(2864), 1, + sym_comment, + ACTIONS(5948), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309652,7 +448562,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309660,40 +448569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87732] = 4, - ACTIONS(247), 1, + [88654] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(6004), 1, + anon_sym_DOT_DOT2, + STATE(2865), 1, sym_comment, - ACTIONS(1290), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 36, + ACTIONS(2203), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(6006), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2197), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309703,13 +448605,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309718,20 +448628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87794] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [88720] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2852), 1, + STATE(2866), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3139), 1, - sym_cell_path, - ACTIONS(2034), 14, + ACTIONS(1246), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -309746,19 +448650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2036), 33, + ACTIONS(1244), 36, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309772,6 +448676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309780,33 +448687,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87864] = 6, - ACTIONS(3), 1, + [88782] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT_DOT2, - STATE(2853), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2867), 1, sym_comment, - ACTIONS(2136), 2, + STATE(2892), 1, + aux_sym_cell_path_repeat1, + STATE(3064), 1, + sym_path, + STATE(3103), 1, + sym_cell_path, + ACTIONS(2042), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2044), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309816,21 +448737,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309839,17 +448749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87930] = 4, - ACTIONS(247), 1, + [88852] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(6008), 1, + anon_sym_DOT, + STATE(3064), 1, + sym_path, + STATE(2868), 2, sym_comment, - ACTIONS(1739), 18, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309863,8 +448774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1485), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309872,8 +448782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -309898,17 +448808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87992] = 4, + [88917] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2855), 1, + STATE(2869), 1, sym_comment, - ACTIONS(1741), 4, + ACTIONS(1892), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1739), 47, + ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309916,7 +448825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309956,47 +448864,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88054] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [88978] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2856), 1, + STATE(2870), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3142), 1, - sym_cell_path, - ACTIONS(1931), 14, - anon_sym_DOT_DOT, + ACTIONS(1522), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1524), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1933), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89039] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2871), 1, + sym_comment, + ACTIONS(1921), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1919), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310006,38 +448954,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88124] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5960), 1, - anon_sym_DOT_DOT2, - STATE(2857), 1, - sym_comment, - ACTIONS(5962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310046,31 +448969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1828), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310079,20 +448977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88192] = 6, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [89100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_DOT, - STATE(2979), 1, - sym_path, - ACTIONS(973), 2, + STATE(2872), 1, + sym_comment, + ACTIONS(1970), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - STATE(2858), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 46, + ACTIONS(1968), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310139,14 +449035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88258] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [89161] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5967), 1, - aux_sym__immediate_decimal_token2, - STATE(2859), 1, + STATE(2873), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(1872), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310164,7 +449059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1787), 33, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310198,79 +449093,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88322] = 5, - ACTIONS(247), 1, + [89222] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - STATE(2860), 2, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(5954), 1, + sym_raw_string_begin, + STATE(2815), 1, + aux_sym__multiple_types_repeat1, + STATE(2874), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(5948), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1296), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88386] = 8, - ACTIONS(247), 1, + [89287] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2861), 1, + STATE(2875), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3144), 1, - sym_cell_path, - ACTIONS(1899), 14, + ACTIONS(1246), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310284,15 +449173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1901), 33, + aux_sym_unquoted_token1, + ACTIONS(1244), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310311,6 +449199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310319,21 +449209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88456] = 8, - ACTIONS(247), 1, + [89348] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2862), 1, + STATE(2876), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3140), 1, - sym_cell_path, - ACTIONS(2038), 14, + ACTIONS(1890), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310347,7 +449232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2040), 33, + ACTIONS(1892), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310355,8 +449240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310381,17 +449266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88526] = 4, + [89409] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, + ACTIONS(6011), 1, + anon_sym_QMARK2, + STATE(2877), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1502), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1785), 47, + ACTIONS(1500), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310399,7 +449284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310439,17 +449324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88588] = 4, + [89472] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2864), 1, + ACTIONS(6013), 1, + anon_sym_QMARK2, + STATE(2878), 1, sym_comment, - ACTIONS(1737), 4, + ACTIONS(1492), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1733), 47, + ACTIONS(1490), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310457,7 +449342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310497,31 +449382,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88650] = 4, - ACTIONS(3), 1, + [89535] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2865), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1046), 4, + ACTIONS(1246), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1244), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1044), 47, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310531,21 +449425,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310554,22 +449439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88712] = 8, - ACTIONS(247), 1, + [89596] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2866), 1, + STATE(2880), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3145), 1, - sym_cell_path, - ACTIONS(1907), 14, + ACTIONS(2215), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310583,7 +449462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1909), 33, + ACTIONS(2217), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310591,8 +449470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310617,21 +449496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88782] = 8, - ACTIONS(247), 1, + [89657] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2867), 1, + STATE(2881), 1, sym_comment, - STATE(2871), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - STATE(3112), 1, - sym_cell_path, - ACTIONS(1887), 14, + ACTIONS(1919), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310645,7 +449519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1889), 33, + ACTIONS(1921), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310653,8 +449527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310679,15 +449553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88852] = 4, - ACTIONS(247), 1, + [89718] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2868), 1, + STATE(2882), 1, sym_comment, - ACTIONS(1290), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1968), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310700,16 +449575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(1970), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310726,8 +449602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310736,22 +449610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88913] = 5, - ACTIONS(247), 1, + [89779] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, - aux_sym_unquoted_token2, - STATE(2869), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2883), 1, sym_comment, - ACTIONS(1707), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1719), 43, + ACTIONS(2349), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2345), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310759,10 +449631,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -310781,9 +449656,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -310791,202 +449668,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88976] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2870), 1, - sym_comment, - ACTIONS(1841), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1843), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89037] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5939), 1, - anon_sym_DOT, - STATE(2871), 1, - sym_comment, - STATE(2887), 1, - aux_sym_cell_path_repeat1, - STATE(3077), 1, - sym_path, - ACTIONS(967), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(969), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89104] = 6, + [89842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5972), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5974), 1, - aux_sym__immediate_decimal_token2, - STATE(2872), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(2884), 1, sym_comment, - ACTIONS(1741), 2, + ACTIONS(2355), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1739), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89169] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5976), 1, - sym__newline, - STATE(2873), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 6, + ACTIONS(2353), 45, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1296), 42, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310994,10 +449689,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311016,28 +449714,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89232] = 4, + [89905] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2874), 1, + STATE(2885), 1, sym_comment, - ACTIONS(1787), 3, + ACTIONS(1512), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1785), 47, + ACTIONS(1510), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311045,6 +449742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311084,19 +449783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [89293] = 6, - ACTIONS(247), 1, + [89966] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5979), 1, - anon_sym_DOT_DOT2, - STATE(2875), 1, + STATE(2886), 1, sym_comment, - ACTIONS(5981), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5916), 16, + ACTIONS(2240), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -311112,7 +449806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5926), 31, + ACTIONS(2242), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311120,6 +449814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311144,19 +449840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89358] = 6, + [90027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(2876), 1, + STATE(2887), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1508), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1802), 46, + ACTIONS(1506), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311164,6 +449856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311203,136 +449897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89423] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5930), 1, - anon_sym_RBRACK, - ACTIONS(5933), 1, - sym_raw_string_begin, - STATE(2877), 1, - sym_comment, - ACTIONS(5928), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89492] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5983), 1, - anon_sym_DOT, - ACTIONS(5985), 1, - aux_sym__immediate_decimal_token2, - STATE(2878), 1, - sym_comment, - ACTIONS(1765), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89557] = 4, + [90088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2879), 1, + STATE(2888), 1, sym_comment, - ACTIONS(1843), 3, + ACTIONS(1516), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1841), 47, + ACTIONS(1514), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311340,6 +449913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311379,18 +449954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [89618] = 6, - ACTIONS(247), 1, + [90149] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5987), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5989), 1, - aux_sym__immediate_decimal_token2, - STATE(2880), 1, + STATE(2889), 1, sym_comment, - ACTIONS(1739), 15, + ACTIONS(1556), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311404,8 +449977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1558), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311413,8 +449985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311439,29 +450011,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89683] = 9, + [90210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5924), 1, - sym__entry_separator, - ACTIONS(5993), 1, - anon_sym_COMMA, - ACTIONS(5995), 1, - sym_raw_string_begin, - STATE(2881), 1, + STATE(2890), 1, sym_comment, - STATE(7651), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5991), 44, + ACTIONS(1498), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1496), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311501,21 +450068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89754] = 5, - ACTIONS(247), 1, + [90271] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5997), 1, - anon_sym_LBRACK2, - STATE(2882), 1, + ACTIONS(5630), 1, + aux_sym_unquoted_token2, + STATE(2891), 1, sym_comment, - ACTIONS(2322), 6, + ACTIONS(1788), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2326), 43, + ACTIONS(1800), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311559,20 +450126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89817] = 6, - ACTIONS(247), 1, + [90334] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5979), 1, - anon_sym_DOT_DOT2, - STATE(2883), 1, + ACTIONS(5906), 1, + anon_sym_DOT, + STATE(2868), 1, + aux_sym_cell_path_repeat1, + STATE(2892), 1, sym_comment, - ACTIONS(5981), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5928), 16, + STATE(3064), 1, + sym_path, + ACTIONS(1479), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311586,7 +450152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5933), 31, + ACTIONS(1481), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311594,6 +450160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311618,217 +450186,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89882] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2884), 1, - sym_comment, - ACTIONS(1010), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1012), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89943] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(2885), 1, - sym_comment, - ACTIONS(2242), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2238), 45, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [90006] = 5, + [90401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(2886), 1, - sym_comment, - ACTIONS(1028), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1026), 45, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [90069] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5999), 1, - anon_sym_DOT, - STATE(3077), 1, - sym_path, - STATE(2887), 2, + ACTIONS(6015), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6017), 1, + aux_sym__immediate_decimal_token2, + STATE(2893), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(973), 33, + ACTIONS(1892), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1890), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311838,10 +450221,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311850,32 +450244,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90134] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [90466] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - STATE(2888), 1, + ACTIONS(6019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6021), 1, + aux_sym__immediate_decimal_token2, + STATE(2894), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(1890), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1820), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311885,21 +450292,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311908,20 +450304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90199] = 5, + [90531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2889), 1, + STATE(2895), 1, sym_comment, - ACTIONS(2250), 4, + ACTIONS(2617), 2, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2246), 45, + sym__entry_separator, + ACTIONS(2615), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311962,25 +450353,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [90262] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(2890), 1, - sym_comment, - ACTIONS(2256), 4, - sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2254), 45, + [90592] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2896), 1, + sym_comment, + ACTIONS(1518), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1520), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311988,13 +450383,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -312013,11 +450405,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -312025,19 +450415,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [90325] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90653] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(2891), 1, + ACTIONS(6023), 1, + anon_sym_DOT, + ACTIONS(6025), 1, + aux_sym__immediate_decimal_token2, + STATE(2897), 1, sym_comment, - ACTIONS(2262), 2, + ACTIONS(1874), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2258), 46, + ACTIONS(1872), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312084,18 +450477,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90390] = 6, + [90718] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6027), 1, + anon_sym_DOT, + ACTIONS(6029), 1, + aux_sym__immediate_decimal_token2, + STATE(2898), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [90783] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6033), 1, + aux_sym__immediate_decimal_token2, + STATE(2899), 1, + sym_comment, + ACTIONS(1768), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [90848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(5885), 1, - sym_raw_string_begin, - STATE(2850), 1, - aux_sym__multiple_types_repeat1, - STATE(2892), 1, + STATE(2900), 1, sym_comment, - ACTIONS(5879), 47, + ACTIONS(2409), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2407), 46, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312136,31 +450646,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90455] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [90909] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6002), 1, - anon_sym_DOT_DOT2, - STATE(2893), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(2901), 1, sym_comment, - ACTIONS(6004), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 16, + ACTIONS(2349), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2345), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312169,18 +450702,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2128), 31, + [90974] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(2902), 1, + sym_comment, + ACTIONS(2355), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2353), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312190,10 +450746,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312202,18 +450769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90520] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91039] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6006), 1, - anon_sym_DOT_DOT2, - STATE(2894), 1, + STATE(2903), 1, sym_comment, - ACTIONS(6008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 16, + ACTIONS(1886), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312229,7 +450793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2163), 31, + ACTIONS(1888), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312237,6 +450801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -312261,21 +450827,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90585] = 5, - ACTIONS(247), 1, + [91100] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6010), 1, - anon_sym_EQ2, - STATE(2895), 1, + STATE(2904), 1, sym_comment, - ACTIONS(5058), 6, + ACTIONS(1526), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5056), 43, + anon_sym_DOT, + ACTIONS(1528), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312319,71 +450884,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90648] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2896), 1, - sym_comment, - ACTIONS(2270), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2268), 46, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [90709] = 4, - ACTIONS(247), 1, + [91161] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(6035), 1, + anon_sym_DOT_DOT2, + STATE(2905), 1, sym_comment, - ACTIONS(1733), 17, + ACTIONS(6037), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312399,7 +450911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1737), 33, + ACTIONS(2234), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312407,8 +450919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -312433,32 +450943,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90770] = 6, - ACTIONS(3), 1, + [91226] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(2898), 1, + ACTIONS(6039), 1, + anon_sym_DOT_DOT2, + STATE(2906), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(6041), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2177), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2183), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2246), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312468,21 +450990,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312491,33 +451002,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90835] = 6, - ACTIONS(3), 1, + [91291] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(2899), 1, + ACTIONS(6043), 1, + anon_sym_DOT_DOT2, + STATE(2907), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(6045), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2185), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2191), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2254), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312527,21 +451049,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312550,15 +451061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90900] = 4, - ACTIONS(247), 1, + [91356] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2900), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT2, + STATE(2908), 1, sym_comment, - ACTIONS(1765), 17, + ACTIONS(6049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5926), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312574,7 +451088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(5936), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312582,8 +451096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -312608,29 +451120,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90961] = 4, - ACTIONS(3), 1, + [91421] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2901), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT2, + STATE(2909), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(6049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5941), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5946), 31, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312640,13 +451167,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [91486] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6051), 1, + anon_sym_DOT_DOT2, + STATE(2910), 1, + sym_comment, + ACTIONS(6053), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2197), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312655,6 +451205,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2203), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312663,21 +451238,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91022] = 6, + [91551] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_EQ2, + STATE(2911), 1, + sym_comment, + ACTIONS(5040), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5038), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91614] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, + ACTIONS(1728), 1, aux_sym__unquoted_in_list_token2, - STATE(2902), 1, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + STATE(2912), 1, sym_comment, - ACTIONS(2276), 2, + ACTIONS(1948), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2272), 46, + ACTIONS(1940), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312724,40 +451355,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91087] = 4, - ACTIONS(247), 1, + [91679] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, - sym_comment, - ACTIONS(1290), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 34, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, + sym__entry_separator, + ACTIONS(6059), 1, + anon_sym_COMMA, + ACTIONS(6061), 1, sym_raw_string_begin, - sym__newline, + STATE(2913), 1, + sym_comment, + STATE(7535), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6057), 44, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312767,12 +451393,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312781,18 +451416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91148] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91750] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_DOT_DOT2, - STATE(2904), 1, + STATE(2914), 1, sym_comment, - ACTIONS(6014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 16, + ACTIONS(2219), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312808,7 +451440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2136), 31, + ACTIONS(2221), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312816,6 +451448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -312840,24 +451474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91213] = 4, + [91811] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2905), 1, - sym_comment, - ACTIONS(992), 2, - sym_raw_string_begin, + ACTIONS(1540), 1, sym__entry_separator, - ACTIONS(990), 48, - anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5943), 1, anon_sym_RBRACK, + ACTIONS(5946), 1, + sym_raw_string_begin, + STATE(2915), 1, + sym_comment, + ACTIONS(5941), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -312897,19 +451535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91274] = 6, + [91880] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_DOT, - ACTIONS(6018), 1, - aux_sym__immediate_decimal_token2, - STATE(2906), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + STATE(2916), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(2335), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1765), 46, + ACTIONS(2333), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312956,134 +451594,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91339] = 6, - ACTIONS(247), 1, + [91945] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6020), 1, - anon_sym_DOT, - ACTIONS(6022), 1, - aux_sym__immediate_decimal_token2, - STATE(2907), 1, - sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(1952), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [91404] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6024), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6026), 1, - aux_sym__immediate_decimal_token2, - STATE(2908), 1, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + STATE(2917), 1, sym_comment, - ACTIONS(1585), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [91469] = 4, + ACTIONS(1958), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1950), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [92010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2909), 1, + STATE(2918), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2409), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2268), 47, + ACTIONS(2407), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313131,20 +451710,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token4, - [91530] = 4, - ACTIONS(247), 1, + [92071] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2910), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + STATE(2919), 1, sym_comment, - ACTIONS(2118), 17, + ACTIONS(2361), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2357), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313153,20 +451760,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2120), 33, + [92136] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, + aux_sym__unquoted_in_list_token2, + STATE(2920), 1, + sym_comment, + ACTIONS(2373), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2369), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313176,10 +451804,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313188,20 +451827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91591] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [92201] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2911), 1, + ACTIONS(6063), 1, + anon_sym_LBRACK2, + STATE(2921), 1, sym_comment, - ACTIONS(1006), 7, + ACTIONS(2423), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1008), 43, + ACTIONS(2427), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313245,16 +451886,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91652] = 4, - ACTIONS(247), 1, + [92264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2912), 1, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(2922), 1, + sym_comment, + ACTIONS(2341), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2337), 45, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [92327] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(2923), 1, + sym_comment, + ACTIONS(1540), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1538), 45, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [92390] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + sym__newline, + STATE(2924), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1231), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1233), 42, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92453] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6068), 1, + anon_sym_DOT, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token2, + STATE(2925), 1, sym_comment, - ACTIONS(2183), 17, + ACTIONS(1872), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -313268,7 +452084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2185), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313276,8 +452093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -313302,20 +452119,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91713] = 4, - ACTIONS(247), 1, + [92518] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2913), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1044), 17, + ACTIONS(1874), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1872), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313324,20 +452166,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1046), 33, + aux_sym__unquoted_in_list_token2, + [92579] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym__unquoted_in_list_token4, + STATE(2927), 1, + sym_comment, + ACTIONS(2341), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2337), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313347,10 +452211,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313359,20 +452234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91774] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [92644] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2914), 1, + STATE(2928), 1, sym_comment, - ACTIONS(1014), 7, + ACTIONS(2066), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 43, + ACTIONS(2068), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313416,42 +452291,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91835] = 4, - ACTIONS(247), 1, + [92704] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, + ACTIONS(6072), 1, + anon_sym_LBRACK2, + STATE(2929), 1, sym_comment, - ACTIONS(2052), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2054), 33, + ACTIONS(2427), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2423), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313461,10 +452324,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313473,24 +452347,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91896] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [92766] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2916), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4907), 1, + anon_sym_DOT_DOT2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(6074), 1, + sym_filesize_unit, + ACTIONS(6076), 1, + sym_duration_unit, + STATE(2930), 1, sym_comment, - ACTIONS(996), 2, + STATE(7710), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [92840] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2440), 1, sym_raw_string_begin, + ACTIONS(6078), 1, sym__entry_separator, - ACTIONS(994), 48, + STATE(2931), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2435), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313529,31 +452467,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91957] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [92902] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2917), 1, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token2, + STATE(2932), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(1872), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(998), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313563,21 +452513,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313586,17 +452525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92018] = 4, - ACTIONS(247), 1, + [92964] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2918), 1, + ACTIONS(6081), 1, + anon_sym_QMARK2, + STATE(2933), 1, sym_comment, - ACTIONS(1739), 17, + ACTIONS(1500), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -313610,7 +452548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1741), 33, + ACTIONS(1502), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313618,8 +452556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -313644,32 +452582,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92079] = 6, - ACTIONS(3), 1, + [93026] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(2919), 1, + ACTIONS(6083), 1, + anon_sym_QMARK2, + STATE(2934), 1, sym_comment, - ACTIONS(2232), 2, + ACTIONS(1490), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1492), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2230), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313679,21 +452627,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313702,21 +452639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92144] = 6, - ACTIONS(247), 1, + [93088] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_DOT_DOT2, - STATE(2920), 1, + ACTIONS(6085), 1, + aux_sym__immediate_decimal_token2, + STATE(2935), 1, sym_comment, - ACTIONS(6030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 16, + ACTIONS(1919), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -313730,7 +452661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2152), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313738,6 +452670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -313762,16 +452696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92209] = 4, - ACTIONS(3), 1, + [93150] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2921), 1, + STATE(2936), 1, sym_comment, - ACTIONS(2462), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2460), 48, + ACTIONS(1538), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1540), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313779,13 +452717,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -313804,14 +452739,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313819,25 +452752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92270] = 5, + [93210] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6032), 1, - anon_sym_QMARK2, - STATE(2922), 1, - sym_comment, - ACTIONS(980), 2, - sym_raw_string_begin, + ACTIONS(6089), 1, + anon_sym_RBRACE, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(978), 47, + ACTIONS(6093), 1, + sym_raw_string_begin, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2937), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313876,47 +452810,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92333] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [93276] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2923), 1, + STATE(2938), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(2472), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2474), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1002), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [93336] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2939), 1, + sym_comment, + ACTIONS(1510), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313925,40 +452887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92394] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6034), 1, - anon_sym_QMARK2, - STATE(2924), 1, - sym_comment, - ACTIONS(986), 2, + ACTIONS(1512), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(984), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313968,21 +452911,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313991,23 +452923,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92457] = 4, + [93396] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2925), 1, - sym_comment, - ACTIONS(1767), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(6093), 1, + sym_raw_string_begin, + ACTIONS(6095), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2940), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -314047,18 +452981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [92518] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [93462] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2926), 1, + STATE(2941), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(1506), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314072,7 +453003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1787), 33, + ACTIONS(1508), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314080,8 +453011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314106,32 +453038,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92579] = 6, - ACTIONS(3), 1, + [93522] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym__unquoted_in_list_token4, - STATE(2927), 1, + STATE(2942), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(1514), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1516), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2238), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314141,21 +453082,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314164,105 +453094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92644] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2928), 1, - sym_comment, - ACTIONS(1899), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1901), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92704] = 7, - ACTIONS(3), 1, + [93582] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6038), 1, - anon_sym_RBRACE, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - STATE(2929), 1, + STATE(2943), 1, sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, + ACTIONS(1496), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314271,41 +453114,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [92770] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1498), 34, sym_raw_string_begin, - ACTIONS(6044), 1, - anon_sym_RBRACE, - STATE(2930), 1, - sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314315,21 +453138,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314338,18 +453150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [92836] = 5, + [93642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6046), 1, - aux_sym__immediate_decimal_token2, - STATE(2931), 1, + STATE(2944), 1, sym_comment, - ACTIONS(1787), 2, + ACTIONS(1528), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1785), 46, + ACTIONS(1526), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314357,6 +453166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314396,15 +453206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92898] = 4, + [93702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2932), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(1520), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1014), 47, + ACTIONS(1518), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314452,155 +453262,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92958] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2933), 1, - sym_comment, - ACTIONS(2486), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2488), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93018] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2934), 1, - sym_comment, - ACTIONS(2510), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2512), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93078] = 6, - ACTIONS(247), 1, + [93762] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_DOT, - ACTIONS(6050), 1, - aux_sym__immediate_decimal_token2, - STATE(2935), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1765), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(1524), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1522), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314610,10 +453294,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314622,19 +453317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93142] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [93822] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2936), 1, + STATE(2947), 1, sym_comment, - ACTIONS(2414), 6, + ACTIONS(1994), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2416), 43, + ACTIONS(1996), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314678,19 +453374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93202] = 4, - ACTIONS(247), 1, + [93882] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2937), 1, + STATE(2948), 1, sym_comment, - ACTIONS(1026), 6, + ACTIONS(2593), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1028), 43, + ACTIONS(2595), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314734,19 +453430,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93262] = 4, - ACTIONS(247), 1, + [93942] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2938), 1, + ACTIONS(6097), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6099), 1, + aux_sym__immediate_decimal_token2, + STATE(2949), 1, + sym_comment, + ACTIONS(1890), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1892), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94006] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2950), 1, sym_comment, - ACTIONS(2390), 6, + ACTIONS(2488), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2392), 43, + ACTIONS(2490), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314790,19 +453544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93322] = 4, - ACTIONS(247), 1, + [94066] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(2951), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(2601), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1000), 43, + ACTIONS(2603), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314846,20 +453600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93382] = 7, + [94126] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(6093), 1, sym_raw_string_begin, - ACTIONS(6052), 1, + ACTIONS(6101), 1, anon_sym_RBRACE, - STATE(2940), 1, - sym_comment, - STATE(2999), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, + STATE(2952), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -314905,23 +453659,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [93448] = 5, - ACTIONS(3), 1, + [94192] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token2, - STATE(2941), 1, + STATE(2953), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(2500), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2502), 43, sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [94252] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(1707), 46, + ACTIONS(6093), 1, + sym_raw_string_begin, + ACTIONS(6103), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2954), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -314961,20 +453773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93510] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [94318] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2942), 1, + STATE(2955), 1, sym_comment, - ACTIONS(2406), 6, + ACTIONS(2504), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2408), 43, + ACTIONS(2506), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315018,19 +453830,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93570] = 4, - ACTIONS(247), 1, + [94378] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2943), 1, + ACTIONS(6025), 1, + aux_sym__immediate_decimal_token2, + STATE(2956), 1, + sym_comment, + ACTIONS(1874), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1872), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94440] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6105), 1, + aux_sym__immediate_decimal_token2, + STATE(2957), 1, sym_comment, - ACTIONS(1887), 6, + ACTIONS(1921), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1919), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94502] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2958), 1, + sym_comment, + ACTIONS(2018), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1889), 43, + ACTIONS(2020), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315074,19 +454000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93630] = 4, - ACTIONS(247), 1, + [94562] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2944), 1, + STATE(2959), 1, sym_comment, - ACTIONS(2343), 6, + ACTIONS(2508), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2345), 43, + ACTIONS(2510), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315130,19 +454056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93690] = 4, - ACTIONS(247), 1, + [94622] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2945), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2440), 6, + ACTIONS(2512), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2442), 43, + ACTIONS(2514), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315186,19 +454112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93750] = 4, - ACTIONS(247), 1, + [94682] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(2961), 1, sym_comment, - ACTIONS(1915), 6, + ACTIONS(2034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1917), 43, + ACTIONS(2036), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315242,19 +454168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93810] = 4, - ACTIONS(247), 1, + [94742] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2947), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1927), 6, + ACTIONS(2038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1929), 43, + ACTIONS(2040), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315298,19 +454224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93870] = 4, - ACTIONS(247), 1, + [94802] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2948), 1, + STATE(2963), 1, sym_comment, - ACTIONS(1942), 6, + ACTIONS(2042), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1944), 43, + ACTIONS(2044), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315354,19 +454280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93930] = 4, - ACTIONS(247), 1, + [94862] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2949), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2490), 6, + ACTIONS(2531), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2492), 43, + ACTIONS(2533), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315410,19 +454336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93990] = 4, - ACTIONS(247), 1, + [94922] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2965), 1, sym_comment, - ACTIONS(2034), 6, + ACTIONS(2054), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2036), 43, + ACTIONS(2056), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315466,19 +454392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94050] = 4, - ACTIONS(247), 1, + [94982] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2951), 1, + STATE(2966), 1, sym_comment, - ACTIONS(2367), 6, + ACTIONS(2535), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2369), 43, + ACTIONS(2537), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315522,19 +454448,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94110] = 4, - ACTIONS(247), 1, + [95042] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2952), 1, + ACTIONS(6107), 1, + anon_sym_DOT, + ACTIONS(6109), 1, + aux_sym__immediate_decimal_token2, + STATE(2967), 1, + sym_comment, + ACTIONS(1872), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1874), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95106] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(2968), 1, sym_comment, - ACTIONS(2379), 6, + ACTIONS(2539), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2381), 43, + ACTIONS(2541), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315578,19 +454562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94170] = 4, - ACTIONS(247), 1, + [95166] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2953), 1, + STATE(2969), 1, sym_comment, - ACTIONS(2038), 6, + ACTIONS(2058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2040), 43, + ACTIONS(2060), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315634,14 +454618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94230] = 5, - ACTIONS(247), 1, + [95226] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5985), 1, - aux_sym__immediate_decimal_token2, - STATE(2954), 1, + ACTIONS(6111), 1, + sym__newline, + STATE(2970), 2, sym_comment, - ACTIONS(1765), 15, + aux_sym_shebang_repeat1, + ACTIONS(1231), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315656,14 +454642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(1233), 32, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -315683,6 +454665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315691,19 +454675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94292] = 4, - ACTIONS(247), 1, + [95288] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2955), 1, + STATE(2971), 1, sym_comment, - ACTIONS(2448), 6, + ACTIONS(2547), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2450), 43, + ACTIONS(2549), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315747,19 +454731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94352] = 4, - ACTIONS(247), 1, + [95348] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(2972), 1, sym_comment, - ACTIONS(2452), 6, + ACTIONS(2551), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2454), 43, + ACTIONS(2553), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315803,19 +454787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94412] = 4, - ACTIONS(247), 1, + [95408] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2957), 1, + STATE(2973), 1, sym_comment, - ACTIONS(1907), 6, + ACTIONS(2070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1909), 43, + ACTIONS(2072), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315859,19 +454843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94472] = 4, - ACTIONS(247), 1, + [95468] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2974), 1, sym_comment, - ACTIONS(2468), 6, + ACTIONS(2559), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2470), 43, + ACTIONS(2561), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315915,19 +454899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94532] = 4, - ACTIONS(247), 1, + [95528] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(2975), 1, sym_comment, - ACTIONS(2482), 6, + ACTIONS(2563), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2484), 43, + ACTIONS(2565), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315971,75 +454955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2960), 1, - sym_comment, - ACTIONS(6056), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6054), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94652] = 4, - ACTIONS(247), 1, + [95588] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1707), 6, + ACTIONS(1788), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1719), 43, + ACTIONS(1800), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316083,19 +455011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94712] = 4, - ACTIONS(247), 1, + [95648] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2962), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2444), 6, + ACTIONS(2567), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2446), 43, + ACTIONS(2569), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316139,19 +455067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94772] = 4, - ACTIONS(247), 1, + [95708] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2963), 1, + STATE(2978), 1, sym_comment, - ACTIONS(5054), 6, + ACTIONS(5034), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5052), 43, + ACTIONS(5032), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316195,19 +455123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94832] = 4, - ACTIONS(247), 1, + [95768] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2964), 1, + STATE(2979), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(5046), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1288), 43, + ACTIONS(5044), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316243,142 +455171,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94892] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - ACTIONS(6058), 1, - anon_sym_RBRACE, - STATE(2965), 1, - sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [94958] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2966), 1, - sym_comment, - ACTIONS(6062), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6060), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95018] = 4, - ACTIONS(247), 1, + [95828] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2967), 1, + STATE(2980), 1, sym_comment, - ACTIONS(5064), 6, + ACTIONS(2006), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5062), 43, + ACTIONS(2008), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316422,19 +455235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95078] = 4, - ACTIONS(247), 1, + [95888] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2981), 1, sym_comment, - ACTIONS(1847), 6, + ACTIONS(2635), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1851), 43, + ACTIONS(2637), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316478,193 +455291,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95138] = 4, - ACTIONS(247), 1, + [95948] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2969), 1, - sym_comment, - ACTIONS(1002), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1004), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95198] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - ACTIONS(6064), 1, - anon_sym_RBRACE, - STATE(2970), 1, + ACTIONS(6029), 1, + aux_sym__immediate_decimal_token2, + STATE(2982), 1, sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [95264] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - ACTIONS(6066), 1, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_RBRACE, - STATE(2971), 1, - sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [95330] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [96010] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2972), 1, + STATE(2983), 1, sym_comment, - ACTIONS(2472), 6, + ACTIONS(1556), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2474), 43, + ACTIONS(1558), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316708,14 +455404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95390] = 5, - ACTIONS(247), 1, + [96070] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6022), 1, + ACTIONS(6114), 1, aux_sym__immediate_decimal_token2, - STATE(2973), 1, + STATE(2984), 1, sym_comment, - ACTIONS(1573), 8, + ACTIONS(1820), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -316724,7 +455420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 40, + ACTIONS(1822), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316765,71 +455461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [95452] = 5, - ACTIONS(247), 1, + [96132] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6068), 1, - anon_sym_QMARK2, - STATE(2974), 1, - sym_comment, - ACTIONS(978), 15, - anon_sym_DOT_DOT, + ACTIONS(6116), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(980), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95514] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6070), 1, + ACTIONS(6118), 1, aux_sym__immediate_decimal_token2, - STATE(2975), 1, + STATE(2985), 1, sym_comment, - ACTIONS(1681), 8, + ACTIONS(1760), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -316838,7 +455479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 40, + ACTIONS(1762), 39, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316850,10 +455492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -316879,19 +455519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [95576] = 4, - ACTIONS(247), 1, + [96196] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2976), 1, + STATE(2986), 1, sym_comment, - ACTIONS(1044), 6, + ACTIONS(2597), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1046), 43, + ACTIONS(2599), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316935,16 +455575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95636] = 6, - ACTIONS(247), 1, + [96256] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6120), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6074), 1, + ACTIONS(6122), 1, aux_sym__immediate_decimal_token2, - STATE(2977), 1, + STATE(2987), 1, sym_comment, - ACTIONS(1585), 8, + ACTIONS(1768), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -316953,7 +455593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1587), 39, + ACTIONS(1770), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -316993,134 +455633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [95700] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - ACTIONS(6076), 1, - anon_sym_RBRACE, - STATE(2978), 1, - sym_comment, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [95766] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2979), 1, - sym_comment, - ACTIONS(1008), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1006), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95826] = 4, - ACTIONS(247), 1, + [96320] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(2988), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(2605), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 43, + ACTIONS(2607), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317164,19 +455689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95886] = 4, - ACTIONS(247), 1, + [96380] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2981), 1, + STATE(2989), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(2609), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2466), 43, + ACTIONS(2611), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317220,42 +455745,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95946] = 5, - ACTIONS(247), 1, + [96440] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6078), 1, - anon_sym_QMARK2, - STATE(2982), 1, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token2, + STATE(2990), 1, sym_comment, - ACTIONS(984), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + ACTIONS(1800), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1788), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317265,30 +455778,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96008] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2983), 1, - sym_comment, - ACTIONS(994), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317297,34 +455793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(996), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317333,104 +455801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96068] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4858), 1, - anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(6080), 1, - sym_filesize_unit, - ACTIONS(6082), 1, - sym_duration_unit, - STATE(2984), 1, - sym_comment, - STATE(7707), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [96142] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [96502] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2985), 1, + STATE(2991), 1, sym_comment, - ACTIONS(998), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1000), 34, + ACTIONS(6126), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6124), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317440,10 +455834,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317452,19 +455857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96202] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [96562] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2456), 6, + ACTIONS(1246), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2458), 43, + ACTIONS(1244), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317500,7 +455906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317508,187 +455914,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96262] = 4, - ACTIONS(247), 1, + [96622] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2987), 1, - sym_comment, - ACTIONS(1002), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1004), 43, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96322] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2988), 1, + ACTIONS(6128), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2993), 1, sym_comment, - ACTIONS(2410), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2412), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6087), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96382] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [96688] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2989), 1, - sym_comment, - ACTIONS(2418), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2420), 43, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6130), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2994), 1, + sym_comment, + ACTIONS(6087), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96442] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6084), 1, - aux_sym__immediate_decimal_token2, - STATE(2990), 1, - sym_comment, - ACTIONS(1785), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317697,21 +456023,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [96754] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2995), 1, + sym_comment, + ACTIONS(6134), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6132), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317721,10 +456064,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317733,20 +456087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96504] = 7, + aux_sym__unquoted_in_list_token1, + [96814] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(6093), 1, sym_raw_string_begin, - ACTIONS(6086), 1, + ACTIONS(6136), 1, anon_sym_RBRACE, - STATE(2991), 1, - sym_comment, - STATE(2999), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, + STATE(2996), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -317792,20 +456147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [96570] = 7, + [96880] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(6093), 1, sym_raw_string_begin, - ACTIONS(6088), 1, + ACTIONS(6138), 1, anon_sym_RBRACE, - STATE(2992), 1, - sym_comment, - STATE(2999), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6036), 45, + STATE(2997), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -317851,21 +456206,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [96636] = 6, - ACTIONS(247), 1, + [96946] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6090), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6092), 1, - aux_sym__immediate_decimal_token2, - STATE(2993), 1, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, + sym_raw_string_begin, + ACTIONS(6140), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2998), 1, sym_comment, - ACTIONS(1739), 14, + ACTIONS(6087), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317874,20 +456256,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1741), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [97012] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, sym_raw_string_begin, + ACTIONS(6142), 1, + anon_sym_RBRACE, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, + STATE(2999), 1, + sym_comment, + ACTIONS(6087), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317897,10 +456300,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317909,19 +456323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96700] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [97078] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2994), 1, + STATE(3000), 1, sym_comment, - ACTIONS(5099), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5097), 43, + ACTIONS(2470), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317965,19 +456380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96760] = 4, - ACTIONS(247), 1, + [97138] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(3001), 1, sym_comment, - ACTIONS(1863), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1865), 43, + ACTIONS(2470), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318021,19 +456436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96820] = 4, - ACTIONS(247), 1, + [97198] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2996), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2398), 6, + ACTIONS(2476), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2400), 43, + ACTIONS(2478), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318077,19 +456492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96880] = 4, - ACTIONS(247), 1, + [97258] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(3003), 1, sym_comment, - ACTIONS(2430), 6, + ACTIONS(2480), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2432), 43, + ACTIONS(2482), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318133,134 +456548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96940] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6094), 1, - anon_sym_LBRACK2, - STATE(2998), 1, - sym_comment, - ACTIONS(2326), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2322), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97002] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2337), 1, - sym_raw_string_begin, - ACTIONS(6096), 1, - sym__entry_separator, - STATE(2999), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2332), 46, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [97064] = 7, + [97318] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(6093), 1, sym_raw_string_begin, - ACTIONS(6099), 1, + ACTIONS(6144), 1, anon_sym_RBRACE, - STATE(2999), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - STATE(3000), 1, + STATE(3004), 1, sym_comment, - ACTIONS(6036), 45, + ACTIONS(6087), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -318306,132 +456607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97130] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6018), 1, - aux_sym__immediate_decimal_token2, - STATE(3001), 1, - sym_comment, - ACTIONS(1767), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1765), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97192] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3002), 1, - sym_comment, - ACTIONS(994), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(996), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97252] = 4, - ACTIONS(247), 1, + [97384] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2402), 6, + ACTIONS(2492), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2404), 43, + ACTIONS(2494), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318475,19 +456663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97312] = 4, - ACTIONS(247), 1, + [97444] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(3006), 1, sym_comment, - ACTIONS(5134), 6, + ACTIONS(2496), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5132), 43, + ACTIONS(2498), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318531,19 +456719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97372] = 4, - ACTIONS(247), 1, + [97504] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3005), 1, + STATE(3007), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(5188), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(992), 43, + ACTIONS(5186), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318587,20 +456775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97432] = 7, + [97564] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(6093), 1, sym_raw_string_begin, - ACTIONS(6101), 1, + ACTIONS(6146), 1, anon_sym_RBRACE, - STATE(2999), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - STATE(3006), 1, + STATE(3008), 1, sym_comment, - ACTIONS(6036), 45, + ACTIONS(6087), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -318646,19 +456834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97498] = 4, - ACTIONS(247), 1, + [97630] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3007), 1, + STATE(3009), 1, sym_comment, - ACTIONS(6103), 6, + ACTIONS(6148), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(6105), 43, + ACTIONS(6150), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318702,19 +456890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97558] = 4, - ACTIONS(247), 1, + [97690] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(5210), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 43, + ACTIONS(5208), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318758,19 +456946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97618] = 4, - ACTIONS(247), 1, + [97750] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3009), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5121), 6, + ACTIONS(5130), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5119), 43, + ACTIONS(5128), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318814,76 +457002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97678] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6107), 1, - sym__newline, - STATE(3010), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 32, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97740] = 4, - ACTIONS(247), 1, + [97810] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(5136), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2349), 43, + ACTIONS(5134), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318927,19 +457058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97800] = 4, - ACTIONS(247), 1, + [97870] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(3013), 1, sym_comment, - ACTIONS(5138), 6, + ACTIONS(1510), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5136), 43, + ACTIONS(1512), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318983,416 +457114,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97860] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3013), 1, - sym_comment, - ACTIONS(1012), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1010), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97920] = 4, - ACTIONS(247), 1, + [97930] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3014), 1, sym_comment, - ACTIONS(990), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 34, + ACTIONS(1506), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1508), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97980] = 7, - ACTIONS(3), 1, + [97990] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, - sym_raw_string_begin, - ACTIONS(6110), 1, - anon_sym_RBRACE, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, STATE(3015), 1, sym_comment, - ACTIONS(6036), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(1514), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1516), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [98046] = 6, - ACTIONS(247), 1, + [98050] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6112), 1, - anon_sym_DOT, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, STATE(3016), 1, sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98110] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2278), 1, - aux_sym__unquoted_in_list_token2, - STATE(3017), 1, - sym_comment, - ACTIONS(2272), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2276), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98171] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3018), 1, - sym_comment, - ACTIONS(2484), 2, + ACTIONS(1496), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1498), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2482), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98230] = 4, + [98110] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3019), 1, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(3017), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(2355), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1707), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98289] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3020), 1, - sym_comment, - ACTIONS(2446), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2444), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2353), 38, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -319413,9 +457321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319433,70 +457338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98348] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3021), 1, - sym_comment, - ACTIONS(1290), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 33, - sym_raw_string_begin, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98407] = 4, + [98171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(3018), 1, sym_comment, - ACTIONS(2438), 2, + ACTIONS(2514), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2436), 46, + ACTIONS(2512), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319543,15 +457393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98466] = 4, + [98230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3023), 1, + STATE(3019), 1, sym_comment, - ACTIONS(2496), 2, + ACTIONS(2036), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2494), 46, + ACTIONS(2034), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319598,71 +457448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98525] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(3024), 1, - sym_comment, - ACTIONS(1802), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1810), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98586] = 4, + [98289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3025), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2500), 2, + ACTIONS(2040), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2498), 46, + ACTIONS(2038), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319709,15 +457503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98645] = 4, + [98348] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(3021), 1, sym_comment, - ACTIONS(2516), 2, + ACTIONS(2044), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2514), 46, + ACTIONS(2042), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319764,15 +457558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98704] = 4, + [98407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3027), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2353), 2, + ACTIONS(2533), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2351), 46, + ACTIONS(2531), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319819,15 +457613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98763] = 4, + [98466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3023), 1, sym_comment, - ACTIONS(2357), 2, + ACTIONS(2056), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2355), 46, + ACTIONS(2054), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319874,15 +457668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98822] = 4, + [98525] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3029), 1, + STATE(3024), 1, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2537), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2359), 46, + ACTIONS(2535), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319929,15 +457723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98881] = 4, + [98584] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3030), 1, + STATE(3025), 1, sym_comment, - ACTIONS(2365), 2, + ACTIONS(2541), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2363), 46, + ACTIONS(2539), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319984,41 +457778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98940] = 5, - ACTIONS(247), 1, + [98643] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6116), 1, - anon_sym_LBRACK2, - STATE(3031), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2322), 15, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2326), 32, + ACTIONS(2060), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2058), 46, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320028,10 +457809,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320040,41 +457832,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99001] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [98702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6050), 1, - aux_sym__immediate_decimal_token2, - STATE(3032), 1, + STATE(3027), 1, sym_comment, - ACTIONS(1765), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(2068), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2066), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320084,10 +457864,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320096,21 +457887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99062] = 4, + aux_sym__unquoted_in_list_token1, + [98761] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3033), 1, + ACTIONS(2343), 1, + aux_sym__unquoted_in_list_token4, + STATE(3028), 1, sym_comment, - ACTIONS(1909), 2, + ACTIONS(2341), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1907), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2337), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -320131,9 +457927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320151,41 +457944,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99121] = 5, - ACTIONS(247), 1, + [98822] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6118), 1, - aux_sym__immediate_decimal_token2, - STATE(3034), 1, + STATE(3029), 1, sym_comment, - ACTIONS(1785), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1787), 33, + ACTIONS(2409), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2407), 39, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320195,31 +457977,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99182] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token2, - STATE(3035), 1, - sym_comment, - ACTIONS(1707), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320228,20 +457989,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1719), 33, + aux_sym__unquoted_in_list_token4, + [98881] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3030), 1, + sym_comment, + ACTIONS(2549), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2547), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320251,10 +458030,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320263,41 +458053,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99243] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [98940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - STATE(3036), 1, + STATE(3031), 1, sym_comment, - ACTIONS(2258), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2262), 33, + ACTIONS(2553), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2551), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320307,10 +458085,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320319,14 +458108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99304] = 5, + aux_sym__unquoted_in_list_token1, + [98999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2351), 1, aux_sym__unquoted_in_list_token4, - STATE(3037), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5933), 9, + ACTIONS(2349), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320336,7 +458126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5928), 38, + ACTIONS(2345), 38, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -320375,15 +458165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99365] = 4, + [99060] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3033), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(1512), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1765), 46, + ACTIONS(1510), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320430,15 +458220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99424] = 4, + [99119] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3034), 1, sym_comment, - ACTIONS(1741), 2, + ACTIONS(1508), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1739), 46, + ACTIONS(1506), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320485,15 +458275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99483] = 4, + [99178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3040), 1, + STATE(3035), 1, sym_comment, - ACTIONS(1787), 2, + ACTIONS(2072), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1785), 46, + ACTIONS(2070), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320540,15 +458330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99542] = 4, + [99237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(3036), 1, sym_comment, - ACTIONS(1843), 2, + ACTIONS(2561), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1841), 46, + ACTIONS(2559), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320595,74 +458385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99601] = 11, - ACTIONS(247), 1, + [99296] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4858), 1, - anon_sym_DOT_DOT2, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - ACTIONS(6120), 1, - sym_filesize_unit, - ACTIONS(6122), 1, - sym_duration_unit, - STATE(3042), 1, - sym_comment, - STATE(7463), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [99674] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3043), 1, + STATE(3037), 1, sym_comment, - ACTIONS(1573), 8, + ACTIONS(1760), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -320671,7 +458399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 40, + ACTIONS(1762), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320712,12 +458440,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99733] = 4, - ACTIONS(247), 1, + [99355] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3044), 1, + STATE(3038), 1, + sym_comment, + ACTIONS(2565), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2563), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3039), 1, + sym_comment, + ACTIONS(1516), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1514), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99473] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3040), 1, sym_comment, - ACTIONS(1585), 8, + ACTIONS(1768), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -320726,7 +458564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1587), 40, + ACTIONS(1770), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320767,12 +458605,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99792] = 4, - ACTIONS(247), 1, + [99532] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3041), 1, + sym_comment, + ACTIONS(2490), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2488), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99591] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3042), 1, sym_comment, - ACTIONS(1681), 8, + ACTIONS(1820), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -320781,7 +458674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 40, + ACTIONS(1822), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320822,12 +458715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99851] = 4, - ACTIONS(247), 1, + [99650] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3043), 1, sym_comment, - ACTIONS(1761), 8, + ACTIONS(1866), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -320836,7 +458729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1763), 40, + ACTIONS(1868), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320877,70 +458770,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99910] = 5, - ACTIONS(247), 1, + [99709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - STATE(3047), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [99971] = 5, - ACTIONS(247), 1, + ACTIONS(1558), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1556), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99768] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6124), 1, + ACTIONS(6118), 1, aux_sym__immediate_decimal_token2, - STATE(3048), 1, + STATE(3045), 1, sym_comment, - ACTIONS(1681), 8, + ACTIONS(1760), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -320949,7 +458841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 39, + ACTIONS(1762), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -320989,15 +458881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [100032] = 4, + [99829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3049), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2163), 2, + ACTIONS(1800), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2157), 46, + ACTIONS(1788), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321044,15 +458936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100091] = 4, + [99888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3047), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2569), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2118), 46, + ACTIONS(2567), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321099,28 +458991,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100150] = 4, - ACTIONS(3), 1, + [99947] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3051), 1, + ACTIONS(6152), 1, + aux_sym__immediate_decimal_token2, + STATE(3048), 1, sym_comment, - ACTIONS(2185), 2, + ACTIONS(1820), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [100008] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token2, + STATE(3049), 1, + sym_comment, + ACTIONS(1788), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1800), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2183), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321130,21 +459091,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321153,31 +459103,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100209] = 6, - ACTIONS(3), 1, + [100069] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1865), 1, - sym__entry_separator, - ACTIONS(6128), 1, - anon_sym_RBRACK, - ACTIONS(6131), 1, - sym_raw_string_begin, - STATE(3052), 1, + STATE(3050), 1, sym_comment, - ACTIONS(6126), 45, + ACTIONS(1246), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1244), 33, + sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321187,21 +459144,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321210,22 +459158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100272] = 4, + [100128] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3053), 1, - sym_comment, - ACTIONS(2462), 2, - sym_raw_string_begin, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, sym__entry_separator, - ACTIONS(2460), 46, + ACTIONS(5936), 1, + sym_raw_string_begin, + STATE(3051), 1, + sym_comment, + ACTIONS(5926), 45, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321265,19 +459214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100331] = 6, + aux_sym__unquoted_in_list_token1, + [100191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5924), 1, + ACTIONS(1540), 1, sym__entry_separator, - ACTIONS(5926), 1, + ACTIONS(5943), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym_raw_string_begin, - STATE(3054), 1, + STATE(3052), 1, sym_comment, - ACTIONS(5916), 45, + ACTIONS(5941), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -321323,30 +459272,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100394] = 6, - ACTIONS(3), 1, + [100254] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(5930), 1, - anon_sym_RBRACK, - ACTIONS(5933), 1, - sym_raw_string_begin, - STATE(3055), 1, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + STATE(3053), 1, sym_comment, - ACTIONS(5928), 45, + ACTIONS(2333), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2335), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321356,21 +459316,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321379,16 +459328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100457] = 4, + [100315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3056), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2385), 2, + ACTIONS(1498), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2383), 46, + ACTIONS(1496), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321435,32 +459383,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100516] = 5, - ACTIONS(3), 1, + [100374] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym__unquoted_in_list_token4, - STATE(3057), 1, + ACTIONS(6109), 1, + aux_sym__immediate_decimal_token2, + STATE(3055), 1, sym_comment, - ACTIONS(2242), 9, + ACTIONS(1872), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2238), 38, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321470,10 +459427,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100435] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + STATE(3056), 1, + sym_comment, + ACTIONS(1950), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321482,6 +459460,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1958), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321490,26 +459495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100577] = 5, + [100496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(3058), 1, + STATE(3057), 1, sym_comment, - ACTIONS(2250), 9, + ACTIONS(2502), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2500), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2246), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321530,6 +459530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321547,32 +459550,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100638] = 5, - ACTIONS(3), 1, + [100555] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(3059), 1, + STATE(3058), 1, sym_comment, - ACTIONS(2256), 9, + ACTIONS(1872), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2254), 38, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321582,10 +459593,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100614] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token2, + STATE(3059), 1, + sym_comment, + ACTIONS(1919), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321594,39 +459626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100699] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6042), 1, + ACTIONS(1921), 33, sym_raw_string_begin, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - STATE(3060), 1, - sym_comment, - ACTIONS(6036), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321636,21 +459649,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321659,29 +459661,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100762] = 4, - ACTIONS(3), 1, + [100675] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3061), 1, + STATE(3060), 1, sym_comment, - ACTIONS(2470), 2, + ACTIONS(1522), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1524), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2468), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321691,21 +459704,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321714,29 +459716,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100821] = 4, - ACTIONS(3), 1, + [100734] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(1968), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1970), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2130), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321746,21 +459759,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321769,13 +459771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100880] = 4, + [100793] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3063), 1, + ACTIONS(2331), 1, + aux_sym__unquoted_in_list_token4, + STATE(3062), 1, sym_comment, - ACTIONS(2270), 9, + ACTIONS(5946), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321785,7 +459788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2268), 39, + ACTIONS(5941), 38, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -321824,15 +459827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [100939] = 5, - ACTIONS(247), 1, + [100854] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym__unquoted_in_list_token2, - STATE(3064), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1820), 14, + ACTIONS(1940), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321847,7 +459849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1828), 33, + ACTIONS(1948), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321881,44 +459883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101000] = 4, - ACTIONS(3), 1, + [100915] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3064), 1, sym_comment, - ACTIONS(2152), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2146), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1526), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321927,37 +459903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101059] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3066), 1, - sym_comment, - ACTIONS(2474), 2, + ACTIONS(1528), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2472), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321967,21 +459926,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321990,16 +459938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101118] = 4, + [100974] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3067), 1, + STATE(3065), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(2506), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(990), 46, + ACTIONS(2504), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322046,15 +459993,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101177] = 4, + [101033] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + STATE(3066), 1, + sym_comment, + ACTIONS(2357), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2361), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101094] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3068), 1, + STATE(3067), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(2020), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(994), 46, + ACTIONS(2018), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322101,15 +460104,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101236] = 4, + [101153] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3068), 1, + sym_comment, + ACTIONS(1890), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101212] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3069), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(2474), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(998), 46, + ACTIONS(2472), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322156,15 +460214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101295] = 4, + [101271] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3070), 1, sym_comment, - ACTIONS(1046), 2, + ACTIONS(1874), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1044), 46, + ACTIONS(1872), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322211,41 +460269,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101354] = 5, - ACTIONS(247), 1, + [101330] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6133), 1, - sym__newline, - STATE(3071), 2, + STATE(3071), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1296), 31, + ACTIONS(2203), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2197), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322255,10 +460300,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322267,21 +460323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101415] = 4, + aux_sym__unquoted_in_list_token1, + [101389] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6093), 1, + sym_raw_string_begin, + STATE(2931), 1, + aux_sym__multiple_types_repeat1, STATE(3072), 1, sym_comment, - ACTIONS(1004), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1002), 46, + ACTIONS(6087), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -322321,22 +460380,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101474] = 4, + aux_sym_unquoted_token1, + [101452] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3073), 1, sym_comment, - ACTIONS(2404), 2, + ACTIONS(2617), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2402), 46, + ACTIONS(2615), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -322376,16 +460435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101533] = 4, + aux_sym_unquoted_token1, + [101511] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3074), 1, sym_comment, - ACTIONS(2392), 2, + ACTIONS(2486), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2390), 46, + ACTIONS(2484), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322432,15 +460491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101592] = 4, + [101570] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3075), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(1892), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2406), 46, + ACTIONS(1890), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322487,40 +460546,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101651] = 4, - ACTIONS(247), 1, + [101629] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3076), 1, sym_comment, - ACTIONS(1765), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(2510), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2508), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322530,10 +460577,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322542,40 +460600,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101710] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [101688] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3077), 1, sym_comment, - ACTIONS(1006), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1008), 33, + ACTIONS(2234), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2228), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322585,10 +460632,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322597,15 +460655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101769] = 4, + aux_sym__unquoted_in_list_token1, + [101747] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3078), 1, sym_comment, - ACTIONS(2424), 2, + ACTIONS(2183), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2422), 46, + ACTIONS(2177), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322652,15 +460711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101828] = 4, + [101806] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3079), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(2191), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2426), 46, + ACTIONS(2185), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322707,40 +460766,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101887] = 4, - ACTIONS(247), 1, + [101865] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3080), 1, sym_comment, - ACTIONS(1739), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1921), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1919), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322750,10 +460797,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322762,15 +460820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101946] = 4, + aux_sym__unquoted_in_list_token1, + [101924] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3081), 1, sym_comment, - ACTIONS(1889), 2, + ACTIONS(2518), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1887), 46, + ACTIONS(2516), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322817,40 +460876,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102005] = 4, - ACTIONS(247), 1, + [101983] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3082), 1, sym_comment, - ACTIONS(1785), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + ACTIONS(2522), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2520), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322860,30 +460907,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102064] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3083), 1, - sym_comment, - ACTIONS(1010), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322892,33 +460922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1012), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322927,40 +460930,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102123] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [102042] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3083), 1, sym_comment, - ACTIONS(1014), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1016), 33, + ACTIONS(2526), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2524), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322970,29 +460962,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102182] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3085), 1, - sym_comment, - ACTIONS(1841), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323001,34 +460977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323037,15 +460985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102241] = 4, + aux_sym__unquoted_in_list_token1, + [102101] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2217), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2343), 46, + ACTIONS(2215), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323092,15 +461041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102300] = 4, + [102160] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2442), 2, + ACTIONS(2545), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2440), 46, + ACTIONS(2543), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323147,15 +461096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102359] = 4, + [102219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3088), 1, + STATE(3086), 1, sym_comment, - ACTIONS(1917), 2, + ACTIONS(2557), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1915), 46, + ACTIONS(2555), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323202,15 +461151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102418] = 4, + [102278] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3087), 1, sym_comment, - ACTIONS(1929), 2, + ACTIONS(2641), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1927), 46, + ACTIONS(2639), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323257,15 +461206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102477] = 4, + [102337] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3090), 1, + STATE(3088), 1, sym_comment, - ACTIONS(1944), 2, + ACTIONS(2577), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1942), 46, + ACTIONS(2575), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323312,15 +461261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102536] = 4, + [102396] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2492), 2, + ACTIONS(2581), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2490), 46, + ACTIONS(2579), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323367,15 +461316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102595] = 4, + [102455] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3090), 1, sym_comment, - ACTIONS(2036), 2, + ACTIONS(2585), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2034), 46, + ACTIONS(2583), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323422,15 +461371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102654] = 4, + [102514] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3093), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2589), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2367), 46, + ACTIONS(2587), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323477,15 +461426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102713] = 4, + [102573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2381), 2, + ACTIONS(2221), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2379), 46, + ACTIONS(2219), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323532,28 +461481,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102772] = 4, - ACTIONS(3), 1, + [102632] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3095), 1, + ACTIONS(2375), 1, + aux_sym__unquoted_in_list_token2, + STATE(3093), 1, sym_comment, - ACTIONS(2040), 2, + ACTIONS(2369), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2373), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2038), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323563,21 +461525,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323586,29 +461537,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102831] = 4, - ACTIONS(3), 1, + [102693] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(6156), 1, + sym__newline, + STATE(3094), 2, sym_comment, - ACTIONS(1901), 2, + aux_sym_shebang_repeat1, + ACTIONS(1231), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1233), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1899), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323618,21 +461581,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323641,15 +461593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102890] = 5, - ACTIONS(247), 1, + [102754] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(3097), 1, + ACTIONS(6159), 1, + anon_sym_LBRACK2, + STATE(3095), 1, sym_comment, - ACTIONS(2230), 14, + ACTIONS(2423), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323664,9 +461616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2232), 33, + ACTIONS(2427), 32, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -323698,15 +461649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102951] = 4, + [102815] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3096), 1, sym_comment, - ACTIONS(2450), 2, + ACTIONS(1970), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2448), 46, + ACTIONS(1968), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323753,28 +461704,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103010] = 4, - ACTIONS(3), 1, + [102874] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1996), 1, + sym__entry_separator, + ACTIONS(6163), 1, + anon_sym_RBRACK, + ACTIONS(6166), 1, + sym_raw_string_begin, + STATE(3097), 1, + sym_comment, + ACTIONS(6161), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [102937] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3098), 1, sym_comment, - ACTIONS(2454), 2, + ACTIONS(1919), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2452), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323784,21 +461804,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323807,29 +461816,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103069] = 4, - ACTIONS(3), 1, + [102996] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3100), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(1518), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1520), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2122), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323839,21 +461859,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323862,13 +461871,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, + [103055] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4907), 1, + anon_sym_DOT_DOT2, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + ACTIONS(6168), 1, + sym_filesize_unit, + ACTIONS(6170), 1, + sym_duration_unit, + STATE(3100), 1, + sym_comment, + STATE(7577), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, [103128] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3101), 1, sym_comment, - ACTIONS(2514), 14, + ACTIONS(6174), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323883,7 +461953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2516), 33, + ACTIONS(6172), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323918,11 +461988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103186] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3102), 1, sym_comment, - ACTIONS(5794), 14, + ACTIONS(2500), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323937,7 +462007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5801), 33, + ACTIONS(2502), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323972,11 +462042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103244] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3103), 1, sym_comment, - ACTIONS(2359), 14, + ACTIONS(2539), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323991,7 +462061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2361), 33, + ACTIONS(2541), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324026,11 +462096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103302] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3104), 1, sym_comment, - ACTIONS(2494), 14, + ACTIONS(2504), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324045,7 +462115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2496), 33, + ACTIONS(2506), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324080,11 +462150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103360] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3105), 1, sym_comment, - ACTIONS(2498), 14, + ACTIONS(2197), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324099,7 +462169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2500), 33, + ACTIONS(2203), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324134,65 +462204,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103418] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3106), 1, sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, + ACTIONS(2547), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2549), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, [103476] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3107), 1, sym_comment, - ACTIONS(2343), 14, + ACTIONS(1556), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324207,7 +462277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2345), 33, + ACTIONS(1558), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324242,65 +462312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [103534] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3108), 1, sym_comment, - ACTIONS(1585), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [103592] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3109), 1, - sym_comment, - ACTIONS(1765), 14, + ACTIONS(2567), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324315,7 +462331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(2569), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324349,120 +462365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103650] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3110), 1, - sym_comment, - ACTIONS(1681), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [103708] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3111), 1, - sym_comment, - ACTIONS(1761), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1763), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [103766] = 4, - ACTIONS(247), 1, + [103592] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3109), 1, sym_comment, - ACTIONS(2440), 14, + ACTIONS(2054), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324477,7 +462385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2442), 33, + ACTIONS(2056), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324511,12 +462419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103824] = 4, - ACTIONS(247), 1, + [103650] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3110), 1, sym_comment, - ACTIONS(6138), 14, + ACTIONS(2551), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324531,7 +462439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6136), 33, + ACTIONS(2553), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324565,12 +462473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103882] = 4, - ACTIONS(247), 1, + [103708] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3111), 1, sym_comment, - ACTIONS(6142), 14, + ACTIONS(2484), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324585,7 +462493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6140), 33, + ACTIONS(2486), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324619,12 +462527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103940] = 4, - ACTIONS(247), 1, + [103766] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3112), 1, sym_comment, - ACTIONS(6126), 14, + ACTIONS(2018), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324639,7 +462547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6131), 33, + ACTIONS(2020), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324673,12 +462581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103998] = 4, - ACTIONS(247), 1, + [103824] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3113), 1, sym_comment, - ACTIONS(1915), 14, + ACTIONS(2228), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324693,7 +462601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1917), 33, + ACTIONS(2234), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324727,12 +462635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104056] = 4, - ACTIONS(247), 1, + [103882] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3117), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2472), 14, + ACTIONS(2177), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324747,7 +462655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2474), 33, + ACTIONS(2183), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324781,12 +462689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104114] = 4, - ACTIONS(247), 1, + [103940] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3115), 1, sym_comment, - ACTIONS(6146), 14, + ACTIONS(2070), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324801,7 +462709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6144), 33, + ACTIONS(2072), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324835,12 +462743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104172] = 4, - ACTIONS(247), 1, + [103998] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3116), 1, sym_comment, - ACTIONS(6146), 14, + ACTIONS(2185), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324855,7 +462763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6144), 33, + ACTIONS(2191), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324889,12 +462797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104230] = 4, - ACTIONS(247), 1, + [104056] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3120), 1, + STATE(3117), 1, sym_comment, - ACTIONS(6150), 14, + ACTIONS(2516), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324909,7 +462817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6148), 33, + ACTIONS(2518), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324943,12 +462851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104288] = 4, - ACTIONS(247), 1, + [104114] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3118), 1, sym_comment, - ACTIONS(1927), 14, + ACTIONS(2520), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324963,7 +462871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1929), 33, + ACTIONS(2522), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324997,12 +462905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104346] = 4, - ACTIONS(247), 1, + [104172] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2363), 14, + ACTIONS(2524), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325017,7 +462925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2365), 33, + ACTIONS(2526), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325051,12 +462959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104404] = 4, - ACTIONS(247), 1, + [104230] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3120), 1, sym_comment, - ACTIONS(1942), 14, + ACTIONS(2508), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325071,7 +462979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1944), 33, + ACTIONS(2510), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325105,12 +463013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104462] = 4, - ACTIONS(247), 1, + [104288] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3121), 1, sym_comment, - ACTIONS(1739), 14, + ACTIONS(5926), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325125,7 +463033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1741), 33, + ACTIONS(5936), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325159,12 +463067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104520] = 4, - ACTIONS(247), 1, + [104346] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3122), 1, sym_comment, - ACTIONS(990), 14, + ACTIONS(6178), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325179,7 +463087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 33, + ACTIONS(6176), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325213,12 +463121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104578] = 4, - ACTIONS(247), 1, + [104404] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2490), 14, + ACTIONS(6182), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325233,7 +463141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2492), 33, + ACTIONS(6180), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325267,12 +463175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104636] = 4, - ACTIONS(247), 1, + [104462] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(3124), 1, sym_comment, - ACTIONS(994), 14, + ACTIONS(1872), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325287,7 +463195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(996), 33, + ACTIONS(1874), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325321,12 +463229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104694] = 4, - ACTIONS(247), 1, + [104520] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3128), 1, + STATE(3125), 1, sym_comment, - ACTIONS(998), 14, + ACTIONS(5941), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325341,7 +463249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1000), 33, + ACTIONS(5946), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325375,12 +463283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104752] = 4, - ACTIONS(247), 1, + [104578] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3126), 1, sym_comment, - ACTIONS(1002), 14, + ACTIONS(2543), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325395,7 +463303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1004), 33, + ACTIONS(2545), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325429,12 +463337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104810] = 4, - ACTIONS(247), 1, + [104636] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2034), 14, + ACTIONS(2555), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325449,7 +463357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2036), 33, + ACTIONS(2557), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325483,12 +463391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104868] = 4, - ACTIONS(247), 1, + [104694] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2367), 14, + ACTIONS(2639), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325503,7 +463411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2369), 33, + ACTIONS(2641), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325537,12 +463445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104926] = 4, - ACTIONS(247), 1, + [104752] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2379), 14, + ACTIONS(2575), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325557,7 +463465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2381), 33, + ACTIONS(2577), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325591,12 +463499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104984] = 4, - ACTIONS(247), 1, + [104810] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3130), 1, sym_comment, - ACTIONS(2038), 14, + ACTIONS(2579), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325611,7 +463519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2040), 33, + ACTIONS(2581), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325645,12 +463553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105042] = 4, - ACTIONS(247), 1, + [104868] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2157), 14, + ACTIONS(2583), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325665,7 +463573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2163), 33, + ACTIONS(2585), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325699,12 +463607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105100] = 4, - ACTIONS(247), 1, + [104926] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3132), 1, sym_comment, - ACTIONS(2383), 14, + ACTIONS(2587), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325719,7 +463627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2385), 33, + ACTIONS(2589), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325753,12 +463661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105158] = 4, - ACTIONS(247), 1, + [104984] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3133), 1, sym_comment, - ACTIONS(1899), 14, + ACTIONS(2038), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325773,7 +463681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1901), 33, + ACTIONS(2040), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325807,12 +463715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105216] = 4, - ACTIONS(247), 1, + [105042] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2118), 14, + ACTIONS(6124), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325827,7 +463735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2120), 33, + ACTIONS(6126), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325861,12 +463769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105274] = 4, - ACTIONS(247), 1, + [105100] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3135), 1, sym_comment, - ACTIONS(1785), 14, + ACTIONS(2512), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325881,7 +463789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1787), 33, + ACTIONS(2514), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325915,12 +463823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105332] = 4, - ACTIONS(247), 1, + [105158] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2448), 14, + ACTIONS(1890), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325935,7 +463843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2450), 33, + ACTIONS(1892), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325969,12 +463877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105390] = 4, - ACTIONS(247), 1, + [105216] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2452), 14, + ACTIONS(1968), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325989,7 +463897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2454), 33, + ACTIONS(1970), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326023,66 +463931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105448] = 4, - ACTIONS(247), 1, + [105274] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3141), 1, - sym_comment, - ACTIONS(1841), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1843), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6184), 1, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [105506] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3142), 1, + STATE(3138), 1, sym_comment, - ACTIONS(1907), 14, + ACTIONS(6057), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326097,12 +463953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1909), 33, + ACTIONS(6061), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -326131,12 +463986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105564] = 4, - ACTIONS(247), 1, + [105334] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2351), 14, + ACTIONS(6132), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326151,7 +464006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2353), 33, + ACTIONS(6134), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326185,12 +464040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105622] = 4, - ACTIONS(247), 1, + [105392] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2468), 14, + ACTIONS(2215), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326205,7 +464060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2470), 33, + ACTIONS(2217), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326239,12 +464094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105680] = 4, - ACTIONS(247), 1, + [105450] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3141), 1, sym_comment, - ACTIONS(2482), 14, + ACTIONS(2042), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326259,7 +464114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2484), 33, + ACTIONS(2044), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326293,12 +464148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105738] = 4, - ACTIONS(247), 1, + [105508] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3142), 1, sym_comment, - ACTIONS(1707), 14, + ACTIONS(2058), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326313,7 +464168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1719), 33, + ACTIONS(2060), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326347,12 +464202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105796] = 4, - ACTIONS(247), 1, + [105566] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3143), 1, sym_comment, - ACTIONS(2444), 14, + ACTIONS(5771), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326367,7 +464222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2446), 33, + ACTIONS(5778), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326401,12 +464256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105854] = 4, - ACTIONS(247), 1, + [105624] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3144), 1, sym_comment, - ACTIONS(1044), 14, + ACTIONS(2066), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326421,7 +464276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1046), 33, + ACTIONS(2068), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326455,12 +464310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105912] = 4, - ACTIONS(247), 1, + [105682] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3145), 1, sym_comment, - ACTIONS(6060), 14, + ACTIONS(2535), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326475,7 +464330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6062), 33, + ACTIONS(2537), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326509,12 +464364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105970] = 4, - ACTIONS(247), 1, + [105740] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2130), 14, + ACTIONS(2559), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326529,7 +464384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2136), 33, + ACTIONS(2561), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326563,12 +464418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106028] = 4, - ACTIONS(247), 1, + [105798] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2355), 14, + ACTIONS(2219), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326583,7 +464438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2357), 33, + ACTIONS(2221), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326617,12 +464472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106086] = 4, - ACTIONS(247), 1, + [105856] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2122), 14, + ACTIONS(2563), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326637,7 +464492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2128), 33, + ACTIONS(2565), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326671,12 +464526,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106144] = 4, - ACTIONS(247), 1, + [105914] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2422), 14, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [105972] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3150), 1, + sym_comment, + ACTIONS(6188), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326691,7 +464600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2424), 33, + ACTIONS(6186), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326725,13 +464634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106202] = 4, - ACTIONS(247), 1, + [106030] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3154), 1, + STATE(3151), 1, sym_comment, - ACTIONS(1290), 15, - anon_sym__, + ACTIONS(6192), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326745,12 +464653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(6190), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -326779,12 +464688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106260] = 4, - ACTIONS(247), 1, + [106088] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3152), 1, sym_comment, - ACTIONS(2426), 14, + ACTIONS(6161), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326799,7 +464708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2428), 33, + ACTIONS(6166), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326833,12 +464742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106318] = 4, - ACTIONS(247), 1, + [106146] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3153), 1, sym_comment, - ACTIONS(6054), 14, + ACTIONS(2531), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326853,7 +464762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6056), 33, + ACTIONS(2533), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326887,12 +464796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106376] = 4, - ACTIONS(247), 1, + [106204] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3157), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2436), 14, + ACTIONS(1496), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326907,7 +464816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2438), 33, + ACTIONS(1498), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326941,12 +464850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106434] = 4, - ACTIONS(247), 1, + [106262] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3155), 1, sym_comment, - ACTIONS(2183), 14, + ACTIONS(6174), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326961,7 +464870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2185), 33, + ACTIONS(6172), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326995,12 +464904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106492] = 4, - ACTIONS(247), 1, + [106320] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3159), 1, + STATE(3156), 1, sym_comment, - ACTIONS(5916), 14, + ACTIONS(6196), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327015,7 +464924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5926), 33, + ACTIONS(6194), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327049,12 +464958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106550] = 4, - ACTIONS(247), 1, + [106378] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3157), 1, sym_comment, - ACTIONS(6154), 14, + ACTIONS(2034), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327069,7 +464978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6152), 33, + ACTIONS(2036), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327103,12 +465012,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106608] = 4, - ACTIONS(247), 1, + [106436] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3158), 1, sym_comment, - ACTIONS(6158), 14, + ACTIONS(1768), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [106494] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3159), 1, + sym_comment, + ACTIONS(1788), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327123,7 +465086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6156), 33, + ACTIONS(1800), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327157,12 +465120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106666] = 4, - ACTIONS(247), 1, + [106552] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3160), 1, sym_comment, - ACTIONS(5928), 14, + ACTIONS(2472), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327177,7 +465140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5933), 33, + ACTIONS(2474), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327211,12 +465174,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106724] = 4, - ACTIONS(247), 1, + [106610] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3161), 1, + sym_comment, + ACTIONS(1820), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [106668] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3162), 1, + sym_comment, + ACTIONS(1866), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1868), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [106726] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3163), 1, sym_comment, - ACTIONS(2402), 14, + ACTIONS(1246), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327230,13 +465302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2404), 33, + aux_sym_unquoted_token1, + ACTIONS(1244), 32, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -327265,12 +465336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106782] = 4, - ACTIONS(247), 1, + [106784] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3164), 1, sym_comment, - ACTIONS(2390), 14, + ACTIONS(1510), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327285,7 +465356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2392), 33, + ACTIONS(1512), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327319,12 +465390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106840] = 4, - ACTIONS(247), 1, + [106842] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3165), 1, sym_comment, - ACTIONS(2406), 14, + ACTIONS(1506), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327339,7 +465410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2408), 33, + ACTIONS(1508), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327373,12 +465444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106898] = 4, - ACTIONS(247), 1, + [106900] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3166), 1, sym_comment, - ACTIONS(1887), 14, + ACTIONS(2488), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327393,7 +465464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1889), 33, + ACTIONS(2490), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327427,14 +465498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106956] = 5, - ACTIONS(247), 1, + [106958] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6160), 1, - anon_sym_COMMA, STATE(3167), 1, sym_comment, - ACTIONS(5991), 14, + ACTIONS(1514), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327449,11 +465518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5995), 32, + ACTIONS(1516), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -327483,11 +465553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [107016] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3168), 1, sym_comment, - ACTIONS(2146), 14, + ACTIONS(1919), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327502,7 +465572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2152), 33, + ACTIONS(1921), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327537,26 +465607,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [107074] = 8, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(3123), 1, anon_sym_DOT_DOT2, - ACTIONS(6162), 1, + ACTIONS(6198), 1, sym_filesize_unit, - ACTIONS(6164), 1, + ACTIONS(6200), 1, sym_duration_unit, STATE(3169), 1, sym_comment, - ACTIONS(2902), 2, + ACTIONS(3125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + ACTIONS(1788), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 36, + ACTIONS(1800), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327594,11 +465664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, [107139] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3170), 1, sym_comment, - ACTIONS(6168), 14, + ACTIONS(6204), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327613,7 +465683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6166), 32, + ACTIONS(6202), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327647,36 +465717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, [107196] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, STATE(3171), 1, sym_comment, - STATE(6326), 1, + STATE(6736), 1, sym_block, - STATE(7549), 1, + STATE(7561), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327709,36 +465779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [107272] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, STATE(3172), 1, sym_comment, - STATE(6363), 1, + STATE(6475), 1, sym_block, - STATE(7540), 1, + STATE(7688), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327771,36 +465841,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [107348] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, STATE(3173), 1, sym_comment, - STATE(6287), 1, + STATE(7076), 1, sym_block, - STATE(7474), 1, + STATE(7667), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327832,37 +465902,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107424] = 14, - ACTIONS(247), 1, + [107424] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(2131), 1, + sym_cell_path, + STATE(3174), 1, + sym_comment, + ACTIONS(1990), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6220), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1992), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107490] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3157), 1, + anon_sym_DOT_DOT2, + ACTIONS(6223), 1, + sym_filesize_unit, + ACTIONS(6225), 1, + sym_duration_unit, + STATE(3175), 1, + sym_comment, + ACTIONS(3159), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107554] = 14, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(3174), 1, + STATE(3176), 1, sym_comment, - STATE(6288), 1, + STATE(6310), 1, sym_block, - STATE(7484), 1, + STATE(7648), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327894,37 +466077,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107500] = 14, - ACTIONS(247), 1, + [107630] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(3175), 1, + STATE(3177), 1, sym_comment, - STATE(6882), 1, + STATE(6922), 1, sym_block, - STATE(7609), 1, + STATE(7651), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327956,37 +466139,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107576] = 14, - ACTIONS(247), 1, + [107706] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(3176), 1, + STATE(3178), 1, sym_comment, - STATE(6885), 1, + STATE(6954), 1, sym_block, - STATE(7680), 1, + STATE(7551), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328018,37 +466201,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107652] = 14, - ACTIONS(247), 1, + [107782] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(3177), 1, + STATE(3179), 1, sym_comment, - STATE(7266), 1, + STATE(6478), 1, sym_block, - STATE(7695), 1, + STATE(7691), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328080,37 +466263,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107728] = 14, - ACTIONS(247), 1, + [107858] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(3178), 1, + STATE(3180), 1, sym_comment, - STATE(7298), 1, + STATE(6257), 1, sym_block, - STATE(7571), 1, + STATE(7480), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328142,94 +466325,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107804] = 9, - ACTIONS(247), 1, + [107934] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(2128), 1, - sym_cell_path, - STATE(3179), 1, - sym_comment, - ACTIONS(1859), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6184), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1861), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [107870] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(3180), 1, + STATE(3181), 1, sym_comment, - STATE(6327), 1, + STATE(7071), 1, sym_block, - STATE(7550), 1, + STATE(7640), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328261,93 +466387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [107946] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3055), 1, - anon_sym_DOT_DOT2, - ACTIONS(6187), 1, - sym_filesize_unit, - ACTIONS(6189), 1, - sym_duration_unit, - STATE(3181), 1, - sym_comment, - ACTIONS(3057), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, [108010] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, STATE(3182), 1, sym_comment, - STATE(6338), 1, + STATE(6764), 1, sym_block, - STATE(7588), 1, + STATE(7564), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328380,36 +466450,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108086] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, STATE(3183), 1, sym_comment, - STATE(6362), 1, + STATE(7252), 1, sym_block, - STATE(7539), 1, + STATE(7572), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328442,36 +466512,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108162] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, STATE(3184), 1, sym_comment, - STATE(6339), 1, + STATE(7255), 1, sym_block, - STATE(7590), 1, + STATE(7576), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328504,36 +466574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108238] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, STATE(3185), 1, sym_comment, - STATE(6980), 1, + STATE(6264), 1, sym_block, - STATE(7709), 1, + STATE(7485), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328566,36 +466636,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108314] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, STATE(3186), 1, sym_comment, - STATE(6860), 1, + STATE(7444), 1, sym_block, - STATE(7520), 1, + STATE(7666), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328628,36 +466698,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108390] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, STATE(3187), 1, sym_comment, - STATE(6982), 1, + STATE(6289), 1, sym_block, - STATE(7461), 1, + STATE(7647), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328690,36 +466760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108466] = 14, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6172), 1, + ACTIONS(6208), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, STATE(3188), 1, sym_comment, - STATE(6863), 1, + STATE(6836), 1, sym_block, - STATE(7547), 1, + STATE(7470), 1, sym_returns, - STATE(7770), 1, - sym__type_annotation, - STATE(7875), 1, - sym__multiple_types, - STATE(8104), 1, + STATE(8037), 1, sym__one_type, - ACTIONS(6176), 2, + STATE(8046), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328752,26 +466822,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, [108542] = 9, - ACTIONS(247), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5239), 1, + anon_sym_DOT, + STATE(2086), 1, + aux_sym_cell_path_repeat1, + STATE(2306), 1, + sym_path, + STATE(2468), 1, + sym_cell_path, + STATE(3189), 1, + sym_comment, + ACTIONS(1990), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6220), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1992), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108607] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3190), 1, + sym_comment, + ACTIONS(1556), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1558), 33, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [108661] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3191), 1, + sym_comment, + ACTIONS(2353), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2355), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108715] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(2478), 1, - sym_cell_path, - STATE(3189), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3192), 1, sym_comment, - ACTIONS(1859), 5, + ACTIONS(2349), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2345), 28, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - ACTIONS(6184), 12, - ts_builtin_sym_end, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108773] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(3193), 1, + sym_comment, + ACTIONS(1540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328783,9 +467050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1861), 23, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1538), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -328794,29 +467065,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108607] = 6, + [108831] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(2347), 1, anon_sym_LPAREN2, - ACTIONS(2228), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(3190), 1, + STATE(3194), 1, sym_comment, - ACTIONS(1028), 13, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328830,7 +467104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1026), 28, + ACTIONS(2353), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -328859,16 +467133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108665] = 6, + [108889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(3191), 1, + STATE(3195), 1, sym_comment, - ACTIONS(2242), 13, + ACTIONS(2409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328882,7 +467152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2238), 28, + anon_sym_LPAREN2, + ACTIONS(2407), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -328911,33 +467182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108723] = 12, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [108943] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6191), 1, + ACTIONS(6227), 1, sym__newline, - ACTIONS(6193), 1, + ACTIONS(6229), 1, anon_sym_RBRACK, - STATE(3192), 1, + STATE(3196), 1, sym_comment, - STATE(3207), 1, + STATE(3206), 1, aux_sym_shebang_repeat1, - STATE(3371), 1, + STATE(3375), 1, aux_sym__multiple_types_repeat2, - STATE(6966), 1, + STATE(7241), 1, sym__one_type, - STATE(8133), 1, + STATE(7758), 1, sym__type_annotation, - ACTIONS(6176), 2, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328969,12 +467241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [108793] = 4, - ACTIONS(3), 1, + [109013] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3193), 1, + STATE(3197), 1, sym_comment, - ACTIONS(2270), 14, + ACTIONS(2345), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2349), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328987,13 +467265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2268), 29, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329002,35 +467278,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [108847] = 4, - ACTIONS(247), 1, + [109067] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3194), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(3198), 1, sym_comment, - ACTIONS(2246), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2250), 38, + ACTIONS(2341), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329043,11 +467313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2337), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329056,29 +467327,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108901] = 6, + [109125] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2339), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, + ACTIONS(2343), 1, aux_sym_unquoted_token4, - STATE(3195), 1, + STATE(3199), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2341), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329090,9 +467365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2254), 28, + ACTIONS(2337), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -329121,12 +467394,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108959] = 4, - ACTIONS(247), 1, + [109182] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3196), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + STATE(3200), 1, + sym_comment, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109237] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6231), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6233), 1, + aux_sym__immediate_decimal_token2, + STATE(3201), 1, sym_comment, - ACTIONS(1044), 10, + ACTIONS(1890), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -329137,8 +467464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1046), 33, - anon_sym_EQ, + ACTIONS(1892), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329150,14 +467476,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [109294] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6235), 1, + anon_sym_DOT, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token2, + STATE(3202), 1, + sym_comment, + ACTIONS(1872), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1874), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329171,16 +467546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109013] = 6, + [109351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2347), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(3197), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(2349), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329192,9 +467568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2246), 28, + ACTIONS(2345), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -329223,18 +467597,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109071] = 4, - ACTIONS(247), 1, + [109408] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3198), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3204), 1, sym_comment, - ACTIONS(2254), 5, + ACTIONS(2355), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2353), 28, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - ACTIONS(2256), 38, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109465] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(3205), 1, + sym_comment, + ACTIONS(1540), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329246,12 +467670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1538), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329260,29 +467683,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109125] = 6, + [109522] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6227), 1, + sym__newline, + STATE(3206), 1, + sym_comment, + STATE(3343), 1, + aux_sym__multiple_types_repeat2, + STATE(3463), 1, + aux_sym_shebang_repeat1, + STATE(7322), 1, + sym__one_type, + STATE(7758), 1, + sym__type_annotation, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(6253), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [109589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3199), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2256), 12, + ACTIONS(2409), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329295,7 +467773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2254), 28, + anon_sym_LPAREN2, + ACTIONS(2407), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -329324,30 +467803,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109182] = 12, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [109642] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, + ACTIONS(6239), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6199), 1, + ACTIONS(6243), 1, anon_sym_DOT, - ACTIONS(6203), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(3200), 1, + STATE(3208), 1, sym_comment, - STATE(3525), 1, + STATE(3497), 1, sym__immediate_decimal, - ACTIONS(6201), 2, + ACTIONS(6245), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3524), 2, + STATE(3522), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 8, + ACTIONS(1776), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329356,7 +467836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 24, + ACTIONS(1786), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329381,14 +467861,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109251] = 4, - ACTIONS(3), 1, + [109711] = 19, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3201), 1, - sym_comment, - ACTIONS(2270), 13, - ts_builtin_sym_end, + ACTIONS(5451), 1, sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + STATE(3209), 1, + sym_comment, + STATE(3308), 1, + aux_sym_shebang_repeat1, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6267), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6271), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5358), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329399,48 +467921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2268), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [109793] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3210), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5344), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [109304] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3202), 1, - sym_comment, - ACTIONS(2250), 12, - ts_builtin_sym_end, + ACTIONS(5342), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329452,11 +467952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2246), 28, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329465,43 +467963,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109361] = 6, - ACTIONS(247), 1, + [109849] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6207), 1, - anon_sym_DOT, - ACTIONS(6209), 1, - aux_sym__immediate_decimal_token2, - STATE(3203), 1, - sym_comment, - ACTIONS(1765), 10, + ACTIONS(6283), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1767), 30, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6303), 1, + anon_sym_bit_DASHor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3211), 1, + sym_comment, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329514,35 +468032,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [109418] = 6, - ACTIONS(3), 1, + [109927] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(3204), 1, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6303), 1, + anon_sym_bit_DASHor2, + ACTIONS(6305), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3212), 1, sym_comment, - ACTIONS(1028), 12, - ts_builtin_sym_end, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329554,49 +468094,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1026), 28, - anon_sym_GT2, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [110007] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6283), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6303), 1, + anon_sym_bit_DASHor2, + ACTIONS(6305), 1, anon_sym_and2, + ACTIONS(6307), 1, anon_sym_xor2, - anon_sym_or2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3213), 1, + sym_comment, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5342), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [110089] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3214), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109475] = 5, - ACTIONS(247), 1, + [110159] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(3205), 1, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3215), 1, sym_comment, - ACTIONS(1707), 5, + ACTIONS(5344), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6287), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 36, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329609,9 +468253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -329624,36 +468266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109530] = 6, - ACTIONS(247), 1, + [110223] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token2, - STATE(3206), 1, - sym_comment, - ACTIONS(1739), 10, + ACTIONS(6283), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1741), 30, + ACTIONS(6295), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3216), 1, + sym_comment, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329666,91 +468323,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [109587] = 11, - ACTIONS(247), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110295] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6191), 1, - sym__newline, - STATE(3207), 1, - sym_comment, - STATE(3337), 1, - aux_sym__multiple_types_repeat2, - STATE(3461), 1, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(6949), 1, - sym__one_type, - STATE(8133), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [109654] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(3208), 1, + STATE(3217), 1, sym_comment, - ACTIONS(2242), 12, - ts_builtin_sym_end, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329762,163 +468382,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2238), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110369] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3218), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109711] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(6215), 41, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 16, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [109761] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6217), 1, - anon_sym_GT2, - ACTIONS(6219), 1, - anon_sym_AT, - STATE(3210), 1, - sym_comment, - STATE(7022), 1, - sym__all_type, - STATE(8144), 1, - sym_param_cmd, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(7626), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [109825] = 11, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [110445] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3211), 1, + STATE(3219), 1, sym_comment, - ACTIONS(5296), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5294), 28, + ACTIONS(5300), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329947,35 +468503,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109891] = 12, - ACTIONS(247), 1, + [110511] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3212), 1, + STATE(3220), 1, sym_comment, - STATE(3247), 1, + STATE(3244), 1, aux_sym_shebang_repeat1, - ACTIONS(5300), 2, + ACTIONS(5314), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6235), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5298), 27, + ACTIONS(5312), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330003,27 +468559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109959] = 8, - ACTIONS(247), 1, + [110579] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3213), 1, + STATE(3221), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 3, + ACTIONS(5302), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5294), 31, + ACTIONS(5300), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330055,29 +468611,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110019] = 9, - ACTIONS(247), 1, + [110639] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3214), 1, + STATE(3222), 1, sym_comment, - STATE(3248), 1, + STATE(3245), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 3, + ACTIONS(5314), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5298), 30, + ACTIONS(5312), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330108,38 +468664,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110081] = 12, - ACTIONS(247), 1, + [110701] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3215), 1, + STATE(3223), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 24, + ACTIONS(5300), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330164,40 +468720,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110149] = 13, - ACTIONS(247), 1, + [110769] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3216), 1, + STATE(3224), 1, sym_comment, - STATE(3249), 1, + STATE(3246), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 23, + ACTIONS(5312), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330221,23 +468777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110219] = 6, - ACTIONS(247), 1, + [110839] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3217), 1, + STATE(3225), 1, sym_comment, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5296), 5, + ACTIONS(5302), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5294), 33, + ACTIONS(5300), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330271,25 +468827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110275] = 7, - ACTIONS(247), 1, + [110895] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3218), 1, + STATE(3226), 1, sym_comment, - STATE(3250), 1, + STATE(3247), 1, aux_sym_shebang_repeat1, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5300), 5, + ACTIONS(5314), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5298), 32, + ACTIONS(5312), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330322,52 +468878,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110333] = 17, - ACTIONS(247), 1, + [110953] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3219), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 15, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330383,54 +468939,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [110411] = 18, - ACTIONS(247), 1, + [111031] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - STATE(3220), 1, + STATE(3228), 1, sym_comment, - STATE(3251), 1, + STATE(3248), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 14, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330445,54 +469001,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [110491] = 18, - ACTIONS(247), 1, + [111111] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6305), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3221), 1, + STATE(3229), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 14, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330507,56 +469063,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [110571] = 19, - ACTIONS(247), 1, + [111191] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - ACTIONS(6275), 1, - anon_sym_and2, - STATE(3222), 1, + STATE(3230), 1, sym_comment, - STATE(3252), 1, + STATE(3249), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 13, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330570,56 +469126,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [110653] = 19, - ACTIONS(247), 1, + [111273] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6305), 1, anon_sym_and2, - ACTIONS(6277), 1, + ACTIONS(6307), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3223), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 13, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330633,58 +469189,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [110735] = 20, - ACTIONS(247), 1, + [111355] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - ACTIONS(6275), 1, - anon_sym_and2, - ACTIONS(6279), 1, + ACTIONS(6309), 1, anon_sym_xor2, - STATE(3224), 1, + STATE(3232), 1, sym_comment, - STATE(3253), 1, + STATE(3250), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 12, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330697,43 +469253,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [110819] = 13, - ACTIONS(247), 1, + [111439] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3225), 1, + STATE(3233), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 20, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330754,45 +469310,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110889] = 14, - ACTIONS(247), 1, + [111509] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3226), 1, + STATE(3234), 1, sym_comment, - STATE(3254), 1, + STATE(3251), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 19, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330812,30 +469368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110961] = 10, - ACTIONS(247), 1, + [111581] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3227), 1, + STATE(3235), 1, sym_comment, - ACTIONS(5296), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5294), 30, + ACTIONS(5300), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330866,32 +469422,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111025] = 11, - ACTIONS(247), 1, + [111645] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3228), 1, + STATE(3236), 1, sym_comment, - STATE(3255), 1, + STATE(3252), 1, aux_sym_shebang_repeat1, - ACTIONS(5300), 2, + ACTIONS(5314), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6235), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5298), 29, + ACTIONS(5312), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330921,46 +469477,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111091] = 14, - ACTIONS(247), 1, + [111711] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3229), 1, + STATE(3237), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 18, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330979,48 +469535,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111163] = 15, - ACTIONS(247), 1, + [111783] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3230), 1, + STATE(3238), 1, sym_comment, - STATE(3256), 1, + STATE(3253), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 17, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331038,48 +469594,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111237] = 15, - ACTIONS(247), 1, + [111857] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3231), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 17, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331097,50 +469653,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111311] = 16, - ACTIONS(247), 1, + [111931] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - STATE(3232), 1, + STATE(3240), 1, sym_comment, - STATE(3257), 1, + STATE(3254), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 16, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331157,50 +469713,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111387] = 16, - ACTIONS(247), 1, + [112007] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3233), 1, + STATE(3241), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 16, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331217,52 +469773,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [111463] = 17, - ACTIONS(247), 1, + [112083] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - STATE(3234), 1, + STATE(3242), 1, sym_comment, - STATE(3258), 1, + STATE(3255), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5298), 15, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5312), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331278,35 +469834,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [111541] = 12, - ACTIONS(247), 1, + [112161] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5451), 1, sym__newline, - ACTIONS(6233), 1, + STATE(3243), 1, + sym_comment, + STATE(3295), 1, + aux_sym_shebang_repeat1, + ACTIONS(6257), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6267), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5360), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5358), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(6241), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112223] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3235), 1, - sym_comment, - STATE(3259), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5326), 2, + STATE(3244), 1, + sym_comment, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 27, + ACTIONS(5296), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331334,29 +469942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111609] = 9, - ACTIONS(247), 1, + [112289] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - STATE(3236), 1, - sym_comment, - STATE(3261), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3245), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5326), 3, + ACTIONS(5298), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5324), 30, + ACTIONS(5296), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331387,40 +469994,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111671] = 13, - ACTIONS(247), 1, + [112349] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3237), 1, - sym_comment, - STATE(3263), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3246), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 23, + ACTIONS(5296), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331444,25 +470050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111741] = 7, - ACTIONS(247), 1, + [112417] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - STATE(3238), 1, - sym_comment, - STATE(3265), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6237), 2, + STATE(3247), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5326), 5, + ACTIONS(5298), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5324), 32, + ACTIONS(5296), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331495,54 +470100,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111799] = 18, - ACTIONS(247), 1, + [112473] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - STATE(3239), 1, - sym_comment, - STATE(3267), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3248), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 14, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331557,56 +470161,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111879] = 19, - ACTIONS(247), 1, + [112551] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - ACTIONS(6275), 1, + ACTIONS(6305), 1, anon_sym_and2, - STATE(3240), 1, - sym_comment, - STATE(3269), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3249), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 13, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331620,58 +470223,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [111961] = 20, - ACTIONS(247), 1, + [112631] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - ACTIONS(6275), 1, + ACTIONS(6305), 1, anon_sym_and2, - ACTIONS(6279), 1, + ACTIONS(6307), 1, anon_sym_xor2, - STATE(3241), 1, - sym_comment, - STATE(3271), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3250), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 12, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331684,45 +470286,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [112045] = 14, - ACTIONS(247), 1, + [112713] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3242), 1, - sym_comment, - STATE(3273), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3251), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 19, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331742,32 +470343,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112117] = 11, - ACTIONS(247), 1, + [112783] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3243), 1, - sym_comment, - STATE(3275), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5326), 2, + STATE(3252), 1, + sym_comment, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5324), 29, + ACTIONS(5296), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331797,48 +470397,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112183] = 15, - ACTIONS(247), 1, + [112847] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3244), 1, - sym_comment, - STATE(3277), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3253), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 17, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331856,50 +470455,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112257] = 16, - ACTIONS(247), 1, + [112919] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - STATE(3245), 1, - sym_comment, - STATE(3279), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3254), 1, + sym_comment, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112993] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3255), 1, + sym_comment, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(5296), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [113069] = 14, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + STATE(3233), 1, + aux_sym_shebang_repeat1, + STATE(3256), 1, + sym_comment, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6267), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6271), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5324), 16, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331914,54 +470627,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112333] = 17, - ACTIONS(247), 1, + [113141] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + STATE(3257), 1, + sym_comment, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 35, + ts_builtin_sym_end, sym__newline, - ACTIONS(6233), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - ACTIONS(6267), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - STATE(3246), 1, + anon_sym_bit_DASHor2, + [113195] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + STATE(3258), 1, sym_comment, - STATE(3281), 1, + STATE(3297), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5324), 15, + ACTIONS(5358), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331973,37 +470726,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112411] = 11, - ACTIONS(247), 1, + [113265] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3247), 1, + STATE(3259), 1, sym_comment, - ACTIONS(5320), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 28, + ACTIONS(5267), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332017,6 +470776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332032,27 +470792,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112477] = 8, - ACTIONS(247), 1, + [113329] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3248), 1, + STATE(3260), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 3, + ACTIONS(5269), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5318), 31, + ACTIONS(5267), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332067,6 +470825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332084,38 +470843,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112537] = 12, - ACTIONS(247), 1, + [113387] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3249), 1, + STATE(3261), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 24, + ACTIONS(5267), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332129,6 +470886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332140,23 +470898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112605] = 6, - ACTIONS(247), 1, + [113453] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3250), 1, + STATE(3262), 1, sym_comment, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5320), 5, + ACTIONS(5269), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5318), 33, + ACTIONS(5267), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332171,6 +470927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332190,52 +470947,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112661] = 17, - ACTIONS(247), 1, + [113507] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6333), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6335), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3251), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 15, + ACTIONS(5267), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332248,57 +471003,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [112739] = 18, - ACTIONS(247), 1, + [113583] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6333), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6335), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6337), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3252), 1, + STATE(3264), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 14, + ACTIONS(5267), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332311,58 +471065,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [112819] = 19, - ACTIONS(247), 1, + [113661] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6333), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6335), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6337), 1, anon_sym_and2, - ACTIONS(6277), 1, + ACTIONS(6339), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3253), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 13, + ACTIONS(5267), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332375,44 +471128,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [112901] = 13, - ACTIONS(247), 1, + [113741] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3254), 1, + STATE(3266), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 20, + ACTIONS(5267), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332425,6 +471177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332433,30 +471186,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112971] = 10, - ACTIONS(247), 1, + [113809] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3255), 1, + STATE(3267), 1, sym_comment, - ACTIONS(5320), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5318), 30, + ACTIONS(5267), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332470,6 +471221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332487,46 +471239,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113035] = 14, - ACTIONS(247), 1, + [113871] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3256), 1, + STATE(3268), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 18, + ACTIONS(5267), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332539,54 +471289,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113107] = 15, - ACTIONS(247), 1, + [113941] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3257), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 17, + ACTIONS(5267), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332599,55 +471348,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113181] = 16, - ACTIONS(247), 1, + [114013] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6333), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3258), 1, + STATE(3270), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5318), 16, + ACTIONS(5267), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332660,38 +471408,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [113257] = 11, - ACTIONS(247), 1, + [114087] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DASH2, - ACTIONS(6229), 1, - anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3259), 1, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6341), 1, + anon_sym_GT2, + ACTIONS(6343), 1, + anon_sym_AT, + STATE(3271), 1, + sym_comment, + STATE(7281), 1, + sym__all_type, + STATE(7838), 1, + sym_param_cmd, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(7629), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [114151] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5451), 1, + sym__newline, + STATE(3272), 1, sym_comment, - ACTIONS(5304), 2, + STATE(3303), 1, + aux_sym_shebang_repeat1, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6223), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5302), 28, - sym__newline, + anon_sym_PLUS2, + ACTIONS(5358), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332703,6 +471497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -332716,38 +471511,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113323] = 12, - ACTIONS(247), 1, + [114209] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3260), 1, - sym_comment, - STATE(3284), 1, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + ACTIONS(6309), 1, + anon_sym_xor2, + STATE(3231), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + STATE(3273), 1, + sym_comment, + ACTIONS(6251), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6235), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 27, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332759,44 +471581,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [114293] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(6345), 1, + anon_sym_GT2, + STATE(3274), 1, + sym_comment, + STATE(6835), 1, + sym__all_type, + STATE(7926), 1, + sym_param_cmd, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(7629), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [114357] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - [113391] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, + STATE(3229), 1, aux_sym_shebang_repeat1, - STATE(3261), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5304), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5302), 31, - sym__newline, + ACTIONS(6271), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332808,48 +471697,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [114439] = 20, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - [113451] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - STATE(3262), 1, + ACTIONS(6309), 1, + anon_sym_xor2, + STATE(3276), 1, sym_comment, - STATE(3336), 1, + STATE(3310), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5306), 30, + ACTIONS(6271), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5358), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332861,58 +471762,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [113513] = 12, - ACTIONS(247), 1, + [114523] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3263), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6223), 2, + STATE(3312), 1, + aux_sym_shebang_repeat1, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 24, - sym__newline, + ACTIONS(5358), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332924,52 +471813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113581] = 13, - ACTIONS(247), 1, + [114595] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3264), 1, + ACTIONS(6347), 1, + aux_sym__immediate_decimal_token2, + STATE(3278), 1, sym_comment, - STATE(3285), 1, - aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5306), 23, + ACTIONS(1919), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1921), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332981,36 +471852,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [113651] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [114649] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + STATE(3235), 1, aux_sym_shebang_repeat1, - STATE(3265), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5304), 5, + ACTIONS(5340), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6257), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5302), 33, - sym__newline, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6267), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5338), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333022,7 +471907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -333036,32 +471920,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113707] = 7, - ACTIONS(247), 1, + [114715] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5451), 1, sym__newline, - STATE(3266), 1, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6269), 1, + anon_sym_PLUS2, + STATE(3280), 1, sym_comment, - STATE(3286), 1, + STATE(3316), 1, aux_sym_shebang_repeat1, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5308), 5, + ACTIONS(5360), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6257), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5306), 32, + ACTIONS(6265), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6267), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5358), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333073,7 +471962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -333087,60 +471975,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113765] = 17, - ACTIONS(247), 1, + [114781] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3267), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6223), 2, + STATE(3319), 1, + aux_sym_shebang_repeat1, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 15, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5358), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333155,54 +472036,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [113843] = 18, - ACTIONS(247), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114855] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5451), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, - STATE(3268), 1, + STATE(3282), 1, sym_comment, - STATE(3287), 1, + STATE(3321), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 14, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5358), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333217,55 +472097,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [113923] = 18, - ACTIONS(247), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114931] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - ACTIONS(6273), 1, - anon_sym_and2, - STATE(1761), 1, + STATE(3237), 1, aux_sym_shebang_repeat1, - STATE(3269), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 14, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333277,58 +472152,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [114003] = 19, - ACTIONS(247), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [115005] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5451), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, ACTIONS(6275), 1, - anon_sym_and2, - STATE(3270), 1, + anon_sym_bit_DASHxor2, + STATE(3284), 1, sym_comment, - STATE(3288), 1, + STATE(3323), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 13, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5358), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333340,58 +472215,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [114085] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DASH2, - ACTIONS(6229), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + [115083] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3285), 1, + sym_comment, + STATE(3435), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3434), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1850), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1852), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(6277), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3271), 1, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115149] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3286), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 13, + STATE(3438), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3459), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1854), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1856), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333404,59 +472317,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [114167] = 20, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115215] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(5434), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, - ACTIONS(6275), 1, - anon_sym_and2, - ACTIONS(6279), 1, - anon_sym_xor2, - STATE(3272), 1, - sym_comment, - STATE(3289), 1, + STATE(3239), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + STATE(3287), 1, + sym_comment, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 12, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333468,44 +472384,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [114251] = 13, - ACTIONS(247), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [115291] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(6353), 1, + anon_sym_GT2, + STATE(3288), 1, + sym_comment, + STATE(7098), 1, + sym__all_type, + STATE(8114), 1, + sym_param_cmd, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(7629), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [115355] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(6355), 1, + anon_sym_GT2, + STATE(3289), 1, + sym_comment, + STATE(7152), 1, + sym__all_type, + STATE(7732), 1, + sym_param_cmd, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(7629), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [115419] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3273), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(5356), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 20, + ACTIONS(5354), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333518,53 +472536,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114321] = 14, - ACTIONS(247), 1, + [115485] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6357), 1, + anon_sym_DOLLAR, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6361), 1, + anon_sym_DOT, + ACTIONS(6365), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6367), 1, + aux_sym__immediate_decimal_token5, + STATE(3291), 1, + sym_comment, + STATE(3557), 1, + sym__immediate_decimal, + ACTIONS(6363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3556), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1786), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115553] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3292), 1, + sym_comment, + ACTIONS(6369), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115603] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3293), 1, + sym_comment, + ACTIONS(6371), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115653] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3274), 1, + STATE(3294), 1, sym_comment, - STATE(3290), 1, + STATE(3307), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(5364), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5306), 19, + ACTIONS(5362), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333576,38 +472742,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114393] = 10, - ACTIONS(247), 1, + [115721] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DASH2, - ACTIONS(6229), 1, - anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3275), 1, + STATE(3295), 1, sym_comment, - ACTIONS(5304), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5302), 30, + ACTIONS(5356), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5354), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333620,6 +472791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -333638,32 +472810,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114457] = 11, - ACTIONS(247), 1, + [115781] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3276), 1, + STATE(3296), 1, sym_comment, - STATE(3291), 1, + STATE(3332), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6235), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5306), 29, + ACTIONS(5364), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5362), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333675,6 +472844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -333693,46 +472863,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114523] = 14, - ACTIONS(247), 1, + [115843] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3277), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 18, + ACTIONS(5354), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333745,54 +472907,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114595] = 15, - ACTIONS(247), 1, + [115911] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + STATE(3298), 1, + sym_comment, + ACTIONS(6373), 41, sym__newline, - ACTIONS(6233), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115961] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3299), 1, + sym_comment, + ACTIONS(6375), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116011] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3278), 1, + STATE(3300), 1, sym_comment, - STATE(3292), 1, + STATE(3335), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5306), 17, + ACTIONS(5362), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333804,55 +473058,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114669] = 15, - ACTIONS(247), 1, + [116081] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + STATE(3241), 1, aux_sym_shebang_repeat1, - STATE(3279), 1, + STATE(3301), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 17, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333867,52 +473130,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114743] = 16, - ACTIONS(247), 1, + [116159] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5451), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - STATE(3280), 1, - sym_comment, - STATE(3293), 1, + STATE(3290), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + STATE(3302), 1, + sym_comment, + ACTIONS(5360), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5306), 16, + ACTIONS(5358), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333924,55 +473171,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114819] = 16, - ACTIONS(247), 1, + [116227] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DASH2, - ACTIONS(6229), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3281), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(5356), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 16, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5354), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333985,56 +473216,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114895] = 17, - ACTIONS(247), 1, + [116283] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - STATE(3282), 1, - sym_comment, - STATE(3294), 1, + STATE(3210), 1, aux_sym_shebang_repeat1, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + STATE(3304), 1, + sym_comment, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(5364), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5306), 15, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5362), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334046,84 +473267,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114973] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(6281), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115023] = 11, - ACTIONS(247), 1, + [116341] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6303), 1, + anon_sym_bit_DASHor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3284), 1, + STATE(3305), 1, sym_comment, - ACTIONS(5276), 2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5274), 28, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334136,55 +473346,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [115089] = 12, - ACTIONS(247), 1, + [116419] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + STATE(3211), 1, aux_sym_shebang_repeat1, - STATE(3285), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, + ACTIONS(6255), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 24, - sym__newline, + ACTIONS(5362), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334196,35 +473408,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [115157] = 6, - ACTIONS(247), 1, + [116499] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3286), 1, + STATE(3307), 1, sym_comment, - ACTIONS(6225), 2, + ACTIONS(5344), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5276), 5, - anon_sym_GT2, + ACTIONS(6287), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5274), 33, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5342), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334237,7 +473450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -334251,59 +473463,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115213] = 17, - ACTIONS(247), 1, + [116565] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, + ACTIONS(6305), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3287), 1, + STATE(3308), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5274), 15, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334316,58 +473526,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [115291] = 18, - ACTIONS(247), 1, + [116645] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, - anon_sym_and2, - STATE(1761), 1, + STATE(3212), 1, aux_sym_shebang_repeat1, - STATE(3288), 1, + STATE(3309), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5274), 14, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334381,56 +473591,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [115371] = 19, - ACTIONS(247), 1, + [116727] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6303), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6305), 1, anon_sym_and2, - ACTIONS(6277), 1, + ACTIONS(6307), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3289), 1, + STATE(3310), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5274), 13, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334444,44 +473654,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [115453] = 13, - ACTIONS(247), 1, + [116809] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6259), 1, + anon_sym_and2, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(1761), 1, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + ACTIONS(6309), 1, + anon_sym_xor2, + STATE(3213), 1, aux_sym_shebang_repeat1, - STATE(3290), 1, + STATE(3311), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5274), 20, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334493,38 +473717,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [115523] = 10, - ACTIONS(247), 1, + [116893] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3291), 1, + STATE(3312), 1, sym_comment, - ACTIONS(5276), 2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6223), 2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5274), 30, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334537,65 +473767,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115587] = 14, - ACTIONS(247), 1, + [116963] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(3214), 1, aux_sym_shebang_repeat1, - STATE(3292), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5274), 18, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334610,51 +473828,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115659] = 15, - ACTIONS(247), 1, + [117035] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3314), 1, + sym_comment, + ACTIONS(6377), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [117085] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3315), 1, + sym_comment, + ACTIONS(6379), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [117135] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3293), 1, + STATE(3316), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(5356), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5274), 17, + ACTIONS(5354), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334667,56 +473963,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115733] = 16, - ACTIONS(247), 1, + [117199] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6229), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(3215), 1, aux_sym_shebang_repeat1, - STATE(3294), 1, + STATE(3317), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(5364), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5274), 16, - sym__newline, + ACTIONS(5362), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334728,138 +474018,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115809] = 11, - ACTIONS(247), 1, + [117265] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - STATE(3295), 1, + ACTIONS(6208), 1, + anon_sym_LBRACK, + ACTIONS(6214), 1, + anon_sym_list, + STATE(3318), 1, sym_comment, - STATE(3444), 1, - sym__immediate_decimal, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1675), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115875] = 10, - ACTIONS(247), 1, + STATE(7720), 1, + sym__one_type, + STATE(7751), 1, + sym__multiple_types, + STATE(8134), 1, + sym__type_annotation, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(6253), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [117329] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(6283), 1, anon_sym_DASH2, ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(3296), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3319), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6289), 2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6297), 2, anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5237), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [115939] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3297), 1, - sym_comment, - ACTIONS(6289), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 32, + ACTIONS(5354), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334872,97 +474142,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115997] = 11, - ACTIONS(247), 1, + [117401] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6295), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3298), 1, + STATE(3216), 1, + aux_sym_shebang_repeat1, + STATE(3320), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(6255), 4, anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116063] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3299), 1, - sym_comment, - ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5237), 34, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334974,72 +474201,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116117] = 16, - ACTIONS(247), 1, + [117475] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(6283), 1, anon_sym_DASH2, ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6307), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6309), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6311), 1, - anon_sym_bit_DASHor2, - STATE(3300), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3321), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6303), 4, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 16, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335052,57 +474261,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116193] = 17, - ACTIONS(247), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117549] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6295), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6307), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6309), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6311), 1, - anon_sym_bit_DASHor2, - ACTIONS(6313), 1, - anon_sym_and2, - STATE(3301), 1, + STATE(3217), 1, + aux_sym_shebang_repeat1, + STATE(3322), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6303), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 15, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335114,57 +474321,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116271] = 18, - ACTIONS(247), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117625] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(6283), 1, anon_sym_DASH2, ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6307), 1, + ACTIONS(6299), 1, anon_sym_bit_DASHand2, - ACTIONS(6309), 1, + ACTIONS(6301), 1, anon_sym_bit_DASHxor2, - ACTIONS(6311), 1, - anon_sym_bit_DASHor2, - ACTIONS(6313), 1, - anon_sym_and2, - ACTIONS(6315), 1, - anon_sym_xor2, - STATE(3302), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3323), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6303), 4, + ACTIONS(6285), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 14, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5354), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335177,44 +474382,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [116351] = 12, - ACTIONS(247), 1, + anon_sym_bit_DASHor2, + [117701] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6295), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3303), 1, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + STATE(3218), 1, + aux_sym_shebang_repeat1, + STATE(3324), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6303), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 21, - sym__newline, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335226,38 +474443,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116419] = 9, - ACTIONS(247), 1, + [117779] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6295), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3304), 1, + STATE(3219), 1, + aux_sym_shebang_repeat1, + STATE(3325), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5340), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6289), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 31, - sym__newline, + ACTIONS(6271), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5338), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335270,7 +474488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335283,50 +474500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116481] = 13, - ACTIONS(247), 1, + [117847] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, - anon_sym_DASH2, - ACTIONS(6295), 1, - anon_sym_PLUS2, - STATE(3305), 1, + ACTIONS(5434), 1, + sym__newline, + STATE(3221), 1, + aux_sym_shebang_repeat1, + STATE(3326), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, + ACTIONS(5340), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6303), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 19, - sym__newline, + anon_sym_PLUS2, + ACTIONS(5338), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335338,114 +474537,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116551] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6287), 1, - anon_sym_DASH2, - ACTIONS(6295), 1, - anon_sym_PLUS2, - ACTIONS(6307), 1, - anon_sym_bit_DASHand2, - STATE(3306), 1, - sym_comment, - ACTIONS(6289), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6303), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116623] = 15, - ACTIONS(247), 1, + [117909] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6287), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6295), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6307), 1, - anon_sym_bit_DASHand2, - ACTIONS(6309), 1, - anon_sym_bit_DASHxor2, - STATE(3307), 1, + STATE(3223), 1, + aux_sym_shebang_repeat1, + STATE(3327), 1, sym_comment, - ACTIONS(6289), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6291), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6303), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 17, - sym__newline, + ACTIONS(5338), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335457,33 +474601,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116697] = 11, - ACTIONS(247), 1, + [117979] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(3308), 1, + STATE(3328), 1, sym_comment, - STATE(3453), 1, + STATE(3432), 1, sym__immediate_decimal, - ACTIONS(6285), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3448), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 8, + ACTIONS(1846), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -335492,7 +474643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1679), 24, + ACTIONS(1848), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335517,68 +474668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116763] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(6317), 1, - anon_sym_GT2, - STATE(3309), 1, - sym_comment, - STATE(7196), 1, - sym__all_type, - STATE(7921), 1, - sym_param_cmd, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(7626), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [116827] = 5, - ACTIONS(247), 1, + [118045] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6319), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(3310), 1, + STATE(3329), 1, sym_comment, - ACTIONS(1785), 10, + ACTIONS(1872), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -335589,7 +474686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1787), 30, + ACTIONS(1874), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335620,85 +474717,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116881] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3211), 1, - aux_sym_shebang_repeat1, - STATE(3311), 1, - sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5328), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116949] = 9, - ACTIONS(247), 1, + [118099] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + ACTIONS(5434), 1, sym__newline, - STATE(3213), 1, + STATE(3225), 1, aux_sym_shebang_repeat1, - STATE(3312), 1, + STATE(3330), 1, sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, + ACTIONS(5340), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5328), 30, + ACTIONS(5338), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335724,87 +474761,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [117011] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3215), 1, - aux_sym_shebang_repeat1, - STATE(3313), 1, - sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5328), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117081] = 7, - ACTIONS(247), 1, + [118157] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - STATE(3217), 1, - aux_sym_shebang_repeat1, - STATE(3314), 1, + STATE(3331), 1, sym_comment, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, + ACTIONS(2593), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5328), 32, + ACTIONS(5112), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335816,6 +474792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2595), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -335830,6 +474808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -335837,21 +474817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117139] = 5, - ACTIONS(247), 1, + [118211] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - STATE(3315), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3332), 1, sym_comment, - ACTIONS(1707), 5, - anon_sym_GT2, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6287), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5344), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1719), 35, - ts_builtin_sym_end, + ACTIONS(5342), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335863,6 +474849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -335877,63 +474864,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117193] = 18, - ACTIONS(247), 1, + [118271] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, ACTIONS(6241), 1, - anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, - STATE(3219), 1, - aux_sym_shebang_repeat1, - STATE(3316), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3333), 1, sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 14, + STATE(3437), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3458), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1786), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335945,59 +474912,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [117273] = 19, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118337] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + ACTIONS(5434), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, + ACTIONS(6273), 1, anon_sym_bit_DASHand2, - ACTIONS(6269), 1, + ACTIONS(6275), 1, anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, + ACTIONS(6277), 1, anon_sym_bit_DASHor2, - ACTIONS(6275), 1, - anon_sym_and2, - STATE(3221), 1, + STATE(3227), 1, aux_sym_shebang_repeat1, - STATE(3317), 1, + STATE(3334), 1, sym_comment, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 13, + ACTIONS(6261), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336009,203 +474983,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [117355] = 20, - ACTIONS(247), 1, + [118417] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6283), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, - ACTIONS(6275), 1, - anon_sym_and2, - ACTIONS(6279), 1, - anon_sym_xor2, - STATE(3223), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3318), 1, + STATE(3335), 1, sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6281), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [117439] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3319), 1, - sym_comment, - ACTIONS(6321), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [117489] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3225), 1, - aux_sym_shebang_repeat1, - STATE(3320), 1, - sym_comment, - ACTIONS(6235), 2, + ACTIONS(6287), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6289), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [117561] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, + ACTIONS(5342), 24, sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - STATE(3227), 1, - aux_sym_shebang_repeat1, - STATE(3321), 1, - sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5328), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336224,120 +475037,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117627] = 15, - ACTIONS(247), 1, + [118485] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + ACTIONS(5451), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6253), 1, anon_sym_DASH2, - ACTIONS(6241), 1, + ACTIONS(6269), 1, anon_sym_PLUS2, - STATE(3229), 1, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + STATE(3305), 1, aux_sym_shebang_repeat1, - STATE(3322), 1, + STATE(3336), 1, sym_comment, - ACTIONS(6235), 2, + ACTIONS(6251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6263), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [117701] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - STATE(3231), 1, - aux_sym_shebang_repeat1, - STATE(3323), 1, - sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 16, + ACTIONS(5358), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336352,19 +475104,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [117777] = 3, - ACTIONS(247), 1, + [118565] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3324), 1, - sym_comment, - ACTIONS(6323), 41, + ACTIONS(6227), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6385), 1, + anon_sym_list, + STATE(3337), 1, + sym_comment, + STATE(3463), 1, + aux_sym_shebang_repeat1, + STATE(4629), 1, + sym__type_annotation, + ACTIONS(6383), 2, + anon_sym_table, + anon_sym_record, + STATE(4798), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6381), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336394,24 +475154,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [117827] = 3, - ACTIONS(247), 1, + [118626] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3325), 1, - sym_comment, - ACTIONS(6325), 41, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6227), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(3338), 1, + sym_comment, + STATE(3349), 1, + aux_sym_shebang_repeat1, + STATE(7196), 1, + sym__type_annotation, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(6253), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336441,106 +475206,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, + [118687] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3339), 1, + sym_comment, + ACTIONS(1890), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1892), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - [117877] = 3, - ACTIONS(247), 1, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118738] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6387), 1, + anon_sym_DOT, + ACTIONS(6389), 1, + aux_sym__immediate_decimal_token2, + STATE(3340), 1, + sym_comment, + ACTIONS(1760), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1762), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [118793] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3326), 1, + ACTIONS(6391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6393), 1, + aux_sym__immediate_decimal_token2, + STATE(3341), 1, sym_comment, - ACTIONS(6327), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1768), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1770), 27, + sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - [117927] = 17, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [118848] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - STATE(3233), 1, - aux_sym_shebang_repeat1, - STATE(3327), 1, + STATE(3342), 1, sym_comment, - ACTIONS(6235), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6237), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6263), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 15, + ACTIONS(1919), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1921), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336552,33 +475382,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [118005] = 10, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118899] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6172), 1, - anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - STATE(3328), 1, + STATE(3343), 1, sym_comment, - STATE(7770), 1, - sym__type_annotation, - STATE(8065), 1, + STATE(3344), 1, + aux_sym__multiple_types_repeat2, + STATE(7033), 1, sym__one_type, - STATE(8098), 1, - sym__multiple_types, - ACTIONS(6176), 2, + STATE(7758), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336610,29 +475452,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118069] = 10, - ACTIONS(247), 1, + [118960] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6401), 1, anon_sym_list, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(6329), 1, - anon_sym_GT2, - STATE(3329), 1, - sym_comment, - STATE(7235), 1, - sym__all_type, - STATE(7727), 1, - sym_param_cmd, - ACTIONS(6176), 2, + STATE(7642), 1, + sym__one_type, + STATE(7758), 1, + sym__type_annotation, + ACTIONS(6398), 2, anon_sym_table, anon_sym_record, - STATE(7626), 3, + STATE(3344), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6395), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336664,28 +475503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118133] = 11, - ACTIONS(247), 1, + [119019] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - STATE(3330), 1, + STATE(3345), 1, sym_comment, - STATE(3450), 1, - sym__immediate_decimal, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3449), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1593), 8, + ACTIONS(1968), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336694,7 +475519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 24, + ACTIONS(1970), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336707,10 +475532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -336719,28 +475550,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118199] = 11, - ACTIONS(247), 1, + [119070] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, + ACTIONS(6404), 1, anon_sym_DOLLAR, - STATE(3331), 1, + STATE(3346), 1, sym_comment, - STATE(3438), 1, + STATE(3754), 1, sym__immediate_decimal, - ACTIONS(6285), 2, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3457), 2, + STATE(3751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 8, + ACTIONS(1846), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336749,7 +475580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1671), 24, + ACTIONS(1848), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336761,8 +475593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336774,30 +475604,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118265] = 12, - ACTIONS(247), 1, + [119135] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(6333), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6335), 1, - anon_sym_DOT, - ACTIONS(6339), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - STATE(3332), 1, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3347), 1, sym_comment, - STATE(3557), 1, + STATE(3756), 1, sym__immediate_decimal, - ACTIONS(6337), 2, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3553), 2, + STATE(3755), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 8, + ACTIONS(1850), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336806,7 +475634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 23, + ACTIONS(1852), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336830,16 +475658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118333] = 5, - ACTIONS(247), 1, + [119200] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6209), 1, - aux_sym__immediate_decimal_token2, - STATE(3333), 1, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6365), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6367), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3348), 1, sym_comment, - ACTIONS(1765), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + STATE(3758), 1, + sym__immediate_decimal, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3757), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1854), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336848,7 +475688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1767), 30, + ACTIONS(1856), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336860,17 +475701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -336879,78 +475712,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118387] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3334), 1, - sym_comment, - ACTIONS(2398), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5160), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2400), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118441] = 10, - ACTIONS(247), 1, + [119265] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6214), 1, anon_sym_list, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(6343), 1, - anon_sym_GT2, - STATE(3335), 1, + ACTIONS(6227), 1, + sym__newline, + STATE(3349), 1, sym_comment, - STATE(6871), 1, - sym__all_type, - STATE(8103), 1, - sym_param_cmd, - ACTIONS(6176), 2, + STATE(3463), 1, + aux_sym_shebang_repeat1, + STATE(7154), 1, + sym__type_annotation, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(7626), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336982,27 +475764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118505] = 8, - ACTIONS(247), 1, + [119326] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3336), 1, + STATE(3350), 1, sym_comment, - ACTIONS(6223), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6225), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5276), 3, + ACTIONS(2345), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5274), 31, + ACTIONS(2349), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337014,154 +475788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118565] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - STATE(3337), 1, - sym_comment, - STATE(3358), 1, - aux_sym__multiple_types_repeat2, - STATE(7288), 1, - sym__one_type, - STATE(8133), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118626] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6191), 1, - sym__newline, - STATE(3338), 1, - sym_comment, - STATE(3461), 1, - aux_sym_shebang_repeat1, - STATE(6912), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118687] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3339), 1, - sym_comment, - ACTIONS(998), 8, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1000), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337183,23 +475811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118738] = 5, - ACTIONS(247), 1, + [119377] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3351), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, + ACTIONS(2353), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 33, + ACTIONS(2355), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337226,6 +475849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -337233,41 +475858,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118791] = 9, - ACTIONS(247), 1, + [119428] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - STATE(3341), 1, + STATE(3352), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(1510), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5237), 30, - ts_builtin_sym_end, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1512), 32, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337280,75 +475894,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118852] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - ACTIONS(6365), 1, - anon_sym_bit_DASHand2, - ACTIONS(6367), 1, - anon_sym_bit_DASHxor2, - STATE(3342), 1, - sym_comment, - ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6361), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118925] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119479] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3343), 1, + STATE(3353), 1, sym_comment, - ACTIONS(990), 8, + ACTIONS(1506), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -337357,7 +475919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(992), 32, + ACTIONS(1508), 32, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -337390,338 +475952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118976] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - ACTIONS(6365), 1, - anon_sym_bit_DASHand2, - STATE(3344), 1, - sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6361), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [119047] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3345), 1, - sym_comment, - STATE(3812), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3750), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1671), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119112] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - ACTIONS(6365), 1, - anon_sym_bit_DASHand2, - ACTIONS(6367), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6373), 1, - anon_sym_bit_DASHor2, - STATE(3346), 1, - sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6361), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [119187] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6191), 1, - sym__newline, - STATE(3347), 1, - sym_comment, - STATE(3348), 1, - aux_sym_shebang_repeat1, - STATE(6941), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119248] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6191), 1, - sym__newline, - STATE(3348), 1, - sym_comment, - STATE(3461), 1, - aux_sym_shebang_repeat1, - STATE(6919), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119309] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6191), 1, - sym__newline, - ACTIONS(6379), 1, - anon_sym_list, - STATE(3349), 1, - sym_comment, - STATE(3461), 1, - aux_sym_shebang_repeat1, - STATE(4635), 1, - sym__type_annotation, - ACTIONS(6377), 2, - anon_sym_table, - anon_sym_record, - STATE(4856), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6375), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119370] = 4, - ACTIONS(247), 1, + [119530] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3350), 1, + STATE(3354), 1, sym_comment, - ACTIONS(994), 8, + ACTIONS(1514), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -337730,7 +475966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(996), 32, + ACTIONS(1516), 32, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -337763,12 +475999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119421] = 4, - ACTIONS(247), 1, + [119581] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3351), 1, + STATE(3355), 1, sym_comment, - ACTIONS(1739), 10, + ACTIONS(2215), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -337779,7 +476015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1741), 30, + ACTIONS(2217), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337810,293 +476046,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [119472] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3352), 1, - sym_comment, - STATE(3838), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3829), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1675), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119537] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3353), 1, - sym_comment, - STATE(3850), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3845), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1679), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119602] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6383), 1, - aux_sym__immediate_decimal_token2, - STATE(3354), 1, - sym_comment, - ACTIONS(1585), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1587), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [119657] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3355), 1, - sym_comment, - STATE(3747), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3849), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1593), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1603), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119722] = 12, - ACTIONS(247), 1, + [119632] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, STATE(3356), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, + ACTIONS(1496), 8, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1498), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119789] = 9, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119683] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6191), 1, + ACTIONS(6227), 1, sym__newline, - ACTIONS(6379), 1, + ACTIONS(6385), 1, anon_sym_list, STATE(3357), 1, sym_comment, - STATE(3368), 1, + STATE(3463), 1, aux_sym_shebang_repeat1, - STATE(4640), 1, + STATE(4695), 1, sym__type_annotation, - ACTIONS(6377), 2, + ACTIONS(6383), 2, anon_sym_table, anon_sym_record, - STATE(4856), 3, + STATE(4798), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6375), 31, + ACTIONS(6381), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338128,26 +476145,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119850] = 8, - ACTIONS(247), 1, + [119744] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6391), 1, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6365), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6367), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3358), 1, + sym_comment, + STATE(3786), 1, + sym__immediate_decimal, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3785), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1786), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119809] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, anon_sym_list, - STATE(7589), 1, - sym__one_type, - STATE(8133), 1, + ACTIONS(6227), 1, + sym__newline, + STATE(3359), 1, + sym_comment, + STATE(3463), 1, + aux_sym_shebang_repeat1, + STATE(7455), 1, sym__type_annotation, - ACTIONS(6388), 2, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(3358), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6815), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6385), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338179,12 +476251,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119909] = 4, - ACTIONS(247), 1, + [119870] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3359), 1, + STATE(3360), 1, + sym_comment, + ACTIONS(2593), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5112), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2595), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119923] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3361), 1, sym_comment, - ACTIONS(1785), 10, + ACTIONS(2219), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -338195,7 +476315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1787), 30, + ACTIONS(2221), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338226,31 +476346,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [119960] = 10, - ACTIONS(247), 1, + [119974] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, + ACTIONS(6227), 1, + sym__newline, + ACTIONS(6385), 1, + anon_sym_list, + STATE(3337), 1, + aux_sym_shebang_repeat1, + STATE(3362), 1, + sym_comment, + STATE(4733), 1, + sym__type_annotation, + ACTIONS(6383), 2, + anon_sym_table, + anon_sym_record, + STATE(4798), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6381), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120035] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, anon_sym_DASH2, - ACTIONS(6353), 1, + ACTIONS(6416), 1, anon_sym_PLUS2, - STATE(3360), 1, + STATE(3363), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + ACTIONS(6410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6351), 2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6363), 2, + ACTIONS(6418), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 28, + ACTIONS(5267), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338279,44 +476451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120023] = 13, - ACTIONS(247), 1, + [120098] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - STATE(3361), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + ACTIONS(6410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6351), 2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, + ACTIONS(5269), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6361), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 18, + anon_sym_PLUS2, + ACTIONS(5267), 31, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338329,110 +476482,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120092] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - ACTIONS(6191), 1, - sym__newline, - STATE(3338), 1, - aux_sym_shebang_repeat1, - STATE(3362), 1, - sym_comment, - STATE(7444), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [120153] = 17, - ACTIONS(247), 1, + [120155] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, + ACTIONS(6408), 1, anon_sym_DASH2, - ACTIONS(6353), 1, + ACTIONS(6416), 1, anon_sym_PLUS2, - ACTIONS(6365), 1, - anon_sym_bit_DASHand2, - ACTIONS(6367), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6373), 1, - anon_sym_bit_DASHor2, - ACTIONS(6394), 1, - anon_sym_and2, - STATE(3363), 1, + STATE(3365), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + ACTIONS(6410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6351), 2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6361), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, + ACTIONS(6418), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6422), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 14, + ACTIONS(5267), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338445,20 +476543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [120230] = 4, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120220] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3364), 1, + STATE(3366), 1, sym_comment, - ACTIONS(2246), 5, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2250), 35, + ACTIONS(5267), 33, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338485,34 +476596,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120273] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + ACTIONS(6428), 1, + anon_sym_bit_DASHand2, + ACTIONS(6430), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6432), 1, + anon_sym_bit_DASHor2, + STATE(3367), 1, + sym_comment, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [120348] = 17, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + ACTIONS(6428), 1, anon_sym_bit_DASHand2, + ACTIONS(6430), 1, anon_sym_bit_DASHxor2, + ACTIONS(6432), 1, anon_sym_bit_DASHor2, - [120281] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3365), 1, + ACTIONS(6434), 1, + anon_sym_and2, + STATE(3368), 1, sym_comment, - ACTIONS(6345), 2, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [120425] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + ACTIONS(6428), 1, + anon_sym_bit_DASHand2, + ACTIONS(6430), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6432), 1, + anon_sym_bit_DASHor2, + ACTIONS(6434), 1, + anon_sym_and2, + ACTIONS(6436), 1, + anon_sym_xor2, + STATE(3369), 1, + sym_comment, + ACTIONS(6410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6351), 2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [120504] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, anon_sym_PLUS2, - ACTIONS(5237), 31, + STATE(3370), 1, + sym_comment, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338525,7 +476830,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120571] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + STATE(3371), 1, + sym_comment, + ACTIONS(5269), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5267), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -338544,30 +476890,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120338] = 8, - ACTIONS(247), 1, + [120632] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6396), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(3196), 1, - sym_cell_path, - STATE(3366), 1, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + STATE(3372), 1, sym_comment, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - ACTIONS(961), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(963), 27, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338579,70 +476940,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [120397] = 18, - ACTIONS(247), 1, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120701] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, + ACTIONS(6408), 1, anon_sym_DASH2, - ACTIONS(6353), 1, + ACTIONS(6416), 1, anon_sym_PLUS2, - ACTIONS(6365), 1, + ACTIONS(6428), 1, anon_sym_bit_DASHand2, - ACTIONS(6367), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6373), 1, - anon_sym_bit_DASHor2, - ACTIONS(6394), 1, - anon_sym_and2, - ACTIONS(6398), 1, - anon_sym_xor2, - STATE(3367), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, + ACTIONS(6410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6351), 2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6361), 2, + ACTIONS(6426), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, + ACTIONS(5267), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120772] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + ACTIONS(6428), 1, + anon_sym_bit_DASHand2, + ACTIONS(6430), 1, + anon_sym_bit_DASHxor2, + STATE(3374), 1, + sym_comment, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 13, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338655,28 +477057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [120476] = 9, - ACTIONS(247), 1, + anon_sym_bit_DASHor2, + [120845] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6191), 1, - sym__newline, - ACTIONS(6379), 1, + ACTIONS(6214), 1, anon_sym_list, - STATE(3368), 1, + STATE(3344), 1, + aux_sym__multiple_types_repeat2, + STATE(3375), 1, sym_comment, - STATE(3461), 1, - aux_sym_shebang_repeat1, - STATE(4705), 1, + STATE(7396), 1, + sym__one_type, + STATE(7758), 1, sym__type_annotation, - ACTIONS(6377), 2, + ACTIONS(6212), 2, anon_sym_table, anon_sym_record, - STATE(4856), 3, + STATE(6253), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6375), 31, + ACTIONS(6210), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338708,12 +477113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [120537] = 4, - ACTIONS(247), 1, + [120906] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3369), 1, + STATE(3376), 1, sym_comment, - ACTIONS(2118), 10, + ACTIONS(1872), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -338724,7 +477129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2120), 30, + ACTIONS(1874), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338755,79 +477160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120588] = 9, - ACTIONS(247), 1, + [120957] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6191), 1, + ACTIONS(6227), 1, sym__newline, - ACTIONS(6379), 1, + ACTIONS(6385), 1, anon_sym_list, - STATE(3349), 1, + STATE(3357), 1, aux_sym_shebang_repeat1, - STATE(3370), 1, - sym_comment, - STATE(4750), 1, - sym__type_annotation, - ACTIONS(6377), 2, - anon_sym_table, - anon_sym_record, - STATE(4856), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6375), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [120649] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - STATE(3358), 1, - aux_sym__multiple_types_repeat2, - STATE(3371), 1, + STATE(3377), 1, sym_comment, - STATE(6952), 1, - sym__one_type, - STATE(8133), 1, + STATE(4630), 1, sym__type_annotation, - ACTIONS(6176), 2, + ACTIONS(6383), 2, anon_sym_table, anon_sym_record, - STATE(6815), 3, + STATE(4798), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6174), 31, + ACTIONS(6381), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338859,13 +477212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [120710] = 4, - ACTIONS(247), 1, + [121018] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3372), 1, + ACTIONS(6438), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(3190), 1, + sym_cell_path, + STATE(3378), 1, sym_comment, - ACTIONS(1765), 10, - anon_sym_DASH2, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1473), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -338875,7 +477235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1767), 30, + ACTIONS(1475), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338888,11 +477248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -338906,156 +477263,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120761] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3373), 1, - sym_comment, - ACTIONS(2254), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2256), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120812] = 5, - ACTIONS(247), 1, + [121077] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3374), 1, - sym_comment, - ACTIONS(2398), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5160), 12, - ts_builtin_sym_end, + ACTIONS(6214), 1, + anon_sym_list, + ACTIONS(6227), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2400), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120865] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3375), 1, + STATE(3359), 1, + aux_sym_shebang_repeat1, + STATE(3379), 1, sym_comment, - ACTIONS(1841), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1843), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [120916] = 4, - ACTIONS(247), 1, + STATE(7162), 1, + sym__type_annotation, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(6253), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [121138] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3376), 1, + ACTIONS(6239), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6440), 1, + anon_sym_DOT, + STATE(3380), 1, sym_comment, - ACTIONS(2183), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + STATE(3719), 1, + sym__immediate_decimal, + ACTIONS(6245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3516), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339064,7 +477347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2185), 30, + ACTIONS(1726), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339077,16 +477360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339095,115 +477369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120967] = 6, - ACTIONS(247), 1, + [121204] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6400), 1, - anon_sym_DOT, - ACTIONS(6402), 1, + ACTIONS(6442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6444), 1, aux_sym__immediate_decimal_token2, - STATE(3377), 1, - sym_comment, - ACTIONS(1573), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1575), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [121022] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - ACTIONS(6353), 1, - anon_sym_PLUS2, - STATE(3378), 1, - sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6363), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6359), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121087] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3379), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1002), 8, + ACTIONS(1768), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -339211,17 +477386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1004), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339234,6 +477404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339245,17 +477416,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121138] = 6, - ACTIONS(247), 1, + sym_duration_unit, + [121258] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6209), 1, + ACTIONS(6446), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6404), 1, - anon_sym_DOT, - STATE(3380), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1765), 9, + ACTIONS(1820), 11, + anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1822), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [121310] = 22, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3397), 1, + aux_sym_unquoted_token1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4203), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + STATE(3383), 1, + sym_comment, + STATE(5752), 1, + sym_val_variable, + STATE(5755), 1, + sym_unquoted, + STATE(5941), 1, + sym__val_number_decimal, + STATE(7747), 1, + sym__val_range, + STATE(7793), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5753), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339264,27 +477518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1767), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(2765), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339293,17 +477528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121192] = 6, - ACTIONS(247), 1, + [121396] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6406), 1, + ACTIONS(6450), 1, anon_sym_DOT, - ACTIONS(6408), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token2, - STATE(3381), 1, + STATE(3384), 1, sym_comment, - ACTIONS(1573), 8, + ACTIONS(1760), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -339311,9 +477547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1762), 28, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -339341,29 +477576,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121246] = 6, - ACTIONS(247), 1, + [121450] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6412), 1, - aux_sym__immediate_decimal_token2, - STATE(3382), 1, + ACTIONS(6454), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(1665), 1, + sym_cell_path, + STATE(3385), 1, sym_comment, - ACTIONS(1585), 8, + STATE(3414), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1473), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 29, - sym__newline, + ACTIONS(1475), 29, + anon_sym_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339376,7 +477615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339388,31 +477626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121300] = 12, - ACTIONS(247), 1, + [121508] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6414), 1, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6456), 1, anon_sym_DOT, - STATE(3383), 1, + STATE(3386), 1, sym_comment, - STATE(3696), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3528), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 8, + ACTIONS(1872), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339421,7 +477645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1557), 21, + ACTIONS(1874), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339434,7 +477658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339443,64 +477674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121366] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6416), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(1705), 1, - sym_cell_path, - STATE(3384), 1, - sym_comment, - STATE(3416), 1, - aux_sym_cell_path_repeat1, - ACTIONS(961), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(963), 29, - anon_sym_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121424] = 5, - ACTIONS(247), 1, + [121562] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6402), 1, + ACTIONS(6389), 1, aux_sym__immediate_decimal_token2, - STATE(3385), 1, + STATE(3387), 1, sym_comment, - ACTIONS(1573), 11, + ACTIONS(1760), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -339512,7 +477693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1575), 27, + ACTIONS(1762), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -339540,202 +477721,75 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121476] = 5, - ACTIONS(247), 1, + [121614] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6418), 1, + ACTIONS(6458), 1, + anon_sym_DOT, + ACTIONS(6460), 1, aux_sym__immediate_decimal_token2, - STATE(3386), 1, + STATE(3388), 1, sym_comment, - ACTIONS(1681), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1762), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [121528] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4331), 1, - anon_sym_DOT_DOT, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - STATE(3387), 1, - sym_comment, - STATE(5750), 1, - sym_val_variable, - STATE(5752), 1, - sym_unquoted, - STATE(5795), 1, - sym__val_number_decimal, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, - sym__val_range, - STATE(7913), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4333), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5785), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121614] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4331), 1, - anon_sym_DOT_DOT, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - STATE(3388), 1, - sym_comment, - STATE(5750), 1, - sym_val_variable, - STATE(5752), 1, - sym_unquoted, - STATE(5795), 1, - sym__val_number_decimal, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, - sym__val_range, - STATE(7913), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4333), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5785), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121700] = 8, - ACTIONS(247), 1, + [121668] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6416), 1, + ACTIONS(6454), 1, anon_sym_DOT, - STATE(1615), 1, + STATE(1650), 1, sym_path, - STATE(1652), 1, + STATE(1726), 1, sym_cell_path, STATE(3389), 1, sym_comment, - STATE(3416), 1, + STATE(3414), 1, aux_sym_cell_path_repeat1, - ACTIONS(1747), 6, + ACTIONS(1880), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1749), 29, + ACTIONS(1884), 29, anon_sym_PIPE, anon_sym_DASH2, anon_sym_in2, @@ -339765,27 +477819,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121758] = 8, - ACTIONS(247), 1, + [121726] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6416), 1, + ACTIONS(6454), 1, anon_sym_DOT, - STATE(1615), 1, + STATE(1650), 1, sym_path, - STATE(1722), 1, + STATE(1704), 1, sym_cell_path, STATE(3390), 1, sym_comment, - STATE(3416), 1, + STATE(3414), 1, aux_sym_cell_path_repeat1, - ACTIONS(1733), 6, + ACTIONS(1886), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1737), 29, + ACTIONS(1888), 29, anon_sym_PIPE, anon_sym_DASH2, anon_sym_in2, @@ -339815,18 +477869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121816] = 6, - ACTIONS(247), 1, + [121784] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DOT, - ACTIONS(6424), 1, + ACTIONS(6462), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6464), 1, aux_sym__immediate_decimal_token2, STATE(3391), 1, sym_comment, - ACTIONS(1573), 9, + ACTIONS(1768), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -339834,8 +477887,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 28, - anon_sym_DASH_DASH, + ACTIONS(1770), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -339863,18 +477917,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121870] = 7, - ACTIONS(247), 1, + [121838] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6438), 1, anon_sym_DOT, - STATE(1615), 1, + STATE(1650), 1, sym_path, STATE(3392), 1, sym_comment, STATE(3393), 1, aux_sym_cell_path_repeat1, - ACTIONS(967), 9, + ACTIONS(1479), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -339884,7 +477938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 27, + ACTIONS(1481), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339912,17 +477966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121926] = 6, - ACTIONS(247), 1, + [121894] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6426), 1, + ACTIONS(6466), 1, anon_sym_DOT, - STATE(1615), 1, + STATE(1650), 1, sym_path, STATE(3393), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(971), 9, + ACTIONS(1483), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -339932,7 +477986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 27, + ACTIONS(1485), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339960,16 +478014,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121980] = 6, - ACTIONS(247), 1, + [121948] = 22, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3397), 1, + aux_sym_unquoted_token1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4203), 1, + anon_sym_DOT_DOT, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(6448), 1, + anon_sym_DOLLAR, STATE(3394), 1, sym_comment, - ACTIONS(1585), 9, + STATE(5752), 1, + sym_val_variable, + STATE(5755), 1, + sym_unquoted, + STATE(5941), 1, + sym__val_number_decimal, + STATE(7747), 1, + sym__val_range, + STATE(7793), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5753), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122034] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6473), 1, + anon_sym_list, + STATE(3395), 1, + sym_comment, + STATE(7701), 1, + sym__type_annotation, + ACTIONS(6471), 2, + anon_sym_table, + anon_sym_record, + STATE(7607), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6469), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [122089] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token2, + STATE(3396), 1, + sym_comment, + ACTIONS(1760), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -339979,7 +478143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1587), 28, + ACTIONS(1762), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -340008,12 +478172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [122034] = 4, - ACTIONS(247), 1, + [122140] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3395), 1, + STATE(3397), 1, sym_comment, - ACTIONS(1573), 11, + ACTIONS(1866), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340025,7 +478189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1575), 27, + ACTIONS(1868), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340053,62 +478217,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122083] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6433), 1, - sym__entry_separator, - STATE(3396), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2332), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [122132] = 6, - ACTIONS(247), 1, + [122189] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6436), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6438), 1, + ACTIONS(6475), 1, aux_sym__immediate_decimal_token2, - STATE(3397), 1, + STATE(3398), 1, sym_comment, - ACTIONS(1585), 8, + ACTIONS(1820), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -340116,10 +478234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1587), 28, - anon_sym_DASH2, + ACTIONS(1822), 28, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -340145,23 +478263,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [122185] = 7, - ACTIONS(247), 1, + [122240] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6444), 1, + ACTIONS(6481), 1, anon_sym_list, - STATE(3398), 1, + STATE(3399), 1, sym_comment, - STATE(5498), 1, + STATE(5457), 1, sym__all_type, - ACTIONS(6442), 2, + ACTIONS(6479), 2, anon_sym_table, anon_sym_record, - STATE(5522), 3, + STATE(5500), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6440), 31, + ACTIONS(6477), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340193,23 +478311,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [122240] = 7, - ACTIONS(247), 1, + [122295] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6444), 1, + ACTIONS(6481), 1, anon_sym_list, - STATE(3399), 1, + STATE(3400), 1, sym_comment, - STATE(5438), 1, + STATE(5462), 1, sym__all_type, - ACTIONS(6442), 2, + ACTIONS(6479), 2, anon_sym_table, anon_sym_record, - STATE(5522), 3, + STATE(5500), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6440), 31, + ACTIONS(6477), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340241,23 +478359,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [122295] = 7, - ACTIONS(247), 1, + [122350] = 21, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6178), 1, - anon_sym_list, - STATE(3400), 1, + ACTIONS(3475), 1, + aux_sym_unquoted_token1, + ACTIONS(4029), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4031), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4033), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4035), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5743), 1, + sym_val_date, + ACTIONS(5845), 1, + anon_sym_DOT_DOT, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3401), 1, sym_comment, - STATE(8049), 1, - sym__type_annotation, - ACTIONS(6176), 2, - anon_sym_table, - anon_sym_record, - STATE(6815), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6174), 31, + STATE(5830), 1, + sym__val_number_decimal, + STATE(6084), 1, + sym_val_variable, + STATE(6089), 1, + sym_unquoted, + STATE(7805), 1, + sym__val_range, + STATE(7816), 1, + sym__unquoted_anonymous_prefix, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5847), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5849), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2763), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2765), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6483), 1, + sym__entry_separator, + STATE(3402), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2435), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340287,25 +478461,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [122350] = 5, - ACTIONS(247), 1, + anon_sym_record, + anon_sym_list, + [122482] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token2, - STATE(3401), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3403), 1, + sym_comment, + STATE(3627), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1730), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1742), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122545] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(6486), 1, + sym_filesize_unit, + ACTIONS(6488), 1, + sym_duration_unit, + ACTIONS(6490), 1, + aux_sym_unquoted_token2, + STATE(3404), 1, + sym_comment, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 9, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1800), 23, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [122604] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4907), 1, + anon_sym_DOT_DOT2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(6492), 1, + sym_filesize_unit, + ACTIONS(6494), 1, + sym_duration_unit, + STATE(3405), 1, sym_comment, - ACTIONS(1573), 8, + STATE(7710), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 29, + ACTIONS(1800), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -340322,7 +478611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -340332,31 +478620,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122401] = 11, - ACTIONS(247), 1, + [122667] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6357), 1, + anon_sym_DOLLAR, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, + ACTIONS(6496), 1, + anon_sym_DOT, + STATE(3406), 1, + sym_comment, + STATE(3789), 1, + sym__immediate_decimal, + ACTIONS(6363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3568), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1726), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122732] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6214), 1, + anon_sym_list, + STATE(3407), 1, + sym_comment, + STATE(7828), 1, + sym__type_annotation, + ACTIONS(6212), 2, + anon_sym_table, + anon_sym_record, + STATE(6253), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6210), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [122787] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(3402), 1, + STATE(3408), 1, sym_comment, - STATE(3615), 1, + STATE(3612), 1, sym__immediate_decimal, - ACTIONS(6285), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + STATE(3440), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1543), 8, + ACTIONS(1712), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340365,7 +478751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1557), 21, + ACTIONS(1726), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340387,34 +478773,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122464] = 11, - ACTIONS(247), 1, + [122850] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3409), 1, + sym_comment, + ACTIONS(1768), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1770), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [122899] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(4858), 1, + ACTIONS(4907), 1, anon_sym_DOT_DOT2, - ACTIONS(6446), 1, + ACTIONS(6498), 1, sym_filesize_unit, - ACTIONS(6448), 1, + ACTIONS(6500), 1, sym_duration_unit, - ACTIONS(6450), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token2, - STATE(3403), 1, + STATE(3410), 1, sym_comment, - STATE(7632), 1, + STATE(7457), 1, sym__expr_parenthesized_immediate, - ACTIONS(4860), 2, + ACTIONS(4909), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 6, + ACTIONS(1788), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, + ACTIONS(1800), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -340439,50 +478870,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122527] = 21, - ACTIONS(247), 1, + [122962] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6460), 1, + aux_sym__immediate_decimal_token2, + STATE(3411), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123013] = 21, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3313), 1, + ACTIONS(3397), 1, aux_sym_unquoted_token1, - ACTIONS(3989), 1, + ACTIONS(4029), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, + ACTIONS(4031), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, + ACTIONS(4033), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, + ACTIONS(4035), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4331), 1, + ACTIONS(4203), 1, anon_sym_DOT_DOT, - ACTIONS(5775), 1, + ACTIONS(5743), 1, sym_val_date, - ACTIONS(6420), 1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - STATE(3404), 1, + STATE(3412), 1, sym_comment, - STATE(5750), 1, - sym_val_variable, STATE(5752), 1, + sym_val_variable, + STATE(5755), 1, sym_unquoted, - STATE(5795), 1, + STATE(5941), 1, sym__val_number_decimal, - STATE(7802), 1, - sym_val_bool, - STATE(7906), 1, + STATE(7747), 1, sym__val_range, - STATE(7913), 1, + STATE(7793), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3987), 2, + STATE(7920), 1, + sym_val_bool, + ACTIONS(4027), 2, anon_sym_true, anon_sym_false, - ACTIONS(4333), 2, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5785), 3, + ACTIONS(5753), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(2671), 8, + ACTIONS(2763), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340491,7 +478968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, + ACTIONS(2765), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -340501,20 +478978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122610] = 8, - ACTIONS(247), 1, + [123096] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6452), 1, + ACTIONS(6504), 1, anon_sym_DOT, - STATE(1463), 1, + STATE(1451), 1, sym_cell_path, - STATE(2080), 1, + STATE(2085), 1, sym_path, - STATE(3405), 1, + STATE(3413), 1, sym_comment, - STATE(3458), 1, + STATE(3422), 1, aux_sym_cell_path_repeat1, - ACTIONS(961), 9, + ACTIONS(1473), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -340524,7 +479001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 25, + ACTIONS(1475), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -340550,62 +479027,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122667] = 9, - ACTIONS(247), 1, + [123153] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, ACTIONS(6454), 1, - sym_filesize_unit, - ACTIONS(6456), 1, - sym_duration_unit, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(3406), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(3414), 1, + sym_comment, + STATE(3415), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1479), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1481), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123208] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6506), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(3415), 2, sym_comment, - ACTIONS(4724), 2, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1485), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 9, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1719), 23, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [122726] = 4, - ACTIONS(247), 1, + [123261] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3416), 1, sym_comment, - ACTIONS(1585), 11, + ACTIONS(1760), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340617,7 +479139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1587), 27, + ACTIONS(1762), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340645,82 +479167,121 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122775] = 4, - ACTIONS(247), 1, + [123310] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3408), 1, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token2, + STATE(3417), 1, sym_comment, - ACTIONS(1681), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1820), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1822), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [122824] = 11, - ACTIONS(247), 1, + [123361] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4858), 1, + ACTIONS(6511), 1, + anon_sym_DOT, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token2, + STATE(3418), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(6460), 1, sym_filesize_unit, - ACTIONS(6462), 1, - sym_duration_unit, - STATE(3409), 1, - sym_comment, - STATE(7707), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 2, + aux_sym_unquoted_token2, + ACTIONS(1762), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + sym_duration_unit, + [123414] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6515), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6517), 1, + aux_sym__immediate_decimal_token2, + STATE(3419), 1, + sym_comment, + ACTIONS(1768), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 25, - sym__newline, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -340733,6 +479294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -340742,12 +479304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122887] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123467] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3410), 1, + STATE(3420), 1, sym_comment, - ACTIONS(1761), 11, + ACTIONS(1820), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340759,7 +479324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1763), 27, + ACTIONS(1822), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340787,28 +479352,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122936] = 11, - ACTIONS(247), 1, + [123516] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - STATE(3411), 1, + ACTIONS(6519), 1, + anon_sym_DOT, + STATE(2085), 1, + sym_path, + STATE(3421), 2, sym_comment, - STATE(3625), 1, - sym__immediate_decimal, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3426), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 8, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340817,7 +479372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1659), 21, + ACTIONS(1485), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340829,8 +479385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340839,15 +479398,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122999] = 5, - ACTIONS(247), 1, + [123568] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6464), 1, - aux_sym__immediate_decimal_token2, - STATE(3412), 1, + ACTIONS(6504), 1, + anon_sym_DOT, + STATE(2085), 1, + sym_path, + STATE(3421), 1, + aux_sym_cell_path_repeat1, + STATE(3422), 1, + sym_comment, + ACTIONS(1479), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1481), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123622] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3423), 1, sym_comment, - ACTIONS(1681), 8, + ACTIONS(1820), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -340855,9 +479460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1822), 28, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -340885,16 +479489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123050] = 5, - ACTIONS(247), 1, + [123670] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6466), 1, - aux_sym__immediate_decimal_token2, - STATE(3413), 1, + STATE(3424), 1, sym_comment, - ACTIONS(1681), 9, + ACTIONS(1768), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -340902,8 +479503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1683), 28, - anon_sym_DASH_DASH, + ACTIONS(1770), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -340931,132 +479533,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123101] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6472), 1, - anon_sym_list, - STATE(3414), 1, - sym_comment, - STATE(7473), 1, - sym__type_annotation, - ACTIONS(6470), 2, - anon_sym_table, - anon_sym_record, - STATE(7612), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6468), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123156] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6474), 1, - anon_sym_DOT, - STATE(3415), 1, - sym_comment, - STATE(3751), 1, - sym__immediate_decimal, - ACTIONS(6337), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3561), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1557), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [123221] = 7, - ACTIONS(247), 1, + [123718] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6416), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(3416), 1, + STATE(3425), 1, sym_comment, - STATE(3417), 1, - aux_sym_cell_path_repeat1, - ACTIONS(967), 6, + ACTIONS(1820), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(969), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -341069,6 +479564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -341080,30 +479576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123276] = 6, - ACTIONS(247), 1, + sym_duration_unit, + [123766] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6476), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(3417), 2, + STATE(3426), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, + ACTIONS(1866), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(973), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1868), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -341116,6 +479608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -341127,16 +479620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123329] = 6, - ACTIONS(247), 1, + sym_duration_unit, + [123814] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6479), 1, - anon_sym_DOT, - ACTIONS(6481), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token2, - STATE(3418), 1, + STATE(3427), 1, sym_comment, - ACTIONS(1573), 8, + ACTIONS(1760), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -341145,7 +479637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 28, + ACTIONS(1762), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -341174,76 +479666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123382] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3391), 1, - aux_sym_unquoted_token1, - ACTIONS(3989), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3991), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3993), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3995), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5775), 1, - sym_val_date, - ACTIONS(5807), 1, - anon_sym_DOT_DOT, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3419), 1, - sym_comment, - STATE(5736), 1, - sym__val_number_decimal, - STATE(6109), 1, - sym_val_variable, - STATE(6224), 1, - sym_unquoted, - STATE(7802), 1, - sym_val_bool, - STATE(7808), 1, - sym__unquoted_anonymous_prefix, - STATE(8160), 1, - sym__val_range, - ACTIONS(3987), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5809), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5811), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2671), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2673), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [123465] = 5, - ACTIONS(247), 1, + [123864] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6424), 1, - aux_sym__immediate_decimal_token2, - STATE(3420), 1, + STATE(3428), 1, sym_comment, - ACTIONS(1573), 9, + ACTIONS(1760), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -341253,7 +479681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 28, + ACTIONS(1762), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -341282,31 +479710,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123516] = 8, - ACTIONS(247), 1, + [123912] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_DOT, - STATE(3421), 1, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token2, + STATE(3429), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, - sym_path, - STATE(3629), 1, - sym_cell_path, - ACTIONS(961), 7, + ACTIONS(1820), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(963), 26, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -341319,6 +479742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -341330,18 +479754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123572] = 6, + sym_duration_unit, + [123962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6485), 1, - anon_sym_RBRACK, - ACTIONS(6489), 1, + ACTIONS(2617), 1, sym__entry_separator, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(3422), 1, + STATE(3430), 1, sym_comment, - ACTIONS(6487), 34, + ACTIONS(2615), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341376,12 +479799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [123624] = 4, - ACTIONS(247), 1, + [124010] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3423), 1, + STATE(3431), 1, sym_comment, - ACTIONS(1585), 9, + ACTIONS(1866), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -341391,7 +479814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1587), 28, + ACTIONS(1868), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -341420,104 +479843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123672] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123720] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_DOT, - STATE(3425), 1, - sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, - sym_path, - STATE(3620), 1, - sym_cell_path, - ACTIONS(1747), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1749), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123776] = 4, - ACTIONS(247), 1, + [124058] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3426), 1, + STATE(3432), 1, sym_comment, - ACTIONS(2363), 9, + ACTIONS(2555), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -341527,7 +479858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 28, + ACTIONS(2557), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341556,20 +479887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [123824] = 8, - ACTIONS(247), 1, + [124106] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6483), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3427), 1, + STATE(3433), 1, sym_comment, - STATE(3476), 1, + STATE(3465), 1, aux_sym_cell_path_repeat1, - STATE(3576), 1, + STATE(3585), 1, sym_path, - STATE(3628), 1, + STATE(3631), 1, sym_cell_path, - ACTIONS(1733), 7, + ACTIONS(1886), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -341577,7 +479908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1737), 26, + ACTIONS(1888), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -341604,56 +479935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123880] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3428), 1, - sym_comment, - ACTIONS(1585), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123928] = 4, - ACTIONS(247), 1, + [124162] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3429), 1, + STATE(3434), 1, sym_comment, - ACTIONS(2436), 9, + ACTIONS(2639), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -341663,7 +479950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2438), 28, + ACTIONS(2641), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341692,64 +479979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [123976] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(6491), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(3430), 1, - sym_comment, - ACTIONS(6487), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [124028] = 6, - ACTIONS(247), 1, + [124210] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6493), 1, - anon_sym_DOT, - STATE(2080), 1, - sym_path, - STATE(3431), 2, + STATE(3435), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 9, - anon_sym_DOT_DOT2, + ACTIONS(2575), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341758,8 +479994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 25, - ts_builtin_sym_end, + ACTIONS(2577), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341771,11 +480006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341784,118 +480023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124080] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(6496), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(3432), 1, - sym_comment, - ACTIONS(6487), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [124132] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3433), 1, - sym_comment, - ACTIONS(1761), 9, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1763), 28, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124180] = 11, - ACTIONS(247), 1, + [124258] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3434), 1, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(3190), 1, + sym_cell_path, + STATE(3436), 1, sym_comment, - STATE(3976), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3856), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 8, + ACTIONS(1473), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341904,8 +480045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1659), 20, - ts_builtin_sym_end, + ACTIONS(1475), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341917,6 +480057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341925,146 +480071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124242] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2462), 1, - sym__entry_separator, - STATE(3435), 1, - sym_comment, - ACTIONS(2460), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [124290] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token2, - STATE(3436), 1, - sym_comment, - ACTIONS(1681), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124340] = 5, - ACTIONS(247), 1, + [124314] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token2, STATE(3437), 1, sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124390] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3438), 1, - sym_comment, - ACTIONS(2498), 9, + ACTIONS(2177), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342074,7 +480086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2500), 28, + ACTIONS(2183), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342103,12 +480115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124438] = 4, - ACTIONS(247), 1, + [124362] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2514), 9, + ACTIONS(2583), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342118,7 +480130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2516), 28, + ACTIONS(2585), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342147,28 +480159,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124486] = 11, - ACTIONS(247), 1, + [124410] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6526), 1, + anon_sym_RBRACK, + ACTIONS(6530), 1, + sym__entry_separator, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(3439), 1, + sym_comment, + ACTIONS(6528), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124462] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, STATE(3440), 1, sym_comment, - STATE(3988), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3756), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1543), 8, + ACTIONS(2185), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342177,8 +480220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1557), 20, - ts_builtin_sym_end, + ACTIONS(2191), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342190,6 +480232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342198,12 +480249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124548] = 4, - ACTIONS(247), 1, + [124510] = 8, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, STATE(3441), 1, sym_comment, - ACTIONS(1681), 9, + STATE(3465), 1, + aux_sym_cell_path_repeat1, + STATE(3585), 1, + sym_path, + STATE(3626), 1, + sym_cell_path, + ACTIONS(1473), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -342211,9 +480270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 28, + ACTIONS(1475), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -342229,7 +480286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -342241,58 +480297,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124596] = 4, - ACTIONS(247), 1, + [124566] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(6532), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, STATE(3442), 1, sym_comment, - ACTIONS(1681), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124644] = 4, - ACTIONS(247), 1, + ACTIONS(6528), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124618] = 11, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6365), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6367), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6404), 1, + anon_sym_DOLLAR, STATE(3443), 1, sym_comment, - ACTIONS(2426), 9, - anon_sym_DASH2, + STATE(3984), 1, + sym__immediate_decimal, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3759), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1730), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342301,7 +480373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2428), 28, + ACTIONS(1742), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342313,15 +480386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342330,12 +480394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124692] = 4, - ACTIONS(247), 1, + [124680] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3444), 1, sym_comment, - ACTIONS(2351), 9, + ACTIONS(2587), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342345,7 +480409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2353), 28, + ACTIONS(2589), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342374,12 +480438,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124740] = 4, - ACTIONS(247), 1, + [124728] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3445), 1, sym_comment, - ACTIONS(2157), 9, + ACTIONS(1768), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124776] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(6534), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(3446), 1, + sym_comment, + ACTIONS(6528), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124828] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(6536), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(3447), 1, + sym_comment, + ACTIONS(6528), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124880] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3448), 1, + sym_comment, + ACTIONS(2484), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342389,7 +480589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2163), 28, + ACTIONS(2486), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342418,12 +480618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124788] = 4, - ACTIONS(247), 1, + [124928] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3449), 1, sym_comment, - ACTIONS(2383), 9, + ACTIONS(2516), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342433,7 +480633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 28, + ACTIONS(2518), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342462,23 +480662,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124836] = 4, - ACTIONS(247), 1, + [124976] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3447), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3450), 1, sym_comment, - ACTIONS(1761), 8, + STATE(3465), 1, + aux_sym_cell_path_repeat1, + STATE(3585), 1, + sym_path, + STATE(3632), 1, + sym_cell_path, + ACTIONS(1880), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1763), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1884), 26, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -342493,7 +480699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -342505,13 +480710,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [125032] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4907), 1, + anon_sym_DOT_DOT2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(6538), 1, + sym_filesize_unit, + ACTIONS(6540), 1, sym_duration_unit, - [124884] = 4, - ACTIONS(247), 1, + STATE(3451), 1, + sym_comment, + STATE(7710), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125094] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3448), 1, + STATE(3452), 1, sym_comment, - ACTIONS(2355), 9, + ACTIONS(2520), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342521,7 +480776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 28, + ACTIONS(2522), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342550,12 +480805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124932] = 4, - ACTIONS(247), 1, + [125142] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3449), 1, + STATE(3453), 1, sym_comment, - ACTIONS(2122), 9, + ACTIONS(2197), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342565,7 +480820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2128), 28, + ACTIONS(2203), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342594,12 +480849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [124980] = 4, - ACTIONS(247), 1, + [125190] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3450), 1, + STATE(3454), 1, sym_comment, - ACTIONS(2130), 9, + ACTIONS(2524), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342609,7 +480864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 28, + ACTIONS(2526), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342638,12 +480893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125028] = 4, - ACTIONS(247), 1, + [125238] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3451), 1, + STATE(3455), 1, sym_comment, - ACTIONS(2146), 9, + ACTIONS(2543), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342653,7 +480908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 28, + ACTIONS(2545), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342682,14 +480937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125076] = 4, - ACTIONS(247), 1, + [125286] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3452), 1, + STATE(3456), 1, sym_comment, - ACTIONS(1573), 9, + ACTIONS(1760), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -342697,8 +480951,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1575), 28, - anon_sym_DASH_DASH, + ACTIONS(1762), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -342726,13 +480981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [125124] = 4, - ACTIONS(247), 1, + [125334] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3453), 1, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6365), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6367), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3457), 1, sym_comment, - ACTIONS(2359), 9, - anon_sym_DASH2, + STATE(3979), 1, + sym__immediate_decimal, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3818), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342741,7 +481011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 28, + ACTIONS(1726), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342753,15 +481024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342770,58 +481032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125172] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(6500), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(3454), 1, - sym_comment, - ACTIONS(6487), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [125224] = 4, - ACTIONS(247), 1, + [125396] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3458), 1, sym_comment, - ACTIONS(2422), 9, + ACTIONS(2228), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -342831,7 +481047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2424), 28, + ACTIONS(2234), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342860,20 +481076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125272] = 8, - ACTIONS(247), 1, + [125444] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(3196), 1, - sym_cell_path, - STATE(3456), 1, + STATE(3459), 1, sym_comment, - ACTIONS(961), 8, + ACTIONS(2579), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342882,7 +481091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 25, + ACTIONS(2581), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342895,8 +481104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342908,63 +481120,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125328] = 4, - ACTIONS(247), 1, + [125492] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3457), 1, + STATE(3460), 1, sym_comment, - ACTIONS(2494), 9, + ACTIONS(1768), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1770), 28, anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2496), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125376] = 7, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [125539] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6452), 1, + ACTIONS(5239), 1, anon_sym_DOT, - STATE(2080), 1, - sym_path, - STATE(3431), 1, + STATE(1451), 1, + sym_cell_path, + STATE(2086), 1, aux_sym_cell_path_repeat1, - STATE(3458), 1, + STATE(2306), 1, + sym_path, + STATE(3461), 1, sym_comment, - ACTIONS(967), 9, - anon_sym_DOT_DOT2, + ACTIONS(1473), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342973,7 +481185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 25, + ACTIONS(1475), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -342986,11 +481198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342999,33 +481210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [125430] = 11, - ACTIONS(247), 1, + [125594] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4858), 1, - anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(6502), 1, - sym_filesize_unit, - ACTIONS(6504), 1, - sym_duration_unit, - STATE(3459), 1, + STATE(3462), 1, sym_comment, - STATE(7707), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + ACTIONS(1820), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1822), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -343041,6 +481240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -343050,62 +481250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125492] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6506), 1, - anon_sym_DOT, - STATE(3460), 1, - sym_comment, - STATE(3547), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3674), 1, - sym_cell_path, - ACTIONS(2038), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2040), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125547] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [125641] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6508), 1, + ACTIONS(6542), 1, sym__newline, - STATE(3461), 2, + STATE(3463), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1296), 34, + ACTIONS(1233), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343140,20 +481296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [125594] = 8, - ACTIONS(247), 1, + [125688] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3462), 1, + STATE(3464), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3663), 1, + STATE(3690), 1, sym_cell_path, - ACTIONS(1859), 7, + ACTIONS(1998), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343161,7 +481317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1861), 25, + ACTIONS(2000), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343187,12 +481343,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125649] = 4, - ACTIONS(247), 1, + [125743] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3463), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3465), 1, + sym_comment, + STATE(3470), 1, + aux_sym_cell_path_repeat1, + STATE(3585), 1, + sym_path, + ACTIONS(1479), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1481), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125796] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3466), 1, sym_comment, - ACTIONS(1761), 8, + ACTIONS(1866), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -343201,7 +481403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1763), 28, + ACTIONS(1868), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -343230,20 +481432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [125696] = 8, - ACTIONS(247), 1, + [125843] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3464), 1, + STATE(3467), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3643), 1, + STATE(3662), 1, sym_cell_path, - ACTIONS(1867), 7, + ACTIONS(2030), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343251,7 +481453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1869), 25, + ACTIONS(2032), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343277,20 +481479,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125751] = 8, - ACTIONS(247), 1, + [125898] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3465), 1, + STATE(3468), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3710), 1, + STATE(3725), 1, sym_cell_path, - ACTIONS(1847), 7, + ACTIONS(1990), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343298,7 +481500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1851), 25, + ACTIONS(1992), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343324,20 +481526,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125806] = 8, - ACTIONS(247), 1, + [125953] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3466), 1, + STATE(3469), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3642), 1, + STATE(3651), 1, sym_cell_path, - ACTIONS(1871), 7, + ACTIONS(2010), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343345,7 +481547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1873), 25, + ACTIONS(2012), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343371,20 +481573,152 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125861] = 8, - ACTIONS(247), 1, + [126008] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6547), 1, anon_sym_DOT, - STATE(3467), 1, + STATE(3585), 1, + sym_path, + STATE(3470), 2, sym_comment, - STATE(3547), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1485), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126059] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6550), 1, + anon_sym_LBRACK2, + STATE(3471), 1, + sym_comment, + ACTIONS(2423), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2427), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126108] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3472), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1762), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126155] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6545), 1, + anon_sym_DOT, + STATE(3473), 1, + sym_comment, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3648), 1, + STATE(3663), 1, sym_cell_path, - ACTIONS(1879), 7, + ACTIONS(2034), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343392,7 +481726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1881), 25, + ACTIONS(2036), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343418,20 +481752,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125916] = 8, - ACTIONS(247), 1, + [126210] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3468), 1, + STATE(3474), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3711), 1, + STATE(3664), 1, sym_cell_path, - ACTIONS(961), 7, + ACTIONS(2171), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343439,7 +481773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(963), 25, + ACTIONS(2173), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343465,65 +481799,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125971] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6511), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6513), 1, - aux_sym__immediate_decimal_token2, - STATE(3469), 1, - sym_comment, - ACTIONS(1739), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1741), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126022] = 8, - ACTIONS(247), 1, + [126265] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3470), 1, + STATE(3475), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3649), 1, + STATE(3658), 1, sym_cell_path, - ACTIONS(1883), 7, + ACTIONS(2022), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343531,7 +481820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1885), 25, + ACTIONS(2024), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343557,20 +481846,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126077] = 8, - ACTIONS(247), 1, + [126320] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + STATE(3476), 1, + sym_comment, + ACTIONS(5046), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5044), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126367] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3471), 1, + STATE(3477), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3691), 1, + STATE(3666), 1, sym_cell_path, - ACTIONS(1863), 7, + ACTIONS(2042), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343578,7 +481910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1865), 25, + ACTIONS(2044), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343604,20 +481936,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126132] = 8, - ACTIONS(247), 1, + [126422] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3472), 1, + STATE(3478), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3650), 1, + STATE(3669), 1, sym_cell_path, - ACTIONS(1887), 7, + ACTIONS(2046), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343625,7 +481957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1889), 25, + ACTIONS(2048), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343651,20 +481983,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126187] = 8, - ACTIONS(247), 1, + [126477] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6530), 1, + sym__entry_separator, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(3479), 1, + sym_comment, + ACTIONS(6528), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126526] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3473), 1, + STATE(3480), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3652), 1, + STATE(3670), 1, sym_cell_path, - ACTIONS(1891), 7, + ACTIONS(2050), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343672,7 +482048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1893), 25, + ACTIONS(2052), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343698,20 +482074,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126242] = 8, - ACTIONS(247), 1, + [126581] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3474), 1, + STATE(3481), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3653), 1, + STATE(3644), 1, sym_cell_path, - ACTIONS(1895), 7, + ACTIONS(2006), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343719,7 +482095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1897), 25, + ACTIONS(2008), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343745,19 +482121,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126297] = 4, - ACTIONS(247), 1, + [126636] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3475), 1, + STATE(3482), 1, sym_comment, - ACTIONS(5054), 6, + ACTIONS(5034), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5052), 30, + ACTIONS(5032), 30, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343788,110 +482164,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126344] = 7, - ACTIONS(247), 1, + [126683] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_DOT, - STATE(3476), 1, + ACTIONS(6552), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6554), 1, + aux_sym__immediate_decimal_token2, + STATE(3483), 1, sym_comment, - STATE(3484), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, - sym_path, - ACTIONS(967), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1890), 9, anon_sym_DOT_DOT2, - ACTIONS(969), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1892), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126397] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126734] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_LBRACK2, - STATE(3477), 1, + ACTIONS(6556), 1, + anon_sym_DOT, + ACTIONS(6558), 1, + aux_sym__immediate_decimal_token2, + STATE(3484), 1, sym_comment, - ACTIONS(2322), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2326), 29, + ACTIONS(1872), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1874), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126446] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126785] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6545), 1, + anon_sym_DOT, + STATE(3485), 1, + sym_comment, + STATE(3517), 1, + aux_sym_cell_path_repeat1, + STATE(3621), 1, + sym_path, + STATE(3660), 1, + sym_cell_path, + ACTIONS(2026), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2028), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [126840] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3478), 1, + STATE(3486), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3654), 1, + STATE(3671), 1, sym_cell_path, - ACTIONS(1911), 7, + ACTIONS(2054), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343899,7 +482322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1913), 25, + ACTIONS(2056), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343925,20 +482348,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126501] = 8, - ACTIONS(247), 1, + [126895] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3479), 1, + STATE(3487), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3655), 1, + STATE(3659), 1, sym_cell_path, - ACTIONS(1915), 7, + ACTIONS(1473), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343946,7 +482369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1917), 25, + ACTIONS(1475), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -343972,20 +482395,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126556] = 8, - ACTIONS(247), 1, + [126950] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3480), 1, + STATE(3488), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3658), 1, + STATE(3657), 1, sym_cell_path, - ACTIONS(1919), 7, + ACTIONS(2018), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343993,7 +482416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1921), 25, + ACTIONS(2020), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344019,20 +482442,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126611] = 8, - ACTIONS(247), 1, + [127005] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3481), 1, + STATE(3489), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3659), 1, + STATE(3656), 1, sym_cell_path, - ACTIONS(1927), 7, + ACTIONS(2014), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344040,7 +482463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1929), 25, + ACTIONS(2016), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344066,196 +482489,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126666] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3482), 1, - sym_comment, - ACTIONS(1573), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1575), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126713] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6517), 1, - anon_sym_DOT, - ACTIONS(6519), 1, - aux_sym__immediate_decimal_token2, - STATE(3483), 1, - sym_comment, - ACTIONS(1765), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1767), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126764] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6521), 1, - anon_sym_DOT, - STATE(3576), 1, - sym_path, - STATE(3484), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(973), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126815] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3485), 1, - sym_comment, - ACTIONS(1585), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126862] = 8, - ACTIONS(247), 1, + [127060] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3486), 1, + STATE(3490), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3660), 1, + STATE(3728), 1, sym_cell_path, - ACTIONS(1942), 7, + ACTIONS(1994), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344263,7 +482510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1944), 25, + ACTIONS(1996), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344289,20 +482536,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126917] = 8, - ACTIONS(247), 1, + [127115] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3487), 1, + STATE(3491), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3661), 1, + STATE(3672), 1, sym_cell_path, - ACTIONS(2026), 7, + ACTIONS(2058), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344310,7 +482557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2028), 25, + ACTIONS(2060), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344336,20 +482583,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126972] = 8, - ACTIONS(247), 1, + [127170] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3488), 1, + STATE(3492), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3662), 1, + STATE(3673), 1, sym_cell_path, - ACTIONS(2030), 7, + ACTIONS(2062), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344357,7 +482604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2032), 25, + ACTIONS(2064), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344383,63 +482630,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(5064), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5062), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127074] = 8, - ACTIONS(247), 1, + [127225] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3490), 1, + STATE(3493), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3682), 1, + STATE(3655), 1, sym_cell_path, - ACTIONS(1907), 7, + ACTIONS(1972), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344447,7 +482651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1909), 25, + ACTIONS(1976), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344473,20 +482677,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127129] = 8, - ACTIONS(247), 1, + [127280] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3491), 1, + STATE(3494), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3666), 1, + STATE(3677), 1, sym_cell_path, - ACTIONS(2034), 7, + ACTIONS(2066), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344494,7 +482698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2036), 25, + ACTIONS(2068), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344520,67 +482724,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127184] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(1463), 1, - sym_cell_path, - STATE(2060), 1, - aux_sym_cell_path_repeat1, - STATE(2251), 1, - sym_path, - STATE(3492), 1, - sym_comment, - ACTIONS(961), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(963), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127239] = 8, - ACTIONS(247), 1, + [127335] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3493), 1, + STATE(3495), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3677), 1, + STATE(3678), 1, sym_cell_path, - ACTIONS(1931), 7, + ACTIONS(2070), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344588,7 +482745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1933), 25, + ACTIONS(2072), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344614,63 +482771,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127294] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3494), 1, - sym_comment, - ACTIONS(1681), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1683), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [127341] = 8, - ACTIONS(247), 1, + [127390] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6545), 1, anon_sym_DOT, - STATE(3495), 1, + STATE(3496), 1, sym_comment, - STATE(3547), 1, + STATE(3517), 1, aux_sym_cell_path_repeat1, STATE(3621), 1, sym_path, - STATE(3680), 1, + STATE(3665), 1, sym_cell_path, - ACTIONS(1899), 7, + ACTIONS(2038), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344678,7 +482792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1901), 25, + ACTIONS(2040), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344704,524 +482818,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127396] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(3496), 1, - sym_comment, - ACTIONS(6487), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [127445] = 4, - ACTIONS(247), 1, + [127445] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6560), 1, + anon_sym_DOT_DOT2, STATE(3497), 1, sym_comment, - ACTIONS(2472), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2474), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127491] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3498), 1, - sym_comment, - ACTIONS(2452), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2454), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127537] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3499), 1, - sym_comment, - ACTIONS(2406), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2408), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127583] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3500), 1, - sym_comment, - ACTIONS(1907), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1909), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127629] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3501), 1, - sym_comment, - ACTIONS(2456), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2458), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127675] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - sym_comment, - STATE(3511), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - ACTIONS(967), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(969), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [127727] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3503), 1, - sym_comment, - ACTIONS(1942), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1944), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127773] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3504), 1, - sym_comment, - ACTIONS(2490), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2492), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127819] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3505), 1, - sym_comment, - ACTIONS(2468), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2470), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127865] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3506), 1, - sym_comment, - ACTIONS(2034), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2036), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127911] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3507), 1, - sym_comment, - ACTIONS(2398), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2400), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127957] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token2, - STATE(3508), 1, - sym_comment, - ACTIONS(1785), 9, - anon_sym_DOT_DOT2, + ACTIONS(6562), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2177), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345230,8 +482837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1787), 25, - ts_builtin_sym_end, + ACTIONS(2183), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345243,11 +482849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -345256,189 +482862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [128005] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3509), 1, - sym_comment, - ACTIONS(2367), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2369), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [128051] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3510), 1, - sym_comment, - ACTIONS(1026), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1028), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [128097] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6528), 1, - anon_sym_DOT, - STATE(3607), 1, - sym_path, - STATE(3511), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(973), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [128147] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3512), 1, - sym_comment, - ACTIONS(2410), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2412), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [128193] = 4, - ACTIONS(247), 1, + [127495] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3498), 1, sym_comment, - ACTIONS(2440), 6, + ACTIONS(2609), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2442), 29, + ACTIONS(2611), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345468,19 +482904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128239] = 4, - ACTIONS(247), 1, + [127541] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3514), 1, + STATE(3499), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(2593), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2480), 29, + ACTIONS(2595), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345510,19 +482946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128285] = 4, - ACTIONS(247), 1, + [127587] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3500), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2539), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2349), 29, + ACTIONS(2541), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345552,19 +482988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128331] = 4, - ACTIONS(247), 1, + [127633] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3516), 1, + STATE(3501), 1, sym_comment, - ACTIONS(2390), 6, + ACTIONS(2058), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2392), 29, + ACTIONS(2060), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345594,19 +483030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128377] = 4, - ACTIONS(247), 1, + [127679] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3502), 1, sym_comment, - ACTIONS(2402), 6, + ACTIONS(2006), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2404), 29, + ACTIONS(2008), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345636,19 +483072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128423] = 4, - ACTIONS(247), 1, + [127725] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3503), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(2066), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2466), 29, + ACTIONS(2068), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345678,27 +483114,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128469] = 4, - ACTIONS(247), 1, + [127771] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3519), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, sym_comment, - ACTIONS(2379), 6, + STATE(3507), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, + sym_path, + ACTIONS(1479), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2381), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1481), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345720,19 +483157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128515] = 4, - ACTIONS(247), 1, + aux_sym_record_entry_token1, + sym__table_head_separator, + [127823] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3505), 1, sym_comment, - ACTIONS(1887), 6, + ACTIONS(2601), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1889), 29, + ACTIONS(2603), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345762,19 +483201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128561] = 4, - ACTIONS(247), 1, + [127869] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3506), 1, sym_comment, - ACTIONS(2444), 6, + ACTIONS(2500), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2446), 29, + ACTIONS(2502), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -345804,67 +483243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128607] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6531), 1, - anon_sym_DOT_DOT2, - STATE(3522), 1, - sym_comment, - ACTIONS(6533), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2163), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128657] = 5, - ACTIONS(247), 1, + [127915] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_QMARK2, - STATE(3523), 1, + ACTIONS(6566), 1, + anon_sym_DOT, + STATE(3630), 1, + sym_path, + STATE(3507), 2, sym_comment, - ACTIONS(978), 8, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(980), 26, + ACTIONS(1485), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345889,116 +483285,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128705] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6537), 1, - anon_sym_DOT_DOT2, - STATE(3524), 1, - sym_comment, - ACTIONS(6539), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2128), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128755] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6541), 1, - anon_sym_DOT_DOT2, - STATE(3525), 1, - sym_comment, - ACTIONS(6543), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2136), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128805] = 5, - ACTIONS(247), 1, + aux_sym_record_entry_token1, + sym__table_head_separator, + [127965] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6545), 1, - anon_sym_QMARK2, - STATE(3526), 1, + STATE(3508), 1, sym_comment, - ACTIONS(984), 8, + ACTIONS(2547), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(986), 26, + ACTIONS(2549), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346020,21 +483329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128853] = 4, - ACTIONS(247), 1, + [128011] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3509), 1, sym_comment, - ACTIONS(2482), 6, + ACTIONS(2551), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2484), 29, + ACTIONS(2553), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346064,63 +483371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128899] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6547), 1, - anon_sym_DOT_DOT2, - STATE(3528), 1, - sym_comment, - ACTIONS(6549), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2152), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128949] = 4, - ACTIONS(247), 1, + [128057] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3510), 1, sym_comment, - ACTIONS(2418), 6, + ACTIONS(2070), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2420), 29, + ACTIONS(2072), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346150,19 +483413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128995] = 4, - ACTIONS(247), 1, + [128103] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3530), 1, + STATE(3511), 1, sym_comment, - ACTIONS(1707), 6, + ACTIONS(2559), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 29, + ACTIONS(2561), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346192,27 +483455,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129041] = 4, - ACTIONS(247), 1, + [128149] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3531), 1, + ACTIONS(6569), 1, + anon_sym_QMARK2, + STATE(3512), 1, sym_comment, - ACTIONS(1915), 6, + ACTIONS(1500), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1917), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1502), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346234,19 +483496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129087] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128197] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3513), 1, sym_comment, - ACTIONS(1899), 6, + ACTIONS(2563), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1901), 29, + ACTIONS(2565), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346276,27 +483540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129133] = 4, - ACTIONS(247), 1, + [128243] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3533), 1, + ACTIONS(6571), 1, + anon_sym_QMARK2, + STATE(3514), 1, sym_comment, - ACTIONS(1863), 6, + ACTIONS(1490), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1865), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1492), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346318,19 +483581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129179] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128291] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3534), 1, + STATE(3515), 1, sym_comment, - ACTIONS(2414), 6, + ACTIONS(2472), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2416), 29, + ACTIONS(2474), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346360,19 +483625,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129225] = 4, - ACTIONS(247), 1, + [128337] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6573), 1, + anon_sym_DOT_DOT2, + STATE(3516), 1, + sym_comment, + ACTIONS(6575), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2185), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2191), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128387] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6545), 1, + anon_sym_DOT, + STATE(3517), 1, + sym_comment, + STATE(3529), 1, + aux_sym_cell_path_repeat1, + STATE(3621), 1, + sym_path, + ACTIONS(1479), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1481), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128439] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3535), 1, + STATE(3518), 1, sym_comment, - ACTIONS(1847), 6, + ACTIONS(2504), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1851), 29, + ACTIONS(2506), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346402,19 +483756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129271] = 4, - ACTIONS(247), 1, + [128485] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3536), 1, + STATE(3519), 1, sym_comment, - ACTIONS(2430), 6, + ACTIONS(2635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2432), 29, + ACTIONS(2637), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346444,63 +483798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129317] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_DOT, - STATE(3621), 1, - sym_path, - STATE(3537), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(973), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129367] = 4, - ACTIONS(247), 1, + [128531] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3538), 1, + STATE(3520), 1, sym_comment, - ACTIONS(2510), 6, + ACTIONS(2597), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2512), 29, + ACTIONS(2599), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346530,19 +483840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129413] = 4, - ACTIONS(247), 1, + [128577] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3539), 1, + STATE(3521), 1, sym_comment, - ACTIONS(2448), 6, + ACTIONS(2054), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2450), 29, + ACTIONS(2056), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346572,60 +483882,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129459] = 4, - ACTIONS(247), 1, + [128623] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3540), 1, + ACTIONS(6577), 1, + anon_sym_DOT_DOT2, + STATE(3522), 1, sym_comment, - ACTIONS(2464), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2466), 29, + ACTIONS(6579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2234), 24, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129505] = 7, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128673] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6554), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6556), 1, + ACTIONS(6583), 1, anon_sym_EQ2, - ACTIONS(6558), 1, + ACTIONS(6585), 1, sym_short_flag_identifier, - STATE(3541), 1, + STATE(3523), 1, sym_comment, - ACTIONS(4974), 13, + ACTIONS(5020), 13, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LBRACE, @@ -346639,7 +483951,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4976), 19, + ACTIONS(5022), 19, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, @@ -346659,19 +483971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [129557] = 4, - ACTIONS(247), 1, + [128725] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3542), 1, + STATE(3524), 1, sym_comment, - ACTIONS(2486), 6, + ACTIONS(1788), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2488), 29, + ACTIONS(1800), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346701,14 +484013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129603] = 5, - ACTIONS(247), 1, + [128771] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6519), 1, + ACTIONS(6587), 1, aux_sym__immediate_decimal_token2, - STATE(3543), 1, + STATE(3525), 1, sym_comment, - ACTIONS(1765), 9, + ACTIONS(1919), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -346718,7 +484030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1767), 25, + ACTIONS(1921), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346744,31 +484056,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129651] = 8, - ACTIONS(247), 1, + [128819] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DOT_DOT2, - ACTIONS(6564), 1, - sym_filesize_unit, - ACTIONS(6566), 1, - sym_duration_unit, - STATE(3544), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6562), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 6, + ACTIONS(2468), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, + ACTIONS(2470), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346790,19 +484098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129705] = 4, - ACTIONS(247), 1, + [128865] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3545), 1, + STATE(3527), 1, sym_comment, - ACTIONS(2343), 6, + ACTIONS(2468), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2345), 29, + ACTIONS(2470), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -346832,59 +484140,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129751] = 3, - ACTIONS(247), 1, + [128911] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3546), 1, + STATE(3528), 1, sym_comment, - ACTIONS(1288), 35, + ACTIONS(2567), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2569), 29, sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [129795] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128957] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6589), 1, anon_sym_DOT, - STATE(3537), 1, - aux_sym_cell_path_repeat1, - STATE(3547), 1, - sym_comment, STATE(3621), 1, sym_path, - ACTIONS(967), 7, + STATE(3529), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -346892,7 +484200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(969), 25, + ACTIONS(1485), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -346918,31 +484226,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129847] = 8, - ACTIONS(247), 1, + [129007] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6162), 1, - sym_filesize_unit, - ACTIONS(6164), 1, - sym_duration_unit, - ACTIONS(6568), 1, - anon_sym_DOT_DOT2, - STATE(3548), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + ACTIONS(1538), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 25, + ACTIONS(1540), 29, sym__newline, - anon_sym_DASH2, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346964,19 +484268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129901] = 4, - ACTIONS(247), 1, + [129053] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3549), 1, + STATE(3531), 1, sym_comment, - ACTIONS(1927), 6, + ACTIONS(2488), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1929), 29, + ACTIONS(2490), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -347006,19 +484310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129947] = 4, - ACTIONS(247), 1, + [129099] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3550), 1, + STATE(3532), 1, sym_comment, - ACTIONS(2038), 6, + ACTIONS(2018), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2040), 29, + ACTIONS(2020), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -347048,30 +484352,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129993] = 8, - ACTIONS(247), 1, + [129145] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3506), 1, - sym_cell_path, - STATE(3551), 1, + STATE(3533), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1919), 6, + ACTIONS(2476), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1921), 24, + ACTIONS(2478), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347093,30 +484394,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130046] = 8, - ACTIONS(247), 1, + [129191] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3503), 1, - sym_cell_path, - STATE(3552), 1, + STATE(3534), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1911), 6, + ACTIONS(2480), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1913), 24, + ACTIONS(2482), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347138,55 +484436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130099] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6572), 1, - anon_sym_DOT_DOT2, - STATE(3553), 1, - sym_comment, - ACTIONS(6574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2128), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130148] = 4, - ACTIONS(247), 1, + [129237] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3554), 1, + ACTIONS(6558), 1, + aux_sym__immediate_decimal_token2, + STATE(3535), 1, sym_comment, - ACTIONS(1841), 9, + ACTIONS(1872), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -347196,7 +484453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1843), 25, + ACTIONS(1874), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347222,68 +484479,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130193] = 4, - ACTIONS(247), 1, + [129285] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3555), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1739), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1741), 25, - ts_builtin_sym_end, + ACTIONS(2508), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2510), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130238] = 8, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129331] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_cell_path, - STATE(3556), 1, + ACTIONS(6592), 1, + anon_sym_DOT_DOT2, + ACTIONS(6596), 1, + sym_filesize_unit, + ACTIONS(6598), 1, + sym_duration_unit, + STATE(3537), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1915), 6, + ACTIONS(6594), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1917), 24, + ACTIONS(1800), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347308,17 +484567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130291] = 6, - ACTIONS(247), 1, + [129385] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6576), 1, + ACTIONS(6600), 1, anon_sym_DOT_DOT2, - STATE(3557), 1, + STATE(3538), 1, sym_comment, - ACTIONS(6578), 2, + ACTIONS(6602), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 8, + ACTIONS(2197), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347327,8 +484586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 23, - ts_builtin_sym_end, + ACTIONS(2203), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347340,6 +484598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347351,30 +484611,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130340] = 8, - ACTIONS(247), 1, + [129435] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6162), 1, - sym_filesize_unit, - ACTIONS(6164), 1, - sym_duration_unit, - ACTIONS(6580), 1, - anon_sym_DOT_DOT2, - STATE(3558), 1, + STATE(3539), 1, sym_comment, - ACTIONS(6570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + ACTIONS(2512), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, - anon_sym_DASH2, + ACTIONS(2514), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347396,24 +484653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130393] = 5, - ACTIONS(247), 1, + [129481] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6582), 1, - anon_sym_QMARK2, - STATE(3559), 1, + STATE(3540), 1, sym_comment, - ACTIONS(978), 6, + ACTIONS(2034), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(980), 27, + ACTIONS(2036), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347435,27 +484695,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130440] = 5, - ACTIONS(247), 1, + [129527] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6584), 1, - anon_sym_QMARK2, - STATE(3560), 1, + STATE(3541), 1, sym_comment, - ACTIONS(984), 6, + ACTIONS(1994), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(986), 27, + ACTIONS(1996), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347477,69 +484737,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130487] = 6, - ACTIONS(247), 1, + [129573] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6586), 1, - anon_sym_DOT_DOT2, - STATE(3561), 1, + STATE(3542), 1, sym_comment, - ACTIONS(6588), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2152), 23, - ts_builtin_sym_end, + ACTIONS(2535), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2537), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130536] = 4, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129619] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3562), 1, + STATE(3543), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(2492), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(992), 28, + ACTIONS(2494), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347561,33 +484821,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130581] = 8, - ACTIONS(247), 1, + [129665] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3509), 1, - sym_cell_path, - STATE(3563), 1, + STATE(3544), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1927), 6, + ACTIONS(2496), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1929), 24, + ACTIONS(2498), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347609,23 +484863,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130634] = 4, - ACTIONS(247), 1, + [129711] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3564), 1, + STATE(3545), 1, + sym_comment, + ACTIONS(1244), 35, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [129755] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3546), 1, sym_comment, - ACTIONS(994), 6, + ACTIONS(2038), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(996), 28, + ACTIONS(2040), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347647,33 +484946,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130679] = 8, - ACTIONS(247), 1, + [129801] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3519), 1, - sym_cell_path, - STATE(3565), 1, + STATE(3547), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1942), 6, + ACTIONS(2042), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1944), 24, + ACTIONS(2044), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347695,30 +484988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130732] = 8, - ACTIONS(247), 1, + [129847] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3550), 1, - sym_cell_path, - STATE(3566), 1, + STATE(3548), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(2026), 6, + ACTIONS(2531), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2028), 24, + ACTIONS(2533), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347740,28 +485030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130785] = 8, - ACTIONS(247), 1, + [129893] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3532), 1, - sym_cell_path, - STATE(3567), 1, + ACTIONS(6198), 1, + sym_filesize_unit, + ACTIONS(6200), 1, + sym_duration_unit, + ACTIONS(6604), 1, + anon_sym_DOT_DOT2, + STATE(3549), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(2030), 6, + ACTIONS(6606), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2032), 24, - anon_sym_DASH_DASH, + ACTIONS(1800), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -347785,23 +485076,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130838] = 4, - ACTIONS(247), 1, + [129947] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3568), 1, + STATE(3550), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(2605), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1000), 28, + ACTIONS(2607), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347823,30 +485118,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [129993] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6608), 1, + anon_sym_QMARK2, + STATE(3551), 1, + sym_comment, + ACTIONS(1490), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130883] = 8, - ACTIONS(247), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1492), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130040] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3539), 1, - sym_cell_path, - STATE(3569), 1, + STATE(3552), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(2034), 6, + STATE(3631), 1, + sym_cell_path, + ACTIONS(1886), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2036), 24, + ACTIONS(1888), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347871,23 +485205,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130936] = 4, - ACTIONS(247), 1, + [130093] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + ACTIONS(6610), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6612), 1, + aux_sym__immediate_decimal_token2, + STATE(3553), 1, + sym_comment, + ACTIONS(1768), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1770), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [130142] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3554), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(1518), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1004), 28, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1520), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347909,16 +485287,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130187] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6614), 1, anon_sym_DOT, + ACTIONS(6616), 1, + aux_sym__immediate_decimal_token2, + STATE(3555), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, aux_sym_record_entry_token1, - sym__table_head_separator, - [130981] = 4, - ACTIONS(247), 1, + ACTIONS(1762), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [130236] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3571), 1, - sym_comment, - ACTIONS(1765), 9, + ACTIONS(6618), 1, anon_sym_DOT_DOT2, + STATE(3556), 1, + sym_comment, + ACTIONS(6620), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347927,7 +485351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1767), 25, + ACTIONS(2234), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347943,8 +485367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -347953,17 +485375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131026] = 6, - ACTIONS(247), 1, + [130285] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6590), 1, + ACTIONS(6622), 1, anon_sym_DOT_DOT2, - STATE(3572), 1, + STATE(3557), 1, sym_comment, - ACTIONS(6592), 2, + ACTIONS(6624), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 8, + ACTIONS(2177), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347972,7 +485394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2163), 23, + ACTIONS(2183), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347996,146 +485418,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131075] = 4, - ACTIONS(247), 1, + [130334] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3573), 1, + STATE(3558), 1, sym_comment, - ACTIONS(990), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(2219), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2221), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130379] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6564), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(992), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3532), 1, + sym_cell_path, + STATE(3559), 1, + sym_comment, + STATE(3630), 1, + sym_path, + ACTIONS(1972), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1976), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [131120] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130432] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3574), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3536), 1, + sym_cell_path, + STATE(3560), 1, sym_comment, - ACTIONS(994), 8, - anon_sym_DOLLAR, + STATE(3630), 1, + sym_path, + ACTIONS(2014), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(996), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2016), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [131165] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130485] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6596), 1, - aux_sym__immediate_decimal_token2, - STATE(3575), 1, + STATE(3561), 1, sym_comment, - ACTIONS(1585), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1587), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [131214] = 4, - ACTIONS(247), 1, + ACTIONS(1522), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1524), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130530] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3576), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3539), 1, + sym_cell_path, + STATE(3562), 1, sym_comment, - ACTIONS(1006), 8, + STATE(3630), 1, + sym_path, + ACTIONS(2018), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1008), 26, + ACTIONS(2020), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348160,29 +485635,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131259] = 8, - ACTIONS(247), 1, + [130583] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3577), 1, + STATE(3540), 1, + sym_cell_path, + STATE(3563), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - STATE(3620), 1, - sym_cell_path, - ACTIONS(1747), 6, + ACTIONS(2022), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1749), 24, + ACTIONS(2024), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348207,27 +485680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131312] = 8, - ACTIONS(247), 1, + [130636] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3578), 1, + STATE(3546), 1, + sym_cell_path, + STATE(3564), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - STATE(3628), 1, - sym_cell_path, - ACTIONS(1733), 6, + ACTIONS(2026), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1737), 24, + ACTIONS(2028), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348252,27 +485725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131365] = 8, - ACTIONS(247), 1, + [130689] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + STATE(3565), 1, + sym_comment, + ACTIONS(1514), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1516), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT, - STATE(3502), 1, + aux_sym_record_entry_token1, + sym__table_head_separator, + [130734] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3579), 1, + STATE(3547), 1, + sym_cell_path, + STATE(3566), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - STATE(3629), 1, - sym_cell_path, - ACTIONS(961), 6, + ACTIONS(2030), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(963), 24, + ACTIONS(2032), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348297,12 +485811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131418] = 4, - ACTIONS(247), 1, + [130787] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3580), 1, + STATE(3567), 1, sym_comment, - ACTIONS(1002), 8, + ACTIONS(1510), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348311,7 +485825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1004), 26, + ACTIONS(1512), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348338,62 +485852,70 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131463] = 4, - ACTIONS(247), 1, + [130832] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3581), 1, - sym_comment, - ACTIONS(1010), 8, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(6626), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1012), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + STATE(3568), 1, + sym_comment, + ACTIONS(6628), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2185), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2191), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131508] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130881] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3582), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3548), 1, + sym_cell_path, + STATE(3569), 1, sym_comment, - ACTIONS(1014), 8, + STATE(3630), 1, + sym_path, + ACTIONS(2034), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1016), 26, + ACTIONS(2036), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348418,29 +485940,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131553] = 8, - ACTIONS(247), 1, + [130934] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3498), 1, - sym_cell_path, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3583), 1, + STATE(3521), 1, + sym_cell_path, + STATE(3570), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(2038), 6, + ACTIONS(2171), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2040), 24, + ACTIONS(2173), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348465,27 +485985,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131606] = 8, - ACTIONS(247), 1, + [130987] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3500), 1, - sym_cell_path, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3584), 1, + STATE(3571), 1, sym_comment, - STATE(3607), 1, + STATE(3626), 1, + sym_cell_path, + STATE(3630), 1, sym_path, - ACTIONS(1931), 6, + ACTIONS(1473), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1933), 24, + ACTIONS(1475), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348510,28 +486030,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131659] = 8, - ACTIONS(247), 1, + [131040] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3505), 1, - sym_cell_path, - STATE(3585), 1, + ACTIONS(6198), 1, + sym_filesize_unit, + ACTIONS(6200), 1, + sym_duration_unit, + ACTIONS(6630), 1, + anon_sym_DOT_DOT2, + STATE(3572), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1899), 6, + ACTIONS(6606), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1901), 24, - anon_sym_DASH_DASH, + ACTIONS(1800), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -348555,27 +486075,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131712] = 8, - ACTIONS(247), 1, + [131093] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + STATE(3573), 1, + sym_comment, + ACTIONS(1506), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT, - STATE(3502), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1508), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131138] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3574), 1, + sym_comment, + ACTIONS(1919), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1921), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131183] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3527), 1, + STATE(3542), 1, sym_cell_path, - STATE(3586), 1, + STATE(3575), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1907), 6, + ACTIONS(2038), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1909), 24, + ACTIONS(2040), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348600,27 +486202,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131765] = 8, - ACTIONS(247), 1, + [131236] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3533), 1, + STATE(3500), 1, sym_cell_path, - STATE(3587), 1, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3576), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1859), 6, + ACTIONS(2042), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1861), 24, + ACTIONS(2044), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348645,70 +486247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131818] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6598), 1, - sym_long_flag_identifier, - ACTIONS(6600), 1, - anon_sym_EQ2, - STATE(3588), 1, - sym_comment, - ACTIONS(4968), 16, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4970), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [131867] = 8, - ACTIONS(247), 1, + [131289] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3535), 1, + STATE(3501), 1, sym_cell_path, - STATE(3589), 1, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3577), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1867), 6, + ACTIONS(2046), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1869), 24, + ACTIONS(2048), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348733,150 +486292,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131920] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3590), 1, - sym_comment, - ACTIONS(2118), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2120), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131965] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3591), 1, - sym_comment, - ACTIONS(2183), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2185), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132010] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3592), 1, - sym_comment, - ACTIONS(1785), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1787), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132055] = 8, - ACTIONS(247), 1, + [131342] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3501), 1, + STATE(3503), 1, sym_cell_path, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3593), 1, + STATE(3578), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1847), 6, + ACTIONS(2050), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1851), 24, + ACTIONS(2052), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348901,14 +486337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132108] = 5, - ACTIONS(247), 1, + [131395] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6602), 1, - anon_sym_QMARK2, - STATE(3594), 1, + STATE(3579), 1, sym_comment, - ACTIONS(978), 8, + ACTIONS(1514), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348917,53 +486351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(980), 25, + ACTIONS(1516), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132155] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6604), 1, anon_sym_QMARK2, - STATE(3595), 1, - sym_comment, - ACTIONS(984), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(986), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -348985,27 +486378,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132202] = 8, - ACTIONS(247), 1, + [131440] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3534), 1, + STATE(3508), 1, sym_cell_path, - STATE(3596), 1, + STATE(3580), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1863), 6, + ACTIONS(2054), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1865), 24, + ACTIONS(2056), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349030,27 +486423,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132255] = 8, - ACTIONS(247), 1, + [131493] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3549), 1, + STATE(3505), 1, sym_cell_path, - STATE(3597), 1, + STATE(3581), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1895), 6, + ACTIONS(1994), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1897), 24, + ACTIONS(1996), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349075,27 +486468,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132308] = 8, - ACTIONS(247), 1, + [131546] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3499), 1, - sym_cell_path, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3598), 1, + STATE(3541), 1, + sym_cell_path, + STATE(3582), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1871), 6, + ACTIONS(1990), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 24, + ACTIONS(1992), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349120,30 +486513,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132361] = 8, - ACTIONS(247), 1, + [131599] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6162), 1, - sym_filesize_unit, - ACTIONS(6164), 1, - sym_duration_unit, - ACTIONS(6606), 1, - anon_sym_DOT_DOT2, - STATE(3599), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3509), 1, + sym_cell_path, + STATE(3583), 1, sym_comment, - ACTIONS(6608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, + STATE(3630), 1, + sym_path, + ACTIONS(2058), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, - anon_sym_DASH2, + ACTIONS(2060), 24, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349165,27 +486558,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132414] = 8, - ACTIONS(247), 1, + [131652] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3520), 1, + STATE(3510), 1, sym_cell_path, - STATE(3600), 1, + STATE(3584), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1879), 6, + ACTIONS(2062), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1881), 24, + ACTIONS(2064), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349210,27 +486603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132467] = 8, - ACTIONS(247), 1, + [131705] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3545), 1, - sym_cell_path, - STATE(3601), 1, + STATE(3585), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1883), 6, + ACTIONS(1526), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1885), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1528), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349255,70 +486642,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132520] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6610), 1, - anon_sym_DOT, - ACTIONS(6612), 1, - aux_sym__immediate_decimal_token2, - STATE(3602), 1, - sym_comment, - ACTIONS(1573), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1575), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [132569] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131750] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3513), 1, + STATE(3511), 1, sym_cell_path, - STATE(3603), 1, + STATE(3586), 1, sym_comment, - STATE(3607), 1, + STATE(3630), 1, sym_path, - ACTIONS(1887), 6, + ACTIONS(2066), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1889), 24, + ACTIONS(2068), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349343,30 +486689,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132622] = 8, - ACTIONS(247), 1, + [131803] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3531), 1, - sym_cell_path, - STATE(3604), 1, + ACTIONS(6198), 1, + sym_filesize_unit, + ACTIONS(6200), 1, + sym_duration_unit, + ACTIONS(6632), 1, + anon_sym_DOT_DOT2, + STATE(3587), 1, sym_comment, - STATE(3607), 1, - sym_path, - ACTIONS(1891), 6, + ACTIONS(6634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1800), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131856] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3588), 1, + sym_comment, + ACTIONS(1510), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1893), 24, + ACTIONS(1512), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349388,12 +486772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132675] = 4, - ACTIONS(247), 1, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [131901] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3605), 1, + ACTIONS(6636), 1, + anon_sym_QMARK2, + STATE(3589), 1, sym_comment, - ACTIONS(998), 8, + ACTIONS(1500), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349402,12 +486791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1000), 26, + ACTIONS(1502), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -349429,12 +486817,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132720] = 4, - ACTIONS(247), 1, + [131948] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3606), 1, + STATE(3590), 1, sym_comment, - ACTIONS(1010), 8, + ACTIONS(1496), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349443,11 +486831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1012), 25, + ACTIONS(1498), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -349469,19 +486858,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132764] = 4, - ACTIONS(247), 1, + [131993] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3607), 1, + ACTIONS(6638), 1, + anon_sym_QMARK2, + STATE(3591), 1, sym_comment, - ACTIONS(1006), 6, + ACTIONS(1500), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1008), 27, + ACTIONS(1502), 27, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349509,259 +486900,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, aux_sym_record_entry_token1, sym__table_head_separator, - [132808] = 5, - ACTIONS(3), 1, + [132040] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6614), 1, - aux_sym__immediate_decimal_token2, - STATE(3608), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3513), 1, + sym_cell_path, + STATE(3592), 1, sym_comment, - ACTIONS(1681), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1683), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [132854] = 6, - ACTIONS(247), 1, + STATE(3630), 1, + sym_path, + ACTIONS(2070), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2072), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132093] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6519), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - anon_sym_DOT, - STATE(3609), 1, + ACTIONS(6640), 1, + anon_sym_QMARK2, + STATE(3593), 1, sym_comment, - ACTIONS(1765), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1767), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1490), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1492), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132902] = 4, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [132140] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3610), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3594), 1, sym_comment, - ACTIONS(1820), 9, + STATE(3630), 1, + sym_path, + STATE(3632), 1, + sym_cell_path, + ACTIONS(1880), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1828), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1884), 24, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132946] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132193] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3611), 1, + ACTIONS(6642), 1, + sym_long_flag_identifier, + ACTIONS(6644), 1, + anon_sym_EQ2, + STATE(3595), 1, sym_comment, - ACTIONS(2270), 10, + ACTIONS(4977), 16, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2268), 23, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - aux_sym_unquoted_token4, - [132990] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6618), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token2, - STATE(3612), 1, - sym_comment, - ACTIONS(1585), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1587), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [133038] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_EQ2, - STATE(3613), 1, - sym_comment, - ACTIONS(4998), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4996), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4979), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133084] = 4, - ACTIONS(247), 1, + [132242] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3614), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3502), 1, + sym_cell_path, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3596), 1, sym_comment, - ACTIONS(2230), 9, + STATE(3630), 1, + sym_path, + ACTIONS(1998), 6, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2000), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132295] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3597), 1, + sym_comment, + ACTIONS(1872), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349770,7 +487135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2232), 24, + ACTIONS(1874), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349782,11 +487148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349795,13 +487161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133128] = 4, - ACTIONS(247), 1, + [132340] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3615), 1, + ACTIONS(6646), 1, + anon_sym_DOT_DOT2, + STATE(3598), 1, sym_comment, - ACTIONS(1802), 9, - anon_sym_DASH2, + ACTIONS(6648), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2197), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349810,7 +487180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 24, + ACTIONS(2203), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349822,11 +487193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349835,13 +487204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133172] = 4, - ACTIONS(247), 1, + [132389] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3616), 1, + STATE(3599), 1, sym_comment, - ACTIONS(2258), 9, - anon_sym_DASH2, + ACTIONS(1968), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349850,7 +487219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2262), 24, + ACTIONS(1970), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349862,11 +487232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349875,60 +487245,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133216] = 5, - ACTIONS(247), 1, + [132434] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(3617), 1, + STATE(3600), 1, sym_comment, - ACTIONS(1707), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1719), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133262] = 4, - ACTIONS(247), 1, + ACTIONS(2215), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2217), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132479] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3618), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3518), 1, + sym_cell_path, + STATE(3601), 1, sym_comment, - ACTIONS(1010), 6, + STATE(3630), 1, + sym_path, + ACTIONS(2010), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1012), 27, + ACTIONS(2012), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349953,22 +487331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133306] = 4, - ACTIONS(247), 1, + [132532] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3619), 1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3519), 1, + sym_cell_path, + STATE(3602), 1, sym_comment, - ACTIONS(1014), 6, + STATE(3630), 1, + sym_path, + ACTIONS(2006), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1016), 27, + ACTIONS(2008), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -349993,26 +487376,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133350] = 4, - ACTIONS(247), 1, + [132585] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3620), 1, + STATE(3603), 1, + sym_comment, + ACTIONS(1890), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1892), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132630] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3604), 1, sym_comment, - ACTIONS(1733), 7, + ACTIONS(1496), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1737), 26, + ACTIONS(1498), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350034,69 +487455,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133394] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3621), 1, - sym_comment, - ACTIONS(1006), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1008), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133438] = 6, - ACTIONS(247), 1, + aux_sym_record_entry_token1, + sym__table_head_separator, + [132675] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6624), 1, - anon_sym_DOT_DOT2, - STATE(3622), 1, + STATE(3605), 1, sym_comment, - ACTIONS(6626), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 6, + ACTIONS(1506), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1028), 24, + ACTIONS(1508), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350118,70 +487496,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133486] = 6, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [132720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6628), 1, - anon_sym_DOT, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token2, - STATE(3623), 1, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(3606), 1, sym_comment, - ACTIONS(1573), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1575), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [133534] = 8, - ACTIONS(247), 1, + ACTIONS(1540), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1538), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [132766] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6624), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(5280), 1, + anon_sym_LBRACE, + ACTIONS(6650), 1, anon_sym_DOT_DOT2, - ACTIONS(6632), 1, - anon_sym_DASH2, - STATE(3624), 1, + STATE(3607), 1, sym_comment, - ACTIONS(5206), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6626), 2, + ACTIONS(6652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, + ACTIONS(5282), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5210), 22, + ACTIONS(5284), 23, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -350204,12 +487584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133586] = 4, - ACTIONS(247), 1, + [132818] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3625), 1, + STATE(3608), 1, sym_comment, - ACTIONS(2272), 9, + ACTIONS(2357), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -350219,7 +487599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2276), 24, + ACTIONS(2361), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350244,12 +487624,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133630] = 4, - ACTIONS(247), 1, + [132862] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3626), 1, + ACTIONS(6654), 1, + anon_sym_EQ2, + STATE(3609), 1, + sym_comment, + ACTIONS(5040), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5038), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132908] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3610), 1, sym_comment, - ACTIONS(5212), 9, + ACTIONS(2333), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -350259,7 +487680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 24, + ACTIONS(2335), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350284,23 +487705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133674] = 4, - ACTIONS(247), 1, + [132952] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3627), 1, + ACTIONS(6656), 1, + anon_sym_LBRACK2, + STATE(3611), 1, sym_comment, - ACTIONS(1014), 8, + ACTIONS(2423), 8, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1016), 25, + ACTIONS(2427), 24, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, @@ -350324,20 +487746,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133718] = 4, - ACTIONS(247), 1, + [132998] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3628), 1, + STATE(3612), 1, + sym_comment, + ACTIONS(1950), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1958), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133042] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6658), 1, + anon_sym_DOT_DOT2, + STATE(3613), 1, sym_comment, - ACTIONS(2052), 7, + ACTIONS(6660), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2054), 26, + ACTIONS(1540), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350362,23 +487828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133762] = 4, - ACTIONS(247), 1, + [133090] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3629), 1, + ACTIONS(6650), 1, + anon_sym_DOT_DOT2, + STATE(3614), 1, sym_comment, - ACTIONS(1044), 7, + ACTIONS(6652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1046), 26, - anon_sym_DASH_DASH, + ACTIONS(1540), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -350402,16 +487870,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133806] = 5, + [133138] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3615), 1, + sym_comment, + ACTIONS(1518), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1520), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2343), 1, aux_sym_unquoted_token4, - STATE(3630), 1, + STATE(3616), 1, sym_comment, - ACTIONS(1028), 10, + ACTIONS(2341), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350422,7 +487928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1026), 22, + ACTIONS(2337), 22, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350445,64 +487951,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [133852] = 6, - ACTIONS(247), 1, + [133228] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6635), 1, - anon_sym_DOT_DOT2, - STATE(3631), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3617), 1, sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1028), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(2349), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [133900] = 5, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2345), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [133274] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6639), 1, - anon_sym_EQ2, - STATE(3632), 1, + STATE(3618), 1, sym_comment, - ACTIONS(5058), 7, + ACTIONS(1522), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5056), 25, + ACTIONS(1524), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350528,14 +488032,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133946] = 5, + [133318] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(3633), 1, + STATE(3619), 1, sym_comment, - ACTIONS(2242), 10, + ACTIONS(2355), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350546,7 +488050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2238), 22, + ACTIONS(2353), 22, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350569,58 +488073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [133992] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5249), 1, - sym__newline, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(6635), 1, - anon_sym_DOT_DOT2, - STATE(3634), 1, - sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5254), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5256), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [134044] = 5, + [133364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6612), 1, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token2, - STATE(3635), 1, + STATE(3620), 1, sym_comment, - ACTIONS(1573), 8, + ACTIONS(1768), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -350628,8 +488090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1575), 24, + ACTIONS(1770), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350654,24 +488115,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134090] = 5, - ACTIONS(247), 1, + [133412] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6641), 1, - anon_sym_LBRACK2, - STATE(3636), 1, + STATE(3621), 1, sym_comment, - ACTIONS(2322), 8, - anon_sym_LBRACK, + ACTIONS(1526), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2326), 24, + ACTIONS(1528), 25, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, @@ -350695,94 +488155,258 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134136] = 5, - ACTIONS(3), 1, + [133456] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3637), 1, + STATE(3622), 1, sym_comment, - ACTIONS(2250), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5255), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5249), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2246), 22, - anon_sym_DOLLAR, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133500] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3623), 1, + sym_comment, + ACTIONS(1518), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [134182] = 5, - ACTIONS(3), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1520), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [133544] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3638), 1, + STATE(3624), 1, sym_comment, - ACTIONS(2256), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1522), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1524), 27, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2254), 22, - anon_sym_DOLLAR, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [133588] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6658), 1, + anon_sym_DOT_DOT2, + ACTIONS(6666), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [134228] = 4, - ACTIONS(247), 1, + STATE(3625), 1, + sym_comment, + ACTIONS(5249), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6660), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5253), 22, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133640] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3639), 1, + STATE(3626), 1, + sym_comment, + ACTIONS(1556), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1558), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133684] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3627), 1, + sym_comment, + ACTIONS(2369), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2373), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133728] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6669), 1, + anon_sym_EQ2, + STATE(3628), 1, sym_comment, - ACTIONS(5138), 7, + ACTIONS(5052), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350790,7 +488414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5136), 25, + ACTIONS(5050), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350816,30 +488440,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134271] = 4, - ACTIONS(247), 1, + [133774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3640), 1, + STATE(3629), 1, sym_comment, - ACTIONS(2347), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2349), 25, + ACTIONS(2409), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2407), 23, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -350849,96 +488475,179 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134314] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [133818] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3641), 1, + STATE(3630), 1, sym_comment, - ACTIONS(5054), 7, - anon_sym_DOLLAR, + ACTIONS(1526), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5052), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1528), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [133862] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3631), 1, + sym_comment, + ACTIONS(2240), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(2242), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133906] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3632), 1, + sym_comment, + ACTIONS(1886), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1888), 26, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134357] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133950] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3642), 1, + STATE(3633), 1, sym_comment, - ACTIONS(2406), 7, - anon_sym_DOLLAR, + ACTIONS(1940), 9, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2408), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1948), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134400] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133994] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3643), 1, + ACTIONS(6490), 1, + aux_sym_unquoted_token2, + STATE(3634), 1, sym_comment, - ACTIONS(1847), 7, + ACTIONS(1788), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350946,7 +488655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1851), 25, + ACTIONS(1800), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350972,12 +488681,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134443] = 4, + [134040] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3644), 1, + ACTIONS(6616), 1, + aux_sym__immediate_decimal_token2, + STATE(3635), 1, sym_comment, - ACTIONS(1681), 8, + ACTIONS(1760), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -350986,7 +488697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, aux_sym_record_entry_token1, - ACTIONS(1683), 24, + ACTIONS(1762), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -351011,53 +488722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134486] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3645), 1, - sym_comment, - ACTIONS(2402), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2404), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134529] = 5, + [134086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6671), 1, + anon_sym_DOT, + ACTIONS(6673), 1, aux_sym__immediate_decimal_token2, - STATE(3646), 1, + STATE(3636), 1, sym_comment, - ACTIONS(1573), 7, + ACTIONS(1760), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -351065,7 +488739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1575), 24, + ACTIONS(1762), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -351090,26 +488764,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134574] = 8, + [134134] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6675), 1, + anon_sym_DOT, + STATE(3637), 1, + sym_comment, + ACTIONS(1872), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1874), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - aux_sym_record_entry_token1, - ACTIONS(6647), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6649), 1, - sym_filesize_unit, - ACTIONS(6651), 1, - sym_duration_unit, - STATE(3647), 1, + ACTIONS(6677), 1, + aux_sym__immediate_decimal_token2, + STATE(3638), 1, sym_comment, - ACTIONS(6645), 5, + ACTIONS(1820), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6643), 23, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1822), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -351133,12 +488846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [134625] = 4, - ACTIONS(247), 1, + sym_duration_unit, + [134228] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3648), 1, + STATE(3639), 1, sym_comment, - ACTIONS(1887), 7, + ACTIONS(2488), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351146,7 +488860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1889), 25, + ACTIONS(2490), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351172,101 +488886,129 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134668] = 4, - ACTIONS(247), 1, + [134271] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3649), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3640), 1, sym_comment, - ACTIONS(2343), 7, - anon_sym_DOLLAR, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2345), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134711] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134318] = 27, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3650), 1, - sym_comment, - ACTIONS(2440), 7, - anon_sym_DOLLAR, + ACTIONS(393), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2442), 25, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6687), 1, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3641), 1, + sym_comment, + STATE(3720), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4449), 1, + sym__binary_predicate_parenthesized, + STATE(4459), 1, + sym__predicate, + STATE(4854), 1, + sym_val_closure, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134754] = 6, - ACTIONS(3), 1, + [134407] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_LBRACE, - ACTIONS(2226), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(3651), 1, + STATE(3642), 1, sym_comment, - ACTIONS(1026), 29, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -351275,67 +489017,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134801] = 4, - ACTIONS(247), 1, + [134454] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3652), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3643), 1, sym_comment, - ACTIONS(1915), 7, - anon_sym_DOLLAR, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1917), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134844] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134501] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(3644), 1, sym_comment, - ACTIONS(1927), 7, + ACTIONS(2635), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351343,7 +489084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1929), 25, + ACTIONS(2637), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351369,90 +489110,133 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134887] = 4, - ACTIONS(247), 1, + [134544] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3654), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3645), 1, sym_comment, - ACTIONS(1942), 7, - anon_sym_DOLLAR, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1944), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134930] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134591] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3655), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3646), 1, sym_comment, - ACTIONS(2490), 7, - anon_sym_DOLLAR, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2492), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134973] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134638] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3656), 1, + STATE(3647), 1, + sym_comment, + ACTIONS(1866), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1868), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [134681] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3648), 1, sym_comment, - ACTIONS(5064), 7, + ACTIONS(2500), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351460,7 +489244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5062), 25, + ACTIONS(2502), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351486,24 +489270,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135016] = 6, - ACTIONS(247), 1, + [134724] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6653), 1, - anon_sym_DOT_DOT2, - STATE(3657), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3649), 1, sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 5, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1028), 24, - anon_sym_DASH2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351527,51 +489311,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135063] = 4, - ACTIONS(247), 1, + [134771] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3658), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3650), 1, sym_comment, - ACTIONS(2034), 7, - anon_sym_DOLLAR, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2036), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135106] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134818] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3659), 1, + STATE(3651), 1, sym_comment, - ACTIONS(2367), 7, + ACTIONS(2504), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351579,7 +489365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2369), 25, + ACTIONS(2506), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351605,12 +489391,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135149] = 4, - ACTIONS(247), 1, + [134861] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3660), 1, + STATE(3652), 1, sym_comment, - ACTIONS(2379), 7, + ACTIONS(2609), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351618,7 +489404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2381), 25, + ACTIONS(2611), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351644,12 +489430,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135192] = 4, - ACTIONS(247), 1, + [134904] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3661), 1, + STATE(3653), 1, sym_comment, - ACTIONS(2038), 7, + ACTIONS(2472), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351657,7 +489443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2040), 25, + ACTIONS(2474), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351683,12 +489469,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135235] = 4, - ACTIONS(247), 1, + [134947] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3662), 1, + STATE(3654), 1, + sym_comment, + ACTIONS(1768), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1770), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [134990] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3655), 1, sym_comment, - ACTIONS(1899), 7, + ACTIONS(2018), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351696,7 +489521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1901), 25, + ACTIONS(2020), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351722,12 +489547,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135278] = 4, - ACTIONS(247), 1, + [135033] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3656), 1, sym_comment, - ACTIONS(1863), 7, + ACTIONS(2508), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351735,7 +489560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1865), 25, + ACTIONS(2510), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351761,12 +489586,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135321] = 4, - ACTIONS(247), 1, + [135076] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3664), 1, + STATE(3657), 1, sym_comment, - ACTIONS(2398), 7, + ACTIONS(2512), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351774,7 +489599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2400), 25, + ACTIONS(2514), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351800,53 +489625,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135364] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(3665), 1, - sym_comment, - ACTIONS(2242), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2238), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135411] = 4, - ACTIONS(247), 1, + [135119] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3666), 1, + STATE(3658), 1, sym_comment, - ACTIONS(2448), 7, + ACTIONS(2034), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351854,7 +489638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2450), 25, + ACTIONS(2036), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351870,309 +489654,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135454] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(3667), 1, - sym_comment, - ACTIONS(1028), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(1026), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135501] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2242), 1, - anon_sym_LBRACE, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(3668), 1, - sym_comment, - ACTIONS(2238), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135548] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6655), 1, - anon_sym_DOT_DOT2, - STATE(3669), 1, - sym_comment, - ACTIONS(6657), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1828), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [135595] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3670), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135642] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, - anon_sym_LBRACE, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3671), 1, - sym_comment, - ACTIONS(2246), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135689] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2256), 1, - anon_sym_LBRACE, - STATE(3672), 1, - sym_comment, - ACTIONS(2254), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135736] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3673), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135783] = 4, - ACTIONS(247), 1, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135162] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3674), 1, + STATE(3659), 1, sym_comment, - ACTIONS(2452), 7, + ACTIONS(1556), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352180,7 +489677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2454), 25, + ACTIONS(1558), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352206,94 +489703,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135826] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3675), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135873] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3676), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135920] = 4, - ACTIONS(247), 1, + [135205] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3677), 1, + STATE(3660), 1, sym_comment, - ACTIONS(1907), 7, + ACTIONS(2038), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352301,7 +489716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1909), 25, + ACTIONS(2040), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352327,94 +489742,52 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135963] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3678), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136010] = 6, - ACTIONS(247), 1, + [135248] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3679), 1, + ACTIONS(6673), 1, + aux_sym__immediate_decimal_token2, + STATE(3661), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136057] = 4, - ACTIONS(247), 1, + ACTIONS(1760), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1762), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [135293] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3680), 1, + STATE(3662), 1, sym_comment, - ACTIONS(2468), 7, + ACTIONS(2042), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352422,7 +489795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2470), 25, + ACTIONS(2044), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352448,53 +489821,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136100] = 6, - ACTIONS(247), 1, + [135336] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3681), 1, + STATE(3663), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(2531), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2533), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136147] = 4, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135379] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3682), 1, + STATE(3664), 1, sym_comment, - ACTIONS(2482), 7, + ACTIONS(2054), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352502,7 +489873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2484), 25, + ACTIONS(2056), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352528,174 +489899,129 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136190] = 6, - ACTIONS(247), 1, + [135422] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3683), 1, + STATE(3665), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(2535), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2537), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136237] = 6, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135465] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3684), 1, + STATE(3666), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(2539), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2541), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136284] = 6, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135508] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3685), 1, + STATE(3667), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(5150), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136331] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3686), 1, - sym_comment, - ACTIONS(2270), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5148), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2268), 30, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [136374] = 4, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135551] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3687), 1, + STATE(3668), 1, sym_comment, - ACTIONS(2478), 7, + ACTIONS(5154), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352703,7 +490029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2480), 25, + ACTIONS(5152), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352729,94 +490055,90 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136417] = 6, - ACTIONS(247), 1, + [135594] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3688), 1, + STATE(3669), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(2058), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2060), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136464] = 6, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135637] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3689), 1, + STATE(3670), 1, sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, + ACTIONS(2066), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2068), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136511] = 4, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135680] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3671), 1, sym_comment, - ACTIONS(2410), 7, + ACTIONS(2547), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352824,7 +490146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2412), 25, + ACTIONS(2549), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352850,12 +490172,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136554] = 4, - ACTIONS(247), 1, + [135723] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3691), 1, + STATE(3672), 1, sym_comment, - ACTIONS(2414), 7, + ACTIONS(2551), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352863,7 +490185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2416), 25, + ACTIONS(2553), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352889,12 +490211,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136597] = 4, - ACTIONS(247), 1, + [135766] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3692), 1, + STATE(3673), 1, sym_comment, - ACTIONS(2418), 7, + ACTIONS(2070), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352902,7 +490224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2420), 25, + ACTIONS(2072), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -352928,20 +490250,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136640] = 4, - ACTIONS(3), 1, + [135809] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3693), 1, - sym_comment, - ACTIONS(2270), 3, - sym__newline, + ACTIONS(5249), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2268), 29, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + STATE(3674), 1, + sym_comment, + ACTIONS(6652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5253), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352950,29 +490279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [136683] = 4, - ACTIONS(247), 1, + [135858] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3694), 1, + STATE(3675), 1, sym_comment, - ACTIONS(5172), 7, + ACTIONS(5170), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -352980,7 +490305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5170), 25, + ACTIONS(5168), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353006,12 +490331,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136726] = 4, - ACTIONS(247), 1, + [135901] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3695), 1, + STATE(3676), 1, sym_comment, - ACTIONS(5176), 7, + ACTIONS(5174), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353019,7 +490344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5174), 25, + ACTIONS(5172), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353045,53 +490370,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136769] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6659), 1, - anon_sym_DOT_DOT2, - STATE(3696), 1, - sym_comment, - ACTIONS(6661), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1810), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136816] = 4, - ACTIONS(247), 1, + [135944] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3697), 1, + STATE(3677), 1, sym_comment, - ACTIONS(1707), 7, + ACTIONS(2559), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353099,7 +490383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1719), 25, + ACTIONS(2561), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353125,102 +490409,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136859] = 7, - ACTIONS(247), 1, + [135987] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5206), 1, - anon_sym_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOT_DOT2, - STATE(3698), 1, + STATE(3678), 1, sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5210), 23, + ACTIONS(2563), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136908] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3699), 1, - sym_comment, - ACTIONS(2250), 2, - sym__newline, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2565), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2246), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136955] = 6, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3700), 1, + STATE(3679), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(2409), 3, sym__newline, anon_sym_LBRACE, - ACTIONS(2254), 28, + anon_sym_LPAREN2, + ACTIONS(2407), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -353249,12 +490486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137002] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [136073] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3701), 1, + STATE(3680), 1, sym_comment, - ACTIONS(5081), 7, + ACTIONS(1788), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353262,7 +490500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5079), 25, + ACTIONS(1800), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353288,12 +490526,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137045] = 4, - ACTIONS(247), 1, + [136116] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3702), 1, + ACTIONS(1788), 1, + aux_sym_record_entry_token1, + ACTIONS(6703), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6705), 1, + sym_filesize_unit, + ACTIONS(6707), 1, + sym_duration_unit, + STATE(3681), 1, + sym_comment, + ACTIONS(6701), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6699), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [136167] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3682), 1, sym_comment, - ACTIONS(5085), 7, + ACTIONS(2567), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353301,7 +490582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5083), 25, + ACTIONS(2569), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353327,12 +490608,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137088] = 4, - ACTIONS(247), 1, + [136210] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3703), 1, + STATE(3683), 1, sym_comment, - ACTIONS(2444), 7, + ACTIONS(2468), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353340,7 +490621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2446), 25, + ACTIONS(2470), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353366,12 +490647,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137131] = 4, - ACTIONS(247), 1, + [136253] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3704), 1, + STATE(3684), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(2468), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353379,7 +490660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2466), 25, + ACTIONS(2470), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353405,12 +490686,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137174] = 4, - ACTIONS(247), 1, + [136296] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3705), 1, + STATE(3685), 1, + sym_comment, + ACTIONS(1760), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1762), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [136339] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3686), 1, + sym_comment, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136386] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3687), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(2605), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353418,7 +490779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2466), 25, + ACTIONS(2607), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353444,74 +490805,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137217] = 27, - ACTIONS(247), 1, + [136429] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + STATE(3688), 1, + sym_comment, + ACTIONS(2476), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2478), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3706), 1, - sym_comment, - STATE(3724), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4324), 1, - sym__binary_predicate_parenthesized, - STATE(4325), 1, - sym__predicate, - STATE(4887), 1, - sym_val_closure, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - [137306] = 4, - ACTIONS(247), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136472] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3707), 1, + STATE(3689), 1, sym_comment, - ACTIONS(2430), 7, + ACTIONS(2480), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353519,7 +490857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2432), 25, + ACTIONS(2482), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353545,53 +490883,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137349] = 4, - ACTIONS(3), 1, + [136515] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3708), 1, + STATE(3690), 1, sym_comment, - ACTIONS(1585), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1587), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [137392] = 5, + ACTIONS(2006), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2008), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, + ACTIONS(6709), 1, aux_sym__immediate_decimal_token2, - STATE(3709), 1, + STATE(3691), 1, sym_comment, - ACTIONS(1681), 7, + ACTIONS(1820), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -353599,7 +490937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1683), 24, + ACTIONS(1822), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -353624,12 +490962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [137437] = 4, - ACTIONS(247), 1, + [136603] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3710), 1, + STATE(3692), 1, sym_comment, - ACTIONS(2456), 7, + ACTIONS(5130), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353637,7 +490975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2458), 25, + ACTIONS(5128), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353663,12 +491001,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137480] = 4, - ACTIONS(247), 1, + [136646] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3711), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3693), 1, + sym_comment, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136693] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3694), 1, sym_comment, - ACTIONS(1044), 7, + ACTIONS(5136), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353676,7 +491055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1046), 25, + ACTIONS(5134), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353702,12 +491081,217 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137523] = 4, - ACTIONS(247), 1, + [136736] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3712), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3695), 1, + sym_comment, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136783] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2341), 1, + anon_sym_LBRACE, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(3696), 1, + sym_comment, + ACTIONS(2337), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136830] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + STATE(3697), 1, + sym_comment, + ACTIONS(6652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1540), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136877] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2349), 1, + anon_sym_LBRACE, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3698), 1, + sym_comment, + ACTIONS(2345), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136924] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2355), 1, + anon_sym_LBRACE, + STATE(3699), 1, + sym_comment, + ACTIONS(2353), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136971] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3700), 1, sym_comment, - ACTIONS(5099), 7, + ACTIONS(2492), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353715,7 +491299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5097), 25, + ACTIONS(2494), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353741,12 +491325,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137566] = 4, - ACTIONS(247), 1, + [137014] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3713), 1, + STATE(3701), 1, sym_comment, - ACTIONS(5121), 7, + ACTIONS(2496), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353754,7 +491338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5119), 25, + ACTIONS(2498), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353780,12 +491364,217 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137609] = 4, - ACTIONS(247), 1, + [137057] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3714), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(3702), 1, + sym_comment, + ACTIONS(2341), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2337), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137104] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(3703), 1, + sym_comment, + ACTIONS(1540), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1538), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137151] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3704), 1, + sym_comment, + STATE(7458), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137198] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3705), 1, + sym_comment, + ACTIONS(2349), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2345), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137245] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3706), 1, + sym_comment, + ACTIONS(2355), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2353), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137292] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3707), 1, sym_comment, - ACTIONS(2486), 7, + ACTIONS(5188), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353793,7 +491582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2488), 25, + ACTIONS(5186), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353819,12 +491608,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137652] = 4, - ACTIONS(247), 1, + [137335] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3715), 1, + STATE(3708), 1, sym_comment, - ACTIONS(2510), 7, + ACTIONS(5210), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353832,7 +491621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2512), 25, + ACTIONS(5208), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353858,27 +491647,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137695] = 7, - ACTIONS(247), 1, + [137378] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5206), 1, - anon_sym_EQ_GT, - ACTIONS(6683), 1, - anon_sym_DOT_DOT2, - STATE(3716), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3709), 1, sym_comment, - ACTIONS(6685), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5208), 5, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5210), 23, + ACTIONS(4936), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137425] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3710), 1, + sym_comment, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4942), 6, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4940), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353900,26 +491729,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137744] = 6, - ACTIONS(247), 1, + [137472] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6683), 1, - anon_sym_DOT_DOT2, - STATE(3717), 1, + STATE(3711), 1, sym_comment, - ACTIONS(6685), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 5, + ACTIONS(1820), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1822), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [137515] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3712), 1, + sym_comment, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4949), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1028), 24, + ACTIONS(4947), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137562] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3713), 1, + sym_comment, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4953), 6, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4951), 24, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353941,12 +491850,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137791] = 4, - ACTIONS(247), 1, + [137609] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3718), 1, + ACTIONS(6711), 1, + anon_sym_DOT_DOT2, + STATE(3714), 1, sym_comment, - ACTIONS(5134), 7, + ACTIONS(6713), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1948), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137656] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3715), 1, + sym_comment, + ACTIONS(2409), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2407), 30, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [137699] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3716), 1, + sym_comment, + ACTIONS(1538), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -353954,7 +491943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5132), 25, + ACTIONS(1540), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353980,26 +491969,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137834] = 6, - ACTIONS(247), 1, + [137742] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3719), 1, + ACTIONS(5249), 1, + anon_sym_EQ_GT, + ACTIONS(6715), 1, + anon_sym_DOT_DOT2, + STATE(3717), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4922), 6, + ACTIONS(6717), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5251), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4920), 24, - anon_sym_DASH_DASH, + ACTIONS(5253), 23, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354021,26 +492011,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137881] = 6, - ACTIONS(247), 1, + [137791] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3720), 1, + ACTIONS(6715), 1, + anon_sym_DOT_DOT2, + STATE(3718), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4928), 6, + ACTIONS(6717), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1538), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4926), 24, - anon_sym_DASH_DASH, + ACTIONS(1540), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354062,23 +492052,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137928] = 6, - ACTIONS(247), 1, + [137838] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6719), 1, + anon_sym_DOT_DOT2, + STATE(3719), 1, + sym_comment, + ACTIONS(6721), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1950), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1958), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137885] = 27, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6687), 1, + anon_sym_LBRACE, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3720), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4394), 1, + sym__binary_predicate_parenthesized, + STATE(4400), 1, + sym__predicate, + STATE(4910), 1, + sym_val_closure, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137974] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, STATE(3721), 1, sym_comment, - STATE(8105), 1, + STATE(7458), 1, sym__expr_parenthesized_immediate, - ACTIONS(4934), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4932), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354103,23 +492196,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137975] = 6, - ACTIONS(247), 1, + [138021] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, STATE(3722), 1, sym_comment, - STATE(8105), 1, + ACTIONS(5034), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5032), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138064] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_comment, + STATE(7458), 1, sym__expr_parenthesized_immediate, - ACTIONS(4938), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4936), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354144,12 +492276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138022] = 4, - ACTIONS(247), 1, + [138111] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3723), 1, + STATE(3724), 1, sym_comment, - ACTIONS(1026), 7, + ACTIONS(5046), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -354157,7 +492289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1028), 25, + ACTIONS(5044), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -354183,152 +492315,90 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138065] = 27, - ACTIONS(247), 1, + [138154] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + STATE(3725), 1, + sym_comment, + ACTIONS(1994), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1996), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3724), 1, - sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, - sym_val_number, - STATE(4415), 1, - sym__binary_predicate_parenthesized, - STATE(4416), 1, - sym__predicate, - STATE(4826), 1, - sym_val_closure, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - [138154] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3725), 1, - sym_comment, - ACTIONS(1573), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1575), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [138197] = 4, - ACTIONS(3), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3726), 1, sym_comment, - ACTIONS(1761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1763), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, + ACTIONS(2593), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2595), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, [138240] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3727), 1, sym_comment, - ACTIONS(2472), 7, + ACTIONS(2597), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -354336,7 +492406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2474), 25, + ACTIONS(2599), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -354363,11 +492433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, [138283] = 4, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, STATE(3728), 1, sym_comment, - ACTIONS(2390), 7, + ACTIONS(2601), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -354375,7 +492445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2392), 25, + ACTIONS(2603), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -354402,60 +492472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, [138326] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(3729), 1, - sym_comment, - STATE(7633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(1540), 1, + anon_sym_LBRACE, + ACTIONS(2329), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, + ACTIONS(2331), 1, aux_sym_unquoted_token4, - STATE(3730), 1, + STATE(3729), 1, sym_comment, - ACTIONS(2254), 29, + ACTIONS(1538), 29, anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, @@ -354481,224 +492512,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138417] = 16, - ACTIONS(247), 1, + [138373] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - STATE(3731), 1, - sym_comment, - STATE(3744), 1, - aux_sym_shebang_repeat1, - ACTIONS(6687), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6697), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5306), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - [138483] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - ACTIONS(6729), 1, - anon_sym_bit_DASHand2, - ACTIONS(6731), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3732), 1, + STATE(3730), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 6, + ACTIONS(5342), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [138549] = 17, - ACTIONS(247), 1, + [138441] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5434), 1, sym__newline, - ACTIONS(6689), 1, - anon_sym_DASH2, - ACTIONS(6703), 1, - anon_sym_PLUS2, - ACTIONS(6707), 1, - anon_sym_bit_DASHand2, - ACTIONS(6733), 1, - anon_sym_bit_DASHxor2, - STATE(3733), 1, + STATE(3731), 1, sym_comment, - STATE(3745), 1, + STATE(3777), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6697), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5306), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [138617] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3734), 1, - sym_comment, - ACTIONS(5276), 2, + ACTIONS(5340), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5274), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138673] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3735), 1, - sym_comment, - ACTIONS(6715), 2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5276), 3, - anon_sym_GT2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5274), 21, - sym__newline, + ACTIONS(5338), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -354714,78 +492597,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138723] = 12, - ACTIONS(247), 1, + [138489] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3736), 1, + ACTIONS(6769), 1, + anon_sym_bit_DASHand2, + ACTIONS(6771), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6773), 1, + anon_sym_bit_DASHor2, + STATE(3732), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3779), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6761), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6717), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5274), 14, - sym__newline, - anon_sym_in2, + ACTIONS(5338), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6755), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138781] = 6, - ACTIONS(247), 1, + ACTIONS(6759), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138559] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3737), 1, + ACTIONS(6775), 1, + anon_sym_DOT_DOT2, + STATE(3733), 1, sym_comment, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5276), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5274), 23, + ACTIONS(6777), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1948), 20, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138605] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(3734), 1, + sym_comment, + ACTIONS(2337), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354794,211 +492719,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138827] = 17, - ACTIONS(247), 1, + [138649] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3738), 1, + ACTIONS(6779), 1, + anon_sym_and2, + STATE(3735), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3781), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(5338), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [138895] = 18, - ACTIONS(247), 1, + [138721] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(6785), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6787), 1, + sym_filesize_unit, + ACTIONS(6789), 1, + sym_duration_unit, + STATE(3736), 1, + sym_comment, + ACTIONS(6783), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6781), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [138769] = 20, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6779), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3739), 1, + ACTIONS(6791), 1, + anon_sym_xor2, + STATE(3737), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3783), 1, + aux_sym_shebang_repeat1, + ACTIONS(5338), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5274), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138965] = 19, - ACTIONS(247), 1, + [138843] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - ACTIONS(6729), 1, - anon_sym_bit_DASHand2, - ACTIONS(6731), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, - anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + STATE(3738), 1, + sym_comment, + ACTIONS(2516), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2518), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, - ACTIONS(6739), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3740), 1, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138885] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3739), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(2345), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6719), 2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5274), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6713), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138929] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(3740), 1, + sym_comment, + ACTIONS(2353), 29, + anon_sym_GT2, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139037] = 13, - ACTIONS(247), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138973] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(3741), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3787), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 10, - sym__newline, + ACTIONS(5338), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355008,31 +493047,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139097] = 10, - ACTIONS(247), 1, + [139035] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(3742), 1, sym_comment, - ACTIONS(5276), 2, + STATE(3790), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5274), 20, - sym__newline, + ACTIONS(5338), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355052,47 +493092,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139151] = 14, - ACTIONS(247), 1, + [139091] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(3743), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3793), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, - sym__newline, + ACTIONS(5338), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355100,158 +493141,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139213] = 15, - ACTIONS(247), 1, + [139155] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(3744), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3796), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 7, - sym__newline, + ACTIONS(5338), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139277] = 16, - ACTIONS(247), 1, + [139221] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - ACTIONS(6729), 1, - anon_sym_bit_DASHand2, - ACTIONS(6731), 1, - anon_sym_bit_DASHxor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(3745), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(1788), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6719), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + anon_sym_PLUS2, + ACTIONS(1800), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139343] = 13, - ACTIONS(247), 1, + [139265] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + ACTIONS(5434), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, + ACTIONS(6769), 1, + anon_sym_bit_DASHand2, + ACTIONS(6771), 1, + anon_sym_bit_DASHxor2, STATE(3746), 1, sym_comment, - STATE(3771), 1, + STATE(3798), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6761), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6695), 4, + ACTIONS(6755), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 13, - anon_sym_in2, + ACTIONS(5338), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139403] = 4, - ACTIONS(247), 1, + [139333] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3747), 1, sym_comment, - ACTIONS(2130), 8, + ACTIONS(2520), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355260,7 +493295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 23, + ACTIONS(2522), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355284,25 +493319,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139445] = 7, - ACTIONS(247), 1, + [139375] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, STATE(3748), 1, sym_comment, - STATE(3773), 1, + ACTIONS(1760), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1762), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [139417] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6699), 2, + STATE(3749), 1, + sym_comment, + ACTIONS(5344), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6729), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, - anon_sym_GT2, + ACTIONS(6737), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6741), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5342), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139473] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3750), 1, + sym_comment, + ACTIONS(6729), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6735), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6737), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5344), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5328), 22, + ACTIONS(5342), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -355318,71 +493439,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139493] = 18, - ACTIONS(247), 1, + [139523] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + STATE(3751), 1, + sym_comment, + ACTIONS(2543), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2545), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6689), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139565] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, - anon_sym_bit_DASHand2, - ACTIONS(6733), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, - anon_sym_bit_DASHor2, - STATE(3749), 1, - sym_comment, - STATE(3775), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3752), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 4, + ACTIONS(6731), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5342), 14, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139623] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3753), 1, + sym_comment, + ACTIONS(6735), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5344), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5342), 23, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139563] = 4, - ACTIONS(247), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139669] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3750), 1, + STATE(3754), 1, sym_comment, - ACTIONS(2494), 8, + ACTIONS(2555), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355391,7 +493582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2496), 23, + ACTIONS(2557), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355415,17 +493606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139605] = 6, - ACTIONS(247), 1, + [139711] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6743), 1, - anon_sym_DOT_DOT2, - STATE(3751), 1, + STATE(3755), 1, sym_comment, - ACTIONS(6745), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 8, + ACTIONS(2639), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355434,7 +493620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 20, + ACTIONS(2641), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355447,6 +493633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -355455,91 +493644,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139651] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6751), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6753), 1, - sym_filesize_unit, - ACTIONS(6755), 1, - sym_duration_unit, - STATE(3752), 1, - sym_comment, - ACTIONS(6749), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6747), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [139699] = 4, - ACTIONS(3), 1, + [139753] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_LPAREN2, - STATE(3753), 1, + STATE(3756), 1, sym_comment, - ACTIONS(2268), 30, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + ACTIONS(2575), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2577), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [139741] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139795] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3754), 1, + STATE(3757), 1, sym_comment, - ACTIONS(2157), 8, + ACTIONS(2579), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355548,7 +493696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2163), 23, + ACTIONS(2581), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355572,65 +493720,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139783] = 19, - ACTIONS(247), 1, + [139837] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, + STATE(3758), 1, + sym_comment, + ACTIONS(2583), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2585), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6689), 1, - anon_sym_DASH2, - ACTIONS(6703), 1, - anon_sym_PLUS2, - ACTIONS(6707), 1, - anon_sym_bit_DASHand2, - ACTIONS(6733), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, - anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, - STATE(3755), 1, - sym_comment, - STATE(3777), 1, - aux_sym_shebang_repeat1, - ACTIONS(6687), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6697), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5328), 3, - anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [139855] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139879] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3756), 1, + STATE(3759), 1, sym_comment, - ACTIONS(2146), 8, + ACTIONS(2587), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355639,7 +493772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 23, + ACTIONS(2589), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355663,173 +493796,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139897] = 20, - ACTIONS(247), 1, + [139921] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, - anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + STATE(3760), 1, + sym_comment, + STATE(3768), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6761), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6755), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6759), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5362), 5, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6759), 1, anon_sym_xor2, - STATE(3757), 1, - sym_comment, - STATE(3779), 1, + anon_sym_or2, + anon_sym_bit_DASHor2, + [139989] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + ACTIONS(6745), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6747), 1, + anon_sym_bit_DASHor2, + ACTIONS(6793), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5328), 2, + STATE(3761), 1, + sym_comment, + ACTIONS(6723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6729), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6733), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6735), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6737), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6741), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5342), 4, + sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6687), 2, + ACTIONS(6727), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6731), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [140059] = 19, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + ACTIONS(6745), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6747), 1, + anon_sym_bit_DASHor2, + ACTIONS(6793), 1, + anon_sym_and2, + ACTIONS(6795), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3762), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(5342), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139971] = 14, - ACTIONS(247), 1, + [140131] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3758), 1, - sym_comment, - STATE(3781), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3763), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140033] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6450), 1, - aux_sym_unquoted_token2, - STATE(3759), 1, - sym_comment, - ACTIONS(1707), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(5342), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140077] = 11, - ACTIONS(247), 1, + [140191] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3760), 1, - sym_comment, - STATE(3783), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5330), 2, + STATE(3764), 1, + sym_comment, + ACTIONS(5344), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5328), 19, + ACTIONS(5342), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355849,48 +494043,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140133] = 15, - ACTIONS(247), 1, + [140245] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3761), 1, - sym_comment, - STATE(3785), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3765), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 7, + ACTIONS(5342), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355898,214 +494091,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140197] = 16, - ACTIONS(247), 1, + [140307] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(2409), 1, + anon_sym_LPAREN2, + STATE(3766), 1, + sym_comment, + ACTIONS(2407), 30, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6703), 1, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - ACTIONS(6707), 1, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - STATE(3762), 1, - sym_comment, - STATE(3787), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [140349] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3767), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 6, + ACTIONS(5342), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140263] = 17, - ACTIONS(247), 1, + [140413] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - STATE(3763), 1, - sym_comment, - STATE(3789), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3768), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 5, + ACTIONS(5342), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [140331] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6765), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6767), 1, - sym_filesize_unit, - ACTIONS(6769), 1, - sym_duration_unit, - STATE(3764), 1, - sym_comment, - ACTIONS(6763), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6761), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140379] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3765), 1, - sym_comment, - ACTIONS(1761), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1763), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [140421] = 11, - ACTIONS(247), 1, + [140479] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3766), 1, + ACTIONS(6502), 1, + aux_sym_unquoted_token2, + STATE(3769), 1, sym_comment, - ACTIONS(5296), 2, + ACTIONS(1788), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5294), 18, - sym__newline, + anon_sym_PLUS2, + ACTIONS(1800), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356120,25 +494258,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140477] = 5, - ACTIONS(247), 1, + [140523] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(3767), 1, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3770), 1, sym_comment, - ACTIONS(1707), 5, + ACTIONS(5302), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6729), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1719), 25, + ACTIONS(6735), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6737), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6741), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5300), 18, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356153,44 +494309,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140521] = 12, - ACTIONS(247), 1, + [140579] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3768), 1, + STATE(3771), 1, sym_comment, - STATE(3810), 1, + STATE(3803), 1, aux_sym_shebang_repeat1, - ACTIONS(5300), 2, + ACTIONS(5314), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5298), 17, + ACTIONS(5312), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356208,27 +494358,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140579] = 8, - ACTIONS(247), 1, + [140637] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3769), 1, + STATE(3772), 1, sym_comment, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 3, + ACTIONS(5302), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5294), 21, + ACTIONS(5300), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356250,29 +494400,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140629] = 9, - ACTIONS(247), 1, + [140687] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3770), 1, + STATE(3773), 1, sym_comment, - STATE(3811), 1, + STATE(3805), 1, aux_sym_shebang_repeat1, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 3, + ACTIONS(5314), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5298), 20, + ACTIONS(5312), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -356293,38 +494443,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140681] = 12, - ACTIONS(247), 1, + [140739] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3771), 1, + STATE(3774), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 14, + ACTIONS(5300), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -356339,40 +494489,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140739] = 13, - ACTIONS(247), 1, + [140797] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + STATE(3775), 1, + sym_comment, + ACTIONS(2484), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2486), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6689), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140839] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5368), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3772), 1, + STATE(3776), 1, sym_comment, - STATE(3813), 1, + STATE(3806), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 13, + ACTIONS(5312), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356386,23 +494574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140799] = 6, - ACTIONS(247), 1, + [140899] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3773), 1, + STATE(3777), 1, sym_comment, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5296), 5, + ACTIONS(5302), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5294), 23, + ACTIONS(5300), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -356426,25 +494614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140845] = 7, - ACTIONS(247), 1, + [140945] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - STATE(3774), 1, + STATE(3778), 1, sym_comment, - STATE(3814), 1, + STATE(3807), 1, aux_sym_shebang_repeat1, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5300), 5, + ACTIONS(5314), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5298), 22, + ACTIONS(5312), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -356467,358 +494655,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140893] = 17, - ACTIONS(247), 1, + [140993] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3775), 1, + STATE(3779), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 5, + ACTIONS(5300), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140961] = 18, - ACTIONS(247), 1, + [141061] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - STATE(3776), 1, + STATE(3780), 1, sym_comment, - STATE(3816), 1, + STATE(3810), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5298), 4, + ACTIONS(5312), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141031] = 18, - ACTIONS(247), 1, + [141131] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6793), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3781), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5294), 4, + ACTIONS(5300), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141101] = 19, - ACTIONS(247), 1, + [141201] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6779), 1, anon_sym_and2, - STATE(3778), 1, + STATE(3782), 1, sym_comment, - STATE(3817), 1, + STATE(3811), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5298), 3, + ACTIONS(5312), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141173] = 19, - ACTIONS(247), 1, + [141273] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6793), 1, anon_sym_and2, - ACTIONS(6739), 1, + ACTIONS(6795), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3779), 1, + STATE(3783), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5294), 3, + ACTIONS(5300), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141245] = 20, - ACTIONS(247), 1, + [141345] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6779), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6791), 1, anon_sym_xor2, - STATE(3780), 1, + STATE(3784), 1, sym_comment, - STATE(3818), 1, + STATE(3813), 1, aux_sym_shebang_repeat1, - ACTIONS(5298), 2, + ACTIONS(5312), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141319] = 13, - ACTIONS(247), 1, + [141419] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3785), 1, + sym_comment, + ACTIONS(2228), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2234), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141461] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3786), 1, + sym_comment, + ACTIONS(2177), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2183), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141503] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3781), 1, + STATE(3787), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 10, + ACTIONS(5300), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -356829,45 +495093,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141379] = 14, - ACTIONS(247), 1, + [141563] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3782), 1, + STATE(3788), 1, sym_comment, - STATE(3823), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 9, + ACTIONS(5312), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -356877,30 +495141,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141441] = 10, - ACTIONS(247), 1, + [141625] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6797), 1, + anon_sym_DOT_DOT2, + STATE(3789), 1, + sym_comment, + ACTIONS(6799), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1950), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1958), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141671] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3783), 1, + STATE(3790), 1, sym_comment, - ACTIONS(5296), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5294), 20, + ACTIONS(5300), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -356921,32 +495225,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141495] = 11, - ACTIONS(247), 1, + [141725] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3784), 1, + STATE(3791), 1, sym_comment, - STATE(3825), 1, + STATE(3815), 1, aux_sym_shebang_repeat1, - ACTIONS(5300), 2, + ACTIONS(5314), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5298), 19, + ACTIONS(5312), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356966,46 +495270,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141551] = 14, - ACTIONS(247), 1, + [141781] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3792), 1, + sym_comment, + ACTIONS(1820), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1822), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [141823] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3785), 1, + STATE(3793), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 8, + ACTIONS(5300), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -357014,48 +495356,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141613] = 15, - ACTIONS(247), 1, + [141885] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3786), 1, + STATE(3794), 1, sym_comment, - STATE(3826), 1, + STATE(3816), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 7, + ACTIONS(5312), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -357063,48 +495405,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141677] = 15, - ACTIONS(247), 1, + [141949] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3155), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6801), 1, + sym_filesize_unit, + ACTIONS(6803), 1, + sym_duration_unit, + STATE(3795), 1, + sym_comment, + ACTIONS(3153), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [141997] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3787), 1, + STATE(3796), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 7, + ACTIONS(5300), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -357112,186 +495495,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141741] = 16, - ACTIONS(247), 1, + [142061] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - STATE(3788), 1, + STATE(3797), 1, sym_comment, - STATE(3827), 1, + STATE(3817), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 6, + ACTIONS(5312), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141807] = 16, - ACTIONS(247), 1, + [142127] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3789), 1, + STATE(3798), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 6, + ACTIONS(5300), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [141873] = 17, - ACTIONS(247), 1, + [142193] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5332), 1, + ACTIONS(5368), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - STATE(3790), 1, + STATE(3799), 1, sym_comment, - STATE(3830), 1, + STATE(3819), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 5, + ACTIONS(5312), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [141941] = 12, - ACTIONS(247), 1, + [142261] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6809), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6811), 1, + sym_filesize_unit, + ACTIONS(6813), 1, + sym_duration_unit, + STATE(3800), 1, + sym_comment, + ACTIONS(6807), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6805), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [142309] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, + STATE(3801), 1, + sym_comment, + ACTIONS(2524), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2526), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6689), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142351] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3791), 1, + STATE(3774), 1, + aux_sym_shebang_repeat1, + STATE(3802), 1, sym_comment, - STATE(3831), 1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6759), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5338), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142411] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5326), 2, + STATE(3803), 1, + sym_comment, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 17, + ACTIONS(5296), 18, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357309,20 +495817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141999] = 4, + [142467] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3792), 1, + ACTIONS(6819), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6821), 1, + sym_filesize_unit, + ACTIONS(6823), 1, + sym_duration_unit, + STATE(3804), 1, sym_comment, - ACTIONS(1573), 7, + ACTIONS(6817), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1575), 24, + ACTIONS(6815), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -357346,30 +495858,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [142041] = 9, - ACTIONS(247), 1, + [142515] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - STATE(3793), 1, - sym_comment, - STATE(3835), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6693), 2, + STATE(3805), 1, + sym_comment, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5326), 3, + ACTIONS(5298), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5324), 20, + ACTIONS(5296), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -357390,78 +495900,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142093] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3794), 1, - sym_comment, - ACTIONS(1585), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1587), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [142135] = 13, - ACTIONS(247), 1, + [142565] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3795), 1, - sym_comment, - STATE(3837), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3806), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 13, + ACTIONS(5296), 14, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357475,65 +495946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142195] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6771), 1, - anon_sym_DOT_DOT2, - STATE(3796), 1, - sym_comment, - ACTIONS(6773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1828), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142241] = 7, - ACTIONS(247), 1, + [142623] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - STATE(3797), 1, - sym_comment, - STATE(3840), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6699), 2, + STATE(3807), 1, + sym_comment, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5326), 5, + ACTIONS(5298), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5324), 22, + ACTIONS(5296), 23, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -357556,279 +495986,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142289] = 18, - ACTIONS(247), 1, + [142669] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6829), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6831), 1, + sym_filesize_unit, + ACTIONS(6833), 1, + sym_duration_unit, + STATE(3808), 1, + sym_comment, + ACTIONS(6827), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6825), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [142717] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3809), 1, + sym_comment, + ACTIONS(1866), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1868), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [142759] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - STATE(3798), 1, - sym_comment, - STATE(3842), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3810), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142359] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5296), 5, sym__newline, - ACTIONS(6689), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142827] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6793), 1, anon_sym_and2, - STATE(3799), 1, - sym_comment, - STATE(3846), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3811), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5324), 3, + ACTIONS(5296), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142431] = 5, + [142897] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(3800), 1, + ACTIONS(6839), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6841), 1, + sym_filesize_unit, + ACTIONS(6843), 1, + sym_duration_unit, + STATE(3812), 1, sym_comment, - ACTIONS(1026), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142475] = 20, - ACTIONS(247), 1, + ACTIONS(6837), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6835), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [142945] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6793), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6795), 1, anon_sym_xor2, - STATE(3801), 1, - sym_comment, - STATE(3851), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5324), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6687), 2, + STATE(3813), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(5296), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142549] = 15, - ACTIONS(247), 1, + [143017] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, - anon_sym_bit_DASHand2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3802), 1, + STATE(3814), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 7, + ACTIONS(5296), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142613] = 11, - ACTIONS(247), 1, + [143077] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3803), 1, - sym_comment, - STATE(3855), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5326), 2, + STATE(3815), 1, + sym_comment, + ACTIONS(5298), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5324), 19, + ACTIONS(5296), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357848,48 +496353,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142669] = 15, - ACTIONS(247), 1, + [143131] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3804), 1, - sym_comment, - STATE(3859), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + STATE(3816), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 7, + ACTIONS(5296), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -357897,74 +496401,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142733] = 16, - ACTIONS(247), 1, + [143193] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - STATE(3802), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3805), 1, + STATE(3817), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 6, + ACTIONS(5296), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142799] = 7, + [143257] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3818), 1, + sym_comment, + ACTIONS(2185), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2191), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143299] = 16, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, + anon_sym_PLUS2, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + ACTIONS(6745), 1, + anon_sym_bit_DASHxor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3819), 1, + sym_comment, + ACTIONS(6723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6729), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6733), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6735), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6737), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6741), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6727), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6731), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [143365] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3053), 1, + ACTIONS(6849), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6775), 1, + ACTIONS(6851), 1, sym_filesize_unit, - ACTIONS(6777), 1, + ACTIONS(6853), 1, sym_duration_unit, - STATE(3806), 1, + STATE(3820), 1, sym_comment, - ACTIONS(3051), 5, + ACTIONS(6847), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3049), 23, + ACTIONS(6845), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -357988,83 +496579,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142847] = 17, - ACTIONS(247), 1, + [143413] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, - anon_sym_DASH2, - ACTIONS(6703), 1, - anon_sym_PLUS2, - ACTIONS(6707), 1, - anon_sym_bit_DASHand2, - ACTIONS(6733), 1, - anon_sym_bit_DASHxor2, - STATE(3732), 1, - aux_sym_shebang_repeat1, - STATE(3807), 1, + STATE(3821), 1, sym_comment, - ACTIONS(6687), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6697), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 5, - anon_sym_LBRACE, + ACTIONS(2197), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2203), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [142915] = 9, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143455] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - STATE(3769), 1, - aux_sym_shebang_repeat1, - STATE(3808), 1, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(3822), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, + ACTIONS(1538), 29, anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5328), 20, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358073,89 +496640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142967] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5425), 1, - sym__newline, - ACTIONS(6689), 1, - anon_sym_DASH2, - ACTIONS(6703), 1, - anon_sym_PLUS2, - STATE(3766), 1, - aux_sym_shebang_repeat1, - STATE(3809), 1, - sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143025] = 11, - ACTIONS(247), 1, + [143499] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3810), 1, + STATE(3823), 1, sym_comment, - ACTIONS(5320), 2, + STATE(3837), 1, + aux_sym_shebang_repeat1, + ACTIONS(5360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 18, - sym__newline, + ACTIONS(5358), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358173,28 +496702,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143081] = 8, - ACTIONS(247), 1, + [143557] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3811), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(3824), 1, sym_comment, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, + STATE(3839), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 3, + ACTIONS(5360), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5318), 21, - sym__newline, + ACTIONS(5358), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358215,77 +496745,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143131] = 4, - ACTIONS(247), 1, + [143609] = 13, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3812), 1, - sym_comment, - ACTIONS(2498), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2500), 23, - ts_builtin_sym_end, + ACTIONS(5451), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143173] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3813), 1, + STATE(3825), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3841), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 14, - sym__newline, + ACTIONS(5358), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358299,24 +496792,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143231] = 6, - ACTIONS(247), 1, + [143669] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3814), 1, + ACTIONS(5451), 1, + sym__newline, + STATE(3826), 1, sym_comment, - ACTIONS(6721), 2, + STATE(3843), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5320), 5, + ACTIONS(5360), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5318), 23, - sym__newline, + ACTIONS(5358), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358339,399 +496833,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143277] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6783), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6785), 1, - sym_filesize_unit, - ACTIONS(6787), 1, - sym_duration_unit, - STATE(3815), 1, - sym_comment, - ACTIONS(6781), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6779), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143325] = 17, - ACTIONS(247), 1, + [143717] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3816), 1, + STATE(3827), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3845), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(5358), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [143393] = 18, - ACTIONS(247), 1, + [143787] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6779), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3817), 1, + STATE(3828), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3847), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 4, - sym__newline, + ACTIONS(5358), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143463] = 19, - ACTIONS(247), 1, + [143859] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6779), 1, anon_sym_and2, - ACTIONS(6739), 1, + ACTIONS(6791), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3818), 1, + STATE(3829), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3849), 1, + aux_sym_shebang_repeat1, + ACTIONS(5358), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5318), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143535] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3075), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6789), 1, - sym_filesize_unit, - ACTIONS(6791), 1, - sym_duration_unit, - STATE(3819), 1, - sym_comment, - ACTIONS(3073), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143583] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6797), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6799), 1, - sym_filesize_unit, - ACTIONS(6801), 1, - sym_duration_unit, - STATE(3820), 1, - sym_comment, - ACTIONS(6795), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143631] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3821), 1, - sym_comment, - ACTIONS(2422), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2424), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143673] = 4, - ACTIONS(247), 1, + [143933] = 14, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3822), 1, - sym_comment, - ACTIONS(2426), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2428), 23, - ts_builtin_sym_end, + ACTIONS(5451), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143715] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3823), 1, + STATE(3830), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3851), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 10, - sym__newline, + ACTIONS(5358), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -358741,72 +497040,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143775] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6807), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6809), 1, - sym_filesize_unit, - ACTIONS(6811), 1, - sym_duration_unit, - STATE(3824), 1, - sym_comment, - ACTIONS(6805), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6803), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [143823] = 10, - ACTIONS(247), 1, + [143995] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3825), 1, + STATE(3831), 1, sym_comment, - ACTIONS(5320), 2, + STATE(3853), 1, + aux_sym_shebang_repeat1, + ACTIONS(5360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5318), 20, - sym__newline, + ACTIONS(5358), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358826,47 +497085,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143877] = 14, - ACTIONS(247), 1, + [144051] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3826), 1, + STATE(3832), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3856), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 8, - sym__newline, + ACTIONS(5358), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -358874,232 +497134,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143939] = 15, - ACTIONS(247), 1, + [144115] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(5451), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3827), 1, + STATE(3833), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3858), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 7, - sym__newline, + ACTIONS(5358), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144003] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3828), 1, - sym_comment, - ACTIONS(2436), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2438), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [144045] = 4, - ACTIONS(247), 1, + [144181] = 17, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3829), 1, - sym_comment, - ACTIONS(2514), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2516), 23, - ts_builtin_sym_end, + ACTIONS(5451), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [144087] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6725), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3830), 1, + STATE(3834), 1, sym_comment, - ACTIONS(6709), 2, + STATE(3860), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [144153] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3831), 1, - sym_comment, - ACTIONS(5304), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6721), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5302), 18, - sym__newline, - anon_sym_in2, + ACTIONS(5358), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144209] = 4, + [144249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3832), 1, + STATE(3835), 1, sym_comment, - ACTIONS(1681), 7, + ACTIONS(1768), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -359107,7 +497248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1683), 24, + ACTIONS(1770), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359132,76 +497273,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [144251] = 7, - ACTIONS(3), 1, + [144291] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6817), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6819), 1, - sym_filesize_unit, - ACTIONS(6821), 1, - sym_duration_unit, - STATE(3833), 1, + ACTIONS(5434), 1, + sym__newline, + STATE(3772), 1, + aux_sym_shebang_repeat1, + STATE(3836), 1, sym_comment, - ACTIONS(6815), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6813), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144299] = 12, - ACTIONS(247), 1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5340), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5338), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144343] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3734), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3834), 1, + STATE(3837), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 17, + ACTIONS(5354), 18, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359219,27 +497361,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144357] = 8, - ACTIONS(247), 1, + [144399] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(5421), 1, + sym__newline, + ACTIONS(6753), 1, + anon_sym_DASH2, + ACTIONS(6765), 1, + anon_sym_PLUS2, + STATE(3749), 1, aux_sym_shebang_repeat1, - STATE(3835), 1, + STATE(3838), 1, sym_comment, - ACTIONS(6715), 2, + ACTIONS(5364), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5362), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144457] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3839), 1, + sym_comment, + ACTIONS(6729), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5304), 3, + ACTIONS(5356), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5302), 21, + ACTIONS(5354), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -359261,29 +497449,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144407] = 9, - ACTIONS(247), 1, + [144507] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - STATE(3735), 1, + STATE(3750), 1, aux_sym_shebang_repeat1, - STATE(3836), 1, + STATE(3840), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 3, + ACTIONS(5364), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5306), 20, + ACTIONS(5362), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -359304,38 +497492,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144459] = 12, - ACTIONS(247), 1, + [144559] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3837), 1, + STATE(3841), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 14, + ACTIONS(5354), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -359350,78 +497538,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144517] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3838), 1, - sym_comment, - ACTIONS(2351), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2353), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [144559] = 13, - ACTIONS(247), 1, + [144617] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3736), 1, + STATE(3752), 1, aux_sym_shebang_repeat1, - STATE(3839), 1, + STATE(3842), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 13, + ACTIONS(5362), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359435,23 +497585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144619] = 6, - ACTIONS(247), 1, + [144677] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3840), 1, + STATE(3843), 1, sym_comment, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5304), 5, + ACTIONS(5356), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5302), 23, + ACTIONS(5354), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -359475,25 +497625,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144665] = 7, - ACTIONS(247), 1, + [144723] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - STATE(3737), 1, + STATE(3753), 1, aux_sym_shebang_repeat1, - STATE(3841), 1, + STATE(3844), 1, sym_comment, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5308), 5, + ACTIONS(5364), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5306), 22, + ACTIONS(5362), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -359516,550 +497666,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144713] = 17, - ACTIONS(247), 1, + [144771] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3842), 1, + STATE(3845), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 5, + ACTIONS(5354), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144781] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(3843), 1, - sym_comment, - ACTIONS(2238), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144825] = 18, - ACTIONS(247), 1, + [144839] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - STATE(3738), 1, + STATE(3730), 1, aux_sym_shebang_repeat1, - STATE(3844), 1, + STATE(3846), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 4, + ACTIONS(5362), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [144895] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3845), 1, - sym_comment, - ACTIONS(2355), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2357), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [144937] = 18, - ACTIONS(247), 1, + [144909] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6793), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3846), 1, + STATE(3847), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5302), 4, + ACTIONS(5354), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145007] = 19, - ACTIONS(247), 1, + [144979] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6779), 1, anon_sym_and2, - STATE(3739), 1, + STATE(3761), 1, aux_sym_shebang_repeat1, - STATE(3847), 1, + STATE(3848), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 3, + ACTIONS(5362), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6691), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [145079] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(3848), 1, - sym_comment, - ACTIONS(2246), 29, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6755), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145123] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3849), 1, - sym_comment, - ACTIONS(2122), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2128), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [145165] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3850), 1, - sym_comment, - ACTIONS(2359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2361), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [145207] = 19, - ACTIONS(247), 1, + [145051] = 19, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6793), 1, anon_sym_and2, - ACTIONS(6739), 1, + ACTIONS(6795), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3851), 1, + STATE(3849), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5302), 3, + ACTIONS(5354), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145279] = 20, - ACTIONS(247), 1, + [145123] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6779), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6791), 1, anon_sym_xor2, - STATE(3740), 1, + STATE(3762), 1, aux_sym_shebang_repeat1, - STATE(3852), 1, + STATE(3850), 1, sym_comment, - ACTIONS(5306), 2, + ACTIONS(5362), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145353] = 13, - ACTIONS(247), 1, + [145197] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3853), 1, + STATE(3851), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 10, + ACTIONS(5354), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -360070,45 +498028,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145413] = 14, - ACTIONS(247), 1, + [145257] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3741), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(3854), 1, + STATE(3852), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 9, + ACTIONS(5362), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -360118,30 +498076,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145475] = 10, - ACTIONS(247), 1, + [145319] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(3853), 1, sym_comment, - ACTIONS(5304), 2, + ACTIONS(5356), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5302), 20, + ACTIONS(5354), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -360162,70 +498120,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145529] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3856), 1, - sym_comment, - ACTIONS(2363), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2365), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [145571] = 11, - ACTIONS(247), 1, + [145373] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3742), 1, + STATE(3764), 1, aux_sym_shebang_repeat1, - STATE(3857), 1, + STATE(3854), 1, sym_comment, - ACTIONS(5308), 2, + ACTIONS(5364), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6749), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5306), 19, + ACTIONS(5362), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360245,84 +498165,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145627] = 4, - ACTIONS(247), 1, + [145429] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3858), 1, - sym_comment, - ACTIONS(2383), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2385), 23, - ts_builtin_sym_end, + ACTIONS(5434), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(6753), 1, + anon_sym_DASH2, + ACTIONS(6765), 1, + anon_sym_PLUS2, + STATE(3770), 1, + aux_sym_shebang_repeat1, + STATE(3855), 1, + sym_comment, + ACTIONS(5340), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5338), 17, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [145669] = 14, - ACTIONS(247), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145487] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3859), 1, + STATE(3856), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 8, + ACTIONS(5354), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -360331,48 +498259,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145731] = 15, - ACTIONS(247), 1, + [145549] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6689), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6765), 1, anon_sym_PLUS2, - STATE(3743), 1, + STATE(3765), 1, aux_sym_shebang_repeat1, - STATE(3860), 1, + STATE(3857), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6761), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6767), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6755), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 7, + ACTIONS(5362), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -360380,539 +498308,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145795] = 14, - ACTIONS(247), 1, + [145613] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5416), 1, - sym__newline, - ACTIONS(6689), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(6703), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - STATE(3853), 1, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3861), 1, + STATE(3858), 1, sym_comment, - ACTIONS(6687), 2, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6699), 2, + ACTIONS(6733), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 9, + ACTIONS(5354), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145857] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3862), 1, - sym_comment, - STATE(3922), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4470), 1, - sym__binary_predicate_parenthesized, - STATE(4481), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [145940] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3863), 1, - sym_comment, - STATE(3911), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4439), 1, - sym__binary_predicate_parenthesized, - STATE(4440), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [146023] = 25, - ACTIONS(247), 1, + [145677] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(5421), 1, sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3864), 1, - sym_comment, - STATE(3912), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4441), 1, - sym__binary_predicate_parenthesized, - STATE(4442), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [146106] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(6753), 1, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3865), 1, - sym_comment, - STATE(3884), 1, + ACTIONS(6765), 1, + anon_sym_PLUS2, + ACTIONS(6769), 1, + anon_sym_bit_DASHand2, + STATE(3767), 1, aux_sym_shebang_repeat1, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4517), 1, - sym__binary_predicate_parenthesized, - STATE(4520), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [146189] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3866), 1, + STATE(3859), 1, sym_comment, - ACTIONS(5243), 6, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6757), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5241), 24, - anon_sym_DASH_DASH, + ACTIONS(6761), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6755), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5362), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146230] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3867), 1, - sym_comment, - STATE(4916), 1, - sym_redirection, - ACTIONS(6825), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6827), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6823), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [146275] = 20, - ACTIONS(247), 1, + [145743] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5337), 1, + ACTIONS(6725), 1, anon_sym_DASH2, - ACTIONS(5351), 1, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(5355), 1, + ACTIONS(6743), 1, anon_sym_bit_DASHand2, - ACTIONS(5357), 1, + ACTIONS(6745), 1, anon_sym_bit_DASHxor2, - ACTIONS(5359), 1, - anon_sym_bit_DASHor2, - ACTIONS(5428), 1, - anon_sym_and2, - ACTIONS(5448), 1, - anon_sym_xor2, - ACTIONS(6829), 1, - anon_sym_or2, - STATE(3868), 1, - sym_comment, - STATE(3906), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(5335), 2, + STATE(3860), 1, + sym_comment, + ACTIONS(6723), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5341), 2, + ACTIONS(6729), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5347), 2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5349), 2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5353), 2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5339), 4, + ACTIONS(6727), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5343), 4, + ACTIONS(6731), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [146348] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(5354), 6, sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3869), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [145809] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3143), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6855), 1, + sym_filesize_unit, + ACTIONS(6857), 1, + sym_duration_unit, + STATE(3861), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, - sym_val_number, - STATE(4445), 1, - sym__binary_predicate_parenthesized, - STATE(4446), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [146431] = 25, - ACTIONS(247), 1, + ACTIONS(3141), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3139), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [145857] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3870), 1, + STATE(3862), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, + STATE(4042), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4451), 1, + STATE(4409), 1, sym__binary_predicate_parenthesized, - STATE(4452), 1, + STATE(4410), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146514] = 6, - ACTIONS(247), 1, + [145940] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3863), 1, + sym_comment, + ACTIONS(6859), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6861), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6863), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5269), 4, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5267), 20, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145987] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3871), 1, + STATE(3864), 1, sym_comment, - STATE(4804), 1, + STATE(4998), 1, sym_redirection, - ACTIONS(6825), 8, + ACTIONS(6867), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -360921,7 +498612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6827), 8, + ACTIONS(6869), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -360930,7 +498621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6831), 13, + ACTIONS(6865), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360944,151 +498635,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146559] = 25, - ACTIONS(247), 1, + [146032] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(5371), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_PLUS2, + ACTIONS(5391), 1, + anon_sym_bit_DASHand2, + ACTIONS(5393), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5458), 1, + anon_sym_xor2, + ACTIONS(6871), 1, + anon_sym_or2, + STATE(3865), 1, + sym_comment, + STATE(3867), 1, + aux_sym_shebang_repeat1, + ACTIONS(5373), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5377), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5381), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5387), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5389), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5383), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5385), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [146105] = 25, + ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3581), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6667), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, - anon_sym_LBRACE, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + ACTIONS(6873), 1, + anon_sym_LBRACE, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2483), 1, sym__expr_unary_minus, - STATE(3872), 1, + STATE(3866), 1, sym_comment, - STATE(3977), 1, + STATE(3996), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4398), 1, + STATE(4587), 1, sym__binary_predicate, - STATE(4400), 1, + STATE(4601), 1, sym__predicate, - STATE(4948), 1, + STATE(5060), 1, sym_val_closure, - ACTIONS(213), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4571), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5057), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146642] = 4, - ACTIONS(247), 1, + [146188] = 20, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3873), 1, - sym_comment, - ACTIONS(2246), 6, - anon_sym_GT2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(5397), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(5411), 1, anon_sym_PLUS2, - ACTIONS(2250), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(5415), 1, + anon_sym_bit_DASHand2, + ACTIONS(5417), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5419), 1, + anon_sym_bit_DASHor2, + ACTIONS(5432), 1, anon_sym_and2, + ACTIONS(5460), 1, anon_sym_xor2, + ACTIONS(6875), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3867), 1, + sym_comment, + ACTIONS(5395), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5401), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5405), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5407), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5409), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5413), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146683] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3874), 1, - sym_comment, - ACTIONS(2254), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2256), 24, - anon_sym_DASH_DASH, + ACTIONS(5399), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5403), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146724] = 4, - ACTIONS(247), 1, + [146261] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3875), 1, + STATE(3868), 1, sym_comment, - ACTIONS(5208), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5210), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361113,30 +498836,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146765] = 9, - ACTIONS(247), 1, + [146302] = 10, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3876), 1, + STATE(3869), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 18, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 14, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361146,28 +498874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146816] = 4, - ACTIONS(247), 1, + [146355] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3877), 1, + STATE(3870), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361192,26 +498916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146857] = 7, - ACTIONS(247), 1, + [146396] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3878), 1, + STATE(3871), 1, sym_comment, - ACTIONS(6835), 2, + ACTIONS(5269), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 4, - anon_sym_GT2, + ACTIONS(6879), 2, anon_sym_DASH2, - anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5237), 20, + ACTIONS(5267), 20, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361232,23 +498957,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146904] = 5, - ACTIONS(247), 1, + [146445] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(3879), 1, + STATE(3872), 1, sym_comment, - ACTIONS(1707), 5, + ACTIONS(6861), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1719), 24, - anon_sym_DASH2, + ACTIONS(5267), 22, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361261,8 +498988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -361270,19 +498995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146947] = 4, - ACTIONS(247), 1, + [146488] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3880), 1, + STATE(3873), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361307,62 +499032,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146988] = 10, - ACTIONS(247), 1, + [146529] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3881), 1, + STATE(3874), 1, sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6845), 4, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 14, - anon_sym_DASH_DASH, + ACTIONS(6885), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 10, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147041] = 4, - ACTIONS(247), 1, + [146584] = 13, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3882), 1, + ACTIONS(6889), 1, + anon_sym_bit_DASHand2, + STATE(3875), 1, + sym_comment, + ACTIONS(6859), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6861), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6863), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6885), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5267), 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146643] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3876), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(2345), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(2349), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361387,22 +499159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147082] = 5, - ACTIONS(247), 1, + [146684] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3883), 1, + STATE(3877), 1, sym_comment, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 22, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361418,6 +499187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -361425,77 +499196,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147125] = 25, - ACTIONS(247), 1, + [146725] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3884), 1, + STATE(3878), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, + STATE(3898), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, sym_val_number, - STATE(4457), 1, + STATE(4321), 1, sym__binary_predicate_parenthesized, - STATE(4458), 1, + STATE(4324), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147208] = 4, - ACTIONS(247), 1, + [146808] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3885), 1, + STATE(3879), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361520,67 +499291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147249] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6851), 1, - anon_sym_bit_DASHand2, - ACTIONS(6853), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6855), 1, - anon_sym_bit_DASHor2, - STATE(3886), 1, - sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6849), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6845), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6847), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [147312] = 4, - ACTIONS(247), 1, + [146849] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3887), 1, + STATE(3880), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5263), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5261), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361605,105 +499328,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147353] = 16, - ACTIONS(247), 1, + [146890] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6851), 1, + ACTIONS(6889), 1, anon_sym_bit_DASHand2, - ACTIONS(6853), 1, + ACTIONS(6891), 1, anon_sym_bit_DASHxor2, - ACTIONS(6855), 1, - anon_sym_bit_DASHor2, - ACTIONS(6857), 1, - anon_sym_and2, - STATE(3888), 1, + STATE(3881), 1, sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6849), 2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6887), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5237), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6845), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6847), 4, + ACTIONS(6885), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [147418] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3889), 1, - sym_comment, - ACTIONS(2238), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2242), 24, + ACTIONS(5267), 6, anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147459] = 4, - ACTIONS(247), 1, + [146951] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3890), 1, + STATE(3882), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361728,208 +499412,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147500] = 17, - ACTIONS(247), 1, + [146992] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6851), 1, - anon_sym_bit_DASHand2, - ACTIONS(6853), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6855), 1, - anon_sym_bit_DASHor2, - ACTIONS(6857), 1, - anon_sym_and2, - ACTIONS(6859), 1, - anon_sym_xor2, - STATE(3891), 1, - sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6849), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5237), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6845), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6847), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [147567] = 25, - ACTIONS(45), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6861), 1, - anon_sym_LBRACE, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3892), 1, + STATE(3883), 1, sym_comment, - STATE(3997), 1, + STATE(3916), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4576), 1, - sym__binary_predicate, - STATE(4579), 1, + STATE(4339), 1, + sym__binary_predicate_parenthesized, + STATE(4358), 1, sym__predicate, - STATE(5129), 1, - sym_val_closure, - ACTIONS(89), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147650] = 4, - ACTIONS(247), 1, + [147075] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3893), 1, + STATE(3884), 1, sym_comment, - ACTIONS(5180), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6859), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147691] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(6833), 2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6879), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, + ACTIONS(6883), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6845), 4, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6847), 4, + ACTIONS(6885), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 10, + ACTIONS(5267), 8, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147746] = 4, - ACTIONS(247), 1, + [147132] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3895), 1, + STATE(3885), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361954,80 +499552,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147787] = 25, - ACTIONS(247), 1, + [147173] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6687), 1, + anon_sym_LBRACE, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3896), 1, + STATE(3886), 1, sym_comment, - STATE(3914), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4459), 1, - sym__binary_predicate_parenthesized, - STATE(4460), 1, + STATE(4488), 1, + sym__binary_predicate, + STATE(4489), 1, sym__predicate, - ACTIONS(213), 2, + STATE(4838), 1, + sym_val_closure, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147870] = 4, - ACTIONS(247), 1, + [147256] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3897), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + STATE(3887), 1, sym_comment, - ACTIONS(5239), 6, + ACTIONS(1788), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 24, - anon_sym_DASH_DASH, + ACTIONS(1800), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362049,19 +499648,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147911] = 4, - ACTIONS(247), 1, + [147299] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3898), 1, + STATE(3888), 1, + sym_comment, + STATE(4976), 1, + sym_redirection, + ACTIONS(6867), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6869), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6893), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [147344] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3889), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4453), 1, + sym__binary_predicate_parenthesized, + STATE(4517), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [147427] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3890), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(2353), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(2355), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -362086,218 +499782,637 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147952] = 8, - ACTIONS(247), 1, + [147468] = 20, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3899), 1, - sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6833), 2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6753), 1, anon_sym_DASH2, + ACTIONS(6765), 1, anon_sym_PLUS2, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5237), 20, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6769), 1, anon_sym_bit_DASHand2, + ACTIONS(6771), 1, anon_sym_bit_DASHxor2, + ACTIONS(6773), 1, anon_sym_bit_DASHor2, - [148001] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3900), 1, + ACTIONS(6779), 1, + anon_sym_and2, + ACTIONS(6791), 1, + anon_sym_xor2, + ACTIONS(6895), 1, + anon_sym_or2, + STATE(3891), 1, sym_comment, - ACTIONS(5180), 6, + STATE(3899), 1, + aux_sym_shebang_repeat1, + ACTIONS(6749), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6751), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6757), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, + ACTIONS(6761), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6767), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6755), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6759), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [147541] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3892), 1, + sym_comment, + STATE(3922), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4497), 1, + sym__binary_predicate_parenthesized, + STATE(4498), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [147624] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6889), 1, anon_sym_bit_DASHand2, + ACTIONS(6891), 1, anon_sym_bit_DASHxor2, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - [148042] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3901), 1, + STATE(3893), 1, sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6849), 2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6887), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6845), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6847), 4, + ACTIONS(6885), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 8, + ACTIONS(5267), 5, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148099] = 6, - ACTIONS(247), 1, + [147687] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6632), 1, + ACTIONS(393), 1, anon_sym_DASH2, - STATE(3902), 1, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3894), 1, sym_comment, - ACTIONS(5206), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(5208), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5210), 22, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148144] = 4, - ACTIONS(247), 1, + STATE(3923), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4501), 1, + sym__binary_predicate_parenthesized, + STATE(4502), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [147770] = 25, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3903), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3862), 1, + aux_sym_shebang_repeat1, + STATE(3895), 1, sym_comment, - ACTIONS(5180), 6, - anon_sym_GT2, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4503), 1, + sym__binary_predicate_parenthesized, + STATE(4504), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [147853] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3896), 1, + sym_comment, + STATE(3928), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4508), 1, + sym__binary_predicate_parenthesized, + STATE(4510), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [147936] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3897), 1, + sym_comment, + STATE(3931), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4513), 1, + sym__binary_predicate_parenthesized, + STATE(4515), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148019] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3898), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4473), 1, + sym__binary_predicate_parenthesized, + STATE(4474), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148102] = 20, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6725), 1, + anon_sym_DASH2, + ACTIONS(6739), 1, anon_sym_PLUS2, - ACTIONS(5178), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6743), 1, + anon_sym_bit_DASHand2, + ACTIONS(6745), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6747), 1, + anon_sym_bit_DASHor2, + ACTIONS(6793), 1, anon_sym_and2, + ACTIONS(6795), 1, anon_sym_xor2, + ACTIONS(6899), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(3899), 1, + sym_comment, + ACTIONS(6723), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6729), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6733), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6735), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148185] = 4, - ACTIONS(247), 1, + ACTIONS(6727), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6731), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [148175] = 25, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3904), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3900), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4388), 1, + sym__binary_predicate_parenthesized, + STATE(4395), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148258] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3901), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4493), 1, + sym__binary_predicate_parenthesized, + STATE(4494), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148341] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3902), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -362322,119 +500437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148226] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6851), 1, - anon_sym_bit_DASHand2, - ACTIONS(6853), 1, - anon_sym_bit_DASHxor2, - STATE(3905), 1, - sym_comment, - ACTIONS(6833), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6849), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6845), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6847), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 6, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [148287] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(5365), 1, - anon_sym_DASH2, - ACTIONS(5377), 1, - anon_sym_PLUS2, - ACTIONS(5381), 1, - anon_sym_bit_DASHand2, - ACTIONS(5383), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5423), 1, - anon_sym_bit_DASHor2, - ACTIONS(5434), 1, - anon_sym_and2, - ACTIONS(5436), 1, - anon_sym_xor2, - ACTIONS(6863), 1, - anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3906), 1, - sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5363), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5369), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5373), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5375), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5379), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5367), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5371), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [148360] = 4, - ACTIONS(247), 1, + [148382] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3907), 1, + STATE(3903), 1, sym_comment, - ACTIONS(5180), 6, + ACTIONS(2337), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5178), 24, + ACTIONS(2341), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -362459,22 +500474,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148401] = 4, - ACTIONS(247), 1, + [148423] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3908), 1, + ACTIONS(6666), 1, + anon_sym_DASH2, + STATE(3904), 1, sym_comment, - ACTIONS(5235), 6, + ACTIONS(5249), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(5251), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5233), 24, - anon_sym_DASH_DASH, + ACTIONS(5253), 22, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362496,19 +500513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148442] = 4, - ACTIONS(247), 1, + [148468] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3909), 1, + STATE(3905), 1, sym_comment, - ACTIONS(5247), 6, + ACTIONS(5290), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5245), 24, + ACTIONS(5288), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -362533,985 +500550,1163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148483] = 25, - ACTIONS(247), 1, + [148509] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3910), 1, + STATE(3901), 1, + aux_sym_shebang_repeat1, + STATE(3906), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4476), 1, + STATE(4369), 1, sym__binary_predicate_parenthesized, - STATE(4477), 1, + STATE(4506), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148566] = 25, - ACTIONS(247), 1, + [148592] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3911), 1, + STATE(3907), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, - sym_val_number, - STATE(4480), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148649] = 25, - ACTIONS(247), 1, + ACTIONS(2407), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2409), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148633] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3912), 1, + STATE(3908), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, + STATE(4042), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4488), 1, + STATE(4406), 1, sym__binary_predicate_parenthesized, - STATE(4489), 1, + STATE(4408), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148732] = 25, - ACTIONS(247), 1, + [148716] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3913), 1, + STATE(3909), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, - sym_val_number, - STATE(4427), 1, - sym__binary_predicate_parenthesized, - STATE(4428), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148815] = 25, - ACTIONS(247), 1, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148757] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3914), 1, + STATE(3910), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, + STATE(4042), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4502), 1, + STATE(4414), 1, sym__binary_predicate_parenthesized, - STATE(4503), 1, + STATE(4415), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148898] = 20, - ACTIONS(247), 1, + [148840] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6689), 1, + STATE(3911), 1, + sym_comment, + ACTIONS(5216), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6703), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6707), 1, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6741), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + [148881] = 20, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6253), 1, + anon_sym_DASH2, + ACTIONS(6259), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6269), 1, + anon_sym_PLUS2, + ACTIONS(6273), 1, + anon_sym_bit_DASHand2, + ACTIONS(6275), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6277), 1, + anon_sym_bit_DASHor2, + ACTIONS(6309), 1, anon_sym_xor2, - ACTIONS(6865), 1, + ACTIONS(6901), 1, anon_sym_or2, - STATE(3915), 1, + STATE(3912), 1, sym_comment, - STATE(3916), 1, + STATE(3915), 1, aux_sym_shebang_repeat1, - ACTIONS(6687), 2, + ACTIONS(6251), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6693), 2, + ACTIONS(6257), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6697), 2, + ACTIONS(6263), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6699), 2, + ACTIONS(6265), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6701), 2, + ACTIONS(6267), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6705), 2, + ACTIONS(6271), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6691), 4, + ACTIONS(6255), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6695), 4, + ACTIONS(6261), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [148971] = 20, - ACTIONS(247), 1, + [148954] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6711), 1, - anon_sym_DASH2, - ACTIONS(6725), 1, - anon_sym_PLUS2, - ACTIONS(6729), 1, + ACTIONS(6889), 1, anon_sym_bit_DASHand2, - ACTIONS(6731), 1, + ACTIONS(6891), 1, anon_sym_bit_DASHxor2, - ACTIONS(6735), 1, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - ACTIONS(6737), 1, + ACTIONS(6903), 1, anon_sym_and2, - ACTIONS(6739), 1, - anon_sym_xor2, - ACTIONS(6867), 1, - anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3916), 1, + STATE(3913), 1, sym_comment, - ACTIONS(6709), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6715), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6719), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6721), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6723), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6717), 4, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5267), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [149044] = 25, - ACTIONS(247), 1, + ACTIONS(6885), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149019] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3917), 1, + STATE(3889), 1, + aux_sym_shebang_repeat1, + STATE(3914), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4506), 1, + STATE(4516), 1, sym__binary_predicate_parenthesized, - STATE(4507), 1, + STATE(4518), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149127] = 25, - ACTIONS(247), 1, + [149102] = 20, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3917), 1, + ACTIONS(6283), 1, + anon_sym_DASH2, + ACTIONS(6295), 1, + anon_sym_PLUS2, + ACTIONS(6299), 1, + anon_sym_bit_DASHand2, + ACTIONS(6301), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6303), 1, + anon_sym_bit_DASHor2, + ACTIONS(6305), 1, + anon_sym_and2, + ACTIONS(6307), 1, + anon_sym_xor2, + ACTIONS(6905), 1, + anon_sym_or2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(3918), 1, + STATE(3915), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4465), 1, - sym__binary_predicate_parenthesized, - STATE(4466), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [149210] = 25, - ACTIONS(247), 1, + ACTIONS(6279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6291), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6293), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6297), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6289), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [149175] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3919), 1, + STATE(3916), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, + STATE(4042), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4435), 1, + STATE(4483), 1, sym__binary_predicate_parenthesized, - STATE(4437), 1, + STATE(4486), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149293] = 20, - ACTIONS(247), 1, + [149258] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6233), 1, + STATE(3917), 1, + sym_comment, + ACTIONS(5251), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6241), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6267), 1, - anon_sym_bit_DASHand2, - ACTIONS(6269), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6271), 1, - anon_sym_bit_DASHor2, - ACTIONS(6275), 1, + ACTIONS(5253), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6279), 1, anon_sym_xor2, - ACTIONS(6869), 1, anon_sym_or2, - STATE(3920), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [149299] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3918), 1, sym_comment, - STATE(3921), 1, - aux_sym_shebang_repeat1, - ACTIONS(6235), 2, + ACTIONS(5269), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6237), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6239), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6243), 2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6265), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(5267), 18, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6263), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [149350] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3919), 1, + sym_comment, + ACTIONS(5294), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5292), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [149366] = 20, - ACTIONS(247), 1, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [149391] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6221), 1, - anon_sym_DASH2, - ACTIONS(6229), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6889), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6891), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - ACTIONS(6273), 1, + ACTIONS(6903), 1, anon_sym_and2, - ACTIONS(6277), 1, + ACTIONS(6907), 1, anon_sym_xor2, - ACTIONS(6871), 1, - anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(3921), 1, + STATE(3920), 1, sym_comment, - ACTIONS(6223), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6225), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6227), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6231), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6245), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6879), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6883), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6887), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 4, + ACTIONS(5267), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6885), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149458] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3921), 1, + sym_comment, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [149439] = 25, - ACTIONS(247), 1, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [149499] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3922), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4049), 1, + STATE(4042), 1, aux_sym_shebang_repeat1, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4518), 1, - sym__binary_predicate_parenthesized, - STATE(4519), 1, + STATE(4342), 1, sym__predicate, - ACTIONS(213), 2, + STATE(4365), 1, + sym__binary_predicate_parenthesized, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149522] = 25, - ACTIONS(247), 1, + [149582] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3913), 1, - aux_sym_shebang_repeat1, STATE(3923), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, sym_val_number, - STATE(4420), 1, - sym__predicate, - STATE(4521), 1, + STATE(4390), 1, sym__binary_predicate_parenthesized, - ACTIONS(213), 2, + STATE(4391), 1, + sym__predicate, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149605] = 25, - ACTIONS(247), 1, + [149665] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3870), 1, + STATE(3900), 1, aux_sym_shebang_repeat1, STATE(3924), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4512), 1, + STATE(4412), 1, sym__binary_predicate_parenthesized, - STATE(4513), 1, + STATE(4417), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149688] = 25, - ACTIONS(247), 1, + [149748] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, + STATE(3908), 1, + aux_sym_shebang_repeat1, STATE(3925), 1, sym_comment, - STATE(3928), 1, - aux_sym_shebang_repeat1, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4475), 1, + STATE(4447), 1, sym__binary_predicate_parenthesized, - STATE(4484), 1, + STATE(4455), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149771] = 25, - ACTIONS(247), 1, + [149831] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3910), 1, aux_sym_shebang_repeat1, STATE(3926), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4316), 1, + STATE(4320), 1, sym__binary_predicate_parenthesized, - STATE(4438), 1, + STATE(4331), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149854] = 4, - ACTIONS(247), 1, + [149914] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3927), 1, sym_comment, - ACTIONS(2268), 6, + ACTIONS(5216), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5214), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [149955] = 25, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6681), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(3928), 1, + sym_comment, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, + sym_val_number, + STATE(4378), 1, + sym__binary_predicate_parenthesized, + STATE(4521), 1, + sym__predicate, + ACTIONS(217), 2, + anon_sym_true, + anon_sym_false, + STATE(4491), 2, + sym_expr_unary, + sym_val_bool, + STATE(5071), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [150038] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3929), 1, + sym_comment, + ACTIONS(5216), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2270), 24, + ACTIONS(5214), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -363536,240 +501731,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [149895] = 25, - ACTIONS(247), 1, + [150079] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3928), 1, + STATE(3930), 1, sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4049), 1, - aux_sym_shebang_repeat1, - STATE(4297), 1, - sym_val_number, - STATE(4431), 1, - sym__binary_predicate_parenthesized, - STATE(4432), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [149978] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(5269), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3919), 1, - aux_sym_shebang_repeat1, - STATE(3929), 1, - sym_comment, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4486), 1, - sym__binary_predicate_parenthesized, - STATE(4490), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [150061] = 25, - ACTIONS(247), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5267), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [150120] = 25, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6681), 1, sym__newline, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3869), 1, - aux_sym_shebang_repeat1, - STATE(3930), 1, + STATE(3931), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, sym_val_number, - STATE(4510), 1, + STATE(4457), 1, sym__binary_predicate_parenthesized, - STATE(4511), 1, + STATE(4477), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [150144] = 13, - ACTIONS(247), 1, + [150203] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6851), 1, - anon_sym_bit_DASHand2, - STATE(3931), 1, + ACTIONS(3277), 1, + aux_sym_cmd_identifier_token41, + STATE(3932), 1, sym_comment, - ACTIONS(6833), 2, + ACTIONS(3275), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3273), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150245] = 13, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6911), 1, anon_sym_DASH2, + ACTIONS(6925), 1, anon_sym_PLUS2, - ACTIONS(6835), 2, + STATE(3933), 1, + sym_comment, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6837), 2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6849), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6845), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6847), 4, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 7, - anon_sym_DASH_DASH, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150203] = 5, + [150303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6877), 1, + ACTIONS(6933), 1, aux_sym_cmd_identifier_token41, - STATE(3932), 1, + STATE(3934), 1, + sym_comment, + ACTIONS(6931), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6929), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150345] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3935), 1, + sym_comment, + STATE(5175), 1, + sym_redirection, + ACTIONS(6867), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6869), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6935), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [150389] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6941), 1, + aux_sym_cmd_identifier_token41, + STATE(3936), 1, sym_comment, - ACTIONS(6875), 5, + ACTIONS(6939), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6873), 23, + ACTIONS(6937), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -363793,336 +502020,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [150245] = 17, - ACTIONS(247), 1, + [150431] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3937), 1, + sym_comment, + STATE(5084), 1, + sym_redirection, + ACTIONS(6943), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6945), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6893), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [150475] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6887), 1, - anon_sym_and2, - ACTIONS(6897), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - ACTIONS(6901), 1, - anon_sym_bit_DASHand2, - ACTIONS(6903), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6905), 1, - anon_sym_bit_DASHor2, - STATE(3933), 1, + STATE(3938), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6891), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 3, - anon_sym_EQ_GT, + ACTIONS(5267), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6883), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [150311] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6881), 1, - anon_sym_DASH2, - ACTIONS(6887), 1, - anon_sym_and2, - ACTIONS(6897), 1, - anon_sym_PLUS2, - ACTIONS(6901), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, - ACTIONS(6903), 1, anon_sym_bit_DASHxor2, - ACTIONS(6905), 1, anon_sym_bit_DASHor2, - ACTIONS(6907), 1, - anon_sym_xor2, - STATE(3934), 1, + [150527] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + STATE(3939), 1, sym_comment, - ACTIONS(5237), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(6879), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6891), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(5267), 19, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [150379] = 12, - ACTIONS(247), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [150577] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, - anon_sym_DASH2, - ACTIONS(6897), 1, - anon_sym_PLUS2, - STATE(3935), 1, + STATE(3940), 1, sym_comment, - ACTIONS(6879), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6893), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(5269), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5267), 20, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 9, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150435] = 9, - ACTIONS(247), 1, + [150623] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6897), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3936), 1, + STATE(3941), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 19, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6959), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5267), 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150485] = 13, - ACTIONS(247), 1, + [150681] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6897), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - STATE(3937), 1, + ACTIONS(6967), 1, + anon_sym_bit_DASHand2, + STATE(3942), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(6909), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6891), 2, + ACTIONS(6919), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, + ACTIONS(6917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 7, - anon_sym_EQ_GT, + ACTIONS(5267), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150543] = 14, - ACTIONS(247), 1, + [150741] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6897), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6901), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand2, - STATE(3938), 1, + STATE(3943), 1, sym_comment, - ACTIONS(6879), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6891), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(6959), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 6, + ACTIONS(5267), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150603] = 15, - ACTIONS(247), 1, + [150801] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6897), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6901), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand2, - ACTIONS(6903), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor2, - STATE(3939), 1, + STATE(3944), 1, sym_comment, - ACTIONS(6879), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6891), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(6959), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 5, + ACTIONS(5267), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [150665] = 6, - ACTIONS(247), 1, + [150863] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3940), 1, + STATE(3945), 1, sym_comment, - STATE(5111), 1, + STATE(5021), 1, sym_redirection, - ACTIONS(6825), 8, + ACTIONS(6867), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -364131,7 +502380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6827), 8, + ACTIONS(6869), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -364140,7 +502389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6909), 12, + ACTIONS(6973), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364153,167 +502402,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [150709] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6915), 1, - aux_sym_cmd_identifier_token41, - STATE(3941), 1, - sym_comment, - ACTIONS(6913), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6911), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150751] = 4, - ACTIONS(247), 1, + [150907] = 15, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3942), 1, + ACTIONS(6911), 1, + anon_sym_DASH2, + ACTIONS(6925), 1, + anon_sym_PLUS2, + ACTIONS(6967), 1, + anon_sym_bit_DASHand2, + ACTIONS(6975), 1, + anon_sym_bit_DASHxor2, + STATE(3946), 1, sym_comment, - ACTIONS(5258), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5252), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6921), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6923), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6927), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6913), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 5, anon_sym_LBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [150791] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3199), 1, - aux_sym_cmd_identifier_token41, - STATE(3943), 1, - sym_comment, - ACTIONS(3197), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3195), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150833] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6921), 1, - aux_sym_cmd_identifier_token41, - STATE(3944), 1, - sym_comment, - ACTIONS(6919), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6917), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [150875] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [150969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6927), 1, + ACTIONS(6981), 1, aux_sym_cmd_identifier_token41, - STATE(3945), 1, + STATE(3947), 1, sym_comment, - ACTIONS(6925), 5, + ACTIONS(6979), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6923), 23, + ACTIONS(6977), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364337,145 +502486,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [150917] = 7, - ACTIONS(247), 1, + [151011] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3946), 1, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + STATE(3948), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, + ACTIONS(6957), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 20, - anon_sym_DASH2, + ACTIONS(6965), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6959), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150963] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3947), 1, - sym_comment, - ACTIONS(6893), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5237), 22, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5267), 9, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151005] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6881), 1, - anon_sym_DASH2, - ACTIONS(6897), 1, - anon_sym_PLUS2, - ACTIONS(6901), 1, anon_sym_bit_DASHand2, - ACTIONS(6903), 1, anon_sym_bit_DASHxor2, - ACTIONS(6905), 1, anon_sym_bit_DASHor2, - STATE(3948), 1, - sym_comment, - ACTIONS(6879), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6891), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5237), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6883), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151069] = 5, - ACTIONS(247), 1, + [151067] = 5, + ACTIONS(255), 1, anon_sym_POUND, STATE(3949), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, + ACTIONS(5269), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 22, + ACTIONS(5267), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -364498,20 +502567,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151111] = 5, + [151109] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3950), 1, + sym_comment, + ACTIONS(5286), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5280), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [151149] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6939), 1, + ACTIONS(6987), 1, aux_sym_cmd_identifier_token41, - STATE(3950), 1, + STATE(3951), 1, sym_comment, - ACTIONS(6937), 5, + ACTIONS(6985), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6935), 23, + ACTIONS(6983), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364535,243 +502640,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151153] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3951), 1, - sym_comment, - STATE(5014), 1, - sym_redirection, - ACTIONS(6941), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6943), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6831), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [151197] = 16, - ACTIONS(247), 1, + [151191] = 16, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6955), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - ACTIONS(6959), 1, + ACTIONS(6967), 1, anon_sym_bit_DASHand2, - ACTIONS(6961), 1, + ACTIONS(6975), 1, anon_sym_bit_DASHxor2, - ACTIONS(6963), 1, + ACTIONS(6989), 1, anon_sym_bit_DASHor2, STATE(3952), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 4, + ACTIONS(5267), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6949), 4, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, + ACTIONS(6917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [151261] = 17, - ACTIONS(247), 1, + [151255] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6955), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - ACTIONS(6959), 1, + ACTIONS(6967), 1, anon_sym_bit_DASHand2, - ACTIONS(6961), 1, + ACTIONS(6975), 1, anon_sym_bit_DASHxor2, - ACTIONS(6963), 1, + ACTIONS(6989), 1, anon_sym_bit_DASHor2, - ACTIONS(6965), 1, + ACTIONS(6991), 1, anon_sym_and2, STATE(3953), 1, sym_comment, - ACTIONS(6929), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6931), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, + ACTIONS(6909), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5237), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6949), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151327] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DASH2, - ACTIONS(6955), 1, - anon_sym_PLUS2, - ACTIONS(6959), 1, - anon_sym_bit_DASHand2, - ACTIONS(6961), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6963), 1, - anon_sym_bit_DASHor2, - ACTIONS(6965), 1, - anon_sym_and2, - ACTIONS(6967), 1, - anon_sym_xor2, - STATE(3954), 1, - sym_comment, - ACTIONS(5237), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6929), 2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6953), 2, + ACTIONS(6919), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151395] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DASH2, - ACTIONS(6955), 1, - anon_sym_PLUS2, - STATE(3955), 1, - sym_comment, - ACTIONS(6929), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6957), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, + ACTIONS(5267), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, + ACTIONS(6917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151451] = 6, - ACTIONS(247), 1, + [151321] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3956), 1, + STATE(3954), 1, sym_comment, - STATE(5037), 1, + STATE(5136), 1, sym_redirection, - ACTIONS(6825), 8, + ACTIONS(6943), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -364780,7 +502753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6827), 8, + ACTIONS(6945), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -364789,7 +502762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6969), 12, + ACTIONS(6865), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364801,9 +502775,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [151495] = 10, - ACTIONS(247), 1, + [151365] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6997), 1, + aux_sym_cmd_identifier_token41, + STATE(3955), 1, + sym_comment, + ACTIONS(6995), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6993), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151407] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6911), 1, + anon_sym_DASH2, + ACTIONS(6925), 1, + anon_sym_PLUS2, + ACTIONS(6967), 1, + anon_sym_bit_DASHand2, + ACTIONS(6975), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6989), 1, + anon_sym_bit_DASHor2, + ACTIONS(6991), 1, + anon_sym_and2, + ACTIONS(6999), 1, + anon_sym_xor2, + STATE(3956), 1, + sym_comment, + ACTIONS(5267), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6921), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6923), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6927), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6913), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151475] = 10, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(6947), 1, anon_sym_DASH2, @@ -364811,24 +502871,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, STATE(3957), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5269), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6929), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6957), 2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 17, + ACTIONS(5267), 17, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364844,119 +502904,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151547] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3958), 1, - sym_comment, - STATE(5103), 1, - sym_redirection, - ACTIONS(6941), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6943), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6823), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [151591] = 13, - ACTIONS(247), 1, + [151527] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6955), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - STATE(3959), 1, + STATE(3958), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6921), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6923), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, + ACTIONS(6917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 7, + ACTIONS(5267), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151649] = 11, - ACTIONS(247), 1, + [151583] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6955), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - STATE(3960), 1, + STATE(3959), 1, sym_comment, - ACTIONS(6929), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6931), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6957), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6951), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 13, + ACTIONS(5269), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6921), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6923), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5267), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364965,25 +502978,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151703] = 5, + [151633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6975), 1, + ACTIONS(7005), 1, aux_sym_cmd_identifier_token41, - STATE(3961), 1, + STATE(3960), 1, sym_comment, - ACTIONS(6973), 5, + ACTIONS(7003), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6971), 23, + ACTIONS(7001), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365007,154 +503026,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151745] = 14, - ACTIONS(247), 1, + [151675] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DASH2, - ACTIONS(6955), 1, - anon_sym_PLUS2, - ACTIONS(6959), 1, - anon_sym_bit_DASHand2, - STATE(3962), 1, + STATE(3961), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, + ACTIONS(5269), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, + anon_sym_PLUS2, + ACTIONS(5267), 20, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151805] = 15, - ACTIONS(247), 1, + [151721] = 11, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(6947), 1, anon_sym_DASH2, ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6959), 1, - anon_sym_bit_DASHand2, - ACTIONS(6961), 1, - anon_sym_bit_DASHxor2, - STATE(3963), 1, + STATE(3962), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, + ACTIONS(6957), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [151867] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DASH2, - ACTIONS(6955), 1, - anon_sym_PLUS2, - STATE(3964), 1, - sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6929), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6931), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5237), 19, + ACTIONS(5267), 13, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151917] = 5, + [151775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3187), 1, + ACTIONS(3283), 1, aux_sym_cmd_identifier_token41, - STATE(3965), 1, + STATE(3963), 1, sym_comment, - ACTIONS(3185), 5, + ACTIONS(3281), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 23, + ACTIONS(3279), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365178,31 +503145,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151959] = 10, - ACTIONS(247), 1, + [151817] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, - anon_sym_DASH2, - ACTIONS(6897), 1, - anon_sym_PLUS2, - STATE(3966), 1, + STATE(3964), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(6951), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6893), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5237), 17, + anon_sym_PLUS2, + ACTIONS(5267), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -365217,105 +503175,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [152011] = 7, - ACTIONS(247), 1, + [151859] = 16, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3967), 1, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + ACTIONS(6969), 1, + anon_sym_bit_DASHand2, + ACTIONS(6971), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7007), 1, + anon_sym_bit_DASHor2, + STATE(3965), 1, sym_comment, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, + ACTIONS(6957), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 20, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5267), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6959), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152057] = 11, - ACTIONS(247), 1, + [151923] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6897), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3968), 1, + ACTIONS(6969), 1, + anon_sym_bit_DASHand2, + ACTIONS(6971), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7007), 1, + anon_sym_bit_DASHor2, + ACTIONS(7009), 1, + anon_sym_and2, + STATE(3966), 1, sym_comment, - ACTIONS(6879), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6885), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6893), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6889), 4, + ACTIONS(5267), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6959), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 13, - anon_sym_in2, - anon_sym_EQ_GT, + [151989] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + ACTIONS(6969), 1, + anon_sym_bit_DASHand2, + ACTIONS(6971), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7007), 1, + anon_sym_bit_DASHor2, + ACTIONS(7009), 1, anon_sym_and2, + ACTIONS(7011), 1, anon_sym_xor2, + STATE(3967), 1, + sym_comment, + ACTIONS(5267), 2, + anon_sym_EQ_GT, anon_sym_or2, + ACTIONS(6949), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6951), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6953), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6959), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152111] = 5, + ACTIONS(6961), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [152057] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6981), 1, + ACTIONS(7017), 1, aux_sym_cmd_identifier_token41, - STATE(3969), 1, + STATE(3968), 1, sym_comment, - ACTIONS(6979), 5, + ACTIONS(7015), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6977), 23, + ACTIONS(7013), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365339,317 +503366,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [152153] = 23, - ACTIONS(45), 1, + [152099] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(247), 1, + ACTIONS(6925), 1, + anon_sym_PLUS2, + STATE(3969), 1, + sym_comment, + ACTIONS(6909), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6921), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6923), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6927), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [152153] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3521), 1, - aux_sym_expr_unary_token1, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2523), 1, - sym__expr_unary_minus, STATE(3970), 1, sym_comment, - STATE(3997), 1, - sym_expr_parenthesized, - STATE(4297), 1, - sym_val_number, - STATE(4523), 1, - sym__binary_predicate, - STATE(4553), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4582), 2, - sym_expr_unary, - sym_val_bool, - STATE(5062), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [152230] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(247), 1, + ACTIONS(5255), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5249), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [152192] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3971), 1, sym_comment, - STATE(3997), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4587), 1, - sym__predicate, - STATE(4599), 1, + STATE(4431), 1, sym__binary_predicate, - ACTIONS(89), 2, + STATE(4432), 1, + sym__predicate, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152307] = 4, - ACTIONS(247), 1, + [152269] = 18, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6408), 1, + anon_sym_DASH2, + ACTIONS(6416), 1, + anon_sym_PLUS2, + ACTIONS(6428), 1, + anon_sym_bit_DASHand2, + ACTIONS(6430), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6432), 1, + anon_sym_bit_DASHor2, + ACTIONS(6434), 1, + anon_sym_and2, + ACTIONS(6436), 1, + anon_sym_xor2, + ACTIONS(7019), 1, + anon_sym_or2, STATE(3972), 1, sym_comment, - ACTIONS(1820), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1828), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [152346] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(247), 1, + ACTIONS(6410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6418), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6426), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6422), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6424), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [152336] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3973), 1, sym_comment, - STATE(3997), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4608), 1, - sym__predicate, - STATE(4623), 1, + STATE(4435), 1, sym__binary_predicate, - ACTIONS(89), 2, + STATE(4436), 1, + sym__predicate, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152423] = 23, - ACTIONS(247), 1, + [152413] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3974), 1, sym_comment, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4352), 1, + STATE(4437), 1, sym__binary_predicate, - STATE(4353), 1, + STATE(4438), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152500] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(247), 1, + [152490] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(393), 1, + anon_sym_DASH2, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2146), 1, sym__expr_unary_minus, STATE(3975), 1, sym_comment, - STATE(3997), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4573), 1, - sym__predicate, - STATE(4616), 1, + STATE(4440), 1, sym__binary_predicate, - ACTIONS(89), 2, + STATE(4441), 1, + sym__predicate, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152577] = 4, - ACTIONS(247), 1, + [152567] = 18, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(5489), 1, + anon_sym_DASH2, + ACTIONS(5497), 1, + anon_sym_PLUS2, + ACTIONS(5509), 1, + anon_sym_bit_DASHand2, + ACTIONS(5511), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5513), 1, + anon_sym_bit_DASHor2, + ACTIONS(5515), 1, + anon_sym_and2, + ACTIONS(5517), 1, + anon_sym_xor2, + ACTIONS(7021), 1, + anon_sym_or2, STATE(3976), 1, sym_comment, - ACTIONS(2272), 8, + ACTIONS(5491), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5493), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5495), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5499), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5501), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5507), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5503), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5505), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [152634] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3977), 1, + sym_comment, + ACTIONS(2333), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365658,7 +503772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2276), 20, + ACTIONS(2335), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365679,104 +503793,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [152616] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3977), 1, - sym_comment, - ACTIONS(6985), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6991), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6987), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6989), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6983), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152661] = 23, - ACTIONS(247), 1, + [152673] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3977), 1, - sym_expr_parenthesized, STATE(3978), 1, sym_comment, - STATE(4297), 1, + STATE(3985), 1, + sym_expr_parenthesized, + STATE(4283), 1, sym_val_number, - STATE(4354), 1, + STATE(4442), 1, sym__binary_predicate, - STATE(4355), 1, + STATE(4443), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152738] = 4, - ACTIONS(247), 1, + [152750] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3979), 1, sym_comment, - ACTIONS(2230), 8, + ACTIONS(1950), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365785,7 +503861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2232), 20, + ACTIONS(1958), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365806,414 +503882,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [152777] = 18, - ACTIONS(247), 1, + [152789] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DASH2, - ACTIONS(6955), 1, + ACTIONS(6879), 1, anon_sym_PLUS2, - ACTIONS(6959), 1, + ACTIONS(6889), 1, anon_sym_bit_DASHand2, - ACTIONS(6961), 1, + ACTIONS(6891), 1, anon_sym_bit_DASHxor2, - ACTIONS(6963), 1, + ACTIONS(6897), 1, anon_sym_bit_DASHor2, - ACTIONS(6965), 1, + ACTIONS(6903), 1, anon_sym_and2, - ACTIONS(6967), 1, + ACTIONS(6907), 1, anon_sym_xor2, - ACTIONS(6993), 1, + ACTIONS(7023), 1, + anon_sym_DASH2, + ACTIONS(7025), 1, anon_sym_or2, STATE(3980), 1, sym_comment, - ACTIONS(6929), 2, + ACTIONS(6859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6931), 2, + ACTIONS(6861), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6933), 2, + ACTIONS(6863), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6945), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6953), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6957), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6949), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6951), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [152844] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6287), 1, - anon_sym_DASH2, - ACTIONS(6295), 1, - anon_sym_PLUS2, - ACTIONS(6307), 1, - anon_sym_bit_DASHand2, - ACTIONS(6309), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6311), 1, - anon_sym_bit_DASHor2, - ACTIONS(6313), 1, - anon_sym_and2, - ACTIONS(6315), 1, - anon_sym_xor2, - ACTIONS(6995), 1, - anon_sym_or2, - STATE(3981), 1, - sym_comment, - ACTIONS(6289), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6291), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6293), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6883), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6887), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6301), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6303), 4, + ACTIONS(6885), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [152911] = 18, - ACTIONS(247), 1, + [152856] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(5511), 1, + ACTIONS(6319), 1, anon_sym_PLUS2, - ACTIONS(5523), 1, + ACTIONS(6331), 1, anon_sym_bit_DASHand2, - ACTIONS(5525), 1, + ACTIONS(6333), 1, anon_sym_bit_DASHxor2, - ACTIONS(5527), 1, + ACTIONS(6335), 1, anon_sym_bit_DASHor2, - ACTIONS(5529), 1, + ACTIONS(6337), 1, anon_sym_and2, - ACTIONS(5531), 1, + ACTIONS(6339), 1, anon_sym_xor2, - ACTIONS(6997), 1, + ACTIONS(7027), 1, anon_sym_or2, - STATE(3982), 1, + STATE(3981), 1, sym_comment, - ACTIONS(5505), 2, + ACTIONS(6313), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5507), 2, + ACTIONS(6315), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5509), 2, + ACTIONS(6317), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5513), 2, + ACTIONS(6321), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5515), 2, + ACTIONS(6323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5521), 2, + ACTIONS(6329), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5517), 4, + ACTIONS(6325), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5519), 4, + ACTIONS(6327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [152978] = 18, - ACTIONS(247), 1, + [152923] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(5401), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(5405), 1, + ACTIONS(6969), 1, anon_sym_bit_DASHand2, - ACTIONS(5474), 1, + ACTIONS(6971), 1, anon_sym_bit_DASHxor2, - ACTIONS(5479), 1, + ACTIONS(7007), 1, anon_sym_bit_DASHor2, - ACTIONS(5483), 1, + ACTIONS(7009), 1, anon_sym_and2, - ACTIONS(5485), 1, + ACTIONS(7011), 1, anon_sym_xor2, - ACTIONS(6999), 1, + ACTIONS(7029), 1, anon_sym_or2, - STATE(3983), 1, + STATE(3982), 1, sym_comment, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(6949), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5395), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5397), 2, + ACTIONS(6951), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5399), 2, + ACTIONS(6953), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5403), 2, + ACTIONS(6957), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6963), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6965), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(6959), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5393), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153045] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6833), 1, - anon_sym_PLUS2, - ACTIONS(6851), 1, - anon_sym_bit_DASHand2, - ACTIONS(6853), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6855), 1, - anon_sym_bit_DASHor2, - ACTIONS(6857), 1, - anon_sym_and2, - ACTIONS(6859), 1, - anon_sym_xor2, - ACTIONS(7001), 1, - anon_sym_DASH2, - ACTIONS(7003), 1, - anon_sym_or2, - STATE(3984), 1, - sym_comment, - ACTIONS(6835), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6837), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6839), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6841), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6843), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6849), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6845), 4, + ACTIONS(6961), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6847), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [153112] = 23, + [152990] = 23, ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3581), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2483), 1, sym__expr_unary_minus, - STATE(3985), 1, + STATE(3983), 1, sym_comment, - STATE(3997), 1, + STATE(3996), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4554), 1, + STATE(4608), 1, sym__binary_predicate, - STATE(4568), 1, + STATE(4611), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4571), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5057), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153189] = 18, - ACTIONS(247), 1, + [153067] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6881), 1, - anon_sym_DASH2, - ACTIONS(6887), 1, - anon_sym_and2, - ACTIONS(6897), 1, - anon_sym_PLUS2, - ACTIONS(6901), 1, - anon_sym_bit_DASHand2, - ACTIONS(6903), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6905), 1, - anon_sym_bit_DASHor2, - ACTIONS(6907), 1, - anon_sym_xor2, - ACTIONS(7005), 1, - anon_sym_or2, - STATE(3986), 1, + STATE(3984), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(2369), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2373), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153106] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3985), 1, + sym_comment, + ACTIONS(7033), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6885), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6891), 2, + ACTIONS(7039), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6893), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6895), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6899), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6883), 4, + ACTIONS(7035), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6889), 4, + ACTIONS(7037), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [153256] = 23, + ACTIONS(7031), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153151] = 23, ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3581), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6663), 1, + ACTIONS(6679), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2483), 1, + sym__expr_unary_minus, + STATE(3986), 1, + sym_comment, + STATE(3996), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4613), 1, + sym__binary_predicate, + STATE(4618), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4571), 2, + sym_expr_unary, + sym_val_bool, + STATE(5057), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153228] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3581), 1, + aux_sym_expr_unary_token1, + ACTIONS(5841), 1, + anon_sym_LPAREN, ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2523), 1, + STATE(2483), 1, sym__expr_unary_minus, STATE(3987), 1, sym_comment, - STATE(3997), 1, + STATE(3996), 1, sym_expr_parenthesized, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4529), 1, - sym__binary_predicate, - STATE(4540), 1, + STATE(4574), 1, sym__predicate, + STATE(4622), 1, + sym__binary_predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4582), 2, + STATE(4571), 2, sym_expr_unary, sym_val_bool, - STATE(5062), 2, + STATE(5057), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153333] = 4, - ACTIONS(247), 1, + [153305] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(3988), 1, sym_comment, - ACTIONS(1802), 8, + ACTIONS(2357), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -366222,7 +504278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 20, + ACTIONS(2361), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366243,321 +504299,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [153372] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, + [153344] = 23, + ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3581), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6667), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2483), 1, sym__expr_unary_minus, - STATE(3977), 1, - sym_expr_parenthesized, STATE(3989), 1, sym_comment, - STATE(4297), 1, + STATE(3996), 1, + sym_expr_parenthesized, + STATE(4283), 1, sym_val_number, - STATE(4340), 1, + STATE(4525), 1, sym__binary_predicate, - STATE(4341), 1, + STATE(4527), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4571), 2, + sym_expr_unary, + sym_val_bool, + STATE(5057), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(437), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153421] = 18, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5568), 1, + anon_sym_DASH2, + ACTIONS(5570), 1, + anon_sym_PLUS2, + ACTIONS(5586), 1, + anon_sym_and2, + ACTIONS(5590), 1, + anon_sym_bit_DASHand2, + ACTIONS(5592), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5594), 1, + anon_sym_bit_DASHor2, + ACTIONS(5596), 1, + anon_sym_xor2, + ACTIONS(7041), 1, + anon_sym_or2, + STATE(3990), 1, + sym_comment, + ACTIONS(5560), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5562), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5564), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5572), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5588), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5582), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5584), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [153488] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(3991), 1, + sym_comment, + ACTIONS(1940), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1948), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153527] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(435), 1, + aux_sym__val_number_token5, + ACTIONS(3581), 1, + aux_sym_expr_unary_token1, + ACTIONS(5841), 1, + anon_sym_LPAREN, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6685), 1, + anon_sym_DOLLAR, + ACTIONS(6689), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6691), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6693), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6695), 1, + aux_sym__val_number_decimal_token4, + STATE(1738), 1, + sym__val_number, + STATE(1787), 1, + sym__val_number_decimal, + STATE(2483), 1, + sym__expr_unary_minus, + STATE(3992), 1, + sym_comment, + STATE(3996), 1, + sym_expr_parenthesized, + STATE(4283), 1, + sym_val_number, + STATE(4545), 1, + sym__binary_predicate, + STATE(4549), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4571), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5057), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153449] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, + [153604] = 23, + ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3581), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6667), 1, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6679), 1, + sym_identifier, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2483), 1, sym__expr_unary_minus, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(3990), 1, + STATE(3993), 1, sym_comment, - STATE(4297), 1, + STATE(3996), 1, + sym_expr_parenthesized, + STATE(4283), 1, sym_val_number, - STATE(4342), 1, - sym__binary_predicate, - STATE(4346), 1, + STATE(4531), 1, sym__predicate, - ACTIONS(213), 2, + STATE(4596), 1, + sym__binary_predicate, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4571), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5057), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153526] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3991), 1, - sym_comment, - ACTIONS(2258), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2262), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [153565] = 18, - ACTIONS(247), 1, + [153681] = 18, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6347), 1, + ACTIONS(6911), 1, anon_sym_DASH2, - ACTIONS(6353), 1, + ACTIONS(6925), 1, anon_sym_PLUS2, - ACTIONS(6365), 1, + ACTIONS(6967), 1, anon_sym_bit_DASHand2, - ACTIONS(6367), 1, + ACTIONS(6975), 1, anon_sym_bit_DASHxor2, - ACTIONS(6373), 1, + ACTIONS(6989), 1, anon_sym_bit_DASHor2, - ACTIONS(6394), 1, + ACTIONS(6991), 1, anon_sym_and2, - ACTIONS(6398), 1, + ACTIONS(6999), 1, anon_sym_xor2, - ACTIONS(7007), 1, + ACTIONS(7043), 1, anon_sym_or2, - STATE(3992), 1, + STATE(3994), 1, sym_comment, - ACTIONS(6345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6349), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6351), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6355), 2, + ACTIONS(6909), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6361), 2, + ACTIONS(6915), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6919), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6363), 2, + ACTIONS(6921), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6923), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6927), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6357), 4, + ACTIONS(6913), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6359), 4, + ACTIONS(6917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [153632] = 23, - ACTIONS(247), 1, + [153748] = 23, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(393), 1, anon_sym_DASH2, - ACTIONS(427), 1, + ACTIONS(435), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3607), 1, aux_sym_expr_unary_token1, - ACTIONS(6663), 1, - sym_identifier, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_DOLLAR, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token3, ACTIONS(6679), 1, - aux_sym__val_number_decimal_token4, - STATE(1729), 1, - sym__val_number, - STATE(1781), 1, - sym__val_number_decimal, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym_expr_parenthesized, - STATE(3993), 1, - sym_comment, - STATE(4297), 1, - sym_val_number, - STATE(4347), 1, - sym__binary_predicate, - STATE(4348), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4401), 2, - sym_expr_unary, - sym_val_bool, - STATE(5176), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [153709] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6663), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(6685), 1, anon_sym_DOLLAR, - ACTIONS(6673), 1, + ACTIONS(6689), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6675), 1, + ACTIONS(6691), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6677), 1, + ACTIONS(6693), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6679), 1, + ACTIONS(6695), 1, aux_sym__val_number_decimal_token4, - STATE(1729), 1, + STATE(1738), 1, sym__val_number, - STATE(1781), 1, + STATE(1787), 1, sym__val_number_decimal, - STATE(2131), 1, + STATE(2146), 1, sym__expr_unary_minus, - STATE(3977), 1, + STATE(3985), 1, sym_expr_parenthesized, - STATE(3994), 1, + STATE(3995), 1, sym_comment, - STATE(4297), 1, + STATE(4283), 1, sym_val_number, - STATE(4349), 1, + STATE(4428), 1, sym__binary_predicate, - STATE(4350), 1, + STATE(4429), 1, sym__predicate, - ACTIONS(213), 2, + ACTIONS(217), 2, anon_sym_true, anon_sym_false, - STATE(4401), 2, + STATE(4491), 2, sym_expr_unary, sym_val_bool, - STATE(5176), 2, + STATE(5071), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(429), 5, + ACTIONS(437), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153786] = 4, - ACTIONS(247), 1, + [153825] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(3995), 1, + STATE(3996), 1, sym_comment, - ACTIONS(5212), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5206), 20, + ACTIONS(7045), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7051), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7047), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7049), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(7031), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366570,40 +504682,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [153825] = 12, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153869] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(6195), 1, + ACTIONS(6239), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(7053), 1, anon_sym_DOT, - ACTIONS(7013), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7015), 1, + ACTIONS(7059), 1, aux_sym__immediate_decimal_token5, - STATE(3996), 1, + STATE(3997), 1, sym_comment, - STATE(4068), 1, + STATE(4056), 1, sym__immediate_decimal, - ACTIONS(7011), 2, + ACTIONS(7055), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3528), 2, + STATE(3516), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 16, + ACTIONS(1726), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366620,67 +504727,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153879] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3997), 1, - sym_comment, - ACTIONS(7017), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7023), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7019), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7021), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6983), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153923] = 11, - ACTIONS(247), 1, + [153923] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6283), 1, + ACTIONS(6357), 1, anon_sym_DOLLAR, - ACTIONS(7027), 1, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(7061), 1, + anon_sym_DOT, + ACTIONS(7065), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7029), 1, + ACTIONS(7067), 1, aux_sym__immediate_decimal_token5, STATE(3998), 1, sym_comment, - STATE(4181), 1, + STATE(4097), 1, sym__immediate_decimal, - ACTIONS(7025), 2, + ACTIONS(7063), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3426), 2, + STATE(3568), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1659), 16, + ACTIONS(1726), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366692,38 +504765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153974] = 12, - ACTIONS(247), 1, + [153976] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(6333), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(7031), 1, - anon_sym_DOT, - ACTIONS(7035), 1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7037), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token5, STATE(3999), 1, sym_comment, - STATE(4100), 1, + STATE(4200), 1, sym__immediate_decimal, - ACTIONS(7033), 2, + ACTIONS(7069), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3561), 2, + STATE(3440), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 15, - ts_builtin_sym_end, + ACTIONS(1726), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366735,33 +504803,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, [154027] = 11, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6283), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - ACTIONS(7027), 1, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7029), 1, + ACTIONS(7073), 1, aux_sym__immediate_decimal_token5, STATE(4000), 1, sym_comment, - STATE(4180), 1, + STATE(4219), 1, sym__immediate_decimal, - ACTIONS(7025), 2, + ACTIONS(7069), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + STATE(3444), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 16, + ACTIONS(1742), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366778,35 +504848,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154078] = 14, - ACTIONS(3), 1, + [154078] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1557), 1, - sym__space, - ACTIONS(1559), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(1960), 1, - anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(7041), 1, - anon_sym_DOT, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7047), 1, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token5, STATE(4001), 1, sym_comment, - STATE(4120), 1, + STATE(4230), 1, sym__immediate_decimal, - STATE(4268), 2, + ACTIONS(7075), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3759), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1543), 13, + ACTIONS(1742), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366818,21 +504884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [154134] = 6, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154128] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7051), 1, - anon_sym_DOT, - ACTIONS(7053), 1, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token2, STATE(4002), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 21, + ACTIONS(1770), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366854,30 +504921,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154174] = 11, - ACTIONS(247), 1, + [154168] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(6333), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6369), 1, + ACTIONS(6404), 1, anon_sym_DOLLAR, - ACTIONS(7057), 1, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token5, STATE(4003), 1, sym_comment, - STATE(4290), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(7055), 2, + ACTIONS(7075), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3856), 2, + STATE(3818), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1659), 15, + ACTIONS(1726), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366893,19 +504960,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154224] = 6, - ACTIONS(247), 1, + [154218] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7061), 1, + ACTIONS(1726), 1, + sym__space, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(2103), 1, + anon_sym_DOLLAR, + ACTIONS(7085), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + anon_sym_DOT, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7093), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token5, STATE(4004), 1, sym_comment, - ACTIONS(1585), 2, + STATE(4114), 1, + sym__immediate_decimal, + STATE(4251), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1712), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154274] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7097), 1, + anon_sym_DOT, + ACTIONS(7099), 1, + aux_sym__immediate_decimal_token2, + STATE(4005), 1, + sym_comment, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 21, + ACTIONS(1762), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366927,31 +505036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154264] = 11, - ACTIONS(247), 1, + [154314] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token5, - STATE(4005), 1, + ACTIONS(7101), 1, + aux_sym__immediate_decimal_token2, + STATE(4006), 1, sym_comment, - STATE(4253), 1, - sym__immediate_decimal, - ACTIONS(7055), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3756), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1557), 15, - ts_builtin_sym_end, + ACTIONS(1820), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366963,22 +505058,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154314] = 6, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [154351] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, + ACTIONS(7103), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token2, - STATE(4006), 1, + STATE(4007), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 20, + ACTIONS(1770), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366999,33 +505101,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154353] = 13, + [154390] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, - sym__space, - ACTIONS(1960), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(2252), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7043), 1, + ACTIONS(7109), 1, + anon_sym_DOT, + ACTIONS(7111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7045), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7047), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7069), 1, - anon_sym_DOT, - STATE(4007), 1, + STATE(4008), 1, sym_comment, - STATE(4254), 1, + STATE(4171), 1, sym__immediate_decimal, - STATE(4250), 2, + ACTIONS(1726), 2, + ts_builtin_sym_end, + sym__space, + STATE(4500), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 13, + ACTIONS(1712), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367037,19 +505142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [154406] = 5, - ACTIONS(247), 1, + [154445] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7053), 1, + ACTIONS(7099), 1, aux_sym__immediate_decimal_token2, - STATE(4008), 1, + STATE(4009), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 21, + ACTIONS(1762), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367071,17 +505174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154443] = 5, - ACTIONS(247), 1, + [154482] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7071), 1, - aux_sym__immediate_decimal_token2, - STATE(4009), 1, + ACTIONS(1786), 1, + sym__space, + ACTIONS(2103), 1, + anon_sym_DOLLAR, + ACTIONS(7085), 1, + anon_sym_LPAREN2, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7093), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7119), 1, + anon_sym_DOT, + STATE(4010), 1, sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 21, + STATE(4250), 1, + sym__immediate_decimal, + STATE(4249), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367095,44 +505214,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [154480] = 14, + [154535] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1742), 1, + sym__space, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(2066), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(7075), 1, - anon_sym_DOT, - ACTIONS(7077), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7079), 1, + ACTIONS(7123), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7081), 1, + ACTIONS(7125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token5, - STATE(4010), 1, + STATE(4011), 1, sym_comment, - STATE(4197), 1, + STATE(4421), 1, sym__immediate_decimal, - ACTIONS(1557), 2, - ts_builtin_sym_end, - sym__space, - STATE(4383), 2, + STATE(4655), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1543), 11, + ACTIONS(1730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367144,33 +505252,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [154535] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154588] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1659), 1, - sym__space, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(4125), 1, - anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7091), 1, - aux_sym__immediate_decimal_token5, - STATE(4011), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(7129), 1, + anon_sym_DOT_DOT2, + ACTIONS(7133), 1, + sym_filesize_unit, + ACTIONS(7135), 1, + sym_duration_unit, + STATE(4012), 1, sym_comment, - STATE(4320), 1, - sym__immediate_decimal, - STATE(4795), 2, + STATE(7710), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 13, + ACTIONS(7131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1800), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367184,33 +505288,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154588] = 13, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154635] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1557), 1, + ACTIONS(1726), 1, sym__space, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(4125), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, - anon_sym_LPAREN2, ACTIONS(7085), 1, + anon_sym_LPAREN2, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7087), 1, + ACTIONS(7123), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7089), 1, + ACTIONS(7125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7091), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token5, - STATE(4012), 1, + STATE(4013), 1, sym_comment, - STATE(4463), 1, + STATE(4319), 1, sym__immediate_decimal, - STATE(4683), 2, + STATE(4778), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1543), 13, + ACTIONS(1712), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367224,19 +505331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154641] = 6, - ACTIONS(247), 1, + [154688] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7093), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7095), 1, + ACTIONS(7137), 1, + anon_sym_DOT, + ACTIONS(7139), 1, aux_sym__immediate_decimal_token2, - STATE(4013), 1, + STATE(4014), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 20, + ACTIONS(1762), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367257,27 +505364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154680] = 10, - ACTIONS(247), 1, + [154727] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(7097), 1, + ACTIONS(1886), 1, anon_sym_DOT_DOT2, - ACTIONS(7101), 1, - sym_filesize_unit, - ACTIONS(7103), 1, - sym_duration_unit, - STATE(4014), 1, + ACTIONS(6438), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(1704), 1, + sym_cell_path, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + STATE(4015), 1, sym_comment, - STATE(7707), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7099), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 16, + ACTIONS(1888), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367294,19 +505396,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154727] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154769] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7107), 1, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token2, - STATE(4015), 1, + STATE(4016), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1762), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1760), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 19, + [154807] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + anon_sym_DOT_DOT2, + ACTIONS(6438), 1, + anon_sym_DOT, + STATE(1650), 1, + sym_path, + STATE(1726), 1, + sym_cell_path, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + STATE(4017), 1, + sym_comment, + ACTIONS(1884), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367323,18 +505462,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154849] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, anon_sym_LPAREN2, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + ACTIONS(7145), 1, + anon_sym_DOT_DOT2, + ACTIONS(7149), 1, + sym_filesize_unit, + ACTIONS(7151), 1, + sym_duration_unit, + STATE(4018), 1, + sym_comment, + STATE(7577), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7147), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154765] = 4, - ACTIONS(247), 1, + ACTIONS(1800), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154895] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4016), 1, + STATE(4019), 1, sym_comment, - ACTIONS(1761), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1763), 21, + ACTIONS(1762), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367356,18 +505530,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154799] = 5, - ACTIONS(247), 1, + [154929] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7109), 1, + ACTIONS(1852), 1, + sym__space, + ACTIONS(4353), 1, + anon_sym_DOLLAR, + ACTIONS(7085), 1, + anon_sym_LPAREN2, + ACTIONS(7093), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token3, + STATE(4020), 1, + sym_comment, + STATE(4650), 1, + sym__immediate_decimal, + STATE(4649), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1850), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154979] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7159), 1, aux_sym__immediate_decimal_token2, - STATE(4017), 1, + STATE(4021), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 20, - ts_builtin_sym_end, + ACTIONS(1892), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367379,25 +505592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [154835] = 5, - ACTIONS(247), 1, + [155017] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7067), 1, + ACTIONS(7139), 1, aux_sym__immediate_decimal_token2, - STATE(4018), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 20, + ACTIONS(1762), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367418,15 +505631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154871] = 4, - ACTIONS(247), 1, + [155053] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4019), 1, + STATE(4023), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 21, + ACTIONS(1822), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367448,23 +505661,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154905] = 6, + [155087] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7111), 1, + ACTIONS(7161), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7113), 1, + ACTIONS(7163), 1, aux_sym__immediate_decimal_token2, - STATE(4020), 1, + STATE(4024), 1, sym_comment, - ACTIONS(1587), 6, + ACTIONS(1770), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1585), 15, + ACTIONS(1768), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367480,31 +505693,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154943] = 12, + [155125] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, + ACTIONS(1856), 1, sym__space, - ACTIONS(4125), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(7047), 1, + ACTIONS(7093), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(7095), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7115), 1, + ACTIONS(7153), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7117), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token3, - STATE(4021), 1, + STATE(4025), 1, sym_comment, - STATE(4681), 1, + STATE(4652), 1, sym__immediate_decimal, - STATE(4680), 2, + STATE(4651), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 13, + ACTIONS(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367518,54 +505731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154993] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(4505), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_LPAREN2, - ACTIONS(7119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7121), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7123), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7125), 1, - aux_sym__immediate_decimal_token5, - STATE(4022), 1, - sym_comment, - STATE(4570), 1, - sym__immediate_decimal, - ACTIONS(1659), 2, - ts_builtin_sym_end, - sym__space, - STATE(4992), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [155045] = 4, - ACTIONS(247), 1, + [155175] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4023), 1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(4026), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 21, + ACTIONS(1822), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367577,8 +505754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367587,34 +505762,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155079] = 13, + [155211] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(4505), 1, + ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7119), 1, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7121), 1, + ACTIONS(7169), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7123), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7125), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token5, - STATE(4024), 1, + STATE(4027), 1, sym_comment, - STATE(4604), 1, + STATE(4564), 1, sym__immediate_decimal, - ACTIONS(1557), 2, + ACTIONS(1742), 2, ts_builtin_sym_end, sym__space, - STATE(4927), 2, + STATE(4826), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1543), 11, + ACTIONS(1730), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367626,19 +505801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [155131] = 6, - ACTIONS(247), 1, + [155263] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7127), 1, + ACTIONS(7175), 1, anon_sym_DOT, - ACTIONS(7129), 1, + ACTIONS(7177), 1, aux_sym__immediate_decimal_token2, - STATE(4025), 1, + STATE(4028), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 19, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367658,94 +505833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155169] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(4125), 1, - anon_sym_DOLLAR, - ACTIONS(7039), 1, - anon_sym_LPAREN2, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7117), 1, - aux_sym__immediate_decimal_token3, - STATE(4026), 1, - sym_comment, - STATE(4711), 1, - sym__immediate_decimal, - STATE(4710), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [155219] = 8, - ACTIONS(247), 1, + [155301] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DOT_DOT2, - ACTIONS(6396), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(1652), 1, - sym_cell_path, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - STATE(4027), 1, + STATE(4029), 1, sym_comment, - ACTIONS(1749), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155261] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, - ACTIONS(6396), 1, - anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(1722), 1, - sym_cell_path, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - STATE(4028), 1, - sym_comment, - ACTIONS(1737), 18, + aux_sym_unquoted_token2, + ACTIONS(1868), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367762,33 +505858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155303] = 12, + sym_filesize_unit, + sym_duration_unit, + [155335] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(4125), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7115), 1, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7117), 1, + ACTIONS(7169), 1, aux_sym__immediate_decimal_token3, - STATE(4029), 1, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + STATE(4030), 1, sym_comment, - STATE(4713), 1, + STATE(4567), 1, sym__immediate_decimal, - STATE(4712), 2, + ACTIONS(1726), 2, + ts_builtin_sym_end, + sym__space, + STATE(4972), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(1712), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367800,33 +505902,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [155353] = 12, + [155387] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1848), 1, sym__space, - ACTIONS(4125), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(7047), 1, + ACTIONS(7093), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(7095), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7115), 1, + ACTIONS(7153), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7117), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token3, - STATE(4030), 1, + STATE(4031), 1, sym_comment, - STATE(4715), 1, + STATE(4648), 1, sym__immediate_decimal, - STATE(4714), 2, + STATE(4647), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(1846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367840,15 +505940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155403] = 4, - ACTIONS(247), 1, + [155437] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4031), 1, + STATE(4032), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 21, + ACTIONS(1770), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367870,23 +505970,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155437] = 6, + [155471] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_DOT, - ACTIONS(7133), 1, - aux_sym__immediate_decimal_token2, - STATE(4032), 1, - sym_comment, - ACTIONS(1575), 6, + ACTIONS(1786), 1, sym__space, + ACTIONS(4353), 1, + anon_sym_DOLLAR, + ACTIONS(7085), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1573), 15, + ACTIONS(7093), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7153), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token3, + STATE(4033), 1, + sym_comment, + STATE(4776), 1, + sym__immediate_decimal, + STATE(4774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1776), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367900,69 +506008,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155475] = 13, + [155521] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(2252), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7077), 1, + ACTIONS(7111), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7079), 1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7081), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7135), 1, + ACTIONS(7179), 1, anon_sym_DOT, - STATE(4033), 1, + STATE(4034), 1, sym_comment, - STATE(4379), 1, + STATE(4316), 1, sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(1786), 2, ts_builtin_sym_end, sym__space, - STATE(4378), 2, + STATE(4470), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1593), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [155527] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - ACTIONS(7137), 1, - anon_sym_DOT_DOT2, - ACTIONS(7141), 1, - sym_filesize_unit, - ACTIONS(7143), 1, - sym_duration_unit, - STATE(4034), 1, - sym_comment, - STATE(7463), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7139), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 15, - ts_builtin_sym_end, + ACTIONS(1776), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367974,20 +506047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, [155573] = 5, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7181), 1, aux_sym__immediate_decimal_token2, STATE(4035), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 19, + ACTIONS(1921), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368007,15 +506077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155608] = 4, - ACTIONS(247), 1, + [155608] = 8, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(1886), 1, + anon_sym_DOT_DOT2, + ACTIONS(6504), 1, + anon_sym_DOT, + STATE(2085), 1, + sym_path, + STATE(2116), 1, + sym_cell_path, + STATE(3422), 1, + aux_sym_cell_path_repeat1, STATE(4036), 1, sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 20, + ACTIONS(1888), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368031,24 +506108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [155641] = 6, - ACTIONS(247), 1, + [155649] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, + ACTIONS(7183), 1, + anon_sym_DOT, + ACTIONS(7185), 1, aux_sym__immediate_decimal_token2, STATE(4037), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 18, + ACTIONS(1874), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368067,45 +506141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155678] = 5, - ACTIONS(247), 1, + [155686] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token2, STATE(4038), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155713] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4039), 1, - sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 20, + ACTIONS(1822), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368126,24 +506170,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155746] = 6, + [155719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7153), 1, + ACTIONS(7143), 1, aux_sym__immediate_decimal_token2, - STATE(4040), 1, + STATE(4039), 1, sym_comment, - ACTIONS(1587), 7, - ts_builtin_sym_end, + ACTIONS(1762), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1585), 13, + ACTIONS(1760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368155,17 +506196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155783] = 4, - ACTIONS(247), 1, + [155754] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4041), 1, + STATE(4040), 1, sym_comment, - ACTIONS(1761), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1763), 20, + ACTIONS(1770), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368186,32 +506229,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155816] = 12, + [155787] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4505), 1, + ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7081), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7155), 1, + ACTIONS(7187), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7157), 1, + ACTIONS(7189), 1, aux_sym__immediate_decimal_token3, - STATE(4042), 1, + STATE(4041), 1, sym_comment, - STATE(4979), 1, + STATE(4818), 1, sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(1856), 2, ts_builtin_sym_end, sym__space, - STATE(4977), 2, + STATE(4806), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 11, + ACTIONS(1854), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368223,32 +506266,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [155865] = 12, - ACTIONS(3), 1, + [155836] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4505), 1, + ACTIONS(7191), 1, + sym__newline, + STATE(4042), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1231), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1233), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(7073), 1, - anon_sym_LPAREN2, - ACTIONS(7081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7157), 1, - aux_sym__immediate_decimal_token3, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + [155871] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + anon_sym_DOT_DOT2, + ACTIONS(6504), 1, + anon_sym_DOT, + STATE(2085), 1, + sym_path, + STATE(2132), 1, + sym_cell_path, + STATE(3422), 1, + aux_sym_cell_path_repeat1, STATE(4043), 1, sym_comment, - STATE(4985), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, - ts_builtin_sym_end, - sym__space, - STATE(4982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 11, + ACTIONS(1884), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368260,32 +506324,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [155914] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155912] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4505), 1, + ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7081), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7155), 1, + ACTIONS(7187), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7157), 1, + ACTIONS(7189), 1, aux_sym__immediate_decimal_token3, STATE(4044), 1, sym_comment, - STATE(4989), 1, + STATE(4955), 1, sym__immediate_decimal, - ACTIONS(1679), 2, + ACTIONS(1786), 2, ts_builtin_sym_end, sym__space, - STATE(4988), 2, + STATE(4931), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 11, + ACTIONS(1776), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368297,15 +506366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [155963] = 4, - ACTIONS(247), 1, + [155961] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(4045), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 20, + ACTIONS(1762), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368326,32 +506395,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155996] = 12, + [155994] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4505), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(1800), 1, + sym__space, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(7081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7157), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(7194), 1, + anon_sym_DOT_DOT2, + ACTIONS(7198), 1, + sym_filesize_unit, + ACTIONS(7200), 1, + sym_duration_unit, + ACTIONS(7202), 1, + aux_sym_unquoted_token2, STATE(4046), 1, sym_comment, - STATE(4925), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - ts_builtin_sym_end, - sym__space, - STATE(4906), 2, + STATE(7584), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1593), 11, + ACTIONS(7196), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368363,21 +506429,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [156045] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156041] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7159), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(7107), 1, + anon_sym_LPAREN2, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token3, STATE(4047), 1, sym_comment, - ACTIONS(1683), 6, + STATE(4801), 1, + sym__immediate_decimal, + ACTIONS(1852), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1681), 15, + STATE(4913), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368389,40 +506468,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156080] = 14, - ACTIONS(247), 1, + [156090] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7161), 1, + ACTIONS(7204), 1, anon_sym_DOLLAR, - ACTIONS(7163), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7165), 1, + ACTIONS(7208), 1, anon_sym_DOT, - ACTIONS(7167), 1, + ACTIONS(7210), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7169), 1, + ACTIONS(7212), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7171), 1, + ACTIONS(7214), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, + ACTIONS(7216), 1, aux_sym__immediate_decimal_token5, STATE(4048), 1, sym_comment, - STATE(4255), 1, + STATE(4261), 1, sym__immediate_decimal, - ACTIONS(1543), 2, + ACTIONS(1712), 2, sym_identifier, anon_sym_DASH2, - STATE(4525), 2, + STATE(4544), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 9, + ACTIONS(1726), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -368432,49 +506507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156133] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7175), 1, - sym__newline, - STATE(4049), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 10, - sym_identifier, - anon_sym_DASH2, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(1296), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - [156168] = 6, - ACTIONS(247), 1, + [156143] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7178), 1, - anon_sym_DOT, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(4050), 1, + STATE(4049), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 18, + ACTIONS(1868), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368493,54 +506534,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156205] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DOT_DOT2, - ACTIONS(6452), 1, - anon_sym_DOT, - STATE(2080), 1, - sym_path, - STATE(2140), 1, - sym_cell_path, - STATE(3458), 1, - aux_sym_cell_path_repeat1, - STATE(4051), 1, - sym_comment, - ACTIONS(1749), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156246] = 5, + sym_filesize_unit, + sym_duration_unit, + [156176] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7133), 1, + ACTIONS(7218), 1, aux_sym__immediate_decimal_token2, - STATE(4052), 1, + STATE(4050), 1, sym_comment, - ACTIONS(1575), 6, + ACTIONS(1822), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1573), 15, + ACTIONS(1820), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368556,29 +506566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156281] = 11, + [156211] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(7220), 1, + anon_sym_DOT, + ACTIONS(7222), 1, + aux_sym__immediate_decimal_token2, + STATE(4051), 1, + sym_comment, + ACTIONS(1762), 7, + ts_builtin_sym_end, sym__space, - ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_DOT_DOT2, - ACTIONS(7186), 1, - sym_filesize_unit, - ACTIONS(7188), 1, - sym_duration_unit, - ACTIONS(7190), 1, - aux_sym_unquoted_token2, - STATE(4053), 1, - sym_comment, - STATE(7494), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7184), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368590,24 +506595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [156328] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1733), 1, anon_sym_DOT_DOT2, - ACTIONS(6452), 1, - anon_sym_DOT, - STATE(2080), 1, - sym_path, - STATE(2096), 1, - sym_cell_path, - STATE(3458), 1, - aux_sym_cell_path_repeat1, - STATE(4054), 1, + aux_sym_unquoted_token2, + [156248] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7224), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token2, + STATE(4052), 1, sym_comment, - ACTIONS(1737), 17, + ACTIONS(1890), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1892), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368623,26 +506625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156369] = 6, - ACTIONS(3), 1, + [156285] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7192), 1, - anon_sym_DOT, - ACTIONS(7194), 1, + ACTIONS(7177), 1, aux_sym__immediate_decimal_token2, - STATE(4055), 1, + STATE(4053), 1, sym_comment, - ACTIONS(1575), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1573), 13, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368654,24 +506650,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156406] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156320] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7196), 1, - aux_sym__immediate_decimal_token2, - STATE(4056), 1, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(7107), 1, + anon_sym_LPAREN2, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7189), 1, + aux_sym__immediate_decimal_token3, + STATE(4054), 1, sym_comment, - ACTIONS(1683), 7, + STATE(4967), 1, + sym__immediate_decimal, + ACTIONS(1848), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1681), 13, + STATE(4958), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368683,16 +506695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156440] = 5, + [156369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7194), 1, + ACTIONS(7228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7230), 1, aux_sym__immediate_decimal_token2, - STATE(4057), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1575), 7, + ACTIONS(1770), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -368700,7 +506712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1573), 13, + ACTIONS(1768), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368714,43 +506726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156474] = 4, - ACTIONS(247), 1, + [156406] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4058), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(1952), 1, anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(7232), 1, + anon_sym_DOT_DOT2, + STATE(4056), 1, + sym_comment, + ACTIONS(7234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156506] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4059), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 19, + ACTIONS(1958), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368767,50 +506757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156538] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4060), 1, - sym_comment, - ACTIONS(1290), 10, - sym_identifier, - anon_sym_DASH2, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(1288), 11, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - [156570] = 4, + [156444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4061), 1, + STATE(4057), 1, sym_comment, - ACTIONS(1683), 6, + ACTIONS(1762), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1681), 15, + ACTIONS(1760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368826,45 +506785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156602] = 6, - ACTIONS(247), 1, + [156476] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7198), 1, - anon_sym_DOT, - ACTIONS(7200), 1, + ACTIONS(7236), 1, aux_sym__immediate_decimal_token2, - STATE(4062), 1, - sym_comment, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156638] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4063), 1, + STATE(4058), 1, sym_comment, - ACTIONS(1841), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1843), 19, + ACTIONS(1921), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368876,56 +506808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156670] = 6, - ACTIONS(247), 1, + [156510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7202), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7204), 1, - aux_sym__immediate_decimal_token2, - STATE(4064), 1, + STATE(4059), 1, sym_comment, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1822), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156706] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7206), 1, - aux_sym__immediate_decimal_token2, - STATE(4065), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 18, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1820), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368937,40 +506838,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156740] = 13, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [156542] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7163), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7208), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR, - ACTIONS(7210), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7212), 1, + ACTIONS(7242), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7214), 1, + ACTIONS(7244), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7216), 1, + ACTIONS(7246), 1, aux_sym__immediate_decimal_token5, - STATE(4066), 1, + STATE(4060), 1, sym_comment, - STATE(4744), 1, + STATE(4633), 1, sym__immediate_decimal, - ACTIONS(1543), 2, + ACTIONS(1712), 2, sym_identifier, anon_sym_DASH2, - STATE(5156), 2, + STATE(5030), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 9, + ACTIONS(1726), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -368980,76 +506879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156790] = 6, - ACTIONS(3), 1, + [156592] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7220), 1, - aux_sym__immediate_decimal_token2, - STATE(4067), 1, - sym_comment, - ACTIONS(1741), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - [156826] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1942), 1, anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(7222), 1, + ACTIONS(7248), 1, anon_sym_DOT_DOT2, - STATE(4068), 1, + STATE(4061), 1, sym_comment, - ACTIONS(7224), 2, + ACTIONS(7250), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [156864] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4069), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 19, + ACTIONS(1948), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369066,54 +506910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156896] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7226), 1, - anon_sym_DOT, - STATE(4070), 1, - sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4175), 1, - sym_path, - STATE(4293), 1, - sym_cell_path, - ACTIONS(963), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(961), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [156936] = 4, + [156630] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4071), 1, + ACTIONS(7222), 1, + aux_sym__immediate_decimal_token2, + STATE(4062), 1, sym_comment, - ACTIONS(1587), 6, + ACTIONS(1762), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1585), 15, + ACTIONS(1760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369125,23 +506937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156968] = 4, - ACTIONS(3), 1, + [156664] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4072), 1, + STATE(4063), 1, sym_comment, - ACTIONS(1575), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1573), 15, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369155,32 +506961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157000] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4543), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(7228), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156696] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7185), 1, + aux_sym__immediate_decimal_token2, + STATE(4064), 1, + sym_comment, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, - ACTIONS(7232), 1, - sym_filesize_unit, - ACTIONS(7234), 1, - sym_duration_unit, - ACTIONS(7236), 1, aux_sym_unquoted_token2, - STATE(4073), 1, - sym_comment, - STATE(7498), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1719), 2, + ACTIONS(1874), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(7230), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369192,19 +506990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [157046] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156730] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4074), 1, + STATE(4065), 1, sym_comment, - ACTIONS(1763), 6, + ACTIONS(1868), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1761), 15, + ACTIONS(1866), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369220,24 +507024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157078] = 8, + [156762] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7226), 1, + ACTIONS(7252), 1, anon_sym_DOT, - STATE(4075), 1, + STATE(4066), 1, sym_comment, - STATE(4090), 1, + STATE(4108), 1, aux_sym_cell_path_repeat1, - STATE(4175), 1, + STATE(4195), 1, sym_path, - STATE(4245), 1, + STATE(4232), 1, sym_cell_path, - ACTIONS(1749), 3, + ACTIONS(1888), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1747), 14, + ACTIONS(1886), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369252,54 +507056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [157118] = 6, - ACTIONS(3), 1, + [156802] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4076), 1, + STATE(4067), 1, sym_comment, - ACTIONS(1767), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157154] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7226), 1, - anon_sym_DOT, - STATE(4077), 1, - sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4175), 1, - sym_path, - STATE(4236), 1, - sym_cell_path, - ACTIONS(1737), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 14, + ACTIONS(1892), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369313,82 +507078,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [157194] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(4078), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157228] = 13, - ACTIONS(247), 1, + [156834] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7161), 1, - anon_sym_DOLLAR, - ACTIONS(7163), 1, - anon_sym_LPAREN2, - ACTIONS(7167), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, - anon_sym_DOT, - STATE(4079), 1, + STATE(4068), 1, sym_comment, - STATE(4612), 1, - sym__immediate_decimal, - ACTIONS(1593), 2, + ACTIONS(1246), 10, sym_identifier, anon_sym_DASH2, - STATE(4607), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 9, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1244), 11, anon_sym_EQ, sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [157278] = 13, - ACTIONS(247), 1, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + [156866] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7163), 1, - anon_sym_LPAREN2, - ACTIONS(7208), 1, + ACTIONS(7204), 1, anon_sym_DOLLAR, + ACTIONS(7206), 1, + anon_sym_LPAREN2, ACTIONS(7210), 1, aux_sym__immediate_decimal_token1, ACTIONS(7212), 1, @@ -369397,17 +507127,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token4, ACTIONS(7216), 1, aux_sym__immediate_decimal_token5, - STATE(4080), 1, + ACTIONS(7254), 1, + anon_sym_DOT, + STATE(4069), 1, sym_comment, - STATE(4633), 1, + STATE(4536), 1, sym__immediate_decimal, - ACTIONS(1657), 2, + ACTIONS(1776), 2, sym_identifier, anon_sym_DASH2, - STATE(5064), 2, + STATE(4534), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1659), 9, + ACTIONS(1786), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -369417,21 +507149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157328] = 7, - ACTIONS(247), 1, + [156916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_DOT_DOT2, - STATE(4081), 1, + ACTIONS(7256), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7258), 1, + aux_sym__immediate_decimal_token2, + STATE(4070), 1, sym_comment, - ACTIONS(7246), 2, + ACTIONS(1892), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 16, + ACTIONS(1890), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369445,35 +507177,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157366] = 12, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [156952] = 13, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7208), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR, - ACTIONS(7248), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7250), 1, + ACTIONS(7242), 1, aux_sym__immediate_decimal_token3, - STATE(4082), 1, + ACTIONS(7244), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7246), 1, + aux_sym__immediate_decimal_token5, + STATE(4071), 1, sym_comment, - STATE(5017), 1, + STATE(4645), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1730), 2, sym_identifier, anon_sym_DASH2, - STATE(5172), 2, + STATE(5040), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 9, + ACTIONS(1742), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -369483,32 +507216,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157413] = 12, - ACTIONS(247), 1, + [157002] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, - anon_sym_LPAREN2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7208), 1, - anon_sym_DOLLAR, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token3, - STATE(4083), 1, + ACTIONS(7260), 1, + anon_sym_DOT, + ACTIONS(7262), 1, + aux_sym__immediate_decimal_token2, + STATE(4072), 1, sym_comment, - STATE(5150), 1, - sym__immediate_decimal, - ACTIONS(1593), 2, + ACTIONS(1760), 6, sym_identifier, anon_sym_DASH2, - STATE(5108), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -369516,21 +507240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157460] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4084), 1, - sym_comment, - ACTIONS(1767), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 15, + [157038] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4073), 1, + sym_comment, + ACTIONS(1919), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1921), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369544,27 +507268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157493] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157070] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7252), 1, anon_sym_DOT, - STATE(4085), 1, + STATE(4074), 1, sym_comment, - STATE(4111), 1, + STATE(4108), 1, aux_sym_cell_path_repeat1, - STATE(4252), 1, + STATE(4195), 1, sym_path, - STATE(4422), 1, + STATE(4273), 1, sym_cell_path, - ACTIONS(963), 4, - ts_builtin_sym_end, + ACTIONS(1884), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(961), 12, + ACTIONS(1880), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369576,17 +507303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [157532] = 4, - ACTIONS(247), 1, + [157110] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4086), 1, + ACTIONS(7264), 1, + anon_sym_DOT, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token2, + STATE(4075), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 18, - ts_builtin_sym_end, + ACTIONS(1874), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369598,25 +507332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157563] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(7268), 1, aux_sym__immediate_decimal_token2, - STATE(4087), 1, + STATE(4076), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1822), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1820), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369628,25 +507363,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157596] = 5, - ACTIONS(247), 1, + [157180] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7200), 1, + STATE(4077), 1, + sym_comment, + ACTIONS(1968), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1970), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157212] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7272), 1, aux_sym__immediate_decimal_token2, - STATE(4088), 1, + STATE(4078), 1, sym_comment, - ACTIONS(1573), 6, + ACTIONS(1768), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 13, + ACTIONS(1770), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -369660,20 +507423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157629] = 4, + [157248] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4089), 1, + STATE(4079), 1, sym_comment, - ACTIONS(1683), 7, - ts_builtin_sym_end, + ACTIONS(1770), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1681), 13, + ACTIONS(1768), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369685,24 +507447,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157660] = 7, + [157280] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7226), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(7274), 1, + anon_sym_DOT_DOT2, + ACTIONS(7278), 1, + sym_filesize_unit, + ACTIONS(7280), 1, + sym_duration_unit, + ACTIONS(7282), 1, + aux_sym_unquoted_token2, + STATE(4080), 1, + sym_comment, + STATE(7622), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1800), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7276), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [157326] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7252), 1, anon_sym_DOT, - STATE(4090), 1, + STATE(4081), 1, sym_comment, - STATE(4107), 1, + STATE(4108), 1, aux_sym_cell_path_repeat1, - STATE(4175), 1, + STATE(4195), 1, sym_path, - ACTIONS(969), 3, + STATE(4252), 1, + sym_cell_path, + ACTIONS(1475), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(967), 14, + ACTIONS(1473), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369717,12 +507518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [157697] = 4, + [157366] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4091), 1, + STATE(4082), 1, sym_comment, - ACTIONS(1763), 7, + ACTIONS(1822), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -369730,7 +507531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1761), 13, + ACTIONS(1820), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369744,15 +507545,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157728] = 4, - ACTIONS(247), 1, + [157397] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4092), 1, + ACTIONS(7284), 1, + anon_sym_DOT, + STATE(4083), 1, + sym_comment, + STATE(4126), 1, + aux_sym_cell_path_repeat1, + STATE(4258), 1, + sym_path, + STATE(4364), 1, + sym_cell_path, + ACTIONS(1888), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1886), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [157436] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4084), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1968), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 18, + ACTIONS(1970), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369771,50 +507603,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157759] = 5, - ACTIONS(247), 1, + [157467] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7256), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(7286), 1, + anon_sym_DOT, + ACTIONS(7288), 1, aux_sym__immediate_decimal_token2, - STATE(4093), 1, + STATE(4085), 1, sym_comment, - ACTIONS(1681), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 13, - anon_sym_EQ, + ACTIONS(1874), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157792] = 7, - ACTIONS(247), 1, + [157502] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1890), 1, aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(7258), 1, - anon_sym_DOT_DOT2, - STATE(4094), 1, + ACTIONS(7290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7292), 1, + aux_sym__immediate_decimal_token2, + STATE(4086), 1, sym_comment, - ACTIONS(7260), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 15, - ts_builtin_sym_end, + ACTIONS(1892), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369826,25 +507655,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157829] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [157537] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7262), 1, + ACTIONS(7206), 1, + anon_sym_LPAREN2, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7238), 1, + anon_sym_DOLLAR, + ACTIONS(7294), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7264), 1, + ACTIONS(7296), 1, + aux_sym__immediate_decimal_token3, + STATE(4087), 1, + sym_comment, + STATE(5035), 1, + sym__immediate_decimal, + ACTIONS(1846), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5034), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1848), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [157584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7266), 1, aux_sym__immediate_decimal_token2, - STATE(4095), 1, + STATE(4088), 1, sym_comment, - ACTIONS(1741), 5, - ts_builtin_sym_end, + ACTIONS(1874), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 13, + ACTIONS(1872), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369856,24 +507720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157864] = 6, + [157617] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - ACTIONS(7268), 1, - aux_sym__immediate_decimal_token2, - STATE(4096), 1, + STATE(4089), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1762), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369887,25 +507751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157899] = 8, + [157648] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7252), 1, + ACTIONS(7284), 1, anon_sym_DOT, - STATE(4097), 1, + STATE(4090), 1, sym_comment, - STATE(4111), 1, + STATE(4126), 1, aux_sym_cell_path_repeat1, - STATE(4252), 1, + STATE(4258), 1, sym_path, - STATE(4423), 1, + STATE(4341), 1, sym_cell_path, - ACTIONS(1737), 4, + ACTIONS(1884), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 12, + ACTIONS(1880), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369918,20 +507782,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [157938] = 4, + [157687] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4098), 1, + ACTIONS(7298), 1, + anon_sym_DOT, + STATE(4195), 1, + sym_path, + STATE(4091), 2, sym_comment, - ACTIONS(1587), 7, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1585), 13, + ACTIONS(1483), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369943,17 +507808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157969] = 4, - ACTIONS(247), 1, + [157722] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4099), 1, + STATE(4092), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 18, + ACTIONS(1921), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369972,22 +507838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158000] = 7, - ACTIONS(247), 1, + [157753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(7270), 1, - anon_sym_DOT_DOT2, - STATE(4100), 1, + STATE(4093), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(1868), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 15, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369999,35 +507863,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158037] = 12, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157784] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7171), 1, + ACTIONS(7214), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, + ACTIONS(7216), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7208), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR, - ACTIONS(7248), 1, + ACTIONS(7294), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7250), 1, + ACTIONS(7296), 1, aux_sym__immediate_decimal_token3, - STATE(4101), 1, + STATE(4094), 1, sym_comment, - STATE(5148), 1, + STATE(5029), 1, sym__immediate_decimal, - ACTIONS(1663), 2, + ACTIONS(1776), 2, sym_identifier, anon_sym_DASH2, - STATE(5132), 2, + STATE(5028), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 9, + ACTIONS(1786), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370037,32 +507900,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158084] = 12, - ACTIONS(247), 1, + [157831] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7171), 1, + ACTIONS(7214), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, + ACTIONS(7216), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7208), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR, - ACTIONS(7248), 1, + ACTIONS(7294), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7250), 1, + ACTIONS(7296), 1, aux_sym__immediate_decimal_token3, - STATE(4102), 1, + STATE(4095), 1, sym_comment, - STATE(5170), 1, + STATE(5037), 1, sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1850), 2, sym_identifier, anon_sym_DASH2, - STATE(5162), 2, + STATE(5036), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 9, + ACTIONS(1852), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370072,25 +507935,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158131] = 9, + [157878] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1800), 1, sym__space, - ACTIONS(4722), 1, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, - ACTIONS(7186), 1, + ACTIONS(7198), 1, sym_filesize_unit, - ACTIONS(7188), 1, + ACTIONS(7200), 1, sym_duration_unit, - ACTIONS(7190), 1, + ACTIONS(7202), 1, aux_sym_unquoted_token2, - STATE(4103), 1, + STATE(4096), 1, sym_comment, - ACTIONS(4724), 2, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 13, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370104,18 +507967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158172] = 6, - ACTIONS(247), 1, + [157919] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1765), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, aux_sym_unquoted_token2, - ACTIONS(7274), 1, - anon_sym_DOT, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token2, - STATE(4104), 1, + ACTIONS(7301), 1, + anon_sym_DOT_DOT2, + STATE(4097), 1, sym_comment, - ACTIONS(1767), 17, + ACTIONS(7303), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370127,21 +507994,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [158207] = 4, - ACTIONS(247), 1, + [157956] = 12, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4105), 1, + ACTIONS(7206), 1, + anon_sym_LPAREN2, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7238), 1, + anon_sym_DOLLAR, + ACTIONS(7294), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7296), 1, + aux_sym__immediate_decimal_token3, + STATE(4098), 1, sym_comment, - ACTIONS(1841), 2, - anon_sym_DOT_DOT2, + STATE(5039), 1, + sym__immediate_decimal, + ACTIONS(1854), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5038), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1856), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158003] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(1843), 18, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(7305), 1, + anon_sym_DOT_DOT2, + STATE(4099), 1, + sym_comment, + ACTIONS(7307), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370157,21 +508062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [158040] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4100), 1, + sym_comment, + ACTIONS(1770), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158238] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(7278), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7280), 1, - aux_sym__immediate_decimal_token2, - STATE(4106), 1, - sym_comment, - ACTIONS(1741), 17, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1768), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370183,27 +508087,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [158273] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7282), 1, + ACTIONS(7309), 1, anon_sym_DOT, - STATE(4175), 1, - sym_path, - STATE(4107), 2, + ACTIONS(7311), 1, + aux_sym__immediate_decimal_token2, + STATE(4101), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 3, + ACTIONS(1874), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(971), 14, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370215,23 +508116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [158308] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [158106] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4102), 1, sym_comment, - ACTIONS(1575), 7, + ACTIONS(1890), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1892), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1573), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370243,61 +508139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158339] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(7285), 1, - anon_sym_DOT_DOT2, - ACTIONS(7289), 1, - sym_filesize_unit, - ACTIONS(7291), 1, - sym_duration_unit, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token2, - STATE(4109), 1, - sym_comment, - STATE(7529), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1707), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(7287), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [158384] = 8, - ACTIONS(3), 1, + [158137] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(4110), 1, + STATE(4103), 1, sym_comment, - STATE(4111), 1, - aux_sym_cell_path_repeat1, - STATE(4252), 1, - sym_path, - STATE(4419), 1, - sym_cell_path, - ACTIONS(1749), 4, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1747), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370309,24 +508166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [158423] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158168] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(4111), 1, + ACTIONS(7313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7315), 1, + aux_sym__immediate_decimal_token2, + STATE(4104), 1, sym_comment, - STATE(4142), 1, - aux_sym_cell_path_repeat1, - STATE(4252), 1, - sym_path, - ACTIONS(969), 4, + ACTIONS(1892), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(967), 12, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370339,19 +508200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [158459] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [158203] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4112), 1, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token2, + STATE(4105), 1, sym_comment, - ACTIONS(1761), 6, + ACTIONS(1820), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1763), 13, + ACTIONS(1822), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370365,19 +508229,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158489] = 6, - ACTIONS(247), 1, + [158236] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(7295), 1, + ACTIONS(7284), 1, anon_sym_DOT, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token2, - STATE(4113), 1, + STATE(4106), 1, sym_comment, - ACTIONS(1767), 16, + STATE(4126), 1, + aux_sym_cell_path_repeat1, + STATE(4258), 1, + sym_path, + STATE(4446), 1, + sym_cell_path, + ACTIONS(1475), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1473), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370389,60 +508259,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [158523] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4114), 1, - sym_comment, - STATE(4208), 1, - aux_sym_cell_path_repeat1, - STATE(4367), 1, - sym_path, - STATE(4622), 1, - sym_cell_path, - ACTIONS(961), 2, - anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(963), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [158561] = 9, + [158275] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(7232), 1, - sym_filesize_unit, - ACTIONS(7234), 1, - sym_duration_unit, - ACTIONS(7236), 1, - aux_sym_unquoted_token2, - STATE(4115), 1, + ACTIONS(7319), 1, + aux_sym__immediate_decimal_token2, + STATE(4107), 1, sym_comment, - ACTIONS(1719), 2, - ts_builtin_sym_end, + ACTIONS(1921), 4, sym__space, - ACTIONS(4724), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 11, + ACTIONS(1919), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370454,17 +508284,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158601] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158308] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4116), 1, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(4091), 1, + aux_sym_cell_path_repeat1, + STATE(4108), 1, sym_comment, - ACTIONS(1741), 4, + STATE(4195), 1, + sym_path, + ACTIONS(1481), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 15, + ACTIONS(1479), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370479,20 +508318,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158631] = 4, - ACTIONS(247), 1, + [158345] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4117), 1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7321), 1, + anon_sym_DOT_DOT2, + ACTIONS(7325), 1, + sym_filesize_unit, + ACTIONS(7327), 1, + sym_duration_unit, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token2, + STATE(4109), 1, + sym_comment, + STATE(7474), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1788), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(7323), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1800), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158390] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7262), 1, + aux_sym__immediate_decimal_token2, + STATE(4110), 1, sym_comment, - ACTIONS(1573), 6, + ACTIONS(1760), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 13, + ACTIONS(1762), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370506,16 +508380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158661] = 4, + [158423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4118), 1, + STATE(4111), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1921), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 16, + ACTIONS(1919), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370529,21 +508404,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [158691] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [158453] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7301), 1, - anon_sym_QMARK2, - STATE(4119), 1, + ACTIONS(7331), 1, + anon_sym_DOT, + STATE(4112), 1, sym_comment, - ACTIONS(980), 3, - sym__space, + STATE(4186), 1, + aux_sym_cell_path_repeat1, + STATE(4361), 1, + sym_path, + STATE(4557), 1, + sym_cell_path, + ACTIONS(1473), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1475), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(978), 15, + [158491] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(7333), 1, + anon_sym_DOT, + ACTIONS(7335), 1, + aux_sym__immediate_decimal_token2, + STATE(4113), 1, + sym_comment, + ACTIONS(1874), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370555,27 +508460,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [158723] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [158525] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - ACTIONS(1810), 1, + ACTIONS(1958), 1, sym__space, - ACTIONS(1812), 1, + ACTIONS(1960), 1, aux_sym_unquoted_token2, - ACTIONS(7303), 1, + ACTIONS(7337), 1, anon_sym_DOT_DOT2, - STATE(4120), 1, + STATE(4114), 1, sym_comment, - ACTIONS(7305), 2, + ACTIONS(7339), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 13, + ACTIONS(1950), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370589,47 +508494,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158761] = 5, - ACTIONS(247), 1, + [158563] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(7276), 1, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_EQ, + ACTIONS(7345), 1, + sym__newline, + ACTIONS(7347), 1, + anon_sym_COLON, + ACTIONS(7349), 1, + anon_sym_LPAREN, + ACTIONS(7351), 1, + anon_sym_DASH2, + STATE(4115), 1, + sym_comment, + STATE(4237), 1, + sym_flag_capsule, + STATE(4267), 1, + aux_sym_parameter_repeat1, + STATE(5217), 1, + aux_sym_parameter_repeat2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7341), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158613] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7355), 1, aux_sym__immediate_decimal_token2, - STATE(4121), 1, + STATE(4116), 1, sym_comment, - ACTIONS(1767), 17, + ACTIONS(1890), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - [158793] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7307), 1, - aux_sym__immediate_decimal_token2, - STATE(4122), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1787), 5, - ts_builtin_sym_end, + ACTIONS(1970), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 13, + ACTIONS(1968), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370641,27 +508580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [158825] = 8, - ACTIONS(247), 1, + [158677] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4123), 1, + STATE(4118), 1, sym_comment, - STATE(4208), 1, - aux_sym_cell_path_repeat1, - STATE(4367), 1, - sym_path, - STATE(4617), 1, - sym_cell_path, - ACTIONS(1747), 2, + ACTIONS(1760), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1749), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -370671,77 +508607,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158863] = 5, - ACTIONS(247), 1, + [158707] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - STATE(4124), 1, + STATE(4119), 1, sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 16, + ACTIONS(1768), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1770), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158895] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DOT_DOT2, - STATE(4125), 1, - sym_comment, - ACTIONS(1040), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158927] = 6, - ACTIONS(247), 1, + [158737] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7311), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7313), 1, - aux_sym__immediate_decimal_token2, - STATE(4126), 1, + STATE(4120), 1, sym_comment, - ACTIONS(1739), 4, + ACTIONS(1820), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 13, + ACTIONS(1822), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370755,19 +508662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158961] = 4, - ACTIONS(247), 1, + [158767] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4127), 1, + STATE(4121), 1, sym_comment, - ACTIONS(1585), 6, + ACTIONS(1866), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 13, + ACTIONS(1868), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370781,17 +508688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158991] = 4, + [158797] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4128), 1, + ACTIONS(7311), 1, + aux_sym__immediate_decimal_token2, + STATE(4122), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1874), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 15, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370803,23 +508713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [159021] = 4, - ACTIONS(247), 1, + [158829] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4129), 1, + ACTIONS(7357), 1, + anon_sym_DOT, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token2, + STATE(4123), 1, sym_comment, - ACTIONS(1681), 6, + ACTIONS(1872), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 13, + ACTIONS(1874), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370833,16 +508743,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159051] = 4, + [158863] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7331), 1, + anon_sym_DOT, + STATE(4124), 1, + sym_comment, + STATE(4186), 1, + aux_sym_cell_path_repeat1, + STATE(4361), 1, + sym_path, + STATE(4578), 1, + sym_cell_path, + ACTIONS(1880), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1884), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158901] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7331), 1, + anon_sym_DOT, + STATE(4125), 1, + sym_comment, + STATE(4186), 1, + aux_sym_cell_path_repeat1, + STATE(4361), 1, + sym_path, + STATE(4605), 1, + sym_cell_path, + ACTIONS(1886), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1888), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158939] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4130), 1, + ACTIONS(7284), 1, + anon_sym_DOT, + STATE(4126), 1, sym_comment, - ACTIONS(1004), 3, + STATE(4130), 1, + aux_sym_cell_path_repeat1, + STATE(4258), 1, + sym_path, + ACTIONS(1481), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1002), 16, + ACTIONS(1479), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370854,52 +508831,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [159081] = 6, - ACTIONS(247), 1, + [158975] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7315), 1, - anon_sym_DOT, - ACTIONS(7317), 1, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + ACTIONS(7361), 1, aux_sym__immediate_decimal_token2, - STATE(4131), 1, + STATE(4127), 1, sym_comment, - ACTIONS(1765), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 13, - anon_sym_EQ, + ACTIONS(1921), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159115] = 6, - ACTIONS(247), 1, + [159007] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(7319), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7321), 1, + ACTIONS(7363), 1, aux_sym__immediate_decimal_token2, - STATE(4132), 1, + STATE(4128), 1, sym_comment, - ACTIONS(1741), 16, + ACTIONS(1921), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1919), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159039] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + STATE(4129), 1, + sym_comment, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7365), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370911,27 +508908,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [159149] = 8, + [159071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(7367), 1, + anon_sym_DOT, + STATE(4258), 1, + sym_path, + STATE(4130), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7323), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1483), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - STATE(4133), 1, + [159105] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + STATE(4131), 1, sym_comment, - ACTIONS(7325), 2, + ACTIONS(1552), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 13, + ACTIONS(7365), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370945,54 +508965,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159187] = 14, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159137] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(7329), 1, - anon_sym_EQ, - ACTIONS(7331), 1, - sym__newline, - ACTIONS(7333), 1, - anon_sym_COLON, - ACTIONS(7335), 1, - anon_sym_LPAREN, - ACTIONS(7337), 1, - anon_sym_DASH2, - STATE(4134), 1, + ACTIONS(1550), 1, + anon_sym_DOT_DOT2, + STATE(4132), 1, sym_comment, - STATE(4299), 1, - sym_flag_capsule, - STATE(4306), 1, - aux_sym_parameter_repeat1, - STATE(5238), 1, - aux_sym_parameter_repeat2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7327), 7, - sym_identifier, + ACTIONS(1552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7365), 16, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [159237] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159169] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + ACTIONS(7370), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7372), 1, + aux_sym__immediate_decimal_token2, + STATE(4133), 1, + sym_comment, + ACTIONS(1892), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [159203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, + ACTIONS(7374), 1, anon_sym_QMARK2, - STATE(4135), 1, + STATE(4134), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(1502), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(984), 15, + ACTIONS(1500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371008,16 +509050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [159269] = 4, + [159235] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(7376), 1, + anon_sym_QMARK2, + STATE(4135), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(1492), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(998), 16, + ACTIONS(1490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371031,20 +509075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [159299] = 4, + [159267] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, + STATE(4136), 1, sym_comment, - ACTIONS(1843), 4, + ACTIONS(1874), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1841), 15, + ACTIONS(1872), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371060,17 +509103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [159329] = 4, + [159297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4138), 1, + STATE(4137), 1, sym_comment, - ACTIONS(1767), 4, + ACTIONS(1512), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 15, + ACTIONS(1510), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371084,18 +509126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159359] = 4, + anon_sym_DOT, + [159327] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4139), 1, + STATE(4138), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(1508), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(990), 16, + ACTIONS(1506), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371112,47 +509155,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [159389] = 8, - ACTIONS(247), 1, + [159357] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4140), 1, + STATE(4139), 1, sym_comment, - STATE(4208), 1, - aux_sym_cell_path_repeat1, - STATE(4367), 1, - sym_path, - STATE(4532), 1, - sym_cell_path, - ACTIONS(1733), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1737), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(1516), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1514), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159427] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1038), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - STATE(4141), 1, + anon_sym_DOT, + [159387] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4140), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(1498), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 16, + ACTIONS(1496), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371166,25 +509204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159459] = 6, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [159417] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7341), 1, - anon_sym_DOT, - STATE(4252), 1, - sym_path, - STATE(4142), 2, + STATE(4141), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 4, - ts_builtin_sym_end, + ACTIONS(1892), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(971), 12, + ACTIONS(1890), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371196,17 +509229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [159493] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [159447] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - ACTIONS(7344), 1, + ACTIONS(7288), 1, aux_sym__immediate_decimal_token2, - STATE(4143), 1, + STATE(4142), 1, sym_comment, - ACTIONS(1787), 17, + ACTIONS(1874), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371224,20 +509260,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [159525] = 5, + [159479] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7268), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(1948), 1, + sym__space, + ACTIONS(7378), 1, + anon_sym_DOT_DOT2, + STATE(4143), 1, + sym_comment, + ACTIONS(7380), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159517] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(7278), 1, + sym_filesize_unit, + ACTIONS(7280), 1, + sym_duration_unit, + ACTIONS(7282), 1, + aux_sym_unquoted_token2, STATE(4144), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1800), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 13, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371249,24 +509321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, [159557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(2008), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, STATE(4145), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4758), 1, + STATE(4634), 1, sym_cell_path, - ACTIONS(1863), 13, + ACTIONS(2006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371280,17 +509350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159594] = 4, + [159594] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2024), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4146), 1, sym_comment, - ACTIONS(2268), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2270), 14, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4755), 1, + sym_cell_path, + ACTIONS(2022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371304,23 +509379,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [159623] = 8, + [159631] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5681), 1, + anon_sym_DASH2, + STATE(4147), 1, + sym_comment, + ACTIONS(5683), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159660] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(2028), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4147), 1, + STATE(4148), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4791), 1, + STATE(4773), 1, sym_cell_path, - ACTIONS(1907), 13, + ACTIONS(2026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371334,22 +509433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159660] = 8, + [159697] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1737), 1, + ACTIONS(2032), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4148), 1, + STATE(4149), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4236), 1, - sym_cell_path, - STATE(4566), 1, + STATE(4580), 1, sym_path, - ACTIONS(1733), 13, + STATE(4783), 1, + sym_cell_path, + ACTIONS(2030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371363,20 +509462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159697] = 8, + [159734] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2036), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4149), 1, + STATE(4150), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4786), 1, + STATE(4794), 1, sym_cell_path, ACTIONS(2034), 13, sym__newline, @@ -371392,20 +509491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159734] = 6, + [159771] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(4150), 1, + ACTIONS(2173), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4151), 1, sym_comment, - ACTIONS(2238), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2242), 13, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4795), 1, + sym_cell_path, + ACTIONS(2171), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371419,16 +509520,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159767] = 5, - ACTIONS(247), 1, + [159808] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - STATE(4151), 1, + ACTIONS(2040), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4152), 1, sym_comment, - ACTIONS(1828), 16, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4627), 1, + sym_cell_path, + ACTIONS(2038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371442,96 +509549,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159798] = 6, - ACTIONS(247), 1, + [159845] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7348), 1, + ACTIONS(2044), 1, + sym__space, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4367), 1, - sym_path, - ACTIONS(971), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4152), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159831] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5660), 1, - anon_sym_DASH2, STATE(4153), 1, sym_comment, - ACTIONS(5662), 17, - anon_sym_EQ, - sym_identifier, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4666), 1, + sym_cell_path, + ACTIONS(2042), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [159860] = 4, - ACTIONS(247), 1, + [159882] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - anon_sym_DASH2, + ACTIONS(2048), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4154), 1, sym_comment, - ACTIONS(5685), 17, - anon_sym_EQ, - sym_identifier, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4676), 1, + sym_cell_path, + ACTIONS(2046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [159889] = 5, - ACTIONS(247), 1, + [159919] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, + ACTIONS(2052), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4155), 1, sym_comment, - ACTIONS(2262), 16, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4680), 1, + sym_cell_path, + ACTIONS(2050), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371545,20 +509636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159920] = 5, - ACTIONS(247), 1, + [159956] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2056), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4156), 1, sym_comment, - ACTIONS(1767), 16, - ts_builtin_sym_end, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4700), 1, + sym_cell_path, + ACTIONS(2054), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371570,18 +509663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159951] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159993] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, + ACTIONS(2060), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4157), 1, sym_comment, - ACTIONS(1787), 17, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4708), 1, + sym_cell_path, + ACTIONS(2058), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371595,23 +509694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159980] = 6, + [160030] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7351), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2064), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4158), 1, sym_comment, - ACTIONS(1741), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 14, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4714), 1, + sym_cell_path, + ACTIONS(2062), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371625,20 +509723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [160013] = 5, + [160067] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7355), 1, - anon_sym_QMARK2, + ACTIONS(2068), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4159), 1, sym_comment, - ACTIONS(980), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(978), 13, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4724), 1, + sym_cell_path, + ACTIONS(2066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371650,21 +509750,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [160044] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7357), 1, - anon_sym_QMARK2, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(7386), 1, + sym__space, STATE(4160), 1, sym_comment, - ACTIONS(986), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(984), 13, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4643), 1, + sym_cell_path, + ACTIONS(7384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371676,49 +509779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [160075] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_DASH2, - STATE(4161), 1, - sym_comment, - ACTIONS(5652), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [160104] = 8, + [160141] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2072), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4162), 1, + STATE(4161), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4788), 1, + STATE(4731), 1, sym_cell_path, - ACTIONS(1931), 13, + ACTIONS(2070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371732,22 +509810,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160141] = 8, + [160178] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4899), 1, + anon_sym_DOT_DOT2, + STATE(4162), 1, + sym_comment, + ACTIONS(4901), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7365), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160209] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(2000), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, STATE(4163), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4759), 1, + STATE(4683), 1, sym_cell_path, - ACTIONS(1847), 13, + ACTIONS(1998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371761,16 +509865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160178] = 5, - ACTIONS(247), 1, + [160246] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, STATE(4164), 1, sym_comment, - ACTIONS(2232), 16, + ACTIONS(1874), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371782,27 +509888,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [160209] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160275] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1992), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, STATE(4165), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4245), 1, - sym_cell_path, - STATE(4566), 1, + STATE(4580), 1, sym_path, - ACTIONS(1747), 13, + STATE(4732), 1, + sym_cell_path, + ACTIONS(1990), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160312] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(4166), 1, + sym_comment, + ACTIONS(2337), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2341), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371816,19 +509946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160246] = 5, - ACTIONS(247), 1, + [160345] = 5, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(7359), 1, aux_sym__immediate_decimal_token2, - STATE(4166), 1, + STATE(4167), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1872), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 13, + ACTIONS(1874), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -371842,14 +509972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160277] = 4, - ACTIONS(247), 1, + [160376] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5691), 1, + ACTIONS(5727), 1, anon_sym_DASH2, - STATE(4167), 1, + STATE(4168), 1, sym_comment, - ACTIONS(5693), 17, + ACTIONS(5729), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -371867,43 +509997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [160306] = 8, + [160405] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4168), 1, - sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4764), 1, - sym_cell_path, - ACTIONS(1871), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [160343] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - aux_sym_unquoted_token2, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(4169), 1, sym_comment, - ACTIONS(1843), 17, + ACTIONS(2345), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2349), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371917,26 +510024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [160372] = 8, + [160438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(4170), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4771), 1, - sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(2353), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371950,20 +510051,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160409] = 6, + [160471] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(7388), 1, + anon_sym_DOT_DOT2, STATE(4171), 1, sym_comment, - ACTIONS(2246), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2250), 13, + ACTIONS(1958), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7390), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1950), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371975,22 +510080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [160442] = 6, - ACTIONS(3), 1, + [160508] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(4899), 1, + anon_sym_DOT_DOT2, STATE(4172), 1, sym_comment, - ACTIONS(2254), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2256), 13, + ACTIONS(4901), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7365), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372002,24 +510103,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [160475] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160539] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__space, - ACTIONS(7346), 1, + ACTIONS(7392), 1, anon_sym_DOT, + ACTIONS(7394), 1, + aux_sym__immediate_decimal_token2, STATE(4173), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4790), 1, - sym_cell_path, - ACTIONS(1899), 13, + ACTIONS(1874), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372033,16 +510132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160512] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [160572] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, STATE(4174), 1, sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7361), 16, + ACTIONS(1921), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372059,39 +510157,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160543] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [160601] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(7396), 1, + aux_sym__immediate_decimal_token2, STATE(4175), 1, sym_comment, - ACTIONS(1008), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 15, + ACTIONS(1919), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [160572] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160632] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5679), 1, + ACTIONS(5709), 1, anon_sym_DASH2, STATE(4176), 1, sym_comment, - ACTIONS(5681), 17, + ACTIONS(5711), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -372109,20 +510209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [160601] = 6, + [160661] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, + ACTIONS(1475), 1, + sym__space, + ACTIONS(7382), 1, + anon_sym_DOT, STATE(4177), 1, sym_comment, - ACTIONS(1026), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1028), 13, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4252), 1, + sym_cell_path, + STATE(4580), 1, + sym_path, + ACTIONS(1473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372136,22 +510238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160634] = 8, - ACTIONS(3), 1, + [160698] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1855), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, STATE(4178), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4658), 1, - sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(1948), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372165,18 +510261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160671] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160729] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4179), 1, sym_comment, - ACTIONS(1741), 5, + ACTIONS(1892), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 13, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372190,42 +510289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [160700] = 5, - ACTIONS(247), 1, + [160758] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2329), 1, anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(4180), 1, sym_comment, - ACTIONS(1810), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1538), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160731] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, - STATE(4181), 1, - sym_comment, - ACTIONS(2276), 16, + ACTIONS(1540), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372239,25 +510316,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [160762] = 8, + [160791] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(1996), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4182), 1, + STATE(4181), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4773), 1, + STATE(4793), 1, sym_cell_path, - ACTIONS(1887), 13, + ACTIONS(1994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372271,19 +510345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160799] = 6, + [160828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7363), 1, - anon_sym_DOT, - ACTIONS(7365), 1, - aux_sym__immediate_decimal_token2, - STATE(4183), 1, + STATE(4182), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(1921), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1765), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1919), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372295,27 +510368,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160857] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_DASH2, + STATE(4183), 1, + sym_comment, + ACTIONS(5703), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [160832] = 8, + [160886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(7367), 1, - anon_sym_DOT_DOT2, + ACTIONS(7398), 1, + anon_sym_QMARK2, STATE(4184), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(1502), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7369), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1820), 11, + ACTIONS(1500), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372327,18 +510419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160869] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4890), 1, anon_sym_DOT_DOT2, + anon_sym_DOT, + [160917] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + aux_sym_unquoted_token2, STATE(4185), 1, sym_comment, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 15, - ts_builtin_sym_end, + ACTIONS(1970), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372350,49 +510440,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160900] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [160946] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1940), 1, - sym__space, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_DOT, STATE(4186), 1, sym_comment, - STATE(4235), 1, + STATE(4190), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4361), 1, sym_path, - STATE(4718), 1, - sym_cell_path, - ACTIONS(1938), 13, + ACTIONS(1479), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1481), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [160937] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160981] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4187), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(1970), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(990), 14, + ACTIONS(1968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372404,17 +510497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [160966] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1765), 1, aux_sym_unquoted_token2, + [161010] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4188), 1, sym_comment, - ACTIONS(1767), 17, + ACTIONS(2407), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372428,20 +510523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_LPAREN2, - [160995] = 5, - ACTIONS(247), 1, + [161039] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, STATE(4189), 1, sym_comment, - STATE(7681), 1, + STATE(7711), 1, sym__expr_parenthesized_immediate, - ACTIONS(7361), 16, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372458,22 +510550,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161026] = 8, - ACTIONS(3), 1, + [161070] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__space, - ACTIONS(7346), 1, + ACTIONS(7402), 1, anon_sym_DOT, - STATE(4190), 1, + STATE(4361), 1, + sym_path, + ACTIONS(1483), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(4190), 2, sym_comment, - STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4746), 1, - sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(1485), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161103] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4191), 1, + sym_comment, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372487,22 +510600,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161063] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161134] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(2084), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4191), 1, + STATE(4192), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4774), 1, + STATE(4638), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(2082), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372516,43 +510632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161100] = 4, - ACTIONS(3), 1, + [161171] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4192), 1, - sym_comment, - ACTIONS(1787), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - [161129] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(7335), 1, + aux_sym__immediate_decimal_token2, STATE(4193), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1874), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372564,24 +510654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161158] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [161202] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7346), 1, - anon_sym_DOT, - ACTIONS(7373), 1, - sym__space, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(4194), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4660), 1, - sym_cell_path, - ACTIONS(7371), 13, + STATE(7711), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372595,17 +510681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161195] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161233] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4195), 1, sym_comment, - ACTIONS(996), 4, - ts_builtin_sym_end, + ACTIONS(1528), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 14, + ACTIONS(1526), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372617,52 +510705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [161224] = 4, - ACTIONS(3), 1, + [161262] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(4899), 1, + anon_sym_DOT_DOT2, STATE(4196), 1, sym_comment, - ACTIONS(1000), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(4901), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(998), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161253] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(7375), 1, - anon_sym_DOT_DOT2, - STATE(4197), 1, - sym_comment, - ACTIONS(1810), 2, + ACTIONS(7365), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(7377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372674,14 +510732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161290] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161293] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5687), 1, + ACTIONS(5705), 1, anon_sym_DASH2, - STATE(4198), 1, + STATE(4197), 1, sym_comment, - ACTIONS(5689), 17, + ACTIONS(5707), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -372699,22 +510760,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [161319] = 8, + [161322] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(2169), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4199), 1, + STATE(4198), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4775), 1, + STATE(4658), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(2167), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372728,18 +510789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161356] = 5, - ACTIONS(247), 1, + [161359] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - STATE(4200), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4199), 1, sym_comment, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 15, - ts_builtin_sym_end, + ACTIONS(2335), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372751,25 +510810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161387] = 8, - ACTIONS(3), 1, + [161390] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4201), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4200), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4769), 1, - sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(1958), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372783,22 +510838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161424] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161421] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2028), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4202), 1, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + ACTIONS(7405), 1, + aux_sym__immediate_decimal_token2, + STATE(4201), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4784), 1, - sym_cell_path, - ACTIONS(2026), 13, + ACTIONS(1921), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372810,20 +510863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161461] = 5, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [161452] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - STATE(4203), 1, + STATE(4202), 1, sym_comment, - ACTIONS(4892), 2, + ACTIONS(1520), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7309), 15, - ts_builtin_sym_end, + ACTIONS(1518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372835,25 +510888,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [161492] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [161481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4204), 1, + STATE(4203), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4676), 1, - sym_cell_path, - ACTIONS(1867), 13, + ACTIONS(1524), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372867,48 +510915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161529] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token2, - STATE(4205), 1, - sym_comment, - ACTIONS(1765), 4, - sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161560] = 8, + anon_sym_DOT, + [161510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1913), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4206), 1, + STATE(4204), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4777), 1, - sym_cell_path, - ACTIONS(1911), 13, + ACTIONS(1512), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1510), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372920,24 +510939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161597] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [161539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4207), 1, + STATE(4205), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4779), 1, - sym_cell_path, - ACTIONS(1915), 13, + ACTIONS(1508), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1506), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372949,44 +510964,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161634] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7299), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4152), 1, - aux_sym_cell_path_repeat1, - STATE(4208), 1, + [161568] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4206), 1, sym_comment, - STATE(4367), 1, - sym_path, - ACTIONS(967), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(969), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1516), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161669] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(4209), 1, - sym_comment, - ACTIONS(1741), 17, + ACTIONS(1514), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372998,28 +510989,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [161698] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [161597] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(1884), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4210), 1, + STATE(4207), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4781), 1, + STATE(4273), 1, sym_cell_path, - ACTIONS(1919), 13, + STATE(4580), 1, + sym_path, + ACTIONS(1880), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373033,17 +511021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161735] = 4, + [161634] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4211), 1, + STATE(4208), 1, sym_comment, - ACTIONS(1004), 4, + ACTIONS(1498), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1002), 14, + ACTIONS(1496), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373058,48 +511046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [161764] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4212), 1, - sym_comment, - STATE(7681), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7361), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [161795] = 8, + [161663] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(2012), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4213), 1, + STATE(4209), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4782), 1, + STATE(4785), 1, sym_cell_path, - ACTIONS(1927), 13, + ACTIONS(2010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373113,43 +511075,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161832] = 8, - ACTIONS(3), 1, + [161700] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2040), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4214), 1, + ACTIONS(5713), 1, + anon_sym_DASH2, + STATE(4210), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4787), 1, - sym_cell_path, - ACTIONS(2038), 13, + ACTIONS(5715), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [161869] = 4, - ACTIONS(247), 1, + [161729] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5677), 1, anon_sym_DASH2, - STATE(4215), 1, + STATE(4211), 1, sym_comment, - ACTIONS(5658), 17, + ACTIONS(5679), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -373167,17 +511125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [161898] = 5, - ACTIONS(247), 1, + [161758] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token2, - STATE(4216), 1, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + STATE(4212), 1, sym_comment, - ACTIONS(1787), 16, - ts_builtin_sym_end, + ACTIONS(2361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373189,22 +511146,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161929] = 4, + [161789] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4217), 1, - sym_comment, - ACTIONS(1843), 5, - ts_builtin_sym_end, + ACTIONS(1976), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1841), 13, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4213), 1, + sym_comment, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4646), 1, + sym_cell_path, + ACTIONS(1972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373216,24 +511178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161958] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161826] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2032), 1, + ACTIONS(1888), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4218), 1, + STATE(4214), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4785), 1, + STATE(4232), 1, sym_cell_path, - ACTIONS(2030), 13, + STATE(4580), 1, + sym_path, + ACTIONS(1886), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373247,22 +511209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161995] = 8, + [161863] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1944), 1, + ACTIONS(2016), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4219), 1, + STATE(4215), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4783), 1, + STATE(4722), 1, sym_cell_path, - ACTIONS(1942), 13, + ACTIONS(2014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373276,16 +511238,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162032] = 4, + [161900] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4220), 1, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7409), 1, + aux_sym__immediate_decimal_token2, + STATE(4216), 1, sym_comment, - ACTIONS(1012), 3, + ACTIONS(1892), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 15, + anon_sym_LPAREN2, + ACTIONS(1890), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [161933] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + STATE(4217), 1, + sym_comment, + ACTIONS(1874), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [161962] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(7413), 1, + sym__space, + STATE(4218), 1, + sym_comment, + STATE(4227), 1, + aux_sym_cell_path_repeat1, + STATE(4580), 1, + sym_path, + STATE(4659), 1, + sym_cell_path, + ACTIONS(7411), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373299,18 +511319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [162061] = 4, - ACTIONS(3), 1, + [161999] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4221), 1, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, + STATE(4219), 1, sym_comment, - ACTIONS(1016), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 15, + ACTIONS(2373), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373324,24 +511342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [162090] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162030] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2044), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4222), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(4220), 1, sym_comment, - STATE(4235), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4719), 1, - sym_cell_path, - ACTIONS(2042), 13, + ACTIONS(1892), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373355,22 +511366,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162127] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [162059] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7346), 1, - anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(2020), 1, sym__space, - STATE(4223), 1, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4221), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4580), 1, sym_path, - STATE(4720), 1, + STATE(4754), 1, sym_cell_path, - ACTIONS(7381), 13, + ACTIONS(2018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373384,22 +511399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162164] = 8, + [162096] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(963), 1, + ACTIONS(2080), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4224), 1, + STATE(4222), 1, sym_comment, - STATE(4235), 1, + STATE(4227), 1, aux_sym_cell_path_repeat1, - STATE(4293), 1, - sym_cell_path, - STATE(4566), 1, + STATE(4580), 1, sym_path, - ACTIONS(961), 13, + STATE(4768), 1, + sym_cell_path, + ACTIONS(2078), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373413,47 +511428,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162201] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4225), 1, - sym_comment, - ACTIONS(998), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1000), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162229] = 8, + [162133] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4226), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(7415), 1, + anon_sym_DOT_DOT2, + STATE(4223), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4990), 1, - sym_cell_path, - ACTIONS(1917), 2, + ACTIONS(1948), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1915), 11, + ACTIONS(7417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373465,16 +511457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162265] = 4, + [162170] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + ACTIONS(7419), 1, + anon_sym_QMARK2, + STATE(4224), 1, sym_comment, - ACTIONS(2120), 3, + ACTIONS(1492), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 14, + ACTIONS(1490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373486,48 +511481,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [162293] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7385), 1, anon_sym_DOT, - STATE(4228), 1, - sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(5000), 1, - sym_cell_path, - ACTIONS(1921), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1919), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162329] = 5, + [162201] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7387), 1, + ACTIONS(7421), 1, + anon_sym_DOT, + ACTIONS(7423), 1, aux_sym__immediate_decimal_token2, - STATE(4229), 1, + STATE(4225), 1, sym_comment, - ACTIONS(1787), 2, + ACTIONS(1874), 3, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1785), 14, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373539,26 +511508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_unquoted_token2, - [162359] = 8, + [162233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4230), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(4226), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4967), 1, - sym_cell_path, - ACTIONS(7383), 2, + ACTIONS(2353), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2355), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(7381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373570,23 +511535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162395] = 8, + [162265] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(1481), 1, + sym__space, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4231), 1, + STATE(4227), 1, sym_comment, - STATE(4515), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4580), 1, sym_path, - STATE(4842), 1, - sym_cell_path, - ACTIONS(1851), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1847), 11, + ACTIONS(1479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373598,16 +511560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162431] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162299] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4232), 1, + ACTIONS(7425), 1, + anon_sym_QMARK2, + STATE(4228), 1, sym_comment, - ACTIONS(1841), 3, + ACTIONS(1500), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 14, + anon_sym_DOT, + ACTIONS(1502), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -373619,26 +511585,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162459] = 8, - ACTIONS(3), 1, + [162329] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7427), 1, + anon_sym_QMARK2, + STATE(4229), 1, + sym_comment, + ACTIONS(1490), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4233), 1, + ACTIONS(1492), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162359] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, + STATE(4230), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4800), 1, - sym_cell_path, - ACTIONS(1929), 2, + ACTIONS(2373), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373650,31 +511634,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162495] = 12, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162389] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2538), 1, + ACTIONS(2655), 1, anon_sym_COMMA, - ACTIONS(7329), 1, + ACTIONS(7343), 1, anon_sym_EQ, - ACTIONS(7331), 1, + ACTIONS(7345), 1, sym__newline, - ACTIONS(7333), 1, + ACTIONS(7347), 1, anon_sym_COLON, - ACTIONS(7391), 1, + ACTIONS(7431), 1, anon_sym_DASH2, - STATE(4234), 1, + STATE(4231), 1, sym_comment, - STATE(4289), 1, + STATE(4272), 1, aux_sym_parameter_repeat1, - STATE(5215), 1, + STATE(5209), 1, aux_sym_parameter_repeat2, - STATE(6777), 1, + STATE(6474), 1, aux_sym_shebang_repeat1, - STATE(5171), 2, + STATE(5047), 2, sym_param_type, sym_param_value, - ACTIONS(7389), 7, + ACTIONS(7429), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -373682,20 +511669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162539] = 7, + [162433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(969), 1, - sym__space, - ACTIONS(7346), 1, - anon_sym_DOT, - STATE(4235), 1, + STATE(4232), 1, sym_comment, - STATE(4271), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - ACTIONS(967), 13, + ACTIONS(2242), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2240), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373709,16 +511692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162573] = 4, + anon_sym_DOT_DOT2, + [162461] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4236), 1, - sym_comment, - ACTIONS(2054), 3, + ACTIONS(1540), 1, sym__space, + ACTIONS(7433), 1, + anon_sym_DOT_DOT2, + STATE(4233), 1, + sym_comment, + ACTIONS(7435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2052), 14, + ACTIONS(1538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373732,52 +511719,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [162601] = 8, + [162493] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4237), 1, + ACTIONS(2288), 1, + anon_sym_DQUOTE, + ACTIONS(2292), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2294), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2302), 1, + sym_raw_string_begin, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(5118), 1, + anon_sym_LPAREN, + ACTIONS(7437), 1, + sym__unquoted_naive, + STATE(4234), 1, sym_comment, - STATE(4423), 1, - sym_cell_path, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - ACTIONS(1737), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1733), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162637] = 8, + STATE(4933), 1, + sym__inter_single_quotes, + STATE(4935), 1, + sym__inter_double_quotes, + ACTIONS(2290), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4591), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4946), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [162541] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(1485), 1, + sym__space, + ACTIONS(7439), 1, anon_sym_DOT, - STATE(4238), 1, + STATE(4580), 1, + sym_path, + STATE(4235), 2, sym_comment, - STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4805), 1, - sym_cell_path, - ACTIONS(1944), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1942), 11, + ACTIONS(1483), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373789,23 +511777,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162673] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162573] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4239), 1, + STATE(4236), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4807), 1, + STATE(4831), 1, sym_cell_path, - ACTIONS(2028), 2, + ACTIONS(1992), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2026), 11, + ACTIONS(1990), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373817,85 +511807,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162709] = 8, - ACTIONS(3), 1, + [162609] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4240), 1, - sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4813), 1, - sym_cell_path, - ACTIONS(1855), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1853), 11, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_EQ, + ACTIONS(7345), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7347), 1, + anon_sym_COLON, + ACTIONS(7446), 1, + anon_sym_DASH2, + STATE(4237), 1, + sym_comment, + STATE(4240), 1, + aux_sym_parameter_repeat1, + STATE(5241), 1, + aux_sym_parameter_repeat2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7444), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162745] = 14, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162653] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(5841), 1, + anon_sym_LPAREN, + ACTIONS(5843), 1, + anon_sym_DOLLAR, + ACTIONS(7448), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(7452), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(7454), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2116), 1, - sym_raw_string_begin, - ACTIONS(4505), 1, - anon_sym_DOLLAR, - ACTIONS(5095), 1, - anon_sym_LPAREN, - ACTIONS(7393), 1, + ACTIONS(7456), 1, sym__unquoted_naive, - STATE(4241), 1, - sym_comment, - STATE(4891), 1, + STATE(2497), 1, sym__inter_single_quotes, - STATE(4896), 1, + STATE(2500), 1, sym__inter_double_quotes, - ACTIONS(2104), 2, + STATE(4238), 1, + sym_comment, + ACTIONS(7450), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4528), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - STATE(4894), 4, + STATE(5063), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [162793] = 8, - ACTIONS(3), 1, + [162701] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4242), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4239), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4970), 1, - sym_cell_path, - ACTIONS(1873), 2, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373907,23 +511895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162829] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162731] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_EQ, + ACTIONS(7345), 1, + sym__newline, + ACTIONS(7347), 1, + anon_sym_COLON, + ACTIONS(7460), 1, + anon_sym_DASH2, + STATE(4240), 1, + sym_comment, + STATE(4519), 1, + aux_sym_parameter_repeat1, + STATE(5219), 1, + aux_sym_parameter_repeat2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7458), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4243), 1, + ACTIONS(7394), 1, + aux_sym__immediate_decimal_token2, + STATE(4241), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4811), 1, - sym_cell_path, - ACTIONS(2032), 2, - ts_builtin_sym_end, + ACTIONS(1874), 2, sym__space, - ACTIONS(2030), 11, + anon_sym_LPAREN2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373935,42 +511952,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162865] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [162805] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(4244), 1, + STATE(4242), 1, sym_comment, - ACTIONS(1026), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1028), 12, - ts_builtin_sym_end, + ACTIONS(1496), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1498), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162897] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4245), 1, + STATE(4243), 1, sym_comment, - ACTIONS(1737), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 14, + ACTIONS(2407), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2409), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373982,26 +512002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [162925] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [162861] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4246), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + STATE(4244), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4837), 1, - sym_cell_path, - ACTIONS(1861), 2, + ACTIONS(2361), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374013,23 +512025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162961] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162891] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4247), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4245), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4817), 1, - sym_cell_path, - ACTIONS(7373), 2, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(7371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374041,23 +512050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162997] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162921] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4248), 1, + STATE(4246), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4812), 1, + STATE(4966), 1, sym_cell_path, - ACTIONS(2036), 2, + ACTIONS(1996), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2034), 11, + ACTIONS(1994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374069,16 +512081,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163033] = 4, - ACTIONS(247), 1, + [162957] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4249), 1, - sym_comment, - ACTIONS(1739), 3, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1940), 1, anon_sym_DASH2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(7462), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 14, + STATE(4247), 1, + sym_comment, + ACTIONS(7464), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374090,22 +512109,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163061] = 6, + [162993] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT, + ACTIONS(7470), 1, + anon_sym_QMARK2, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(4248), 1, + sym_comment, + STATE(5059), 1, + sym_cell_path, + ACTIONS(7466), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7468), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [163031] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(2234), 1, sym__space, - ACTIONS(7395), 1, + ACTIONS(7472), 1, anon_sym_DOT_DOT2, - STATE(4250), 1, + STATE(4249), 1, sym_comment, - ACTIONS(7397), 2, + ACTIONS(7474), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + ACTIONS(2228), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374119,66 +512164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163093] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(4251), 1, - sym_comment, - ACTIONS(2232), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [163123] = 4, + [163063] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, - sym_comment, - ACTIONS(1008), 4, - ts_builtin_sym_end, + ACTIONS(2183), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(7476), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - [163151] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(4253), 1, + STATE(4250), 1, sym_comment, - ACTIONS(1810), 15, - ts_builtin_sym_end, + ACTIONS(7478), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2177), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374190,22 +512188,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [163181] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163095] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(2191), 1, sym__space, - ACTIONS(7399), 1, + ACTIONS(7480), 1, anon_sym_DOT_DOT2, - STATE(4254), 1, + STATE(4251), 1, sym_comment, - ACTIONS(7401), 2, + ACTIONS(7482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 13, + ACTIONS(2185), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374219,43 +512216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163213] = 8, - ACTIONS(247), 1, + [163127] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_DASH2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7403), 1, - anon_sym_DOT_DOT2, - STATE(4255), 1, + STATE(4252), 1, sym_comment, - ACTIONS(7405), 2, + ACTIONS(1558), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163249] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - STATE(4256), 1, - sym_comment, - ACTIONS(1767), 16, - ts_builtin_sym_end, + ACTIONS(1556), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374267,27 +512237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [163277] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [163155] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4257), 1, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(4253), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4814), 1, - sym_cell_path, - ACTIONS(2040), 2, + ACTIONS(1538), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1540), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2038), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374299,16 +512266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163313] = 4, + [163187] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4258), 1, + ACTIONS(7484), 1, + aux_sym__immediate_decimal_token2, + STATE(4254), 1, sym_comment, - ACTIONS(2185), 3, + ACTIONS(1921), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2183), 14, + anon_sym_LPAREN2, + ACTIONS(1919), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374322,58 +512290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [163341] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(4329), 1, - anon_sym_DOLLAR, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(7407), 1, - anon_sym_DQUOTE, - ACTIONS(7411), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7413), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7415), 1, - sym__unquoted_naive, - STATE(2171), 1, - sym__inter_single_quotes, - STATE(2172), 1, - sym__inter_double_quotes, - STATE(4259), 1, - sym_comment, - ACTIONS(7409), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4912), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [163389] = 8, + aux_sym_unquoted_token2, + [163217] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4260), 1, + STATE(4255), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4815), 1, + STATE(4944), 1, sym_cell_path, - ACTIONS(1933), 2, + ACTIONS(2012), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1931), 11, + ACTIONS(2010), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374385,20 +512319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163425] = 6, + [163253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7419), 1, - aux_sym__immediate_decimal_token2, - STATE(4261), 1, + STATE(4256), 1, sym_comment, - ACTIONS(1741), 3, - ts_builtin_sym_end, + ACTIONS(2217), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2215), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374410,16 +512340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [163457] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [163281] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(4262), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4257), 1, sym_comment, - ACTIONS(1741), 16, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4878), 1, + sym_cell_path, + ACTIONS(2080), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2078), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374431,27 +512371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [163485] = 8, + [163317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4263), 1, + STATE(4258), 1, sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4824), 1, - sym_cell_path, - ACTIONS(1901), 2, + ACTIONS(1528), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1899), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1526), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374463,23 +512393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163521] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [163345] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 1, + STATE(4259), 1, + sym_comment, + ACTIONS(1872), 3, anon_sym_DASH2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(7421), 1, anon_sym_DOT_DOT2, - STATE(4264), 1, - sym_comment, - ACTIONS(7423), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -374491,77 +512416,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163557] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4265), 1, - sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4940), 1, - sym_cell_path, - ACTIONS(1865), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1863), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163593] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_DOT, - ACTIONS(7427), 1, - aux_sym__immediate_decimal_token2, - STATE(4266), 1, - sym_comment, - ACTIONS(1767), 3, - ts_builtin_sym_end, - sym__space, anon_sym_LPAREN2, - ACTIONS(1765), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [163625] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163373] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4267), 1, + STATE(4260), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4825), 1, + STATE(4446), 1, sym_cell_path, - ACTIONS(1909), 2, + STATE(4654), 1, + sym_path, + ACTIONS(1475), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1907), 11, + ACTIONS(1473), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374573,79 +512447,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163661] = 6, - ACTIONS(3), 1, + [163409] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(7429), 1, + ACTIONS(1950), 1, + anon_sym_DASH2, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7486), 1, anon_sym_DOT_DOT2, - STATE(4268), 1, + STATE(4261), 1, sym_comment, - ACTIONS(7431), 2, + ACTIONS(7488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 13, + ACTIONS(1958), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [163693] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(5805), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7433), 1, - anon_sym_DQUOTE, - ACTIONS(7437), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7439), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7441), 1, - sym__unquoted_naive, - STATE(2537), 1, - sym__inter_single_quotes, - STATE(2538), 1, - sym__inter_double_quotes, - STATE(4269), 1, - sym_comment, - ACTIONS(7435), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2093), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5119), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [163741] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7445), 1, - sym__space, - ACTIONS(7447), 1, - anon_sym_DOT_DOT2, - STATE(4270), 1, + STATE(4262), 1, sym_comment, - ACTIONS(7449), 2, + ACTIONS(2221), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7443), 13, + ACTIONS(2219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374659,68 +512498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163773] = 6, + anon_sym_DOT_DOT2, + [163473] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(973), 1, - sym__space, - ACTIONS(7451), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4566), 1, - sym_path, - STATE(4271), 2, + STATE(4263), 1, sym_comment, + STATE(4397), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [163805] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4272), 1, - sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7361), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [163835] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4273), 1, - sym_comment, - ACTIONS(1016), 4, + STATE(4654), 1, + sym_path, + STATE(4903), 1, + sym_cell_path, + ACTIONS(2169), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 13, + ACTIONS(2167), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374732,59 +512527,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163863] = 14, + [163509] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1996), 1, + ACTIONS(2139), 1, anon_sym_DQUOTE, - ACTIONS(2000), 1, + ACTIONS(2143), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2002), 1, + ACTIONS(2145), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2010), 1, + ACTIONS(2153), 1, sym_raw_string_begin, - ACTIONS(4125), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(5123), 1, + ACTIONS(5166), 1, anon_sym_LPAREN, - ACTIONS(7454), 1, + ACTIONS(7490), 1, sym__unquoted_naive, - STATE(4274), 1, + STATE(4264), 1, sym_comment, - STATE(4731), 1, + STATE(4693), 1, sym__inter_single_quotes, - STATE(4732), 1, + STATE(4694), 1, sym__inter_double_quotes, - ACTIONS(1998), 2, + ACTIONS(2141), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4371), 2, + STATE(4475), 2, sym__raw_str, sym__str_double_quotes, - STATE(4755), 4, + STATE(4660), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [163911] = 8, + [163557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4275), 1, + STATE(4265), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4963), 1, + STATE(4911), 1, sym_cell_path, - ACTIONS(2044), 2, + ACTIONS(7413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2042), 11, + ACTIONS(7411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374796,16 +512589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163947] = 4, - ACTIONS(247), 1, + [163593] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4276), 1, + STATE(4266), 1, sym_comment, - ACTIONS(1765), 3, + ACTIONS(1890), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 14, + ACTIONS(1892), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -374820,102 +512613,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163975] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - ACTIONS(7460), 1, - anon_sym_QMARK2, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(4277), 1, - sym_comment, - STATE(5022), 1, - sym_cell_path, - ACTIONS(7456), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7458), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [164013] = 6, - ACTIONS(3), 1, + [163621] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(4278), 1, - sym_comment, - ACTIONS(2254), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2256), 12, - ts_builtin_sym_end, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_EQ, + ACTIONS(7345), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [164045] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(4279), 1, + ACTIONS(7347), 1, + anon_sym_COLON, + ACTIONS(7494), 1, + anon_sym_DASH2, + STATE(4267), 1, sym_comment, - ACTIONS(1719), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(4519), 1, + aux_sym_parameter_repeat1, + STATE(5242), 1, + aux_sym_parameter_repeat2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7492), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164073] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163665] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4280), 1, + STATE(4268), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4981), 1, + STATE(4852), 1, sym_cell_path, - ACTIONS(1869), 2, + ACTIONS(1976), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1867), 11, + ACTIONS(1972), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374927,18 +512673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164109] = 4, + [163701] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4281), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4269), 1, sym_comment, - ACTIONS(2268), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2270), 13, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4926), 1, + sym_cell_path, + ACTIONS(2016), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2014), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374950,18 +512701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - [164137] = 5, - ACTIONS(247), 1, + [163737] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4282), 1, + STATE(4270), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7361), 15, + ACTIONS(1520), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374973,20 +512723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164167] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [163765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(4283), 1, + STATE(4271), 1, sym_comment, - ACTIONS(2262), 15, + ACTIONS(1524), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374998,51 +512747,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164197] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7462), 1, - anon_sym_QMARK2, - STATE(4284), 1, - sym_comment, - ACTIONS(978), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(980), 13, + [163793] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7345), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7347), 1, anon_sym_COLON, + ACTIONS(7498), 1, + anon_sym_DASH2, + STATE(4272), 1, + sym_comment, + STATE(4519), 1, + aux_sym_parameter_repeat1, + STATE(5240), 1, + aux_sym_parameter_repeat2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7496), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [163837] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4273), 1, + sym_comment, + ACTIONS(1888), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164227] = 8, + ACTIONS(1886), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [163865] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4285), 1, + STATE(4274), 1, sym_comment, - STATE(4419), 1, - sym_cell_path, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - ACTIONS(1749), 2, + STATE(4912), 1, + sym_cell_path, + ACTIONS(2020), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1747), 11, + ACTIONS(2018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375054,23 +512833,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164263] = 8, + [163901] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4286), 1, + STATE(4275), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4915), 1, + STATE(4799), 1, sym_cell_path, - ACTIONS(1889), 2, + ACTIONS(2024), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1887), 11, + ACTIONS(2022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375082,23 +512861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164299] = 8, + [163937] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4287), 1, + STATE(4276), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4934), 1, + STATE(4804), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(2028), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1891), 11, + ACTIONS(2026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375110,23 +512889,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164335] = 8, + [163973] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4288), 1, + STATE(4277), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4962), 1, + STATE(4820), 1, sym_cell_path, - ACTIONS(1940), 2, + ACTIONS(2032), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1938), 11, + ACTIONS(2030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375138,49 +512917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164371] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(7329), 1, - anon_sym_EQ, - ACTIONS(7331), 1, - sym__newline, - ACTIONS(7333), 1, - anon_sym_COLON, - ACTIONS(7466), 1, - anon_sym_DASH2, - STATE(4289), 1, - sym_comment, - STATE(4406), 1, - aux_sym_parameter_repeat1, - STATE(5222), 1, - aux_sym_parameter_repeat2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7464), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164415] = 5, - ACTIONS(247), 1, + [164009] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, - STATE(4290), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4278), 1, sym_comment, - ACTIONS(2276), 15, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4832), 1, + sym_cell_path, + ACTIONS(2036), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375192,22 +512945,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164445] = 6, + [164045] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2163), 1, - sym__space, - ACTIONS(7468), 1, - anon_sym_DOT_DOT2, - STATE(4291), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4279), 1, sym_comment, - ACTIONS(7470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 13, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4836), 1, + sym_cell_path, + ACTIONS(2173), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2171), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375219,50 +512973,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164477] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(7329), 1, - anon_sym_EQ, - ACTIONS(7331), 1, - sym__newline, - ACTIONS(7333), 1, - anon_sym_COLON, - ACTIONS(7474), 1, - anon_sym_DASH2, - STATE(4292), 1, - sym_comment, - STATE(4406), 1, - aux_sym_parameter_repeat1, - STATE(5223), 1, - aux_sym_parameter_repeat2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7472), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164521] = 4, + [164081] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4280), 1, sym_comment, - ACTIONS(1046), 3, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4839), 1, + sym_cell_path, + ACTIONS(2040), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1044), 14, + ACTIONS(2038), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375274,26 +513001,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [164549] = 8, + [164117] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4294), 1, + STATE(4281), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4966), 1, + STATE(4842), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(2044), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1895), 11, + ACTIONS(2042), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375305,74 +513029,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164585] = 5, - ACTIONS(247), 1, + [164153] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7476), 1, - anon_sym_QMARK2, - STATE(4295), 1, - sym_comment, - ACTIONS(984), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7442), 1, anon_sym_DOT, - ACTIONS(986), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164615] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4296), 1, + STATE(4282), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(996), 14, - anon_sym_EQ, - sym_identifier, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4843), 1, + sym_cell_path, + ACTIONS(2048), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2046), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164643] = 9, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [164189] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4894), 1, + ACTIONS(4934), 1, anon_sym_DOT, - ACTIONS(7482), 1, + ACTIONS(7504), 1, anon_sym_QMARK2, - STATE(1690), 1, + STATE(1689), 1, aux_sym_cell_path_repeat1, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(4297), 1, + STATE(4283), 1, sym_comment, - STATE(5035), 1, + STATE(5069), 1, sym_cell_path, - ACTIONS(7478), 2, + ACTIONS(7500), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7480), 10, + ACTIONS(7502), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -375383,21 +513086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [164681] = 6, + [164227] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(4298), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4284), 1, sym_comment, - ACTIONS(2238), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2242), 12, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4849), 1, + sym_cell_path, + ACTIONS(2052), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2050), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375409,49 +513114,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164713] = 12, - ACTIONS(247), 1, + [164263] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(7329), 1, - anon_sym_EQ, - ACTIONS(7331), 1, - sym__newline, - ACTIONS(7333), 1, - anon_sym_COLON, - ACTIONS(7486), 1, - anon_sym_DASH2, - STATE(4292), 1, - aux_sym_parameter_repeat1, - STATE(4299), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4285), 1, sym_comment, - STATE(5230), 1, - aux_sym_parameter_repeat2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7484), 7, - sym_identifier, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4857), 1, + sym_cell_path, + ACTIONS(2056), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2054), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164757] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [164299] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4300), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4286), 1, sym_comment, - STATE(7470), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7361), 15, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4868), 1, + sym_cell_path, + ACTIONS(2060), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2058), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375463,19 +513170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164787] = 4, - ACTIONS(247), 1, + [164335] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4301), 1, + STATE(4287), 1, sym_comment, - ACTIONS(1785), 3, + ACTIONS(1968), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 14, + ACTIONS(1970), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -375490,15 +513194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164815] = 4, - ACTIONS(247), 1, + [164363] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(4302), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4288), 1, sym_comment, - ACTIONS(1787), 16, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4879), 1, + sym_cell_path, + ACTIONS(2064), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2062), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375510,27 +513222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [164843] = 8, + [164399] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4303), 1, + STATE(4289), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4973), 1, + STATE(4894), 1, sym_cell_path, - ACTIONS(1913), 2, + ACTIONS(2068), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1911), 11, + ACTIONS(2066), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375542,16 +513250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164879] = 5, - ACTIONS(247), 1, + [164435] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - STATE(4304), 1, + STATE(4290), 1, sym_comment, - ACTIONS(1828), 15, + ACTIONS(1874), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375567,71 +513273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164909] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [164463] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4305), 1, - sym_comment, - ACTIONS(1002), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7442), 1, anon_sym_DOT, - ACTIONS(1004), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164937] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(7329), 1, - anon_sym_EQ, - ACTIONS(7331), 1, - sym__newline, - ACTIONS(7333), 1, - anon_sym_COLON, - ACTIONS(7490), 1, - anon_sym_DASH2, - STATE(4306), 1, - sym_comment, - STATE(4406), 1, - aux_sym_parameter_repeat1, - STATE(5231), 1, - aux_sym_parameter_repeat2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7488), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164981] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - aux_sym_unquoted_token2, - STATE(4307), 1, + STATE(4291), 1, sym_comment, - ACTIONS(1843), 16, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4900), 1, + sym_cell_path, + ACTIONS(2072), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375643,23 +513302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [165009] = 6, - ACTIONS(3), 1, + [164499] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, - sym__space, - ACTIONS(7447), 1, - anon_sym_DOT_DOT2, - STATE(4308), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4292), 1, sym_comment, - ACTIONS(7449), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375671,23 +513324,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165041] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(4309), 1, - sym_comment, - ACTIONS(2246), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2250), 12, + [164529] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7506), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7508), 1, + aux_sym__immediate_decimal_token2, + STATE(4293), 1, + sym_comment, + ACTIONS(1892), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1890), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375699,23 +513352,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165073] = 8, + aux_sym_unquoted_token2, + [164561] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4310), 1, + STATE(4294), 1, sym_comment, - STATE(4422), 1, - sym_cell_path, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - ACTIONS(963), 2, + STATE(4810), 1, + sym_cell_path, + ACTIONS(2000), 2, ts_builtin_sym_end, sym__space, - ACTIONS(961), 11, + ACTIONS(1998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375727,17 +513381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165109] = 4, - ACTIONS(3), 1, + [164597] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4311), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(4295), 1, sym_comment, - ACTIONS(1012), 4, + ACTIONS(1892), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375749,19 +513401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165137] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [164625] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7365), 1, - aux_sym__immediate_decimal_token2, - STATE(4312), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4296), 1, sym_comment, - ACTIONS(1767), 2, + STATE(4341), 1, + sym_cell_path, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + ACTIONS(1884), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1765), 14, + ACTIONS(1880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375773,26 +513433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [165167] = 8, + [164661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4313), 1, - sym_comment, - STATE(4515), 1, - aux_sym_cell_path_repeat1, - STATE(4780), 1, - sym_path, - STATE(4998), 1, - sym_cell_path, - ACTIONS(1881), 2, - ts_builtin_sym_end, + ACTIONS(2203), 1, sym__space, - ACTIONS(1879), 11, + ACTIONS(7510), 1, + anon_sym_DOT_DOT2, + STATE(4297), 1, + sym_comment, + ACTIONS(7512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2197), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375804,23 +513457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165203] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164693] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7442), 1, anon_sym_DOT, - STATE(4314), 1, + STATE(4298), 1, sym_comment, - STATE(4515), 1, + STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4780), 1, + STATE(4654), 1, sym_path, - STATE(4886), 1, + STATE(4991), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(2084), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1883), 11, + ACTIONS(2082), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375832,38 +513487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165239] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4315), 1, - sym_comment, - ACTIONS(990), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165267] = 4, - ACTIONS(247), 1, + [164729] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4316), 1, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + STATE(4299), 1, sym_comment, - STATE(4473), 1, - aux_sym_shebang_repeat1, - ACTIONS(7492), 15, + ACTIONS(1921), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375875,22 +513507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165294] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [164757] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, anon_sym_LPAREN2, - ACTIONS(4920), 1, - sym__space, - STATE(4317), 1, + STATE(4300), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4922), 13, + ACTIONS(1948), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375902,20 +513533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165325] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164787] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4926), 1, - sym__space, - STATE(4318), 1, + ACTIONS(1968), 1, + aux_sym_unquoted_token2, + STATE(4301), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4928), 13, + ACTIONS(1970), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375927,17 +513556,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165356] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [164815] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4319), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4302), 1, sym_comment, - ACTIONS(1741), 2, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4978), 1, + sym_cell_path, + ACTIONS(2008), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 14, + ACTIONS(2006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375949,21 +513588,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [165383] = 6, + [164851] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - sym__space, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, - STATE(4320), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4303), 1, sym_comment, - ACTIONS(2272), 13, + STATE(4364), 1, + sym_cell_path, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + ACTIONS(1888), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1886), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375975,20 +513616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165414] = 6, + [164887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4932), 1, + ACTIONS(7433), 1, + anon_sym_DOT_DOT2, + ACTIONS(7516), 1, sym__space, - STATE(4321), 1, + STATE(4304), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4934), 13, + ACTIONS(7435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376002,18 +513642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165445] = 6, - ACTIONS(3), 1, + [164919] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - ACTIONS(4936), 1, - sym__space, - STATE(4322), 1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4305), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4938), 13, + ACTIONS(2335), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376025,22 +513664,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165476] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_DOT, - STATE(4780), 1, - sym_path, - ACTIONS(973), 2, - ts_builtin_sym_end, - sym__space, - STATE(4323), 2, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(4306), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 11, + ACTIONS(2345), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2349), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376052,22 +513693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165507] = 8, - ACTIONS(247), 1, + [164981] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - ACTIONS(7503), 1, - anon_sym_or2, - STATE(4324), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4307), 1, sym_comment, - STATE(4394), 1, - aux_sym_shebang_repeat1, - ACTIONS(7497), 11, + ACTIONS(1958), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376078,23 +513715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [165542] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7507), 1, anon_sym_xor2, - ACTIONS(7509), 1, anon_sym_or2, - STATE(4325), 1, + [165011] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4308), 1, sym_comment, - STATE(4405), 1, - aux_sym_shebang_repeat1, - ACTIONS(7497), 11, + STATE(4397), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + STATE(4997), 1, + sym_cell_path, + ACTIONS(7386), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7384), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376105,18 +513746,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [165577] = 4, + [165047] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4326), 1, + ACTIONS(443), 1, + sym_raw_string_begin, + ACTIONS(4223), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(7518), 1, + anon_sym_DQUOTE, + ACTIONS(7522), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7524), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7526), 1, + sym__unquoted_naive, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2165), 1, + sym__inter_double_quotes, + STATE(4309), 1, sym_comment, - ACTIONS(2185), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2183), 12, + ACTIONS(7520), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1832), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4956), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [165095] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + STATE(4310), 1, + sym_comment, + ACTIONS(1800), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376128,21 +513799,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [165604] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7513), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7515), 1, anon_sym_xor2, - ACTIONS(7517), 1, anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4327), 1, + [165123] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(4311), 1, sym_comment, - ACTIONS(7511), 12, + ACTIONS(2337), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2341), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376154,21 +513830,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [165155] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4312), 1, + sym_comment, + ACTIONS(1510), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1512), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [165637] = 7, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165183] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7521), 1, - anon_sym_xor2, - ACTIONS(7523), 1, - anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4328), 1, + STATE(4313), 1, + sym_comment, + ACTIONS(1506), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1508), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165211] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4314), 1, + sym_comment, + ACTIONS(1514), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1516), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165239] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4315), 1, + sym_comment, + ACTIONS(1919), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165267] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7528), 1, + anon_sym_DOT_DOT2, + STATE(4316), 1, sym_comment, - ACTIONS(7511), 12, + ACTIONS(2183), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7530), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2177), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376180,50 +513951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [165670] = 8, - ACTIONS(247), 1, + [165298] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(4329), 1, - sym_comment, - STATE(5013), 1, - sym_cell_path, - ACTIONS(7525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7527), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [165705] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2050), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4330), 1, + STATE(4317), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(4972), 1, + STATE(4877), 1, sym_cell_path, - ACTIONS(1873), 11, + ACTIONS(2052), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376235,12 +513978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165740] = 3, - ACTIONS(247), 1, + [165333] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4318), 1, sym_comment, - ACTIONS(7309), 16, + ACTIONS(7534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376253,40 +513998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165765] = 4, - ACTIONS(247), 1, + [165360] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH2, - STATE(4332), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1958), 1, + sym__space, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4319), 1, sym_comment, - ACTIONS(992), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1950), 13, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [165792] = 3, - ACTIONS(247), 1, + [165391] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4333), 1, - sym_comment, - ACTIONS(7361), 16, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4320), 1, + sym_comment, + STATE(4411), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376298,16 +514051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [165817] = 3, - ACTIONS(247), 1, + [165424] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4334), 1, + STATE(4321), 1, sym_comment, - ACTIONS(7309), 16, + STATE(4469), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376320,19 +514072,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165842] = 4, - ACTIONS(3), 1, + [165451] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4335), 1, + ACTIONS(7542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7544), 1, + aux_sym__immediate_decimal_token2, + STATE(4322), 1, sym_comment, - ACTIONS(1787), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 14, + ACTIONS(1768), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1770), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [165482] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4323), 1, + sym_comment, + ACTIONS(7534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376345,22 +514120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [165869] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165509] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7531), 1, - anon_sym_DOT_DOT2, - STATE(4336), 1, + STATE(4324), 1, sym_comment, - ACTIONS(1028), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7533), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 11, + STATE(4471), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376372,12 +514142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165900] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165536] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4337), 1, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4325), 1, sym_comment, - ACTIONS(7361), 16, + ACTIONS(7534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376390,16 +514168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165925] = 3, - ACTIONS(247), 1, + [165565] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4338), 1, + ACTIONS(7548), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4326), 1, sym_comment, - ACTIONS(7309), 16, + ACTIONS(7534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376412,16 +514192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165950] = 3, - ACTIONS(247), 1, + [165594] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4339), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4327), 1, sym_comment, - ACTIONS(7361), 16, + ACTIONS(7550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376434,16 +514214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165975] = 3, - ACTIONS(247), 1, + [165621] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4340), 1, + ACTIONS(7546), 1, + anon_sym_and2, + ACTIONS(7552), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4328), 1, sym_comment, - ACTIONS(7535), 16, + ACTIONS(7534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376456,16 +514241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [166000] = 3, - ACTIONS(247), 1, + [165652] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4341), 1, + ACTIONS(7548), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4329), 1, sym_comment, - ACTIONS(7535), 16, + ACTIONS(7534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376478,18 +514266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [166025] = 4, - ACTIONS(247), 1, + [165683] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7537), 1, - anon_sym_and2, - STATE(4342), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4330), 1, sym_comment, - ACTIONS(7535), 15, + ACTIONS(7534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376502,73 +514287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166052] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4343), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4802), 1, - sym_cell_path, - STATE(4820), 1, - sym_path, - ACTIONS(1881), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166087] = 8, - ACTIONS(247), 1, + [165710] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4344), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4818), 1, - sym_cell_path, - STATE(4820), 1, - sym_path, - ACTIONS(1885), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3965), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166122] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4345), 1, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4331), 1, sym_comment, - ACTIONS(1843), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1841), 14, - sym__newline, + STATE(4413), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376580,16 +514315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [166149] = 4, - ACTIONS(247), 1, + anon_sym_or2, + [165743] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - STATE(4346), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4332), 1, sym_comment, - ACTIONS(7535), 15, + ACTIONS(7534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376602,19 +514336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166176] = 5, - ACTIONS(247), 1, + [165770] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7537), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7541), 1, - anon_sym_xor2, - STATE(4347), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4333), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(7534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376627,18 +514361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [166205] = 5, - ACTIONS(247), 1, + [165799] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7548), 1, anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, - STATE(4348), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4334), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(7534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376651,14 +514385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [166234] = 3, - ACTIONS(247), 1, + [165828] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4349), 1, + ACTIONS(7546), 1, + anon_sym_and2, + ACTIONS(7552), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4335), 1, sym_comment, - ACTIONS(7535), 16, + ACTIONS(7534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376671,16 +514411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [166259] = 3, - ACTIONS(247), 1, + [165859] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4350), 1, + ACTIONS(7548), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_comment, - ACTIONS(7535), 16, + ACTIONS(7534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376693,43 +514436,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [166284] = 6, - ACTIONS(247), 1, + [165890] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7545), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7547), 1, - aux_sym__immediate_decimal_token2, - STATE(4351), 1, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(4337), 1, sym_comment, - ACTIONS(1739), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [166315] = 4, - ACTIONS(247), 1, + STATE(5056), 1, + sym_cell_path, + ACTIONS(7560), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7562), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [165925] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7537), 1, - anon_sym_and2, - STATE(4352), 1, + STATE(4338), 1, sym_comment, - ACTIONS(7535), 15, + ACTIONS(1508), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1506), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376743,17 +514486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [166342] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + [165952] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7539), 1, + ACTIONS(7538), 1, anon_sym_and2, - STATE(4353), 1, - sym_comment, - ACTIONS(7535), 15, + ACTIONS(7564), 1, sym__newline, + STATE(4339), 1, + sym_comment, + STATE(4476), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376765,19 +514510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [166369] = 5, - ACTIONS(247), 1, + [165983] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7537), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7541), 1, + ACTIONS(7552), 1, anon_sym_xor2, - STATE(4354), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4340), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(7550), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376790,18 +514536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [166398] = 5, - ACTIONS(247), 1, + [166014] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, - STATE(4355), 1, + STATE(4341), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(1888), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1886), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376813,18 +514559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [166427] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [166041] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4356), 1, + STATE(4342), 1, sym_comment, - ACTIONS(2270), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2268), 14, + STATE(4362), 1, + aux_sym_shebang_repeat1, + ACTIONS(7567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376837,107 +514580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token4, - [166454] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1887), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4357), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4822), 1, - sym_cell_path, - ACTIONS(1889), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166489] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4358), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4835), 1, - sym_cell_path, - ACTIONS(1893), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166524] = 8, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166068] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7569), 1, anon_sym_DOT, - STATE(4359), 1, + ACTIONS(7571), 1, + aux_sym__immediate_decimal_token2, + STATE(4343), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4622), 1, - sym_cell_path, - STATE(4820), 1, - sym_path, - ACTIONS(963), 11, - anon_sym_EQ, + ACTIONS(1872), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166559] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1895), 1, anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4360), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4904), 1, - sym_cell_path, - ACTIONS(1897), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -376947,49 +514607,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166594] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [166099] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(2014), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4361), 1, + STATE(4344), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4910), 1, + STATE(4807), 1, sym_cell_path, - ACTIONS(1913), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166629] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4362), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(4943), 1, - sym_cell_path, - ACTIONS(1917), 11, + ACTIONS(2016), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377001,45 +514635,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166664] = 8, - ACTIONS(247), 1, + [166134] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4363), 1, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4345), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4965), 1, - sym_cell_path, - ACTIONS(1921), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7550), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166699] = 6, + anon_sym_xor2, + anon_sym_or2, + [166163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1767), 1, + STATE(4346), 1, + sym_comment, + ACTIONS(1516), 2, sym__space, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7549), 1, anon_sym_DOT, - STATE(4364), 1, - sym_comment, - ACTIONS(1765), 13, + ACTIONS(1514), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377053,49 +514681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166730] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4365), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4968), 1, - sym_cell_path, - ACTIONS(1929), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166765] = 8, - ACTIONS(247), 1, + anon_sym_QMARK2, + [166190] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(2006), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4366), 1, + STATE(4347), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(4971), 1, + STATE(5140), 1, sym_cell_path, - ACTIONS(1944), 11, + ACTIONS(2008), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377107,99 +514709,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166800] = 4, - ACTIONS(247), 1, + [166225] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4367), 1, + ACTIONS(7548), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4348), 1, sym_comment, - ACTIONS(1006), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1008), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7550), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166827] = 8, - ACTIONS(247), 1, + anon_sym_xor2, + anon_sym_or2, + [166254] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2026), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4368), 1, + ACTIONS(7548), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + ACTIONS(7575), 1, + anon_sym_or2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4349), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4983), 1, - sym_cell_path, - ACTIONS(2028), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7573), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166862] = 8, - ACTIONS(247), 1, + [166287] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2030), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4369), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4350), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4997), 1, - sym_cell_path, - ACTIONS(2032), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7550), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166897] = 8, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166314] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(2054), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4370), 1, + STATE(4351), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(4882), 1, + STATE(4883), 1, sym_cell_path, - ACTIONS(2036), 11, + ACTIONS(2056), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377211,15 +514809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166932] = 4, + [166349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, + STATE(4352), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(1970), 2, sym__space, - anon_sym_DOT, - ACTIONS(990), 14, + anon_sym_LPAREN2, + ACTIONS(1968), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377233,40 +514831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [166959] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4372), 1, - sym_comment, - ACTIONS(1010), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1012), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166986] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [166376] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4373), 1, + STATE(4353), 1, sym_comment, - ACTIONS(1014), 3, + ACTIONS(1518), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1016), 13, + ACTIONS(1520), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -377280,128 +514855,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167013] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2038), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4374), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4921), 1, - sym_cell_path, - ACTIONS(2040), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167048] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4375), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4923), 1, - sym_cell_path, - ACTIONS(1933), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167083] = 8, - ACTIONS(247), 1, + [166403] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1514), 1, anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4376), 1, + STATE(4354), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4975), 1, - sym_cell_path, - ACTIONS(1901), 11, + ACTIONS(1516), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - [167118] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT, - STATE(1484), 1, - sym_cell_path, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(4377), 1, - sym_comment, - ACTIONS(961), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(963), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [167153] = 6, - ACTIONS(3), 1, + [166430] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7551), 1, - anon_sym_DOT_DOT2, - STATE(4378), 1, + ACTIONS(7546), 1, + anon_sym_and2, + ACTIONS(7552), 1, + anon_sym_xor2, + ACTIONS(7577), 1, + anon_sym_or2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4355), 1, sym_comment, - ACTIONS(2128), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7553), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(7573), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377413,20 +514903,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167184] = 6, + anon_sym_RPAREN, + [166463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT2, - STATE(4379), 1, + STATE(4356), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(1540), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7557), 2, + ACTIONS(7581), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2130), 11, + ACTIONS(1538), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377438,49 +514929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167215] = 8, - ACTIONS(247), 1, + [166494] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1859), 1, - anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4380), 1, + STATE(4357), 1, sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4898), 1, - sym_cell_path, - ACTIONS(1861), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167250] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1522), 3, anon_sym_DASH2, - ACTIONS(7529), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4381), 1, - sym_comment, - STATE(4552), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(4986), 1, - sym_cell_path, - ACTIONS(1909), 11, + ACTIONS(1524), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -377492,69 +514950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167285] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - sym__space, - ACTIONS(7559), 1, - sym_long_flag_identifier, - ACTIONS(7561), 1, - anon_sym_EQ2, - STATE(4382), 1, - sym_comment, - ACTIONS(4970), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [167316] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7563), 1, - anon_sym_DOT_DOT2, - STATE(4383), 1, - sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7565), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [167347] = 6, - ACTIONS(3), 1, + [166521] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4974), 1, - sym__space, - ACTIONS(7567), 1, - anon_sym_EQ2, - ACTIONS(7569), 1, - sym_short_flag_identifier, - STATE(4384), 1, - sym_comment, - ACTIONS(4976), 13, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7564), 1, sym__newline, + STATE(4358), 1, + sym_comment, + STATE(4481), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377566,18 +514975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167378] = 5, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [166552] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7571), 1, - anon_sym_QMARK2, - STATE(4385), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4359), 1, sym_comment, - ACTIONS(980), 2, - sym__space, - anon_sym_DOT, - ACTIONS(978), 13, + ACTIONS(7583), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377590,111 +514997,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167407] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166579] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7573), 1, - anon_sym_QMARK2, - STATE(4386), 1, - sym_comment, - ACTIONS(986), 2, - sym__space, + ACTIONS(2034), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, anon_sym_DOT, - ACTIONS(984), 13, + STATE(4360), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4850), 1, + sym_cell_path, + ACTIONS(2036), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [167436] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166614] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4387), 1, + STATE(4361), 1, sym_comment, - ACTIONS(2120), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1526), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - [167463] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7575), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7577), 1, - aux_sym__immediate_decimal_token2, - STATE(4388), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1587), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_DOT, - [167494] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DASH2, - STATE(4389), 1, - sym_comment, - ACTIONS(1004), 15, + ACTIONS(1528), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [167521] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166641] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4390), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4362), 1, sym_comment, - ACTIONS(996), 2, - sym__space, - anon_sym_DOT, - ACTIONS(994), 14, + ACTIONS(7583), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377707,24 +515070,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [167548] = 8, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166668] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(2010), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4391), 1, + STATE(4363), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(4991), 1, + STATE(4848), 1, sym_cell_path, - ACTIONS(1865), 11, + ACTIONS(2012), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377736,20 +515100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167583] = 6, + [166703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7579), 1, - anon_sym_DOT_DOT2, - STATE(4392), 1, + STATE(4364), 1, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2242), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7581), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2157), 11, + ACTIONS(2240), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377761,15 +515122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167614] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [166730] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4393), 1, + STATE(4359), 1, + aux_sym_shebang_repeat1, + STATE(4365), 1, sym_comment, - ACTIONS(1000), 2, - sym__space, - anon_sym_DOT, - ACTIONS(998), 14, + ACTIONS(7567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377782,22 +515143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [167641] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7513), 1, anon_sym_and2, - ACTIONS(7515), 1, anon_sym_xor2, - ACTIONS(7517), 1, anon_sym_or2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4394), 1, + [166757] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4366), 1, sym_comment, - ACTIONS(7583), 12, + ACTIONS(2221), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2219), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377809,19 +515168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [167674] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [166784] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(7587), 1, - sym__space, - STATE(4395), 1, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + STATE(4367), 1, sym_comment, - STATE(7495), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7585), 13, + ACTIONS(1800), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377833,72 +515189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [167705] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_DOT, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token2, - STATE(4396), 1, - sym_comment, - ACTIONS(1765), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [167736] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(4397), 1, - sym_comment, - STATE(5133), 1, - sym_cell_path, - ACTIONS(7593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7595), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [167771] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7537), 1, anon_sym_and2, - ACTIONS(7541), 1, anon_sym_xor2, - ACTIONS(7599), 1, anon_sym_or2, - STATE(4398), 1, + [166811] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4368), 1, sym_comment, - ACTIONS(7597), 13, + ACTIONS(7583), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377911,20 +515214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167802] = 5, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [166840] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7427), 1, - aux_sym__immediate_decimal_token2, - STATE(4399), 1, - sym_comment, - ACTIONS(1767), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1765), 12, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4369), 1, + sym_comment, + STATE(4487), 1, + aux_sym_shebang_repeat1, + ACTIONS(7536), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377935,62 +515240,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [167831] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_and2, - ACTIONS(7543), 1, - anon_sym_xor2, - ACTIONS(7601), 1, + anon_sym_RPAREN, anon_sym_or2, - STATE(4400), 1, + [166873] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4370), 1, sym_comment, - ACTIONS(7597), 13, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4800), 1, + sym_cell_path, + STATE(4833), 1, + sym_path, + ACTIONS(1976), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [167862] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166908] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4401), 1, + ACTIONS(2171), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4371), 1, sym_comment, - ACTIONS(6983), 16, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4851), 1, + sym_cell_path, + ACTIONS(2173), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [167887] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4402), 1, + STATE(4372), 1, sym_comment, - ACTIONS(7603), 15, + ACTIONS(1498), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1496), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378003,17 +515317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [167914] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + [166970] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(7548), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4403), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7603), 15, + ACTIONS(7583), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378026,19 +515341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167941] = 5, - ACTIONS(247), 1, + [166999] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4404), 1, + STATE(4374), 1, sym_comment, - ACTIONS(7603), 14, + ACTIONS(7550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378051,22 +515363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167970] = 7, - ACTIONS(247), 1, + [167026] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7521), 1, + ACTIONS(7552), 1, anon_sym_xor2, - ACTIONS(7523), 1, - anon_sym_or2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4405), 1, + STATE(4375), 1, sym_comment, - ACTIONS(7583), 12, + ACTIONS(7583), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378079,44 +515390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [168003] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7607), 1, - anon_sym_EQ, - ACTIONS(7610), 1, - sym__newline, - ACTIONS(7613), 1, - anon_sym_COLON, - ACTIONS(7616), 1, - anon_sym_DASH2, - STATE(6777), 1, - aux_sym_shebang_repeat1, - STATE(4406), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(5171), 2, - sym_param_type, - sym_param_value, - ACTIONS(7605), 8, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [168040] = 5, - ACTIONS(247), 1, + anon_sym_or2, + [167057] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7548), 1, anon_sym_and2, - STATE(1761), 1, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4407), 1, + STATE(4376), 1, sym_comment, - ACTIONS(7603), 14, + ACTIONS(7583), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378129,43 +515415,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [168069] = 4, - ACTIONS(247), 1, + [167088] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - STATE(4408), 1, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4377), 1, sym_comment, - ACTIONS(996), 15, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4853), 1, + sym_cell_path, + ACTIONS(2040), 11, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [168096] = 6, - ACTIONS(247), 1, + [167123] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4409), 1, + STATE(4378), 1, sym_comment, - ACTIONS(7603), 13, + STATE(4416), 1, + aux_sym_shebang_repeat1, + ACTIONS(7567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378178,19 +515463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [168127] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7521), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4410), 1, + anon_sym_or2, + [167150] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4379), 1, sym_comment, - ACTIONS(7603), 13, + ACTIONS(1921), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1919), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378203,15 +515487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [168158] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [167177] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4411), 1, + STATE(4380), 1, sym_comment, - ACTIONS(7603), 15, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378227,14 +515512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168185] = 4, - ACTIONS(247), 1, + [167204] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4412), 1, + STATE(4381), 1, sym_comment, - ACTIONS(7603), 15, + ACTIONS(7365), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378247,43 +515530,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168212] = 5, - ACTIONS(247), 1, + [167229] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4413), 1, + ACTIONS(2070), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4382), 1, sym_comment, - ACTIONS(7603), 14, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4909), 1, + sym_cell_path, + ACTIONS(2072), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [168241] = 5, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167264] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4414), 1, + STATE(4383), 1, sym_comment, - ACTIONS(7603), 14, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378296,24 +515581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [168270] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7501), 1, anon_sym_xor2, - ACTIONS(7503), 1, anon_sym_or2, - STATE(4327), 1, - aux_sym_shebang_repeat1, - STATE(4415), 1, + [167291] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7587), 1, + anon_sym_QMARK2, + STATE(4384), 1, sym_comment, - ACTIONS(7618), 11, + ACTIONS(1502), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1500), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378325,22 +515607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [168305] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + [167320] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - ACTIONS(7509), 1, - anon_sym_or2, - STATE(4328), 1, - aux_sym_shebang_repeat1, - STATE(4416), 1, + ACTIONS(7589), 1, + anon_sym_QMARK2, + STATE(4385), 1, sym_comment, - ACTIONS(7618), 11, + ACTIONS(1492), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1490), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378352,43 +515631,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [168340] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [167349] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4417), 1, + ACTIONS(1510), 1, + anon_sym_DASH2, + STATE(4386), 1, sym_comment, - ACTIONS(7603), 13, + ACTIONS(1512), 15, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [167376] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2018), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4387), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4815), 1, + sym_cell_path, + STATE(4833), 1, + sym_path, + ACTIONS(2020), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [168371] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167411] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7521), 1, - anon_sym_xor2, - STATE(1761), 1, + STATE(4318), 1, aux_sym_shebang_repeat1, - STATE(4418), 1, + STATE(4388), 1, sym_comment, - ACTIONS(7603), 13, + ACTIONS(7591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378401,18 +515702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [168402] = 4, + [167438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4389), 1, sym_comment, - ACTIONS(1737), 4, - ts_builtin_sym_end, + ACTIONS(1874), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 12, + anon_sym_LPAREN2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378424,16 +515725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168429] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [167465] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4420), 1, - sym_comment, - STATE(4426), 1, - aux_sym_shebang_repeat1, - ACTIONS(7620), 15, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7593), 1, sym__newline, + STATE(4368), 1, + aux_sym_shebang_repeat1, + STATE(4390), 1, + sym_comment, + ACTIONS(7567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378445,24 +515751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168456] = 6, - ACTIONS(3), 1, + [167496] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7531), 1, - anon_sym_DOT_DOT2, - STATE(4421), 1, - sym_comment, - ACTIONS(7445), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7533), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7443), 11, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7593), 1, sym__newline, + STATE(4373), 1, + aux_sym_shebang_repeat1, + STATE(4391), 1, + sym_comment, + ACTIONS(7567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378473,40 +515775,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168487] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [167527] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4422), 1, + ACTIONS(1998), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4392), 1, sym_comment, - ACTIONS(1046), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1044), 12, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(5138), 1, + sym_cell_path, + ACTIONS(2000), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168514] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167562] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4423), 1, + ACTIONS(7548), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4393), 1, sym_comment, - ACTIONS(2054), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2052), 12, + ACTIONS(7550), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378518,17 +515828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168541] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [167593] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4424), 1, - sym_comment, - ACTIONS(1004), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1002), 14, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + ACTIONS(7598), 1, + anon_sym_or2, + STATE(4355), 1, + aux_sym_shebang_repeat1, + STATE(4394), 1, + sym_comment, + ACTIONS(7596), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378540,16 +515857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [168568] = 4, - ACTIONS(247), 1, + [167628] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(4323), 1, aux_sym_shebang_repeat1, - STATE(4425), 1, + STATE(4395), 1, sym_comment, - ACTIONS(7622), 15, + ACTIONS(7591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378565,14 +515880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168595] = 4, - ACTIONS(247), 1, + [167655] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4426), 1, + STATE(4396), 1, sym_comment, - ACTIONS(7622), 15, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378585,17 +515902,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168622] = 4, - ACTIONS(247), 1, + [167684] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4427), 1, + ACTIONS(7442), 1, + anon_sym_DOT, + STATE(4397), 1, sym_comment, - STATE(4453), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 15, + STATE(4422), 1, + aux_sym_cell_path_repeat1, + STATE(4654), 1, + sym_path, + ACTIONS(1481), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378607,18 +515930,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [167717] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2058), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4398), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4885), 1, + sym_cell_path, + ACTIONS(2060), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167752] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7546), 1, anon_sym_and2, + ACTIONS(7552), 1, anon_sym_xor2, - anon_sym_or2, - [168649] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4428), 1, - sym_comment, - STATE(4454), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 15, + STATE(4399), 1, + sym_comment, + ACTIONS(7550), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378631,20 +515981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [168676] = 5, - ACTIONS(247), 1, + [167783] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(7556), 1, anon_sym_and2, - STATE(1761), 1, + ACTIONS(7558), 1, + anon_sym_xor2, + ACTIONS(7600), 1, + anon_sym_or2, + STATE(4349), 1, aux_sym_shebang_repeat1, - STATE(4429), 1, + STATE(4400), 1, sym_comment, - ACTIONS(7622), 14, - sym__newline, + ACTIONS(7596), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378656,18 +516009,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [168705] = 5, - ACTIONS(247), 1, + [167818] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2042), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4401), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4856), 1, + sym_cell_path, + ACTIONS(2044), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167853] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7548), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4430), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7622), 14, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378682,18 +516060,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168734] = 6, - ACTIONS(247), 1, + [167882] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7626), 1, + ACTIONS(2062), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4403), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4893), 1, + sym_cell_path, + ACTIONS(2064), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4431), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167917] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2046), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4404), 1, sym_comment, - STATE(4467), 1, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4860), 1, + sym_cell_path, + ACTIONS(2048), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167952] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7548), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 13, + STATE(4405), 1, + sym_comment, + ACTIONS(7550), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378705,20 +516138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [168765] = 6, - ACTIONS(247), 1, + [167983] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, + ACTIONS(7538), 1, anon_sym_and2, - ACTIONS(7626), 1, + ACTIONS(7602), 1, sym__newline, - STATE(4432), 1, - sym_comment, - STATE(4468), 1, + STATE(4325), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 13, + STATE(4406), 1, + sym_comment, + ACTIONS(7591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378732,18 +516164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168796] = 6, - ACTIONS(247), 1, + [168014] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4433), 1, + ACTIONS(7605), 1, + anon_sym_DOT_DOT2, + STATE(4407), 1, sym_comment, - ACTIONS(7622), 13, + ACTIONS(2203), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7607), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2197), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378755,21 +516189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [168827] = 6, - ACTIONS(247), 1, + [168045] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7556), 1, anon_sym_and2, - ACTIONS(7521), 1, - anon_sym_xor2, - STATE(1761), 1, + ACTIONS(7602), 1, + sym__newline, + STATE(4326), 1, aux_sym_shebang_repeat1, - STATE(4434), 1, + STATE(4408), 1, sym_comment, - ACTIONS(7622), 13, - sym__newline, + ACTIONS(7591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378781,21 +516212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [168858] = 7, - ACTIONS(247), 1, + [168076] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(7499), 1, + ACTIONS(7538), 1, anon_sym_and2, - ACTIONS(7501), 1, + ACTIONS(7540), 1, anon_sym_xor2, - STATE(4435), 1, - sym_comment, - STATE(4471), 1, + STATE(4375), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 12, + STATE(4409), 1, + sym_comment, + ACTIONS(7567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378808,19 +516240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168891] = 6, - ACTIONS(3), 1, + [168109] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - sym__space, - STATE(4436), 1, - sym_comment, - ACTIONS(1820), 13, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4376), 1, + aux_sym_shebang_repeat1, + STATE(4410), 1, + sym_comment, + ACTIONS(7567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378832,21 +516265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [168922] = 7, - ACTIONS(247), 1, + anon_sym_or2, + [168142] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7507), 1, + ACTIONS(7552), 1, anon_sym_xor2, - STATE(4437), 1, - sym_comment, - STATE(4472), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 12, + STATE(4411), 1, + sym_comment, + ACTIONS(7585), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378859,14 +516291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168955] = 4, - ACTIONS(247), 1, + [168173] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4438), 1, - sym_comment, - STATE(4474), 1, + STATE(4380), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 15, + STATE(4412), 1, + sym_comment, + ACTIONS(7536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378882,18 +516314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168982] = 6, - ACTIONS(247), 1, + [168200] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7548), 1, anon_sym_and2, - ACTIONS(7629), 1, - sym__newline, - STATE(4439), 1, - sym_comment, - STATE(4478), 1, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 13, + STATE(4413), 1, + sym_comment, + ACTIONS(7585), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378905,20 +516338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [169013] = 6, - ACTIONS(247), 1, + [168231] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7629), 1, + ACTIONS(3965), 1, sym__newline, - STATE(4440), 1, - sym_comment, - STATE(4479), 1, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4328), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 13, + STATE(4414), 1, + sym_comment, + ACTIONS(7591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378930,22 +516364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [169044] = 7, - ACTIONS(247), 1, + [168264] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(7499), 1, + ACTIONS(7556), 1, anon_sym_and2, - ACTIONS(7501), 1, + ACTIONS(7558), 1, anon_sym_xor2, - STATE(4441), 1, - sym_comment, - STATE(4483), 1, + STATE(4329), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 12, + STATE(4415), 1, + sym_comment, + ACTIONS(7591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378958,20 +516391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169077] = 7, - ACTIONS(247), 1, + [168297] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - STATE(4442), 1, - sym_comment, - STATE(4485), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 12, + STATE(4416), 1, + sym_comment, + ACTIONS(7583), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378983,15 +516411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [169110] = 4, - ACTIONS(247), 1, + [168324] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(4383), 1, aux_sym_shebang_repeat1, - STATE(4443), 1, + STATE(4417), 1, sym_comment, - ACTIONS(7622), 15, + ACTIONS(7536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379007,14 +516437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169137] = 4, - ACTIONS(247), 1, + [168351] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4444), 1, + ACTIONS(7579), 1, + anon_sym_DOT_DOT2, + STATE(4418), 1, sym_comment, - ACTIONS(7622), 15, + ACTIONS(7516), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7581), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7514), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379026,18 +516462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [169164] = 4, - ACTIONS(247), 1, + [168382] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4445), 1, + STATE(4419), 1, sym_comment, - STATE(4492), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 15, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379050,17 +516480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169191] = 4, - ACTIONS(247), 1, + [168407] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4446), 1, + STATE(4420), 1, sym_comment, - STATE(4493), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 15, + ACTIONS(7365), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379073,21 +516502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169218] = 6, + [168432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2371), 1, anon_sym_LPAREN2, - ACTIONS(2242), 1, + ACTIONS(2373), 1, sym__space, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(4447), 1, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, + STATE(4421), 1, sym_comment, - ACTIONS(2238), 13, + ACTIONS(2369), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379101,18 +516531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169249] = 6, + [168463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(7609), 1, + anon_sym_DOT, + STATE(4654), 1, + sym_path, + ACTIONS(1485), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(4448), 1, + STATE(4422), 2, sym_comment, - ACTIONS(1026), 13, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379124,18 +516556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169280] = 5, - ACTIONS(247), 1, + [168494] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4449), 1, + STATE(4423), 1, sym_comment, - ACTIONS(7622), 14, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379148,18 +516574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169309] = 5, - ACTIONS(247), 1, + [168519] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4450), 1, + STATE(4424), 1, sym_comment, - ACTIONS(7622), 14, + ACTIONS(7365), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379172,20 +516596,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169338] = 6, - ACTIONS(247), 1, + [168544] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7548), 1, anon_sym_and2, - ACTIONS(7626), 1, - sym__newline, - STATE(4451), 1, - sym_comment, - STATE(4494), 1, + ACTIONS(7554), 1, + anon_sym_xor2, + ACTIONS(7575), 1, + anon_sym_or2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7624), 13, + STATE(4425), 1, + sym_comment, + ACTIONS(7612), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379197,20 +516626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [169369] = 6, - ACTIONS(247), 1, + [168577] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7626), 1, - sym__newline, - STATE(4452), 1, + ACTIONS(5020), 1, + sym__space, + ACTIONS(7614), 1, + anon_sym_EQ2, + ACTIONS(7616), 1, + sym_short_flag_identifier, + STATE(4426), 1, sym_comment, - STATE(4495), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 13, + ACTIONS(5022), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379222,16 +516650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [169400] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [168608] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4453), 1, + STATE(4427), 1, sym_comment, - ACTIONS(7632), 15, + ACTIONS(7400), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379244,17 +516669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169427] = 4, - ACTIONS(247), 1, + [168633] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4454), 1, + STATE(4428), 1, sym_comment, - ACTIONS(7632), 15, + ACTIONS(7618), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379267,21 +516691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169454] = 6, - ACTIONS(247), 1, + [168658] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4455), 1, + STATE(4429), 1, sym_comment, - ACTIONS(7622), 13, + ACTIONS(7618), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379294,19 +516713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [169485] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7519), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7521), 1, anon_sym_xor2, - STATE(1761), 1, + anon_sym_or2, + [168683] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4456), 1, + STATE(4430), 1, sym_comment, - ACTIONS(7622), 13, + ACTIONS(7583), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379319,21 +516737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [169516] = 7, - ACTIONS(247), 1, + [168710] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, + ACTIONS(7620), 1, anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - STATE(4457), 1, + STATE(4431), 1, sym_comment, - STATE(4496), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 12, + ACTIONS(7618), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379345,21 +516760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [169549] = 7, - ACTIONS(247), 1, + [168737] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, + ACTIONS(7622), 1, anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - STATE(4458), 1, + STATE(4432), 1, sym_comment, - STATE(4497), 1, - aux_sym_shebang_repeat1, - ACTIONS(7624), 12, + ACTIONS(7618), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379371,15 +516783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [169582] = 4, - ACTIONS(247), 1, + [168764] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4459), 1, + ACTIONS(7423), 1, + aux_sym__immediate_decimal_token2, + STATE(4433), 1, sym_comment, - STATE(4498), 1, - aux_sym_shebang_repeat1, - ACTIONS(7492), 15, + ACTIONS(1874), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379391,18 +516809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [169609] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [168793] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4460), 1, - sym_comment, - STATE(4499), 1, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 15, + STATE(4434), 1, + sym_comment, + ACTIONS(7550), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379415,21 +516832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169636] = 6, - ACTIONS(3), 1, + [168822] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(2232), 1, - sym__space, - STATE(4461), 1, + ACTIONS(7620), 1, + anon_sym_and2, + ACTIONS(7624), 1, + anon_sym_xor2, + STATE(4435), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(7618), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379443,18 +516857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169667] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [168851] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, - sym__space, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(4462), 1, + ACTIONS(7622), 1, + anon_sym_and2, + ACTIONS(7626), 1, + anon_sym_xor2, + STATE(4436), 1, sym_comment, - ACTIONS(2246), 13, + ACTIONS(7618), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379468,18 +516881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169698] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [168880] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__space, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(4463), 1, + STATE(4437), 1, sym_comment, - ACTIONS(1802), 13, + ACTIONS(7618), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379493,18 +516901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169729] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168905] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2256), 1, - sym__space, - STATE(4464), 1, + STATE(4438), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(7618), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379518,18 +516923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169760] = 6, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168930] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7629), 1, - sym__newline, - STATE(4465), 1, - sym_comment, - STATE(4504), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 13, + STATE(4439), 1, + sym_comment, + ACTIONS(7583), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379543,18 +516950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [169791] = 6, - ACTIONS(247), 1, + [168959] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, + ACTIONS(7620), 1, anon_sym_and2, - ACTIONS(7629), 1, - sym__newline, - STATE(4466), 1, + STATE(4440), 1, sym_comment, - STATE(4505), 1, - aux_sym_shebang_repeat1, - ACTIONS(7492), 13, + ACTIONS(7618), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379566,18 +516970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [169822] = 5, - ACTIONS(247), 1, + [168986] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, + ACTIONS(7622), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4467), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7632), 14, + ACTIONS(7618), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379590,18 +516993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [169851] = 5, - ACTIONS(247), 1, + [169013] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7620), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4468), 1, + ACTIONS(7624), 1, + anon_sym_xor2, + STATE(4442), 1, sym_comment, - ACTIONS(7632), 14, + ACTIONS(7618), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379614,20 +517018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [169880] = 5, - ACTIONS(3), 1, + [169042] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7634), 1, - aux_sym__immediate_decimal_token2, - STATE(4469), 1, + ACTIONS(7622), 1, + anon_sym_and2, + ACTIONS(7626), 1, + anon_sym_xor2, + STATE(4443), 1, sym_comment, - ACTIONS(1787), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 12, + ACTIONS(7618), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379639,21 +517041,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [169909] = 7, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [169071] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(7628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7630), 1, + aux_sym__immediate_decimal_token2, + STATE(4444), 1, + sym_comment, + ACTIONS(1890), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 11, + anon_sym_EQ, sym__newline, - ACTIONS(7499), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [169102] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7548), 1, anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - STATE(4470), 1, - sym_comment, - STATE(4508), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - ACTIONS(7492), 12, + STATE(4445), 1, + sym_comment, + ACTIONS(7583), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379665,19 +517091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [169942] = 6, - ACTIONS(247), 1, + [169131] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4471), 1, + STATE(4446), 1, sym_comment, - ACTIONS(7632), 13, + ACTIONS(1558), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1556), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379689,21 +517115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [169973] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [169158] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7538), 1, anon_sym_and2, - ACTIONS(7521), 1, - anon_sym_xor2, - STATE(1761), 1, + ACTIONS(7564), 1, + sym__newline, + STATE(4396), 1, aux_sym_shebang_repeat1, - STATE(4472), 1, + STATE(4447), 1, sym_comment, - ACTIONS(7632), 13, - sym__newline, + ACTIONS(7536), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379715,15 +517139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [170004] = 4, - ACTIONS(247), 1, + [169189] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(7548), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4473), 1, + STATE(4448), 1, sym_comment, - ACTIONS(7636), 15, + ACTIONS(7550), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379736,18 +517163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170031] = 4, - ACTIONS(247), 1, + [169218] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4474), 1, - sym_comment, - ACTIONS(7636), 15, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + ACTIONS(7598), 1, + anon_sym_or2, + STATE(4449), 1, + sym_comment, + STATE(4478), 1, + aux_sym_shebang_repeat1, + ACTIONS(7632), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379759,21 +517192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170058] = 6, - ACTIONS(247), 1, + [169253] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7638), 1, - sym__newline, - STATE(4429), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2341), 1, + sym__space, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(4450), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(2337), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379785,16 +517216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [170089] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169284] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4402), 1, - aux_sym_shebang_repeat1, - STATE(4476), 1, + ACTIONS(1540), 1, + sym__space, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(4451), 1, sym_comment, - ACTIONS(7641), 15, + ACTIONS(1538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379807,17 +517241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170116] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, - aux_sym_shebang_repeat1, - STATE(4477), 1, + STATE(4452), 1, sym_comment, - ACTIONS(7641), 15, + ACTIONS(2217), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2215), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379829,21 +517264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170143] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [169342] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(7538), 1, anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4478), 1, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4453), 1, sym_comment, - ACTIONS(7636), 14, - sym__newline, + STATE(4454), 1, + aux_sym_shebang_repeat1, + ACTIONS(7567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379855,18 +517290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [170172] = 5, - ACTIONS(247), 1, + [169375] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7546), 1, anon_sym_and2, - STATE(1761), 1, + ACTIONS(7552), 1, + anon_sym_xor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4479), 1, + STATE(4454), 1, sym_comment, - ACTIONS(7636), 14, + ACTIONS(7583), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379879,20 +517315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [170201] = 6, - ACTIONS(247), 1, + [169406] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7556), 1, anon_sym_and2, - ACTIONS(7643), 1, + ACTIONS(7564), 1, sym__newline, - STATE(4404), 1, + STATE(4402), 1, aux_sym_shebang_repeat1, - STATE(4480), 1, + STATE(4455), 1, sym_comment, - ACTIONS(7641), 13, + ACTIONS(7536), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379906,20 +517341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [170232] = 7, - ACTIONS(247), 1, + [169437] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - STATE(4481), 1, + ACTIONS(7634), 1, + aux_sym__immediate_decimal_token2, + STATE(4456), 1, sym_comment, - STATE(4509), 1, - aux_sym_shebang_repeat1, - ACTIONS(7492), 12, + ACTIONS(1921), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1919), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379930,20 +517364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [170265] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [169466] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, + ACTIONS(7538), 1, anon_sym_and2, - ACTIONS(7643), 1, + ACTIONS(7593), 1, sym__newline, - STATE(4407), 1, + STATE(4439), 1, aux_sym_shebang_repeat1, - STATE(4482), 1, + STATE(4457), 1, sym_comment, - ACTIONS(7641), 13, + ACTIONS(7567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379957,43 +517390,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [170296] = 6, - ACTIONS(247), 1, + [169497] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4483), 1, + ACTIONS(2022), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4458), 1, sym_comment, - ACTIONS(7636), 13, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4816), 1, + sym_cell_path, + STATE(4833), 1, + sym_path, + ACTIONS(2024), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [170327] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [169532] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7638), 1, + ACTIONS(3965), 1, sym__newline, - STATE(4430), 1, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + ACTIONS(7600), 1, + anon_sym_or2, + STATE(4425), 1, aux_sym_shebang_repeat1, - STATE(4484), 1, + STATE(4459), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(7632), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380005,20 +517444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [170358] = 6, - ACTIONS(247), 1, + [169567] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - ACTIONS(7521), 1, - anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4485), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4947), 1, + sym__space, + STATE(4460), 1, sym_comment, - ACTIONS(7636), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380031,21 +517468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170389] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169598] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - STATE(4433), 1, - aux_sym_shebang_repeat1, - STATE(4486), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + ACTIONS(2361), 1, + sym__space, + STATE(4461), 1, sym_comment, - ACTIONS(7620), 12, + ACTIONS(2357), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380057,23 +517493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170422] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169629] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(2026), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4487), 1, + STATE(4462), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - STATE(5068), 1, + STATE(4829), 1, sym_cell_path, - ACTIONS(1869), 11, + STATE(4833), 1, + sym_path, + ACTIONS(2028), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380085,20 +517521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170457] = 7, - ACTIONS(247), 1, + [169664] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - STATE(4409), 1, - aux_sym_shebang_repeat1, - STATE(4488), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4951), 1, + sym__space, + STATE(4463), 1, sym_comment, - ACTIONS(7641), 12, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4953), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380110,21 +517545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170490] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169695] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - STATE(4410), 1, - aux_sym_shebang_repeat1, - STATE(4489), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2349), 1, + sym__space, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(4464), 1, sym_comment, - ACTIONS(7641), 12, + ACTIONS(2345), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380136,21 +517570,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170523] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169726] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7507), 1, - anon_sym_xor2, - STATE(4434), 1, - aux_sym_shebang_repeat1, - STATE(4490), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2355), 1, + sym__space, + STATE(4465), 1, sym_comment, - ACTIONS(7620), 12, + ACTIONS(2353), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380162,16 +517595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170556] = 4, + anon_sym_RBRACE, + [169757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4491), 1, + STATE(4466), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(2409), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1765), 14, + ACTIONS(2407), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380185,38 +517618,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [170583] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [169784] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4492), 1, + ACTIONS(1496), 1, + anon_sym_DASH2, + STATE(4467), 1, sym_comment, - ACTIONS(7632), 15, + ACTIONS(1498), 15, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [169811] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7548), 1, anon_sym_and2, + ACTIONS(7554), 1, anon_sym_xor2, - anon_sym_or2, - [170610] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4493), 1, + STATE(4468), 1, sym_comment, - ACTIONS(7632), 15, + ACTIONS(7583), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380229,19 +517666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [170637] = 5, - ACTIONS(247), 1, + [169842] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4494), 1, + STATE(4469), 1, sym_comment, - ACTIONS(7632), 14, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380254,18 +517687,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170666] = 5, - ACTIONS(247), 1, + [169869] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_and2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4495), 1, + ACTIONS(7636), 1, + anon_sym_DOT_DOT2, + STATE(4470), 1, sym_comment, - ACTIONS(7632), 14, + ACTIONS(2234), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7638), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380277,21 +517715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [170695] = 6, - ACTIONS(247), 1, + [169900] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, - anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4496), 1, + STATE(4471), 1, sym_comment, - ACTIONS(7632), 13, + ACTIONS(7585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380304,19 +517735,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170726] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7521), 1, anon_sym_xor2, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4497), 1, + anon_sym_or2, + [169927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(7642), 1, + sym__space, + STATE(4472), 1, sym_comment, - ACTIONS(7632), 13, + STATE(7585), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7640), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380329,15 +517762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [170757] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169958] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(4330), 1, aux_sym_shebang_repeat1, - STATE(4498), 1, + STATE(4473), 1, sym_comment, - ACTIONS(7636), 15, + ACTIONS(7591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380353,14 +517786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170784] = 4, - ACTIONS(247), 1, + [169985] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(4332), 1, aux_sym_shebang_repeat1, - STATE(4499), 1, + STATE(4474), 1, sym_comment, - ACTIONS(7636), 15, + ACTIONS(7591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380376,15 +517809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170811] = 4, - ACTIONS(247), 1, + [170012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - STATE(4500), 1, + STATE(4475), 1, sym_comment, - ACTIONS(1719), 15, - ts_builtin_sym_end, + ACTIONS(1512), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1510), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380396,40 +517829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170838] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DASH2, - STATE(4501), 1, - sym_comment, - ACTIONS(1000), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK2, - anon_sym_DOT, - [170865] = 4, - ACTIONS(247), 1, + [170039] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4411), 1, + ACTIONS(7546), 1, + anon_sym_and2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4502), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7641), 15, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380442,18 +517854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170892] = 4, - ACTIONS(247), 1, + [170068] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4412), 1, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7593), 1, + sym__newline, + STATE(4445), 1, aux_sym_shebang_repeat1, - STATE(4503), 1, + STATE(4477), 1, sym_comment, - ACTIONS(7641), 15, - sym__newline, + ACTIONS(7567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380465,19 +517879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170919] = 5, - ACTIONS(247), 1, + [170099] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, + ACTIONS(7546), 1, anon_sym_and2, - STATE(1761), 1, + ACTIONS(7552), 1, + anon_sym_xor2, + ACTIONS(7577), 1, + anon_sym_or2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4504), 1, + STATE(4478), 1, sym_comment, - ACTIONS(7636), 14, + ACTIONS(7612), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380490,18 +517907,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [170948] = 5, - ACTIONS(247), 1, + [170132] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1450), 1, + sym_cell_path, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(4479), 1, + sym_comment, + ACTIONS(1473), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1475), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [170167] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1990), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4480), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4932), 1, + sym_cell_path, + ACTIONS(1992), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170202] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7548), 1, anon_sym_and2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4505), 1, + STATE(4481), 1, sym_comment, - ACTIONS(7636), 14, + ACTIONS(7585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380516,18 +517985,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [170977] = 6, - ACTIONS(247), 1, + [170231] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2066), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4482), 1, + sym_comment, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4901), 1, + sym_cell_path, + ACTIONS(2068), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170266] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7538), 1, anon_sym_and2, - ACTIONS(7643), 1, + ACTIONS(7602), 1, sym__newline, - STATE(4413), 1, + STATE(4333), 1, aux_sym_shebang_repeat1, - STATE(4506), 1, + STATE(4483), 1, sym_comment, - ACTIONS(7641), 13, + ACTIONS(7591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380541,18 +518037,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [171008] = 6, - ACTIONS(247), 1, + [170297] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7643), 1, + ACTIONS(1473), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4484), 1, + sym_comment, + STATE(4557), 1, + sym_cell_path, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + ACTIONS(1475), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4414), 1, - aux_sym_shebang_repeat1, - STATE(4507), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170332] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4977), 1, + sym__space, + ACTIONS(7644), 1, + sym_long_flag_identifier, + ACTIONS(7646), 1, + anon_sym_EQ2, + STATE(4485), 1, sym_comment, - ACTIONS(7641), 13, + ACTIONS(4979), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380564,21 +518088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [171039] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [170363] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7513), 1, + ACTIONS(7556), 1, anon_sym_and2, - ACTIONS(7515), 1, - anon_sym_xor2, - STATE(1761), 1, + ACTIONS(7602), 1, + sym__newline, + STATE(4334), 1, aux_sym_shebang_repeat1, - STATE(4508), 1, + STATE(4486), 1, sym_comment, - ACTIONS(7636), 13, - sym__newline, + ACTIONS(7591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380590,19 +518112,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [171070] = 6, - ACTIONS(247), 1, + [170394] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7519), 1, + ACTIONS(7546), 1, anon_sym_and2, - ACTIONS(7521), 1, + ACTIONS(7552), 1, anon_sym_xor2, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4509), 1, + STATE(4487), 1, sym_comment, - ACTIONS(7636), 13, + ACTIONS(7585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380616,14 +518139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [171101] = 4, - ACTIONS(247), 1, + [170425] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4443), 1, - aux_sym_shebang_repeat1, - STATE(4510), 1, + ACTIONS(7620), 1, + anon_sym_and2, + ACTIONS(7624), 1, + anon_sym_xor2, + ACTIONS(7650), 1, + anon_sym_or2, + STATE(4488), 1, sym_comment, - ACTIONS(7620), 15, + ACTIONS(7648), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380636,17 +518163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + [170456] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7622), 1, anon_sym_and2, + ACTIONS(7626), 1, anon_sym_xor2, + ACTIONS(7652), 1, anon_sym_or2, - [171128] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4444), 1, - aux_sym_shebang_repeat1, - STATE(4511), 1, + STATE(4489), 1, sym_comment, - ACTIONS(7620), 15, + ACTIONS(7648), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380659,21 +518188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [171155] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [170487] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7499), 1, + ACTIONS(7548), 1, anon_sym_and2, - ACTIONS(7638), 1, - sym__newline, - STATE(4449), 1, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4512), 1, + STATE(4490), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(7585), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380685,20 +518213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [171186] = 6, - ACTIONS(247), 1, + [170518] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7505), 1, - anon_sym_and2, - ACTIONS(7638), 1, - sym__newline, - STATE(4450), 1, - aux_sym_shebang_repeat1, - STATE(4513), 1, + STATE(4491), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(7031), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380710,21 +518232,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171217] = 6, - ACTIONS(3), 1, + [170543] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - ACTIONS(2262), 1, - sym__space, - STATE(4514), 1, + ACTIONS(2030), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4492), 1, sym_comment, - ACTIONS(2258), 13, + STATE(4592), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + STATE(4837), 1, + sym_cell_path, + ACTIONS(2032), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170578] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4335), 1, + aux_sym_shebang_repeat1, + STATE(4493), 1, + sym_comment, + ACTIONS(7591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380736,23 +518288,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [171248] = 7, - ACTIONS(3), 1, + anon_sym_or2, + [170611] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT, - STATE(4323), 1, - aux_sym_cell_path_repeat1, - STATE(4515), 1, - sym_comment, - STATE(4780), 1, - sym_path, - ACTIONS(969), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(967), 11, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4336), 1, + aux_sym_shebang_repeat1, + STATE(4494), 1, + sym_comment, + ACTIONS(7591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380763,22 +518313,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171281] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_or2, + [170644] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(4495), 1, + sym_comment, + STATE(5062), 1, + sym_cell_path, + ACTIONS(7654), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7656), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [170679] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1994), 1, anon_sym_DASH2, - ACTIONS(7529), 1, + ACTIONS(7532), 1, anon_sym_DOT, - STATE(4516), 1, + STATE(4496), 1, sym_comment, - STATE(4552), 1, + STATE(4592), 1, aux_sym_cell_path_repeat1, - STATE(4820), 1, + STATE(4833), 1, sym_path, - STATE(5074), 1, + STATE(4835), 1, sym_cell_path, - ACTIONS(1851), 11, + ACTIONS(1996), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380790,20 +518369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171316] = 7, - ACTIONS(247), 1, + [170714] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, - anon_sym_and2, - ACTIONS(7501), 1, - anon_sym_xor2, - STATE(4455), 1, - aux_sym_shebang_repeat1, - STATE(4517), 1, + STATE(4497), 1, sym_comment, - ACTIONS(7620), 12, + STATE(4499), 1, + aux_sym_shebang_repeat1, + ACTIONS(7658), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380815,21 +518389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [171349] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7501), 1, anon_sym_xor2, - STATE(4417), 1, + anon_sym_or2, + [170741] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4327), 1, aux_sym_shebang_repeat1, - STATE(4518), 1, + STATE(4498), 1, sym_comment, - ACTIONS(7641), 12, + ACTIONS(7658), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380841,21 +518412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [171382] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7507), 1, anon_sym_xor2, - STATE(4418), 1, + anon_sym_or2, + [170768] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4519), 1, + STATE(4499), 1, sym_comment, - ACTIONS(7641), 12, + ACTIONS(7550), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380867,21 +518435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [171415] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7507), 1, anon_sym_xor2, - STATE(4456), 1, - aux_sym_shebang_repeat1, - STATE(4520), 1, + anon_sym_or2, + [170795] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7660), 1, + anon_sym_DOT_DOT2, + STATE(4500), 1, sym_comment, - ACTIONS(7620), 12, + ACTIONS(2191), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2185), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380892,17 +518463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [171448] = 4, - ACTIONS(247), 1, + [170826] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4425), 1, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7664), 1, + sym__newline, + STATE(4345), 1, aux_sym_shebang_repeat1, - STATE(4521), 1, + STATE(4501), 1, sym_comment, - ACTIONS(7620), 15, - sym__newline, + ACTIONS(7658), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380914,40 +518486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171475] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token2, - STATE(4522), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1575), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [171503] = 3, - ACTIONS(247), 1, + [170857] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4523), 1, - sym_comment, - ACTIONS(7535), 15, - ts_builtin_sym_end, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7664), 1, sym__newline, + STATE(4348), 1, + aux_sym_shebang_repeat1, + STATE(4502), 1, + sym_comment, + ACTIONS(7658), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380958,17 +518510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [171527] = 3, - ACTIONS(247), 1, + [170888] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4524), 1, - sym_comment, - ACTIONS(7309), 15, - ts_builtin_sym_end, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4399), 1, + aux_sym_shebang_repeat1, + STATE(4503), 1, + sym_comment, + ACTIONS(7658), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380979,47 +518537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [171551] = 6, - ACTIONS(247), 1, + [170921] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_DASH2, - ACTIONS(7648), 1, - anon_sym_DOT_DOT2, - STATE(4525), 1, - sym_comment, - ACTIONS(7650), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3965), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171581] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4526), 1, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4405), 1, + aux_sym_shebang_repeat1, + STATE(4504), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4932), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4934), 11, - sym__newline, + ACTIONS(7658), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381030,16 +518563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171611] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [170954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, sym__space, - ACTIONS(7652), 1, - anon_sym_LBRACK2, - STATE(4527), 1, + STATE(4505), 1, sym_comment, - ACTIONS(2322), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381053,17 +518590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171639] = 4, - ACTIONS(3), 1, + [170985] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4528), 1, - sym_comment, - ACTIONS(992), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(990), 12, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4490), 1, + aux_sym_shebang_repeat1, + STATE(4506), 1, + sym_comment, + ACTIONS(7536), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381074,18 +518614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [171665] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_or2, + [171018] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_and2, - ACTIONS(7656), 1, - anon_sym_xor2, - STATE(4529), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(1948), 1, + sym__space, + STATE(4507), 1, sym_comment, - ACTIONS(7535), 13, - ts_builtin_sym_end, + ACTIONS(1940), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381097,20 +518639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [171693] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171049] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7658), 1, - sym_long_flag_identifier, - ACTIONS(7660), 1, - anon_sym_EQ2, - STATE(4530), 1, + STATE(4350), 1, + aux_sym_shebang_repeat1, + STATE(4508), 1, sym_comment, - ACTIONS(4968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4970), 11, + ACTIONS(7658), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381122,15 +518660,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171723] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171076] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7664), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4940), 1, sym__space, - STATE(4531), 2, + STATE(4509), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7662), 13, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381144,73 +518689,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171749] = 4, - ACTIONS(247), 1, + [171107] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4532), 1, + STATE(4374), 1, + aux_sym_shebang_repeat1, + STATE(4510), 1, sym_comment, - ACTIONS(2052), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2054), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7658), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171775] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7669), 1, - sym__newline, - ACTIONS(7671), 1, - anon_sym_RBRACK, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, - anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4533), 1, - sym_comment, - STATE(4878), 1, - aux_sym_parameter_parens_repeat1, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5550), 1, - sym_parameter, - [171827] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171134] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, - sym_comment, - ACTIONS(1767), 3, - ts_builtin_sym_end, - sym__space, + ACTIONS(1952), 1, anon_sym_LPAREN2, - ACTIONS(1765), 12, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(2335), 1, + sym__space, + STATE(4511), 1, + sym_comment, + ACTIONS(2333), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381222,20 +518735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171853] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7268), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7681), 1, - anon_sym_DOT, - STATE(4535), 1, + STATE(4512), 1, sym_comment, - ACTIONS(1767), 2, - ts_builtin_sym_end, + ACTIONS(1892), 2, sym__space, - ACTIONS(1765), 11, + anon_sym_LPAREN2, + ACTIONS(1890), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381247,20 +518757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171883] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [171192] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7683), 1, - anon_sym_EQ2, - ACTIONS(7685), 1, - sym_short_flag_identifier, - STATE(4536), 1, - sym_comment, - ACTIONS(4974), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4976), 11, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7664), 1, sym__newline, + STATE(4434), 1, + aux_sym_shebang_repeat1, + STATE(4513), 1, + sym_comment, + ACTIONS(7658), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381271,41 +518782,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171913] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [171223] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(1506), 1, anon_sym_DASH2, - ACTIONS(7691), 1, - anon_sym_DOT_DOT2, - STATE(4537), 1, + STATE(4514), 1, sym_comment, - ACTIONS(7693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7687), 11, + ACTIONS(1508), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - [171943] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4538), 1, - sym_comment, - ACTIONS(996), 3, - ts_builtin_sym_end, - sym__space, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT, - ACTIONS(994), 12, + [171250] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7664), 1, sym__newline, + STATE(4448), 1, + aux_sym_shebang_repeat1, + STATE(4515), 1, + sym_comment, + ACTIONS(7658), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381316,21 +518830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [171969] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [171281] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4539), 1, - sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4936), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4938), 11, + ACTIONS(3965), 1, sym__newline, + ACTIONS(7538), 1, + anon_sym_and2, + ACTIONS(7540), 1, + anon_sym_xor2, + STATE(4340), 1, + aux_sym_shebang_repeat1, + STATE(4516), 1, + sym_comment, + ACTIONS(7658), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381341,18 +518857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171999] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_or2, + [171314] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7695), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(7556), 1, anon_sym_and2, - ACTIONS(7697), 1, + ACTIONS(7558), 1, anon_sym_xor2, - STATE(4540), 1, + STATE(4468), 1, + aux_sym_shebang_repeat1, + STATE(4517), 1, sym_comment, - ACTIONS(7535), 13, - ts_builtin_sym_end, - sym__newline, + ACTIONS(7567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381363,66 +518883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_or2, - [172027] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7699), 1, - anon_sym_DOT, - STATE(4541), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1575), 11, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [172057] = 6, - ACTIONS(247), 1, + [171347] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_DASH2, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - STATE(4542), 1, - sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2163), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3965), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172087] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4543), 1, + ACTIONS(7556), 1, + anon_sym_and2, + ACTIONS(7558), 1, + anon_sym_xor2, + STATE(4393), 1, + aux_sym_shebang_repeat1, + STATE(4518), 1, sym_comment, - ACTIONS(1000), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(998), 12, - sym__newline, + ACTIONS(7658), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381433,43 +518909,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [172113] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [171380] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(4544), 1, - sym_comment, - ACTIONS(2262), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2258), 11, + ACTIONS(7669), 1, + anon_sym_EQ, + ACTIONS(7672), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7675), 1, + anon_sym_COLON, + ACTIONS(7678), 1, + anon_sym_DASH2, + STATE(6474), 1, + aux_sym_shebang_repeat1, + STATE(4519), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(5047), 2, + sym_param_type, + sym_param_value, + ACTIONS(7667), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [172143] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7708), 1, + ACTIONS(1874), 1, sym__space, - ACTIONS(7710), 1, - aux_sym_record_entry_token1, - STATE(4545), 1, + ACTIONS(7266), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7680), 1, + anon_sym_DOT, + STATE(4520), 1, sym_comment, - STATE(4571), 1, - aux_sym_command_repeat1, - ACTIONS(7706), 12, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381481,17 +518962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [172173] = 5, - ACTIONS(3), 1, + [171448] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7712), 1, - sym__space, - STATE(4546), 1, + STATE(4430), 1, + aux_sym_shebang_repeat1, + STATE(4521), 1, sym_comment, - STATE(4571), 1, - aux_sym_command_repeat1, - ACTIONS(7706), 13, + ACTIONS(7567), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381504,43 +518984,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [172201] = 5, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171475] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token2, - STATE(4547), 1, - sym_comment, - ACTIONS(1765), 3, - sym_identifier, + ACTIONS(2197), 1, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [172229] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7691), 1, + ACTIONS(7682), 1, anon_sym_DOT_DOT2, - ACTIONS(7716), 1, - anon_sym_DASH2, - STATE(4548), 1, + STATE(4522), 1, sym_comment, - ACTIONS(7693), 2, + ACTIONS(7684), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7714), 11, + ACTIONS(2203), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381552,112 +519011,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172259] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7669), 1, - sym__newline, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, - anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7718), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4549), 1, - sym_comment, - STATE(4880), 1, - aux_sym_parameter_parens_repeat1, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5550), 1, - sym_parameter, - [172311] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7669), 1, - sym__newline, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, - anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7720), 1, - anon_sym_RBRACK, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4550), 1, - sym_comment, - STATE(4932), 1, - aux_sym_parameter_parens_repeat1, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5550), 1, - sym_parameter, - [172363] = 4, - ACTIONS(247), 1, + [171505] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4551), 1, + STATE(4523), 1, sym_comment, - ACTIONS(2183), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2185), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5032), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5034), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172389] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [171531] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(967), 1, + ACTIONS(7688), 1, anon_sym_DASH2, - ACTIONS(7529), 1, - anon_sym_DOT, - STATE(4552), 1, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, + STATE(4524), 1, sym_comment, - STATE(4564), 1, - aux_sym_cell_path_repeat1, - STATE(4820), 1, - sym_path, - ACTIONS(969), 11, + ACTIONS(7692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7686), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381669,12 +519057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172421] = 3, - ACTIONS(247), 1, + [171561] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4553), 1, + STATE(4525), 1, sym_comment, - ACTIONS(7535), 15, + ACTIONS(7618), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381690,15 +519078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172445] = 4, - ACTIONS(247), 1, + [171585] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_and2, - STATE(4554), 1, + STATE(4526), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(1970), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1968), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381710,20 +519099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [172471] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [171611] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7722), 1, - anon_sym_QMARK2, - STATE(4555), 1, + STATE(4527), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(7618), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(978), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381735,54 +519118,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172499] = 17, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171635] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7669), 1, + ACTIONS(7696), 1, sym__newline, - ACTIONS(7673), 1, + ACTIONS(7698), 1, + anon_sym_PIPE, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(7724), 1, - anon_sym_RPAREN, - STATE(4134), 1, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4556), 1, + STATE(4528), 1, sym_comment, - STATE(4797), 1, + STATE(4572), 1, + aux_sym_shebang_repeat1, + STATE(4959), 1, aux_sym_parameter_parens_repeat1, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [172551] = 6, + [171687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4557), 1, + STATE(4529), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4920), 2, + ACTIONS(1516), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4922), 11, + anon_sym_DOT, + ACTIONS(1514), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381794,39 +519177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172581] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7691), 1, - anon_sym_DOT_DOT2, - ACTIONS(7728), 1, - anon_sym_DASH2, - STATE(4558), 1, - sym_comment, - ACTIONS(7693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7726), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172611] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [171713] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4559), 1, + STATE(4530), 1, sym_comment, - ACTIONS(5052), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5054), 13, + ACTIONS(7400), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381838,18 +519196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172637] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171737] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4560), 1, + ACTIONS(7708), 1, + anon_sym_and2, + ACTIONS(7710), 1, + anon_sym_xor2, + STATE(4531), 1, sym_comment, - ACTIONS(1787), 3, + ACTIONS(7618), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381861,19 +519221,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [172663] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [171765] = 14, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7708), 1, - sym__space, - ACTIONS(7730), 1, - aux_sym_record_entry_token1, - STATE(4561), 1, + ACTIONS(7712), 1, + sym_identifier, + ACTIONS(7717), 1, + anon_sym_DOLLAR, + ACTIONS(7720), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7723), 1, + anon_sym_DASH_DASH, + ACTIONS(7726), 1, + anon_sym_DASH2, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + STATE(4532), 2, sym_comment, - STATE(4571), 1, - aux_sym_command_repeat1, - ACTIONS(7706), 12, + aux_sym_parameter_parens_repeat1, + ACTIONS(7715), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [171811] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4533), 1, + sym_comment, + ACTIONS(7365), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381885,43 +519272,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [172693] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171835] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7712), 1, - sym__space, - STATE(4562), 1, + ACTIONS(2228), 1, + anon_sym_DASH2, + ACTIONS(7729), 1, + anon_sym_DOT_DOT2, + STATE(4534), 1, sym_comment, - STATE(4613), 1, - aux_sym_command_repeat1, - ACTIONS(7732), 13, + ACTIONS(7731), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [172721] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4563), 1, - sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4926), 2, - ts_builtin_sym_end, + ACTIONS(7735), 1, sym__space, - ACTIONS(4928), 11, + ACTIONS(7737), 1, + aux_sym_record_entry_token1, + STATE(4535), 1, + sym_comment, + STATE(4765), 1, + aux_sym_command_repeat1, + ACTIONS(7733), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381933,19 +519322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172751] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [171895] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(2177), 1, anon_sym_DASH2, - ACTIONS(7734), 1, - anon_sym_DOT, - STATE(4820), 1, - sym_path, - STATE(4564), 2, + ACTIONS(7739), 1, + anon_sym_DOT_DOT2, + STATE(4536), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 11, + ACTIONS(7741), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2183), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381957,13 +519347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172781] = 3, - ACTIONS(247), 1, + [171925] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4537), 1, sym_comment, - ACTIONS(7361), 15, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4947), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381975,18 +519371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [172805] = 4, + [171955] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4566), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4538), 1, sym_comment, - ACTIONS(1008), 2, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4951), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1006), 13, + ACTIONS(4953), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381998,18 +519395,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [171985] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7571), 1, + aux_sym__immediate_decimal_token2, + STATE(4539), 1, + sym_comment, + ACTIONS(1872), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [172831] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [172013] = 17, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7696), 1, + sym__newline, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7743), 1, + anon_sym_RBRACK, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4540), 1, + sym_comment, + STATE(4834), 1, + aux_sym_parameter_parens_repeat1, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5251), 1, + aux_sym_shebang_repeat1, + STATE(5554), 1, + sym_parameter, + [172065] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7745), 1, + anon_sym_DOT, + ACTIONS(7748), 1, + aux_sym__immediate_decimal_token2, + STATE(4541), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1762), 11, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [172095] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(4542), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(2341), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1002), 12, + ACTIONS(2337), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382021,16 +519501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [172857] = 4, - ACTIONS(247), 1, + [172125] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7695), 1, - anon_sym_and2, - STATE(4568), 1, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(4543), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(1540), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1538), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382042,21 +519525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [172883] = 6, - ACTIONS(247), 1, + [172155] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1026), 1, + ACTIONS(2185), 1, anon_sym_DASH2, - ACTIONS(7691), 1, + ACTIONS(7750), 1, anon_sym_DOT_DOT2, - STATE(4569), 1, + STATE(4544), 1, sym_comment, - ACTIONS(7693), 2, + ACTIONS(7752), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1028), 11, + ACTIONS(2191), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382068,19 +519549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172913] = 6, - ACTIONS(3), 1, + [172185] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, - STATE(4570), 1, + ACTIONS(7754), 1, + anon_sym_and2, + STATE(4545), 1, sym_comment, - ACTIONS(2276), 2, + ACTIONS(7618), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2272), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382092,16 +519569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172943] = 5, + anon_sym_xor2, + anon_sym_or2, + [172211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7712), 1, - sym__space, - STATE(4531), 1, - aux_sym_command_repeat1, - STATE(4571), 1, + STATE(4546), 1, sym_comment, - ACTIONS(7737), 13, + ACTIONS(1498), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1496), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382113,24 +519592,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172971] = 7, - ACTIONS(247), 1, + anon_sym_QMARK2, + [172237] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7739), 1, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7696), 1, sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, - STATE(4572), 1, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7756), 1, + anon_sym_RBRACK, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4547), 1, sym_comment, - STATE(5246), 1, + STATE(4830), 1, + aux_sym_parameter_parens_repeat1, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5251), 1, aux_sym_shebang_repeat1, - ACTIONS(7742), 3, + STATE(5554), 1, + sym_parameter, + [172289] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7760), 1, + sym__space, + STATE(4548), 1, + sym_comment, + STATE(4550), 1, + aux_sym_command_repeat1, + ACTIONS(7758), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382140,16 +519649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173003] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172317] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7695), 1, + ACTIONS(7708), 1, anon_sym_and2, - ACTIONS(7697), 1, - anon_sym_xor2, - STATE(4573), 1, + STATE(4549), 1, sym_comment, - ACTIONS(7535), 13, + ACTIONS(7618), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382162,48 +519671,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, anon_sym_or2, - [173031] = 17, - ACTIONS(247), 1, + [172343] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7760), 1, + sym__space, + STATE(4550), 1, + sym_comment, + STATE(4623), 1, + aux_sym_command_repeat1, + ACTIONS(7762), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172371] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7748), 1, + aux_sym__immediate_decimal_token2, + STATE(4551), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1762), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [172399] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7669), 1, + ACTIONS(7696), 1, sym__newline, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(7744), 1, + ACTIONS(7764), 1, anon_sym_RPAREN, - STATE(4134), 1, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4549), 1, - aux_sym_shebang_repeat1, - STATE(4574), 1, + STATE(4552), 1, sym_comment, - STATE(4879), 1, + STATE(4846), 1, aux_sym_parameter_parens_repeat1, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5251), 1, + aux_sym_shebang_repeat1, + STATE(5554), 1, sym_parameter, - [173083] = 3, - ACTIONS(247), 1, + [172451] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4575), 1, + ACTIONS(5050), 1, + sym__space, + ACTIONS(7766), 1, + anon_sym_EQ2, + STATE(4553), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(5052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382216,22 +519776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [173107] = 6, - ACTIONS(247), 1, + [172479] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_and2, - ACTIONS(7656), 1, - anon_sym_xor2, - ACTIONS(7746), 1, - anon_sym_or2, - STATE(4576), 1, + ACTIONS(5038), 1, + sym__space, + ACTIONS(7768), 1, + anon_sym_EQ2, + STATE(4554), 1, sym_comment, - ACTIONS(7597), 12, - ts_builtin_sym_end, + ACTIONS(5040), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382243,37 +519798,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173137] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172507] = 17, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4577), 1, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7696), 1, + sym__newline, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7770), 1, + anon_sym_RPAREN, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4555), 1, sym_comment, - ACTIONS(5062), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5064), 13, + STATE(4973), 1, + aux_sym_parameter_parens_repeat1, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5251), 1, + aux_sym_shebang_repeat1, + STATE(5554), 1, + sym_parameter, + [172559] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7772), 1, + anon_sym_DOT, + ACTIONS(7774), 1, + aux_sym__immediate_decimal_token2, + STATE(4556), 1, + sym_comment, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [173163] = 4, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [172589] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4578), 1, + STATE(4557), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(1556), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(2120), 13, + ACTIONS(1558), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -382287,21 +519881,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [173189] = 6, - ACTIONS(247), 1, + [172615] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7695), 1, - anon_sym_and2, - ACTIONS(7697), 1, - anon_sym_xor2, - ACTIONS(7748), 1, - anon_sym_or2, - STATE(4579), 1, + ACTIONS(7776), 1, + aux_sym__immediate_decimal_token2, + STATE(4558), 1, sym_comment, - ACTIONS(7597), 12, - ts_builtin_sym_end, + ACTIONS(1919), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [172643] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7778), 1, sym__newline, + STATE(305), 1, + aux_sym__pipe_separator, + STATE(4559), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(7781), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382311,18 +519929,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173219] = 5, + [172675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7750), 1, - anon_sym_QMARK2, - STATE(4580), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(4560), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(2335), 2, ts_builtin_sym_end, sym__space, + ACTIONS(2333), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [172705] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4561), 1, + sym_comment, + ACTIONS(1520), 2, + sym__space, anon_sym_DOT, - ACTIONS(984), 11, + ACTIONS(1518), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172731] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4562), 1, + sym_comment, + ACTIONS(5044), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5046), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382334,48 +519995,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173247] = 17, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172757] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, + ACTIONS(7785), 1, + anon_sym_DASH2, + STATE(4563), 1, + sym_comment, + ACTIONS(7692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7783), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7669), 1, sym__newline, - ACTIONS(7673), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7752), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4556), 1, - aux_sym_shebang_repeat1, - STATE(4581), 1, - sym_comment, - STATE(5001), 1, - aux_sym_parameter_parens_repeat1, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [173299] = 3, - ACTIONS(247), 1, + [172787] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4582), 1, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, + STATE(4564), 1, sym_comment, - ACTIONS(6983), 15, + ACTIONS(2373), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2369), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382387,16 +520045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173323] = 3, - ACTIONS(247), 1, + [172817] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7361), 15, - ts_builtin_sym_end, + ACTIONS(1524), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382408,22 +520065,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173347] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172843] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, + ACTIONS(7789), 1, + anon_sym_DASH2, + STATE(4566), 1, + sym_comment, + ACTIONS(7692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7787), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - ACTIONS(1812), 1, + ACTIONS(1960), 1, aux_sym_unquoted_token2, - STATE(4584), 1, + STATE(4567), 1, sym_comment, - ACTIONS(2232), 2, + ACTIONS(1958), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2230), 11, + ACTIONS(1950), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382435,16 +520115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173377] = 5, - ACTIONS(3), 1, + [172903] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4996), 1, - sym__space, - ACTIONS(7754), 1, - anon_sym_EQ2, - STATE(4585), 1, + STATE(4568), 1, sym_comment, - ACTIONS(4998), 13, + ACTIONS(7791), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382457,17 +520133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [173405] = 5, + anon_sym_catch, + [172927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5056), 1, - sym__space, - ACTIONS(7756), 1, - anon_sym_EQ2, - STATE(4586), 1, + STATE(4569), 1, sym_comment, - ACTIONS(5058), 13, + ACTIONS(1874), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382479,17 +520157,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173433] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [172953] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4587), 1, - sym_comment, - ACTIONS(7535), 15, - ts_builtin_sym_end, + ACTIONS(7793), 1, sym__newline, + STATE(305), 1, + aux_sym__pipe_separator, + STATE(4570), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(7796), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382499,15 +520183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173457] = 3, - ACTIONS(247), 1, + [172985] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4588), 1, + STATE(4571), 1, sym_comment, - ACTIONS(7361), 15, + ACTIONS(7031), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382523,16 +520204,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [173481] = 4, + [173009] = 17, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7696), 1, + sym__newline, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7798), 1, + anon_sym_PIPE, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4572), 1, + sym_comment, + STATE(4828), 1, + aux_sym_parameter_parens_repeat1, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5251), 1, + aux_sym_shebang_repeat1, + STATE(5554), 1, + sym_parameter, + [173061] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4589), 1, + STATE(4573), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(1508), 3, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 12, + anon_sym_DOT, + ACTIONS(1506), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382544,43 +520260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [173507] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - STATE(4590), 1, - sym_comment, - ACTIONS(1681), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1683), 12, - anon_sym_in2, anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [173535] = 6, - ACTIONS(3), 1, + [173087] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(4591), 1, + ACTIONS(7708), 1, + anon_sym_and2, + ACTIONS(7710), 1, + anon_sym_xor2, + STATE(4574), 1, sym_comment, - STATE(7506), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7587), 2, + ACTIONS(7618), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(7585), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382592,85 +520283,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173565] = 17, - ACTIONS(247), 1, + anon_sym_or2, + [173115] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7669), 1, + ACTIONS(7696), 1, sym__newline, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(7760), 1, - anon_sym_PIPE, - STATE(4134), 1, + ACTIONS(7800), 1, + anon_sym_RBRACK, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4592), 1, - sym_comment, - STATE(4605), 1, + STATE(4547), 1, aux_sym_shebang_repeat1, - STATE(4810), 1, + STATE(4575), 1, + sym_comment, + STATE(4880), 1, aux_sym_parameter_parens_repeat1, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [173617] = 17, - ACTIONS(247), 1, + [173167] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7669), 1, + ACTIONS(7696), 1, sym__newline, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(7762), 1, - anon_sym_RBRACK, - STATE(4134), 1, + ACTIONS(7802), 1, + anon_sym_RPAREN, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4550), 1, + STATE(4552), 1, aux_sym_shebang_repeat1, - STATE(4593), 1, + STATE(4576), 1, sym_comment, - STATE(4995), 1, + STATE(4886), 1, aux_sym_parameter_parens_repeat1, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [173669] = 4, - ACTIONS(3), 1, + [173219] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4594), 1, + ACTIONS(7804), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7806), 1, + aux_sym__immediate_decimal_token2, + STATE(4577), 1, sym_comment, - ACTIONS(1012), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1010), 13, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173249] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4578), 1, + sym_comment, + ACTIONS(1886), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1888), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173275] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4579), 1, + sym_comment, + ACTIONS(7365), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382682,14 +520418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173695] = 3, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4595), 1, + STATE(4580), 1, sym_comment, - ACTIONS(7764), 15, + ACTIONS(1528), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1526), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382702,22 +520442,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [173719] = 6, + [173325] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2347), 1, anon_sym_LPAREN2, - ACTIONS(2244), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(4596), 1, + STATE(4581), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2349), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2238), 11, + ACTIONS(2345), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173355] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4582), 1, + sym_comment, + ACTIONS(2215), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2217), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173381] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4583), 1, + sym_comment, + ACTIONS(7365), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382729,16 +520507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173749] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173405] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4597), 1, + ACTIONS(7311), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7808), 1, + anon_sym_DOT, + STATE(4584), 1, sym_comment, - ACTIONS(1843), 3, + ACTIONS(1874), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1841), 12, + ACTIONS(1872), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382750,23 +520534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [173775] = 7, - ACTIONS(247), 1, + [173435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7766), 1, - sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, - STATE(4598), 1, + ACTIONS(7735), 1, + sym__space, + ACTIONS(7810), 1, + aux_sym_record_entry_token1, + STATE(4585), 1, sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(7769), 3, + STATE(4765), 1, + aux_sym_command_repeat1, + ACTIONS(7733), 12, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382776,13 +520557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173807] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [173465] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4599), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + STATE(4586), 1, sym_comment, - ACTIONS(7535), 15, + ACTIONS(1948), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382794,46 +520582,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [173495] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7754), 1, anon_sym_and2, + ACTIONS(7812), 1, anon_sym_xor2, + ACTIONS(7814), 1, anon_sym_or2, - [173831] = 6, - ACTIONS(247), 1, + STATE(4587), 1, + sym_comment, + ACTIONS(7648), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173525] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7771), 1, - anon_sym_DOT, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - STATE(4600), 1, + STATE(4588), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 10, + ACTIONS(7400), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173861] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173549] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(2347), 1, anon_sym_LPAREN2, - ACTIONS(2228), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, - STATE(4601), 1, + STATE(4589), 1, sym_comment, - ACTIONS(1028), 2, + ACTIONS(2355), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1026), 11, + ACTIONS(2353), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382845,39 +520651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173891] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7777), 1, - aux_sym__immediate_decimal_token2, - STATE(4602), 1, - sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173921] = 4, + [173579] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4603), 1, - sym_comment, - ACTIONS(1016), 2, + ACTIONS(2427), 1, sym__space, - anon_sym_DOT, - ACTIONS(1014), 13, + ACTIONS(7816), 1, + anon_sym_LBRACK2, + STATE(4590), 1, + sym_comment, + ACTIONS(2423), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382891,19 +520674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173947] = 6, + [173607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(4604), 1, + STATE(4591), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1512), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1802), 11, + anon_sym_DOT, + ACTIONS(1510), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382915,108 +520695,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173977] = 17, - ACTIONS(247), 1, + anon_sym_QMARK2, + [173633] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1479), 1, + anon_sym_DASH2, + ACTIONS(7532), 1, + anon_sym_DOT, + STATE(4592), 1, + sym_comment, + STATE(4600), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_path, + ACTIONS(1481), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173665] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + STATE(4593), 1, + sym_comment, + ACTIONS(2219), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2221), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(7669), 1, sym__newline, - ACTIONS(7673), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7779), 1, - anon_sym_PIPE, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4605), 1, - sym_comment, - STATE(4850), 1, - aux_sym_parameter_parens_repeat1, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5344), 1, - aux_sym_shebang_repeat1, - STATE(5550), 1, - sym_parameter, - [174029] = 17, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173691] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7669), 1, + ACTIONS(7696), 1, sym__newline, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(7781), 1, - anon_sym_RBRACK, - STATE(4134), 1, + ACTIONS(7818), 1, + anon_sym_RPAREN, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4533), 1, + STATE(4555), 1, aux_sym_shebang_repeat1, - STATE(4606), 1, + STATE(4594), 1, sym_comment, - STATE(4875), 1, + STATE(4844), 1, aux_sym_parameter_parens_repeat1, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [174081] = 6, - ACTIONS(247), 1, + [173743] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - ACTIONS(7783), 1, - anon_sym_DOT_DOT2, - STATE(4607), 1, + ACTIONS(7760), 1, + sym__space, + STATE(4595), 1, sym_comment, - ACTIONS(7785), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2128), 11, - anon_sym_EQ, - sym_identifier, + STATE(4623), 1, + aux_sym_command_repeat1, + ACTIONS(7820), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174111] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [173771] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7695), 1, + ACTIONS(7754), 1, anon_sym_and2, - STATE(4608), 1, + ACTIONS(7812), 1, + anon_sym_xor2, + STATE(4596), 1, sym_comment, - ACTIONS(7535), 14, + ACTIONS(7618), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383029,18 +520823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, anon_sym_or2, - [174137] = 4, + [173799] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4609), 1, + ACTIONS(7822), 1, + sym_long_flag_identifier, + ACTIONS(7824), 1, + anon_sym_EQ2, + STATE(4597), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(4977), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2268), 12, + ACTIONS(4979), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383052,14 +520848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [174163] = 3, - ACTIONS(247), 1, + [173829] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4610), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + STATE(4598), 1, sym_comment, - ACTIONS(7309), 15, + ACTIONS(2361), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2357), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383071,45 +520872,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [174187] = 5, - ACTIONS(247), 1, + [173859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7787), 1, - aux_sym__immediate_decimal_token2, - STATE(4611), 1, + STATE(4599), 1, sym_comment, - ACTIONS(1785), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 11, - anon_sym_EQ, + ACTIONS(1892), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1890), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [174215] = 6, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [173885] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(1483), 1, anon_sym_DASH2, - ACTIONS(7789), 1, - anon_sym_DOT_DOT2, - STATE(4612), 1, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(4833), 1, + sym_path, + STATE(4600), 2, sym_comment, - ACTIONS(7791), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 11, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383121,16 +520918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174245] = 5, - ACTIONS(3), 1, + [173915] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7712), 1, - sym__space, - STATE(4531), 1, - aux_sym_command_repeat1, - STATE(4613), 1, + ACTIONS(7708), 1, + anon_sym_and2, + ACTIONS(7710), 1, + anon_sym_xor2, + ACTIONS(7829), 1, + anon_sym_or2, + STATE(4601), 1, sym_comment, - ACTIONS(7793), 13, + ACTIONS(7648), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383142,53 +520942,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174273] = 14, - ACTIONS(247), 1, + [173945] = 17, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7795), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7800), 1, + ACTIONS(7696), 1, + sym__newline, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7803), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7806), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7809), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - STATE(4134), 1, + ACTIONS(7831), 1, + anon_sym_RBRACK, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(5010), 1, + STATE(4540), 1, + aux_sym_shebang_repeat1, + STATE(4602), 1, + sym_comment, + STATE(4821), 1, + aux_sym_parameter_parens_repeat1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - STATE(4614), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7798), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [174319] = 6, - ACTIONS(3), 1, + [173997] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - STATE(4615), 1, + STATE(4603), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(7400), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383200,17 +520995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174349] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7654), 1, anon_sym_and2, - ACTIONS(7656), 1, anon_sym_xor2, - STATE(4616), 1, + anon_sym_or2, + [174021] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + sym__space, + ACTIONS(7202), 1, + aux_sym_unquoted_token2, + STATE(4604), 1, sym_comment, - ACTIONS(7535), 13, - ts_builtin_sym_end, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383222,16 +521019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [174377] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174049] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4617), 1, + STATE(4605), 1, sym_comment, - ACTIONS(1733), 2, + ACTIONS(2240), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1737), 13, + ACTIONS(2242), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -383245,16 +521043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174403] = 5, + [174075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - sym__space, - ACTIONS(7190), 1, - aux_sym_unquoted_token2, - STATE(4618), 1, + ACTIONS(7833), 1, + anon_sym_QMARK2, + STATE(4606), 1, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1502), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1500), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383266,21 +521066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174431] = 6, + [174103] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(4619), 1, + ACTIONS(7835), 1, + anon_sym_QMARK2, + STATE(4607), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(1492), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2246), 11, + anon_sym_DOT, + ACTIONS(1490), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383292,19 +521089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174461] = 6, - ACTIONS(3), 1, + [174131] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(4620), 1, + STATE(4608), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(7618), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2254), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383316,13 +521107,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174491] = 3, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [174155] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4621), 1, + ACTIONS(7837), 1, + anon_sym_EQ2, + ACTIONS(7839), 1, + sym_short_flag_identifier, + STATE(4609), 1, sym_comment, - ACTIONS(7309), 15, + ACTIONS(5020), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383334,40 +521134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [174515] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4622), 1, - sym_comment, - ACTIONS(1044), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1046), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174541] = 4, - ACTIONS(247), 1, + [174185] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_and2, - STATE(4623), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4610), 1, sym_comment, - ACTIONS(7535), 14, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4936), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383379,64 +521158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [174567] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(4624), 1, - sym_comment, - ACTIONS(2250), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2246), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [174596] = 4, - ACTIONS(247), 1, + [174215] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4625), 1, + STATE(4611), 1, sym_comment, - ACTIONS(1585), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1587), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [174621] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(7618), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(7817), 1, - anon_sym_else, - STATE(4626), 1, - sym_comment, - STATE(4669), 1, - aux_sym_shebang_repeat1, - ACTIONS(7815), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383447,44 +521176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [174650] = 12, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [174239] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(3593), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(7819), 1, - anon_sym_DOT, - ACTIONS(7823), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7825), 1, - aux_sym__immediate_decimal_token5, - STATE(4627), 1, + STATE(4612), 1, sym_comment, - STATE(5648), 1, - sym__immediate_decimal, - ACTIONS(7821), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6018), 2, + STATE(7966), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1557), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174691] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4628), 1, - sym_comment, - ACTIONS(5660), 14, - sym__newline, + ACTIONS(4940), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(4942), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383495,23 +521203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [174714] = 7, - ACTIONS(247), 1, + [174269] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7827), 1, - sym__newline, - STATE(771), 1, - aux_sym__pipe_separator, - STATE(4629), 1, + ACTIONS(7754), 1, + anon_sym_and2, + STATE(4613), 1, sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(7830), 2, + ACTIONS(7618), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383521,14 +521223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174745] = 4, + anon_sym_xor2, + anon_sym_or2, + [174295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2432), 1, - sym__space, - STATE(4630), 1, + STATE(4614), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(2409), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2407), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383540,20 +521246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174770] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [174321] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7832), 1, - sym__newline, - ACTIONS(7837), 1, - anon_sym_catch, - STATE(4631), 1, + STATE(4615), 1, sym_comment, - STATE(4674), 1, - aux_sym_shebang_repeat1, - ACTIONS(7835), 11, + ACTIONS(5141), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383565,18 +521265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174799] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7839), 1, - sym__newline, - ACTIONS(7844), 1, + anon_sym_else, + anon_sym_RBRACE, anon_sym_catch, - STATE(4632), 1, + [174345] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7760), 1, + sym__space, + STATE(4595), 1, + aux_sym_command_repeat1, + STATE(4616), 1, sym_comment, - STATE(4675), 1, - aux_sym_shebang_repeat1, - ACTIONS(7842), 11, + ACTIONS(7733), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383588,18 +521290,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174828] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174373] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(1538), 1, anon_sym_DASH2, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - aux_sym__unquoted_in_list_token2, - STATE(4633), 1, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, + STATE(4617), 1, sym_comment, - ACTIONS(2276), 11, + ACTIONS(7692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1540), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383611,18 +521315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174857] = 6, - ACTIONS(247), 1, + [174403] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7846), 1, - sym__newline, - ACTIONS(7851), 1, - anon_sym_catch, - STATE(4631), 1, - aux_sym_shebang_repeat1, - STATE(4634), 1, + ACTIONS(7708), 1, + anon_sym_and2, + STATE(4618), 1, sym_comment, - ACTIONS(7849), 11, + ACTIONS(7618), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383633,38 +521335,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [174886] = 6, - ACTIONS(247), 1, + anon_sym_xor2, + anon_sym_or2, + [174429] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7855), 1, - anon_sym_AT, - ACTIONS(7857), 1, - anon_sym_DASH2, - STATE(4635), 1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(4619), 1, sym_comment, - STATE(5122), 1, - sym_param_cmd, - ACTIONS(7853), 11, - anon_sym_EQ, - sym_identifier, + STATE(7624), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7642), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7640), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174915] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [174459] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7841), 1, + aux_sym__immediate_decimal_token2, + STATE(4620), 1, + sym_comment, + ACTIONS(1820), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1822), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [174487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7861), 1, - sym__space, - STATE(4636), 1, + STATE(4621), 1, sym_comment, - ACTIONS(7859), 13, + ACTIONS(1921), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1919), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383676,16 +521405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174940] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [174513] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7445), 1, - sym__space, - STATE(4637), 1, + ACTIONS(7754), 1, + anon_sym_and2, + ACTIONS(7812), 1, + anon_sym_xor2, + STATE(4622), 1, sym_comment, - ACTIONS(7443), 13, + ACTIONS(7618), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383697,16 +521428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174965] = 4, + anon_sym_or2, + [174541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7865), 1, + ACTIONS(7845), 1, sym__space, - STATE(4638), 1, + STATE(4623), 2, sym_comment, - ACTIONS(7863), 13, + aux_sym_command_repeat1, + ACTIONS(7843), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383720,16 +521451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174990] = 4, + [174567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4639), 1, - sym_comment, - ACTIONS(5052), 3, - ts_builtin_sym_end, + ACTIONS(2518), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(5054), 11, + STATE(4624), 1, + sym_comment, + ACTIONS(2516), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383741,37 +521470,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175015] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174592] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7855), 1, - anon_sym_AT, - ACTIONS(7857), 1, - anon_sym_DASH2, - STATE(4640), 1, + STATE(4625), 1, sym_comment, - STATE(5142), 1, - sym_param_cmd, - ACTIONS(7853), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175044] = 4, + ACTIONS(1820), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1822), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [174617] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7869), 1, - sym__space, - STATE(4641), 1, + STATE(4626), 1, sym_comment, - ACTIONS(7867), 13, + ACTIONS(5032), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383783,16 +521514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [175069] = 4, + [174642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7873), 1, + ACTIONS(2537), 1, sym__space, - STATE(4642), 1, + STATE(4627), 1, sym_comment, - ACTIONS(7871), 13, + ACTIONS(2535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383806,18 +521535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175094] = 6, - ACTIONS(247), 1, + [174667] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(7875), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4643), 1, + STATE(4628), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(5727), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383828,16 +521553,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [174690] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7850), 1, + anon_sym_AT, + ACTIONS(7852), 1, + anon_sym_DASH2, + STATE(4629), 1, + sym_comment, + STATE(5009), 1, + sym_param_cmd, + ACTIONS(7848), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [175123] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174719] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7880), 1, - sym__space, - STATE(4644), 1, + ACTIONS(7850), 1, + anon_sym_AT, + ACTIONS(7852), 1, + anon_sym_DASH2, + STATE(4630), 1, sym_comment, - ACTIONS(7878), 13, + STATE(5010), 1, + sym_param_cmd, + ACTIONS(7848), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174748] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5138), 1, sym__newline, + ACTIONS(7854), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4631), 1, + sym_comment, + ACTIONS(1233), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383849,16 +521624,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [175148] = 4, - ACTIONS(247), 1, + [174777] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4645), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2333), 1, + anon_sym_DASH2, + STATE(4632), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(2335), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174806] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1950), 1, anon_sym_DASH2, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 12, + STATE(4633), 1, + sym_comment, + ACTIONS(1958), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383870,15 +521670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175173] = 4, + [174835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7587), 1, + ACTIONS(2637), 1, sym__space, - STATE(4646), 1, + STATE(4634), 1, sym_comment, - ACTIONS(7585), 13, + ACTIONS(2635), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383892,16 +521691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175198] = 4, + [174860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, - sym_comment, - ACTIONS(1012), 3, - ts_builtin_sym_end, + ACTIONS(2599), 1, sym__space, - anon_sym_DOT, - ACTIONS(1010), 11, + STATE(4635), 1, + sym_comment, + ACTIONS(2597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383913,14 +521710,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175223] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174885] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7884), 1, - anon_sym_catch, - STATE(4648), 1, + STATE(4636), 1, + sym_comment, + ACTIONS(1866), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1868), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [174910] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2607), 1, + sym__space, + STATE(4637), 1, sym_comment, - ACTIONS(7882), 13, + ACTIONS(2605), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383934,18 +521754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175248] = 6, + [174935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, + ACTIONS(2625), 1, sym__space, - STATE(4649), 1, + STATE(4638), 1, sym_comment, - STATE(4682), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7890), 11, + ACTIONS(2623), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383957,40 +521774,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175277] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [174960] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym_unquoted_token2, - STATE(4650), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2357), 1, + anon_sym_DASH2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + STATE(4639), 1, sym_comment, - ACTIONS(1719), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1707), 11, + ACTIONS(2361), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [175304] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7892), 1, - ts_builtin_sym_end, - ACTIONS(7894), 1, + ACTIONS(5186), 1, sym__space, - STATE(4651), 1, + STATE(4640), 1, sym_comment, - STATE(4691), 1, - aux_sym_command_repeat1, - ACTIONS(7737), 11, + ACTIONS(5188), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384002,14 +521817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175333] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2163), 1, + ACTIONS(5208), 1, sym__space, - STATE(4652), 1, + STATE(4641), 1, sym_comment, - ACTIONS(2157), 13, + ACTIONS(5210), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384023,18 +521840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175358] = 6, + [175039] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7894), 1, + ACTIONS(5168), 1, sym__space, - ACTIONS(7896), 1, - ts_builtin_sym_end, - STATE(4651), 1, - aux_sym_command_repeat1, - STATE(4653), 1, + STATE(4642), 1, sym_comment, - ACTIONS(7706), 11, + ACTIONS(5170), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384046,16 +521859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175387] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175064] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4654), 1, - sym_comment, - ACTIONS(1016), 3, - ts_builtin_sym_end, + ACTIONS(7859), 1, sym__space, - anon_sym_DOT, - ACTIONS(1014), 11, + STATE(4643), 1, + sym_comment, + ACTIONS(7857), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384067,14 +521880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175412] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4655), 1, + ACTIONS(5172), 1, + sym__space, + STATE(4644), 1, sym_comment, - ACTIONS(5656), 14, + ACTIONS(5174), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384085,17 +521901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [175435] = 4, - ACTIONS(247), 1, + [175114] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4656), 1, - sym_comment, - ACTIONS(1739), 2, + ACTIONS(2369), 1, anon_sym_DASH2, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 12, + STATE(4645), 1, + sym_comment, + ACTIONS(2373), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384107,19 +521926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175460] = 6, + [175143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, + ACTIONS(2020), 1, sym__space, - STATE(4657), 1, + STATE(4646), 1, sym_comment, - STATE(4687), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7898), 11, + ACTIONS(2018), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384131,14 +521946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175489] = 4, + anon_sym_RBRACE, + [175168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2545), 1, sym__space, - STATE(4658), 1, + STATE(4647), 1, sym_comment, - ACTIONS(2375), 13, + ACTIONS(2543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384152,37 +521968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175514] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7689), 1, - anon_sym_DASH2, - STATE(4659), 1, - sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7687), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175543] = 4, + [175193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7902), 1, + ACTIONS(2557), 1, sym__space, - STATE(4660), 1, + STATE(4648), 1, sym_comment, - ACTIONS(7900), 13, + ACTIONS(2555), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384196,17 +521989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175568] = 5, + [175218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_EQ2, - STATE(4661), 1, - sym_comment, - ACTIONS(5056), 2, - ts_builtin_sym_end, + ACTIONS(2641), 1, sym__space, - ACTIONS(5058), 11, + STATE(4649), 1, + sym_comment, + ACTIONS(2639), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384218,16 +522008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175595] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4662), 1, - sym_comment, - ACTIONS(5062), 3, - ts_builtin_sym_end, + ACTIONS(2577), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(5064), 11, + STATE(4650), 1, + sym_comment, + ACTIONS(2575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384239,132 +522029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175620] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7716), 1, - anon_sym_DASH2, - STATE(4663), 1, - sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7714), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175649] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4664), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175674] = 6, + anon_sym_RBRACE, + [175268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym__unquoted_in_list_token4, - STATE(4665), 1, - sym_comment, - ACTIONS(1028), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1026), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [175703] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4666), 1, - sym_comment, - ACTIONS(1841), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175728] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 1, - anon_sym_DASH2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - STATE(4667), 1, + ACTIONS(2581), 1, + sym__space, + STATE(4651), 1, sym_comment, - ACTIONS(1828), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175757] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7906), 1, + ACTIONS(2579), 13, sym__newline, - STATE(771), 1, - aux_sym__pipe_separator, - STATE(4668), 1, - sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(7909), 2, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -384374,18 +522050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175788] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175293] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7911), 1, - sym__newline, - ACTIONS(7916), 1, - anon_sym_else, - STATE(4669), 1, + ACTIONS(2585), 1, + sym__space, + STATE(4652), 1, sym_comment, - STATE(4693), 1, - aux_sym_shebang_repeat1, - ACTIONS(7914), 11, + ACTIONS(2583), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384397,34 +522072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175817] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4670), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1575), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [175842] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175318] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4671), 1, + ACTIONS(5679), 1, + sym__space, + STATE(4653), 1, sym_comment, - ACTIONS(7764), 14, - ts_builtin_sym_end, + ACTIONS(5677), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384436,20 +522092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [175865] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175343] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7918), 1, - sym__newline, - ACTIONS(7923), 1, - anon_sym_else, - STATE(4672), 1, + STATE(4654), 1, sym_comment, - STATE(4694), 1, - aux_sym_shebang_repeat1, - ACTIONS(7921), 11, + ACTIONS(1528), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1526), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384460,19 +522115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [175894] = 6, - ACTIONS(247), 1, + [175368] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7925), 1, - sym__newline, - ACTIONS(7930), 1, - anon_sym_else, - STATE(4673), 1, + ACTIONS(2589), 1, + sym__space, + STATE(4655), 1, sym_comment, - STATE(4699), 1, - aux_sym_shebang_repeat1, - ACTIONS(7928), 11, + ACTIONS(2587), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384484,18 +522135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175923] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175393] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(7932), 1, - anon_sym_catch, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4674), 1, + ACTIONS(2611), 1, + sym__space, + STATE(4656), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(2609), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384507,37 +522156,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175952] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175418] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7935), 1, - sym__newline, - ACTIONS(7940), 1, - anon_sym_catch, - STATE(4675), 1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7688), 1, + anon_sym_DASH2, + STATE(4657), 1, sym_comment, - STATE(4706), 1, - aux_sym_shebang_repeat1, - ACTIONS(7938), 11, - anon_sym_SEMI, + STATE(7478), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7686), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [175981] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(2621), 1, sym__space, - STATE(4676), 1, + STATE(4658), 1, sym_comment, - ACTIONS(1847), 13, + ACTIONS(2619), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384551,18 +522201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176006] = 6, + [175472] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7894), 1, + ACTIONS(7386), 1, sym__space, - ACTIONS(7942), 1, - ts_builtin_sym_end, - STATE(4677), 1, + STATE(4659), 1, sym_comment, - STATE(4691), 1, - aux_sym_command_repeat1, - ACTIONS(7793), 11, + ACTIONS(7384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384574,14 +522220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176035] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(7863), 1, sym__space, - STATE(4678), 1, + STATE(4660), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(7861), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384592,40 +522240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176060] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7946), 1, - anon_sym_DASH2, - STATE(4679), 1, - sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7944), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176089] = 4, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(5707), 1, sym__space, - STATE(4680), 1, + STATE(4661), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(5705), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384639,14 +522264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176114] = 4, + [175547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(5711), 1, sym__space, - STATE(4681), 1, + STATE(4662), 1, sym_comment, - ACTIONS(2130), 13, + ACTIONS(5709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384660,18 +522285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176139] = 6, + [175572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, + ACTIONS(7865), 1, sym__newline, - ACTIONS(7888), 1, + ACTIONS(7867), 1, sym__space, - STATE(4682), 1, + STATE(4663), 1, sym_comment, - STATE(4687), 1, + STATE(4703), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7948), 11, + ACTIONS(7869), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384683,14 +522308,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176168] = 4, + [175601] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4664), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [175626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2203), 1, sym__space, - STATE(4683), 1, + STATE(4665), 1, sym_comment, - ACTIONS(2146), 13, + ACTIONS(2197), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384704,14 +522350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176193] = 4, + [175651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(2541), 1, sym__space, - STATE(4684), 1, + STATE(4666), 1, sym_comment, - ACTIONS(5099), 13, + ACTIONS(2539), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384725,15 +522371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176218] = 4, - ACTIONS(3), 1, + [175676] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5119), 1, - sym__space, - STATE(4685), 1, - sym_comment, - ACTIONS(5121), 13, + ACTIONS(7871), 1, sym__newline, + ACTIONS(7876), 1, + anon_sym_else, + STATE(4667), 1, + sym_comment, + STATE(4766), 1, + aux_sym_shebang_repeat1, + ACTIONS(7874), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384745,23 +522394,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [176243] = 6, + [175705] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7878), 1, + anon_sym_DOT, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token2, + STATE(4668), 1, + sym_comment, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [175734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2339), 1, anon_sym_LPAREN2, - ACTIONS(2244), 1, + ACTIONS(2343), 1, aux_sym__unquoted_in_list_token4, - STATE(4686), 1, + STATE(4669), 1, sym_comment, - ACTIONS(2242), 5, + ACTIONS(2341), 5, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2238), 7, + ACTIONS(2337), 7, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -384769,17 +522440,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH2, - [176272] = 5, - ACTIONS(3), 1, + [175763] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7950), 1, + ACTIONS(7882), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7884), 1, + aux_sym__immediate_decimal_token2, + STATE(4670), 1, + sym_comment, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 9, + ts_builtin_sym_end, sym__newline, - ACTIONS(7953), 1, - sym__space, - STATE(4687), 2, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [175792] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5138), 1, + sym__newline, + ACTIONS(7886), 1, + anon_sym_catch, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4671), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7956), 11, + ACTIONS(1233), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384791,35 +522486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176299] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4688), 1, - sym_comment, - ACTIONS(1681), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1683), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [176324] = 4, + [175821] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5658), 1, + ACTIONS(7889), 1, + ts_builtin_sym_end, + ACTIONS(7891), 1, sym__space, - STATE(4689), 1, + STATE(4672), 2, sym_comment, - ACTIONS(5656), 13, + aux_sym_command_repeat1, + ACTIONS(7843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384831,42 +522508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176349] = 6, - ACTIONS(3), 1, + [175848] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(4690), 1, + STATE(4673), 1, sym_comment, - ACTIONS(2256), 5, + ACTIONS(1890), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2254), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH2, - [176378] = 5, + anon_sym_LPAREN2, + [175873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7958), 1, - ts_builtin_sym_end, - ACTIONS(7960), 1, + ACTIONS(5683), 1, sym__space, - STATE(4691), 2, + STATE(4674), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7662), 11, + ACTIONS(5681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384878,41 +522548,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176405] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175898] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7965), 1, + ACTIONS(7774), 1, aux_sym__immediate_decimal_token2, - STATE(4692), 1, + STATE(4675), 1, sym_comment, - ACTIONS(1573), 3, + ACTIONS(1760), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 9, - ts_builtin_sym_end, + ACTIONS(1762), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [176434] = 6, - ACTIONS(247), 1, + [175925] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(7967), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4693), 1, + ACTIONS(2060), 1, + sym__space, + STATE(4676), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(2058), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384924,18 +522592,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176463] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175950] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7970), 1, + ACTIONS(7896), 1, + anon_sym_LT, + ACTIONS(7898), 1, + anon_sym_DASH2, + STATE(4677), 1, + sym_comment, + ACTIONS(7894), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7975), 1, - anon_sym_else, - STATE(4694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175977] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7898), 1, + anon_sym_DASH2, + ACTIONS(7900), 1, + anon_sym_LT, + STATE(4678), 1, sym_comment, - STATE(4730), 1, - aux_sym_shebang_repeat1, - ACTIONS(7973), 11, + ACTIONS(7894), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176004] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4679), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1762), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [176029] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2068), 1, + sym__space, + STATE(4680), 1, + sym_comment, + ACTIONS(2066), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384947,14 +522678,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176492] = 4, + anon_sym_RBRACE, + [176054] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2424), 1, - sym__space, - STATE(4695), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(4681), 1, + sym_comment, + ACTIONS(2349), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2345), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [176083] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7902), 1, + anon_sym_EQ2, + STATE(4682), 1, sym_comment, - ACTIONS(2422), 13, + ACTIONS(5050), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5052), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384966,16 +522724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176517] = 4, + [176110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(2008), 1, sym__space, - STATE(4696), 1, + STATE(4683), 1, sym_comment, - ACTIONS(2426), 13, + ACTIONS(2006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384989,14 +522745,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176542] = 4, + [176135] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7785), 1, + anon_sym_DASH2, + STATE(4684), 1, + sym_comment, + STATE(7478), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7783), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(7904), 1, + ts_builtin_sym_end, + ACTIONS(7906), 1, sym__space, - STATE(4697), 1, + STATE(4685), 1, sym_comment, - ACTIONS(2436), 13, + STATE(4710), 1, + aux_sym_command_repeat1, + ACTIONS(7758), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385008,43 +522791,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [176193] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4686), 1, + sym_comment, + ACTIONS(1919), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [176567] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [176218] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7979), 1, + ACTIONS(7908), 1, aux_sym__immediate_decimal_token2, - STATE(4698), 1, + STATE(4687), 1, sym_comment, - ACTIONS(1585), 3, + ACTIONS(1820), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 9, - ts_builtin_sym_end, + ACTIONS(1822), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [176596] = 6, - ACTIONS(247), 1, + [176245] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7981), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(4688), 1, + sym_comment, + ACTIONS(2355), 5, sym__newline, - ACTIONS(7986), 1, - anon_sym_else, - STATE(4699), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2353), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [176274] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2502), 1, + sym__space, + STATE(4689), 1, sym_comment, - STATE(4737), 1, - aux_sym_shebang_repeat1, - ACTIONS(7984), 11, + ACTIONS(2500), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385056,18 +522877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176625] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [176299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym__newline, - ACTIONS(7993), 1, - anon_sym_else, - STATE(4700), 1, + ACTIONS(1540), 1, + sym__space, + STATE(4690), 1, sym_comment, - STATE(4738), 1, - aux_sym_shebang_repeat1, - ACTIONS(7991), 11, + ACTIONS(1538), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385079,37 +522898,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176654] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [176324] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7997), 1, - anon_sym_DASH2, - STATE(4701), 1, - sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7995), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5138), 1, sym__newline, + ACTIONS(7910), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4691), 1, + sym_comment, + ACTIONS(1233), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176683] = 4, - ACTIONS(3), 1, + [176353] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5132), 1, - sym__space, - STATE(4702), 1, + ACTIONS(7915), 1, + anon_sym_catch, + STATE(4692), 1, sym_comment, - ACTIONS(5134), 13, + ACTIONS(7913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385123,14 +522943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176708] = 4, + [176378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5136), 1, + ACTIONS(2470), 1, sym__space, - STATE(4703), 1, + STATE(4693), 1, sym_comment, - ACTIONS(5138), 13, + ACTIONS(2468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385144,40 +522964,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176733] = 5, - ACTIONS(247), 1, + [176403] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7773), 1, - aux_sym__immediate_decimal_token2, - STATE(4704), 1, + ACTIONS(2470), 1, + sym__space, + STATE(4694), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 10, + ACTIONS(2468), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176760] = 6, - ACTIONS(247), 1, + [176428] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(7850), 1, anon_sym_AT, - ACTIONS(8001), 1, + ACTIONS(7919), 1, anon_sym_DASH2, - STATE(4705), 1, + STATE(4695), 1, sym_comment, - STATE(5147), 1, + STATE(5070), 1, sym_param_cmd, - ACTIONS(7999), 11, + ACTIONS(7917), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385189,18 +523008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176789] = 6, - ACTIONS(247), 1, + [176457] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(7921), 1, sym__newline, - ACTIONS(8003), 1, + ACTIONS(7926), 1, anon_sym_catch, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4706), 1, + STATE(4696), 1, sym_comment, - ACTIONS(1296), 11, + STATE(4736), 1, + aux_sym_shebang_repeat1, + ACTIONS(7924), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385212,39 +523031,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176818] = 5, - ACTIONS(247), 1, + [176486] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8006), 1, - aux_sym__immediate_decimal_token2, - STATE(4707), 1, + STATE(4697), 1, sym_comment, - ACTIONS(1681), 3, + ACTIONS(1968), 2, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 10, + aux_sym__unquoted_in_list_token2, + ACTIONS(1970), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176845] = 5, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [176511] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8008), 1, - anon_sym_QMARK2, - STATE(4708), 1, - sym_comment, - ACTIONS(978), 2, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7930), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(980), 11, + STATE(4698), 1, + sym_comment, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7928), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385256,17 +523075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176872] = 5, - ACTIONS(247), 1, + [176540] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_QMARK2, - STATE(4709), 1, - sym_comment, - ACTIONS(984), 2, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7789), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(986), 11, + STATE(4699), 1, + sym_comment, + STATE(7478), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7787), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385278,14 +523098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176899] = 4, + [176569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(2549), 1, sym__space, - STATE(4710), 1, + STATE(4700), 1, sym_comment, - ACTIONS(2494), 13, + ACTIONS(2547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385299,14 +523119,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176924] = 4, + [176594] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7934), 1, + anon_sym_DASH2, + STATE(4701), 1, + sym_comment, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7932), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2500), 1, + ACTIONS(2474), 1, sym__space, - STATE(4711), 1, + STATE(4702), 1, sym_comment, - ACTIONS(2498), 13, + ACTIONS(2472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385320,15 +523163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176949] = 4, + [176648] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2516), 1, + ACTIONS(7936), 1, + sym__newline, + ACTIONS(7939), 1, sym__space, - STATE(4712), 1, + STATE(4703), 2, sym_comment, - ACTIONS(2514), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7942), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385340,16 +523185,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [176974] = 4, - ACTIONS(3), 1, + [176675] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2353), 1, - sym__space, - STATE(4713), 1, + STATE(4704), 1, + sym_comment, + ACTIONS(5141), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_else, + anon_sym_catch, + [176698] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7946), 1, + anon_sym_DASH2, + STATE(4705), 1, sym_comment, - ACTIONS(2351), 13, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7944), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176727] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7948), 1, sym__newline, + ACTIONS(7953), 1, + anon_sym_else, + STATE(4706), 1, + sym_comment, + STATE(4763), 1, + aux_sym_shebang_repeat1, + ACTIONS(7951), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385361,15 +523251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [176999] = 4, + [176756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, - sym__space, - STATE(4714), 1, + ACTIONS(7955), 1, + anon_sym_EQ2, + STATE(4707), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(5038), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5040), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385381,16 +523273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177024] = 4, + [176783] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2553), 1, sym__space, - STATE(4715), 1, + STATE(4708), 1, sym_comment, - ACTIONS(2359), 13, + ACTIONS(2551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385404,14 +523294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177049] = 4, + [176808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2446), 1, - sym__space, - STATE(4716), 1, + STATE(4709), 1, sym_comment, - ACTIONS(2444), 13, + ACTIONS(5044), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5046), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385423,16 +523315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177074] = 4, + [176833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, + ACTIONS(7906), 1, sym__space, - STATE(4717), 1, + ACTIONS(7957), 1, + ts_builtin_sym_end, + STATE(4672), 1, + aux_sym_command_repeat1, + STATE(4710), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(7762), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385444,16 +523338,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [176862] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(3699), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_DOT, + ACTIONS(7963), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7965), 1, + aux_sym__immediate_decimal_token5, + STATE(4711), 1, + sym_comment, + STATE(5709), 1, + sym__immediate_decimal, + ACTIONS(7961), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1726), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [176903] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4712), 1, + sym_comment, + ACTIONS(1510), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1512), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [177099] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [176928] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7357), 1, + anon_sym_DOT, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token2, + STATE(4713), 1, + sym_comment, + ACTIONS(1872), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1874), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(2072), 1, sym__space, - STATE(4718), 1, + STATE(4714), 1, sym_comment, - ACTIONS(1853), 13, + ACTIONS(2070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385467,14 +523432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177124] = 4, + [176982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(2478), 1, sym__space, - STATE(4719), 1, + STATE(4715), 1, sym_comment, - ACTIONS(2371), 13, + ACTIONS(2476), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385488,14 +523453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177149] = 4, + [177007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7373), 1, + ACTIONS(2482), 1, sym__space, - STATE(4720), 1, + STATE(4716), 1, sym_comment, - ACTIONS(7371), 13, + ACTIONS(2480), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385509,15 +523474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177174] = 4, - ACTIONS(247), 1, + [177032] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4721), 1, + STATE(4717), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(1506), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(992), 12, + ACTIONS(1508), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385530,20 +523495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [177199] = 6, - ACTIONS(247), 1, + [177057] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7315), 1, - anon_sym_DOT, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token2, - STATE(4722), 1, + STATE(4718), 1, sym_comment, - ACTIONS(1765), 2, - sym_identifier, + ACTIONS(1514), 2, anon_sym_DASH2, - ACTIONS(1767), 10, + anon_sym_DOT, + ACTIONS(1516), 12, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -385553,36 +523515,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177228] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + [177082] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4723), 1, + STATE(4719), 1, sym_comment, - ACTIONS(994), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(996), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2409), 6, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2407), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [177253] = 4, - ACTIONS(247), 1, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token4, + [177107] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4724), 1, + ACTIONS(5148), 1, + sym__space, + STATE(4720), 1, + sym_comment, + ACTIONS(5150), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177132] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4721), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(1496), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1000), 12, + ACTIONS(1498), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385595,18 +523579,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [177278] = 5, + [177157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_EQ2, - STATE(4725), 1, + ACTIONS(2510), 1, + sym__space, + STATE(4722), 1, + sym_comment, + ACTIONS(2508), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177182] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4723), 1, sym_comment, - ACTIONS(4996), 2, + ACTIONS(1520), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4998), 11, + anon_sym_DOT, + ACTIONS(1518), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + sym__space, + STATE(4724), 1, + sym_comment, + ACTIONS(2559), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177232] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4725), 1, + sym_comment, + ACTIONS(5709), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385617,15 +523660,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177305] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [177255] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4726), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(1524), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1522), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177280] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7967), 1, + anon_sym_QMARK2, + STATE(4727), 1, + sym_comment, + ACTIONS(1500), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1004), 12, + ACTIONS(1502), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385637,22 +523705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [177330] = 7, - ACTIONS(247), 1, + [177307] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7766), 1, + ACTIONS(7778), 1, sym__newline, - STATE(774), 1, + STATE(305), 1, aux_sym__pipe_separator, - STATE(4727), 1, + STATE(4728), 1, sym_comment, - STATE(5246), 1, + STATE(5234), 1, aux_sym_shebang_repeat1, - ACTIONS(7769), 2, + ACTIONS(7781), 2, ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2528), 9, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -385662,17 +523729,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177361] = 5, + [177338] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4729), 1, + sym_comment, + ACTIONS(1768), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1770), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [177363] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7969), 1, + anon_sym_QMARK2, + STATE(4730), 1, + sym_comment, + ACTIONS(1490), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1492), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8014), 1, - anon_sym_LBRACK2, - STATE(4728), 1, + ACTIONS(2565), 1, + sym__space, + STATE(4731), 1, sym_comment, - ACTIONS(2326), 2, - ts_builtin_sym_end, + ACTIONS(2563), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1996), 1, sym__space, - ACTIONS(2322), 11, + STATE(4732), 1, + sym_comment, + ACTIONS(1994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385684,14 +523812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177388] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177440] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7850), 1, + anon_sym_AT, + ACTIONS(7973), 1, + anon_sym_DASH2, + STATE(4733), 1, + sym_comment, + STATE(5072), 1, + sym_param_cmd, + ACTIONS(7971), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(2595), 1, sym__space, - STATE(4729), 1, + STATE(4734), 1, sym_comment, - ACTIONS(1026), 13, + ACTIONS(2593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385705,18 +523858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177413] = 6, - ACTIONS(247), 1, + [177494] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(7975), 1, sym__newline, - ACTIONS(8016), 1, + ACTIONS(7980), 1, anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4730), 1, + STATE(4735), 1, sym_comment, - ACTIONS(1296), 11, + STATE(4770), 1, + aux_sym_shebang_repeat1, + ACTIONS(7978), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385728,15 +523881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177442] = 4, - ACTIONS(3), 1, + [177523] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2466), 1, - sym__space, - STATE(4731), 1, - sym_comment, - ACTIONS(2464), 13, + ACTIONS(7982), 1, sym__newline, + ACTIONS(7987), 1, + anon_sym_catch, + STATE(4736), 1, + sym_comment, + STATE(4775), 1, + aux_sym_shebang_repeat1, + ACTIONS(7985), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385748,15 +523904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [177467] = 4, + [177552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(2490), 1, sym__space, - STATE(4732), 1, + STATE(4737), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(2488), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385770,14 +523925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177492] = 4, + [177577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5681), 1, + ACTIONS(2494), 1, sym__space, - STATE(4733), 1, + STATE(4738), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(2492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385791,14 +523946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177517] = 4, + [177602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, + ACTIONS(2498), 1, sym__space, - STATE(4734), 1, + STATE(4739), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2496), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385812,14 +523967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177542] = 4, + [177627] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5689), 1, + ACTIONS(7906), 1, sym__space, - STATE(4735), 1, + ACTIONS(7989), 1, + ts_builtin_sym_end, + STATE(4672), 1, + aux_sym_command_repeat1, + STATE(4740), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(7820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385831,42 +523990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177567] = 5, - ACTIONS(247), 1, + [177656] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8021), 1, - anon_sym_LT, - ACTIONS(8023), 1, - anon_sym_DASH2, - STATE(4736), 1, + STATE(4741), 1, sym_comment, - ACTIONS(8019), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177594] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5705), 14, sym__newline, - ACTIONS(8025), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4737), 1, - sym_comment, - ACTIONS(1296), 11, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385877,20 +524008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [177623] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [177679] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8028), 1, + ACTIONS(7991), 1, sym__newline, - ACTIONS(8033), 1, - anon_sym_else, - STATE(4643), 1, - aux_sym_shebang_repeat1, - STATE(4738), 1, + STATE(306), 1, + aux_sym__pipe_separator, + STATE(4742), 1, sym_comment, - ACTIONS(8031), 11, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(7994), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -385900,15 +524034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [177652] = 4, + [177710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2488), 1, + ACTIONS(7998), 1, sym__space, - STATE(4739), 1, + STATE(4743), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(7996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385922,14 +524055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177677] = 4, + [177735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2512), 1, + ACTIONS(7516), 1, sym__space, - STATE(4740), 1, + STATE(4744), 1, sym_comment, - ACTIONS(2510), 13, + ACTIONS(7514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385943,40 +524076,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177702] = 5, - ACTIONS(247), 1, + [177760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8023), 1, - anon_sym_DASH2, - ACTIONS(8035), 1, - anon_sym_LT, - STATE(4741), 1, + ACTIONS(8002), 1, + sym__space, + STATE(4745), 1, sym_comment, - ACTIONS(8019), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8000), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177729] = 6, + anon_sym_RBRACE, + [177785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7894), 1, + ACTIONS(8006), 1, sym__space, - ACTIONS(8037), 1, - ts_builtin_sym_end, - STATE(4677), 1, - aux_sym_command_repeat1, - STATE(4742), 1, + STATE(4746), 1, sym_comment, - ACTIONS(7732), 11, + ACTIONS(8004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385988,67 +524116,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177758] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2230), 1, - anon_sym_DASH2, - STATE(4743), 1, - sym_comment, - ACTIONS(2232), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177787] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [177810] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_DASH2, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(4744), 1, + ACTIONS(8010), 1, + sym__space, + STATE(4747), 1, sym_comment, - ACTIONS(1810), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8008), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177816] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [177835] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7739), 1, - sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, - STATE(4745), 1, + ACTIONS(8012), 1, + anon_sym_LBRACK2, + STATE(4748), 1, sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(7742), 2, + ACTIONS(2427), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2423), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386058,14 +524161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177847] = 4, + [177862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(8016), 1, sym__space, - STATE(4746), 1, + STATE(4749), 1, sym_comment, - ACTIONS(1863), 13, + ACTIONS(8014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386079,15 +524182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177872] = 4, + [177887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(7865), 1, + sym__newline, + ACTIONS(7867), 1, sym__space, - STATE(4747), 1, + STATE(4663), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4750), 1, sym_comment, - ACTIONS(2398), 13, - sym__newline, + ACTIONS(8018), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386099,39 +524205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [177897] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7728), 1, - anon_sym_DASH2, - STATE(4748), 1, - sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7726), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177926] = 4, + [177916] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(7865), 1, + sym__newline, + ACTIONS(7867), 1, sym__space, - STATE(4749), 1, + STATE(4751), 1, sym_comment, - ACTIONS(2402), 13, - sym__newline, + STATE(4786), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8020), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386143,19 +524228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [177951] = 6, - ACTIONS(247), 1, + [177945] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7855), 1, - anon_sym_AT, - ACTIONS(8041), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1940), 1, anon_sym_DASH2, - STATE(4750), 1, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + STATE(4752), 1, sym_comment, - STATE(5093), 1, - sym_param_cmd, - ACTIONS(8039), 11, + ACTIONS(1948), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386167,15 +524251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177980] = 4, - ACTIONS(3), 1, + [177974] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2480), 1, - sym__space, - STATE(4751), 1, - sym_comment, - ACTIONS(2478), 13, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8022), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4753), 1, + sym_comment, + ACTIONS(1233), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386187,15 +524274,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178005] = 4, + [178003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(2514), 1, sym__space, - STATE(4752), 1, + STATE(4754), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(2512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386209,14 +524295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178030] = 3, + [178028] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4753), 1, + ACTIONS(2036), 1, + sym__space, + STATE(4755), 1, sym_comment, - ACTIONS(5679), 14, + ACTIONS(2034), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386227,17 +524314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [178053] = 3, - ACTIONS(3), 1, + [178053] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4754), 1, - sym_comment, - ACTIONS(5687), 14, + ACTIONS(7793), 1, sym__newline, - sym__space, + STATE(305), 1, + aux_sym__pipe_separator, + STATE(4756), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(7796), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386247,17 +524340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [178076] = 4, - ACTIONS(3), 1, + [178084] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__space, - STATE(4755), 1, - sym_comment, - ACTIONS(8043), 13, + ACTIONS(8025), 1, sym__newline, + ACTIONS(8030), 1, + anon_sym_else, + STATE(4753), 1, + aux_sym_shebang_repeat1, + STATE(4757), 1, + sym_comment, + ACTIONS(8028), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386269,15 +524363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178101] = 4, + [178113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(1800), 1, sym__space, - STATE(4756), 1, + STATE(4758), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386291,14 +524384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178126] = 4, + [178138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(7642), 1, sym__space, - STATE(4757), 1, + STATE(4759), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(7640), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386312,14 +524405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178151] = 4, - ACTIONS(3), 1, + [178163] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2416), 1, - sym__space, - STATE(4758), 1, + STATE(4760), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(7791), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386331,18 +524423,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178176] = 4, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_catch, + [178186] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2458), 1, - sym__space, - STATE(4759), 1, - sym_comment, - ACTIONS(2456), 13, + ACTIONS(8032), 1, sym__newline, + STATE(306), 1, + aux_sym__pipe_separator, + STATE(4761), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(8035), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386352,17 +524449,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178201] = 4, - ACTIONS(3), 1, + [178217] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2392), 1, - sym__space, - STATE(4760), 1, + ACTIONS(2423), 1, + anon_sym_DASH2, + ACTIONS(8037), 1, + anon_sym_LBRACK2, + STATE(4762), 1, sym_comment, - ACTIONS(2390), 13, + ACTIONS(2427), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [178244] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8039), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4763), 1, + sym_comment, + ACTIONS(1233), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386374,36 +524494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178226] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4761), 1, - sym_comment, - ACTIONS(1761), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1763), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [178251] = 3, + [178273] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4762), 1, + ACTIONS(5729), 1, + sym__space, + STATE(4764), 1, sym_comment, - ACTIONS(5691), 14, + ACTIONS(5727), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386414,16 +524513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [178274] = 4, + [178298] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(7760), 1, sym__space, - STATE(4763), 1, + STATE(4623), 1, + aux_sym_command_repeat1, + STATE(4765), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(7820), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386435,17 +524536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [178299] = 4, - ACTIONS(3), 1, + [178325] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2408), 1, - sym__space, - STATE(4764), 1, - sym_comment, - ACTIONS(2406), 13, + ACTIONS(8042), 1, sym__newline, + ACTIONS(8047), 1, + anon_sym_else, + STATE(4691), 1, + aux_sym_shebang_repeat1, + STATE(4766), 1, + sym_comment, + ACTIONS(8045), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386457,36 +524560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4765), 1, - sym_comment, - ACTIONS(2270), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2268), 8, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token4, - [178349] = 4, + [178354] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5079), 1, + ACTIONS(2486), 1, sym__space, - STATE(4766), 1, + STATE(4767), 1, sym_comment, - ACTIONS(5081), 13, + ACTIONS(2484), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386500,14 +524581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178374] = 4, + [178379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5083), 1, + ACTIONS(2084), 1, sym__space, - STATE(4767), 1, + STATE(4768), 1, sym_comment, - ACTIONS(5085), 13, + ACTIONS(2082), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386521,37 +524602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178399] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8049), 1, - anon_sym_DASH2, - STATE(4768), 1, - sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8047), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178428] = 4, + [178404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, - sym__space, + ACTIONS(7282), 1, + aux_sym_unquoted_token2, STATE(4769), 1, sym_comment, - ACTIONS(1887), 13, + ACTIONS(1800), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386563,17 +524624,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178453] = 4, - ACTIONS(3), 1, + [178431] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5693), 1, - sym__space, + ACTIONS(8049), 1, + sym__newline, + ACTIONS(8054), 1, + anon_sym_else, + STATE(4631), 1, + aux_sym_shebang_repeat1, STATE(4770), 1, sym_comment, - ACTIONS(5691), 13, - sym__newline, + ACTIONS(8052), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386585,16 +524647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178478] = 4, - ACTIONS(3), 1, + [178460] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__space, + ACTIONS(8056), 1, + sym__newline, + ACTIONS(8061), 1, + anon_sym_else, + STATE(4757), 1, + aux_sym_shebang_repeat1, STATE(4771), 1, sym_comment, - ACTIONS(2343), 13, - sym__newline, + ACTIONS(8059), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386606,38 +524670,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178503] = 6, - ACTIONS(247), 1, + [178489] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2258), 1, - anon_sym_DASH2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, + ACTIONS(8063), 1, + sym__newline, + ACTIONS(8068), 1, + anon_sym_else, + STATE(4706), 1, + aux_sym_shebang_repeat1, STATE(4772), 1, sym_comment, - ACTIONS(2262), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(8066), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178532] = 4, + [178518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2442), 1, + ACTIONS(2040), 1, sym__space, STATE(4773), 1, sym_comment, - ACTIONS(2440), 13, + ACTIONS(2038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386651,14 +524714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178557] = 4, + [178543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(2234), 1, sym__space, STATE(4774), 1, sym_comment, - ACTIONS(1915), 13, + ACTIONS(2228), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386672,15 +524735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178582] = 4, - ACTIONS(3), 1, + [178568] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1929), 1, - sym__space, + ACTIONS(5138), 1, + sym__newline, + ACTIONS(8070), 1, + anon_sym_catch, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(4775), 1, sym_comment, - ACTIONS(1927), 13, - sym__newline, + ACTIONS(1233), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386692,38 +524758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178607] = 6, - ACTIONS(247), 1, + [178597] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8053), 1, - anon_sym_DASH2, + ACTIONS(2183), 1, + sym__space, STATE(4776), 1, sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8051), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2177), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178636] = 4, + anon_sym_RBRACE, + [178622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1944), 1, + ACTIONS(2569), 1, sym__space, STATE(4777), 1, sym_comment, - ACTIONS(1942), 13, + ACTIONS(2567), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386737,13 +524800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178661] = 3, - ACTIONS(247), 1, + [178647] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2191), 1, + sym__space, STATE(4778), 1, sym_comment, - ACTIONS(5128), 14, - ts_builtin_sym_end, + ACTIONS(2185), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386755,17 +524819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [178684] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178672] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2492), 1, - sym__space, + ACTIONS(8073), 1, + sym__newline, + ACTIONS(8078), 1, + anon_sym_catch, + STATE(4671), 1, + aux_sym_shebang_repeat1, STATE(4779), 1, sym_comment, - ACTIONS(2490), 13, - sym__newline, + ACTIONS(8076), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386777,18 +524844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178709] = 4, + [178701] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4780), 1, sym_comment, - ACTIONS(1008), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1006), 11, + ACTIONS(5677), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386799,14 +524862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178734] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [178724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2036), 1, + ACTIONS(5128), 1, sym__space, STATE(4781), 1, sym_comment, - ACTIONS(2034), 13, + ACTIONS(5130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386820,14 +524885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178759] = 4, + [178749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(5134), 1, sym__space, STATE(4782), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(5136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386841,14 +524906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178784] = 4, + [178774] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(2044), 1, sym__space, STATE(4783), 1, sym_comment, - ACTIONS(2379), 13, + ACTIONS(2042), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386862,15 +524927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178809] = 4, + [178799] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2040), 1, - sym__space, STATE(4784), 1, sym_comment, - ACTIONS(2038), 13, + ACTIONS(5681), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386881,16 +524945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [178834] = 4, + aux_sym_record_entry_token1, + [178822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(2506), 1, sym__space, STATE(4785), 1, sym_comment, - ACTIONS(1899), 13, + ACTIONS(2504), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386904,15 +524968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178859] = 4, + [178847] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, + ACTIONS(7865), 1, + sym__newline, + ACTIONS(7867), 1, sym__space, + STATE(4703), 1, + aux_sym__command_parenthesized_repeat1, STATE(4786), 1, sym_comment, - ACTIONS(2448), 13, - sym__newline, + ACTIONS(8080), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386924,15 +524991,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178884] = 4, + [178876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__space, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym__unquoted_in_list_token4, STATE(4787), 1, sym_comment, - ACTIONS(2452), 13, + ACTIONS(1540), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1538), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [178905] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(8084), 1, + anon_sym_DASH2, + STATE(4788), 1, + sym_comment, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8082), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178934] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7906), 1, + sym__space, + ACTIONS(8086), 1, + ts_builtin_sym_end, + STATE(4740), 1, + aux_sym_command_repeat1, + STATE(4789), 1, + sym_comment, + ACTIONS(7733), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386944,17 +525060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178909] = 4, - ACTIONS(3), 1, + [178963] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1909), 1, - sym__space, - STATE(4788), 1, - sym_comment, - ACTIONS(1907), 13, + ACTIONS(8088), 1, sym__newline, + ACTIONS(8093), 1, + anon_sym_catch, + STATE(4779), 1, + aux_sym_shebang_repeat1, + STATE(4790), 1, + sym_comment, + ACTIONS(8091), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386966,15 +525083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178934] = 4, + [178992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(2522), 1, sym__space, - STATE(4789), 1, + STATE(4791), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2520), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386988,14 +525104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178959] = 4, + [179017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, + ACTIONS(2526), 1, sym__space, - STATE(4790), 1, + STATE(4792), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(2524), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387009,14 +525125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178984] = 4, + [179042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2484), 1, + ACTIONS(2603), 1, sym__space, - STATE(4791), 1, + STATE(4793), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(2601), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387030,14 +525146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179009] = 4, + [179067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(2533), 1, sym__space, - STATE(4792), 1, + STATE(4794), 1, sym_comment, - ACTIONS(1707), 13, + ACTIONS(2531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387051,40 +525167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179034] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2322), 1, - anon_sym_DASH2, - ACTIONS(8055), 1, - anon_sym_LBRACK2, - STATE(4793), 1, - sym_comment, - ACTIONS(2326), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179061] = 6, + [179092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, - sym__newline, - ACTIONS(7888), 1, + ACTIONS(2056), 1, sym__space, - STATE(4657), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4794), 1, + STATE(4795), 1, sym_comment, - ACTIONS(8057), 11, + ACTIONS(2054), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387096,14 +525187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179090] = 4, + anon_sym_RBRACE, + [179117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(5152), 1, sym__space, - STATE(4795), 1, + STATE(4796), 1, sym_comment, - ACTIONS(2363), 13, + ACTIONS(5154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387117,14 +525209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179115] = 4, - ACTIONS(247), 1, + [179142] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8061), 1, + ACTIONS(1788), 1, anon_sym_DASH2, - STATE(4796), 1, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token2, + STATE(4797), 1, sym_comment, - ACTIONS(8059), 12, + ACTIONS(1800), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387134,48 +525228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179139] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(8063), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4797), 1, - sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [179185] = 4, - ACTIONS(247), 1, + [179168] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8067), 1, + ACTIONS(8097), 1, anon_sym_DASH2, STATE(4798), 1, sym_comment, - ACTIONS(8065), 12, + ACTIONS(8095), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387188,54 +525250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179209] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8069), 1, - anon_sym_catch, - STATE(4799), 1, - sym_comment, - ACTIONS(7882), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179233] = 4, + [179192] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + STATE(4799), 1, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2036), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2367), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179257] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4801), 1, - sym_comment, - ACTIONS(8071), 12, + ACTIONS(2034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387247,15 +525270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [179281] = 4, - ACTIONS(247), 1, + [179216] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(2018), 1, anon_sym_DASH2, - STATE(4802), 1, + STATE(4800), 1, sym_comment, - ACTIONS(1889), 12, + ACTIONS(2020), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387268,42 +525290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179305] = 14, + [179240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACE, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(1559), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8077), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8079), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8083), 1, - aux_sym__immediate_decimal_token5, - STATE(4803), 1, - sym_comment, - STATE(5722), 1, - sym__immediate_decimal, - STATE(5966), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179349] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4804), 1, + STATE(4801), 1, sym_comment, - ACTIONS(6823), 13, + ACTIONS(2577), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387315,17 +525310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179371] = 4, + [179264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4805), 1, - sym_comment, - ACTIONS(2381), 2, - ts_builtin_sym_end, + ACTIONS(8101), 1, sym__space, - ACTIONS(2379), 11, + STATE(4802), 1, + sym_comment, + ACTIONS(8099), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387337,12 +525329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179395] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [179288] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4806), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8085), 13, + ACTIONS(7998), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387354,12 +525350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179417] = 4, + [179312] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4807), 1, + STATE(4804), 1, sym_comment, ACTIONS(2040), 2, ts_builtin_sym_end, @@ -387376,34 +525370,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179441] = 3, - ACTIONS(247), 1, + [179336] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4808), 1, + ACTIONS(8105), 1, + anon_sym_DASH2, + STATE(4805), 1, sym_comment, - ACTIONS(8087), 13, + ACTIONS(8103), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [179463] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4809), 1, + STATE(4806), 1, sym_comment, - ACTIONS(5693), 2, + ACTIONS(2581), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5691), 11, + ACTIONS(2579), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387415,46 +525410,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179487] = 15, - ACTIONS(247), 1, + [179384] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(2508), 1, + anon_sym_DASH2, + STATE(4807), 1, + sym_comment, + ACTIONS(2510), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7673), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7779), 1, - anon_sym_PIPE, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4810), 1, + anon_sym_LBRACE, + [179408] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4808), 1, sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [179533] = 4, - ACTIONS(3), 1, + ACTIONS(8107), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179430] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4811), 1, + STATE(4809), 1, sym_comment, - ACTIONS(1901), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1899), 11, + ACTIONS(8109), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387466,15 +525466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179557] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179452] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4812), 1, + STATE(4810), 1, sym_comment, - ACTIONS(2450), 2, + ACTIONS(2008), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2448), 11, + ACTIONS(2006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387486,15 +525488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179581] = 4, - ACTIONS(3), 1, + [179476] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4813), 1, + ACTIONS(8113), 1, + anon_sym_else, + STATE(4811), 1, sym_comment, - ACTIONS(2377), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2375), 11, + ACTIONS(8111), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387506,15 +525507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179605] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [179500] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4814), 1, + STATE(4812), 1, sym_comment, - ACTIONS(2454), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2452), 11, + ACTIONS(8115), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387526,15 +525525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179629] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4815), 1, + STATE(4813), 1, sym_comment, - ACTIONS(1909), 2, + ACTIONS(5168), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1907), 11, + ACTIONS(5170), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387546,14 +525547,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179653] = 4, - ACTIONS(247), 1, + [179546] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8119), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8123), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token5, + STATE(4814), 1, + sym_comment, + STATE(5961), 1, + sym__immediate_decimal, + ACTIONS(1776), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5816), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179588] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8091), 1, + ACTIONS(2512), 1, anon_sym_DASH2, - STATE(4816), 1, + STATE(4815), 1, sym_comment, - ACTIONS(8089), 12, + ACTIONS(2514), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387563,37 +525593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179677] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4817), 1, - sym_comment, - ACTIONS(7902), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7900), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179701] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [179612] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2343), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - STATE(4818), 1, + STATE(4816), 1, sym_comment, - ACTIONS(2345), 12, + ACTIONS(2036), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387606,15 +525616,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179725] = 4, + [179636] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8135), 1, + aux_sym__immediate_decimal_token5, + STATE(4817), 1, + sym_comment, + STATE(6343), 1, + sym__immediate_decimal, + ACTIONS(8131), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3440), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1726), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [179674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4819), 1, + STATE(4818), 1, sym_comment, - ACTIONS(7861), 2, + ACTIONS(2585), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7859), 11, + ACTIONS(2583), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387626,35 +525663,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179749] = 4, - ACTIONS(247), 1, + [179698] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4820), 1, - sym_comment, - ACTIONS(1006), 2, + ACTIONS(1788), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1008), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(6502), 1, + aux_sym_unquoted_token2, + ACTIONS(8137), 1, + sym_filesize_unit, + ACTIONS(8139), 1, + sym_duration_unit, + STATE(4819), 1, + sym_comment, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1800), 6, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179773] = 4, + anon_sym_RBRACE, + anon_sym_as, + [179732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4821), 1, + STATE(4820), 1, sym_comment, - ACTIONS(7445), 2, + ACTIONS(2044), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7443), 11, + ACTIONS(2042), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387666,14 +525708,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179797] = 4, - ACTIONS(247), 1, + [179756] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2440), 1, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7743), 1, + anon_sym_RBRACK, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4821), 1, + sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [179802] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2609), 1, anon_sym_DASH2, STATE(4822), 1, sym_comment, - ACTIONS(2442), 12, + ACTIONS(2611), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387686,35 +525759,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179821] = 4, - ACTIONS(3), 1, + [179826] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(7880), 1, + aux_sym__immediate_decimal_token2, STATE(4823), 1, sym_comment, - ACTIONS(7865), 2, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(7863), 11, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179845] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179852] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(4824), 1, sym_comment, - ACTIONS(2470), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2468), 11, + ACTIONS(8141), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387726,34 +525797,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179869] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179874] = 11, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8135), 1, + aux_sym__immediate_decimal_token5, STATE(4825), 1, sym_comment, - ACTIONS(2484), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2482), 11, - sym__newline, - anon_sym_SEMI, + STATE(6428), 1, + sym__immediate_decimal, + ACTIONS(8131), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1742), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [179893] = 4, - ACTIONS(247), 1, + anon_sym_if, + anon_sym_EQ_GT, + [179912] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4826), 1, sym_comment, - STATE(4855), 1, - aux_sym_shebang_repeat1, - ACTIONS(8093), 12, + ACTIONS(2589), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2587), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387765,16 +525846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [179917] = 4, - ACTIONS(3), 1, + [179936] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(4827), 1, sym_comment, - ACTIONS(7869), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7867), 11, + ACTIONS(8143), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387786,70 +525863,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179941] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8101), 1, - aux_sym__immediate_decimal_token5, - STATE(4828), 1, - sym_comment, - STATE(6308), 1, - sym__immediate_decimal, - ACTIONS(8097), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3451), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1557), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [179979] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179958] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4033), 1, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(8103), 1, - sym__newline, - ACTIONS(8105), 1, - sym__space, - ACTIONS(8107), 1, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(8109), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(8111), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1772), 1, - sym_val_closure, - STATE(4829), 1, + ACTIONS(8145), 1, + anon_sym_PIPE, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4828), 1, sym_comment, - STATE(5649), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(792), 2, - sym__blosure, - sym_val_variable, - STATE(7564), 2, - sym_short_flag, - sym_long_flag, - [180021] = 4, - ACTIONS(247), 1, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [180004] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - STATE(4830), 1, + STATE(4829), 1, sym_comment, - ACTIONS(6062), 12, + ACTIONS(2040), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387861,16 +525915,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [180045] = 4, + anon_sym_LBRACE, + [180028] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(8147), 1, + anon_sym_RBRACK, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4830), 1, + sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [180074] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4831), 1, sym_comment, - ACTIONS(7873), 2, + ACTIONS(1996), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7871), 11, + ACTIONS(1994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387882,15 +525967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180069] = 4, + [180098] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4832), 1, sym_comment, - ACTIONS(7880), 2, + ACTIONS(2533), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7878), 11, + ACTIONS(2531), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387902,34 +525987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180093] = 4, - ACTIONS(3), 1, + [180122] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8115), 1, - sym__space, STATE(4833), 1, sym_comment, - ACTIONS(8113), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [180117] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(1526), 2, anon_sym_DASH2, - STATE(4834), 1, - sym_comment, - ACTIONS(2466), 12, + anon_sym_DOT, + ACTIONS(1528), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387941,35 +526007,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180141] = 4, - ACTIONS(247), 1, + [180146] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_DASH2, - STATE(4835), 1, - sym_comment, - ACTIONS(1917), 12, - anon_sym_EQ, + ACTIONS(7694), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7700), 1, anon_sym_DOLLAR, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180165] = 4, - ACTIONS(247), 1, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4834), 1, + sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [180192] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(2601), 1, anon_sym_DASH2, - STATE(4836), 1, + STATE(4835), 1, sym_comment, - ACTIONS(2466), 12, + ACTIONS(2603), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387982,15 +526058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180189] = 4, + [180216] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4837), 1, + STATE(4836), 1, sym_comment, - ACTIONS(1865), 2, + ACTIONS(2056), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1863), 11, + ACTIONS(2054), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388002,14 +526078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180213] = 4, - ACTIONS(247), 1, + [180240] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(2042), 1, anon_sym_DASH2, - STATE(4838), 1, + STATE(4837), 1, sym_comment, - ACTIONS(2480), 12, + ACTIONS(2044), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388022,15 +526098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180237] = 4, - ACTIONS(3), 1, + [180264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4839), 1, + STATE(4838), 1, sym_comment, - ACTIONS(5083), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5085), 11, + ACTIONS(8151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388042,16 +526115,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180261] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4840), 1, + STATE(4839), 1, sym_comment, - ACTIONS(7587), 2, + ACTIONS(2537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7585), 11, + ACTIONS(2535), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180310] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8153), 1, sym__newline, + STATE(4840), 1, + sym_comment, + ACTIONS(8155), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388062,16 +526157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180285] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [180336] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3449), 1, aux_sym_record_entry_token1, - ACTIONS(8117), 1, + ACTIONS(8157), 1, sym__newline, STATE(4841), 1, sym_comment, - ACTIONS(8085), 11, + ACTIONS(8159), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388083,15 +526179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [180311] = 4, + [180362] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4842), 1, sym_comment, - ACTIONS(2458), 2, + ACTIONS(2541), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2456), 11, + ACTIONS(2539), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388103,15 +526199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180335] = 4, + [180386] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4843), 1, sym_comment, - ACTIONS(2400), 2, + ACTIONS(2060), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2398), 11, + ACTIONS(2058), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388123,15 +526219,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180359] = 4, - ACTIONS(3), 1, + [180410] = 15, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7770), 1, + anon_sym_RPAREN, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, STATE(4844), 1, sym_comment, - ACTIONS(1719), 2, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [180456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4845), 1, + sym_comment, + ACTIONS(5172), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1707), 11, + ACTIONS(5174), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388143,15 +526270,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180383] = 4, + [180480] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(8161), 1, + anon_sym_RPAREN, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4846), 1, + sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [180526] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(4847), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(2611), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2410), 11, + ACTIONS(2609), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388163,36 +526321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180407] = 5, - ACTIONS(247), 1, + [180550] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7965), 1, - aux_sym__immediate_decimal_token2, - STATE(4846), 1, - sym_comment, - ACTIONS(1573), 3, + ACTIONS(2504), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 9, - ts_builtin_sym_end, + STATE(4848), 1, + sym_comment, + ACTIONS(2506), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180433] = 4, + anon_sym_LBRACE, + [180574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4847), 1, + STATE(4849), 1, sym_comment, - ACTIONS(2420), 2, + ACTIONS(2068), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2418), 11, + ACTIONS(2066), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388204,14 +526361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180457] = 4, - ACTIONS(247), 1, + [180598] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2347), 1, + ACTIONS(2531), 1, anon_sym_DASH2, - STATE(4848), 1, + STATE(4850), 1, sym_comment, - ACTIONS(2349), 12, + ACTIONS(2533), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388224,14 +526381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180481] = 4, - ACTIONS(247), 1, + [180622] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2402), 1, + ACTIONS(2054), 1, anon_sym_DASH2, - STATE(4849), 1, + STATE(4851), 1, sym_comment, - ACTIONS(2404), 12, + ACTIONS(2056), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388244,66 +526401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180505] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, - anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(8119), 1, - anon_sym_PIPE, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4850), 1, - sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [180551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4851), 1, - sym_comment, - ACTIONS(5689), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5687), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180575] = 4, + [180646] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4852), 1, sym_comment, - ACTIONS(2446), 2, + ACTIONS(2020), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2444), 11, + ACTIONS(2018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388315,35 +526421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180599] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8121), 1, - aux_sym__immediate_decimal_token2, - STATE(4853), 1, - sym_comment, - ACTIONS(1681), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180625] = 4, - ACTIONS(247), 1, + [180670] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(2535), 1, anon_sym_DASH2, - STATE(4854), 1, + STATE(4853), 1, sym_comment, - ACTIONS(2474), 12, + ACTIONS(2537), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388356,14 +526441,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180649] = 4, - ACTIONS(247), 1, + [180694] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(4854), 1, + sym_comment, + STATE(4971), 1, aux_sym_shebang_repeat1, + ACTIONS(8163), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [180718] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4855), 1, sym_comment, - ACTIONS(8123), 12, + ACTIONS(2490), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2488), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388375,15 +526481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [180673] = 4, - ACTIONS(247), 1, + [180742] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8127), 1, + ACTIONS(2539), 1, anon_sym_DASH2, STATE(4856), 1, sym_comment, - ACTIONS(8125), 12, + ACTIONS(2541), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388393,84 +526498,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180697] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [180766] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4857), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 10, + ACTIONS(2549), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2547), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180721] = 13, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4033), 1, - anon_sym_DOLLAR, - ACTIONS(8103), 1, - sym__newline, - ACTIONS(8105), 1, - sym__space, - ACTIONS(8107), 1, - anon_sym_DASH_DASH, - ACTIONS(8109), 1, - anon_sym_DASH2, - ACTIONS(8111), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1772), 1, - sym_val_closure, STATE(4858), 1, sym_comment, - STATE(5649), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(790), 2, - sym__blosure, - sym_val_variable, - STATE(7564), 2, - sym_short_flag, - sym_long_flag, - [180763] = 4, - ACTIONS(247), 1, + ACTIONS(2494), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2492), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180814] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token2, STATE(4859), 1, sym_comment, - ACTIONS(1585), 3, + ACTIONS(1820), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 10, + ACTIONS(1822), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [180787] = 3, - ACTIONS(247), 1, + [180840] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2058), 1, + anon_sym_DASH2, STATE(4860), 1, sym_comment, - ACTIONS(5144), 13, + ACTIONS(2060), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180864] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4861), 1, + sym_comment, + ACTIONS(5683), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5681), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388482,14 +526602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180809] = 3, - ACTIONS(247), 1, + [180888] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4861), 1, + STATE(4862), 1, sym_comment, - ACTIONS(5148), 13, + ACTIONS(8167), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388503,55 +526621,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180831] = 4, - ACTIONS(247), 1, + [180910] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4862), 1, + STATE(4863), 1, sym_comment, - ACTIONS(1681), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 10, + ACTIONS(8169), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180855] = 4, - ACTIONS(247), 1, + [180932] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4863), 1, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(1728), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8171), 1, + anon_sym_DOT, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token5, + STATE(4864), 1, sym_comment, - ACTIONS(1761), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1763), 10, + STATE(5712), 1, + sym__immediate_decimal, + STATE(5780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180976] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_RBRACK, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8123), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8181), 1, + anon_sym_DOT, + STATE(4865), 1, + sym_comment, + STATE(5699), 1, + sym__immediate_decimal, + STATE(5780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181020] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8183), 1, + anon_sym_else, + STATE(4866), 1, + sym_comment, + ACTIONS(8111), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180879] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181044] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4867), 1, sym_comment, - ACTIONS(2432), 2, + ACTIONS(2498), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2430), 11, + ACTIONS(2496), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388563,15 +526740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180903] = 4, + [181068] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4865), 1, + STATE(4868), 1, sym_comment, - ACTIONS(5662), 2, + ACTIONS(2553), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5660), 11, + ACTIONS(2551), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388583,16 +526760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180927] = 5, - ACTIONS(247), 1, + [181092] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token2, - STATE(4866), 1, + STATE(4869), 1, sym_comment, - ACTIONS(1719), 11, + ACTIONS(1518), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1520), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388604,15 +526780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180953] = 4, - ACTIONS(3), 1, + [181116] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4867), 1, + STATE(4870), 1, sym_comment, - ACTIONS(2404), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2402), 11, + ACTIONS(8185), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388624,39 +526797,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180977] = 9, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181138] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(6450), 1, - aux_sym_unquoted_token2, - ACTIONS(8129), 1, - sym_filesize_unit, - ACTIONS(8131), 1, - sym_duration_unit, - STATE(4868), 1, + STATE(4871), 1, sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 6, + ACTIONS(8187), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [181011] = 4, - ACTIONS(247), 1, + [181160] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6054), 1, + ACTIONS(2468), 1, anon_sym_DASH2, - STATE(4869), 1, + STATE(4872), 1, sym_comment, - ACTIONS(6056), 12, + ACTIONS(2470), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388668,16 +526837,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [181035] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [181184] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4870), 1, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(4873), 1, sym_comment, - ACTIONS(5658), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5656), 11, + ACTIONS(2470), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [181208] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(4874), 1, + sym_comment, + ACTIONS(8189), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388689,12 +526875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181059] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181230] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4871), 1, + STATE(4875), 1, sym_comment, - ACTIONS(8133), 13, + ACTIONS(8191), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388708,15 +526896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181081] = 4, - ACTIONS(247), 1, + [181252] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4872), 1, + STATE(4876), 1, sym_comment, - ACTIONS(1010), 2, + ACTIONS(1522), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1012), 11, + ACTIONS(1524), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388728,15 +526916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181105] = 4, - ACTIONS(247), 1, + [181276] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4873), 1, - sym_comment, - ACTIONS(1014), 2, + ACTIONS(2066), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1016), 11, + STATE(4877), 1, + sym_comment, + ACTIONS(2068), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388748,12 +526935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181129] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [181300] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4874), 1, + STATE(4878), 1, + sym_comment, + ACTIONS(2084), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2082), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181324] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4879), 1, sym_comment, - ACTIONS(8135), 13, + ACTIONS(2072), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388765,45 +526976,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181151] = 15, - ACTIONS(247), 1, + [181348] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7671), 1, - anon_sym_RBRACK, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - STATE(4134), 1, + ACTIONS(7756), 1, + anon_sym_RBRACK, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4614), 1, + STATE(4532), 1, aux_sym_parameter_parens_repeat1, - STATE(4875), 1, + STATE(4880), 1, sym_comment, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [181197] = 3, - ACTIONS(247), 1, + [181394] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4876), 1, + STATE(4881), 1, sym_comment, - ACTIONS(8137), 13, + ACTIONS(2518), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2516), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388815,164 +527027,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181219] = 11, - ACTIONS(247), 1, + [181418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8101), 1, - aux_sym__immediate_decimal_token5, - STATE(4877), 1, + STATE(4882), 1, sym_comment, - STATE(6396), 1, - sym__immediate_decimal, - ACTIONS(8097), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3426), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1659), 3, + ACTIONS(2595), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2593), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [181257] = 15, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181442] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(2547), 1, + anon_sym_DASH2, + STATE(4883), 1, + sym_comment, + ACTIONS(2549), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7673), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + anon_sym_LBRACE, + [181466] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4069), 1, + anon_sym_DOLLAR, + ACTIONS(8193), 1, + sym__newline, + ACTIONS(8195), 1, + sym__space, + ACTIONS(8197), 1, + anon_sym_DASH_DASH, + ACTIONS(8199), 1, anon_sym_DASH2, - ACTIONS(8139), 1, - anon_sym_RBRACK, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4878), 1, + ACTIONS(8201), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(4884), 1, sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [181303] = 15, - ACTIONS(247), 1, + STATE(5636), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(804), 2, + sym__blosure, + sym_val_variable, + STATE(7610), 2, + sym_short_flag, + sym_long_flag, + [181508] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(2551), 1, + anon_sym_DASH2, + STATE(4885), 1, + sym_comment, + ACTIONS(2553), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7673), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7718), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4879), 1, - sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [181349] = 15, - ACTIONS(247), 1, + anon_sym_LBRACE, + [181532] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(7673), 1, + ACTIONS(7700), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + ACTIONS(7706), 1, anon_sym_DASH2, - ACTIONS(8141), 1, + ACTIONS(7764), 1, anon_sym_RPAREN, - STATE(4134), 1, + STATE(4115), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4231), 1, sym__param_name, - STATE(4614), 1, + STATE(4532), 1, aux_sym_parameter_parens_repeat1, - STATE(4880), 1, + STATE(4886), 1, sym_comment, - STATE(5010), 1, + STATE(5044), 1, sym_param_rest, - STATE(5134), 1, + STATE(5046), 1, sym_param_opt, - STATE(5174), 1, + STATE(5050), 1, sym_param_short_flag, - STATE(5550), 1, + STATE(5554), 1, sym_parameter, - [181395] = 12, - ACTIONS(247), 1, + [181578] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + STATE(4887), 1, + sym_comment, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(3593), 1, + ACTIONS(1762), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [181602] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6440), 1, + anon_sym_DOT, + ACTIONS(8203), 1, + anon_sym_DOLLAR, + STATE(4888), 1, + sym_comment, + STATE(6005), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6010), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181642] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8205), 1, + anon_sym_else, + STATE(4889), 1, + sym_comment, + ACTIONS(8111), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [181666] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4069), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(8193), 1, + sym__newline, + ACTIONS(8195), 1, + sym__space, + ACTIONS(8197), 1, + anon_sym_DASH_DASH, + ACTIONS(8199), 1, + anon_sym_DASH2, + ACTIONS(8201), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(4890), 1, + sym_comment, + STATE(5636), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(807), 2, + sym__blosure, + sym_val_variable, + STATE(7610), 2, + sym_short_flag, + sym_long_flag, + [181708] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1776), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8143), 1, + ACTIONS(6243), 1, anon_sym_DOT, - ACTIONS(8147), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8149), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(4881), 1, + ACTIONS(8203), 1, + anon_sym_DOLLAR, + STATE(4891), 1, sym_comment, - STATE(5823), 1, + STATE(6009), 1, sym__immediate_decimal, - ACTIONS(1557), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8145), 2, + ACTIONS(1786), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6245), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6018), 2, + STATE(6008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181435] = 4, - ACTIONS(247), 1, + [181748] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, + STATE(4892), 1, + sym_comment, + ACTIONS(5729), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5727), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181772] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2070), 1, anon_sym_DASH2, - STATE(4882), 1, + STATE(4893), 1, sym_comment, - ACTIONS(2450), 12, + ACTIONS(2072), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388985,12 +527312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181459] = 3, - ACTIONS(247), 1, + [181796] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4894), 1, sym_comment, - ACTIONS(8151), 13, + ACTIONS(2561), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2559), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389002,16 +527332,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181481] = 4, - ACTIONS(247), 1, + [181820] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4895), 1, + sym_comment, + ACTIONS(5208), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5210), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181844] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(7898), 1, anon_sym_DASH2, - STATE(4884), 1, + STATE(4896), 1, sym_comment, - ACTIONS(1719), 12, + ACTIONS(7894), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389021,15 +527369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [181505] = 3, - ACTIONS(247), 1, + [181868] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4885), 1, + STATE(4897), 1, sym_comment, - ACTIONS(8153), 13, + ACTIONS(8207), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389043,15 +527391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181527] = 4, + [181890] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4898), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(5707), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2343), 11, + ACTIONS(5705), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389063,14 +527411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181551] = 4, - ACTIONS(247), 1, + [181914] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4801), 1, - aux_sym_shebang_repeat1, - STATE(4887), 1, + STATE(4899), 1, sym_comment, - ACTIONS(8155), 12, + ACTIONS(2486), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2484), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389082,16 +527431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [181575] = 4, + [181938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4900), 1, sym_comment, - ACTIONS(1028), 2, + ACTIONS(2565), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1026), 11, + ACTIONS(2563), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389103,34 +527451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181599] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8159), 1, - anon_sym_DASH2, - STATE(4889), 1, - sym_comment, - ACTIONS(8157), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181623] = 4, - ACTIONS(247), 1, + [181962] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8163), 1, + ACTIONS(2559), 1, anon_sym_DASH2, - STATE(4890), 1, + STATE(4901), 1, sym_comment, - ACTIONS(8161), 12, + ACTIONS(2561), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389140,18 +527468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181647] = 4, + anon_sym_LBRACE, + [181986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4902), 1, sym_comment, - ACTIONS(2466), 2, + ACTIONS(1540), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2464), 11, + ACTIONS(1538), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389163,55 +527491,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181671] = 4, - ACTIONS(247), 1, + [182010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8023), 1, - anon_sym_DASH2, - STATE(4892), 1, + STATE(4903), 1, sym_comment, - ACTIONS(8019), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2621), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2619), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181695] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182034] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2444), 1, - anon_sym_DASH2, - STATE(4893), 1, + STATE(4904), 1, sym_comment, - ACTIONS(2446), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5178), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [181719] = 4, + anon_sym_RBRACE, + [182056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(4905), 1, sym_comment, - ACTIONS(8045), 2, + ACTIONS(2522), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8043), 11, + ACTIONS(2520), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389223,12 +527550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181743] = 3, - ACTIONS(247), 1, + [182080] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4895), 1, + STATE(4906), 1, sym_comment, - ACTIONS(8165), 13, + ACTIONS(5182), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389242,15 +527569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181765] = 4, + [182102] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8153), 1, + sym__newline, + STATE(4907), 1, + sym_comment, + ACTIONS(8155), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [182128] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4896), 1, + STATE(4908), 1, sym_comment, - ACTIONS(2466), 2, + ACTIONS(2526), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2464), 11, + ACTIONS(2524), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389262,44 +527610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181789] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACK, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8167), 1, - anon_sym_DOT, - ACTIONS(8169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - STATE(4897), 1, - sym_comment, - STATE(5685), 1, - sym__immediate_decimal, - STATE(5966), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181833] = 4, - ACTIONS(247), 1, + [182152] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(2563), 1, anon_sym_DASH2, - STATE(4898), 1, + STATE(4909), 1, sym_comment, - ACTIONS(1865), 12, + ACTIONS(2565), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389312,15 +527630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181857] = 4, - ACTIONS(3), 1, + [182176] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4899), 1, + STATE(4910), 1, sym_comment, - ACTIONS(2480), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2478), 11, + STATE(5005), 1, + aux_sym_shebang_repeat1, + ACTIONS(8209), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389332,15 +527649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181881] = 4, + anon_sym_RPAREN, + [182200] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4911), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(7386), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2347), 11, + ACTIONS(7384), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389352,16 +527670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181905] = 5, - ACTIONS(247), 1, + [182224] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8177), 1, - sym__newline, - STATE(4901), 1, + STATE(4912), 1, sym_comment, - ACTIONS(8087), 11, + ACTIONS(2514), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2512), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389372,16 +527690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [181931] = 4, + [182248] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4902), 1, + STATE(4913), 1, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2641), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2383), 11, + ACTIONS(2639), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389393,13 +527710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181955] = 3, - ACTIONS(247), 1, + [182272] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4903), 1, - sym_comment, - ACTIONS(8179), 13, + ACTIONS(7975), 1, sym__newline, + ACTIONS(8211), 1, + anon_sym_else, + STATE(4914), 1, + sym_comment, + STATE(4915), 1, + aux_sym_shebang_repeat1, + ACTIONS(7978), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389410,38 +527732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181977] = 4, - ACTIONS(247), 1, + [182300] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - STATE(4904), 1, - sym_comment, - ACTIONS(1929), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8049), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182001] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4905), 1, + ACTIONS(8213), 1, + anon_sym_else, + STATE(4915), 1, sym_comment, - ACTIONS(5170), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5172), 11, - sym__newline, + STATE(4918), 1, + aux_sym_shebang_repeat1, + ACTIONS(8052), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389452,16 +527754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182025] = 4, - ACTIONS(3), 1, + [182328] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4906), 1, - sym_comment, - ACTIONS(2128), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2122), 11, + ACTIONS(8056), 1, sym__newline, + ACTIONS(8215), 1, + anon_sym_else, + STATE(4916), 1, + sym_comment, + STATE(4919), 1, + aux_sym_shebang_repeat1, + ACTIONS(8059), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389472,16 +527776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182049] = 4, - ACTIONS(3), 1, + [182356] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4907), 1, - sym_comment, - ACTIONS(5174), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5176), 11, + ACTIONS(8063), 1, sym__newline, + ACTIONS(8217), 1, + anon_sym_else, + STATE(4917), 1, + sym_comment, + STATE(4920), 1, + aux_sym_shebang_repeat1, + ACTIONS(8066), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389492,33 +527798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182073] = 4, - ACTIONS(247), 1, + [182384] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8183), 1, - anon_sym_DASH2, - STATE(4908), 1, - sym_comment, - ACTIONS(8181), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5138), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182097] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4909), 1, + ACTIONS(8219), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4918), 1, sym_comment, - ACTIONS(8185), 13, - sym__newline, + ACTIONS(1233), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389528,39 +527819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182119] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1942), 1, - anon_sym_DASH2, - STATE(4910), 1, - sym_comment, - ACTIONS(1944), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182143] = 5, - ACTIONS(247), 1, + anon_sym_e_PLUSo_GT_PIPE, + [182412] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8117), 1, + ACTIONS(8025), 1, sym__newline, - STATE(4911), 1, + ACTIONS(8222), 1, + anon_sym_else, + STATE(4919), 1, sym_comment, - ACTIONS(8085), 11, + STATE(4922), 1, + aux_sym_shebang_repeat1, + ACTIONS(8028), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389571,14 +527842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [182169] = 3, - ACTIONS(247), 1, + [182440] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4912), 1, - sym_comment, - ACTIONS(8045), 13, + ACTIONS(7948), 1, sym__newline, + ACTIONS(8224), 1, + anon_sym_else, + STATE(4920), 1, + sym_comment, + STATE(4923), 1, + aux_sym_shebang_repeat1, + ACTIONS(7951), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389589,15 +527864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182191] = 3, - ACTIONS(247), 1, + [182468] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4913), 1, - sym_comment, - ACTIONS(8187), 13, + ACTIONS(7871), 1, sym__newline, + ACTIONS(8226), 1, + anon_sym_else, + STATE(4921), 1, + sym_comment, + STATE(4924), 1, + aux_sym_shebang_repeat1, + ACTIONS(7874), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389608,15 +527886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182213] = 3, - ACTIONS(247), 1, + [182496] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4914), 1, - sym_comment, - ACTIONS(8189), 13, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8228), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4922), 1, + sym_comment, + ACTIONS(1233), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389627,18 +527908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182235] = 4, - ACTIONS(3), 1, + [182524] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4915), 1, - sym_comment, - ACTIONS(2442), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2440), 11, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8231), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4923), 1, + sym_comment, + ACTIONS(1233), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389649,13 +527930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182259] = 3, - ACTIONS(247), 1, + [182552] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4916), 1, - sym_comment, - ACTIONS(8191), 13, + ACTIONS(8042), 1, sym__newline, + ACTIONS(8234), 1, + anon_sym_else, + STATE(4924), 1, + sym_comment, + STATE(4925), 1, + aux_sym_shebang_repeat1, + ACTIONS(8045), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389666,18 +527952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182281] = 4, - ACTIONS(3), 1, + [182580] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4917), 1, - sym_comment, - ACTIONS(2474), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2472), 11, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8236), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4925), 1, + sym_comment, + ACTIONS(1233), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389688,32 +527974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182305] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2390), 1, - anon_sym_DASH2, - STATE(4918), 1, - sym_comment, - ACTIONS(2392), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182329] = 3, - ACTIONS(247), 1, + [182608] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4926), 1, sym_comment, - ACTIONS(8193), 13, + ACTIONS(2510), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2508), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389725,36 +527994,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182351] = 4, - ACTIONS(247), 1, + [182632] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2410), 1, - anon_sym_DASH2, - STATE(4920), 1, + ACTIONS(3699), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6243), 1, + anon_sym_DOT, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + STATE(4927), 1, sym_comment, - ACTIONS(2412), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6016), 1, + sym__immediate_decimal, + ACTIONS(6245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6015), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1786), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182375] = 4, - ACTIONS(247), 1, + anon_sym_if, + anon_sym_EQ_GT, + [182670] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2452), 1, + ACTIONS(8241), 1, anon_sym_DASH2, - STATE(4921), 1, + STATE(4928), 1, sym_comment, - ACTIONS(2454), 12, + ACTIONS(8239), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389764,17 +528038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182399] = 4, - ACTIONS(247), 1, + [182694] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(2597), 1, anon_sym_DASH2, - STATE(4922), 1, + STATE(4929), 1, sym_comment, - ACTIONS(2400), 12, + ACTIONS(2599), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389787,14 +528061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [182423] = 4, - ACTIONS(247), 1, + [182718] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(8245), 1, anon_sym_DASH2, - STATE(4923), 1, + STATE(4930), 1, sym_comment, - ACTIONS(1909), 12, + ACTIONS(8243), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389804,37 +528078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182447] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4924), 1, - sym_comment, - ACTIONS(8195), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182469] = 4, + [182742] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4925), 1, + STATE(4931), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(2234), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2130), 11, + ACTIONS(2228), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389846,34 +528101,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182493] = 3, - ACTIONS(247), 1, + [182766] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4926), 1, + ACTIONS(1994), 1, + anon_sym_DASH2, + STATE(4932), 1, sym_comment, - ACTIONS(8197), 13, + ACTIONS(1996), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182515] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [182790] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4927), 1, + STATE(4933), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2470), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(2468), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389885,35 +528141,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182539] = 4, - ACTIONS(3), 1, + [182814] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4928), 1, + ACTIONS(2476), 1, + anon_sym_DASH2, + STATE(4934), 1, sym_comment, - ACTIONS(5097), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5099), 11, + ACTIONS(2478), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182563] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [182838] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4929), 1, + STATE(4935), 1, sym_comment, - ACTIONS(5119), 2, + ACTIONS(2470), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5121), 11, + ACTIONS(2468), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389925,114 +528181,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182587] = 3, - ACTIONS(247), 1, + [182862] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4930), 1, + ACTIONS(2593), 1, + anon_sym_DASH2, + STATE(4936), 1, sym_comment, - ACTIONS(6831), 13, + ACTIONS(2595), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182609] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [182886] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4931), 1, + ACTIONS(2480), 1, + anon_sym_DASH2, + STATE(4937), 1, sym_comment, - ACTIONS(2163), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2157), 11, + ACTIONS(2482), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182633] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7673), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, + anon_sym_LBRACE, + [182910] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6124), 1, anon_sym_DASH2, - ACTIONS(8199), 1, - anon_sym_RBRACK, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4932), 1, + STATE(4938), 1, sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [182679] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(3097), 1, + ACTIONS(6126), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8073), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(8169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8201), 1, - anon_sym_DOT, - STATE(4933), 1, - sym_comment, - STATE(5958), 1, - sym__immediate_decimal, - ACTIONS(1593), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5955), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [182721] = 4, + [182934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4934), 1, + STATE(4939), 1, sym_comment, - ACTIONS(1917), 2, + ACTIONS(7516), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1915), 11, + ACTIONS(7514), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390044,90 +528261,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182745] = 12, - ACTIONS(247), 1, + [182958] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(8203), 1, - anon_sym_DOLLAR, - STATE(4935), 1, + STATE(4940), 1, sym_comment, - STATE(6007), 1, - sym__immediate_decimal, - ACTIONS(1557), 2, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6012), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [182785] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182982] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8207), 1, - anon_sym_else, - STATE(4936), 1, + ACTIONS(1538), 1, + anon_sym_DASH2, + STATE(4941), 1, sym_comment, - ACTIONS(8205), 12, + ACTIONS(1540), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [182809] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6199), 1, - anon_sym_DOT, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8203), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - STATE(4937), 1, - sym_comment, - STATE(6011), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6010), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [182849] = 4, - ACTIONS(247), 1, + [183006] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(1788), 1, anon_sym_DASH2, - STATE(4938), 1, + STATE(4942), 1, sym_comment, - ACTIONS(2420), 12, + ACTIONS(1800), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -390140,14 +528321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [182873] = 4, - ACTIONS(247), 1, + [183030] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8209), 1, - anon_sym_else, - STATE(4939), 1, + STATE(4943), 1, sym_comment, - ACTIONS(8205), 12, + ACTIONS(8247), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390159,16 +528338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [182897] = 4, + [183052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4940), 1, + STATE(4944), 1, sym_comment, - ACTIONS(2416), 2, + ACTIONS(2506), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2414), 11, + ACTIONS(2504), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390180,35 +528360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182921] = 4, - ACTIONS(247), 1, + [183076] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8211), 1, - anon_sym_else, - STATE(4941), 1, + ACTIONS(8251), 1, + anon_sym_QMARK, + ACTIONS(8253), 1, + anon_sym_DASH2, + STATE(4945), 1, sym_comment, - ACTIONS(8205), 12, - ts_builtin_sym_end, + ACTIONS(8249), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182945] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183102] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4942), 1, + STATE(4946), 1, sym_comment, - ACTIONS(2424), 2, + ACTIONS(7863), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2422), 11, + ACTIONS(7861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390220,14 +528401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182969] = 4, - ACTIONS(247), 1, + [183126] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2605), 1, anon_sym_DASH2, - STATE(4943), 1, + STATE(4947), 1, sym_comment, - ACTIONS(2492), 12, + ACTIONS(2607), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -390240,15 +528421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [182993] = 4, + [183150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(4948), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(1800), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2426), 11, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390260,15 +528441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183017] = 4, + [183174] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4945), 1, + STATE(4949), 1, sym_comment, - ACTIONS(2438), 2, + ACTIONS(5711), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2436), 11, + ACTIONS(5709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390280,16 +528461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183041] = 4, - ACTIONS(3), 1, + [183198] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4946), 1, - sym_comment, - ACTIONS(2488), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2486), 11, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8157), 1, sym__newline, + STATE(4950), 1, + sym_comment, + ACTIONS(8159), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390300,15 +528481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183065] = 4, + anon_sym_RBRACE, + [183224] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4947), 1, + STATE(4951), 1, sym_comment, - ACTIONS(2392), 2, + ACTIONS(8002), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2390), 11, + ACTIONS(8000), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390320,37 +528502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183089] = 3, - ACTIONS(247), 1, + [183248] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(4948), 1, + ACTIONS(8255), 1, + anon_sym_catch, + STATE(4952), 1, sym_comment, - ACTIONS(8213), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183111] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(7913), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(8215), 1, - anon_sym_else, - STATE(4949), 1, - sym_comment, - STATE(4950), 1, - aux_sym_shebang_repeat1, - ACTIONS(7815), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390361,84 +528522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183139] = 6, - ACTIONS(247), 1, + [183272] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7911), 1, - sym__newline, - ACTIONS(8217), 1, - anon_sym_else, - STATE(4950), 1, - sym_comment, STATE(4953), 1, - aux_sym_shebang_repeat1, - ACTIONS(7914), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183167] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7918), 1, - sym__newline, - ACTIONS(8219), 1, - anon_sym_else, - STATE(4951), 1, - sym_comment, - STATE(4954), 1, - aux_sym_shebang_repeat1, - ACTIONS(7921), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183195] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7925), 1, - sym__newline, - ACTIONS(8221), 1, - anon_sym_else, - STATE(4952), 1, sym_comment, - STATE(4955), 1, - aux_sym_shebang_repeat1, - ACTIONS(7928), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183223] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(8006), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8004), 11, sym__newline, - ACTIONS(8223), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4953), 1, - sym_comment, - ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390449,40 +528542,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183251] = 6, - ACTIONS(247), 1, + [183296] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7970), 1, - sym__newline, - ACTIONS(8226), 1, - anon_sym_else, + ACTIONS(2500), 1, + anon_sym_DASH2, STATE(4954), 1, sym_comment, - STATE(4957), 1, - aux_sym_shebang_repeat1, - ACTIONS(7973), 10, - anon_sym_SEMI, + ACTIONS(2502), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183279] = 6, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7981), 1, - sym__newline, - ACTIONS(8228), 1, - anon_sym_else, STATE(4955), 1, sym_comment, - STATE(4958), 1, - aux_sym_shebang_repeat1, - ACTIONS(7984), 10, + ACTIONS(2183), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2177), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390493,18 +528582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183307] = 6, - ACTIONS(247), 1, + [183344] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym__newline, - ACTIONS(8230), 1, - anon_sym_else, STATE(4956), 1, sym_comment, - STATE(4959), 1, - aux_sym_shebang_repeat1, - ACTIONS(7991), 10, + ACTIONS(7863), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390515,40 +528599,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183335] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183366] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8232), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(4957), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(1820), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 10, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183363] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183390] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8235), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(4958), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(2545), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2543), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390559,18 +528641,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183391] = 6, - ACTIONS(247), 1, + [183414] = 15, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8028), 1, - sym__newline, - ACTIONS(8238), 1, - anon_sym_else, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, + anon_sym_DOLLAR, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DASH_DASH, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(7798), 1, + anon_sym_PIPE, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, STATE(4959), 1, sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [183460] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4960), 1, - aux_sym_shebang_repeat1, - ACTIONS(8031), 10, + sym_comment, + ACTIONS(2474), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2472), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390581,18 +528692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183419] = 6, - ACTIONS(247), 1, + [183484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8240), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4960), 1, + STATE(4961), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(8257), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390603,42 +528709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183447] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3593), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6199), 1, - anon_sym_DOT, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - STATE(4961), 1, - sym_comment, - STATE(6017), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6016), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [183485] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183506] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4962), 1, sym_comment, - ACTIONS(1855), 2, + ACTIONS(5148), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1853), 11, + ACTIONS(5150), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390650,15 +528731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183509] = 4, + [183530] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4963), 1, sym_comment, - ACTIONS(2373), 2, + ACTIONS(8010), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2371), 11, + ACTIONS(8008), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390670,34 +528751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183533] = 4, - ACTIONS(3), 1, + [183554] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(4964), 1, sym_comment, - ACTIONS(5132), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5134), 11, + ACTIONS(1866), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1868), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183557] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183578] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(2567), 1, anon_sym_DASH2, STATE(4965), 1, sym_comment, - ACTIONS(2036), 12, + ACTIONS(2569), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -390710,15 +528791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [183581] = 4, + [183602] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4966), 1, sym_comment, - ACTIONS(1929), 2, + ACTIONS(2603), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1927), 11, + ACTIONS(2601), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390730,15 +528811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183605] = 4, + [183626] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4967), 1, sym_comment, - ACTIONS(7373), 2, + ACTIONS(2557), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7371), 11, + ACTIONS(2555), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390750,14 +528831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183629] = 4, - ACTIONS(247), 1, + [183650] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(8261), 1, anon_sym_DASH2, STATE(4968), 1, sym_comment, - ACTIONS(2369), 12, + ACTIONS(8259), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -390767,18 +528848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [183653] = 4, + [183674] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4969), 1, sym_comment, - ACTIONS(5136), 2, + ACTIONS(8016), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5138), 11, + ACTIONS(8014), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390790,15 +528871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183677] = 4, + [183698] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4970), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(2569), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2406), 11, + ACTIONS(2567), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390810,55 +528891,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183701] = 4, - ACTIONS(247), 1, + [183722] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH2, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(4971), 1, sym_comment, - ACTIONS(2381), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8263), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [183725] = 4, - ACTIONS(247), 1, + [183746] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, - anon_sym_DASH2, STATE(4972), 1, sym_comment, - ACTIONS(2408), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2191), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2185), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183770] = 15, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7700), 1, anon_sym_DOLLAR, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [183749] = 4, + ACTIONS(7706), 1, + anon_sym_DASH2, + ACTIONS(8265), 1, + anon_sym_RPAREN, + STATE(4115), 1, + sym_param_long_flag, + STATE(4231), 1, + sym__param_name, + STATE(4532), 1, + aux_sym_parameter_parens_repeat1, + STATE(4973), 1, + sym_comment, + STATE(5044), 1, + sym_param_rest, + STATE(5046), 1, + sym_param_opt, + STATE(5050), 1, + sym_param_short_flag, + STATE(5554), 1, + sym_parameter, + [183816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4973), 1, + STATE(4974), 1, sym_comment, - ACTIONS(1944), 2, + ACTIONS(2203), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1942), 11, + ACTIONS(2197), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390870,75 +528982,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183773] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2486), 1, - anon_sym_DASH2, - STATE(4974), 1, - sym_comment, - ACTIONS(2488), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [183797] = 4, - ACTIONS(247), 1, + [183840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, - anon_sym_DASH2, STATE(4975), 1, sym_comment, - ACTIONS(2470), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5154), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [183821] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183864] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8245), 1, - anon_sym_DASH2, STATE(4976), 1, sym_comment, - ACTIONS(8243), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6865), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183845] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [183886] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(4977), 1, sym_comment, - ACTIONS(2496), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2494), 11, + ACTIONS(6893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390950,15 +529038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183869] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183908] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4978), 1, sym_comment, - ACTIONS(5681), 2, + ACTIONS(2637), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5679), 11, + ACTIONS(2635), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390970,15 +529060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183893] = 4, - ACTIONS(3), 1, + [183932] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(4979), 1, sym_comment, - ACTIONS(2500), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2498), 11, + ACTIONS(8267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390990,12 +529077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183917] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183954] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4980), 1, sym_comment, - ACTIONS(8247), 13, + ACTIONS(5128), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5130), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391007,17 +529099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183939] = 4, + [183978] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4981), 1, sym_comment, - ACTIONS(1851), 2, + ACTIONS(5134), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1847), 11, + ACTIONS(5136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391029,15 +529119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183963] = 4, - ACTIONS(3), 1, + [184002] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(4982), 1, sym_comment, - ACTIONS(2516), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2514), 11, + ACTIONS(8155), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391049,32 +529136,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183987] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184024] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2038), 1, - anon_sym_DASH2, STATE(4983), 1, sym_comment, - ACTIONS(2040), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2502), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2500), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184011] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [184048] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4984), 1, sym_comment, - ACTIONS(8249), 13, + ACTIONS(5679), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5677), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391086,17 +529178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184033] = 4, + [184072] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4985), 1, sym_comment, - ACTIONS(2353), 2, + ACTIONS(2599), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2351), 11, + ACTIONS(2597), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391108,55 +529198,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184057] = 4, - ACTIONS(247), 1, + [184096] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2482), 1, - anon_sym_DASH2, STATE(4986), 1, sym_comment, - ACTIONS(2484), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8159), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184081] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [184118] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2510), 1, - anon_sym_DASH2, STATE(4987), 1, sym_comment, - ACTIONS(2512), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184105] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4988), 1, - sym_comment, - ACTIONS(2357), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2355), 11, + ACTIONS(8269), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391168,15 +529234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184129] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184140] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4989), 1, + STATE(4988), 1, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2607), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2359), 11, + ACTIONS(2605), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391188,15 +529256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184153] = 4, + [184164] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4990), 1, + STATE(4989), 1, sym_comment, - ACTIONS(2492), 2, + ACTIONS(7642), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2490), 11, + ACTIONS(7640), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391208,35 +529276,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184177] = 4, - ACTIONS(247), 1, + [184188] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2414), 1, - anon_sym_DASH2, - STATE(4991), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(3699), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8271), 1, + anon_sym_DOT, + ACTIONS(8275), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8277), 1, + aux_sym__immediate_decimal_token5, + STATE(4990), 1, sym_comment, - ACTIONS(2416), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5952), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184201] = 4, + anon_sym_EQ_GT, + ACTIONS(8273), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(4991), 1, sym_comment, - ACTIONS(2365), 2, + ACTIONS(2625), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2363), 11, + ACTIONS(2623), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391248,83 +529324,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184225] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH2, - STATE(4993), 1, - sym_comment, - ACTIONS(2432), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184249] = 4, - ACTIONS(247), 1, + [184252] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8253), 1, + ACTIONS(8281), 1, anon_sym_DASH2, - STATE(4994), 1, + STATE(4992), 1, sym_comment, - ACTIONS(8251), 12, + ACTIONS(8279), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184273] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - sym_identifier, - ACTIONS(7673), 1, - anon_sym_DOLLAR, - ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7720), 1, - anon_sym_RBRACK, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(4995), 1, - sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [184319] = 3, - ACTIONS(247), 1, + [184276] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4996), 1, + STATE(4993), 1, sym_comment, - ACTIONS(8255), 13, + ACTIONS(2478), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2476), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391336,16 +529364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184341] = 4, - ACTIONS(247), 1, + [184300] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2488), 1, anon_sym_DASH2, - STATE(4997), 1, + STATE(4994), 1, sym_comment, - ACTIONS(1901), 12, + ACTIONS(2490), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391358,15 +529384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [184365] = 4, + [184324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4998), 1, + STATE(4995), 1, sym_comment, - ACTIONS(1889), 2, + ACTIONS(2482), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1887), 11, + ACTIONS(2480), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391378,15 +529404,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184389] = 4, + [184348] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(4996), 1, + sym_comment, + ACTIONS(2474), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [184372] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4999), 1, + STATE(4997), 1, sym_comment, - ACTIONS(2512), 2, + ACTIONS(7859), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2510), 11, + ACTIONS(7857), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391398,15 +529444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184413] = 4, - ACTIONS(3), 1, + [184396] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5000), 1, + STATE(4998), 1, sym_comment, - ACTIONS(2036), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2034), 11, + ACTIONS(8283), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391418,45 +529461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184437] = 15, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184418] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(8287), 1, + anon_sym_DASH2, + STATE(4999), 1, + sym_comment, + ACTIONS(8285), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7673), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7675), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_DASH2, - ACTIONS(7724), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4614), 1, - aux_sym_parameter_parens_repeat1, - STATE(5001), 1, - sym_comment, - STATE(5010), 1, - sym_param_rest, - STATE(5134), 1, - sym_param_opt, - STATE(5174), 1, - sym_param_short_flag, - STATE(5550), 1, - sym_parameter, - [184483] = 4, - ACTIONS(247), 1, + [184442] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1026), 1, + ACTIONS(2492), 1, anon_sym_DASH2, - STATE(5002), 1, + STATE(5000), 1, sym_comment, - ACTIONS(1028), 12, + ACTIONS(2494), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391469,16 +529503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [184507] = 5, - ACTIONS(247), 1, + [184466] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_QMARK, - ACTIONS(8261), 1, + ACTIONS(2496), 1, anon_sym_DASH2, - STATE(5003), 1, + STATE(5001), 1, sym_comment, - ACTIONS(8257), 11, + ACTIONS(2498), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391490,36 +529522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184533] = 4, + anon_sym_LBRACE, + [184490] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(5002), 1, sym_comment, - ACTIONS(5079), 2, + ACTIONS(5186), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5081), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184557] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8177), 1, + ACTIONS(5188), 11, sym__newline, - STATE(5005), 1, - sym_comment, - ACTIONS(8087), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391530,49 +529543,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [184583] = 3, - ACTIONS(247), 1, + [184514] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5006), 1, + ACTIONS(8291), 1, + anon_sym_DASH2, + STATE(5003), 1, sym_comment, - ACTIONS(8263), 12, + ACTIONS(8289), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184604] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184538] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5007), 1, + ACTIONS(6132), 1, + anon_sym_DASH2, + STATE(5004), 1, sym_comment, - ACTIONS(8265), 12, + ACTIONS(6134), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184625] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [184562] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(5005), 1, sym_comment, - ACTIONS(6969), 12, + ACTIONS(8293), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391585,32 +529603,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184646] = 3, - ACTIONS(247), 1, + [184586] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5009), 1, + ACTIONS(8297), 1, + anon_sym_DASH2, + STATE(5006), 1, sym_comment, - ACTIONS(8267), 12, + ACTIONS(8295), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184667] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184610] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8271), 1, + ACTIONS(1730), 1, anon_sym_DASH2, - STATE(5010), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3627), 1, + sym__immediate_decimal, + STATE(5007), 1, + sym_comment, + ACTIONS(1742), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184647] = 12, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + ACTIONS(8303), 1, + anon_sym_DASH_DASH, + ACTIONS(8305), 1, + anon_sym_DASH2, + ACTIONS(8307), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(5008), 1, + sym_comment, + STATE(5238), 1, + aux_sym_ctrl_do_repeat1, + STATE(794), 2, + sym__blosure, + sym_val_variable, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [184686] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8311), 1, + anon_sym_DASH2, + STATE(5009), 1, sym_comment, - ACTIONS(8269), 11, + ACTIONS(8309), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391622,32 +529695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184690] = 3, - ACTIONS(247), 1, + [184709] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5011), 1, - sym_comment, - ACTIONS(8153), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184711] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(8311), 1, anon_sym_DASH2, - STATE(5012), 1, + STATE(5010), 1, sym_comment, - ACTIONS(2163), 11, + ACTIONS(8309), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391659,32 +529714,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184734] = 4, - ACTIONS(247), 1, + [184732] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5013), 1, + ACTIONS(8313), 1, + anon_sym_DOT, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token2, + STATE(5011), 1, sym_comment, - ACTIONS(8273), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8275), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [184757] = 3, - ACTIONS(247), 1, + ACTIONS(1762), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184759] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5014), 1, + ACTIONS(8317), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8319), 1, + aux_sym__immediate_decimal_token2, + STATE(5012), 1, sym_comment, - ACTIONS(6823), 12, - ts_builtin_sym_end, + ACTIONS(1770), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1768), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184786] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5013), 1, + sym_comment, + ACTIONS(8321), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391696,12 +529773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184778] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [184807] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5015), 1, + STATE(5014), 1, sym_comment, - ACTIONS(8277), 12, + ACTIONS(8323), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391714,12 +529792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184799] = 3, - ACTIONS(247), 1, + [184828] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(5015), 1, sym_comment, - ACTIONS(8279), 12, + ACTIONS(8325), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391732,31 +529810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184820] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2359), 1, - anon_sym_DASH2, - STATE(5017), 1, - sym_comment, - ACTIONS(2361), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184843] = 3, - ACTIONS(247), 1, + [184849] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5018), 1, + STATE(5016), 1, sym_comment, - ACTIONS(8281), 12, + ACTIONS(8327), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391769,14 +529828,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184864] = 3, - ACTIONS(247), 1, + [184870] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5019), 1, - sym_comment, - ACTIONS(8283), 12, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, + STATE(306), 1, + aux_sym__pipe_separator, + STATE(5017), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(1400), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391786,41 +529849,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184885] = 13, + [184897] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8331), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8285), 1, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token3, + STATE(5018), 1, + sym_comment, + STATE(7139), 1, + sym__immediate_decimal, + ACTIONS(1846), 2, anon_sym_RBRACK, - ACTIONS(8287), 1, - anon_sym_DOLLAR, - ACTIONS(8289), 1, - anon_sym_DOLLAR2, - ACTIONS(8291), 1, + anon_sym_RBRACE, + STATE(7138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184936] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1852), 1, + sym__entry_separator, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8293), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token5, - STATE(2857), 1, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token3, + STATE(5019), 1, + sym_comment, + STATE(7170), 1, sym__immediate_decimal, + ACTIONS(1850), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7167), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184975] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1856), 1, + sym__entry_separator, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token3, STATE(5020), 1, sym_comment, - STATE(2894), 2, + STATE(7182), 1, + sym__immediate_decimal, + ACTIONS(1854), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184926] = 3, - ACTIONS(247), 1, + [185014] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5021), 1, sym_comment, - ACTIONS(8295), 12, + ACTIONS(8335), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391833,31 +529948,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184947] = 4, - ACTIONS(247), 1, + [185035] = 12, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(1726), 1, + anon_sym_LBRACE, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8337), 1, + anon_sym_DOLLAR, + ACTIONS(8339), 1, + anon_sym_DOT, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, STATE(5022), 1, sym_comment, - ACTIONS(7525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7527), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [184970] = 3, - ACTIONS(247), 1, + STATE(6158), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6062), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185074] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5023), 1, sym_comment, - ACTIONS(8297), 12, + ACTIONS(8267), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391869,60 +529993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184991] = 4, - ACTIONS(247), 1, + [185095] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5024), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 9, + ACTIONS(8247), 12, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185014] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_LPAREN2, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8287), 1, - anon_sym_DOLLAR, - ACTIONS(8289), 1, - anon_sym_DOLLAR2, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8293), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8299), 1, - anon_sym_RBRACK, - STATE(2857), 1, - sym__immediate_decimal, - STATE(5025), 1, - sym_comment, - STATE(2894), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185055] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5026), 1, - sym_comment, - ACTIONS(8301), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391934,13 +530011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [185116] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_DASH2, + STATE(5025), 1, + sym_comment, + ACTIONS(2203), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185076] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185139] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(5026), 1, sym_comment, - ACTIONS(8303), 12, + ACTIONS(8257), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391952,234 +530048,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [185160] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2484), 1, + anon_sym_DASH2, + STATE(5027), 1, + sym_comment, + ACTIONS(2486), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185097] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185183] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_DASH2, STATE(5028), 1, sym_comment, - ACTIONS(8305), 12, + ACTIONS(2234), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185118] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185206] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2177), 1, + anon_sym_DASH2, STATE(5029), 1, sym_comment, - ACTIONS(8307), 12, + ACTIONS(2183), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185139] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185229] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2185), 1, + anon_sym_DASH2, STATE(5030), 1, sym_comment, - ACTIONS(1681), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 9, - ts_builtin_sym_end, + ACTIONS(2191), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185162] = 3, - ACTIONS(247), 1, + [185252] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2516), 1, + anon_sym_DASH2, STATE(5031), 1, sym_comment, - ACTIONS(8309), 12, + ACTIONS(2518), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185183] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185275] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2520), 1, + anon_sym_DASH2, STATE(5032), 1, sym_comment, - ACTIONS(8187), 12, - ts_builtin_sym_end, + ACTIONS(2522), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185204] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185298] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2524), 1, + anon_sym_DASH2, STATE(5033), 1, sym_comment, - STATE(7145), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(2526), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185243] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185321] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2543), 1, + anon_sym_DASH2, STATE(5034), 1, sym_comment, - ACTIONS(1761), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1763), 9, - ts_builtin_sym_end, + ACTIONS(2545), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185266] = 4, - ACTIONS(247), 1, + [185344] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2555), 1, + anon_sym_DASH2, STATE(5035), 1, sym_comment, - ACTIONS(7593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7595), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [185289] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8317), 1, + ACTIONS(2557), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8319), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8321), 1, + [185367] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2639), 1, anon_sym_DASH2, - ACTIONS(8323), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1772), 1, - sym_val_closure, STATE(5036), 1, sym_comment, - STATE(5217), 1, - aux_sym_ctrl_do_repeat1, - STATE(800), 2, - sym__blosure, - sym_val_variable, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [185328] = 3, - ACTIONS(247), 1, + ACTIONS(2641), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185390] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2575), 1, + anon_sym_DASH2, STATE(5037), 1, sym_comment, - ACTIONS(6909), 12, + ACTIONS(2577), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185349] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185413] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(2579), 1, + anon_sym_DASH2, STATE(5038), 1, sym_comment, - ACTIONS(8325), 12, + ACTIONS(2581), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185370] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185436] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(2583), 1, anon_sym_DASH2, STATE(5039), 1, sym_comment, - ACTIONS(2385), 11, + ACTIONS(2585), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392191,14 +530295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185393] = 4, - ACTIONS(247), 1, + [185459] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7728), 1, + ACTIONS(2587), 1, anon_sym_DASH2, STATE(5040), 1, sym_comment, - ACTIONS(7726), 11, + ACTIONS(2589), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392210,151 +530314,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185416] = 13, - ACTIONS(3), 1, + [185482] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACK, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8329), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8331), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8349), 1, + anon_sym_DASH2, STATE(5041), 1, sym_comment, - STATE(6797), 1, - sym__immediate_decimal, - STATE(7221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185457] = 3, - ACTIONS(247), 1, + ACTIONS(8347), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185505] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8353), 1, + anon_sym_DASH2, STATE(5042), 1, sym_comment, - ACTIONS(8335), 12, + ACTIONS(8351), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185478] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185528] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5789), 1, - sym__newline, - ACTIONS(8337), 1, + ACTIONS(8357), 1, anon_sym_DASH2, STATE(5043), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(8355), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5792), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185505] = 3, - ACTIONS(247), 1, + [185551] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8361), 1, + anon_sym_DASH2, STATE(5044), 1, sym_comment, - ACTIONS(8339), 12, + ACTIONS(8359), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185526] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185574] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8365), 1, + anon_sym_DASH2, STATE(5045), 1, sym_comment, - ACTIONS(8341), 12, + ACTIONS(8363), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185547] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185597] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8369), 1, + anon_sym_DASH2, STATE(5046), 1, sym_comment, - ACTIONS(8343), 12, + ACTIONS(8367), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185568] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185620] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8373), 1, + anon_sym_DASH2, STATE(5047), 1, sym_comment, - ACTIONS(8345), 12, + ACTIONS(8371), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185589] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185643] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5048), 1, sym_comment, - ACTIONS(8347), 12, + ACTIONS(5178), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392366,61 +530465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185610] = 6, - ACTIONS(247), 1, + [185664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7812), 1, - sym__newline, - ACTIONS(8349), 1, - anon_sym_else, STATE(5049), 1, sym_comment, - STATE(5058), 1, - aux_sym_shebang_repeat1, - ACTIONS(7815), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185637] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8317), 1, - anon_sym_DOLLAR, - ACTIONS(8319), 1, - anon_sym_DASH_DASH, - ACTIONS(8321), 1, - anon_sym_DASH2, - ACTIONS(8323), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1772), 1, - sym_val_closure, - STATE(5050), 1, - sym_comment, - STATE(5217), 1, - aux_sym_ctrl_do_repeat1, - STATE(800), 2, - sym__blosure, - sym_val_variable, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [185676] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5051), 1, - sym_comment, - ACTIONS(8351), 12, + ACTIONS(5182), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392432,42 +530483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185697] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - sym__entry_separator, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5052), 1, - sym_comment, - STATE(7156), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7147), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185736] = 4, - ACTIONS(247), 1, + [185685] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7689), 1, + ACTIONS(8377), 1, anon_sym_DASH2, - STATE(5053), 1, + STATE(5050), 1, sym_comment, - ACTIONS(7687), 11, + ACTIONS(8375), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392479,90 +530502,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185759] = 3, - ACTIONS(247), 1, + [185708] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5051), 1, sym_comment, - ACTIONS(8133), 12, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185780] = 3, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185731] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(5052), 1, sym_comment, - ACTIONS(8189), 12, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185801] = 3, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185754] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5056), 1, + STATE(5053), 1, sym_comment, - ACTIONS(8085), 12, + ACTIONS(1820), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185822] = 3, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185777] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5057), 1, + STATE(5054), 1, sym_comment, - ACTIONS(8353), 12, + ACTIONS(1866), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1868), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185843] = 6, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185800] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7911), 1, - sym__newline, - ACTIONS(8355), 1, - anon_sym_else, - STATE(5058), 1, + STATE(5055), 1, sym_comment, - STATE(5070), 1, - aux_sym_shebang_repeat1, - ACTIONS(7914), 9, + ACTIONS(8207), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392572,18 +530596,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185870] = 6, - ACTIONS(247), 1, + [185821] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7918), 1, - sym__newline, - ACTIONS(8357), 1, - anon_sym_else, - STATE(5059), 1, + STATE(5056), 1, + sym_comment, + ACTIONS(8379), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8381), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [185844] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5057), 1, + sym_comment, + ACTIONS(7045), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7051), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7047), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7049), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [185871] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5058), 1, sym_comment, - STATE(5071), 1, - aux_sym_shebang_repeat1, - ACTIONS(7921), 9, + ACTIONS(8269), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392593,18 +530654,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185897] = 6, - ACTIONS(247), 1, + [185892] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5059), 1, + sym_comment, + ACTIONS(7560), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7562), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [185915] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7925), 1, - sym__newline, - ACTIONS(8359), 1, - anon_sym_else, STATE(5060), 1, sym_comment, - STATE(5072), 1, - aux_sym_shebang_repeat1, - ACTIONS(7928), 9, + ACTIONS(8151), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392614,54 +530691,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185924] = 6, + [185936] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8361), 1, + ACTIONS(2657), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + anon_sym_LPAREN2, + ACTIONS(5322), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5324), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5326), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8383), 1, + anon_sym_RBRACK, + ACTIONS(8385), 1, + anon_sym_DOLLAR2, + ACTIONS(8387), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8363), 1, - aux_sym__immediate_decimal_token2, + STATE(2695), 1, + sym__immediate_decimal, STATE(5061), 1, sym_comment, - ACTIONS(1585), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [185951] = 6, - ACTIONS(247), 1, + STATE(2865), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185977] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(5062), 1, sym_comment, - ACTIONS(7017), 2, + ACTIONS(8389), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7023), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7019), 4, + ACTIONS(8391), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(7021), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [185978] = 3, - ACTIONS(247), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [186000] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5063), 1, sym_comment, - ACTIONS(8365), 12, + ACTIONS(7863), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392673,58 +530756,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185999] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_DASH2, - STATE(5064), 1, - sym_comment, - ACTIONS(2365), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186022] = 11, - ACTIONS(247), 1, + [186021] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, + ACTIONS(5465), 1, anon_sym_LPAREN2, - ACTIONS(8095), 1, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8385), 1, + anon_sym_DOLLAR2, + ACTIONS(8393), 1, + anon_sym_RBRACK, + ACTIONS(8395), 1, anon_sym_DOLLAR, - ACTIONS(8369), 1, + ACTIONS(8397), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8371), 1, + ACTIONS(8399), 1, aux_sym__immediate_decimal_token5, - STATE(5065), 1, - sym_comment, - STATE(6911), 1, + STATE(2813), 1, sym__immediate_decimal, - ACTIONS(1659), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8367), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3426), 2, + STATE(5064), 1, + sym_comment, + STATE(2910), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186059] = 3, - ACTIONS(247), 1, + [186062] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5066), 1, + STATE(5065), 1, sym_comment, - ACTIONS(8373), 12, + ACTIONS(8167), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392736,13 +530802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186080] = 3, - ACTIONS(247), 1, + [186083] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5067), 1, + STATE(5066), 1, sym_comment, - ACTIONS(8185), 12, + ACTIONS(8169), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392755,14 +530820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186101] = 4, - ACTIONS(247), 1, + [186104] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7789), 1, + anon_sym_DASH2, + STATE(5067), 1, + sym_comment, + ACTIONS(7787), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186127] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(8403), 1, anon_sym_DASH2, STATE(5068), 1, sym_comment, - ACTIONS(1851), 11, + ACTIONS(8401), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392774,39 +530858,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186124] = 6, - ACTIONS(247), 1, + [186150] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_DOT, - ACTIONS(8377), 1, - aux_sym__immediate_decimal_token2, STATE(5069), 1, sym_comment, - ACTIONS(1575), 4, + ACTIONS(7654), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7656), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [186173] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_DASH2, + STATE(5070), 1, + sym_comment, + ACTIONS(8405), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186151] = 6, - ACTIONS(247), 1, + [186196] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5071), 1, + sym_comment, + ACTIONS(7033), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7039), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7035), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7037), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [186223] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(8411), 1, + anon_sym_DASH2, + STATE(5072), 1, + sym_comment, + ACTIONS(8409), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8379), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(5070), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186246] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5073), 1, sym_comment, - ACTIONS(1296), 9, + ACTIONS(8413), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392816,18 +530953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186178] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186267] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7970), 1, - sym__newline, - ACTIONS(8382), 1, - anon_sym_else, - STATE(5071), 1, + STATE(5074), 1, sym_comment, - STATE(5077), 1, - aux_sym_shebang_repeat1, - ACTIONS(7973), 9, + ACTIONS(8415), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392837,18 +530971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186205] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186288] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7981), 1, - sym__newline, - ACTIONS(8384), 1, - anon_sym_else, - STATE(5072), 1, + STATE(5075), 1, sym_comment, - STATE(5078), 1, - aux_sym_shebang_repeat1, - ACTIONS(7984), 9, + ACTIONS(8417), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392858,18 +530989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186232] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186309] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym__newline, - ACTIONS(8386), 1, - anon_sym_else, - STATE(5073), 1, + STATE(5076), 1, sym_comment, - STATE(5079), 1, - aux_sym_shebang_repeat1, - ACTIONS(7991), 9, + ACTIONS(8419), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392879,84 +531007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186259] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2456), 1, - anon_sym_DASH2, - STATE(5074), 1, - sym_comment, - ACTIONS(2458), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186282] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8390), 1, - anon_sym_DASH2, - STATE(5075), 1, - sym_comment, - ACTIONS(8388), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186305] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_RBRACK, - ACTIONS(1659), 1, - sym__entry_separator, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8329), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8331), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, - STATE(5076), 1, - sym_comment, - STATE(6545), 1, - sym__immediate_decimal, - STATE(7161), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186346] = 6, - ACTIONS(247), 1, + [186330] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8392), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(5077), 1, sym_comment, - ACTIONS(1296), 9, + ACTIONS(8421), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392966,18 +531025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186373] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186351] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8395), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(5078), 1, sym_comment, - ACTIONS(1296), 9, + ACTIONS(8423), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392987,18 +531043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186400] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186372] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8028), 1, - sym__newline, - ACTIONS(8398), 1, - anon_sym_else, STATE(5079), 1, sym_comment, - STATE(5080), 1, - aux_sym_shebang_repeat1, - ACTIONS(8031), 9, + ACTIONS(8425), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393008,18 +531061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186427] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186393] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5125), 1, - sym__newline, - ACTIONS(8400), 1, - anon_sym_else, - STATE(1761), 1, - aux_sym_shebang_repeat1, STATE(5080), 1, sym_comment, - ACTIONS(1296), 9, + ACTIONS(8427), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393029,44 +531079,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186454] = 11, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186414] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3615), 1, - sym__immediate_decimal, + ACTIONS(8429), 1, + anon_sym_DOT, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token2, STATE(5081), 1, sym_comment, - ACTIONS(1557), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, + ACTIONS(1760), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [186441] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1730), 1, + anon_sym_RBRACK, + ACTIONS(1742), 1, + sym__entry_separator, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8433), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8435), 1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + ACTIONS(8437), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8439), 1, + aux_sym__immediate_decimal_token5, + STATE(5082), 1, + sym_comment, + STATE(6751), 1, + sym__immediate_decimal, + STATE(7184), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186491] = 6, - ACTIONS(247), 1, + [186482] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - STATE(771), 1, - aux_sym__pipe_separator, - STATE(5082), 1, + ACTIONS(8441), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8443), 1, + aux_sym__immediate_decimal_token2, + STATE(5083), 1, sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(2528), 9, + ACTIONS(1768), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1770), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [186509] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5084), 1, + sym_comment, + ACTIONS(6865), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393076,44 +531168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186518] = 11, - ACTIONS(247), 1, + [186530] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3625), 1, - sym__immediate_decimal, - STATE(5083), 1, + STATE(5085), 1, sym_comment, - ACTIONS(1659), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3426), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186555] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(8109), 12, + ts_builtin_sym_end, sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, - STATE(5084), 1, - sym_comment, - STATE(5246), 1, - aux_sym_shebang_repeat1, - ACTIONS(2528), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393123,143 +531186,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186582] = 11, - ACTIONS(247), 1, + [186551] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1593), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(3181), 1, anon_sym_DOLLAR, - STATE(3450), 1, - sym__immediate_decimal, - STATE(5085), 1, - sym_comment, - ACTIONS(1603), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8121), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token3, - STATE(3449), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186619] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3438), 1, - sym__immediate_decimal, + ACTIONS(8445), 1, + anon_sym_DOT, STATE(5086), 1, sym_comment, - ACTIONS(1671), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3457), 2, + STATE(6125), 1, + sym__immediate_decimal, + STATE(5780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186656] = 11, - ACTIONS(247), 1, + [186592] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1673), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, + STATE(5087), 1, + sym_comment, + ACTIONS(8447), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [186613] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5465), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8383), 1, + anon_sym_RBRACK, + ACTIONS(8385), 1, + anon_sym_DOLLAR2, + ACTIONS(8395), 1, + anon_sym_DOLLAR, + ACTIONS(8397), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8399), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3444), 1, + STATE(2813), 1, sym__immediate_decimal, - STATE(5087), 1, + STATE(5088), 1, sym_comment, - ACTIONS(1675), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(2910), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186693] = 11, - ACTIONS(247), 1, + [186654] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1677), 1, - anon_sym_DASH2, - ACTIONS(6197), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8451), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8453), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3453), 1, - sym__immediate_decimal, - STATE(5088), 1, + STATE(5089), 1, sym_comment, - ACTIONS(1679), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6285), 2, + STATE(6936), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8449), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3448), 2, + STATE(3440), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186730] = 12, + [186691] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(8073), 1, + ACTIONS(5465), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8385), 1, + anon_sym_DOLLAR2, + ACTIONS(8395), 1, + anon_sym_DOLLAR, + ACTIONS(8397), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8399), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5089), 1, - sym_comment, - STATE(7075), 1, - sym__immediate_decimal, - ACTIONS(1593), 2, + ACTIONS(8455), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7060), 2, + STATE(2813), 1, + sym__immediate_decimal, + STATE(5090), 1, + sym_comment, + STATE(2910), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186769] = 3, - ACTIONS(247), 1, + [186732] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5090), 1, + STATE(5091), 1, sym_comment, - ACTIONS(8137), 12, + ACTIONS(8185), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393272,13 +531332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186790] = 3, - ACTIONS(247), 1, + [186753] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(5092), 1, sym_comment, - ACTIONS(8179), 12, - ts_builtin_sym_end, + ACTIONS(8457), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393290,52 +531349,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186811] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8405), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8407), 1, - aux_sym__immediate_decimal_token2, - STATE(5092), 1, - sym_comment, - ACTIONS(1587), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186838] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186774] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DASH2, STATE(5093), 1, sym_comment, - ACTIONS(8409), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8459), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186861] = 3, - ACTIONS(247), 1, + [186795] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5094), 1, sym_comment, - ACTIONS(8193), 12, + ACTIONS(8187), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393348,12 +531386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186882] = 3, - ACTIONS(247), 1, + [186816] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5095), 1, sym_comment, - ACTIONS(8413), 12, + ACTIONS(6893), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393365,15 +531404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186903] = 4, - ACTIONS(247), 1, + [186837] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(7688), 1, anon_sym_DASH2, STATE(5096), 1, sym_comment, - ACTIONS(2424), 11, + ACTIONS(7686), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -393385,12 +531423,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186926] = 3, - ACTIONS(247), 1, + [186860] = 11, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8451), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token5, STATE(5097), 1, sym_comment, - ACTIONS(8415), 12, + STATE(7309), 1, + sym__immediate_decimal, + ACTIONS(1742), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8449), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186897] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5098), 1, + sym_comment, + ACTIONS(8461), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393403,13 +531467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186947] = 3, - ACTIONS(247), 1, + [186918] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5098), 1, + STATE(5099), 1, sym_comment, - ACTIONS(8151), 12, - ts_builtin_sym_end, + ACTIONS(8463), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393421,40 +531484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186968] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8417), 1, - anon_sym_DOLLAR, - ACTIONS(8419), 1, - anon_sym_DOT, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(5099), 1, - sym_comment, - STATE(6176), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187007] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186939] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5100), 1, sym_comment, - ACTIONS(8255), 12, - ts_builtin_sym_end, + ACTIONS(8465), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393466,41 +531502,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187028] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + [186960] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACE, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8427), 1, - anon_sym_DOT, STATE(5101), 1, sym_comment, - STATE(6060), 1, - sym__immediate_decimal, - STATE(5966), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187069] = 3, - ACTIONS(247), 1, + ACTIONS(8467), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [186981] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5102), 1, sym_comment, - ACTIONS(8135), 12, - ts_builtin_sym_end, + ACTIONS(8469), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393512,13 +531538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187090] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187002] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5103), 1, sym_comment, - ACTIONS(8191), 12, - ts_builtin_sym_end, + ACTIONS(8471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393530,40 +531556,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187111] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + [187023] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACE, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(1559), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8431), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8433), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, - aux_sym__immediate_decimal_token5, STATE(5104), 1, sym_comment, - STATE(6482), 1, - sym__immediate_decimal, - STATE(7221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187152] = 3, - ACTIONS(247), 1, + ACTIONS(8473), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [187044] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5105), 1, sym_comment, - ACTIONS(8437), 12, + ACTIONS(8475), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393576,12 +531593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187173] = 3, - ACTIONS(247), 1, + [187065] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5106), 1, sym_comment, - ACTIONS(8439), 12, + ACTIONS(6935), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393594,12 +531611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187194] = 3, - ACTIONS(247), 1, + [187086] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5107), 1, sym_comment, - ACTIONS(8441), 12, + ACTIONS(8477), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393612,31 +531629,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187215] = 4, - ACTIONS(247), 1, + [187107] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, STATE(5108), 1, sym_comment, - ACTIONS(2128), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8479), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187238] = 3, - ACTIONS(247), 1, + [187128] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5109), 1, sym_comment, - ACTIONS(8443), 12, + ACTIONS(8481), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393649,31 +531665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187259] = 4, - ACTIONS(247), 1, + [187149] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2426), 1, - anon_sym_DASH2, STATE(5110), 1, sym_comment, - ACTIONS(2428), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8483), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187282] = 3, - ACTIONS(247), 1, + [187170] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5111), 1, sym_comment, - ACTIONS(8445), 12, + ACTIONS(8485), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393686,131 +531701,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187303] = 10, - ACTIONS(247), 1, + [187191] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3450), 1, - sym__immediate_decimal, + ACTIONS(1788), 1, + anon_sym_DASH2, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(8487), 1, + sym_filesize_unit, + ACTIONS(8489), 1, + sym_duration_unit, + ACTIONS(8491), 1, + aux_sym_unquoted_token2, STATE(5112), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3449), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187338] = 10, - ACTIONS(247), 1, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1800), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [187224] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3438), 1, - sym__immediate_decimal, STATE(5113), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3457), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 3, + ACTIONS(8189), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187373] = 10, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187245] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3444), 1, - sym__immediate_decimal, STATE(5114), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 3, + ACTIONS(8191), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187408] = 10, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187266] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(1728), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8495), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8497), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8499), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3453), 1, - sym__immediate_decimal, STATE(5115), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3448), 2, + STATE(6758), 1, + sym__immediate_decimal, + STATE(7148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187443] = 4, - ACTIONS(247), 1, + [187307] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2436), 1, - anon_sym_DASH2, STATE(5116), 1, sym_comment, - ACTIONS(2438), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8155), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187466] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187328] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5117), 1, sym_comment, - ACTIONS(8447), 12, + ACTIONS(8159), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393822,13 +531825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187487] = 3, - ACTIONS(247), 1, + [187349] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5118), 1, sym_comment, - ACTIONS(8449), 12, + ACTIONS(8501), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393841,13 +531843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187508] = 3, - ACTIONS(247), 1, + [187370] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5119), 1, sym_comment, - ACTIONS(8045), 12, - ts_builtin_sym_end, + ACTIONS(8503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393859,12 +531860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187529] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187391] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5120), 1, sym_comment, - ACTIONS(8451), 12, + ACTIONS(8505), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393877,12 +531879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187550] = 3, - ACTIONS(247), 1, + [187412] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5121), 1, sym_comment, - ACTIONS(8453), 12, + ACTIONS(8507), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393895,32 +531897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187571] = 4, - ACTIONS(247), 1, + [187433] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8457), 1, - anon_sym_DASH2, STATE(5122), 1, sym_comment, - ACTIONS(8455), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8509), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187594] = 3, - ACTIONS(247), 1, + [187454] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5123), 1, sym_comment, - ACTIONS(8195), 12, - ts_builtin_sym_end, + ACTIONS(8511), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393932,42 +531932,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187615] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + [187475] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_LPAREN2, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8287), 1, - anon_sym_DOLLAR, - ACTIONS(8289), 1, - anon_sym_DOLLAR2, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8293), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8459), 1, - anon_sym_RBRACK, - STATE(2857), 1, - sym__immediate_decimal, STATE(5124), 1, sym_comment, - STATE(2894), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187656] = 4, - ACTIONS(247), 1, + ACTIONS(8513), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [187496] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_else, STATE(5125), 1, sym_comment, - ACTIONS(8205), 11, + ACTIONS(8515), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393979,13 +531968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187679] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187517] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5126), 1, sym_comment, - ACTIONS(8197), 12, - ts_builtin_sym_end, + ACTIONS(8517), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393997,33 +531986,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187700] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [187538] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_DOT, - ACTIONS(8465), 1, - aux_sym__immediate_decimal_token2, STATE(5127), 1, sym_comment, - ACTIONS(1573), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [187727] = 3, - ACTIONS(247), 1, + ACTIONS(8519), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [187559] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5128), 1, sym_comment, - ACTIONS(8467), 12, + ACTIONS(8521), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394036,13 +532023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187748] = 3, - ACTIONS(247), 1, + [187580] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5129), 1, sym_comment, - ACTIONS(8213), 12, - ts_builtin_sym_end, + ACTIONS(8523), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394054,40 +532040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187769] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + [187601] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_RBRACE, - ACTIONS(1659), 1, - sym__entry_separator, - ACTIONS(1661), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8431), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8433), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, - aux_sym__immediate_decimal_token5, STATE(5130), 1, sym_comment, - STATE(6578), 1, - sym__immediate_decimal, - STATE(7161), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187810] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5131), 1, - sym_comment, - ACTIONS(8469), 12, + ACTIONS(8525), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394100,89 +532059,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187831] = 4, - ACTIONS(247), 1, + [187622] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH2, - STATE(5132), 1, + STATE(5131), 1, sym_comment, - ACTIONS(2496), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8527), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187854] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5133), 1, - sym_comment, - ACTIONS(8471), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8473), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [187877] = 4, - ACTIONS(247), 1, + [187643] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_DASH2, - STATE(5134), 1, + STATE(5132), 1, sym_comment, - ACTIONS(8475), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8529), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187900] = 4, - ACTIONS(247), 1, + [187664] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_DASH2, - STATE(5135), 1, - sym_comment, - ACTIONS(8479), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3965), 1, sym__newline, + STATE(305), 1, + aux_sym__pipe_separator, + STATE(5133), 1, + sym_comment, + STATE(5234), 1, + aux_sym_shebang_repeat1, + ACTIONS(1400), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187923] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187691] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5136), 1, + STATE(5134), 1, sym_comment, - ACTIONS(8087), 12, - ts_builtin_sym_end, + ACTIONS(8531), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394194,12 +532133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187944] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187712] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5137), 1, + STATE(5135), 1, sym_comment, - ACTIONS(8483), 12, + ACTIONS(8533), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394212,14 +532152,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187965] = 4, - ACTIONS(247), 1, + [187733] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8487), 1, + STATE(5136), 1, + sym_comment, + ACTIONS(8283), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [187754] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1742), 1, + sym__entry_separator, + ACTIONS(1744), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8493), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8495), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8497), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8499), 1, + aux_sym__immediate_decimal_token5, + STATE(5137), 1, + sym_comment, + STATE(6248), 1, + sym__immediate_decimal, + STATE(7184), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187795] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2006), 1, anon_sym_DASH2, STATE(5138), 1, sym_comment, - ACTIONS(8485), 11, + ACTIONS(2008), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394231,75 +532217,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187988] = 4, - ACTIONS(247), 1, + [187818] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8491), 1, + ACTIONS(5826), 1, + sym__newline, + ACTIONS(8535), 1, anon_sym_DASH2, STATE(5139), 1, sym_comment, - ACTIONS(8489), 11, + ACTIONS(1244), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5829), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188011] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5140), 1, - sym_comment, - ACTIONS(8493), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188032] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(8495), 1, - sym_filesize_unit, - ACTIONS(8497), 1, - sym_duration_unit, - ACTIONS(8499), 1, - aux_sym_unquoted_token2, - STATE(5141), 1, - sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [188065] = 4, - ACTIONS(247), 1, + [187845] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8457), 1, + ACTIONS(2635), 1, anon_sym_DASH2, - STATE(5142), 1, + STATE(5140), 1, sym_comment, - ACTIONS(8455), 11, + ACTIONS(2637), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394311,60 +532257,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188088] = 11, - ACTIONS(247), 1, + [187868] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, + ACTIONS(1786), 1, + sym__entry_separator, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - ACTIONS(8369), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8371), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token5, - STATE(5143), 1, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token3, + STATE(5141), 1, sym_comment, - STATE(7436), 1, + STATE(7095), 1, sym__immediate_decimal, - ACTIONS(1557), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8367), 2, + ACTIONS(1776), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7066), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187907] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_RBRACK, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8433), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8435), 1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + ACTIONS(8437), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8439), 1, + aux_sym__immediate_decimal_token5, + STATE(5142), 1, + sym_comment, + STATE(6404), 1, + sym__immediate_decimal, + STATE(7148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188125] = 4, - ACTIONS(247), 1, + [187948] = 12, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8503), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + ACTIONS(8303), 1, + anon_sym_DASH_DASH, + ACTIONS(8305), 1, anon_sym_DASH2, - STATE(5144), 1, + ACTIONS(8307), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(5143), 1, sym_comment, - ACTIONS(8501), 11, - anon_sym_EQ, - sym_identifier, + STATE(5238), 1, + aux_sym_ctrl_do_repeat1, + STATE(794), 2, + sym__blosure, + sym_val_variable, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [187987] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7975), 1, sym__newline, + ACTIONS(8537), 1, + anon_sym_else, + STATE(5144), 1, + sym_comment, + STATE(5145), 1, + aux_sym_shebang_repeat1, + ACTIONS(7978), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188148] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188014] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8049), 1, + sym__newline, + ACTIONS(8539), 1, + anon_sym_else, STATE(5145), 1, sym_comment, - ACTIONS(8165), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5150), 1, + aux_sym_shebang_repeat1, + ACTIONS(8052), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394374,15 +532381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188169] = 3, - ACTIONS(247), 1, + [188041] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8056), 1, + sym__newline, + ACTIONS(8541), 1, + anon_sym_else, STATE(5146), 1, sym_comment, - ACTIONS(6831), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5151), 1, + aux_sym_shebang_repeat1, + ACTIONS(8059), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394392,50 +532402,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188190] = 4, - ACTIONS(247), 1, + [188068] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_DASH2, + ACTIONS(8063), 1, + sym__newline, + ACTIONS(8543), 1, + anon_sym_else, STATE(5147), 1, sym_comment, - ACTIONS(8505), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5152), 1, + aux_sym_shebang_repeat1, + ACTIONS(8066), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188213] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188095] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2498), 1, - anon_sym_DASH2, STATE(5148), 1, sym_comment, - ACTIONS(2500), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8107), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188236] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188116] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5149), 1, sym_comment, - ACTIONS(8509), 12, + ACTIONS(8115), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394447,74 +532459,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188257] = 4, - ACTIONS(247), 1, + [188137] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2130), 1, - anon_sym_DASH2, + ACTIONS(5138), 1, + sym__newline, + ACTIONS(8545), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(5150), 1, sym_comment, - ACTIONS(2136), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1233), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188280] = 6, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188164] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8511), 1, - anon_sym_DOT, - ACTIONS(8513), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8025), 1, + sym__newline, + ACTIONS(8548), 1, + anon_sym_else, STATE(5151), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188307] = 4, - ACTIONS(247), 1, + STATE(5155), 1, + aux_sym_shebang_repeat1, + ACTIONS(8028), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188191] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7716), 1, - anon_sym_DASH2, + ACTIONS(7948), 1, + sym__newline, + ACTIONS(8550), 1, + anon_sym_else, STATE(5152), 1, sym_comment, - ACTIONS(7714), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5156), 1, + aux_sym_shebang_repeat1, + ACTIONS(7951), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188330] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188218] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(7871), 1, + sym__newline, + ACTIONS(8552), 1, + anon_sym_else, STATE(5153), 1, sym_comment, - ACTIONS(8515), 12, - sym__newline, - anon_sym_SEMI, + STATE(5157), 1, + aux_sym_shebang_repeat1, + ACTIONS(7874), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394524,15 +532543,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188351] = 3, - ACTIONS(247), 1, + [188245] = 13, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5465), 1, + anon_sym_LPAREN2, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8385), 1, + anon_sym_DOLLAR2, + ACTIONS(8395), 1, + anon_sym_DOLLAR, + ACTIONS(8397), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8554), 1, + anon_sym_RBRACK, + STATE(2813), 1, + sym__immediate_decimal, STATE(5154), 1, sym_comment, - ACTIONS(8517), 12, + STATE(2910), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188286] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5138), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8556), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(5155), 1, + sym_comment, + ACTIONS(1233), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394542,15 +532592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188372] = 3, - ACTIONS(247), 1, + [188313] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5155), 1, - sym_comment, - ACTIONS(8519), 12, + ACTIONS(5138), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8559), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(5156), 1, + sym_comment, + ACTIONS(1233), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394560,168 +532613,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188393] = 4, - ACTIONS(247), 1, + [188340] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_DASH2, - STATE(5156), 1, + ACTIONS(8042), 1, + sym__newline, + ACTIONS(8562), 1, + anon_sym_else, + STATE(5157), 1, sym_comment, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, + STATE(5158), 1, + aux_sym_shebang_repeat1, + ACTIONS(8045), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188367] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5138), 1, sym__newline, + ACTIONS(8564), 1, + anon_sym_else, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(5158), 1, + sym_comment, + ACTIONS(1233), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [188394] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8299), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(3612), 1, + sym__immediate_decimal, + STATE(5159), 1, + sym_comment, + ACTIONS(1726), 2, anon_sym_DASH_DASH, - [188416] = 11, - ACTIONS(247), 1, + anon_sym_LBRACE, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3440), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188431] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(1776), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(5157), 1, - sym_comment, - STATE(6077), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3437), 1, sym__immediate_decimal, - ACTIONS(1557), 2, - sym__newline, + STATE(5160), 1, + sym_comment, + ACTIONS(1786), 2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8421), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6094), 2, + STATE(3458), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188453] = 11, - ACTIONS(247), 1, + [188468] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(1846), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6199), 1, - anon_sym_DOT, - ACTIONS(8423), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(5158), 1, - sym_comment, - STATE(6093), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3432), 1, sym__immediate_decimal, - ACTIONS(1603), 2, - sym__newline, + STATE(5161), 1, + sym_comment, + ACTIONS(1848), 2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8421), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6091), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188490] = 13, - ACTIONS(3), 1, + [188505] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2540), 1, - anon_sym_DOLLAR, - ACTIONS(5278), 1, + ACTIONS(1850), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(5282), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5284), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5286), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8289), 1, - anon_sym_DOLLAR2, ACTIONS(8299), 1, - anon_sym_RBRACK, - ACTIONS(8521), 1, - aux_sym__immediate_decimal_token1, - STATE(2667), 1, + anon_sym_DOLLAR, + STATE(3435), 1, sym__immediate_decimal, - STATE(5159), 1, + STATE(5162), 1, sym_comment, - STATE(2810), 2, + ACTIONS(1852), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3434), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188531] = 3, - ACTIONS(247), 1, + [188542] = 11, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5160), 1, + ACTIONS(1854), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5163), 1, sym_comment, - ACTIONS(8247), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188552] = 4, - ACTIONS(247), 1, + ACTIONS(1856), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3459), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188579] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5161), 1, + ACTIONS(8567), 1, + anon_sym_DOT, + ACTIONS(8569), 1, + aux_sym__immediate_decimal_token2, + STATE(5164), 1, sym_comment, - ACTIONS(1573), 3, + ACTIONS(1760), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1762), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [188575] = 4, - ACTIONS(247), 1, + [188606] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2514), 1, - anon_sym_DASH2, - STATE(5162), 1, + ACTIONS(8571), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8573), 1, + aux_sym__immediate_decimal_token2, + STATE(5165), 1, sym_comment, - ACTIONS(2516), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188598] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188633] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5163), 1, + STATE(5166), 1, sym_comment, - ACTIONS(8523), 12, + ACTIONS(8141), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394733,89 +532845,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188619] = 12, - ACTIONS(3), 1, + [188654] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(8073), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, + ACTIONS(8129), 1, anon_sym_DOLLAR, - ACTIONS(8313), 1, + STATE(3437), 1, + sym__immediate_decimal, + STATE(5167), 1, + sym_comment, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, aux_sym__immediate_decimal_token3, - STATE(5164), 1, - sym_comment, - STATE(7135), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7131), 2, + STATE(3458), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188658] = 13, - ACTIONS(3), 1, + ACTIONS(1786), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188689] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5462), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8287), 1, - anon_sym_DOLLAR, - ACTIONS(8289), 1, - anon_sym_DOLLAR2, - ACTIONS(8291), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8293), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8525), 1, - anon_sym_RBRACK, - STATE(2857), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3432), 1, sym__immediate_decimal, - STATE(5165), 1, + STATE(5168), 1, sym_comment, - STATE(2894), 2, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188699] = 6, - ACTIONS(247), 1, + ACTIONS(1848), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188724] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8527), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8529), 1, - aux_sym__immediate_decimal_token2, - STATE(5166), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3435), 1, + sym__immediate_decimal, + STATE(5169), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 7, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3434), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1852), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188759] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8129), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188726] = 3, - ACTIONS(247), 1, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5170), 1, + sym_comment, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3459), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1856), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [188794] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5167), 1, + STATE(5171), 1, sym_comment, - ACTIONS(8249), 12, + ACTIONS(8143), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -394828,13 +532963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188747] = 3, - ACTIONS(247), 1, + [188815] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5168), 1, + ACTIONS(8575), 1, + anon_sym_else, + STATE(5172), 1, sym_comment, - ACTIONS(5144), 12, - ts_builtin_sym_end, + ACTIONS(8111), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394846,71 +532982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188768] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_DASH2, - STATE(5169), 1, - sym_comment, - ACTIONS(8531), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188791] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_DASH2, - STATE(5170), 1, - sym_comment, - ACTIONS(2353), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188814] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8537), 1, - anon_sym_DASH2, - STATE(5171), 1, - sym_comment, - ACTIONS(8535), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188837] = 4, - ACTIONS(247), 1, + [188838] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(8579), 1, anon_sym_DASH2, - STATE(5172), 1, + STATE(5173), 1, sym_comment, - ACTIONS(2357), 11, + ACTIONS(8577), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394922,32 +533001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188860] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5173), 1, - sym_comment, - ACTIONS(8539), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188881] = 4, - ACTIONS(247), 1, + [188861] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8543), 1, + ACTIONS(7785), 1, anon_sym_DASH2, STATE(5174), 1, sym_comment, - ACTIONS(8541), 11, + ACTIONS(7783), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394959,51 +533020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188904] = 3, - ACTIONS(247), 1, + [188884] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5175), 1, sym_comment, - ACTIONS(5148), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188925] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5176), 1, - sym_comment, - ACTIONS(6985), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6991), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6987), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6989), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [188952] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5177), 1, - sym_comment, - ACTIONS(8545), 12, + ACTIONS(6973), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395016,843 +533038,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188973] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8547), 1, - anon_sym_DOT, - ACTIONS(8549), 1, - aux_sym__immediate_decimal_token2, - STATE(5178), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188999] = 10, - ACTIONS(247), 1, + [188905] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6239), 1, anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6440), 1, + anon_sym_DOT, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - STATE(3615), 1, - sym__immediate_decimal, - STATE(5179), 1, + STATE(5176), 1, sym_comment, - ACTIONS(1557), 2, + STATE(6059), 1, + sym__immediate_decimal, + ACTIONS(1726), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8551), 2, + ACTIONS(8341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + STATE(6062), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189033] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8555), 1, - aux_sym__immediate_decimal_token2, - STATE(5180), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [189059] = 10, - ACTIONS(247), 1, + [188942] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6239), 1, anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6243), 1, + anon_sym_DOT, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - STATE(3625), 1, - sym__immediate_decimal, - STATE(5181), 1, + STATE(5177), 1, sym_comment, - ACTIONS(1659), 2, + STATE(6061), 1, + sym__immediate_decimal, + ACTIONS(1786), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8551), 2, + ACTIONS(8341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3426), 2, + STATE(6060), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189093] = 9, - ACTIONS(247), 1, + [188979] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - ACTIONS(6667), 1, - anon_sym_LPAREN, - ACTIONS(8557), 1, - anon_sym_DASH2, - STATE(2131), 1, - sym__expr_unary_minus, - STATE(5182), 1, + STATE(5178), 1, sym_comment, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - STATE(2139), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [189125] = 6, - ACTIONS(3), 1, + ACTIONS(8581), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [189000] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8559), 1, - anon_sym_DOT, - ACTIONS(8561), 1, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8585), 1, aux_sym__immediate_decimal_token2, - STATE(5183), 1, + STATE(5179), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1575), 6, - anon_sym_LPAREN2, + ACTIONS(1770), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1768), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [189151] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6199), 1, - anon_sym_DOT, - ACTIONS(8417), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(5184), 1, - sym_comment, - STATE(6093), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6091), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189187] = 8, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [189026] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1994), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3501), 1, + STATE(3505), 1, sym_cell_path, - STATE(5185), 1, + STATE(5180), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1851), 6, + ACTIONS(1996), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189217] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8319), 1, - anon_sym_DASH_DASH, - ACTIONS(8321), 1, - anon_sym_DASH2, - ACTIONS(8565), 1, - anon_sym_DOLLAR, - ACTIONS(8567), 1, - anon_sym_LBRACE, - STATE(1867), 1, - sym_block, - STATE(1960), 1, - sym_val_closure, - STATE(5186), 1, - sym_comment, - STATE(5236), 1, - aux_sym_ctrl_do_repeat1, - STATE(816), 2, - sym__blosure, - sym_val_variable, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [189253] = 8, - ACTIONS(247), 1, + [189056] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(2010), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3518), 1, sym_cell_path, - STATE(5187), 1, + STATE(5181), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1917), 6, + ACTIONS(2012), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189283] = 8, - ACTIONS(247), 1, + [189086] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1972), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(3532), 1, sym_cell_path, - STATE(5188), 1, + STATE(5182), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1929), 6, + ACTIONS(1976), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189313] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8465), 1, - aux_sym__immediate_decimal_token2, - STATE(5189), 1, - sym_comment, - ACTIONS(1573), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189337] = 8, - ACTIONS(247), 1, + [189116] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2038), 1, + ACTIONS(2014), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3498), 1, + STATE(3536), 1, sym_cell_path, - STATE(5190), 1, + STATE(5183), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(2040), 6, + ACTIONS(2016), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189367] = 8, - ACTIONS(247), 1, + [189146] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2018), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3499), 1, + STATE(3539), 1, sym_cell_path, - STATE(5191), 1, + STATE(5184), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1873), 6, + ACTIONS(2020), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189397] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(3438), 1, - sym__immediate_decimal, - STATE(5192), 1, - sym_comment, - ACTIONS(1671), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8551), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3457), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189431] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3405), 1, - aux_sym_expr_unary_token1, - ACTIONS(8569), 1, - anon_sym_LPAREN, - ACTIONS(8571), 1, - anon_sym_DOLLAR, - ACTIONS(8573), 1, - anon_sym_DASH2, - STATE(3908), 1, - sym__expr_unary_minus, - STATE(5193), 1, - sym_comment, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(3866), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [189463] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, - sym__immediate_decimal, - STATE(5194), 1, - sym_comment, - ACTIONS(1603), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8551), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3449), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189497] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8577), 1, - aux_sym__immediate_decimal_token2, - STATE(5195), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189523] = 8, - ACTIONS(247), 1, + [189176] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(2022), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3527), 1, + STATE(3540), 1, sym_cell_path, - STATE(5196), 1, + STATE(5185), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1909), 6, + ACTIONS(2024), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189553] = 8, - ACTIONS(247), 1, + [189206] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(2026), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3549), 1, + STATE(3546), 1, sym_cell_path, - STATE(5197), 1, + STATE(5186), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1897), 6, + ACTIONS(2028), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189583] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token5, - STATE(5198), 1, - sym_comment, - STATE(7555), 1, - sym__immediate_decimal, - ACTIONS(8579), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3451), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189619] = 8, - ACTIONS(247), 1, + [189236] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(2030), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3500), 1, + STATE(3547), 1, sym_cell_path, - STATE(5199), 1, + STATE(5187), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1933), 6, + ACTIONS(2032), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189649] = 8, - ACTIONS(247), 1, + [189266] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2030), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3532), 1, + STATE(3548), 1, sym_cell_path, - STATE(5200), 1, + STATE(5188), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(2032), 6, + ACTIONS(2036), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189679] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1543), 1, - anon_sym_RBRACE, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5201), 1, - sym_comment, - STATE(7533), 1, - sym__immediate_decimal, - STATE(7221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189717] = 5, - ACTIONS(247), 1, + [189296] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8590), 1, + ACTIONS(1473), 1, anon_sym_DASH2, - ACTIONS(8587), 2, - sym__newline, - anon_sym_COMMA, - STATE(5202), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8585), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189741] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8377), 1, - aux_sym__immediate_decimal_token2, - STATE(5203), 1, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(3190), 1, + sym_cell_path, + STATE(5189), 1, sym_comment, - ACTIONS(1575), 4, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5495), 1, + sym_path, + ACTIONS(1475), 6, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [189765] = 8, - ACTIONS(247), 1, + anon_sym_LBRACE, + [189326] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(2171), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3545), 1, + STATE(3521), 1, sym_cell_path, - STATE(5204), 1, + STATE(5190), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1885), 6, + ACTIONS(2173), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189795] = 8, - ACTIONS(247), 1, + [189356] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1473), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3520), 1, + STATE(3190), 1, sym_cell_path, - STATE(5205), 1, + STATE(5191), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1881), 6, + ACTIONS(1475), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189825] = 5, - ACTIONS(3), 1, + [189386] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8592), 1, - aux_sym__immediate_decimal_token2, - STATE(5206), 1, + ACTIONS(1998), 1, + anon_sym_DASH2, + ACTIONS(8587), 1, + anon_sym_DOT, + STATE(3502), 1, + sym_cell_path, + STATE(5192), 1, sym_comment, - ACTIONS(1681), 4, - anon_sym_RBRACK, + STATE(5330), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(2000), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189849] = 8, - ACTIONS(247), 1, + anon_sym_as, + [189416] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(2006), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3539), 1, + STATE(3519), 1, sym_cell_path, - STATE(5207), 1, + STATE(5193), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(2036), 6, + ACTIONS(2008), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189879] = 8, - ACTIONS(247), 1, + [189446] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3505), 1, + STATE(3542), 1, sym_cell_path, - STATE(5208), 1, + STATE(5194), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1901), 6, + ACTIONS(2040), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189909] = 8, - ACTIONS(247), 1, + [189476] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(2042), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3503), 1, + STATE(3500), 1, sym_cell_path, - STATE(5209), 1, + STATE(5195), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1913), 6, + ACTIONS(2044), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189939] = 11, - ACTIONS(247), 1, + [189506] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1557), 1, - anon_sym_LBRACE, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(8417), 1, + ACTIONS(3581), 1, + aux_sym_expr_unary_token1, + ACTIONS(5841), 1, + anon_sym_LPAREN, + ACTIONS(6404), 1, anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(5210), 1, + ACTIONS(8591), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym__expr_unary_minus, + STATE(5196), 1, sym_comment, - STATE(6077), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6094), 2, - sym__expr_parenthesized_immediate, + ACTIONS(3487), 2, + anon_sym_true, + anon_sym_false, + STATE(2478), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [189975] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8513), 1, - aux_sym__immediate_decimal_token2, - STATE(5211), 1, - sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189999] = 8, - ACTIONS(247), 1, + [189538] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(2046), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3535), 1, + STATE(3501), 1, sym_cell_path, - STATE(5212), 1, + STATE(5197), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1869), 6, + ACTIONS(2048), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190029] = 11, - ACTIONS(247), 1, + [189568] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8317), 1, - anon_sym_DOLLAR, - ACTIONS(8319), 1, + ACTIONS(8303), 1, anon_sym_DASH_DASH, - ACTIONS(8321), 1, + ACTIONS(8305), 1, anon_sym_DASH2, - ACTIONS(8323), 1, + ACTIONS(8593), 1, + anon_sym_DOLLAR, + ACTIONS(8595), 1, anon_sym_LBRACE, - STATE(1770), 1, + STATE(1903), 1, sym_block, - STATE(1772), 1, + STATE(1907), 1, sym_val_closure, - STATE(5213), 1, + STATE(5198), 1, sym_comment, - STATE(5217), 1, + STATE(5672), 1, aux_sym_ctrl_do_repeat1, - STATE(800), 2, + STATE(814), 2, sym__blosure, sym_val_variable, - STATE(6035), 2, + STATE(6172), 2, sym_short_flag, sym_long_flag, - [190065] = 12, - ACTIONS(3), 1, + [189604] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_RBRACE, - ACTIONS(1659), 1, - sym__entry_separator, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5214), 1, + ACTIONS(2050), 1, + anon_sym_DASH2, + ACTIONS(8587), 1, + anon_sym_DOT, + STATE(3503), 1, + sym_cell_path, + STATE(5199), 1, sym_comment, - STATE(7586), 1, - sym__immediate_decimal, - STATE(7161), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190103] = 6, - ACTIONS(247), 1, + STATE(5330), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(2052), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [189634] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7466), 1, + ACTIONS(8602), 1, anon_sym_DASH2, - STATE(5202), 1, - aux_sym_parameter_repeat2, - STATE(5215), 1, - sym_comment, - ACTIONS(2538), 2, + ACTIONS(8599), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7464), 7, + STATE(5200), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8597), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -395860,324 +533591,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190129] = 8, - ACTIONS(247), 1, + [189658] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(2054), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3533), 1, + STATE(3508), 1, sym_cell_path, - STATE(5216), 1, + STATE(5201), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1861), 6, + ACTIONS(2056), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190159] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8317), 1, - anon_sym_DOLLAR, - ACTIONS(8319), 1, - anon_sym_DASH_DASH, - ACTIONS(8321), 1, - anon_sym_DASH2, - ACTIONS(8323), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_block, - STATE(1772), 1, - sym_val_closure, - STATE(5217), 1, - sym_comment, - STATE(5642), 1, - aux_sym_ctrl_do_repeat1, - STATE(780), 2, - sym__blosure, - sym_val_variable, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [190195] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8594), 1, - anon_sym_DOT, - ACTIONS(8596), 1, - aux_sym__immediate_decimal_token2, - STATE(5218), 1, - sym_comment, - ACTIONS(1575), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190221] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1557), 1, - anon_sym_EQ_GT, - ACTIONS(3593), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6414), 1, - anon_sym_DOT, - STATE(5219), 1, - sym_comment, - STATE(6812), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6018), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190257] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8598), 1, - anon_sym_else, - STATE(5220), 1, - sym_comment, - ACTIONS(8205), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190279] = 8, - ACTIONS(247), 1, + [189688] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(2058), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3196), 1, + STATE(3509), 1, sym_cell_path, - STATE(5221), 1, + STATE(5202), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(963), 6, + ACTIONS(2060), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190309] = 6, - ACTIONS(247), 1, + [189718] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8602), 1, + ACTIONS(2062), 1, anon_sym_DASH2, - STATE(5202), 1, - aux_sym_parameter_repeat2, - STATE(5222), 1, + ACTIONS(8587), 1, + anon_sym_DOT, + STATE(3510), 1, + sym_cell_path, + STATE(5203), 1, sym_comment, - ACTIONS(2538), 2, + STATE(5330), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(2064), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(8600), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190335] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_as, + [189748] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8606), 1, + ACTIONS(2066), 1, anon_sym_DASH2, - STATE(5202), 1, - aux_sym_parameter_repeat2, - STATE(5223), 1, + ACTIONS(8587), 1, + anon_sym_DOT, + STATE(3511), 1, + sym_cell_path, + STATE(5204), 1, sym_comment, - ACTIONS(2538), 2, + STATE(5330), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(2068), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(8604), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190361] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_as, + [189778] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(2070), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3506), 1, + STATE(3513), 1, sym_cell_path, - STATE(5224), 1, + STATE(5205), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1921), 6, + ACTIONS(2072), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190391] = 5, - ACTIONS(247), 1, + [189808] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8608), 1, - aux_sym__immediate_decimal_token2, - STATE(5225), 1, - sym_comment, - ACTIONS(1681), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 7, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190415] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(971), 1, - anon_sym_DASH2, - ACTIONS(8610), 1, - anon_sym_DOT, - STATE(5393), 1, - sym_path, - STATE(5226), 2, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3627), 1, + sym__immediate_decimal, + STATE(5206), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(1742), 2, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [190441] = 9, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, + ACTIONS(8604), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189842] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6667), 1, + ACTIONS(3509), 1, + aux_sym_expr_unary_token1, + ACTIONS(8606), 1, anon_sym_LPAREN, - ACTIONS(8095), 1, + ACTIONS(8608), 1, anon_sym_DOLLAR, - ACTIONS(8557), 1, + ACTIONS(8610), 1, anon_sym_DASH2, - STATE(2131), 1, + STATE(3905), 1, sym__expr_unary_minus, - STATE(5227), 1, + STATE(5207), 1, sym_comment, - ACTIONS(3361), 2, + ACTIONS(5204), 2, anon_sym_true, anon_sym_false, - STATE(2139), 4, + STATE(3919), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [190473] = 10, - ACTIONS(247), 1, + [189874] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(1726), 1, + sym__entry_separator, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token5, - STATE(3453), 1, - sym__immediate_decimal, - STATE(5228), 1, - sym_comment, - ACTIONS(1679), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8551), 2, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8331), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8333), 1, aux_sym__immediate_decimal_token3, - STATE(3448), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190507] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token5, - STATE(5229), 1, + STATE(5208), 1, sym_comment, - STATE(7553), 1, + STATE(7664), 1, sym__immediate_decimal, - ACTIONS(8579), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3426), 2, + STATE(7148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190543] = 6, - ACTIONS(247), 1, + [189912] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7474), 1, + ACTIONS(7498), 1, anon_sym_DASH2, - STATE(5202), 1, + STATE(5200), 1, aux_sym_parameter_repeat2, - STATE(5230), 1, + STATE(5209), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(2655), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7472), 7, + ACTIONS(7496), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -396185,172 +533794,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190569] = 6, - ACTIONS(247), 1, + [189938] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DASH2, - STATE(5202), 1, - aux_sym_parameter_repeat2, - STATE(5231), 1, - sym_comment, - ACTIONS(2538), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8613), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1726), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6440), 1, + anon_sym_DOT, + ACTIONS(8337), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190595] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3521), 1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(5210), 1, + sym_comment, + STATE(6059), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6062), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189974] = 9, + ACTIONS(83), 1, aux_sym_expr_unary_token1, - ACTIONS(5803), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5841), 1, anon_sym_LPAREN, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - ACTIONS(8617), 1, + ACTIONS(8591), 1, anon_sym_DASH2, - STATE(2523), 1, + ACTIONS(8612), 1, + anon_sym_DOLLAR, + STATE(2483), 1, sym__expr_unary_minus, - STATE(5232), 1, + STATE(5211), 1, sym_comment, - ACTIONS(3469), 2, + ACTIONS(3487), 2, anon_sym_true, anon_sym_false, - STATE(2544), 4, + STATE(2478), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [190627] = 5, - ACTIONS(247), 1, + [190006] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3612), 1, + sym__immediate_decimal, + STATE(5212), 1, + sym_comment, + ACTIONS(1726), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8604), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3440), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190040] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, + ACTIONS(8614), 1, aux_sym__immediate_decimal_token2, - STATE(5233), 1, + STATE(5213), 1, sym_comment, - ACTIONS(1683), 4, - anon_sym_DOLLAR, + ACTIONS(1820), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190064] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8616), 1, + anon_sym_DOT, + ACTIONS(8618), 1, + aux_sym__immediate_decimal_token2, + STATE(5214), 1, + sym_comment, + ACTIONS(1762), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 6, + ACTIONS(1760), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [190651] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1887), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3513), 1, - sym_cell_path, - STATE(5234), 1, - sym_comment, - STATE(5263), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, - sym_path, - ACTIONS(1889), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190681] = 8, - ACTIONS(247), 1, + [190090] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(1990), 1, anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8587), 1, anon_sym_DOT, - STATE(3519), 1, + STATE(3541), 1, sym_cell_path, - STATE(5235), 1, + STATE(5215), 1, sym_comment, - STATE(5263), 1, + STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5510), 1, + STATE(5625), 1, sym_path, - ACTIONS(1944), 6, + ACTIONS(1992), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190711] = 11, - ACTIONS(247), 1, + [190120] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8319), 1, - anon_sym_DASH_DASH, - ACTIONS(8321), 1, - anon_sym_DASH2, - ACTIONS(8565), 1, - anon_sym_DOLLAR, - ACTIONS(8567), 1, + ACTIONS(1726), 1, anon_sym_LBRACE, - STATE(1867), 1, - sym_block, - STATE(1960), 1, - sym_val_closure, - STATE(5236), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(5216), 1, sym_comment, - STATE(5642), 1, - aux_sym_ctrl_do_repeat1, - STATE(813), 2, - sym__blosure, + STATE(7705), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3440), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [190747] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2026), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3550), 1, - sym_cell_path, - STATE(5237), 1, - sym_comment, - STATE(5263), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, - sym_path, - ACTIONS(2028), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190777] = 6, - ACTIONS(247), 1, + [190156] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7490), 1, + ACTIONS(7494), 1, anon_sym_DASH2, - STATE(5202), 1, + STATE(5200), 1, aux_sym_parameter_repeat2, - STATE(5238), 1, + STATE(5217), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(2655), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7488), 7, + ACTIONS(7492), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -396358,170 +533972,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190803] = 8, - ACTIONS(247), 1, + [190182] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(1479), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(3196), 1, - sym_cell_path, - STATE(5239), 1, + STATE(5218), 1, sym_comment, - STATE(5242), 1, + STATE(5243), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, + STATE(5495), 1, sym_path, - ACTIONS(963), 6, + ACTIONS(1481), 7, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [190833] = 8, - ACTIONS(247), 1, + [190210] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3531), 1, - sym_cell_path, - STATE(5240), 1, + STATE(5200), 1, + aux_sym_parameter_repeat2, + STATE(5219), 1, sym_comment, - STATE(5263), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, - sym_path, - ACTIONS(1893), 6, + ACTIONS(2655), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(8626), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190863] = 10, - ACTIONS(247), 1, + [190236] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3607), 1, + aux_sym_expr_unary_token1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(8630), 1, + anon_sym_DASH2, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(5220), 1, + sym_comment, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + STATE(2155), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [190268] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - STATE(3444), 1, + STATE(3432), 1, sym__immediate_decimal, - STATE(5241), 1, + STATE(5221), 1, sym_comment, - ACTIONS(1675), 2, + ACTIONS(1848), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8551), 2, + ACTIONS(8604), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190897] = 7, - ACTIONS(247), 1, + [190302] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(5226), 1, - aux_sym_cell_path_repeat1, - STATE(5242), 1, + ACTIONS(8569), 1, + aux_sym__immediate_decimal_token2, + STATE(5222), 1, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(969), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [190925] = 9, - ACTIONS(83), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190326] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5803), 1, - anon_sym_LPAREN, - ACTIONS(8617), 1, - anon_sym_DASH2, - ACTIONS(8623), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, anon_sym_DOLLAR, - STATE(2523), 1, - sym__expr_unary_minus, - STATE(5243), 1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3435), 1, + sym__immediate_decimal, + STATE(5223), 1, sym_comment, - ACTIONS(3469), 2, - anon_sym_true, - anon_sym_false, - STATE(2544), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + ACTIONS(1852), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8604), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3434), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [190957] = 8, - ACTIONS(247), 1, + [190360] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3534), 1, - sym_cell_path, - STATE(5244), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5224), 1, sym_comment, - STATE(5263), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, - sym_path, - ACTIONS(1865), 6, + ACTIONS(1856), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190987] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8625), 1, + anon_sym_LBRACE, + ACTIONS(8604), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8627), 1, - aux_sym__immediate_decimal_token2, - STATE(5245), 1, - sym_comment, - ACTIONS(1585), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1587), 6, + aux_sym__immediate_decimal_token3, + STATE(3459), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190394] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1726), 1, + anon_sym_EQ_GT, + ACTIONS(3699), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [191013] = 5, - ACTIONS(247), 1, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6440), 1, + anon_sym_DOT, + STATE(5225), 1, + sym_comment, + STATE(6809), 1, + sym__immediate_decimal, + ACTIONS(6245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190430] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(5246), 1, + ACTIONS(8632), 1, + anon_sym_else, + STATE(5226), 1, sym_comment, - ACTIONS(2621), 9, + ACTIONS(8111), 10, + sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396531,1999 +534170,2548 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191037] = 11, + [190452] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8073), 1, + ACTIONS(1730), 1, + anon_sym_RBRACE, + ACTIONS(1742), 1, + sym__entry_separator, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(8311), 1, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8329), 1, anon_sym_DOLLAR, - ACTIONS(8429), 1, + ACTIONS(8331), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8431), 1, + ACTIONS(8333), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8433), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8629), 1, - aux_sym__unquoted_in_record_token3, - STATE(5247), 1, + STATE(5227), 1, sym_comment, - STATE(6377), 1, + STATE(7508), 1, sym__immediate_decimal, - STATE(7189), 2, + STATE(7184), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191072] = 9, - ACTIONS(247), 1, + [190490] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(8631), 1, - sym_filesize_unit, - ACTIONS(8633), 1, - sym_duration_unit, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - STATE(5248), 1, - sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 3, + ACTIONS(8301), 1, anon_sym_DOLLAR, + ACTIONS(8303), 1, anon_sym_DASH_DASH, + ACTIONS(8305), 1, + anon_sym_DASH2, + ACTIONS(8307), 1, anon_sym_LBRACE, - [191103] = 5, - ACTIONS(247), 1, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(5228), 1, + sym_comment, + STATE(5238), 1, + aux_sym_ctrl_do_repeat1, + STATE(794), 2, + sym__blosure, + sym_val_variable, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [190526] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8596), 1, + ACTIONS(8315), 1, aux_sym__immediate_decimal_token2, - STATE(5249), 1, + STATE(5229), 1, sym_comment, - ACTIONS(1575), 3, + ACTIONS(1762), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, + ACTIONS(1760), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [191126] = 5, - ACTIONS(247), 1, + [190550] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, + ACTIONS(8431), 1, aux_sym__immediate_decimal_token2, - STATE(5250), 1, + STATE(5230), 1, sym_comment, - ACTIONS(1683), 3, - anon_sym_DASH_DASH, + ACTIONS(1760), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 6, - sym_identifier, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190574] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8634), 1, + aux_sym__immediate_decimal_token2, + STATE(5231), 1, + sym_comment, + ACTIONS(1820), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, + [190598] = 11, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1742), 1, + anon_sym_LBRACE, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - [191149] = 6, - ACTIONS(3), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(5232), 1, + sym_comment, + STATE(7583), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190634] = 9, + ACTIONS(207), 1, + aux_sym_expr_unary_token1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8630), 1, + anon_sym_DASH2, + STATE(2146), 1, + sym__expr_unary_minus, + STATE(5233), 1, + sym_comment, + ACTIONS(3445), 2, + anon_sym_true, + anon_sym_false, + STATE(2155), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [190666] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(5234), 1, + sym_comment, + ACTIONS(1412), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190690] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8639), 1, + ACTIONS(8636), 1, anon_sym_DOT, - ACTIONS(8641), 1, + ACTIONS(8638), 1, aux_sym__immediate_decimal_token2, - STATE(5251), 1, + STATE(5235), 1, sym_comment, - ACTIONS(1573), 3, - sym__newline, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 5, - sym__space, + ACTIONS(1762), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191174] = 6, - ACTIONS(3), 1, + [190716] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8645), 1, + ACTIONS(8640), 1, aux_sym__immediate_decimal_token2, - STATE(5252), 1, + STATE(5236), 1, sym_comment, - ACTIONS(1585), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 5, - sym__space, + ACTIONS(1822), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [191199] = 11, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [190740] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_LPAREN2, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8287), 1, + ACTIONS(8303), 1, + anon_sym_DASH_DASH, + ACTIONS(8305), 1, + anon_sym_DASH2, + ACTIONS(8593), 1, anon_sym_DOLLAR, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8293), 1, - aux_sym__immediate_decimal_token5, - STATE(2857), 1, - sym__immediate_decimal, - STATE(5253), 1, + ACTIONS(8595), 1, + anon_sym_LBRACE, + STATE(1903), 1, + sym_block, + STATE(1907), 1, + sym_val_closure, + STATE(5198), 1, + aux_sym_ctrl_do_repeat1, + STATE(5237), 1, sym_comment, - STATE(2894), 2, - sym__expr_parenthesized_immediate, + STATE(824), 2, + sym__blosure, sym_val_variable, - [191234] = 11, - ACTIONS(247), 1, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [190776] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6420), 1, + ACTIONS(8301), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8649), 1, + ACTIONS(8303), 1, anon_sym_DASH_DASH, - ACTIONS(8651), 1, + ACTIONS(8305), 1, anon_sym_DASH2, - STATE(5254), 1, + ACTIONS(8307), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_block, + STATE(1813), 1, + sym_val_closure, + STATE(5238), 1, sym_comment, - STATE(5392), 1, + STATE(5672), 1, aux_sym_ctrl_do_repeat1, - STATE(5398), 1, + STATE(800), 2, + sym__blosure, sym_val_variable, - STATE(6365), 1, - sym__variable_name, - STATE(6035), 2, + STATE(6172), 2, sym_short_flag, sym_long_flag, - [191269] = 4, - ACTIONS(247), 1, + [190812] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8337), 1, + ACTIONS(8642), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8644), 1, + aux_sym__immediate_decimal_token2, + STATE(5239), 1, + sym_comment, + ACTIONS(1768), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190838] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8648), 1, anon_sym_DASH2, - STATE(5255), 1, + STATE(5200), 1, + aux_sym_parameter_repeat2, + STATE(5240), 1, sym_comment, - ACTIONS(5792), 9, + ACTIONS(2655), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8646), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190864] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(7460), 1, + anon_sym_DASH2, + STATE(5200), 1, + aux_sym_parameter_repeat2, + STATE(5241), 1, + sym_comment, + ACTIONS(2655), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7458), 7, + sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190890] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8652), 1, + anon_sym_DASH2, + STATE(5200), 1, + aux_sym_parameter_repeat2, + STATE(5242), 1, + sym_comment, + ACTIONS(2655), 2, + sym__newline, anon_sym_COMMA, + ACTIONS(8650), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190916] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_DASH2, + ACTIONS(8654), 1, + anon_sym_DOT, + STATE(5495), 1, + sym_path, + STATE(5243), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191290] = 11, - ACTIONS(3), 1, + anon_sym_LBRACE, + [190942] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8073), 1, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8173), 1, + ACTIONS(6243), 1, + anon_sym_DOT, + ACTIONS(8337), 1, + anon_sym_DOLLAR, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8175), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token3, - STATE(5256), 1, + STATE(5244), 1, sym_comment, - STATE(5683), 1, + STATE(6061), 1, sym__immediate_decimal, - STATE(5744), 2, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6060), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191325] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_DOT, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token2, - STATE(5257), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191350] = 11, - ACTIONS(3), 1, + [190978] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8073), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8311), 1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8329), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8331), 1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8333), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token3, - STATE(5258), 1, - sym_comment, - STATE(6774), 1, + STATE(3437), 1, sym__immediate_decimal, - STATE(7189), 2, + STATE(5245), 1, + sym_comment, + ACTIONS(1786), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8604), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3458), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191385] = 6, - ACTIONS(247), 1, + [191012] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8657), 1, + anon_sym_DOT, ACTIONS(8659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8661), 1, aux_sym__immediate_decimal_token2, - STATE(5259), 1, + STATE(5246), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1760), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191410] = 4, + sym__entry_separator, + [191038] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5260), 1, + ACTIONS(8661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8663), 1, + aux_sym__immediate_decimal_token2, + STATE(5247), 1, sym_comment, - ACTIONS(1573), 4, - anon_sym_RBRACK, + ACTIONS(1768), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1575), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1770), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [191431] = 8, + [191064] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_DOT, - STATE(5261), 1, + ACTIONS(4157), 1, + anon_sym_DOLLAR, + ACTIONS(4159), 1, + anon_sym_LPAREN2, + ACTIONS(4161), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4163), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4635), 1, + aux_sym_unquoted_token3, + ACTIONS(8665), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8667), 1, + aux_sym__immediate_decimal_token5, + STATE(1715), 1, + sym__immediate_decimal, + STATE(5248), 1, sym_comment, - STATE(5459), 1, - aux_sym_cell_path_repeat1, - STATE(5675), 1, - sym_path, - STATE(5755), 1, - sym_cell_path, - ACTIONS(961), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(963), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191460] = 4, + STATE(1871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191099] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5262), 1, + ACTIONS(8669), 1, + aux_sym__immediate_decimal_token2, + STATE(5249), 1, sym_comment, - ACTIONS(1585), 4, - anon_sym_RBRACK, + ACTIONS(1820), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1822), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [191481] = 7, - ACTIONS(247), 1, + [191122] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(5263), 1, + STATE(5250), 1, sym_comment, - STATE(5264), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, - sym_path, - ACTIONS(969), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1822), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [191508] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191143] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(1231), 1, anon_sym_DASH2, - ACTIONS(8665), 1, - anon_sym_DOT, - STATE(5510), 1, - sym_path, - STATE(5264), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 6, + ACTIONS(8671), 1, sym__newline, - anon_sym_SEMI, + STATE(5251), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1233), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [191533] = 6, - ACTIONS(3), 1, + [191166] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8668), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8670), 1, - aux_sym__immediate_decimal_token2, - STATE(5265), 1, + STATE(5252), 1, sym_comment, - ACTIONS(1739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 4, - anon_sym_LPAREN2, + ACTIONS(1868), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191558] = 11, - ACTIONS(3), 1, + ACTIONS(1866), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191187] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2997), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - ACTIONS(4063), 1, - anon_sym_LPAREN2, - ACTIONS(4067), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4069), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4569), 1, - aux_sym_unquoted_token3, - ACTIONS(8672), 1, - aux_sym__immediate_decimal_token4, ACTIONS(8674), 1, - aux_sym__immediate_decimal_token5, - STATE(1493), 1, - sym__immediate_decimal, - STATE(5266), 1, + sym_identifier, + ACTIONS(8676), 1, + anon_sym_DASH_DASH, + ACTIONS(8678), 1, + anon_sym_DASH2, + STATE(5253), 1, sym_comment, - STATE(1642), 2, - sym__expr_parenthesized_immediate, + STATE(5389), 1, + aux_sym_ctrl_do_repeat1, + STATE(5414), 1, sym_val_variable, - [191593] = 4, - ACTIONS(3), 1, + STATE(6358), 1, + sym__variable_name, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [191222] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5267), 1, + ACTIONS(8680), 1, + anon_sym_DOT, + ACTIONS(8682), 1, + aux_sym__immediate_decimal_token2, + STATE(5254), 1, sym_comment, - ACTIONS(1681), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1683), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1762), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [191614] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4419), 1, - anon_sym_DOLLAR, - ACTIONS(4487), 1, - anon_sym_LPAREN2, - ACTIONS(4489), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4491), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4569), 1, - aux_sym_unquoted_token3, - ACTIONS(8676), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8678), 1, - aux_sym__immediate_decimal_token5, - STATE(1712), 1, - sym__immediate_decimal, - STATE(5268), 1, - sym_comment, - STATE(1878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191649] = 11, - ACTIONS(3), 1, + [191247] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_RBRACK, - ACTIONS(1719), 1, - sym__entry_separator, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8680), 1, + ACTIONS(1788), 1, + anon_sym_DASH2, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, ACTIONS(8684), 1, sym_filesize_unit, ACTIONS(8686), 1, sym_duration_unit, - STATE(5269), 1, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + STATE(5255), 1, sym_comment, - STATE(7608), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8682), 2, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [191684] = 9, - ACTIONS(247), 1, + ACTIONS(1800), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191278] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - ACTIONS(8688), 1, - sym_filesize_unit, - ACTIONS(8690), 1, - sym_duration_unit, - STATE(5270), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3190), 1, + sym_cell_path, + STATE(3465), 1, + aux_sym_cell_path_repeat1, + STATE(3585), 1, + sym_path, + STATE(5256), 1, sym_comment, - ACTIONS(1707), 2, - sym_identifier, + ACTIONS(1473), 2, anon_sym_DASH2, - ACTIONS(1719), 2, - anon_sym_DOLLAR, + anon_sym_DOT_DOT2, + ACTIONS(1475), 4, anon_sym_DASH_DASH, - ACTIONS(4724), 2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [191715] = 4, - ACTIONS(3), 1, + [191307] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5271), 1, + ACTIONS(8690), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8692), 1, + aux_sym__immediate_decimal_token2, + STATE(5257), 1, sym_comment, - ACTIONS(1761), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1763), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1770), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [191736] = 11, + [191332] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + ACTIONS(8694), 1, + sym_identifier, + ACTIONS(8696), 1, + anon_sym_GT2, + STATE(5258), 1, + sym_comment, + STATE(5262), 1, + aux_sym_collection_type_repeat1, + STATE(5509), 1, + sym_val_string, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [191365] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5553), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(5555), 1, + ACTIONS(5441), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8692), 1, - anon_sym_DOLLAR, - ACTIONS(8694), 1, + ACTIONS(5443), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8696), 1, + ACTIONS(5445), 1, aux_sym__immediate_decimal_token5, - STATE(3064), 1, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token1, + STATE(2912), 1, sym__immediate_decimal, - STATE(5272), 1, + STATE(5259), 1, sym_comment, - STATE(3134), 2, + STATE(3071), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191771] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8698), 1, - anon_sym_DOT, - ACTIONS(8700), 1, - aux_sym__immediate_decimal_token2, - STATE(5273), 1, - sym_comment, - ACTIONS(1765), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191796] = 11, + [191400] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3627), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(7163), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(7167), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7169), 1, + ACTIONS(8273), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token3, + ACTIONS(8700), 1, + aux_sym__immediate_decimal_token3, ACTIONS(8702), 1, aux_sym__immediate_decimal_token4, ACTIONS(8704), 1, aux_sym__immediate_decimal_token5, - STATE(4264), 1, - sym__immediate_decimal, - STATE(5274), 1, + STATE(5260), 1, sym_comment, - STATE(4542), 2, + STATE(5917), 1, + sym__immediate_decimal, + STATE(6006), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191831] = 11, + [191435] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(3375), 1, + anon_sym_DOLLAR, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(7210), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7212), 1, + ACTIONS(8449), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token3, ACTIONS(8706), 1, - anon_sym_DOLLAR, + aux_sym__immediate_decimal_token3, ACTIONS(8708), 1, aux_sym__immediate_decimal_token4, ACTIONS(8710), 1, aux_sym__immediate_decimal_token5, - STATE(4667), 1, - sym__immediate_decimal, - STATE(5275), 1, + STATE(5261), 1, sym_comment, - STATE(5012), 2, + STATE(7163), 1, + sym__immediate_decimal, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191866] = 11, + [191470] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8712), 1, + sym_identifier, + ACTIONS(8715), 1, + anon_sym_GT2, + ACTIONS(8717), 1, + anon_sym_DQUOTE, + ACTIONS(8723), 1, + sym_raw_string_begin, + STATE(5509), 1, + sym_val_string, + ACTIONS(8720), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5262), 2, + sym_comment, + aux_sym_collection_type_repeat1, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [191501] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(5214), 1, + ACTIONS(3639), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7821), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8712), 1, + ACTIONS(7210), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8714), 1, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8726), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8716), 1, + ACTIONS(8728), 1, aux_sym__immediate_decimal_token5, - STATE(5276), 1, - sym_comment, - STATE(5632), 1, + STATE(4247), 1, sym__immediate_decimal, - STATE(6008), 2, + STATE(5263), 1, + sym_comment, + STATE(4522), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191901] = 11, + [191536] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3291), 1, + ACTIONS(2103), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(6197), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(8097), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8718), 1, + ACTIONS(7091), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8720), 1, + ACTIONS(7093), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8722), 1, + ACTIONS(7095), 1, aux_sym__immediate_decimal_token5, - STATE(5277), 1, - sym_comment, - STATE(6655), 1, + ACTIONS(7202), 1, + aux_sym_unquoted_token3, + STATE(4143), 1, sym__immediate_decimal, - STATE(3445), 2, + STATE(5264), 1, + sym_comment, + STATE(4297), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191936] = 11, + [191571] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(4353), 1, anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(7077), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7079), 1, + ACTIONS(7123), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7081), 1, + ACTIONS(7125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7083), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7236), 1, + ACTIONS(7202), 1, aux_sym_unquoted_token3, - STATE(4184), 1, + STATE(4507), 1, sym__immediate_decimal, - STATE(5278), 1, + STATE(5265), 1, sym_comment, - STATE(4392), 2, + STATE(4665), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191971] = 11, + [191606] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4505), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(7119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7121), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7123), 1, + ACTIONS(7242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8730), 1, + anon_sym_DOLLAR, + ACTIONS(8732), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7125), 1, + ACTIONS(8734), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7236), 1, - aux_sym_unquoted_token3, - STATE(4615), 1, + STATE(4752), 1, sym__immediate_decimal, - STATE(5279), 1, + STATE(5266), 1, sym_comment, - STATE(4931), 2, + STATE(5025), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192006] = 8, - ACTIONS(247), 1, + [191641] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5280), 1, + STATE(5267), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5976), 1, + STATE(5972), 1, sym_cell_path, - ACTIONS(1861), 5, + ACTIONS(2000), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192035] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string_begin, - ACTIONS(8726), 1, - sym_identifier, - ACTIONS(8728), 1, - anon_sym_GT2, - STATE(5281), 1, - sym_comment, - STATE(5353), 1, - aux_sym_collection_type_repeat1, - STATE(5614), 1, - sym_val_string, - ACTIONS(5646), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [192068] = 5, - ACTIONS(247), 1, + [191670] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_DASH2, - ACTIONS(8730), 1, - anon_sym_QMARK2, - STATE(5282), 1, - sym_comment, - ACTIONS(980), 8, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(8738), 1, anon_sym_DOT, - [192091] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(984), 1, - anon_sym_DASH2, - ACTIONS(8732), 1, - anon_sym_QMARK2, - STATE(5283), 1, + ACTIONS(8740), 1, + aux_sym__immediate_decimal_token2, + STATE(5268), 1, sym_comment, - ACTIONS(986), 8, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [192114] = 8, - ACTIONS(247), 1, + ACTIONS(1872), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [191695] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(2006), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5284), 1, + STATE(5269), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5988), 1, + STATE(5985), 1, sym_cell_path, - ACTIONS(1865), 5, + ACTIONS(2008), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192143] = 11, + [191724] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1617), 1, + ACTIONS(1714), 1, + anon_sym_DOLLAR, + ACTIONS(1716), 1, anon_sym_LPAREN2, - ACTIONS(1621), 1, + ACTIONS(1720), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1623), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3811), 1, - anon_sym_DOLLAR, - ACTIONS(8734), 1, + ACTIONS(1722), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8736), 1, + ACTIONS(1724), 1, aux_sym__immediate_decimal_token5, - STATE(408), 1, + ACTIONS(1802), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8742), 1, + aux_sym__immediate_decimal_token1, + STATE(406), 1, sym__immediate_decimal, - STATE(5285), 1, + STATE(5270), 1, sym_comment, - STATE(519), 2, + STATE(485), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192178] = 11, + [191759] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1732), 1, + anon_sym_DOLLAR, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, + ACTIONS(1736), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1697), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8738), 1, - anon_sym_DOLLAR, - ACTIONS(8740), 1, + ACTIONS(1738), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8742), 1, + ACTIONS(1740), 1, aux_sym__immediate_decimal_token5, - STATE(585), 1, + ACTIONS(1802), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8744), 1, + aux_sym__immediate_decimal_token1, + STATE(548), 1, sym__immediate_decimal, - STATE(5286), 1, + STATE(5271), 1, sym_comment, - STATE(704), 2, + STATE(694), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192213] = 10, - ACTIONS(247), 1, + [191794] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, sym_raw_string_begin, - ACTIONS(8726), 1, + ACTIONS(8694), 1, sym_identifier, - ACTIONS(8744), 1, + ACTIONS(8746), 1, anon_sym_GT2, - STATE(5287), 1, + STATE(5272), 1, sym_comment, - STATE(5291), 1, + STATE(5283), 1, aux_sym_collection_type_repeat1, - STATE(5614), 1, + STATE(5509), 1, sym_val_string, - ACTIONS(5646), 2, + ACTIONS(5723), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5539), 2, + STATE(5619), 2, sym__raw_str, sym__str_double_quotes, - [192246] = 8, - ACTIONS(247), 1, + [191827] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_DASH2, - ACTIONS(8724), 1, - anon_sym_DOT, - STATE(5288), 1, + STATE(5273), 1, sym_comment, - STATE(5404), 1, - aux_sym_cell_path_repeat1, - STATE(5633), 1, - sym_path, - STATE(5787), 1, - sym_cell_path, - ACTIONS(1869), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1770), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [192275] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1768), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191848] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8748), 1, - anon_sym_DASH_DASH, ACTIONS(8750), 1, - anon_sym_DASH2, + anon_sym_DASH_DASH, ACTIONS(8752), 1, + anon_sym_DASH2, + ACTIONS(8754), 1, anon_sym_as, - STATE(5289), 1, + STATE(5274), 1, sym_comment, - STATE(5324), 1, + STATE(5357), 1, aux_sym_ctrl_do_repeat1, - STATE(5676), 2, + STATE(5703), 2, sym_short_flag, sym_long_flag, - ACTIONS(8746), 4, + ACTIONS(8748), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [192304] = 8, - ACTIONS(247), 1, + [191877] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1847), 1, - anon_sym_DASH2, - ACTIONS(8724), 1, - anon_sym_DOT, - STATE(5290), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8756), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8758), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8760), 1, + aux_sym__immediate_decimal_token5, + STATE(5275), 1, sym_comment, - STATE(5404), 1, - aux_sym_cell_path_repeat1, - STATE(5633), 1, - sym_path, - STATE(5800), 1, - sym_cell_path, - ACTIONS(1851), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192333] = 10, - ACTIONS(247), 1, + STATE(5686), 1, + sym__immediate_decimal, + STATE(6006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191912] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(3375), 1, + anon_sym_DOLLAR, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8762), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8766), 1, + aux_sym__immediate_decimal_token5, + STATE(5276), 1, + sym_comment, + STATE(6695), 1, + sym__immediate_decimal, + STATE(3453), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191947] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8768), 1, + aux_sym__unquoted_in_record_token3, + STATE(5277), 1, + sym_comment, + STATE(5657), 1, + sym__immediate_decimal, + STATE(5744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191982] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, sym_raw_string_begin, - ACTIONS(8726), 1, + ACTIONS(8694), 1, sym_identifier, - ACTIONS(8754), 1, + ACTIONS(8770), 1, anon_sym_GT2, - STATE(5291), 1, - sym_comment, - STATE(5353), 1, + STATE(5258), 1, aux_sym_collection_type_repeat1, - STATE(5614), 1, + STATE(5278), 1, + sym_comment, + STATE(5509), 1, sym_val_string, - ACTIONS(5646), 2, + ACTIONS(5723), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5539), 2, + STATE(5619), 2, sym__raw_str, sym__str_double_quotes, - [192366] = 11, + [192015] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8073), 1, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(8077), 1, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8493), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8079), 1, + ACTIONS(8495), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8081), 1, + ACTIONS(8497), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8083), 1, + ACTIONS(8499), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8629), 1, + ACTIONS(8768), 1, aux_sym__unquoted_in_record_token3, - STATE(5292), 1, + STATE(5279), 1, sym_comment, - STATE(5680), 1, + STATE(6722), 1, sym__immediate_decimal, - STATE(5744), 2, + STATE(6912), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192401] = 11, + [192050] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1788), 1, anon_sym_RBRACE, - ACTIONS(1709), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(1800), 1, sym__entry_separator, - ACTIONS(8629), 1, + ACTIONS(8768), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(8756), 1, + ACTIONS(8772), 1, anon_sym_DOT_DOT2, - ACTIONS(8760), 1, + ACTIONS(8776), 1, sym_filesize_unit, - ACTIONS(8762), 1, + ACTIONS(8778), 1, sym_duration_unit, - STATE(5293), 1, + STATE(5280), 1, sym_comment, - STATE(7647), 1, + STATE(7628), 1, sym__expr_parenthesized_immediate, - ACTIONS(8758), 2, + ACTIONS(8774), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [192436] = 8, - ACTIONS(247), 1, + [192085] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + anon_sym_DOLLAR, + ACTIONS(7107), 1, + anon_sym_LPAREN2, + ACTIONS(7111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7282), 1, + aux_sym_unquoted_token3, + STATE(4223), 1, + sym__immediate_decimal, + STATE(5281), 1, + sym_comment, + STATE(4407), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192120] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(7107), 1, + anon_sym_LPAREN2, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7282), 1, + aux_sym_unquoted_token3, + STATE(4586), 1, + sym__immediate_decimal, + STATE(5282), 1, + sym_comment, + STATE(4974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192155] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + ACTIONS(8694), 1, + sym_identifier, + ACTIONS(8780), 1, + anon_sym_GT2, + STATE(5262), 1, + aux_sym_collection_type_repeat1, + STATE(5283), 1, + sym_comment, + STATE(5509), 1, + sym_val_string, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [192188] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8750), 1, + anon_sym_DASH_DASH, + ACTIONS(8752), 1, + anon_sym_DASH2, + ACTIONS(8784), 1, + anon_sym_as, + STATE(5284), 1, + sym_comment, + STATE(5357), 1, + aux_sym_ctrl_do_repeat1, + STATE(5703), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8782), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192217] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1473), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5294), 1, + STATE(5285), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5889), 1, + STATE(6019), 1, sym_cell_path, - ACTIONS(1873), 5, + ACTIONS(1475), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192465] = 8, - ACTIONS(247), 1, + [192246] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1500), 1, + anon_sym_DASH2, + ACTIONS(8786), 1, + anon_sym_QMARK2, + STATE(5286), 1, + sym_comment, + ACTIONS(1502), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [192269] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1490), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8788), 1, + anon_sym_QMARK2, + STATE(5287), 1, + sym_comment, + ACTIONS(1492), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - STATE(5295), 1, + [192292] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8750), 1, + anon_sym_DASH_DASH, + ACTIONS(8752), 1, + anon_sym_DASH2, + ACTIONS(8792), 1, + anon_sym_as, + STATE(5284), 1, + aux_sym_ctrl_do_repeat1, + STATE(5288), 1, sym_comment, - STATE(5404), 1, + STATE(5703), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8790), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192321] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_RBRACK, + ACTIONS(1800), 1, + sym__entry_separator, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(8794), 1, + anon_sym_DOT_DOT2, + ACTIONS(8798), 1, + sym_filesize_unit, + ACTIONS(8800), 1, + sym_duration_unit, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token2, + STATE(5289), 1, + sym_comment, + STATE(7522), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192356] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5290), 1, + sym_comment, + ACTIONS(1760), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [192377] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8804), 1, + anon_sym_DOT, + STATE(5291), 1, + sym_comment, + STATE(5365), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5723), 1, sym_path, - STATE(5890), 1, + STATE(5922), 1, + sym_cell_path, + ACTIONS(1880), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1884), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [192406] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8618), 1, + aux_sym__immediate_decimal_token2, + STATE(5292), 1, + sym_comment, + ACTIONS(1762), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [192429] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1748), 1, + anon_sym_LPAREN2, + ACTIONS(1752), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1754), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1906), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3769), 1, + anon_sym_DOLLAR, + ACTIONS(8806), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8808), 1, + aux_sym__immediate_decimal_token5, + STATE(432), 1, + sym__immediate_decimal, + STATE(5293), 1, + sym_comment, + STATE(541), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192464] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2010), 1, + anon_sym_DASH2, + ACTIONS(8736), 1, + anon_sym_DOT, + STATE(5294), 1, + sym_comment, + STATE(5456), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, + sym_path, + STATE(6014), 1, sym_cell_path, - ACTIONS(1881), 5, + ACTIONS(2012), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192494] = 8, - ACTIONS(247), 1, + [192493] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + anon_sym_LPAREN2, + ACTIONS(1808), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1906), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8810), 1, + anon_sym_DOLLAR, + ACTIONS(8812), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token5, + STATE(602), 1, + sym__immediate_decimal, + STATE(5295), 1, + sym_comment, + STATE(749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192528] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1972), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5296), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5891), 1, + STATE(6024), 1, sym_cell_path, - ACTIONS(1885), 5, + ACTIONS(1976), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192523] = 8, - ACTIONS(247), 1, + [192557] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(2014), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5297), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5909), 1, + STATE(5892), 1, sym_cell_path, - ACTIONS(1889), 5, + ACTIONS(2016), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192552] = 8, - ACTIONS(247), 1, + [192586] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(2018), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5298), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5911), 1, + STATE(5734), 1, sym_cell_path, - ACTIONS(1893), 5, + ACTIONS(2020), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192581] = 8, - ACTIONS(247), 1, + [192615] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(2022), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5299), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5914), 1, + STATE(5737), 1, sym_cell_path, - ACTIONS(1897), 5, + ACTIONS(2024), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192610] = 8, - ACTIONS(247), 1, + [192644] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(2026), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5300), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5916), 1, + STATE(5742), 1, sym_cell_path, - ACTIONS(1913), 5, + ACTIONS(2028), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192639] = 8, - ACTIONS(247), 1, + [192673] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(2030), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5301), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5928), 1, + STATE(5754), 1, sym_cell_path, - ACTIONS(1917), 5, + ACTIONS(2032), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192668] = 8, - ACTIONS(247), 1, + [192702] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5302), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5929), 1, + STATE(5766), 1, sym_cell_path, - ACTIONS(1921), 5, + ACTIONS(2036), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192697] = 8, - ACTIONS(247), 1, + [192731] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(2171), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5303), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5956), 1, + STATE(5767), 1, sym_cell_path, - ACTIONS(963), 5, + ACTIONS(2173), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192726] = 8, - ACTIONS(247), 1, + [192760] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(8724), 1, - anon_sym_DOT, - STATE(5304), 1, - sym_comment, - STATE(5404), 1, - aux_sym_cell_path_repeat1, - STATE(5633), 1, - sym_path, - STATE(5932), 1, - sym_cell_path, - ACTIONS(1929), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192755] = 8, - ACTIONS(247), 1, + ACTIONS(8659), 1, + aux_sym__immediate_decimal_token2, + STATE(5304), 1, + sym_comment, + ACTIONS(1760), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [192783] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(2042), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5305), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5933), 1, + STATE(5774), 1, sym_cell_path, - ACTIONS(1944), 5, + ACTIONS(2044), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192784] = 8, - ACTIONS(247), 1, + [192812] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2026), 1, + ACTIONS(2046), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5306), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5934), 1, + STATE(5777), 1, sym_cell_path, - ACTIONS(2028), 5, + ACTIONS(2048), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192813] = 8, - ACTIONS(247), 1, + [192841] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2030), 1, + ACTIONS(2050), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5307), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5938), 1, + STATE(5786), 1, sym_cell_path, - ACTIONS(2032), 5, + ACTIONS(2052), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192842] = 8, - ACTIONS(247), 1, + [192870] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(2054), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, STATE(5308), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5941), 1, + STATE(5789), 1, sym_cell_path, - ACTIONS(2036), 5, + ACTIONS(2056), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192871] = 11, - ACTIONS(3), 1, + [192899] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_DOLLAR, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(5442), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5446), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8764), 1, - aux_sym__immediate_decimal_token1, - STATE(2888), 1, - sym__immediate_decimal, - STATE(5309), 1, - sym_comment, - STATE(3049), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192906] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2038), 1, + ACTIONS(2058), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5310), 1, + STATE(5309), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5942), 1, + STATE(5792), 1, sym_cell_path, - ACTIONS(2040), 5, + ACTIONS(2060), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192935] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(5214), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8766), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8768), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8770), 1, - aux_sym__immediate_decimal_token5, - STATE(5311), 1, - sym_comment, - STATE(5767), 1, - sym__immediate_decimal, - STATE(6008), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192970] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3291), 1, - anon_sym_DOLLAR, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8367), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8772), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8774), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8776), 1, - aux_sym__immediate_decimal_token5, - STATE(5312), 1, - sym_comment, - STATE(7211), 1, - sym__immediate_decimal, - STATE(3445), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193005] = 8, - ACTIONS(247), 1, + [192928] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(2062), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5313), 1, + STATE(5310), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5943), 1, + STATE(5793), 1, sym_cell_path, - ACTIONS(1933), 5, + ACTIONS(2064), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [193034] = 8, - ACTIONS(247), 1, + [192957] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2066), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5314), 1, + STATE(5311), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5948), 1, + STATE(5799), 1, sym_cell_path, - ACTIONS(1901), 5, + ACTIONS(2068), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [193063] = 8, - ACTIONS(247), 1, + [192986] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(2070), 1, anon_sym_DASH2, - ACTIONS(8724), 1, + ACTIONS(8736), 1, anon_sym_DOT, - STATE(5315), 1, + STATE(5312), 1, sym_comment, - STATE(5404), 1, + STATE(5456), 1, aux_sym_cell_path_repeat1, - STATE(5633), 1, + STATE(5678), 1, sym_path, - STATE(5949), 1, + STATE(5802), 1, sym_cell_path, - ACTIONS(1909), 5, + ACTIONS(2072), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [193092] = 11, + [193015] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(2721), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(4057), 1, anon_sym_LPAREN2, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7045), 1, + ACTIONS(4061), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7047), 1, + ACTIONS(4063), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4291), 1, + aux_sym_unquoted_token3, + ACTIONS(8816), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(8818), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7190), 1, - aux_sym_unquoted_token3, - STATE(4133), 1, + STATE(1448), 1, sym__immediate_decimal, - STATE(5316), 1, + STATE(5313), 1, sym_comment, - STATE(4291), 2, + STATE(1517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193127] = 11, + [193050] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, + ACTIONS(4069), 1, anon_sym_DOLLAR, - ACTIONS(7039), 1, + ACTIONS(4071), 1, anon_sym_LPAREN2, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7087), 1, + ACTIONS(4073), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7089), 1, + ACTIONS(4075), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4291), 1, + aux_sym_unquoted_token3, + ACTIONS(8820), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7091), 1, + ACTIONS(8822), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7190), 1, - aux_sym_unquoted_token3, - STATE(4436), 1, + STATE(1597), 1, sym__immediate_decimal, - STATE(5317), 1, + STATE(5314), 1, sym_comment, - STATE(4652), 2, + STATE(1731), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193162] = 11, + [193085] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + ACTIONS(8694), 1, + sym_identifier, + ACTIONS(8824), 1, + anon_sym_GT2, + STATE(5315), 1, + sym_comment, + STATE(5316), 1, + aux_sym_collection_type_repeat1, + STATE(5509), 1, + sym_val_string, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [193118] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + ACTIONS(8694), 1, + sym_identifier, + ACTIONS(8826), 1, + anon_sym_GT2, + STATE(5262), 1, + aux_sym_collection_type_repeat1, + STATE(5316), 1, + sym_comment, + STATE(5509), 1, + sym_val_string, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [193151] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string_begin, + ACTIONS(8694), 1, + sym_identifier, + ACTIONS(8828), 1, + anon_sym_GT2, + STATE(5317), 1, + sym_comment, + STATE(5333), 1, + aux_sym_collection_type_repeat1, + STATE(5509), 1, + sym_val_string, + ACTIONS(5723), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5619), 2, + sym__raw_str, + sym__str_double_quotes, + [193184] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5318), 1, + sym_comment, + ACTIONS(1762), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [193205] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8804), 1, + anon_sym_DOT, + STATE(5319), 1, + sym_comment, + STATE(5365), 1, + aux_sym_cell_path_repeat1, + STATE(5723), 1, + sym_path, + STATE(5913), 1, + sym_cell_path, + ACTIONS(1473), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1475), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193234] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3977), 1, + ACTIONS(3577), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, + ACTIONS(4969), 1, aux_sym_unquoted_token3, - ACTIONS(6197), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(8421), 1, + ACTIONS(7063), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8830), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8832), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8834), 1, aux_sym__immediate_decimal_token5, - STATE(5318), 1, - sym_comment, - STATE(6082), 1, + STATE(4099), 1, sym__immediate_decimal, - STATE(6221), 2, + STATE(5320), 1, + sym_comment, + STATE(3598), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193197] = 11, + [193269] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(4866), 1, + ACTIONS(4969), 1, aux_sym_unquoted_token3, - ACTIONS(6197), 1, + ACTIONS(5843), 1, + anon_sym_DOLLAR, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(8579), 1, + ACTIONS(7075), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8836), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8838), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8840), 1, aux_sym__immediate_decimal_token5, - STATE(5319), 1, - sym_comment, - STATE(7686), 1, + STATE(4300), 1, sym__immediate_decimal, - STATE(3445), 2, + STATE(5321), 1, + sym_comment, + STATE(3821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193232] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string_begin, - ACTIONS(8726), 1, - sym_identifier, - ACTIONS(8790), 1, - anon_sym_GT2, - STATE(5281), 1, - aux_sym_collection_type_repeat1, - STATE(5320), 1, - sym_comment, - STATE(5614), 1, - sym_val_string, - ACTIONS(5646), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [193265] = 11, + [193304] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1545), 1, + ACTIONS(3603), 1, anon_sym_DOLLAR, - ACTIONS(1547), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(1551), 1, + ACTIONS(7055), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8842), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1553), 1, + ACTIONS(8844), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1555), 1, + ACTIONS(8846), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1721), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token1, - STATE(385), 1, + STATE(4061), 1, sym__immediate_decimal, - STATE(5321), 1, + STATE(5322), 1, sym_comment, - STATE(500), 2, + STATE(3538), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193300] = 11, + [193339] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1647), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR, - ACTIONS(1649), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(1651), 1, + ACTIONS(7069), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8848), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1653), 1, + ACTIONS(8850), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1655), 1, + ACTIONS(8852), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1721), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token1, - STATE(523), 1, + STATE(4178), 1, sym__immediate_decimal, - STATE(5322), 1, + STATE(5323), 1, sym_comment, - STATE(615), 2, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193335] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string_begin, - ACTIONS(8726), 1, - sym_identifier, - ACTIONS(8796), 1, - anon_sym_GT2, - STATE(5323), 1, - sym_comment, - STATE(5326), 1, - aux_sym_collection_type_repeat1, - STATE(5614), 1, - sym_val_string, - ACTIONS(5646), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [193368] = 8, - ACTIONS(247), 1, + [193374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8748), 1, - anon_sym_DASH_DASH, - ACTIONS(8750), 1, - anon_sym_DASH2, - ACTIONS(8800), 1, - anon_sym_as, STATE(5324), 1, sym_comment, - STATE(5357), 1, - aux_sym_ctrl_do_repeat1, - STATE(5676), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8798), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1768), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [193397] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1770), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [193395] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8748), 1, - anon_sym_DASH_DASH, - ACTIONS(8750), 1, - anon_sym_DASH2, - ACTIONS(8804), 1, - anon_sym_as, + ACTIONS(8854), 1, + aux_sym__immediate_decimal_token2, STATE(5325), 1, sym_comment, - STATE(5329), 1, - aux_sym_ctrl_do_repeat1, - STATE(5676), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8802), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193426] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string_begin, - ACTIONS(8726), 1, + ACTIONS(1822), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 6, sym_identifier, - ACTIONS(8806), 1, - anon_sym_GT2, - STATE(5326), 1, - sym_comment, - STATE(5353), 1, - aux_sym_collection_type_repeat1, - STATE(5614), 1, - sym_val_string, - ACTIONS(5646), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [193459] = 6, - ACTIONS(247), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [193418] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8808), 1, + ACTIONS(8856), 1, anon_sym_DOT, - ACTIONS(8810), 1, + ACTIONS(8858), 1, aux_sym__immediate_decimal_token2, - STATE(5327), 1, + STATE(5326), 1, sym_comment, - ACTIONS(1575), 3, + ACTIONS(1762), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 5, + ACTIONS(1760), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [193484] = 6, - ACTIONS(247), 1, + [193443] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8812), 1, + ACTIONS(8860), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8814), 1, + ACTIONS(8862), 1, aux_sym__immediate_decimal_token2, - STATE(5328), 1, + STATE(5327), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1770), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 5, + ACTIONS(1768), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [193509] = 8, - ACTIONS(247), 1, + [193468] = 11, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8748), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(6448), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(8676), 1, anon_sym_DASH_DASH, - ACTIONS(8750), 1, + ACTIONS(8678), 1, anon_sym_DASH2, - ACTIONS(8818), 1, - anon_sym_as, - STATE(5329), 1, + STATE(5328), 1, sym_comment, - STATE(5357), 1, + STATE(5389), 1, aux_sym_ctrl_do_repeat1, - STATE(5676), 2, + STATE(5414), 1, + sym_val_variable, + STATE(6358), 1, + sym__variable_name, + STATE(6172), 2, sym_short_flag, sym_long_flag, - ACTIONS(8816), 4, + [193503] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8864), 1, + anon_sym_DOT, + ACTIONS(8866), 1, + aux_sym__immediate_decimal_token2, + STATE(5329), 1, + sym_comment, + ACTIONS(1760), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193528] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1479), 1, + anon_sym_DASH2, + ACTIONS(8587), 1, + anon_sym_DOT, + STATE(5330), 1, + sym_comment, + STATE(5337), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(1481), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [193538] = 11, + anon_sym_as, + [193555] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2629), 1, - anon_sym_DOLLAR, ACTIONS(4017), 1, + anon_sym_DOLLAR, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(4021), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4023), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4553), 1, - aux_sym_unquoted_token3, - ACTIONS(8820), 1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8822), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(1426), 1, - sym__immediate_decimal, - STATE(5330), 1, + STATE(5331), 1, sym_comment, - STATE(1517), 2, + STATE(6090), 1, + sym__immediate_decimal, + STATE(6146), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193573] = 11, + [193590] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4033), 1, + ACTIONS(4201), 1, anon_sym_DOLLAR, - ACTIONS(4035), 1, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(4037), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4039), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4553), 1, - aux_sym_unquoted_token3, - ACTIONS(8824), 1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8826), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(1581), 1, - sym__immediate_decimal, - STATE(5331), 1, + STATE(5332), 1, sym_comment, - STATE(1845), 2, + STATE(7515), 1, + sym__immediate_decimal, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193608] = 10, - ACTIONS(247), 1, + [193625] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_DQUOTE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, sym_raw_string_begin, - ACTIONS(8726), 1, + ACTIONS(8694), 1, sym_identifier, - ACTIONS(8828), 1, + ACTIONS(8880), 1, anon_sym_GT2, - STATE(5332), 1, - sym_comment, - STATE(5333), 1, + STATE(5262), 1, aux_sym_collection_type_repeat1, - STATE(5614), 1, - sym_val_string, - ACTIONS(5646), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [193641] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string_begin, - ACTIONS(8726), 1, - sym_identifier, - ACTIONS(8830), 1, - anon_sym_GT2, STATE(5333), 1, sym_comment, - STATE(5353), 1, - aux_sym_collection_type_repeat1, - STATE(5614), 1, + STATE(5509), 1, sym_val_string, - ACTIONS(5646), 2, + ACTIONS(5723), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5539), 2, + STATE(5619), 2, sym__raw_str, sym__str_double_quotes, - [193674] = 4, - ACTIONS(247), 1, + [193658] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8882), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8884), 1, + aux_sym__immediate_decimal_token2, STATE(5334), 1, sym_comment, - ACTIONS(1573), 3, - anon_sym_DASH2, + ACTIONS(1890), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193695] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [193683] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(5335), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH2, + ACTIONS(1820), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193716] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [193704] = 9, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + ACTIONS(8886), 1, + sym_filesize_unit, + ACTIONS(8888), 1, + sym_duration_unit, STATE(5336), 1, sym_comment, - ACTIONS(1681), 3, + ACTIONS(1788), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 7, + ACTIONS(1800), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193737] = 11, + [193735] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_DASH2, + ACTIONS(8890), 1, + anon_sym_DOT, + STATE(5625), 1, + sym_path, + STATE(5337), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193760] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3517), 1, - anon_sym_DOLLAR, - ACTIONS(4956), 1, - aux_sym_unquoted_token3, - ACTIONS(6333), 1, + ACTIONS(5465), 1, anon_sym_LPAREN2, - ACTIONS(7033), 1, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5471), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8832), 1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8395), 1, + anon_sym_DOLLAR, + ACTIONS(8397), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token5, + STATE(2813), 1, + sym__immediate_decimal, + STATE(5338), 1, + sym_comment, + STATE(2910), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193795] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5527), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8834), 1, + ACTIONS(5529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8893), 1, + anon_sym_DOLLAR, + ACTIONS(8895), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8836), 1, + ACTIONS(8897), 1, aux_sym__immediate_decimal_token5, - STATE(4094), 1, + STATE(3063), 1, sym__immediate_decimal, - STATE(5337), 1, + STATE(5339), 1, sym_comment, - STATE(3572), 2, + STATE(3105), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193772] = 11, + [193830] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1990), 1, + anon_sym_DASH2, + ACTIONS(8736), 1, + anon_sym_DOT, + STATE(5340), 1, + sym_comment, + STATE(5456), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, + sym_path, + STATE(5761), 1, + sym_cell_path, + ACTIONS(1992), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [193859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token3, - ACTIONS(5805), 1, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token2, + STATE(5341), 1, + sym_comment, + ACTIONS(1768), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193884] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5342), 1, + sym_comment, + ACTIONS(1866), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1868), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [193905] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8535), 1, + anon_sym_DASH2, + STATE(5343), 1, + sym_comment, + ACTIONS(5829), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6333), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193926] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3181), 1, + anon_sym_DOLLAR, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(7055), 1, + ACTIONS(8121), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8838), 1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8840), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8842), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token5, - STATE(4304), 1, - sym__immediate_decimal, - STATE(5338), 1, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token3, + STATE(5344), 1, sym_comment, - STATE(3754), 2, + STATE(5687), 1, + sym__immediate_decimal, + STATE(5744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193807] = 4, - ACTIONS(247), 1, + [193961] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5339), 1, + STATE(5345), 1, sym_comment, - ACTIONS(1761), 3, + ACTIONS(1760), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1763), 7, + ACTIONS(1762), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -398531,1615 +536719,1519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193828] = 11, - ACTIONS(3), 1, + [193982] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8750), 1, + anon_sym_DASH_DASH, + ACTIONS(8752), 1, + anon_sym_DASH2, + ACTIONS(8905), 1, + anon_sym_as, + STATE(5274), 1, + aux_sym_ctrl_do_repeat1, + STATE(5346), 1, + sym_comment, + STATE(5703), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8903), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194011] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3491), 1, + STATE(5347), 1, + sym_comment, + ACTIONS(1768), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 7, anon_sym_DOLLAR, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(6197), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194032] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1726), 1, + anon_sym_EQ_GT, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(7011), 1, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3612), 1, + sym__immediate_decimal, + STATE(5348), 1, + sym_comment, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8844), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8846), 1, + STATE(3440), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194065] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1994), 1, + anon_sym_DASH2, + ACTIONS(8736), 1, + anon_sym_DOT, + STATE(5349), 1, + sym_comment, + STATE(5456), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, + sym_path, + STATE(5895), 1, + sym_cell_path, + ACTIONS(1996), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194094] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1742), 1, + anon_sym_EQ_GT, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8848), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(4081), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3627), 1, sym__immediate_decimal, - STATE(5340), 1, + STATE(5350), 1, sym_comment, - STATE(3522), 2, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3444), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193863] = 11, + [194127] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4329), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - aux_sym_unquoted_token3, - ACTIONS(6197), 1, + ACTIONS(4099), 1, anon_sym_LPAREN2, - ACTIONS(7025), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(4103), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(4105), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4635), 1, + aux_sym_unquoted_token3, + ACTIONS(8907), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(8909), 1, aux_sym__immediate_decimal_token5, - STATE(4151), 1, + STATE(1497), 1, sym__immediate_decimal, - STATE(5341), 1, + STATE(5351), 1, sym_comment, - STATE(3445), 2, + STATE(1639), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193898] = 5, - ACTIONS(247), 1, + [194162] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8549), 1, - aux_sym__immediate_decimal_token2, - STATE(5342), 1, + STATE(5352), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1820), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1822), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193921] = 5, - ACTIONS(247), 1, + [194183] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token2, - STATE(5343), 1, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8329), 1, + anon_sym_DOLLAR, + ACTIONS(8433), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8435), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8437), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8439), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token3, + STATE(5353), 1, sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193944] = 5, - ACTIONS(247), 1, + STATE(6380), 1, + sym__immediate_decimal, + STATE(6912), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194218] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1294), 1, - anon_sym_DASH2, - ACTIONS(8858), 1, - sym__newline, - STATE(5344), 2, + STATE(5354), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1866), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1868), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193967] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token2, - STATE(5345), 1, - sym_comment, - ACTIONS(1573), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1575), 6, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [193990] = 5, + [194239] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, - aux_sym__immediate_decimal_token2, - STATE(5346), 1, + ACTIONS(8804), 1, + anon_sym_DOT, + STATE(5355), 1, sym_comment, - ACTIONS(1681), 3, + STATE(5365), 1, + aux_sym_cell_path_repeat1, + STATE(5723), 1, + sym_path, + STATE(5881), 1, + sym_cell_path, + ACTIONS(1886), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1683), 6, - anon_sym_LPAREN2, + ACTIONS(1888), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [194013] = 4, - ACTIONS(247), 1, + [194268] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5347), 1, + ACTIONS(8638), 1, + aux_sym__immediate_decimal_token2, + STATE(5356), 1, sym_comment, - ACTIONS(1575), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [194034] = 11, - ACTIONS(247), 1, + [194291] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8649), 1, + ACTIONS(8913), 1, anon_sym_DASH_DASH, - ACTIONS(8651), 1, + ACTIONS(8916), 1, anon_sym_DASH2, - STATE(5348), 1, + STATE(5357), 2, sym_comment, - STATE(5392), 1, aux_sym_ctrl_do_repeat1, - STATE(5398), 1, - sym_val_variable, - STATE(6365), 1, - sym__variable_name, - STATE(6035), 2, + STATE(5703), 2, sym_short_flag, sym_long_flag, - [194069] = 4, - ACTIONS(247), 1, + ACTIONS(8911), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [194316] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5349), 1, + ACTIONS(8919), 1, + aux_sym__immediate_decimal_token2, + STATE(5358), 1, sym_comment, - ACTIONS(1587), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1820), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [194090] = 4, - ACTIONS(247), 1, + [194339] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5350), 1, + ACTIONS(2038), 1, + anon_sym_DASH2, + ACTIONS(8736), 1, + anon_sym_DOT, + STATE(5359), 1, sym_comment, - ACTIONS(1683), 4, + STATE(5456), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, + sym_path, + STATE(5769), 1, + sym_cell_path, + ACTIONS(2040), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194368] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, anon_sym_DOLLAR, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3452), 1, + sym__immediate_decimal, + STATE(5360), 1, + sym_comment, + ACTIONS(8604), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3449), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194398] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_DASH2, + STATE(5361), 1, + sym_comment, + ACTIONS(1498), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [194418] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8921), 1, + aux_sym__immediate_decimal_token2, + STATE(5362), 1, + sym_comment, + ACTIONS(1820), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [194111] = 4, - ACTIONS(247), 1, + [194440] = 9, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5351), 1, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8923), 1, + anon_sym_DOLLAR, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token5, + STATE(5363), 1, sym_comment, - ACTIONS(1763), 4, + STATE(6091), 1, + sym__immediate_decimal, + ACTIONS(8121), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194470] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6249), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8299), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1761), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194132] = 8, + STATE(3633), 1, + sym__immediate_decimal, + STATE(5364), 1, + sym_comment, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3453), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194500] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, + ACTIONS(8804), 1, anon_sym_DOT, - STATE(5352), 1, + STATE(5365), 1, sym_comment, - STATE(5459), 1, + STATE(5372), 1, aux_sym_cell_path_repeat1, - STATE(5675), 1, + STATE(5723), 1, sym_path, - STATE(6003), 1, - sym_cell_path, - ACTIONS(1747), 3, + ACTIONS(1479), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1749), 3, + ACTIONS(1481), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [194161] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8863), 1, - sym_identifier, - ACTIONS(8866), 1, - anon_sym_GT2, - ACTIONS(8868), 1, - anon_sym_DQUOTE, - ACTIONS(8874), 1, - sym_raw_string_begin, - STATE(5614), 1, - sym_val_string, - ACTIONS(8871), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5353), 2, - sym_comment, - aux_sym_collection_type_repeat1, - STATE(5539), 2, - sym__raw_str, - sym__str_double_quotes, - [194192] = 10, - ACTIONS(247), 1, + [194526] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1557), 1, - anon_sym_EQ_GT, - ACTIONS(6197), 1, + ACTIONS(6357), 1, + anon_sym_DOLLAR, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3615), 1, + STATE(3733), 1, sym__immediate_decimal, - STATE(5354), 1, + STATE(5366), 1, sym_comment, - ACTIONS(6285), 2, + ACTIONS(6363), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3451), 2, + STATE(3598), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194225] = 10, - ACTIONS(247), 1, + [194556] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1659), 1, - anon_sym_EQ_GT, - ACTIONS(6197), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(8929), 1, + anon_sym_DOLLAR, + ACTIONS(8931), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8933), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3625), 1, + STATE(4461), 1, sym__immediate_decimal, - STATE(5355), 1, + STATE(5367), 1, sym_comment, - ACTIONS(6285), 2, + ACTIONS(7121), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3426), 2, + STATE(4792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194258] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_DOT, - STATE(5356), 1, - sym_comment, - STATE(5459), 1, - aux_sym_cell_path_repeat1, - STATE(5675), 1, - sym_path, - STATE(5772), 1, - sym_cell_path, - ACTIONS(1733), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1737), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194287] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8879), 1, - anon_sym_DASH_DASH, - ACTIONS(8882), 1, - anon_sym_DASH2, - STATE(5357), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5676), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8877), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [194312] = 8, - ACTIONS(247), 1, + [194586] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_DOT, - STATE(3196), 1, - sym_cell_path, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, - sym_path, - STATE(5358), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8451), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token5, + STATE(5368), 1, sym_comment, - ACTIONS(961), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(963), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194341] = 6, - ACTIONS(247), 1, + STATE(7197), 1, + sym__immediate_decimal, + ACTIONS(8449), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3454), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194616] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(8935), 1, anon_sym_DOT, - ACTIONS(8887), 1, + ACTIONS(8937), 1, aux_sym__immediate_decimal_token2, - STATE(5359), 1, + STATE(5369), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 5, + ACTIONS(1762), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194365] = 8, - ACTIONS(247), 1, + [194640] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4835), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5360), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1893), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1800), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194393] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4904), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5361), 1, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + ACTIONS(8939), 1, + sym_filesize_unit, + ACTIONS(8941), 1, + sym_duration_unit, + STATE(5370), 1, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1897), 4, + ACTIONS(1788), 2, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194421] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1911), 1, anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4910), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5362), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1913), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194449] = 8, - ACTIONS(247), 1, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194670] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4943), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5363), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1917), 4, - sym_identifier, + ACTIONS(7107), 1, + anon_sym_LPAREN2, + ACTIONS(8943), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194477] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4965), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5364), 1, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8947), 1, + aux_sym__immediate_decimal_token5, + STATE(4905), 1, + sym__immediate_decimal, + STATE(5371), 1, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1921), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194505] = 8, - ACTIONS(247), 1, + ACTIONS(7187), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4881), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194700] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8949), 1, anon_sym_DOT, - STATE(4968), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5365), 1, - sym_comment, - STATE(5393), 1, + STATE(5723), 1, sym_path, - ACTIONS(1929), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194533] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1942), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4971), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5366), 1, + STATE(5372), 2, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1944), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194561] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2026), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4983), 1, - sym_cell_path, - STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5367), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(2028), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194589] = 8, - ACTIONS(247), 1, + ACTIONS(1483), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1485), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [194724] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2030), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4997), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5368), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(2032), 4, - sym_identifier, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194617] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2034), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4882), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5369), 1, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(5373), 1, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(2036), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194645] = 8, - ACTIONS(247), 1, + STATE(7556), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3454), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194754] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2038), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4921), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5370), 1, - sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(2040), 4, - sym_identifier, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8952), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194673] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4923), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5371), 1, + STATE(5374), 1, sym_comment, - STATE(5393), 1, - sym_path, - ACTIONS(1933), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194701] = 8, - ACTIONS(247), 1, + STATE(7473), 1, + sym__immediate_decimal, + ACTIONS(8331), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6912), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194784] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2058), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4975), 1, + STATE(4885), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5372), 1, + STATE(5375), 1, sym_comment, - STATE(5393), 1, + STATE(5495), 1, sym_path, - ACTIONS(1901), 4, + ACTIONS(2060), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [194729] = 8, - ACTIONS(247), 1, + [194812] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1907), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(4986), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5373), 1, - sym_comment, - STATE(5393), 1, + STATE(1909), 1, sym_path, - ACTIONS(1909), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194757] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5374), 1, - sym_comment, - ACTIONS(1683), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194777] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token2, - STATE(5375), 1, - sym_comment, - ACTIONS(1573), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194799] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8889), 1, - anon_sym_EQ2, - ACTIONS(8891), 1, - sym_short_flag_identifier, + STATE(2131), 1, + sym_cell_path, STATE(5376), 1, sym_comment, - ACTIONS(4976), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4974), 4, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1992), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - [194823] = 4, - ACTIONS(247), 1, + [194838] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + anon_sym_DASH_DASH, + ACTIONS(8678), 1, anon_sym_DASH2, + ACTIONS(8956), 1, + sym_identifier, STATE(5377), 1, sym_comment, - ACTIONS(992), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194843] = 4, - ACTIONS(247), 1, + STATE(5435), 1, + aux_sym_ctrl_do_repeat1, + STATE(7049), 1, + sym__variable_name, + STATE(7325), 1, + sym_val_variable, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [194870] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(8337), 1, + anon_sym_DOLLAR, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, STATE(5378), 1, sym_comment, - ACTIONS(996), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194863] = 4, - ACTIONS(247), 1, + STATE(6049), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6146), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194900] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DASH2, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8952), 1, + anon_sym_DOLLAR, + ACTIONS(8958), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8960), 1, + aux_sym__immediate_decimal_token5, STATE(5379), 1, sym_comment, - ACTIONS(1000), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194883] = 4, - ACTIONS(247), 1, + STATE(6780), 1, + sym__immediate_decimal, + ACTIONS(8493), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7240), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194930] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DASH2, + ACTIONS(8740), 1, + aux_sym__immediate_decimal_token2, STATE(5380), 1, sym_comment, - ACTIONS(1004), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1872), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194903] = 9, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [194952] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(8929), 1, + anon_sym_DOLLAR, + ACTIONS(8962), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(8964), 1, aux_sym__immediate_decimal_token5, - STATE(3669), 1, + STATE(4791), 1, sym__immediate_decimal, STATE(5381), 1, sym_comment, - ACTIONS(6201), 2, + ACTIONS(7153), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3522), 2, + STATE(4624), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194933] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(8649), 1, - anon_sym_DASH_DASH, - ACTIONS(8651), 1, - anon_sym_DASH2, - STATE(5382), 1, - sym_comment, - STATE(5392), 1, - aux_sym_ctrl_do_repeat1, - STATE(5398), 1, - sym_val_variable, - STATE(6365), 1, - sym__variable_name, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [194965] = 8, - ACTIONS(247), 1, + [194982] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(4915), 1, aux_sym_unquoted_token2, - ACTIONS(8893), 1, + ACTIONS(8966), 1, anon_sym_DOT_DOT2, - ACTIONS(8897), 1, + ACTIONS(8970), 1, sym_filesize_unit, - ACTIONS(8899), 1, + ACTIONS(8972), 1, sym_duration_unit, - STATE(5383), 1, + STATE(5382), 1, sym_comment, - ACTIONS(8895), 2, + ACTIONS(8968), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 3, + ACTIONS(1800), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [194993] = 9, - ACTIONS(247), 1, + [195010] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6239), 1, + anon_sym_DOLLAR, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, + STATE(3714), 1, + sym__immediate_decimal, + STATE(5383), 1, + sym_comment, + ACTIONS(6245), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3538), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195040] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, anon_sym_DOLLAR, - STATE(3610), 1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + STATE(3633), 1, sym__immediate_decimal, STATE(5384), 1, sym_comment, - ACTIONS(6285), 2, + ACTIONS(8604), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3445), 2, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195023] = 4, - ACTIONS(247), 1, + [195070] = 9, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(4071), 1, + anon_sym_LPAREN2, + ACTIONS(4077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4079), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + STATE(1572), 1, + sym__immediate_decimal, STATE(5385), 1, sym_comment, - ACTIONS(1763), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1761), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [195043] = 9, - ACTIONS(247), 1, + ACTIONS(4075), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1790), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195100] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8417), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3452), 1, + sym__immediate_decimal, STATE(5386), 1, sym_comment, - STATE(6050), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6221), 2, + STATE(3449), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195073] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8901), 1, - anon_sym_LT, - STATE(5387), 1, - sym_comment, - ACTIONS(8019), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [195093] = 9, - ACTIONS(247), 1, + [195130] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(6404), 1, anon_sym_DOLLAR, - ACTIONS(8423), 1, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token5, - STATE(3610), 1, + STATE(4244), 1, sym__immediate_decimal, - STATE(5388), 1, + STATE(5387), 1, sym_comment, - ACTIONS(8551), 2, + ACTIONS(7075), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3445), 2, + STATE(3801), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195123] = 9, - ACTIONS(247), 1, + [195160] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(4071), 1, anon_sym_LPAREN2, - ACTIONS(6339), 1, + ACTIONS(4583), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, + ACTIONS(4585), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, + ACTIONS(8301), 1, anon_sym_DOLLAR, - STATE(3972), 1, + STATE(1789), 1, sym__immediate_decimal, - STATE(5389), 1, + STATE(5388), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(4581), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3754), 2, + STATE(1788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195153] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token2, - STATE(5390), 1, - sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195175] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token2, - STATE(5391), 1, - sym_comment, - ACTIONS(1573), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195197] = 10, - ACTIONS(247), 1, + [195190] = 10, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6420), 1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - ACTIONS(8649), 1, + ACTIONS(8676), 1, anon_sym_DASH_DASH, - ACTIONS(8651), 1, + ACTIONS(8678), 1, anon_sym_DASH2, - STATE(5392), 1, + STATE(5389), 1, sym_comment, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(5693), 1, + STATE(5650), 1, aux_sym_ctrl_do_repeat1, - STATE(6744), 1, + STATE(6713), 1, sym__variable_name, - STATE(6035), 2, + STATE(6172), 2, sym_short_flag, sym_long_flag, - [195229] = 4, - ACTIONS(247), 1, + [195222] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(1246), 1, anon_sym_DASH2, - STATE(5393), 1, + STATE(5390), 1, sym_comment, - ACTIONS(1008), 8, - anon_sym_EQ, + ACTIONS(1244), 8, sym_identifier, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [195249] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8905), 1, - anon_sym_DASH_DASH, - ACTIONS(8907), 1, - anon_sym_DASH2, - ACTIONS(8909), 1, - anon_sym_as, - STATE(5394), 1, - sym_comment, - STATE(5428), 1, - aux_sym_ctrl_do_repeat1, - STATE(5998), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8816), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [195277] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8911), 1, - sym_long_flag_identifier, - ACTIONS(8913), 1, - anon_sym_EQ2, - STATE(5395), 1, - sym_comment, - ACTIONS(4970), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4968), 5, - sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - [195301] = 10, - ACTIONS(247), 1, + [195242] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6369), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6349), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, - anon_sym_DASH_DASH, - ACTIONS(8651), 1, - anon_sym_DASH2, - ACTIONS(8915), 1, - sym_identifier, - STATE(5396), 1, + ACTIONS(7071), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token5, + STATE(4212), 1, + sym__immediate_decimal, + STATE(5391), 1, sym_comment, - STATE(5693), 1, - aux_sym_ctrl_do_repeat1, - STATE(7086), 1, + ACTIONS(7069), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3454), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7259), 1, - sym__variable_name, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [195333] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8919), 1, - anon_sym_DASH2, - STATE(5397), 1, - sym_comment, - ACTIONS(8917), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - [195353] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8923), 1, - anon_sym_DASH2, - STATE(5398), 1, - sym_comment, - ACTIONS(8921), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - [195373] = 10, - ACTIONS(247), 1, + [195272] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6369), 1, + ACTIONS(5523), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, - anon_sym_DASH_DASH, - ACTIONS(8651), 1, - anon_sym_DASH2, - ACTIONS(8915), 1, - sym_identifier, - STATE(5396), 1, - aux_sym_ctrl_do_repeat1, - STATE(5399), 1, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token5, + STATE(3118), 1, + sym__immediate_decimal, + STATE(5392), 1, sym_comment, - STATE(7086), 1, + ACTIONS(5620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3117), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7183), 1, - sym__variable_name, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [195405] = 7, - ACTIONS(247), 1, + [195302] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2128), 1, - sym_cell_path, - STATE(5400), 1, + ACTIONS(8117), 1, + anon_sym_LPAREN2, + ACTIONS(8952), 1, + anon_sym_DOLLAR, + ACTIONS(8974), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8976), 1, + aux_sym__immediate_decimal_token5, + STATE(5393), 1, sym_comment, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1861), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [195431] = 9, - ACTIONS(247), 1, + STATE(6724), 1, + sym__immediate_decimal, + ACTIONS(8433), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7240), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195332] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7073), 1, + ACTIONS(7206), 1, anon_sym_LPAREN2, - ACTIONS(8927), 1, + ACTIONS(7238), 1, anon_sym_DOLLAR, - ACTIONS(8929), 1, + ACTIONS(7244), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8931), 1, + ACTIONS(7246), 1, aux_sym__immediate_decimal_token5, - STATE(4544), 1, + STATE(4639), 1, sym__immediate_decimal, - STATE(5401), 1, + STATE(5394), 1, sym_comment, - ACTIONS(7119), 2, + ACTIONS(7242), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4945), 2, + STATE(5033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195461] = 5, - ACTIONS(3), 1, + [195362] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8700), 1, - aux_sym__immediate_decimal_token2, - STATE(5402), 1, - sym_comment, - ACTIONS(1765), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 4, + ACTIONS(7206), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195483] = 5, - ACTIONS(3), 1, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7238), 1, + anon_sym_DOLLAR, + STATE(5032), 1, + sym__immediate_decimal, + STATE(5395), 1, + sym_comment, + ACTIONS(7296), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195392] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8933), 1, - aux_sym__immediate_decimal_token2, - STATE(5403), 1, + STATE(5396), 1, sym_comment, - ACTIONS(1681), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 5, - sym__space, + ACTIONS(1770), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1768), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [195505] = 7, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [195412] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8724), 1, - anon_sym_DOT, - STATE(5404), 1, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(8978), 1, + anon_sym_DOLLAR, + ACTIONS(8980), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8982), 1, + aux_sym__immediate_decimal_token5, + STATE(2919), 1, + sym__immediate_decimal, + STATE(5397), 1, sym_comment, - STATE(5429), 1, - aux_sym_cell_path_repeat1, - STATE(5633), 1, - sym_path, - ACTIONS(969), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [195531] = 9, - ACTIONS(247), 1, + ACTIONS(8698), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3083), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195442] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(5559), 1, + ACTIONS(8978), 1, + anon_sym_DOLLAR, + ACTIONS(8986), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5561), 1, + ACTIONS(8988), 1, aux_sym__immediate_decimal_token5, - STATE(3036), 1, + STATE(3082), 1, sym__immediate_decimal, - STATE(5405), 1, + STATE(5398), 1, sym_comment, - ACTIONS(5557), 2, + ACTIONS(8984), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3157), 2, + STATE(3081), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195561] = 9, - ACTIONS(247), 1, + [195472] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4487), 1, + ACTIONS(1804), 1, + anon_sym_DOLLAR, + ACTIONS(1806), 1, anon_sym_LPAREN2, - ACTIONS(4493), 1, + ACTIONS(1812), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4495), 1, + ACTIONS(1814), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8565), 1, - anon_sym_DOLLAR, - STATE(1704), 1, + STATE(586), 1, sym__immediate_decimal, - STATE(5406), 1, + STATE(5399), 1, sym_comment, - ACTIONS(4491), 2, + ACTIONS(1810), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1907), 2, + STATE(732), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195591] = 9, - ACTIONS(247), 1, + [195502] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6331), 1, + ACTIONS(1804), 1, anon_sym_DOLLAR, - ACTIONS(6333), 1, + ACTIONS(1806), 1, anon_sym_LPAREN2, - ACTIONS(6339), 1, + ACTIONS(1862), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, + ACTIONS(1864), 1, aux_sym__immediate_decimal_token5, - STATE(3796), 1, + STATE(776), 1, sym__immediate_decimal, - STATE(5407), 1, + STATE(5400), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(1860), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3572), 2, + STATE(752), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195621] = 5, - ACTIONS(247), 1, + [195532] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(8992), 1, anon_sym_DASH2, - ACTIONS(8935), 1, - anon_sym_QMARK2, - STATE(5408), 1, + STATE(5401), 1, sym_comment, - ACTIONS(980), 7, + ACTIONS(8990), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [195643] = 9, - ACTIONS(247), 1, + [195552] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(6420), 1, + ACTIONS(8994), 1, anon_sym_DOLLAR, - ACTIONS(8581), 1, + ACTIONS(8996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, + ACTIONS(8998), 1, aux_sym__immediate_decimal_token5, - STATE(5409), 1, - sym_comment, - STATE(7710), 1, + STATE(564), 1, sym__immediate_decimal, - ACTIONS(8579), 2, + STATE(5402), 1, + sym_comment, + ACTIONS(8744), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3429), 2, + STATE(656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195673] = 9, - ACTIONS(247), 1, + [195582] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(6339), 1, + ACTIONS(8994), 1, + anon_sym_DOLLAR, + ACTIONS(9002), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, + ACTIONS(9004), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3822), 1, + STATE(654), 1, sym__immediate_decimal, - STATE(5410), 1, + STATE(5403), 1, sym_comment, - ACTIONS(6371), 2, + ACTIONS(9000), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3821), 2, + STATE(652), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195703] = 9, - ACTIONS(247), 1, + [195612] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - STATE(3991), 1, - sym__immediate_decimal, - STATE(5411), 1, + ACTIONS(2062), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4893), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5404), 1, sym_comment, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3828), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195733] = 6, + STATE(5495), 1, + sym_path, + ACTIONS(2064), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195640] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9006), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8939), 1, + ACTIONS(9008), 1, aux_sym__immediate_decimal_token2, - STATE(5412), 1, + STATE(5405), 1, sym_comment, - ACTIONS(1739), 3, + ACTIONS(1890), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 4, + ACTIONS(1892), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [195757] = 4, - ACTIONS(247), 1, + [195664] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DASH2, - STATE(5413), 1, + STATE(5406), 1, sym_comment, - ACTIONS(1012), 8, - anon_sym_EQ, + ACTIONS(1822), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195684] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9010), 1, + anon_sym_DOT, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token2, + STATE(5407), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 5, sym__newline, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195708] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6448), 1, anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(8676), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(8678), 1, + anon_sym_DASH2, + STATE(5389), 1, + aux_sym_ctrl_do_repeat1, + STATE(5408), 1, + sym_comment, + STATE(5414), 1, + sym_val_variable, + STATE(6358), 1, + sym__variable_name, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [195740] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8858), 1, + aux_sym__immediate_decimal_token2, + STATE(5409), 1, + sym_comment, + ACTIONS(1762), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195762] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2066), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, anon_sym_DOT, - [195777] = 5, - ACTIONS(247), 1, + STATE(4901), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5410), 1, + sym_comment, + STATE(5495), 1, + sym_path, + ACTIONS(2068), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195790] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(9014), 1, + anon_sym_DOLLAR, + ACTIONS(9016), 1, + anon_sym_DASH_DASH, + ACTIONS(9018), 1, + anon_sym_DASH2, + STATE(5411), 1, + sym_comment, + STATE(5414), 1, + sym_val_variable, + STATE(6237), 1, + sym__variable_name, + STATE(6817), 2, + sym_short_flag, + sym_long_flag, + [195822] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5412), 1, + sym_comment, + ACTIONS(1868), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195842] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9020), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9022), 1, + aux_sym__immediate_decimal_token2, + STATE(5413), 1, + sym_comment, + ACTIONS(1768), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1770), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195866] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9026), 1, + anon_sym_DASH2, + STATE(5414), 1, + sym_comment, + ACTIONS(9024), 8, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + [195886] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8810), 1, + ACTIONS(9028), 1, aux_sym__immediate_decimal_token2, - STATE(5414), 1, + STATE(5415), 1, sym_comment, - ACTIONS(1575), 3, + ACTIONS(1822), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 5, + ACTIONS(1820), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195799] = 4, - ACTIONS(247), 1, + [195908] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4159), 1, + anon_sym_LPAREN2, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4167), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8593), 1, + anon_sym_DOLLAR, + STATE(1654), 1, + sym__immediate_decimal, + STATE(5416), 1, + sym_comment, + ACTIONS(4163), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1865), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195938] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(2070), 1, anon_sym_DASH2, - STATE(5415), 1, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4909), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5417), 1, sym_comment, - ACTIONS(1016), 8, - anon_sym_EQ, + STATE(5495), 1, + sym_path, + ACTIONS(2072), 4, sym_identifier, - sym__newline, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - [195819] = 7, - ACTIONS(247), 1, + [195966] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(3196), 1, - sym_cell_path, - STATE(5416), 1, + ACTIONS(9030), 1, + anon_sym_EQ2, + ACTIONS(9032), 1, + sym_short_flag_identifier, + STATE(5418), 1, sym_comment, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - ACTIONS(963), 5, + ACTIONS(5022), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(5020), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - [195845] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8101), 1, - aux_sym__immediate_decimal_token5, - STATE(5417), 1, - sym_comment, - STATE(6346), 1, - sym__immediate_decimal, - ACTIONS(8097), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195875] = 5, - ACTIONS(247), 1, + [195990] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8941), 1, - aux_sym__immediate_decimal_token2, - STATE(5418), 1, + STATE(5419), 1, sym_comment, - ACTIONS(1683), 3, - anon_sym_DOLLAR, + ACTIONS(1762), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, + ACTIONS(1760), 6, sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195897] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4487), 1, - anon_sym_LPAREN2, - ACTIONS(4579), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4581), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8565), 1, - anon_sym_DOLLAR, - STATE(1906), 1, - sym__immediate_decimal, - STATE(5419), 1, - sym_comment, - ACTIONS(4577), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1905), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195927] = 6, - ACTIONS(247), 1, + [196010] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8943), 1, - anon_sym_DOT, - ACTIONS(8945), 1, + ACTIONS(8866), 1, aux_sym__immediate_decimal_token2, STATE(5420), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1760), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1762), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195951] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8947), 1, - anon_sym_DOLLAR, - ACTIONS(8949), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, - aux_sym__immediate_decimal_token5, - STATE(5421), 1, - sym_comment, - STATE(6103), 1, - sym__immediate_decimal, - ACTIONS(8169), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195981] = 9, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [196032] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(3610), 1, + STATE(3633), 1, sym__immediate_decimal, - STATE(5422), 1, + STATE(5421), 1, sym_comment, - ACTIONS(6285), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3445), 2, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196011] = 5, - ACTIONS(247), 1, + [196062] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(1500), 1, anon_sym_DASH2, - ACTIONS(8953), 1, + ACTIONS(9034), 1, anon_sym_QMARK2, - STATE(5423), 1, + STATE(5422), 1, sym_comment, - ACTIONS(986), 7, + ACTIONS(1502), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -400147,1841 +538239,1756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_as, anon_sym_DOT, - [196033] = 4, - ACTIONS(247), 1, + [196084] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5424), 1, + ACTIONS(9036), 1, + anon_sym_DOT, + ACTIONS(9038), 1, + aux_sym__immediate_decimal_token2, + STATE(5423), 1, sym_comment, - ACTIONS(1575), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [196053] = 9, - ACTIONS(247), 1, + ACTIONS(1874), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196108] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2098), 1, + sym_cell_path, + STATE(5424), 1, + sym_comment, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1996), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [196134] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7039), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8955), 1, + ACTIONS(6448), 1, anon_sym_DOLLAR, - ACTIONS(8957), 1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8959), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - STATE(4514), 1, + STATE(3608), 1, sym__immediate_decimal, STATE(5425), 1, sym_comment, - ACTIONS(7085), 2, + ACTIONS(8604), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4697), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196083] = 9, - ACTIONS(247), 1, + [196164] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - ACTIONS(8369), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8371), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1490), 1, + anon_sym_DASH2, + ACTIONS(9040), 1, + anon_sym_QMARK2, STATE(5426), 1, sym_comment, - STATE(7124), 1, - sym__immediate_decimal, - ACTIONS(8367), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196113] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2124), 1, - sym_cell_path, - STATE(5427), 1, - sym_comment, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1865), 5, + ACTIONS(1492), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [196139] = 6, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_DOT, + [196186] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8961), 1, + ACTIONS(9042), 1, anon_sym_DASH_DASH, - ACTIONS(8964), 1, + ACTIONS(9044), 1, anon_sym_DASH2, - STATE(5428), 2, + ACTIONS(9046), 1, + anon_sym_as, + STATE(5427), 1, sym_comment, + STATE(5452), 1, aux_sym_ctrl_do_repeat1, - STATE(5998), 2, + STATE(6026), 2, sym_short_flag, sym_long_flag, - ACTIONS(8877), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_as, - [196163] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(971), 1, - anon_sym_DASH2, - ACTIONS(8967), 1, - anon_sym_DOT, - STATE(5633), 1, - sym_path, - STATE(5429), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 5, + ACTIONS(8903), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196187] = 9, - ACTIONS(247), 1, + [196214] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7073), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8927), 1, + ACTIONS(8129), 1, anon_sym_DOLLAR, - ACTIONS(8970), 1, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8972), 1, + ACTIONS(8135), 1, aux_sym__immediate_decimal_token5, - STATE(4944), 1, - sym__immediate_decimal, - STATE(5430), 1, + STATE(5428), 1, sym_comment, - ACTIONS(7155), 2, + STATE(6727), 1, + sym__immediate_decimal, + ACTIONS(8131), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4942), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196217] = 6, - ACTIONS(247), 1, + [196244] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8974), 1, + ACTIONS(9048), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8976), 1, + ACTIONS(9050), 1, aux_sym__immediate_decimal_token2, - STATE(5431), 1, + STATE(5429), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1892), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196241] = 9, - ACTIONS(247), 1, + [196268] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8949), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8978), 1, + ACTIONS(2034), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4850), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5430), 1, + sym_comment, + STATE(5495), 1, + sym_path, + ACTIONS(2036), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196296] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2171), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4851), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5431), 1, + sym_comment, + STATE(5495), 1, + sym_path, + ACTIONS(2173), 4, + sym_identifier, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196324] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9052), 1, + sym_long_flag_identifier, + ACTIONS(9054), 1, + anon_sym_EQ2, STATE(5432), 1, sym_comment, - STATE(7568), 1, - sym__immediate_decimal, - ACTIONS(8313), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196271] = 9, - ACTIONS(247), 1, + ACTIONS(4979), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4977), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [196348] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8949), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8978), 1, - anon_sym_DOLLAR, + ACTIONS(9056), 1, + anon_sym_DOT, + ACTIONS(9058), 1, + aux_sym__immediate_decimal_token2, STATE(5433), 1, sym_comment, - STATE(6935), 1, - sym__immediate_decimal, - ACTIONS(8313), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6934), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196301] = 9, - ACTIONS(247), 1, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196372] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - STATE(3616), 1, - sym__immediate_decimal, + ACTIONS(1518), 1, + anon_sym_DASH2, STATE(5434), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, + ACTIONS(1520), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [196392] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + anon_sym_DASH_DASH, + ACTIONS(8678), 1, + anon_sym_DASH2, + ACTIONS(8956), 1, + sym_identifier, + STATE(5435), 1, + sym_comment, + STATE(5650), 1, + aux_sym_ctrl_do_repeat1, + STATE(7140), 1, + sym__variable_name, + STATE(7325), 1, sym_val_variable, - [196331] = 8, - ACTIONS(247), 1, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [196424] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(2030), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4822), 1, + STATE(4837), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5435), 1, + STATE(5436), 1, sym_comment, - ACTIONS(1889), 4, + STATE(5495), 1, + sym_path, + ACTIONS(2032), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [196359] = 9, - ACTIONS(247), 1, + [196452] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8073), 1, - anon_sym_LPAREN2, - ACTIONS(8978), 1, - anon_sym_DOLLAR, - ACTIONS(8980), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8982), 1, - aux_sym__immediate_decimal_token5, - STATE(5436), 1, + ACTIONS(1522), 1, + anon_sym_DASH2, + STATE(5437), 1, sym_comment, - STATE(6513), 1, - sym__immediate_decimal, - ACTIONS(8429), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6938), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196389] = 9, - ACTIONS(247), 1, + ACTIONS(1524), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [196472] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7039), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8955), 1, - anon_sym_DOLLAR, - ACTIONS(8984), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8986), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(4696), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + STATE(3608), 1, sym__immediate_decimal, - STATE(5437), 1, + STATE(5438), 1, sym_comment, - ACTIONS(7115), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4695), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196419] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8990), 1, - anon_sym_COMMA, - ACTIONS(8992), 1, - anon_sym_AT, - STATE(5438), 1, - sym_comment, - STATE(5656), 1, - sym_param_cmd, - ACTIONS(8988), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196443] = 4, - ACTIONS(247), 1, + [196502] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9060), 1, + aux_sym__immediate_decimal_token2, STATE(5439), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1820), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1822), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196463] = 9, - ACTIONS(247), 1, + [196524] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8073), 1, + ACTIONS(9062), 1, + aux_sym__immediate_decimal_token2, + STATE(5440), 1, + sym_comment, + ACTIONS(1919), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 4, anon_sym_LPAREN2, - ACTIONS(8978), 1, - anon_sym_DOLLAR, - ACTIONS(8994), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [196546] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6359), 1, + anon_sym_LPAREN2, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8996), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - STATE(5440), 1, - sym_comment, - STATE(6359), 1, + ACTIONS(6404), 1, + anon_sym_DOLLAR, + STATE(3991), 1, sym__immediate_decimal, - ACTIONS(8327), 2, + STATE(5441), 1, + sym_comment, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6938), 2, + STATE(3821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196493] = 8, - ACTIONS(247), 1, + [196576] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8905), 1, - anon_sym_DASH_DASH, - ACTIONS(8907), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - ACTIONS(8998), 1, - anon_sym_as, - STATE(5441), 1, - sym_comment, - STATE(5458), 1, - aux_sym_ctrl_do_repeat1, - STATE(5998), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8746), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196521] = 4, - ACTIONS(247), 1, - anon_sym_POUND, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4853), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, STATE(5442), 1, sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, + STATE(5495), 1, + sym_path, + ACTIONS(2040), 4, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [196541] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4035), 1, - anon_sym_LPAREN2, - ACTIONS(4041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4043), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8317), 1, anon_sym_DOLLAR, - STATE(1594), 1, - sym__immediate_decimal, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196604] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9066), 1, + aux_sym__immediate_decimal_token2, STATE(5443), 1, sym_comment, - ACTIONS(4039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1853), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196571] = 9, - ACTIONS(247), 1, + ACTIONS(1890), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1892), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196628] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, + ACTIONS(8203), 1, anon_sym_DOLLAR, - STATE(3443), 1, - sym__immediate_decimal, STATE(5444), 1, sym_comment, - ACTIONS(6285), 2, + STATE(6004), 1, + sym__immediate_decimal, + ACTIONS(6245), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3455), 2, + STATE(5935), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196601] = 6, - ACTIONS(3), 1, + [196658] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9000), 1, - anon_sym_DOT, - ACTIONS(9002), 1, + ACTIONS(9068), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9070), 1, aux_sym__immediate_decimal_token2, STATE(5445), 1, sym_comment, - ACTIONS(1765), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196625] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5446), 1, - sym_comment, - ACTIONS(1585), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1770), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196645] = 9, - ACTIONS(247), 1, + [196682] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6369), 1, - anon_sym_DOLLAR, - ACTIONS(7057), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(4283), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3633), 1, sym__immediate_decimal, - STATE(5447), 1, + STATE(5446), 1, sym_comment, - ACTIONS(7055), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3828), 2, + STATE(3453), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196675] = 9, - ACTIONS(247), 1, + [196712] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4035), 1, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(4413), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4415), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8317), 1, + ACTIONS(8952), 1, anon_sym_DOLLAR, - STATE(1835), 1, - sym__immediate_decimal, - STATE(5448), 1, + STATE(5447), 1, sym_comment, - ACTIONS(4411), 2, + STATE(7237), 1, + sym__immediate_decimal, + ACTIONS(8331), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1832), 2, + STATE(7236), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196705] = 9, - ACTIONS(247), 1, + [196742] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(6283), 1, - anon_sym_DOLLAR, - ACTIONS(7027), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7029), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(4155), 1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3608), 1, sym__immediate_decimal, - STATE(5449), 1, + STATE(5448), 1, sym_comment, - ACTIONS(7025), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3429), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196735] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9004), 1, - anon_sym_LT, - STATE(5450), 1, - sym_comment, - ACTIONS(8019), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196755] = 9, - ACTIONS(247), 1, + [196772] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOLLAR, - ACTIONS(5553), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(5572), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(3155), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3452), 1, sym__immediate_decimal, - STATE(5451), 1, + STATE(5449), 1, sym_comment, - ACTIONS(5570), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3153), 2, + STATE(3449), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196785] = 4, - ACTIONS(247), 1, + [196802] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(3190), 1, + sym_cell_path, + STATE(5450), 1, + sym_comment, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1475), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [196828] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2042), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4856), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5451), 1, + sym_comment, + STATE(5495), 1, + sym_path, + ACTIONS(2044), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196856] = 8, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9042), 1, + anon_sym_DASH_DASH, + ACTIONS(9044), 1, + anon_sym_DASH2, + ACTIONS(9072), 1, + anon_sym_as, STATE(5452), 1, sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196805] = 4, - ACTIONS(247), 1, + STATE(5499), 1, + aux_sym_ctrl_do_repeat1, + STATE(6026), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8748), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196884] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1290), 1, + ACTIONS(2046), 1, anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4860), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, STATE(5453), 1, sym_comment, - ACTIONS(1288), 8, + STATE(5495), 1, + sym_path, + ACTIONS(2048), 4, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196825] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [196912] = 8, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9042), 1, + anon_sym_DASH_DASH, + ACTIONS(9044), 1, + anon_sym_DASH2, + ACTIONS(9074), 1, + anon_sym_as, STATE(5454), 1, sym_comment, - ACTIONS(1761), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1763), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196845] = 9, - ACTIONS(247), 1, + STATE(5492), 1, + aux_sym_ctrl_do_repeat1, + STATE(6026), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8790), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196940] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(7107), 1, anon_sym_LPAREN2, - ACTIONS(7208), 1, + ACTIONS(8943), 1, anon_sym_DOLLAR, - ACTIONS(7214), 1, + ACTIONS(9076), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7216), 1, + ACTIONS(9078), 1, aux_sym__immediate_decimal_token5, - STATE(4772), 1, + STATE(4598), 1, sym__immediate_decimal, STATE(5455), 1, sym_comment, - ACTIONS(7212), 2, + ACTIONS(7167), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5116), 2, + STATE(4908), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196875] = 9, - ACTIONS(247), 1, + [196970] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7163), 1, - anon_sym_LPAREN2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7208), 1, - anon_sym_DOLLAR, - STATE(5110), 1, - sym__immediate_decimal, + ACTIONS(1479), 1, + anon_sym_DASH2, + ACTIONS(8736), 1, + anon_sym_DOT, STATE(5456), 1, sym_comment, - ACTIONS(7250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5096), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196905] = 4, - ACTIONS(3), 1, + STATE(5463), 1, + aux_sym_cell_path_repeat1, + STATE(5678), 1, + sym_path, + ACTIONS(1481), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196996] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9082), 1, + anon_sym_COMMA, + ACTIONS(9084), 1, + anon_sym_AT, STATE(5457), 1, sym_comment, - ACTIONS(1573), 3, + STATE(5658), 1, + sym_param_cmd, + ACTIONS(9080), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197020] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5458), 1, + sym_comment, + ACTIONS(1866), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1575), 6, + ACTIONS(1868), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [196925] = 8, - ACTIONS(247), 1, + [197040] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8905), 1, - anon_sym_DASH_DASH, - ACTIONS(8907), 1, + ACTIONS(2050), 1, anon_sym_DASH2, - ACTIONS(9006), 1, - anon_sym_as, - STATE(5428), 1, - aux_sym_ctrl_do_repeat1, - STATE(5458), 1, - sym_comment, - STATE(5998), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8798), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196953] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8663), 1, + ACTIONS(8589), 1, anon_sym_DOT, + STATE(4877), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, STATE(5459), 1, sym_comment, - STATE(5471), 1, - aux_sym_cell_path_repeat1, - STATE(5675), 1, + STATE(5495), 1, sym_path, - ACTIONS(967), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(969), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196979] = 9, - ACTIONS(247), 1, + ACTIONS(2052), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197068] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5440), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(9008), 1, - anon_sym_DOLLAR, - ACTIONS(9010), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9012), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(2891), 1, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + STATE(3608), 1, sym__immediate_decimal, STATE(5460), 1, sym_comment, - ACTIONS(8764), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3022), 2, + STATE(3454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197009] = 9, - ACTIONS(247), 1, + [197098] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5440), 1, - anon_sym_LPAREN2, - ACTIONS(9008), 1, - anon_sym_DOLLAR, - ACTIONS(9016), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9018), 1, - aux_sym__immediate_decimal_token5, - STATE(3079), 1, - sym__immediate_decimal, + ACTIONS(9086), 1, + anon_sym_LT, STATE(5461), 1, sym_comment, - ACTIONS(9014), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3078), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197039] = 9, - ACTIONS(247), 1, + ACTIONS(7894), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197118] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_DOLLAR, - ACTIONS(1693), 1, + ACTIONS(9084), 1, + anon_sym_AT, + ACTIONS(9090), 1, + anon_sym_COMMA, + STATE(5462), 1, + sym_comment, + STATE(5661), 1, + sym_param_cmd, + ACTIONS(9088), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197142] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_DASH2, + ACTIONS(9092), 1, + anon_sym_DOT, + STATE(5678), 1, + sym_path, + STATE(5463), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197166] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(1699), 1, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1701), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(596), 1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3452), 1, sym__immediate_decimal, - STATE(5462), 1, + STATE(5464), 1, sym_comment, - ACTIONS(1697), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(711), 2, + STATE(3449), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197069] = 9, - ACTIONS(247), 1, + [197196] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_DOLLAR, - ACTIONS(1693), 1, + ACTIONS(8117), 1, anon_sym_LPAREN2, - ACTIONS(1757), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1759), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token5, - STATE(710), 1, - sym__immediate_decimal, - STATE(5463), 1, + ACTIONS(8952), 1, + anon_sym_DOLLAR, + STATE(5465), 1, sym_comment, - ACTIONS(1755), 2, + STATE(7558), 1, + sym__immediate_decimal, + ACTIONS(8331), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(709), 2, + STATE(7240), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197099] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5464), 1, - sym_comment, - ACTIONS(1585), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1587), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197119] = 9, - ACTIONS(247), 1, + [197226] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_LPAREN2, - ACTIONS(9020), 1, + ACTIONS(5523), 1, anon_sym_DOLLAR, - ACTIONS(9022), 1, + ACTIONS(5525), 1, + anon_sym_LPAREN2, + ACTIONS(5531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9024), 1, + ACTIONS(5533), 1, aux_sym__immediate_decimal_token5, - STATE(543), 1, + STATE(3066), 1, sym__immediate_decimal, - STATE(5465), 1, + STATE(5466), 1, sym_comment, - ACTIONS(8794), 2, + ACTIONS(5529), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(648), 2, + STATE(3119), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197149] = 9, - ACTIONS(247), 1, + [197256] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_LPAREN2, - ACTIONS(9020), 1, + ACTIONS(3699), 1, anon_sym_DOLLAR, - ACTIONS(9028), 1, + ACTIONS(6241), 1, + anon_sym_LPAREN2, + ACTIONS(6247), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9030), 1, + ACTIONS(6249), 1, aux_sym__immediate_decimal_token5, - STATE(644), 1, - sym__immediate_decimal, - STATE(5466), 1, + STATE(5467), 1, sym_comment, - ACTIONS(9026), 2, + STATE(6808), 1, + sym__immediate_decimal, + ACTIONS(6245), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(643), 2, + STATE(6006), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197179] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8905), 1, - anon_sym_DASH_DASH, - ACTIONS(8907), 1, - anon_sym_DASH2, - ACTIONS(9032), 1, - anon_sym_as, - STATE(5394), 1, - aux_sym_ctrl_do_repeat1, - STATE(5467), 1, - sym_comment, - STATE(5998), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8802), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [197207] = 4, - ACTIONS(3), 1, + [197286] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9095), 1, + anon_sym_LT, STATE(5468), 1, sym_comment, - ACTIONS(1681), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1683), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197227] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5469), 1, - sym_comment, - ACTIONS(1761), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1763), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197247] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_DASH_DASH, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - ACTIONS(9034), 1, - sym_filesize_unit, - ACTIONS(9036), 1, - sym_duration_unit, - STATE(5470), 1, - sym_comment, - ACTIONS(1707), 2, + ACTIONS(7894), 8, + sym_raw_string_begin, sym_identifier, - anon_sym_DASH2, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197277] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197306] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9038), 1, + ACTIONS(2054), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(5675), 1, - sym_path, - STATE(5471), 2, - sym_comment, + STATE(4883), 1, + sym_cell_path, + STATE(5218), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(973), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197301] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8647), 1, + STATE(5469), 1, + sym_comment, + STATE(5495), 1, + sym_path, + ACTIONS(2056), 4, sym_identifier, - ACTIONS(9041), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, anon_sym_DASH_DASH, - ACTIONS(9045), 1, - anon_sym_DASH2, - STATE(5398), 1, - sym_val_variable, - STATE(5472), 1, - sym_comment, - STATE(6206), 1, - sym__variable_name, - STATE(6816), 2, - sym_short_flag, - sym_long_flag, - [197333] = 9, - ACTIONS(247), 1, + anon_sym_LBRACE, + [197334] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(6203), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6283), 1, + ACTIONS(6404), 1, anon_sym_DOLLAR, - STATE(3443), 1, + STATE(3747), 1, sym__immediate_decimal, - STATE(5473), 1, + STATE(5470), 1, sym_comment, - ACTIONS(6285), 2, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3455), 2, + STATE(3738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197363] = 9, - ACTIONS(247), 1, + [197364] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8073), 1, + ACTIONS(6359), 1, anon_sym_LPAREN2, - ACTIONS(8949), 1, + ACTIONS(6365), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, + ACTIONS(6367), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8978), 1, + ACTIONS(6404), 1, anon_sym_DOLLAR, - STATE(5474), 1, - sym_comment, - STATE(7621), 1, + STATE(3988), 1, sym__immediate_decimal, - ACTIONS(8313), 2, + STATE(5471), 1, + sym_comment, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6938), 2, + STATE(3801), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197393] = 6, - ACTIONS(247), 1, + [197394] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9047), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN2, + ACTIONS(4597), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4599), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8593), 1, + anon_sym_DOLLAR, + STATE(1864), 1, + sym__immediate_decimal, + STATE(5472), 1, + sym_comment, + ACTIONS(4595), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9049), 1, + aux_sym__immediate_decimal_token3, + STATE(1861), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197424] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8682), 1, aux_sym__immediate_decimal_token2, - STATE(5475), 1, + STATE(5473), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197446] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5474), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 5, + ACTIONS(1762), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197417] = 10, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [197466] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(9041), 1, - anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(1510), 1, + anon_sym_DASH2, + STATE(5475), 1, + sym_comment, + ACTIONS(1512), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(9045), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [197486] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1506), 1, anon_sym_DASH2, - STATE(5398), 1, - sym_val_variable, STATE(5476), 1, sym_comment, - STATE(6206), 1, - sym__variable_name, - STATE(6816), 2, - sym_short_flag, - sym_long_flag, - [197449] = 5, + ACTIONS(1508), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [197506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9051), 1, - aux_sym__immediate_decimal_token2, STATE(5477), 1, sym_comment, - ACTIONS(1785), 4, - anon_sym_RBRACK, + ACTIONS(1820), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1822), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [197471] = 8, - ACTIONS(247), 1, + [197526] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, STATE(5478), 1, sym_comment, - STATE(5996), 1, + STATE(5495), 1, + sym_path, + STATE(5883), 1, sym_cell_path, - ACTIONS(1869), 4, + ACTIONS(2000), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197499] = 8, - ACTIONS(247), 1, + [197554] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9097), 1, + anon_sym_DOT, + ACTIONS(9099), 1, + aux_sym__immediate_decimal_token2, + STATE(5479), 1, + sym_comment, + ACTIONS(1872), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [197578] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1990), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4898), 1, + STATE(4932), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5479), 1, + STATE(5480), 1, sym_comment, - ACTIONS(1861), 4, + STATE(5495), 1, + sym_path, + ACTIONS(1992), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197527] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9053), 1, - anon_sym_DOT, - ACTIONS(9055), 1, - aux_sym__immediate_decimal_token2, - STATE(5480), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197551] = 9, - ACTIONS(247), 1, + [197606] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - STATE(3616), 1, - sym__immediate_decimal, STATE(5481), 1, sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197581] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9057), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9059), 1, - aux_sym__immediate_decimal_token2, - STATE(5482), 1, - sym_comment, - ACTIONS(1585), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 5, - anon_sym_LBRACE, + ACTIONS(1770), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197605] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8203), 1, - anon_sym_DOLLAR, - STATE(5483), 1, - sym_comment, - STATE(6006), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5977), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197635] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3610), 1, - sym__immediate_decimal, - STATE(5484), 1, - sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3445), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197665] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3443), 1, - sym__immediate_decimal, - STATE(5485), 1, - sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3455), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197695] = 8, - ACTIONS(247), 1, + [197626] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(2006), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5486), 1, + STATE(5482), 1, sym_comment, - STATE(6021), 1, + STATE(5495), 1, + sym_path, + STATE(5996), 1, sym_cell_path, - ACTIONS(1851), 4, + ACTIONS(2008), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197723] = 8, - ACTIONS(247), 1, + [197654] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1994), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4991), 1, + STATE(4835), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5487), 1, + STATE(5483), 1, sym_comment, - ACTIONS(1865), 4, + STATE(5495), 1, + sym_path, + ACTIONS(1996), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197751] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8095), 1, - anon_sym_DOLLAR, - STATE(3616), 1, - sym__immediate_decimal, - STATE(5488), 1, - sym_comment, - ACTIONS(6285), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197781] = 8, - ACTIONS(247), 1, + [197682] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2010), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4972), 1, + STATE(4848), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5489), 1, + STATE(5484), 1, sym_comment, - ACTIONS(1873), 4, + STATE(5495), 1, + sym_path, + ACTIONS(2012), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197809] = 6, - ACTIONS(247), 1, + [197710] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9061), 1, + ACTIONS(1514), 1, + anon_sym_DASH2, + STATE(5485), 1, + sym_comment, + ACTIONS(1516), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT, - ACTIONS(9063), 1, - aux_sym__immediate_decimal_token2, - STATE(5490), 1, + [197730] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5486), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 5, - anon_sym_in2, + ACTIONS(1822), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197833] = 9, - ACTIONS(247), 1, + [197750] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3593), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6205), 1, - aux_sym__immediate_decimal_token5, - STATE(5491), 1, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4800), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5487), 1, sym_comment, - STATE(6811), 1, - sym__immediate_decimal, - ACTIONS(6201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6008), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197863] = 6, - ACTIONS(247), 1, + STATE(5495), 1, + sym_path, + ACTIONS(1976), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197778] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9065), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9067), 1, - aux_sym__immediate_decimal_token2, - STATE(5492), 1, + STATE(5488), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 5, - anon_sym_in2, + ACTIONS(1868), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197887] = 8, - ACTIONS(247), 1, + [197798] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(2014), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4802), 1, + STATE(4807), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5493), 1, + STATE(5489), 1, sym_comment, - ACTIONS(1881), 4, + STATE(5495), 1, + sym_path, + ACTIONS(2016), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197915] = 8, - ACTIONS(247), 1, + [197826] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(2018), 1, anon_sym_DASH2, - ACTIONS(8621), 1, + ACTIONS(8589), 1, anon_sym_DOT, - STATE(4818), 1, + STATE(4815), 1, sym_cell_path, - STATE(5242), 1, + STATE(5218), 1, aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5494), 1, + STATE(5490), 1, sym_comment, - ACTIONS(1885), 4, + STATE(5495), 1, + sym_path, + ACTIONS(2020), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197943] = 9, - ACTIONS(247), 1, + [197854] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6195), 1, + ACTIONS(6239), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(6241), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token5, - STATE(5495), 1, + STATE(5491), 1, sym_comment, - STATE(6050), 1, + STATE(6049), 1, sym__immediate_decimal, - ACTIONS(8421), 2, + ACTIONS(8341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6221), 2, + STATE(6146), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197973] = 9, - ACTIONS(247), 1, + [197884] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(3443), 1, - sym__immediate_decimal, - STATE(5496), 1, + ACTIONS(9042), 1, + anon_sym_DASH_DASH, + ACTIONS(9044), 1, + anon_sym_DASH2, + ACTIONS(9101), 1, + anon_sym_as, + STATE(5492), 1, sym_comment, - ACTIONS(8551), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3455), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198003] = 9, - ACTIONS(247), 1, + STATE(5499), 1, + aux_sym_ctrl_do_repeat1, + STATE(6026), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8782), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197912] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6197), 1, - anon_sym_LPAREN2, - ACTIONS(6420), 1, - anon_sym_DOLLAR, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - STATE(3616), 1, - sym__immediate_decimal, - STATE(5497), 1, + ACTIONS(2022), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4816), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5493), 1, sym_comment, - ACTIONS(8551), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3429), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198033] = 6, - ACTIONS(247), 1, + STATE(5495), 1, + sym_path, + ACTIONS(2024), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_AT, - ACTIONS(9071), 1, - anon_sym_COMMA, - STATE(5498), 1, + STATE(5494), 1, sym_comment, - STATE(5652), 1, - sym_param_cmd, - ACTIONS(9069), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198057] = 4, - ACTIONS(247), 1, + ACTIONS(1760), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [197960] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1526), 1, anon_sym_DASH2, - STATE(5499), 1, + STATE(5495), 1, sym_comment, - ACTIONS(996), 7, - ts_builtin_sym_end, + ACTIONS(1528), 8, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_LBRACE, anon_sym_DOT, - [198076] = 9, - ACTIONS(247), 1, + [197980] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8647), 1, + ACTIONS(2026), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4829), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5495), 1, + sym_path, + STATE(5496), 1, + sym_comment, + ACTIONS(2028), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [198008] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5497), 1, + sym_comment, + ACTIONS(1768), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1770), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [198028] = 10, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8674), 1, sym_identifier, - ACTIONS(9041), 1, + ACTIONS(9014), 1, anon_sym_DOLLAR, - ACTIONS(9043), 1, + ACTIONS(9016), 1, anon_sym_DASH_DASH, - ACTIONS(9045), 1, + ACTIONS(9018), 1, anon_sym_DASH2, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(5500), 1, + STATE(5498), 1, sym_comment, - STATE(6206), 1, + STATE(6237), 1, sym__variable_name, - STATE(6816), 2, + STATE(6817), 2, sym_short_flag, sym_long_flag, - [198105] = 4, - ACTIONS(247), 1, + [198060] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(9103), 1, + anon_sym_DASH_DASH, + ACTIONS(9106), 1, anon_sym_DASH2, - STATE(5501), 1, + STATE(5499), 2, sym_comment, - ACTIONS(5170), 7, + aux_sym_ctrl_do_repeat1, + STATE(6026), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8911), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [198124] = 4, - ACTIONS(247), 1, + [198084] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5176), 1, - anon_sym_DASH2, - STATE(5502), 1, + STATE(5500), 1, sym_comment, - ACTIONS(5174), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198143] = 4, - ACTIONS(247), 1, + ACTIONS(9109), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198101] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_DASH2, - STATE(5503), 1, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(5501), 1, sym_comment, - ACTIONS(5136), 7, + ACTIONS(2337), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2341), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [198162] = 4, + [198122] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5504), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(5502), 1, sym_comment, - ACTIONS(1765), 4, - anon_sym_RBRACK, + ACTIONS(2345), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2349), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198181] = 4, + [198143] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5505), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(5503), 1, sym_comment, - ACTIONS(1761), 3, + ACTIONS(2353), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2355), 4, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1763), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198200] = 8, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198164] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9073), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(9077), 1, - aux_sym_path_token1, - ACTIONS(9079), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - STATE(1945), 1, + ACTIONS(9111), 1, + aux_sym_path_token1, + STATE(5287), 1, sym_val_string, - STATE(5506), 1, + STATE(5504), 1, sym_comment, - ACTIONS(9075), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1856), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - [198227] = 4, - ACTIONS(3), 1, + [198191] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5507), 1, - sym_comment, - ACTIONS(996), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(994), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, + ACTIONS(1473), 1, anon_sym_DOT_DOT2, + ACTIONS(6454), 1, anon_sym_DOT, - [198246] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5508), 1, + STATE(1650), 1, + sym_path, + STATE(3190), 1, + sym_cell_path, + STATE(3414), 1, + aux_sym_cell_path_repeat1, + STATE(5505), 1, sym_comment, - ACTIONS(1000), 3, + ACTIONS(1475), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(998), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [198265] = 5, - ACTIONS(247), 1, + [198218] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9081), 1, - aux_sym__immediate_decimal_token2, - STATE(5509), 1, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(5506), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 5, + STATE(5507), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1481), 5, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198286] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [198241] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH2, - STATE(5510), 1, + ACTIONS(9113), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(5507), 2, sym_comment, - ACTIONS(1008), 7, + aux_sym_cell_path_repeat1, + ACTIONS(1485), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [198305] = 9, + [198262] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1788), 1, sym__newline, - ACTIONS(1719), 1, + ACTIONS(1800), 1, sym__space, - ACTIONS(4722), 1, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, - ACTIONS(7190), 1, + ACTIONS(7202), 1, aux_sym_unquoted_token2, - ACTIONS(9083), 1, + ACTIONS(9116), 1, sym_filesize_unit, - ACTIONS(9085), 1, + ACTIONS(9118), 1, sym_duration_unit, - STATE(5511), 1, + STATE(5508), 1, sym_comment, - ACTIONS(4724), 2, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198334] = 5, - ACTIONS(3), 1, + [198291] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9002), 1, - aux_sym__immediate_decimal_token2, - STATE(5512), 1, + ACTIONS(9122), 1, + anon_sym_COLON, + ACTIONS(9124), 1, + anon_sym_COMMA, + STATE(5509), 1, sym_comment, - ACTIONS(1765), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198355] = 5, - ACTIONS(3), 1, + ACTIONS(9120), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198312] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9087), 1, + ACTIONS(9058), 1, aux_sym__immediate_decimal_token2, - STATE(5513), 1, + STATE(5510), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_RBRACE, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198376] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DASH2, - STATE(5514), 1, - sym_comment, - ACTIONS(5079), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198395] = 4, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [198333] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5085), 1, + ACTIONS(1510), 1, anon_sym_DASH2, - STATE(5515), 1, + STATE(5511), 1, sym_comment, - ACTIONS(5083), 7, + ACTIONS(1512), 7, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [198414] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT, + [198352] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5516), 1, + ACTIONS(9126), 1, + aux_sym__immediate_decimal_token2, + STATE(5512), 1, sym_comment, - ACTIONS(1575), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1573), 5, - sym_identifier, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [198433] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5517), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DOLLAR, + ACTIONS(1822), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [198452] = 5, + [198373] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1726), 1, + sym_cell_path, + STATE(1909), 1, + sym_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(5513), 1, + sym_comment, + ACTIONS(1884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198398] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2331), 1, aux_sym_unquoted_token4, - STATE(5518), 1, + STATE(5514), 1, sym_comment, - ACTIONS(2254), 3, + ACTIONS(1538), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(2256), 4, + ACTIONS(1540), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [198473] = 4, - ACTIONS(247), 1, + [198419] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5519), 1, + STATE(5515), 1, sym_comment, - ACTIONS(1683), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, - sym_identifier, + ACTIONS(1760), 3, + sym__newline, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [198492] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5520), 1, - sym_comment, - ACTIONS(1763), 3, - anon_sym_DOLLAR, + ACTIONS(1762), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1761), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [198511] = 8, - ACTIONS(247), 1, + [198438] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(9089), 1, - aux_sym_path_token1, - STATE(1810), 1, - sym_val_string, - STATE(5521), 1, + ACTIONS(9128), 1, + anon_sym_EQ2, + ACTIONS(9130), 1, + sym_short_flag_identifier, + STATE(5516), 1, sym_comment, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1771), 2, - sym__raw_str, - sym__str_double_quotes, - [198538] = 3, - ACTIONS(247), 1, + ACTIONS(5020), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5022), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + [198461] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5522), 1, + STATE(5517), 1, sym_comment, - ACTIONS(9091), 8, + ACTIONS(7894), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -401990,225 +539997,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198555] = 4, - ACTIONS(247), 1, + [198478] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(5130), 1, anon_sym_DASH2, - STATE(5523), 1, + STATE(5518), 1, sym_comment, - ACTIONS(1012), 7, + ACTIONS(5128), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [198574] = 4, - ACTIONS(247), 1, + [198497] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(5136), 1, anon_sym_DASH2, - STATE(5524), 1, + STATE(5519), 1, sym_comment, - ACTIONS(1016), 7, + ACTIONS(5134), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [198593] = 5, - ACTIONS(247), 1, + [198516] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(1506), 1, anon_sym_DASH2, - ACTIONS(9093), 1, - anon_sym_QMARK2, - STATE(5525), 1, + STATE(5520), 1, sym_comment, - ACTIONS(980), 6, + ACTIONS(1508), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT, - [198614] = 6, - ACTIONS(247), 1, + [198535] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9095), 1, - anon_sym_DOT, - ACTIONS(9097), 1, - aux_sym__immediate_decimal_token2, - STATE(5526), 1, + STATE(5521), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1768), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1770), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198637] = 5, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [198554] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(1514), 1, anon_sym_DASH2, - ACTIONS(9099), 1, - anon_sym_QMARK2, - STATE(5527), 1, + STATE(5522), 1, sym_comment, - ACTIONS(986), 6, + ACTIONS(1516), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT, - [198658] = 4, + [198573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5528), 1, + STATE(5523), 1, sym_comment, - ACTIONS(1739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1820), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1822), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198677] = 5, + sym_filesize_unit, + sym_duration_unit, + [198592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(5529), 1, + STATE(5524), 1, sym_comment, - ACTIONS(2238), 3, - anon_sym_DASH_DASH, + ACTIONS(1866), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1868), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198611] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1704), 1, + sym_cell_path, + STATE(1909), 1, + sym_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(5525), 1, + sym_comment, + ACTIONS(1888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198636] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5150), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2242), 4, + STATE(5526), 1, + sym_comment, + ACTIONS(5148), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [198698] = 8, - ACTIONS(247), 1, + anon_sym_as, + [198655] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9101), 1, - anon_sym_DQUOTE, - ACTIONS(9105), 1, - aux_sym_path_token1, - ACTIONS(9107), 1, - sym_raw_string_begin, - STATE(2588), 1, - sym_val_string, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(9014), 1, + anon_sym_DOLLAR, + ACTIONS(9016), 1, + anon_sym_DASH_DASH, + ACTIONS(9018), 1, + anon_sym_DASH2, + STATE(5414), 1, + sym_val_variable, + STATE(5527), 1, + sym_comment, + STATE(6099), 1, + sym__variable_name, + STATE(6259), 2, + sym_short_flag, + sym_long_flag, + [198684] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1500), 1, + anon_sym_DASH2, + ACTIONS(9132), 1, + anon_sym_QMARK2, + STATE(5528), 1, + sym_comment, + ACTIONS(1502), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [198705] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1490), 1, + anon_sym_DASH2, + ACTIONS(9134), 1, + anon_sym_QMARK2, + STATE(5529), 1, + sym_comment, + ACTIONS(1492), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [198726] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9136), 1, + aux_sym__immediate_decimal_token2, STATE(5530), 1, sym_comment, - ACTIONS(9103), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2573), 2, - sym__raw_str, - sym__str_double_quotes, - [198725] = 5, - ACTIONS(247), 1, + ACTIONS(1820), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1822), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198747] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9038), 1, aux_sym__immediate_decimal_token2, STATE(5531), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 5, + ACTIONS(1874), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198746] = 8, - ACTIONS(247), 1, + [198768] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9109), 1, - anon_sym_DQUOTE, - ACTIONS(9113), 1, - aux_sym_path_token1, - ACTIONS(9115), 1, - sym_raw_string_begin, - STATE(1414), 1, - sym_val_string, STATE(5532), 1, sym_comment, - ACTIONS(9111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1417), 2, - sym__raw_str, - sym__str_double_quotes, - [198773] = 8, - ACTIONS(247), 1, + ACTIONS(2407), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2409), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198787] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_DQUOTE, - ACTIONS(9121), 1, - aux_sym_path_token1, - ACTIONS(9123), 1, - sym_raw_string_begin, + ACTIONS(5188), 1, + anon_sym_DASH2, STATE(5533), 1, sym_comment, - STATE(6236), 1, - sym_val_string, - ACTIONS(9119), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6045), 2, - sym__raw_str, - sym__str_double_quotes, - [198800] = 4, - ACTIONS(3), 1, + ACTIONS(5186), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [198806] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(5210), 1, + anon_sym_DASH2, STATE(5534), 1, sym_comment, - ACTIONS(1004), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1002), 5, - anon_sym_RBRACK, + ACTIONS(5208), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [198819] = 4, - ACTIONS(3), 1, + anon_sym_as, + [198825] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_DASH2, STATE(5535), 1, sym_comment, - ACTIONS(2268), 4, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2270), 4, + ACTIONS(1498), 7, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198838] = 3, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [198844] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9138), 1, + aux_sym__immediate_decimal_token2, STATE(5536), 1, sym_comment, - ACTIONS(8251), 8, + ACTIONS(1919), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1921), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198865] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5537), 1, + sym_comment, + ACTIONS(8285), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198882] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5538), 1, + sym_comment, + ACTIONS(8103), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -402217,84 +540323,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198855] = 8, - ACTIONS(247), 1, + [198899] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(443), 1, sym_raw_string_begin, - ACTIONS(9089), 1, + ACTIONS(9140), 1, aux_sym_path_token1, - STATE(1810), 1, + STATE(1796), 1, sym_val_string, - STATE(5537), 1, + STATE(5539), 1, sym_comment, - ACTIONS(4003), 2, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4332), 2, + STATE(1832), 2, sym__raw_str, sym__str_double_quotes, - [198882] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(9041), 1, - anon_sym_DOLLAR, - ACTIONS(9043), 1, - anon_sym_DASH_DASH, - ACTIONS(9045), 1, - anon_sym_DASH2, - STATE(5398), 1, - sym_val_variable, - STATE(5538), 1, - sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6274), 2, - sym_short_flag, - sym_long_flag, - [198911] = 3, - ACTIONS(247), 1, + [198926] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5539), 1, + STATE(5540), 1, sym_comment, - ACTIONS(992), 8, + ACTIONS(8295), 8, sym_raw_string_begin, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198928] = 8, - ACTIONS(247), 1, + [198943] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(9125), 1, - aux_sym_path_token1, - STATE(5540), 1, + STATE(5541), 1, sym_comment, - STATE(5572), 1, - sym_val_string, - ACTIONS(3129), 2, + ACTIONS(8239), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5625), 2, - sym__raw_str, - sym__str_double_quotes, - [198955] = 3, - ACTIONS(247), 1, + [198960] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5541), 1, + STATE(5542), 1, sym_comment, - ACTIONS(8065), 8, + ACTIONS(8243), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -402303,144 +540384,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198972] = 4, - ACTIONS(3), 1, + [198977] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5542), 1, + ACTIONS(9142), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9144), 1, + aux_sym__immediate_decimal_token2, + STATE(5543), 1, sym_comment, - ACTIONS(1785), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1892), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198991] = 3, - ACTIONS(247), 1, + [199000] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5543), 1, + STATE(5544), 1, sym_comment, - ACTIONS(996), 8, + ACTIONS(8259), 8, sym_raw_string_begin, sym_identifier, - anon_sym_COLON, anon_sym_COMMA, anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199008] = 8, - ACTIONS(247), 1, + [199017] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9127), 1, + ACTIONS(9146), 1, anon_sym_DQUOTE, - ACTIONS(9131), 1, + ACTIONS(9150), 1, aux_sym_path_token1, - ACTIONS(9133), 1, + ACTIONS(9152), 1, sym_raw_string_begin, - STATE(5544), 1, + STATE(2594), 1, + sym_val_string, + STATE(5545), 1, sym_comment, - STATE(6228), 1, + ACTIONS(9148), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2573), 2, + sym__raw_str, + sym__str_double_quotes, + [199044] = 8, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(125), 1, + sym_raw_string_begin, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9154), 1, + aux_sym_path_token1, + STATE(2137), 1, sym_val_string, - ACTIONS(9129), 2, + STATE(5546), 1, + sym_comment, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6170), 2, + STATE(2130), 2, sym__raw_str, sym__str_double_quotes, - [199035] = 6, - ACTIONS(247), 1, + [199071] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9135), 1, + ACTIONS(9156), 1, sym_long_flag_identifier, - ACTIONS(9137), 1, + ACTIONS(9158), 1, anon_sym_EQ2, - STATE(5545), 1, + STATE(5547), 1, sym_comment, - ACTIONS(4970), 2, + ACTIONS(4979), 2, anon_sym_DASH2, anon_sym_as, - ACTIONS(4968), 4, + ACTIONS(4977), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, - [199058] = 3, - ACTIONS(247), 1, + [199094] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5546), 1, - sym_comment, - ACTIONS(1000), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, + ACTIONS(9160), 1, anon_sym_DQUOTE, + ACTIONS(9164), 1, + aux_sym_path_token1, + ACTIONS(9166), 1, + sym_raw_string_begin, + STATE(5548), 1, + sym_comment, + STATE(6170), 1, + sym_val_string, + ACTIONS(9162), 2, sym__str_single_quotes, sym__str_back_ticks, - [199075] = 6, - ACTIONS(247), 1, + STATE(6114), 2, + sym__raw_str, + sym__str_double_quotes, + [199121] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9139), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9141), 1, - aux_sym__immediate_decimal_token2, - STATE(5547), 1, + ACTIONS(5154), 1, + anon_sym_DASH2, + STATE(5549), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199098] = 4, + ACTIONS(5152), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [199140] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5548), 1, + STATE(5550), 1, sym_comment, - ACTIONS(1841), 4, + ACTIONS(1512), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1510), 5, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 4, + anon_sym_DOT, + [199159] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3211), 1, + anon_sym_DQUOTE, + ACTIONS(3217), 1, + sym_raw_string_begin, + ACTIONS(9168), 1, + aux_sym_path_token1, + STATE(5551), 1, + sym_comment, + STATE(5613), 1, + sym_val_string, + ACTIONS(3213), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5550), 2, + sym__raw_str, + sym__str_double_quotes, + [199186] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token2, + STATE(5552), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199117] = 8, - ACTIONS(247), 1, + [199207] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9143), 1, + ACTIONS(9170), 1, anon_sym_DQUOTE, - ACTIONS(9147), 1, + ACTIONS(9174), 1, aux_sym_path_token1, - ACTIONS(9149), 1, + ACTIONS(9176), 1, sym_raw_string_begin, - STATE(1541), 1, - sym_val_string, - STATE(5549), 1, + STATE(5553), 1, sym_comment, - ACTIONS(9145), 2, + STATE(6040), 1, + sym_val_string, + ACTIONS(9172), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1673), 2, + STATE(6104), 2, sym__raw_str, sym__str_double_quotes, - [199144] = 4, - ACTIONS(247), 1, + [199234] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9153), 1, + ACTIONS(9180), 1, anon_sym_DASH2, - STATE(5550), 1, + STATE(5554), 1, sym_comment, - ACTIONS(9151), 7, + ACTIONS(9178), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -402448,1997 +540588,1919 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199163] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5551), 1, - sym_comment, - ACTIONS(1004), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199180] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5552), 1, - sym_comment, - ACTIONS(8019), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199197] = 3, - ACTIONS(247), 1, + [199253] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5553), 1, + ACTIONS(9184), 1, + anon_sym_COLON, + ACTIONS(9186), 1, + anon_sym_COMMA, + STATE(5555), 1, sym_comment, - ACTIONS(8059), 8, + ACTIONS(9182), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, - anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199214] = 8, - ACTIONS(247), 1, + [199274] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9155), 1, + ACTIONS(9188), 1, anon_sym_DQUOTE, - ACTIONS(9159), 1, + ACTIONS(9192), 1, aux_sym_path_token1, - ACTIONS(9161), 1, + ACTIONS(9194), 1, sym_raw_string_begin, - STATE(1398), 1, + STATE(1524), 1, sym_val_string, - STATE(5554), 1, + STATE(5556), 1, sym_comment, - ACTIONS(9157), 2, + ACTIONS(9190), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1365), 2, + STATE(1699), 2, sym__raw_str, sym__str_double_quotes, - [199241] = 3, - ACTIONS(247), 1, + [199301] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5555), 1, + STATE(5557), 1, sym_comment, - ACTIONS(8161), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199258] = 3, - ACTIONS(247), 1, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5556), 1, + STATE(5558), 1, sym_comment, - ACTIONS(8181), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199275] = 8, - ACTIONS(247), 1, + ACTIONS(1872), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [199339] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, - sym_raw_string_begin, - ACTIONS(9163), 1, + ACTIONS(9200), 1, aux_sym_path_token1, - STATE(3560), 1, + ACTIONS(9202), 1, + sym_raw_string_begin, + STATE(1378), 1, sym_val_string, - STATE(5557), 1, + STATE(5559), 1, sym_comment, - ACTIONS(3433), 2, + ACTIONS(9198), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3562), 2, + STATE(1343), 2, sym__raw_str, sym__str_double_quotes, - [199302] = 8, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [199366] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(249), 1, + ACTIONS(3535), 1, + anon_sym_DQUOTE, + ACTIONS(3545), 1, sym_raw_string_begin, - ACTIONS(9147), 1, + ACTIONS(9204), 1, aux_sym_path_token1, - STATE(1541), 1, + STATE(3593), 1, sym_val_string, - STATE(5558), 1, + STATE(5560), 1, sym_comment, - ACTIONS(237), 2, + ACTIONS(3537), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1544), 2, + STATE(3588), 2, sym__raw_str, sym__str_double_quotes, - [199329] = 3, - ACTIONS(247), 1, + [199393] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5559), 1, + ACTIONS(1473), 1, + anon_sym_DASH2, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(4557), 1, + sym_cell_path, + STATE(5218), 1, + aux_sym_cell_path_repeat1, + STATE(5495), 1, + sym_path, + STATE(5561), 1, sym_comment, - ACTIONS(8157), 8, - sym_raw_string_begin, + ACTIONS(1475), 3, sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199346] = 8, - ACTIONS(247), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199420] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOT_DOT2, - ACTIONS(6416), 1, + ACTIONS(9206), 1, anon_sym_DOT, - STATE(1615), 1, - sym_path, - STATE(3196), 1, - sym_cell_path, - STATE(3416), 1, - aux_sym_cell_path_repeat1, - STATE(5560), 1, + ACTIONS(9208), 1, + aux_sym__immediate_decimal_token2, + STATE(5562), 1, sym_comment, - ACTIONS(963), 3, - anon_sym_LBRACE, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199373] = 8, - ACTIONS(247), 1, + [199443] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(5563), 1, + sym_comment, + ACTIONS(1508), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1506), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [199462] = 8, + ACTIONS(239), 1, anon_sym_DQUOTE, - ACTIONS(9169), 1, - aux_sym_path_token1, - ACTIONS(9171), 1, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(257), 1, sym_raw_string_begin, - STATE(1694), 1, + ACTIONS(9192), 1, + aux_sym_path_token1, + STATE(1524), 1, sym_val_string, - STATE(5561), 1, + STATE(5564), 1, sym_comment, - ACTIONS(9167), 2, + ACTIONS(241), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1667), 2, + STATE(1541), 2, sym__raw_str, sym__str_double_quotes, - [199400] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(5562), 1, - sym_comment, - STATE(5563), 1, - aux_sym_cell_path_repeat1, - ACTIONS(969), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [199423] = 5, - ACTIONS(247), 1, + [199489] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9173), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(5563), 2, + ACTIONS(9210), 1, + anon_sym_DQUOTE, + ACTIONS(9214), 1, + aux_sym_path_token1, + ACTIONS(9216), 1, + sym_raw_string_begin, + STATE(1696), 1, + sym_val_string, + STATE(5565), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [199444] = 5, - ACTIONS(247), 1, + ACTIONS(9212), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1720), 2, + sym__raw_str, + sym__str_double_quotes, + [199516] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9176), 1, - aux_sym__immediate_decimal_token2, - STATE(5564), 1, + STATE(5566), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 5, + ACTIONS(1770), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199465] = 8, - ACTIONS(235), 1, + sym_filesize_unit, + sym_duration_unit, + [199535] = 8, + ACTIONS(239), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(249), 1, + ACTIONS(257), 1, sym_raw_string_begin, - ACTIONS(9178), 1, + ACTIONS(9218), 1, aux_sym_path_token1, - STATE(1795), 1, + STATE(1793), 1, sym_val_string, - STATE(5565), 1, + STATE(5567), 1, sym_comment, - ACTIONS(237), 2, + ACTIONS(241), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1544), 2, + STATE(1541), 2, sym__raw_str, sym__str_double_quotes, - [199492] = 8, - ACTIONS(247), 1, + [199562] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9180), 1, + ACTIONS(9220), 1, + aux_sym__immediate_decimal_token2, + STATE(5568), 1, + sym_comment, + ACTIONS(1919), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1921), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [199583] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9222), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(9226), 1, aux_sym_path_token1, - ACTIONS(9186), 1, + ACTIONS(9228), 1, sym_raw_string_begin, - STATE(1405), 1, + STATE(1391), 1, sym_val_string, - STATE(5566), 1, + STATE(5569), 1, sym_comment, - ACTIONS(9182), 2, + ACTIONS(9224), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1381), 2, + STATE(1398), 2, sym__raw_str, sym__str_double_quotes, - [199519] = 8, - ACTIONS(247), 1, + [199610] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9077), 1, - aux_sym_path_token1, - ACTIONS(9109), 1, + ACTIONS(9230), 1, anon_sym_DQUOTE, - ACTIONS(9115), 1, + ACTIONS(9234), 1, + aux_sym_path_token1, + ACTIONS(9236), 1, sym_raw_string_begin, - STATE(1945), 1, + STATE(1973), 1, sym_val_string, - STATE(5567), 1, + STATE(5570), 1, sym_comment, - ACTIONS(9111), 2, + ACTIONS(9232), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1417), 2, + STATE(1426), 2, sym__raw_str, sym__str_double_quotes, - [199546] = 8, - ACTIONS(247), 1, + [199637] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(2302), 1, sym_raw_string_begin, - ACTIONS(4529), 1, + ACTIONS(4337), 1, anon_sym_DQUOTE, - ACTIONS(9188), 1, + ACTIONS(9238), 1, aux_sym_path_token1, - STATE(4580), 1, + STATE(4607), 1, sym_val_string, - STATE(5568), 1, + STATE(5571), 1, sym_comment, - ACTIONS(4531), 2, + ACTIONS(4339), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4528), 2, + STATE(4591), 2, sym__raw_str, sym__str_double_quotes, - [199573] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH2, - STATE(5569), 1, - sym_comment, - ACTIONS(5097), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [199592] = 8, - ACTIONS(247), 1, + [199664] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9190), 1, + ACTIONS(9240), 1, anon_sym_DQUOTE, - ACTIONS(9194), 1, + ACTIONS(9244), 1, aux_sym_path_token1, - ACTIONS(9196), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - STATE(2516), 1, + STATE(2541), 1, sym_val_string, - STATE(5570), 1, + STATE(5572), 1, sym_comment, - ACTIONS(9192), 2, + ACTIONS(9242), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2524), 2, + STATE(2505), 2, sym__raw_str, sym__str_double_quotes, - [199619] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9198), 1, - anon_sym_QMARK2, - STATE(5571), 1, - sym_comment, - ACTIONS(980), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(978), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [199640] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_QMARK2, - STATE(5572), 1, - sym_comment, - ACTIONS(986), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(984), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [199661] = 8, - ACTIONS(247), 1, + [199691] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9147), 1, + ACTIONS(9192), 1, aux_sym_path_token1, - ACTIONS(9155), 1, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(9161), 1, + ACTIONS(9202), 1, sym_raw_string_begin, - STATE(1541), 1, + STATE(1524), 1, sym_val_string, STATE(5573), 1, sym_comment, - ACTIONS(9157), 2, + ACTIONS(9198), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1365), 2, + STATE(1343), 2, sym__raw_str, sym__str_double_quotes, - [199688] = 8, - ACTIONS(247), 1, + [199718] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2010), 1, + ACTIONS(2153), 1, sym_raw_string_begin, - ACTIONS(4149), 1, + ACTIONS(4379), 1, anon_sym_DQUOTE, - ACTIONS(9202), 1, + ACTIONS(9248), 1, aux_sym_path_token1, - STATE(4386), 1, + STATE(4385), 1, sym_val_string, STATE(5574), 1, sym_comment, - ACTIONS(4151), 2, + ACTIONS(4381), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4371), 2, + STATE(4475), 2, sym__raw_str, sym__str_double_quotes, - [199715] = 8, - ACTIONS(247), 1, + [199745] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9204), 1, + ACTIONS(9250), 1, anon_sym_DQUOTE, - ACTIONS(9208), 1, + ACTIONS(9254), 1, aux_sym_path_token1, - ACTIONS(9210), 1, + ACTIONS(9256), 1, sym_raw_string_begin, - STATE(1469), 1, + STATE(1473), 1, sym_val_string, STATE(5575), 1, sym_comment, - ACTIONS(9206), 2, + ACTIONS(9252), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1477), 2, + STATE(1454), 2, sym__raw_str, sym__str_double_quotes, - [199742] = 8, - ACTIONS(247), 1, + [199772] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9212), 1, + ACTIONS(9258), 1, anon_sym_DQUOTE, - ACTIONS(9216), 1, + ACTIONS(9262), 1, aux_sym_path_token1, - ACTIONS(9218), 1, + ACTIONS(9264), 1, sym_raw_string_begin, - STATE(1590), 1, + STATE(1599), 1, sym_val_string, STATE(5576), 1, sym_comment, - ACTIONS(9214), 2, + ACTIONS(9260), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1619), 2, + STATE(1593), 2, sym__raw_str, sym__str_double_quotes, - [199769] = 8, - ACTIONS(247), 1, + [199799] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9220), 1, + ACTIONS(9266), 1, anon_sym_DQUOTE, - ACTIONS(9224), 1, + ACTIONS(9270), 1, aux_sym_path_token1, - ACTIONS(9226), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - STATE(4160), 1, + STATE(4224), 1, sym_val_string, STATE(5577), 1, sym_comment, - ACTIONS(9222), 2, + ACTIONS(9268), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4187), 2, + STATE(4204), 2, sym__raw_str, sym__str_double_quotes, - [199796] = 8, - ACTIONS(247), 1, + [199826] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9228), 1, + ACTIONS(9274), 1, anon_sym_DQUOTE, - ACTIONS(9232), 1, + ACTIONS(9278), 1, aux_sym_path_token1, - ACTIONS(9234), 1, + ACTIONS(9280), 1, sym_raw_string_begin, - STATE(2816), 1, + STATE(2829), 1, sym_val_string, STATE(5578), 1, sym_comment, - ACTIONS(9230), 2, + ACTIONS(9276), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2830), 2, + STATE(2837), 2, sym__raw_str, sym__str_double_quotes, - [199823] = 8, - ACTIONS(247), 1, + [199853] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9236), 1, + ACTIONS(9282), 1, anon_sym_DQUOTE, - ACTIONS(9240), 1, + ACTIONS(9286), 1, aux_sym_path_token1, - ACTIONS(9242), 1, + ACTIONS(9288), 1, sym_raw_string_begin, STATE(4135), 1, sym_val_string, STATE(5579), 1, sym_comment, - ACTIONS(9238), 2, + ACTIONS(9284), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4139), 2, + STATE(4137), 2, sym__raw_str, sym__str_double_quotes, - [199850] = 8, - ACTIONS(247), 1, + [199880] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4403), 1, + ACTIONS(4555), 1, anon_sym_DQUOTE, - ACTIONS(4407), 1, + ACTIONS(4559), 1, sym_raw_string_begin, - ACTIONS(9244), 1, + ACTIONS(9290), 1, aux_sym_path_token1, - STATE(3526), 1, + STATE(3514), 1, sym_val_string, STATE(5580), 1, sym_comment, - ACTIONS(4405), 2, + ACTIONS(4557), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3343), 2, + STATE(3352), 2, sym__raw_str, sym__str_double_quotes, - [199877] = 8, - ACTIONS(247), 1, + [199907] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9246), 1, + ACTIONS(9292), 1, anon_sym_DQUOTE, - ACTIONS(9250), 1, + ACTIONS(9296), 1, aux_sym_path_token1, - ACTIONS(9252), 1, + ACTIONS(9298), 1, sym_raw_string_begin, - STATE(1438), 1, + STATE(1417), 1, sym_val_string, STATE(5581), 1, sym_comment, - ACTIONS(9248), 2, + ACTIONS(9294), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1447), 2, + STATE(1442), 2, sym__raw_str, sym__str_double_quotes, - [199904] = 8, - ACTIONS(247), 1, + [199934] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9254), 1, + ACTIONS(9300), 1, anon_sym_DQUOTE, - ACTIONS(9258), 1, + ACTIONS(9304), 1, aux_sym_path_token1, - ACTIONS(9260), 1, + ACTIONS(9306), 1, sym_raw_string_begin, - STATE(2779), 1, + STATE(2758), 1, sym_val_string, STATE(5582), 1, sym_comment, - ACTIONS(9256), 2, + ACTIONS(9302), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2791), 2, + STATE(2776), 2, sym__raw_str, sym__str_double_quotes, - [199931] = 8, - ACTIONS(247), 1, + [199961] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9262), 1, + ACTIONS(9308), 1, anon_sym_DQUOTE, - ACTIONS(9266), 1, + ACTIONS(9312), 1, aux_sym_path_token1, - ACTIONS(9268), 1, + ACTIONS(9314), 1, sym_raw_string_begin, - STATE(2982), 1, + STATE(2934), 1, sym_val_string, STATE(5583), 1, sym_comment, - ACTIONS(9264), 2, + ACTIONS(9310), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3014), 2, + STATE(2939), 2, sym__raw_str, sym__str_double_quotes, - [199958] = 8, - ACTIONS(247), 1, + [199988] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9270), 1, + ACTIONS(9316), 1, anon_sym_DQUOTE, - ACTIONS(9274), 1, + ACTIONS(9320), 1, aux_sym_path_token1, - ACTIONS(9276), 1, + ACTIONS(9322), 1, sym_raw_string_begin, - STATE(486), 1, + STATE(505), 1, sym_val_string, STATE(5584), 1, sym_comment, - ACTIONS(9272), 2, + ACTIONS(9318), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(489), 2, + STATE(509), 2, sym__raw_str, sym__str_double_quotes, - [199985] = 8, - ACTIONS(247), 1, + [200015] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9278), 1, + ACTIONS(9324), 1, anon_sym_DQUOTE, - ACTIONS(9282), 1, + ACTIONS(9328), 1, aux_sym_path_token1, - ACTIONS(9284), 1, + ACTIONS(9330), 1, sym_raw_string_begin, - STATE(568), 1, + STATE(588), 1, sym_val_string, STATE(5585), 1, sym_comment, - ACTIONS(9280), 2, + ACTIONS(9326), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(583), 2, + STATE(617), 2, sym__raw_str, sym__str_double_quotes, - [200012] = 8, - ACTIONS(247), 1, + [200042] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3657), 1, + ACTIONS(3669), 1, anon_sym_DQUOTE, - ACTIONS(3667), 1, + ACTIONS(3679), 1, sym_raw_string_begin, - ACTIONS(9286), 1, + ACTIONS(9332), 1, aux_sym_path_token1, - STATE(4709), 1, + STATE(4730), 1, sym_val_string, STATE(5586), 1, sym_comment, - ACTIONS(3659), 2, + ACTIONS(3671), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4721), 2, + STATE(4712), 2, sym__raw_str, sym__str_double_quotes, - [200039] = 8, - ACTIONS(247), 1, + [200069] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9288), 1, + ACTIONS(9334), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9338), 1, aux_sym_path_token1, - ACTIONS(9294), 1, + ACTIONS(9340), 1, sym_raw_string_begin, - STATE(4295), 1, + STATE(4229), 1, sym_val_string, STATE(5587), 1, sym_comment, - ACTIONS(9290), 2, + ACTIONS(9336), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4315), 2, + STATE(4312), 2, sym__raw_str, sym__str_double_quotes, - [200066] = 8, - ACTIONS(247), 1, + [200096] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4241), 1, + ACTIONS(4435), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4445), 1, sym_raw_string_begin, - ACTIONS(9296), 1, + ACTIONS(9342), 1, aux_sym_path_token1, - STATE(3595), 1, + STATE(3551), 1, sym_val_string, STATE(5588), 1, sym_comment, - ACTIONS(4243), 2, + ACTIONS(4437), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3573), 2, + STATE(3567), 2, sym__raw_str, sym__str_double_quotes, - [200093] = 8, - ACTIONS(247), 1, + [200123] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9344), 1, anon_sym_DQUOTE, - ACTIONS(9302), 1, + ACTIONS(9348), 1, aux_sym_path_token1, - ACTIONS(9304), 1, + ACTIONS(9350), 1, sym_raw_string_begin, - STATE(2692), 1, + STATE(2677), 1, sym_val_string, STATE(5589), 1, sym_comment, - ACTIONS(9300), 2, + ACTIONS(9346), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2695), 2, + STATE(2691), 2, sym__raw_str, sym__str_double_quotes, - [200120] = 8, - ACTIONS(247), 1, + [200150] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9306), 1, + ACTIONS(9352), 1, anon_sym_DQUOTE, - ACTIONS(9310), 1, + ACTIONS(9356), 1, aux_sym_path_token1, - ACTIONS(9312), 1, + ACTIONS(9358), 1, sym_raw_string_begin, - STATE(2924), 1, + STATE(2878), 1, sym_val_string, STATE(5590), 1, sym_comment, - ACTIONS(9308), 2, + ACTIONS(9354), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2905), 2, + STATE(2885), 2, sym__raw_str, sym__str_double_quotes, - [200147] = 8, - ACTIONS(247), 1, + [200177] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4109), 1, + ACTIONS(4513), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(4523), 1, sym_raw_string_begin, - ACTIONS(9314), 1, + ACTIONS(9360), 1, aux_sym_path_token1, - STATE(5527), 1, + STATE(5529), 1, sym_val_string, STATE(5591), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4515), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5616), 2, + STATE(5511), 2, sym__raw_str, sym__str_double_quotes, - [200174] = 8, - ACTIONS(247), 1, + [200204] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9316), 1, + ACTIONS(9362), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9366), 1, aux_sym_path_token1, - ACTIONS(9322), 1, + ACTIONS(9368), 1, sym_raw_string_begin, - STATE(5423), 1, + STATE(5426), 1, sym_val_string, STATE(5592), 1, sym_comment, - ACTIONS(9318), 2, + ACTIONS(9364), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5377), 2, + STATE(5475), 2, sym__raw_str, sym__str_double_quotes, - [200201] = 8, - ACTIONS(247), 1, + [200231] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9324), 1, + ACTIONS(9370), 1, anon_sym_DQUOTE, - ACTIONS(9328), 1, + ACTIONS(9374), 1, aux_sym_path_token1, - ACTIONS(9330), 1, + ACTIONS(9376), 1, sym_raw_string_begin, - STATE(156), 1, + STATE(326), 1, sym_val_string, STATE(5593), 1, sym_comment, - ACTIONS(9326), 2, + ACTIONS(9372), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(157), 2, + STATE(330), 2, sym__raw_str, sym__str_double_quotes, - [200228] = 8, - ACTIONS(247), 1, + [200258] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9332), 1, + ACTIONS(9378), 1, anon_sym_DQUOTE, - ACTIONS(9336), 1, + ACTIONS(9382), 1, aux_sym_path_token1, - ACTIONS(9338), 1, + ACTIONS(9384), 1, sym_raw_string_begin, - STATE(546), 1, + STATE(539), 1, sym_val_string, STATE(5594), 1, sym_comment, - ACTIONS(9334), 2, + ACTIONS(9380), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(549), 2, + STATE(582), 2, sym__raw_str, sym__str_double_quotes, - [200255] = 8, - ACTIONS(247), 1, + [200285] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9386), 1, anon_sym_DQUOTE, - ACTIONS(9344), 1, + ACTIONS(9390), 1, aux_sym_path_token1, - ACTIONS(9346), 1, + ACTIONS(9392), 1, sym_raw_string_begin, - STATE(437), 1, + STATE(422), 1, sym_val_string, STATE(5595), 1, sym_comment, - ACTIONS(9342), 2, + ACTIONS(9388), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(424), 2, + STATE(435), 2, sym__raw_str, sym__str_double_quotes, - [200282] = 8, - ACTIONS(247), 1, + [200312] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9348), 1, + ACTIONS(9394), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(9398), 1, aux_sym_path_token1, - ACTIONS(9354), 1, + ACTIONS(9400), 1, sym_raw_string_begin, - STATE(397), 1, + STATE(410), 1, sym_val_string, STATE(5596), 1, sym_comment, - ACTIONS(9350), 2, + ACTIONS(9396), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(386), 2, + STATE(402), 2, sym__raw_str, sym__str_double_quotes, - [200309] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, + [200339] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9356), 1, + STATE(5597), 1, + sym_comment, + ACTIONS(1762), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200358] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5598), 1, + sym_comment, + ACTIONS(1516), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1514), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [200377] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9234), 1, aux_sym_path_token1, - STATE(2101), 1, + ACTIONS(9402), 1, + anon_sym_DQUOTE, + ACTIONS(9406), 1, + sym_raw_string_begin, + STATE(1973), 1, sym_val_string, - STATE(5597), 1, + STATE(5599), 1, sym_comment, - ACTIONS(111), 2, + ACTIONS(9404), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2093), 2, + STATE(1931), 2, sym__raw_str, sym__str_double_quotes, - [200336] = 5, - ACTIONS(247), 1, + [200404] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9055), 1, - aux_sym__immediate_decimal_token2, - STATE(5598), 1, + STATE(5600), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1770), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1768), 5, + sym_identifier, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1767), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + [200423] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5601), 1, + sym_comment, + ACTIONS(1822), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200357] = 4, - ACTIONS(247), 1, + ACTIONS(1820), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200442] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5599), 1, + STATE(5602), 1, + sym_comment, + ACTIONS(1868), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200461] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5603), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 6, + ACTIONS(1822), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200376] = 4, - ACTIONS(3), 1, + [200480] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5600), 1, + STATE(5604), 1, sym_comment, - ACTIONS(1573), 3, - sym__newline, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 5, - sym__space, + ACTIONS(1868), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200395] = 5, - ACTIONS(247), 1, + [200499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8887), 1, - aux_sym__immediate_decimal_token2, - STATE(5601), 1, + STATE(5605), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1890), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 5, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200416] = 9, - ACTIONS(247), 1, + sym__entry_separator, + [200518] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1788), 1, sym_identifier, - ACTIONS(1719), 1, + ACTIONS(1800), 1, anon_sym_DOLLAR, - ACTIONS(4722), 1, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, - ACTIONS(8635), 1, + ACTIONS(8688), 1, aux_sym_unquoted_token2, - ACTIONS(9358), 1, + ACTIONS(9408), 1, sym_filesize_unit, - ACTIONS(9360), 1, + ACTIONS(9410), 1, sym_duration_unit, - STATE(5602), 1, + STATE(5606), 1, sym_comment, - ACTIONS(4724), 2, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200445] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DASH2, - STATE(5603), 1, - sym_comment, - ACTIONS(5119), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [200464] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(8621), 1, - anon_sym_DOT, - STATE(4622), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5393), 1, - sym_path, - STATE(5604), 1, - sym_comment, - ACTIONS(963), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [200491] = 8, - ACTIONS(247), 1, + [200547] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(9362), 1, - anon_sym_DOT_DOT2, - ACTIONS(9366), 1, - sym_filesize_unit, - ACTIONS(9368), 1, - sym_duration_unit, - STATE(5605), 1, + STATE(5607), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9364), 2, + ACTIONS(1498), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200518] = 5, - ACTIONS(247), 1, + sym__entry_separator, + ACTIONS(1496), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [200566] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(5052), 1, anon_sym_DASH2, - ACTIONS(9370), 1, + ACTIONS(9412), 1, anon_sym_EQ2, - STATE(5606), 1, + STATE(5608), 1, sym_comment, - ACTIONS(4996), 6, + ACTIONS(5050), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [200539] = 5, - ACTIONS(247), 1, + [200587] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(5040), 1, anon_sym_DASH2, - ACTIONS(9372), 1, + ACTIONS(9414), 1, anon_sym_EQ2, - STATE(5607), 1, + STATE(5609), 1, sym_comment, - ACTIONS(5056), 6, + ACTIONS(5038), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [200560] = 4, - ACTIONS(247), 1, + [200608] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5608), 1, + ACTIONS(8937), 1, + aux_sym__immediate_decimal_token2, + STATE(5610), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1762), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200579] = 4, - ACTIONS(3), 1, + [200629] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5609), 1, + ACTIONS(5170), 1, + anon_sym_DASH2, + STATE(5611), 1, sym_comment, - ACTIONS(1585), 3, + ACTIONS(5168), 7, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [200648] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9416), 1, + anon_sym_QMARK2, + STATE(5612), 1, + sym_comment, + ACTIONS(1502), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1500), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 5, - sym__space, + anon_sym_DOT, + [200669] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9418), 1, + anon_sym_QMARK2, + STATE(5613), 1, + sym_comment, + ACTIONS(1492), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200598] = 5, - ACTIONS(247), 1, + sym__entry_separator, + ACTIONS(1490), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [200690] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1788), 1, anon_sym_DASH2, - ACTIONS(6450), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token2, - STATE(5610), 1, + STATE(5614), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1800), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [200619] = 7, - ACTIONS(247), 1, + [200711] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1652), 1, - sym_cell_path, - STATE(1882), 1, - sym_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(5611), 1, + ACTIONS(5174), 1, + anon_sym_DASH2, + STATE(5615), 1, sym_comment, - ACTIONS(1749), 4, + ACTIONS(5172), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [200730] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5616), 1, + sym_comment, + ACTIONS(1919), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [200644] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [200749] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5612), 1, + ACTIONS(9420), 1, + aux_sym__immediate_decimal_token2, + STATE(5617), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1921), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [200770] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(9422), 1, + anon_sym_DOT_DOT2, + ACTIONS(9426), 1, sym_filesize_unit, + ACTIONS(9428), 1, sym_duration_unit, - [200663] = 5, - ACTIONS(247), 1, + STATE(5618), 1, + sym_comment, + ACTIONS(1800), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200797] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9376), 1, - anon_sym_COLON, - ACTIONS(9378), 1, - anon_sym_COMMA, - STATE(5613), 1, + STATE(5619), 1, sym_comment, - ACTIONS(9374), 6, + ACTIONS(1512), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200684] = 5, - ACTIONS(247), 1, + [200814] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9382), 1, + STATE(5620), 1, + sym_comment, + ACTIONS(1968), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1970), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [200833] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9230), 1, + anon_sym_DQUOTE, + ACTIONS(9236), 1, + sym_raw_string_begin, + ACTIONS(9430), 1, + aux_sym_path_token1, + STATE(1411), 1, + sym_val_string, + STATE(5621), 1, + sym_comment, + ACTIONS(9232), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1426), 2, + sym__raw_str, + sym__str_double_quotes, + [200860] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5622), 1, + sym_comment, + ACTIONS(1508), 8, + sym_raw_string_begin, + sym_identifier, anon_sym_COLON, - ACTIONS(9384), 1, anon_sym_COMMA, - STATE(5614), 1, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200877] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5623), 1, sym_comment, - ACTIONS(9380), 6, + ACTIONS(1516), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200705] = 5, - ACTIONS(247), 1, + [200894] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9063), 1, - aux_sym__immediate_decimal_token2, - STATE(5615), 1, + STATE(5624), 1, sym_comment, - ACTIONS(1573), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1575), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200726] = 4, - ACTIONS(247), 1, + ACTIONS(1498), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200911] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(1526), 1, anon_sym_DASH2, - STATE(5616), 1, - sym_comment, - ACTIONS(992), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [200745] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(5617), 1, + STATE(5625), 1, sym_comment, - ACTIONS(1026), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1028), 4, + ACTIONS(1528), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [200766] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(5618), 1, - sym_comment, - ACTIONS(2246), 3, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2250), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [200787] = 8, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_DOT, + [200930] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4001), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(4045), 1, sym_raw_string_begin, - ACTIONS(9386), 1, + ACTIONS(9140), 1, aux_sym_path_token1, - STATE(5283), 1, + STATE(1796), 1, sym_val_string, - STATE(5619), 1, + STATE(5626), 1, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4043), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4332), 2, + STATE(4386), 2, sym__raw_str, sym__str_double_quotes, - [200814] = 4, - ACTIONS(247), 1, + [200957] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(998), 1, + ACTIONS(1518), 1, anon_sym_DASH2, - STATE(5620), 1, + STATE(5627), 1, sym_comment, - ACTIONS(1000), 7, - ts_builtin_sym_end, + ACTIONS(1520), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT, - [200833] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9388), 1, - aux_sym__immediate_decimal_token2, - STATE(5621), 1, - sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200854] = 4, - ACTIONS(247), 1, + [200976] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1522), 1, anon_sym_DASH2, - STATE(5622), 1, + STATE(5628), 1, sym_comment, - ACTIONS(1004), 7, - ts_builtin_sym_end, + ACTIONS(1524), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT, - [200873] = 7, - ACTIONS(247), 1, + [200995] = 9, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(9014), 1, + anon_sym_DOLLAR, + ACTIONS(9016), 1, + anon_sym_DASH_DASH, + ACTIONS(9018), 1, + anon_sym_DASH2, + STATE(5414), 1, + sym_val_variable, + STATE(5629), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6817), 2, + sym_short_flag, + sym_long_flag, + [201024] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9099), 1, + aux_sym__immediate_decimal_token2, + STATE(5630), 1, + sym_comment, + ACTIONS(1872), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201045] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9432), 1, anon_sym_DOT, - STATE(1722), 1, - sym_cell_path, - STATE(1882), 1, + STATE(5631), 1, + sym_comment, + STATE(6243), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [201071] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2064), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5632), 1, + sym_comment, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, sym_path, - STATE(5562), 1, + STATE(7425), 1, + sym_cell_path, + ACTIONS(2062), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201097] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2052), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5633), 1, + sym_comment, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(5623), 1, + STATE(6800), 1, + sym_path, + STATE(7204), 1, + sym_cell_path, + ACTIONS(2050), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201123] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5634), 1, sym_comment, - ACTIONS(1737), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1919), 3, anon_sym_RBRACE, - [200898] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1921), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201141] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5624), 1, + STATE(5635), 1, sym_comment, - ACTIONS(1761), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1763), 6, + ACTIONS(1892), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [201159] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9436), 1, + sym__newline, + ACTIONS(9439), 1, + sym__space, + STATE(5636), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(1433), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [201179] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_in2, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(9442), 1, sym_filesize_unit, + ACTIONS(9444), 1, sym_duration_unit, - [200917] = 4, + STATE(5637), 1, + sym_comment, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201205] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5638), 1, + sym_comment, + ACTIONS(5711), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5625), 1, + STATE(5639), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(1968), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1970), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(990), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200936] = 4, - ACTIONS(3), 1, + [201239] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5626), 1, + STATE(5640), 1, sym_comment, - ACTIONS(1681), 3, - sym__newline, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 5, - sym__space, + ACTIONS(1770), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200955] = 6, - ACTIONS(247), 1, + [201257] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9390), 1, - anon_sym_EQ2, - ACTIONS(9392), 1, - sym_short_flag_identifier, - STATE(5627), 1, + ACTIONS(2423), 1, + anon_sym_DASH2, + ACTIONS(9446), 1, + anon_sym_LBRACK2, + STATE(5641), 1, sym_comment, - ACTIONS(4974), 3, + ACTIONS(2427), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(4976), 3, anon_sym_DASH_DASH, - anon_sym_DASH2, anon_sym_as, - [200978] = 5, - ACTIONS(247), 1, + [201277] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9394), 1, - aux_sym__immediate_decimal_token2, - STATE(5628), 1, + STATE(5642), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 5, + ACTIONS(1822), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200999] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DASH2, - STATE(5629), 1, - sym_comment, - ACTIONS(5132), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [201018] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1851), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5630), 1, - sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7372), 1, - sym_cell_path, - ACTIONS(1847), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201044] = 8, - ACTIONS(3), 1, + [201295] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1921), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5631), 1, + STATE(5643), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(6987), 1, - sym_cell_path, ACTIONS(1919), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201070] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(9398), 1, anon_sym_DOT_DOT2, - STATE(5632), 1, - sym_comment, - ACTIONS(9400), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 3, + aux_sym_unquoted_token2, + ACTIONS(1921), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [201092] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH2, - STATE(5633), 1, - sym_comment, - ACTIONS(1008), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [201110] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5634), 1, - sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7004), 1, - sym_cell_path, - ACTIONS(1927), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201136] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201313] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(5635), 1, + STATE(5644), 1, sym_comment, - ACTIONS(2246), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2250), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [201156] = 4, - ACTIONS(3), 1, + ACTIONS(5679), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201329] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5636), 1, + STATE(5645), 1, sym_comment, - ACTIONS(2270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2268), 4, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - [201174] = 8, - ACTIONS(3), 1, + ACTIONS(5683), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201345] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1944), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5637), 1, + STATE(5646), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7007), 1, - sym_cell_path, - ACTIONS(1942), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201200] = 8, + ACTIONS(1968), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1970), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201363] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2028), 1, + ACTIONS(2024), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5638), 1, + STATE(5647), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7012), 1, + STATE(7173), 1, sym_cell_path, - ACTIONS(2026), 2, + ACTIONS(2022), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201226] = 8, + [201389] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2032), 1, + ACTIONS(2000), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5639), 1, + STATE(5648), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7031), 1, + STATE(7183), 1, sym_cell_path, - ACTIONS(2030), 2, + ACTIONS(1998), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201252] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5640), 1, - sym_comment, - ACTIONS(1841), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1843), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201270] = 4, - ACTIONS(247), 1, + [201415] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5641), 1, + ACTIONS(9208), 1, + aux_sym__immediate_decimal_token2, + STATE(5649), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 5, + ACTIONS(1874), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201288] = 6, - ACTIONS(247), 1, + [201435] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9402), 1, + ACTIONS(9448), 1, anon_sym_DASH_DASH, - ACTIONS(9405), 1, + ACTIONS(9451), 1, anon_sym_DASH2, - ACTIONS(8877), 2, + ACTIONS(8911), 2, + sym_identifier, anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5642), 2, + STATE(5650), 2, sym_comment, aux_sym_ctrl_do_repeat1, - STATE(6035), 2, + STATE(6172), 2, sym_short_flag, sym_long_flag, - [201310] = 8, + [201457] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(2173), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5643), 1, + STATE(5651), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(6916), 1, + STATE(7160), 1, sym_cell_path, - ACTIONS(1863), 2, + ACTIONS(2171), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201336] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9408), 1, - anon_sym_DOT, - STATE(5644), 1, - sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [201362] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5645), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201380] = 7, + [201483] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9410), 1, + ACTIONS(2068), 1, + sym__entry_separator, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5646), 1, + STATE(5652), 1, sym_comment, - STATE(5764), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6319), 1, + STATE(6800), 1, sym_path, - STATE(6819), 1, + STATE(7432), 1, sym_cell_path, - ACTIONS(1847), 3, + ACTIONS(2066), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [201404] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5647), 1, - sym_comment, - ACTIONS(1765), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201422] = 6, - ACTIONS(247), 1, + [201509] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(9412), 1, - anon_sym_DOT_DOT2, - STATE(5648), 1, + STATE(5653), 1, sym_comment, - ACTIONS(9414), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1810), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201444] = 5, + ACTIONS(5729), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201525] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9416), 1, - sym__newline, - ACTIONS(9419), 1, - sym__space, - STATE(5649), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3543), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [201464] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9097), 1, - aux_sym__immediate_decimal_token2, - STATE(5650), 1, + ACTIONS(2040), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5654), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201484] = 8, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(7445), 1, + sym_cell_path, + ACTIONS(2038), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201551] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(2044), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5651), 1, + STATE(5655), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7206), 1, + STATE(7449), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(2042), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201510] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9424), 1, - anon_sym_COMMA, - STATE(5652), 1, - sym_comment, - ACTIONS(9422), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201528] = 4, - ACTIONS(3), 1, + [201577] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5653), 1, + STATE(5656), 1, sym_comment, - ACTIONS(1739), 3, - anon_sym_RBRACE, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201546] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5654), 1, - sym_comment, - ACTIONS(8089), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201562] = 8, + sym_filesize_unit, + sym_duration_unit, + [201595] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1940), 1, anon_sym_RBRACE, - ACTIONS(1719), 1, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(1948), 1, sym__entry_separator, - ACTIONS(9426), 1, + ACTIONS(9454), 1, anon_sym_DOT_DOT2, - ACTIONS(9430), 1, - sym_filesize_unit, - ACTIONS(9432), 1, - sym_duration_unit, - STATE(5655), 1, + STATE(5657), 1, sym_comment, - ACTIONS(9428), 2, + ACTIONS(9456), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201588] = 4, - ACTIONS(247), 1, + [201621] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9436), 1, + ACTIONS(9460), 1, anon_sym_COMMA, - STATE(5656), 1, + STATE(5658), 1, sym_comment, - ACTIONS(9434), 6, + ACTIONS(9458), 6, sym_raw_string_begin, sym_identifier, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201606] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5657), 1, - sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7392), 1, - sym_cell_path, - ACTIONS(1887), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201632] = 7, - ACTIONS(247), 1, + [201639] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4894), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9462), 1, anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(5658), 1, + STATE(5659), 1, sym_comment, - STATE(6972), 1, - sym_cell_path, - ACTIONS(5866), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201656] = 8, + STATE(6368), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [201665] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9464), 1, anon_sym_DOT, - STATE(5659), 1, + STATE(5660), 1, sym_comment, - STATE(5997), 1, + STATE(6023), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6814), 1, sym_path, - STATE(7438), 1, + STATE(7206), 1, sym_cell_path, - ACTIONS(1891), 2, + ACTIONS(1998), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [201682] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(1690), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_path, - STATE(5660), 1, - sym_comment, - STATE(7379), 1, - sym_cell_path, - ACTIONS(5945), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201706] = 9, - ACTIONS(247), 1, + sym__entry_separator, + sym__table_head_separator, + [201689] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(9438), 1, - anon_sym_alias, - ACTIONS(9440), 1, - anon_sym_const, - ACTIONS(9442), 1, - anon_sym_def, - ACTIONS(9444), 1, - anon_sym_extern, - ACTIONS(9446), 1, - anon_sym_module, - ACTIONS(9448), 1, - anon_sym_use, + ACTIONS(9468), 1, + anon_sym_COMMA, STATE(5661), 1, sym_comment, - [201734] = 8, + ACTIONS(9466), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201707] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(2008), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, STATE(5662), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7217), 1, + STATE(6838), 1, sym_cell_path, - ACTIONS(1907), 2, + ACTIONS(2006), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201760] = 4, - ACTIONS(247), 1, + [201733] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9470), 1, + aux_sym__immediate_decimal_token2, STATE(5663), 1, sym_comment, - ACTIONS(1841), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1843), 5, + ACTIONS(1921), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201778] = 4, - ACTIONS(247), 1, + [201753] = 4, + ACTIONS(255), 1, anon_sym_POUND, STATE(5664), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1868), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201796] = 4, + sym_filesize_unit, + sym_duration_unit, + [201771] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(5665), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201814] = 4, - ACTIONS(3), 1, + ACTIONS(2409), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2407), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + [201789] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(9472), 1, + anon_sym_EQ2, STATE(5666), 1, sym_comment, - ACTIONS(1012), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1010), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [201832] = 4, + ACTIONS(5050), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201809] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5667), 1, - sym_comment, - ACTIONS(1016), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2028), 1, sym__entry_separator, - ACTIONS(1014), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [201850] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9410), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5668), 1, + STATE(5667), 1, sym_comment, - STATE(5764), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6319), 1, + STATE(6800), 1, sym_path, - STATE(7006), 1, + STATE(7214), 1, sym_cell_path, - ACTIONS(1867), 3, + ACTIONS(2026), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [201874] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [201835] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5668), 1, + sym_comment, + ACTIONS(5703), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201851] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(5669), 1, sym_comment, - ACTIONS(5685), 7, + ACTIONS(5715), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -404446,44 +542508,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201890] = 4, - ACTIONS(247), 1, + [201867] = 9, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(9474), 1, + anon_sym_alias, + ACTIONS(9476), 1, + anon_sym_const, + ACTIONS(9478), 1, + anon_sym_def, + ACTIONS(9480), 1, + anon_sym_extern, + ACTIONS(9482), 1, + anon_sym_module, + ACTIONS(9484), 1, + anon_sym_use, STATE(5670), 1, sym_comment, - ACTIONS(1573), 2, - anon_sym_DOT_DOT2, + [201895] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_DASH2, + ACTIONS(8491), 1, aux_sym_unquoted_token2, - ACTIONS(1575), 5, + STATE(5671), 1, + sym_comment, + ACTIONS(1800), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201915] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9486), 1, + anon_sym_DASH_DASH, + ACTIONS(9489), 1, + anon_sym_DASH2, + ACTIONS(8911), 2, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201908] = 8, + STATE(5672), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [201937] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1992), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5671), 1, + STATE(5673), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(6829), 1, + STATE(7253), 1, sym_cell_path, - ACTIONS(1895), 2, + ACTIONS(1990), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201934] = 3, - ACTIONS(247), 1, + [201963] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5672), 1, + ACTIONS(9464), 1, + anon_sym_DOT, + STATE(5674), 1, + sym_comment, + STATE(6023), 1, + aux_sym_cell_path_repeat1, + STATE(6814), 1, + sym_path, + STATE(7045), 1, + sym_cell_path, + ACTIONS(2006), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [201987] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5675), 1, sym_comment, - ACTIONS(5652), 7, + ACTIONS(5707), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -404491,752 +542606,759 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201950] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9450), 1, - aux_sym__immediate_decimal_token2, - STATE(5673), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201970] = 5, - ACTIONS(247), 1, + [202003] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(8499), 1, - aux_sym_unquoted_token2, - STATE(5674), 1, + ACTIONS(2072), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5676), 1, sym_comment, - ACTIONS(1719), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201990] = 4, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(6829), 1, + sym_cell_path, + ACTIONS(2070), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202029] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5675), 1, - sym_comment, - ACTIONS(1008), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1976), 1, sym__entry_separator, - ACTIONS(1006), 4, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5677), 1, + sym_comment, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(6844), 1, + sym_cell_path, + ACTIONS(1972), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202008] = 4, - ACTIONS(247), 1, + [202055] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9454), 1, + ACTIONS(1526), 1, anon_sym_DASH2, - STATE(5676), 1, + STATE(5678), 1, sym_comment, - ACTIONS(9452), 6, + ACTIONS(1528), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [202026] = 4, - ACTIONS(3), 1, + anon_sym_DOT, + [202073] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5677), 1, + STATE(5679), 1, sym_comment, - ACTIONS(1841), 3, - anon_sym_RBRACE, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1843), 4, + aux_sym_unquoted_token2, + ACTIONS(1874), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202044] = 8, - ACTIONS(3), 1, + [202091] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8103), 1, - sym__newline, - ACTIONS(8105), 1, - sym__space, - ACTIONS(8107), 1, - anon_sym_DASH_DASH, - ACTIONS(8109), 1, - anon_sym_DASH2, - STATE(5649), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5678), 1, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(1689), 1, + aux_sym_cell_path_repeat1, + STATE(1909), 1, + sym_path, + STATE(5680), 1, sym_comment, - STATE(7564), 2, - sym_short_flag, - sym_long_flag, - [202070] = 8, + STATE(6913), 1, + sym_cell_path, + ACTIONS(5998), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202115] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(2016), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5679), 1, + STATE(5681), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7017), 1, + STATE(6869), 1, sym_cell_path, - ACTIONS(1867), 2, + ACTIONS(2014), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202096] = 8, + [202141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 1, + STATE(5682), 1, + sym_comment, + ACTIONS(1890), 3, anon_sym_RBRACE, - ACTIONS(1822), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1892), 4, anon_sym_LPAREN2, - ACTIONS(1828), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9456), 1, + [202159] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5683), 1, + sym_comment, + ACTIONS(1866), 2, anon_sym_DOT_DOT2, - STATE(5680), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202177] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5684), 1, sym_comment, - ACTIONS(9458), 2, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202122] = 8, + sym_filesize_unit, + sym_duration_unit, + [202195] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(2012), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5681), 1, + STATE(5685), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7074), 1, + STATE(6960), 1, sym_cell_path, - ACTIONS(1871), 2, + ACTIONS(2010), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202148] = 9, - ACTIONS(247), 1, + [202221] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(9438), 1, - anon_sym_alias, - ACTIONS(9440), 1, - anon_sym_const, - ACTIONS(9442), 1, - anon_sym_def, - ACTIONS(9444), 1, - anon_sym_extern, - ACTIONS(9446), 1, - anon_sym_module, - ACTIONS(9448), 1, - anon_sym_use, - STATE(5682), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(9492), 1, + anon_sym_DOT_DOT2, + STATE(5686), 1, sym_comment, - [202176] = 8, + ACTIONS(9494), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202243] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1728), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 1, + ACTIONS(1940), 1, anon_sym_RBRACK, - ACTIONS(1822), 1, + ACTIONS(1942), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(1948), 1, sym__entry_separator, - ACTIONS(9460), 1, + ACTIONS(9496), 1, anon_sym_DOT_DOT2, - STATE(5683), 1, + STATE(5687), 1, sym_comment, - ACTIONS(9462), 2, + ACTIONS(9498), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202202] = 8, + [202269] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1996), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5684), 1, + STATE(5688), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7184), 1, + STATE(7216), 1, sym_cell_path, - ACTIONS(1879), 2, + ACTIONS(1994), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202228] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACK, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9464), 1, - anon_sym_DOT_DOT2, - STATE(5685), 1, - sym_comment, - ACTIONS(9466), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202254] = 4, - ACTIONS(247), 1, + [202295] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5686), 1, + STATE(5689), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 5, + ACTIONS(1892), 5, + sym__newline, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202272] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(5687), 1, - sym_comment, - ACTIONS(2254), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2256), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [202292] = 8, + [202313] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(2080), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5688), 1, + STATE(5690), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(6832), 1, + STATE(6914), 1, sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(2078), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202318] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(5689), 1, - sym_comment, - ACTIONS(1026), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1028), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [202338] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(5690), 1, - sym_comment, - ACTIONS(2238), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2242), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [202358] = 4, - ACTIONS(247), 1, + [202339] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5691), 1, - sym_comment, - ACTIONS(1761), 2, + ACTIONS(1800), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, + ACTIONS(4915), 1, aux_sym_unquoted_token2, - ACTIONS(1763), 5, - anon_sym_LBRACE, + ACTIONS(9500), 1, + sym_filesize_unit, + ACTIONS(9502), 1, + sym_duration_unit, + STATE(5691), 1, + sym_comment, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [202365] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1800), 1, + sym__entry_separator, + ACTIONS(9504), 1, + anon_sym_DOT_DOT2, + ACTIONS(9508), 1, sym_filesize_unit, + ACTIONS(9510), 1, sym_duration_unit, - [202376] = 8, + STATE(5692), 1, + sym_comment, + ACTIONS(9506), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202391] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1940), 1, + ACTIONS(1475), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5692), 1, + STATE(5693), 1, sym_comment, - STATE(5997), 1, + STATE(5913), 1, + sym_cell_path, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7437), 1, - sym_cell_path, - ACTIONS(1938), 2, + ACTIONS(1473), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202402] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9468), 1, - anon_sym_DASH_DASH, - ACTIONS(9471), 1, - anon_sym_DASH2, - ACTIONS(8877), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5693), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [202424] = 8, + [202417] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(2032), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, STATE(5694), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7178), 1, + STATE(7224), 1, sym_cell_path, - ACTIONS(1859), 2, + ACTIONS(2030), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202450] = 8, - ACTIONS(3), 1, + [202443] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2044), 1, - sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(4934), 1, anon_sym_DOT, - STATE(5695), 1, - sym_comment, - STATE(5997), 1, + STATE(1689), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(1909), 1, sym_path, - STATE(7448), 1, + STATE(5695), 1, + sym_comment, + STATE(7371), 1, sym_cell_path, - ACTIONS(2042), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202476] = 8, + ACTIONS(5862), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202467] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(963), 1, + ACTIONS(2084), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, STATE(5696), 1, sym_comment, - STATE(5755), 1, - sym_cell_path, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - ACTIONS(961), 2, + STATE(7280), 1, + sym_cell_path, + ACTIONS(2082), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202502] = 8, + [202493] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(2036), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, STATE(5697), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7191), 1, + STATE(6946), 1, sym_cell_path, - ACTIONS(1883), 2, + ACTIONS(2034), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202528] = 8, - ACTIONS(247), 1, + [202519] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_LBRACE, - ACTIONS(4866), 1, + STATE(5698), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(9474), 1, + ACTIONS(1874), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202537] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_RBRACK, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1958), 1, + sym__entry_separator, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9512), 1, anon_sym_DOT_DOT2, - ACTIONS(9478), 1, + STATE(5699), 1, + sym_comment, + ACTIONS(9514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202563] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_LBRACE, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, + ACTIONS(9500), 1, sym_filesize_unit, - ACTIONS(9480), 1, + ACTIONS(9502), 1, sym_duration_unit, - STATE(5698), 1, + ACTIONS(9516), 1, + anon_sym_DOT_DOT2, + STATE(5700), 1, sym_comment, - ACTIONS(9476), 2, + ACTIONS(9518), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202554] = 5, - ACTIONS(247), 1, + [202589] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_DASH2, - ACTIONS(9482), 1, - anon_sym_EQ2, - STATE(5699), 1, + STATE(5701), 1, sym_comment, - ACTIONS(5056), 5, - ts_builtin_sym_end, + ACTIONS(1968), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1970), 5, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202574] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202607] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5700), 1, + STATE(5702), 1, sym_comment, - ACTIONS(1573), 2, + ACTIONS(1919), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1575), 5, - anon_sym_in2, + ACTIONS(1921), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202592] = 8, - ACTIONS(3), 1, + [202625] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2036), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5701), 1, + ACTIONS(9522), 1, + anon_sym_DASH2, + STATE(5703), 1, sym_comment, - STATE(5997), 1, + ACTIONS(9520), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [202643] = 9, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(9474), 1, + anon_sym_alias, + ACTIONS(9476), 1, + anon_sym_const, + ACTIONS(9478), 1, + anon_sym_def, + ACTIONS(9480), 1, + anon_sym_extern, + ACTIONS(9482), 1, + anon_sym_module, + ACTIONS(9484), 1, + anon_sym_use, + STATE(5704), 1, + sym_comment, + [202671] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1473), 1, + anon_sym_DASH2, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3190), 1, + sym_cell_path, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(3630), 1, sym_path, - STATE(7208), 1, - sym_cell_path, - ACTIONS(2034), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202618] = 5, - ACTIONS(247), 1, + STATE(5705), 1, + sym_comment, + ACTIONS(1475), 2, + anon_sym_DASH_DASH, + anon_sym_in2, + [202697] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(8193), 1, + sym__newline, + ACTIONS(8195), 1, + sym__space, + ACTIONS(8197), 1, + anon_sym_DASH_DASH, + ACTIONS(8199), 1, anon_sym_DASH2, - ACTIONS(9484), 1, - anon_sym_EQ2, - STATE(5702), 1, + STATE(5636), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5706), 1, + sym_comment, + STATE(7610), 2, + sym_short_flag, + sym_long_flag, + [202723] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(5707), 1, sym_comment, - ACTIONS(4996), 5, + ACTIONS(2337), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2341), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202638] = 8, + [202743] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2040), 1, + ACTIONS(2169), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5703), 1, + STATE(5708), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7209), 1, + STATE(6917), 1, sym_cell_path, - ACTIONS(2038), 2, + ACTIONS(2167), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202664] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5704), 1, - sym_comment, - ACTIONS(5662), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202680] = 8, - ACTIONS(247), 1, + [202769] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1960), 1, aux_sym_unquoted_token2, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9486), 1, - anon_sym_DOT, - STATE(5705), 1, + ACTIONS(9524), 1, + anon_sym_DOT_DOT2, + STATE(5709), 1, sym_comment, - STATE(6303), 1, - sym__immediate_decimal, - ACTIONS(8421), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [202706] = 8, + ACTIONS(9526), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202791] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2048), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5706), 1, + STATE(5710), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7210), 1, + STATE(6932), 1, sym_cell_path, - ACTIONS(1931), 2, + ACTIONS(2046), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202732] = 8, - ACTIONS(247), 1, + [202817] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_LBRACE, - ACTIONS(4722), 1, + STATE(5711), 1, + sym_comment, + ACTIONS(1520), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1518), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(9478), 1, - sym_filesize_unit, - ACTIONS(9480), 1, - sym_duration_unit, - STATE(5707), 1, + anon_sym_DOT, + [202835] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_RBRACE, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1958), 1, + sym__entry_separator, + ACTIONS(1960), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9528), 1, + anon_sym_DOT_DOT2, + STATE(5712), 1, sym_comment, - ACTIONS(4724), 2, + ACTIONS(9530), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202758] = 4, - ACTIONS(247), 1, + [202861] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5708), 1, + STATE(5713), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1872), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 5, - anon_sym_in2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202776] = 3, - ACTIONS(247), 1, + sym__entry_separator, + [202879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5709), 1, + STATE(5714), 1, sym_comment, - ACTIONS(5693), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202792] = 4, - ACTIONS(247), 1, + ACTIONS(1524), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1522), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202897] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5710), 1, + STATE(5715), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1768), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 5, - sym__newline, + ACTIONS(1770), 5, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202810] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(3196), 1, - sym_cell_path, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - STATE(5711), 1, - sym_comment, - ACTIONS(963), 2, - anon_sym_DASH_DASH, - anon_sym_in2, - [202836] = 4, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [202915] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5712), 1, + STATE(5716), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1820), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1683), 5, + ACTIONS(1822), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202854] = 8, + [202933] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(2060), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5713), 1, + STATE(5717), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(7212), 1, + STATE(7401), 1, sym_cell_path, - ACTIONS(1899), 2, + ACTIONS(2058), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202880] = 4, - ACTIONS(247), 1, + [202959] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5714), 1, + ACTIONS(1518), 1, + anon_sym_DASH2, + STATE(5718), 1, sym_comment, - ACTIONS(1761), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1763), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202898] = 4, - ACTIONS(247), 1, + ACTIONS(1520), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [202977] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5715), 1, + ACTIONS(5040), 1, + anon_sym_DASH2, + ACTIONS(9532), 1, + anon_sym_EQ2, + STATE(5719), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202916] = 5, - ACTIONS(247), 1, + ACTIONS(5038), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202997] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(5720), 1, + sym_comment, + ACTIONS(2345), 3, + anon_sym_DASH_DASH, anon_sym_DASH2, - ACTIONS(9488), 1, - anon_sym_LBRACK2, - STATE(5716), 1, + anon_sym_as, + ACTIONS(2349), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [203017] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(5721), 1, sym_comment, - ACTIONS(2326), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2353), 3, anon_sym_DASH_DASH, - anon_sym_as, - [202936] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1010), 1, anon_sym_DASH2, - STATE(5717), 1, - sym_comment, - ACTIONS(1012), 6, + anon_sym_as, + ACTIONS(2355), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [202954] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5718), 1, - sym_comment, - ACTIONS(5681), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202970] = 3, - ACTIONS(247), 1, + [203037] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5719), 1, + STATE(5722), 1, sym_comment, - ACTIONS(5689), 7, + ACTIONS(8289), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -405244,14709 +543366,14665 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [202986] = 4, - ACTIONS(247), 1, + [203053] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5720), 1, + STATE(5723), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1528), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203004] = 4, - ACTIONS(247), 1, + sym__entry_separator, + ACTIONS(1526), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [203071] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(1522), 1, anon_sym_DASH2, - STATE(5721), 1, + STATE(5724), 1, sym_comment, - ACTIONS(1016), 6, + ACTIONS(1524), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, anon_sym_DOT, - [203022] = 8, + [203089] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(1812), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9490), 1, - anon_sym_DOT_DOT2, - STATE(5722), 1, - sym_comment, - ACTIONS(9492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203048] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_in2, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - ACTIONS(9494), 1, - sym_filesize_unit, - ACTIONS(9496), 1, - sym_duration_unit, - STATE(5723), 1, - sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203074] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5724), 1, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(5725), 1, sym_comment, - ACTIONS(1681), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1683), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203092] = 8, + ACTIONS(1538), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(1540), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [203109] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(2020), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, - STATE(5725), 1, + STATE(5726), 1, sym_comment, - STATE(5997), 1, + STATE(5924), 1, aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - STATE(6984), 1, + STATE(7166), 1, sym_cell_path, - ACTIONS(1915), 2, + ACTIONS(2018), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [203118] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5726), 1, - sym_comment, - ACTIONS(5658), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203134] = 3, - ACTIONS(247), 1, + [203135] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2056), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, STATE(5727), 1, sym_comment, - ACTIONS(9498), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203149] = 8, - ACTIONS(247), 1, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(7290), 1, + sym_cell_path, + ACTIONS(2054), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [203161] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5031), 1, - sym__blosure, + ACTIONS(5170), 1, + anon_sym_DASH2, STATE(5728), 1, sym_comment, - STATE(5836), 1, - aux_sym_shebang_repeat1, - [203174] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9506), 1, - anon_sym_DQUOTE2, - STATE(5729), 1, - sym_comment, - STATE(5739), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203197] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5730), 1, - sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [203222] = 8, + ACTIONS(5168), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203178] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9508), 1, + ACTIONS(8688), 1, aux_sym_unquoted_token3, - STATE(5731), 1, - sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [203247] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9508), 1, - aux_sym_unquoted_token3, - STATE(5732), 1, + STATE(5729), 1, sym_comment, - STATE(8149), 1, + STATE(6260), 1, sym__immediate_decimal, - [203272] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(9508), 1, - aux_sym_unquoted_token2, - STATE(5733), 1, - sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9510), 2, - sym_filesize_unit, - sym_duration_unit, - [203293] = 8, + [203203] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5734), 1, - sym_comment, - STATE(6089), 1, - sym__immediate_decimal, - [203318] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4956), 1, + ACTIONS(8688), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5735), 1, + STATE(5730), 1, sym_comment, - STATE(8149), 1, + STATE(7771), 1, sym__immediate_decimal, - [203343] = 6, - ACTIONS(247), 1, + [203228] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, - STATE(5736), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9538), 1, + anon_sym_DQUOTE2, + STATE(5731), 1, sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9510), 2, - sym_filesize_unit, - sym_duration_unit, - [203364] = 5, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203251] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2341), 1, anon_sym_LBRACE, - ACTIONS(2252), 1, + ACTIONS(2343), 1, aux_sym_unquoted_token4, - STATE(5737), 1, + STATE(5732), 1, sym_comment, - ACTIONS(2246), 4, + ACTIONS(2337), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, - [203383] = 5, - ACTIONS(3), 1, + [203270] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2256), 1, - anon_sym_LBRACE, - STATE(5738), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9542), 1, + anon_sym_RBRACK, + STATE(5733), 1, sym_comment, - ACTIONS(2254), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(6203), 1, + aux_sym_shebang_repeat1, + STATE(6850), 1, + sym_val_list, + STATE(7323), 1, + aux_sym_val_table_repeat1, + [203295] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2512), 1, anon_sym_DASH2, - [203402] = 7, - ACTIONS(3), 1, + STATE(5734), 1, + sym_comment, + ACTIONS(2514), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203312] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9512), 1, - anon_sym_DQUOTE2, - STATE(5739), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + STATE(5735), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203425] = 8, - ACTIONS(247), 1, + STATE(6720), 1, + sym_block, + STATE(7574), 1, + sym_short_flag, + STATE(7587), 1, + sym_long_flag, + [203337] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9514), 1, + ACTIONS(9548), 1, sym__newline, - ACTIONS(9516), 1, + ACTIONS(9550), 1, anon_sym_SEMI, - ACTIONS(9518), 1, + ACTIONS(9552), 1, anon_sym_RPAREN, - STATE(252), 1, + STATE(276), 1, aux_sym__parenthesized_body_repeat1, - STATE(5740), 1, + STATE(5736), 1, sym_comment, - STATE(6771), 1, + STATE(6277), 1, aux_sym__block_body_repeat1, - STATE(6852), 1, + STATE(7385), 1, aux_sym_shebang_repeat1, - [203450] = 8, - ACTIONS(3), 1, + [203362] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - STATE(5741), 1, + ACTIONS(2034), 1, + anon_sym_DASH2, + STATE(5737), 1, sym_comment, - STATE(7507), 1, - sym__immediate_decimal, - [203475] = 8, - ACTIONS(247), 1, + ACTIONS(2036), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203379] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9522), 1, + ACTIONS(9554), 1, anon_sym_RBRACK, - STATE(5742), 1, + STATE(5738), 1, sym_comment, - STATE(6129), 1, + STATE(6204), 1, aux_sym_shebang_repeat1, - STATE(6831), 1, + STATE(6853), 1, sym_val_list, - STATE(7281), 1, + STATE(7326), 1, aux_sym_val_table_repeat1, - [203500] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(9524), 1, - aux_sym_unquoted_token2, - STATE(5743), 1, - sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9510), 2, - sym_filesize_unit, - sym_duration_unit, - [203521] = 6, + [203404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2163), 1, - sym__entry_separator, - ACTIONS(9526), 1, - anon_sym_DOT_DOT2, - STATE(5744), 1, + ACTIONS(1540), 1, + anon_sym_LBRACE, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + STATE(5739), 1, sym_comment, - ACTIONS(2157), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9528), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203542] = 7, - ACTIONS(247), 1, + ACTIONS(1538), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [203423] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9530), 1, + ACTIONS(5188), 1, + anon_sym_DASH2, + STATE(5740), 1, + sym_comment, + ACTIONS(5186), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + anon_sym_as, + [203440] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5741), 1, + sym_comment, + ACTIONS(9556), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [203455] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2038), 1, anon_sym_DASH2, - ACTIONS(9534), 1, - anon_sym_LBRACE, - STATE(5745), 1, + STATE(5742), 1, sym_comment, - STATE(6595), 1, - sym_val_record, - STATE(7648), 2, - sym_short_flag, - sym_long_flag, - [203565] = 7, + ACTIONS(2040), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203472] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9536), 1, + ACTIONS(9558), 1, anon_sym_DQUOTE2, - STATE(5746), 1, + STATE(5743), 1, sym_comment, - STATE(5953), 1, + STATE(5747), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203588] = 8, + [203495] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, + ACTIONS(2203), 1, + sym__entry_separator, + ACTIONS(9560), 1, + anon_sym_DOT_DOT2, + STATE(5744), 1, + sym_comment, + ACTIONS(2197), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9562), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203516] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4782), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5747), 1, + STATE(5745), 1, sym_comment, - STATE(6089), 1, + STATE(6260), 1, sym__immediate_decimal, - [203613] = 8, + [203541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, + ACTIONS(4782), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5748), 1, + STATE(5746), 1, sym_comment, - STATE(7507), 1, + STATE(7771), 1, sym__immediate_decimal, - [203638] = 8, - ACTIONS(247), 1, + [203566] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9564), 1, + anon_sym_DQUOTE2, + STATE(5747), 1, + sym_comment, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203589] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(9566), 1, + anon_sym_DOT, + ACTIONS(9568), 1, + aux_sym__immediate_decimal_token2, + STATE(5748), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [203610] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9538), 1, + ACTIONS(9570), 1, anon_sym_RBRACK, STATE(5749), 1, sym_comment, - STATE(6131), 1, + STATE(6205), 1, aux_sym_shebang_repeat1, - STATE(6907), 1, + STATE(6873), 1, sym_val_list, - STATE(7284), 1, + STATE(7333), 1, aux_sym_val_table_repeat1, - [203663] = 5, - ACTIONS(247), 1, + [203635] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACE, + ACTIONS(5210), 1, + anon_sym_DASH2, STATE(5750), 1, sym_comment, - STATE(6709), 1, + ACTIONS(5208), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203652] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9572), 1, + anon_sym_RBRACK, + STATE(5751), 1, + sym_comment, + STATE(6206), 1, + aux_sym_shebang_repeat1, + STATE(6877), 1, + sym_val_list, + STATE(7335), 1, + aux_sym_val_table_repeat1, + [203677] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9576), 1, + anon_sym_LBRACE, + STATE(5752), 1, + sym_comment, + STATE(6708), 1, sym_val_record, - ACTIONS(9540), 4, + ACTIONS(9574), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [203682] = 7, - ACTIONS(247), 1, + [203696] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9542), 1, - sym_identifier, + ACTIONS(6218), 1, + anon_sym_LBRACE, ACTIONS(9544), 1, anon_sym_DASH_DASH, ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5751), 1, + STATE(5753), 1, sym_comment, - STATE(5773), 1, - aux_sym_ctrl_do_repeat1, - STATE(6035), 2, + STATE(7292), 1, + sym_block, + STATE(7619), 1, sym_short_flag, + STATE(7626), 1, sym_long_flag, - [203705] = 5, - ACTIONS(247), 1, + [203721] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(2042), 1, + anon_sym_DASH2, + STATE(5754), 1, + sym_comment, + ACTIONS(2044), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203738] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9576), 1, anon_sym_LBRACE, - STATE(5752), 1, + STATE(5755), 1, sym_comment, - STATE(6742), 1, + STATE(6709), 1, sym_val_record, - ACTIONS(9548), 4, + ACTIONS(9578), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [203724] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(8581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token5, - STATE(5753), 1, - sym_comment, - STATE(7519), 1, - sym__immediate_decimal, - ACTIONS(8579), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [203747] = 7, + [203757] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9550), 1, + ACTIONS(9580), 1, anon_sym_DQUOTE2, - STATE(5754), 1, + STATE(5756), 1, sym_comment, - STATE(5953), 1, + STATE(5760), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203770] = 4, + [203780] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5755), 1, - sym_comment, - ACTIONS(1044), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1046), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203787] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(9552), 1, + ACTIONS(9582), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9554), 1, + ACTIONS(9584), 1, aux_sym__immediate_decimal_token2, - STATE(5756), 1, - sym_comment, - ACTIONS(1741), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203808] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(5757), 1, sym_comment, - ACTIONS(9556), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203823] = 8, - ACTIONS(247), 1, + ACTIONS(1890), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [203801] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(7282), 1, + aux_sym_unquoted_token3, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, STATE(5758), 1, sym_comment, - STATE(7274), 1, - sym_block, - STATE(7581), 1, - sym_short_flag, - STATE(7711), 1, - sym_long_flag, - [203848] = 4, + STATE(6260), 1, + sym__immediate_decimal, + [203826] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7282), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, STATE(5759), 1, sym_comment, - ACTIONS(2183), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2185), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203865] = 8, - ACTIONS(247), 1, + STATE(7771), 1, + sym__immediate_decimal, + [203851] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9558), 1, - anon_sym_alias, - ACTIONS(9560), 1, - anon_sym_const, - ACTIONS(9562), 1, - anon_sym_def, - ACTIONS(9564), 1, - anon_sym_extern, - ACTIONS(9566), 1, - anon_sym_module, - ACTIONS(9568), 1, - anon_sym_use, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9586), 1, + anon_sym_DQUOTE2, STATE(5760), 1, sym_comment, - [203890] = 8, - ACTIONS(247), 1, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203874] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9570), 1, - anon_sym_RBRACK, + ACTIONS(1994), 1, + anon_sym_DASH2, STATE(5761), 1, sym_comment, - STATE(6081), 1, - aux_sym_shebang_repeat1, - STATE(6913), 1, - sym_val_list, - STATE(7234), 1, - aux_sym_val_table_repeat1, - [203915] = 8, - ACTIONS(247), 1, + ACTIONS(1996), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203891] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DQUOTE2, STATE(5762), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6282), 1, - sym__assignment_pattern, - [203940] = 8, - ACTIONS(247), 1, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203914] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9590), 1, + anon_sym_RBRACK, STATE(5763), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6283), 1, - sym__assignment_pattern, - [203965] = 6, - ACTIONS(3), 1, + STATE(6207), 1, + aux_sym_shebang_repeat1, + STATE(6898), 1, + sym_val_list, + STATE(7341), 1, + aux_sym_val_table_repeat1, + [203939] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9410), 1, - anon_sym_DOT, + ACTIONS(2593), 1, + anon_sym_DASH2, STATE(5764), 1, sym_comment, - STATE(5775), 1, - aux_sym_cell_path_repeat1, - STATE(6319), 1, - sym_path, - ACTIONS(967), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [203986] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9574), 1, - aux_sym__immediate_decimal_token2, - STATE(5765), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [204007] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9524), 1, - aux_sym_unquoted_token3, - STATE(5766), 1, - sym_comment, - STATE(8149), 1, - sym__immediate_decimal, - [204032] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(9576), 1, - anon_sym_DOT_DOT2, - STATE(5767), 1, - sym_comment, - ACTIONS(1828), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9578), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204053] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5768), 1, - sym_comment, - ACTIONS(9580), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204068] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(2595), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5769), 1, - sym_comment, - STATE(7040), 1, - sym_block, - STATE(7620), 1, - sym_short_flag, - STATE(7657), 1, - sym_long_flag, - [204093] = 8, - ACTIONS(247), 1, + anon_sym_as, + [203956] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9582), 1, + ACTIONS(9592), 1, anon_sym_RBRACK, - STATE(5770), 1, + STATE(5765), 1, sym_comment, - STATE(6084), 1, + STATE(6208), 1, aux_sym_shebang_repeat1, - STATE(7223), 1, + STATE(6901), 1, sym_val_list, - STATE(7241), 1, + STATE(7343), 1, aux_sym_val_table_repeat1, - [204118] = 8, - ACTIONS(247), 1, + [203981] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(2531), 1, anon_sym_DASH2, - STATE(5771), 1, + STATE(5766), 1, sym_comment, - STATE(7108), 1, - sym_block, - STATE(7677), 1, - sym_short_flag, - STATE(7678), 1, - sym_long_flag, - [204143] = 4, - ACTIONS(3), 1, + ACTIONS(2533), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203998] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5772), 1, + ACTIONS(2054), 1, + anon_sym_DASH2, + STATE(5767), 1, sym_comment, - ACTIONS(2052), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2054), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204160] = 7, - ACTIONS(247), 1, + ACTIONS(2056), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204015] = 8, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6218), 1, + anon_sym_LBRACE, ACTIONS(9544), 1, anon_sym_DASH_DASH, ACTIONS(9546), 1, anon_sym_DASH2, - ACTIONS(9584), 1, - sym_identifier, - STATE(5773), 1, + STATE(5768), 1, sym_comment, - STATE(5980), 1, - aux_sym_ctrl_do_repeat1, - STATE(6035), 2, + STATE(7346), 1, + sym_block, + STATE(7649), 1, sym_short_flag, + STATE(7654), 1, sym_long_flag, - [204183] = 8, - ACTIONS(247), 1, + [204040] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(2535), 1, anon_sym_DASH2, - STATE(5774), 1, + STATE(5769), 1, sym_comment, - STATE(7177), 1, - sym_block, - STATE(7497), 1, - sym_short_flag, - STATE(7670), 1, - sym_long_flag, - [204208] = 5, + ACTIONS(2537), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204057] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9586), 1, - anon_sym_DOT, - STATE(6319), 1, - sym_path, - STATE(5775), 2, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9594), 1, + anon_sym_DQUOTE2, + STATE(5770), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [204227] = 8, + STATE(5773), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204080] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(7202), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5776), 1, + STATE(5771), 1, sym_comment, - STATE(6089), 1, + STATE(6260), 1, sym__immediate_decimal, - [204252] = 8, + [204105] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(7202), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5777), 1, + STATE(5772), 1, sym_comment, - STATE(7507), 1, + STATE(7771), 1, sym__immediate_decimal, - [204277] = 8, - ACTIONS(247), 1, + [204130] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9596), 1, + anon_sym_DQUOTE2, + STATE(5773), 1, + sym_comment, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204153] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2539), 1, + anon_sym_DASH2, + STATE(5774), 1, + sym_comment, + ACTIONS(2541), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + anon_sym_as, + [204170] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9598), 1, + anon_sym_RBRACK, + STATE(5775), 1, + sym_comment, + STATE(6209), 1, + aux_sym_shebang_repeat1, + STATE(6921), 1, + sym_val_list, + STATE(7350), 1, + aux_sym_val_table_repeat1, + [204195] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7384), 1, + anon_sym_RBRACK, + ACTIONS(7386), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5776), 1, + sym_comment, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(7599), 1, + sym_cell_path, + [204220] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2058), 1, anon_sym_DASH2, + STATE(5777), 1, + sym_comment, + ACTIONS(2060), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204237] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9600), 1, + anon_sym_RBRACK, STATE(5778), 1, sym_comment, - STATE(6856), 1, - sym_block, - STATE(7457), 1, - sym_long_flag, - STATE(7579), 1, - sym_short_flag, - [204302] = 8, - ACTIONS(247), 1, + STATE(6210), 1, + aux_sym_shebang_repeat1, + STATE(6926), 1, + sym_val_list, + STATE(7352), 1, + aux_sym_val_table_repeat1, + [204262] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym_RBRACK, STATE(5779), 1, sym_comment, - STATE(6954), 1, - sym_block, - STATE(7479), 1, - sym_long_flag, - STATE(7663), 1, - sym_short_flag, - [204327] = 8, - ACTIONS(247), 1, + STATE(6190), 1, + aux_sym_shebang_repeat1, + STATE(6957), 1, + sym_val_list, + STATE(7272), 1, + aux_sym_val_table_repeat1, + [204287] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(2191), 1, + sym__entry_separator, + ACTIONS(9604), 1, + anon_sym_DOT_DOT2, STATE(5780), 1, sym_comment, - STATE(7204), 1, - sym_block, - STATE(7513), 1, - sym_short_flag, - STATE(7514), 1, - sym_long_flag, - [204352] = 8, - ACTIONS(247), 1, + ACTIONS(2185), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9606), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204308] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9608), 1, + anon_sym_DQUOTE2, STATE(5781), 1, sym_comment, - STATE(7214), 1, - sym_block, - STATE(7526), 1, - sym_short_flag, - STATE(7531), 1, - sym_long_flag, - [204377] = 7, - ACTIONS(247), 1, + STATE(5868), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204331] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(8581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9610), 1, + anon_sym_DQUOTE2, STATE(5782), 1, sym_comment, - STATE(7764), 1, - sym__immediate_decimal, - ACTIONS(8579), 2, + STATE(5785), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204354] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6490), 1, + aux_sym_unquoted_token3, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - [204400] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, STATE(5783), 1, sym_comment, - STATE(7261), 1, - sym_block, - STATE(7567), 1, - sym_short_flag, - STATE(7569), 1, - sym_long_flag, - [204425] = 8, + STATE(6260), 1, + sym__immediate_decimal, + [204379] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7373), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, + ACTIONS(6490), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, STATE(5784), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7511), 1, - sym_cell_path, - [204450] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5785), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204467] = 6, + STATE(7771), 1, + sym__immediate_decimal, + [204404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9591), 1, - aux_sym__immediate_decimal_token2, - STATE(5786), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9612), 1, + anon_sym_DQUOTE2, + STATE(5785), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [204488] = 4, - ACTIONS(247), 1, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204427] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(2066), 1, anon_sym_DASH2, - STATE(5787), 1, + STATE(5786), 1, sym_comment, - ACTIONS(1851), 5, + ACTIONS(2068), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204505] = 8, - ACTIONS(247), 1, + [204444] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9593), 1, + ACTIONS(9614), 1, anon_sym_RBRACK, - STATE(5788), 1, + STATE(5787), 1, sym_comment, - STATE(6087), 1, + STATE(6211), 1, aux_sym_shebang_repeat1, - STATE(7076), 1, + STATE(6945), 1, sym_val_list, - STATE(7237), 1, + STATE(7356), 1, aux_sym_val_table_repeat1, - [204530] = 4, - ACTIONS(3), 1, + [204469] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3690), 1, - sym__space, + STATE(5788), 1, + sym_comment, + ACTIONS(9616), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204484] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2547), 1, + anon_sym_DASH2, STATE(5789), 1, sym_comment, - ACTIONS(3688), 5, + ACTIONS(2549), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [204547] = 6, - ACTIONS(3), 1, + anon_sym_as, + [204501] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9618), 1, + anon_sym_RBRACK, STATE(5790), 1, sym_comment, - ACTIONS(1026), 2, + STATE(6212), 1, + aux_sym_shebang_repeat1, + STATE(6949), 1, + sym_val_list, + STATE(7359), 1, + aux_sym_val_table_repeat1, + [204526] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7411), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204568] = 8, - ACTIONS(247), 1, + ACTIONS(7413), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5791), 1, + sym_comment, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(7633), 1, + sym_cell_path, + [204551] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(2551), 1, + anon_sym_DASH2, + STATE(5792), 1, + sym_comment, + ACTIONS(2553), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + anon_sym_as, + [204568] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2070), 1, anon_sym_DASH2, - STATE(5791), 1, + STATE(5793), 1, sym_comment, - STATE(6978), 1, - sym_block, - STATE(7462), 1, - sym_short_flag, - STATE(7496), 1, - sym_long_flag, - [204593] = 7, + ACTIONS(2072), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204585] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9599), 1, + ACTIONS(9620), 1, anon_sym_DQUOTE2, - STATE(5792), 1, + STATE(5794), 1, sym_comment, - STATE(5796), 1, + STATE(5798), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204616] = 8, + [204608] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(4763), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5793), 1, + STATE(5795), 1, sym_comment, - STATE(6318), 1, + STATE(6260), 1, sym__immediate_decimal, - [204641] = 8, + [204633] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(4763), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5794), 1, + STATE(5796), 1, sym_comment, - STATE(8149), 1, + STATE(7771), 1, sym__immediate_decimal, - [204666] = 6, - ACTIONS(247), 1, + [204658] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4722), 1, - anon_sym_DOT_DOT2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, - STATE(5795), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + STATE(5797), 1, sym_comment, - ACTIONS(4724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9510), 2, - sym_filesize_unit, - sym_duration_unit, - [204687] = 7, + STATE(7374), 1, + sym_block, + STATE(7670), 1, + sym_short_flag, + STATE(7673), 1, + sym_long_flag, + [204683] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9601), 1, + ACTIONS(9622), 1, anon_sym_DQUOTE2, - STATE(5796), 1, + STATE(5798), 1, sym_comment, - STATE(5953), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204710] = 8, - ACTIONS(247), 1, + [204706] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(2559), 1, + anon_sym_DASH2, + STATE(5799), 1, + sym_comment, + ACTIONS(2561), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204723] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9603), 1, + ACTIONS(9624), 1, anon_sym_RBRACK, - STATE(5797), 1, + STATE(5800), 1, sym_comment, - STATE(6155), 1, + STATE(6214), 1, aux_sym_shebang_repeat1, - STATE(7190), 1, + STATE(6967), 1, sym_val_list, - STATE(7306), 1, + STATE(7364), 1, aux_sym_val_table_repeat1, - [204735] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5798), 1, - sym_comment, - STATE(7005), 1, - sym_block, - STATE(7548), 1, - sym_short_flag, - STATE(7554), 1, - sym_long_flag, - [204760] = 5, - ACTIONS(247), 1, + [204748] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(5799), 1, + ACTIONS(9626), 1, + anon_sym_alias, + ACTIONS(9628), 1, + anon_sym_const, + ACTIONS(9630), 1, + anon_sym_def, + ACTIONS(9632), 1, + anon_sym_extern, + ACTIONS(9634), 1, + anon_sym_module, + ACTIONS(9636), 1, + anon_sym_use, + STATE(5801), 1, sym_comment, - STATE(6252), 1, - sym_block, - ACTIONS(9605), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204779] = 4, - ACTIONS(247), 1, + [204773] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(2563), 1, anon_sym_DASH2, - STATE(5800), 1, + STATE(5802), 1, sym_comment, - ACTIONS(2458), 5, + ACTIONS(2565), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204796] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(5801), 1, - sym_comment, - STATE(6291), 1, - sym_block, - ACTIONS(9607), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204815] = 8, - ACTIONS(247), 1, + [204790] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9609), 1, + ACTIONS(9638), 1, anon_sym_RBRACK, - STATE(5802), 1, + STATE(5803), 1, sym_comment, - STATE(6156), 1, + STATE(6215), 1, aux_sym_shebang_repeat1, - STATE(7195), 1, + STATE(6972), 1, sym_val_list, - STATE(7308), 1, + STATE(7366), 1, aux_sym_val_table_repeat1, - [204840] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(5803), 1, - sym_comment, - STATE(6292), 1, - sym_block, - ACTIONS(9607), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204859] = 8, - ACTIONS(247), 1, + [204815] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(4969), 1, + aux_sym_unquoted_token3, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, STATE(5804), 1, sym_comment, - STATE(7036), 1, - sym_block, - STATE(7561), 1, - sym_short_flag, - STATE(7582), 1, - sym_long_flag, - [204884] = 8, - ACTIONS(247), 1, + STATE(6260), 1, + sym__immediate_decimal, + [204840] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, + ACTIONS(9640), 1, + anon_sym_LBRACE, STATE(5805), 1, sym_comment, - STATE(7057), 1, - sym_block, - STATE(7615), 1, + STATE(7009), 1, + sym_val_record, + STATE(7643), 2, sym_short_flag, - STATE(7616), 1, sym_long_flag, - [204909] = 8, - ACTIONS(247), 1, + [204863] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9642), 1, + anon_sym_RBRACK, STATE(5806), 1, sym_comment, - STATE(6345), 1, - sym_block, - STATE(7510), 1, - sym_short_flag, - STATE(7512), 1, - sym_long_flag, - [204934] = 4, - ACTIONS(247), 1, + STATE(6218), 1, + aux_sym_shebang_repeat1, + STATE(7369), 1, + sym_val_list, + STATE(7379), 1, + aux_sym_val_table_repeat1, + [204888] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9644), 1, + anon_sym_DQUOTE2, STATE(5807), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204951] = 7, - ACTIONS(247), 1, + STATE(5810), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204911] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(8581), 1, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8491), 1, + aux_sym_unquoted_token3, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, STATE(5808), 1, sym_comment, - STATE(7766), 1, + STATE(6260), 1, sym__immediate_decimal, - ACTIONS(8579), 2, + [204936] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8491), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - [204974] = 3, - ACTIONS(247), 1, - anon_sym_POUND, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, STATE(5809), 1, sym_comment, - ACTIONS(9611), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204989] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5810), 1, - sym_comment, - ACTIONS(9613), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205004] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(9615), 1, - anon_sym_DOT, - ACTIONS(9617), 1, - aux_sym__immediate_decimal_token2, - STATE(5811), 1, - sym_comment, - ACTIONS(1767), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205025] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5812), 1, - sym_comment, - STATE(7073), 1, - sym_block, - STATE(7623), 1, - sym_short_flag, - STATE(7625), 1, - sym_long_flag, - [205050] = 7, + STATE(7771), 1, + sym__immediate_decimal, + [204961] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9619), 1, + ACTIONS(9646), 1, anon_sym_DQUOTE2, - STATE(5813), 1, + STATE(5810), 1, sym_comment, - STATE(5816), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205073] = 8, + [204984] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9648), 1, + anon_sym_RBRACK, + STATE(5811), 1, + sym_comment, + STATE(6216), 1, + aux_sym_shebang_repeat1, + STATE(6994), 1, + sym_val_list, + STATE(7372), 1, + aux_sym_val_table_repeat1, + [205009] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(4969), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5814), 1, + STATE(5812), 1, sym_comment, - STATE(6318), 1, + STATE(6120), 1, sym__immediate_decimal, - [205098] = 8, + [205034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5580), 1, + ACTIONS(4969), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5815), 1, + STATE(5813), 1, sym_comment, - STATE(8149), 1, + STATE(7665), 1, sym__immediate_decimal, - [205123] = 7, - ACTIONS(3), 1, + [205059] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9621), 1, - anon_sym_DQUOTE2, - STATE(5816), 1, - sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205146] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9623), 1, + ACTIONS(9650), 1, anon_sym_RBRACK, - STATE(5817), 1, + STATE(5814), 1, sym_comment, - STATE(6159), 1, + STATE(6217), 1, aux_sym_shebang_repeat1, - STATE(7316), 1, - aux_sym_val_table_repeat1, - STATE(7447), 1, + STATE(6998), 1, sym_val_list, - [205171] = 4, - ACTIONS(3), 1, + STATE(7375), 1, + aux_sym_val_table_repeat1, + [205084] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_LBRACE, - STATE(5818), 1, + ACTIONS(1788), 1, + anon_sym_DASH2, + STATE(5815), 1, sym_comment, - ACTIONS(2268), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1800), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [205188] = 5, - ACTIONS(247), 1, + anon_sym_as, + [205101] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6683), 1, + ACTIONS(2234), 1, + sym__entry_separator, + ACTIONS(9652), 1, anon_sym_DOT_DOT2, - STATE(5819), 1, + STATE(5816), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(2228), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9654), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5926), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205207] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5820), 1, - sym_comment, - STATE(7097), 1, - sym_block, - STATE(7643), 1, - sym_short_flag, - STATE(7645), 1, - sym_long_flag, - [205232] = 8, - ACTIONS(247), 1, + [205122] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9514), 1, + ACTIONS(9548), 1, sym__newline, - ACTIONS(9516), 1, + ACTIONS(9550), 1, anon_sym_SEMI, - ACTIONS(9625), 1, + ACTIONS(9656), 1, anon_sym_RPAREN, - STATE(252), 1, + STATE(276), 1, aux_sym__parenthesized_body_repeat1, - STATE(5821), 1, + STATE(5817), 1, sym_comment, - STATE(6325), 1, + STATE(6522), 1, aux_sym__block_body_repeat1, - STATE(6852), 1, - aux_sym_shebang_repeat1, - [205257] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9627), 1, - anon_sym_RBRACK, - STATE(5822), 1, - sym_comment, - STATE(6160), 1, + STATE(7385), 1, aux_sym_shebang_repeat1, - STATE(6822), 1, - sym_val_list, - STATE(7319), 1, - aux_sym_val_table_repeat1, - [205282] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(9629), 1, - anon_sym_DOT_DOT2, - STATE(5823), 1, - sym_comment, - ACTIONS(1810), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9631), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205303] = 4, - ACTIONS(247), 1, + [205147] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, - anon_sym_DASH2, - STATE(5824), 1, + ACTIONS(4969), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, + STATE(5818), 1, sym_comment, - ACTIONS(2466), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [205320] = 4, - ACTIONS(247), 1, + STATE(7771), 1, + sym__immediate_decimal, + [205172] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(2567), 1, anon_sym_DASH2, - STATE(5825), 1, + STATE(5819), 1, sym_comment, - ACTIONS(2466), 5, + ACTIONS(2569), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205337] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6683), 1, - anon_sym_DOT_DOT2, - STATE(5826), 1, - sym_comment, - ACTIONS(6685), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5933), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [205356] = 7, + [205189] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9633), 1, + ACTIONS(9658), 1, anon_sym_DQUOTE2, - STATE(5827), 1, + STATE(5820), 1, sym_comment, - STATE(5832), 1, + STATE(5823), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205379] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5045), 1, - sym__blosure, - STATE(5828), 1, - sym_comment, - STATE(5999), 1, - aux_sym_shebang_repeat1, - [205404] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2472), 1, - anon_sym_DASH2, - STATE(5829), 1, - sym_comment, - ACTIONS(2474), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [205421] = 8, + [205212] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8635), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token3, - ACTIONS(8778), 1, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5830), 1, + STATE(5821), 1, sym_comment, - STATE(6318), 1, + STATE(6260), 1, sym__immediate_decimal, - [205446] = 8, + [205237] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8635), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token3, - ACTIONS(8784), 1, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5831), 1, + STATE(5822), 1, sym_comment, - STATE(8149), 1, + STATE(7771), 1, sym__immediate_decimal, - [205471] = 7, + [205262] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9635), 1, + ACTIONS(9660), 1, anon_sym_DQUOTE2, - STATE(5832), 1, + STATE(5823), 1, sym_comment, - STATE(5953), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205494] = 8, - ACTIONS(247), 1, + [205285] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5034), 1, + anon_sym_DASH2, + STATE(5824), 1, + sym_comment, + ACTIONS(5032), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205302] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9637), 1, + ACTIONS(9662), 1, anon_sym_RBRACK, - STATE(5833), 1, + STATE(5825), 1, sym_comment, - STATE(6164), 1, + STATE(6219), 1, aux_sym_shebang_repeat1, - STATE(6846), 1, + STATE(7016), 1, sym_val_list, - STATE(7323), 1, + STATE(7380), 1, aux_sym_val_table_repeat1, - [205519] = 4, - ACTIONS(3), 1, + [205327] = 8, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5834), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9664), 1, + anon_sym_RBRACK, + STATE(5826), 1, + sym_comment, + STATE(6220), 1, + aux_sym_shebang_repeat1, + STATE(7020), 1, + sym_val_list, + STATE(7382), 1, + aux_sym_val_table_repeat1, + [205352] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5126), 1, + sym__blosure, + STATE(5827), 1, sym_comment, - ACTIONS(2118), 3, + [205377] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9668), 1, anon_sym_RBRACK, - anon_sym_RBRACE, + STATE(5828), 1, + sym_comment, + STATE(6244), 1, + aux_sym_shebang_repeat1, + STATE(6956), 1, + sym_val_list, + STATE(6958), 1, + aux_sym_val_table_repeat1, + [205402] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9670), 1, + anon_sym_DQUOTE2, + STATE(5829), 1, + sym_comment, + STATE(5831), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205425] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, - ACTIONS(2120), 3, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, + STATE(5830), 1, + sym_comment, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205536] = 8, + ACTIONS(9672), 2, + sym_filesize_unit, + sym_duration_unit, + [205446] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6184), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - ACTIONS(9639), 1, - anon_sym_RBRACE, - STATE(5835), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, + anon_sym_DQUOTE2, + STATE(5831), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7178), 1, - sym_cell_path, - [205561] = 8, - ACTIONS(247), 1, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205469] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5117), 1, - sym__blosure, - STATE(5836), 1, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + STATE(5832), 1, sym_comment, - [205586] = 8, - ACTIONS(247), 1, + STATE(7431), 1, + sym_block, + STATE(7693), 1, + sym_short_flag, + STATE(7695), 1, + sym_long_flag, + [205494] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9442), 1, - anon_sym_def, - ACTIONS(9444), 1, - anon_sym_extern, - ACTIONS(9446), 1, - anon_sym_module, - ACTIONS(9448), 1, - anon_sym_use, - ACTIONS(9642), 1, - anon_sym_alias, - ACTIONS(9644), 1, - anon_sym_const, - STATE(5837), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9676), 1, + anon_sym_RBRACK, + STATE(5833), 1, sym_comment, - [205611] = 8, - ACTIONS(247), 1, + STATE(6221), 1, + aux_sym_shebang_repeat1, + STATE(7039), 1, + sym_val_list, + STATE(7388), 1, + aux_sym_val_table_repeat1, + [205519] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9678), 1, anon_sym_RBRACK, - STATE(5838), 1, + STATE(5834), 1, sym_comment, - STATE(6165), 1, + STATE(6222), 1, aux_sym_shebang_repeat1, - STATE(6849), 1, + STATE(7043), 1, sym_val_list, - STATE(7325), 1, + STATE(7390), 1, aux_sym_val_table_repeat1, - [205636] = 4, - ACTIONS(247), 1, + [205544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2486), 1, - anon_sym_DASH2, - STATE(5839), 1, + ACTIONS(2409), 1, + anon_sym_LBRACE, + STATE(5835), 1, sym_comment, - ACTIONS(2488), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2407), 5, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [205653] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2510), 1, anon_sym_DASH2, - STATE(5840), 1, + aux_sym_unquoted_token4, + [205561] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9680), 1, + anon_sym_DOT, + STATE(6814), 1, + sym_path, + STATE(5836), 2, sym_comment, - ACTIONS(2512), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [205670] = 8, - ACTIONS(247), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1483), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [205580] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9683), 1, + anon_sym_DQUOTE2, + STATE(5837), 1, + sym_comment, + STATE(5839), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205603] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9685), 1, + sym_identifier, + ACTIONS(9687), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9689), 1, anon_sym_DASH2, - STATE(5841), 1, + STATE(5838), 1, sym_comment, - STATE(6389), 1, - sym_block, - STATE(7592), 1, + STATE(5948), 1, + aux_sym_ctrl_do_repeat1, + STATE(6172), 2, sym_short_flag, - STATE(7593), 1, sym_long_flag, - [205695] = 7, + [205626] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9648), 1, + ACTIONS(9691), 1, anon_sym_DQUOTE2, - STATE(5842), 1, + STATE(5839), 1, sym_comment, - STATE(5846), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205718] = 8, - ACTIONS(3), 1, + [205649] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9693), 1, + anon_sym_RBRACK, + STATE(5840), 1, + sym_comment, + STATE(6223), 1, + aux_sym_shebang_repeat1, + STATE(7054), 1, + sym_val_list, + STATE(7394), 1, + aux_sym_val_table_repeat1, + [205674] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9695), 1, + anon_sym_RBRACK, + STATE(5841), 1, + sym_comment, + STATE(6224), 1, + aux_sym_shebang_repeat1, + STATE(7058), 1, + sym_val_list, + STATE(7397), 1, + aux_sym_val_table_repeat1, + [205699] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(5842), 1, + sym_comment, + ACTIONS(9697), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4762), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, STATE(5843), 1, sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [205743] = 8, + ACTIONS(9699), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205729] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4762), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9701), 1, + anon_sym_DQUOTE2, STATE(5844), 1, sym_comment, - STATE(8149), 1, - sym__immediate_decimal, - [205768] = 8, - ACTIONS(247), 1, + STATE(5846), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205752] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, STATE(5845), 1, sym_comment, - STATE(6390), 1, + STATE(6746), 1, sym_block, - STATE(7594), 1, - sym_short_flag, - STATE(7595), 1, - sym_long_flag, - [205793] = 7, + ACTIONS(9703), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205771] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9650), 1, + ACTIONS(9705), 1, anon_sym_DQUOTE2, STATE(5846), 1, sym_comment, - STATE(5953), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205816] = 8, - ACTIONS(247), 1, + [205794] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9652), 1, + ACTIONS(9707), 1, anon_sym_RBRACK, STATE(5847), 1, sym_comment, - STATE(6168), 1, + STATE(6225), 1, aux_sym_shebang_repeat1, - STATE(6872), 1, + STATE(7075), 1, sym_val_list, - STATE(7330), 1, + STATE(7402), 1, aux_sym_val_table_repeat1, - [205841] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5848), 1, - sym_comment, - STATE(6391), 1, - sym_block, - STATE(7596), 1, - sym_short_flag, - STATE(7597), 1, - sym_long_flag, - [205866] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, - STATE(5849), 1, - sym_comment, - STATE(6392), 1, - sym_block, - STATE(7599), 1, - sym_short_flag, - STATE(7600), 1, - sym_long_flag, - [205891] = 8, - ACTIONS(247), 1, + [205819] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9654), 1, + ACTIONS(9709), 1, anon_sym_RBRACK, - STATE(5850), 1, + STATE(5848), 1, sym_comment, - STATE(6169), 1, + STATE(6226), 1, aux_sym_shebang_repeat1, - STATE(6875), 1, + STATE(7080), 1, sym_val_list, - STATE(7333), 1, + STATE(7404), 1, aux_sym_val_table_repeat1, - [205916] = 8, - ACTIONS(247), 1, + [205844] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5851), 1, + STATE(5849), 1, sym_comment, - STATE(6393), 1, + STATE(6820), 1, sym_block, - STATE(7601), 1, + STATE(7469), 1, sym_short_flag, - STATE(7603), 1, + STATE(7661), 1, sym_long_flag, - [205941] = 7, - ACTIONS(3), 1, + [205869] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9656), 1, - anon_sym_DQUOTE2, - STATE(5852), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5087), 1, + sym__blosure, + STATE(5850), 1, sym_comment, - STATE(5855), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205964] = 8, - ACTIONS(3), 1, + STATE(5902), 1, + aux_sym_shebang_repeat1, + [205894] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5853), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9711), 1, + anon_sym_RBRACK, + STATE(5851), 1, sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [205989] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - STATE(5854), 1, + STATE(6227), 1, + aux_sym_shebang_repeat1, + STATE(7089), 1, + sym_val_list, + STATE(7408), 1, + aux_sym_val_table_repeat1, + [205919] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9713), 1, + anon_sym_RBRACK, + STATE(5852), 1, sym_comment, - STATE(8149), 1, - sym__immediate_decimal, - [206014] = 7, - ACTIONS(3), 1, + STATE(6228), 1, + aux_sym_shebang_repeat1, + STATE(7093), 1, + sym_val_list, + STATE(7410), 1, + aux_sym_val_table_repeat1, + [205944] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9658), 1, - anon_sym_DQUOTE2, - STATE(5855), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5080), 1, + sym__blosure, + STATE(5853), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206037] = 8, - ACTIONS(247), 1, + [205969] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9660), 1, + ACTIONS(9715), 1, anon_sym_RBRACK, - STATE(5856), 1, + STATE(5854), 1, sym_comment, - STATE(6171), 1, + STATE(6229), 1, aux_sym_shebang_repeat1, - STATE(6894), 1, + STATE(7104), 1, sym_val_list, - STATE(7340), 1, + STATE(7415), 1, aux_sym_val_table_repeat1, - [206062] = 8, - ACTIONS(247), 1, + [205994] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9662), 1, + ACTIONS(9717), 1, anon_sym_RBRACK, - STATE(5857), 1, + STATE(5855), 1, sym_comment, - STATE(6172), 1, + STATE(6230), 1, aux_sym_shebang_repeat1, - STATE(6898), 1, + STATE(7108), 1, sym_val_list, - STATE(7343), 1, + STATE(7417), 1, aux_sym_val_table_repeat1, - [206087] = 7, - ACTIONS(247), 1, + [206019] = 7, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(9544), 1, anon_sym_DASH_DASH, ACTIONS(9546), 1, anon_sym_DASH2, - ACTIONS(9664), 1, - sym_identifier, - STATE(5858), 1, + ACTIONS(9576), 1, + anon_sym_LBRACE, + STATE(5856), 1, sym_comment, - STATE(5980), 1, - aux_sym_ctrl_do_repeat1, - STATE(6035), 2, + STATE(6687), 1, + sym_val_record, + STATE(7546), 2, sym_short_flag, sym_long_flag, - [206110] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9666), 1, - anon_sym_DQUOTE2, - STATE(5859), 1, - sym_comment, - STATE(5862), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206133] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5860), 1, - sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [206158] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - STATE(5861), 1, - sym_comment, - STATE(8149), 1, - sym__immediate_decimal, - [206183] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9668), 1, - anon_sym_DQUOTE2, - STATE(5862), 1, - sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206206] = 4, - ACTIONS(247), 1, + [206042] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2402), 1, - anon_sym_DASH2, - STATE(5863), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(5857), 1, sym_comment, - ACTIONS(2404), 5, - ts_builtin_sym_end, + STATE(6422), 1, + sym_block, + ACTIONS(9719), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206223] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206061] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9670), 1, + ACTIONS(9721), 1, anon_sym_RBRACK, - STATE(5864), 1, + STATE(5858), 1, sym_comment, - STATE(6174), 1, + STATE(6231), 1, aux_sym_shebang_repeat1, - STATE(6927), 1, + STATE(7117), 1, sym_val_list, - STATE(7350), 1, + STATE(7421), 1, aux_sym_val_table_repeat1, - [206248] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5016), 1, - sym__blosure, - STATE(5865), 1, - sym_comment, - [206273] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH2, - STATE(5866), 1, - sym_comment, - ACTIONS(2480), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206290] = 8, - ACTIONS(247), 1, + [206086] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(9672), 1, + ACTIONS(9723), 1, anon_sym_RBRACK, - STATE(5867), 1, + STATE(5859), 1, sym_comment, - STATE(6175), 1, + STATE(6232), 1, aux_sym_shebang_repeat1, - STATE(6932), 1, + STATE(7121), 1, sym_val_list, - STATE(7353), 1, + STATE(7423), 1, aux_sym_val_table_repeat1, - [206315] = 4, - ACTIONS(247), 1, + [206111] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2347), 1, + ACTIONS(5046), 1, anon_sym_DASH2, - STATE(5868), 1, + STATE(5860), 1, sym_comment, - ACTIONS(2349), 5, + ACTIONS(5044), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206332] = 8, - ACTIONS(247), 1, + [206128] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5016), 1, - sym__blosure, - STATE(5869), 1, - sym_comment, - STATE(6026), 1, - aux_sym_shebang_repeat1, - [206357] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9674), 1, - anon_sym_DQUOTE2, - STATE(5870), 1, + STATE(5861), 1, sym_comment, - STATE(5874), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206380] = 8, + STATE(6423), 1, + sym_block, + ACTIONS(9719), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206147] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5871), 1, + STATE(5862), 1, sym_comment, - STATE(6318), 1, + STATE(6120), 1, sym__immediate_decimal, - [206405] = 8, + [206172] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5872), 1, + STATE(5863), 1, sym_comment, - STATE(8149), 1, + STATE(7665), 1, sym__immediate_decimal, - [206430] = 6, - ACTIONS(3), 1, + [206197] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9676), 1, - anon_sym_DOT, - ACTIONS(9678), 1, - aux_sym__immediate_decimal_token2, - STATE(5873), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(5864), 1, sym_comment, - ACTIONS(1765), 2, + STATE(7703), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [206220] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9725), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [206451] = 7, + STATE(5865), 1, + sym_comment, + STATE(6191), 1, + aux_sym_shebang_repeat1, + STATE(7032), 1, + sym_val_list, + STATE(7275), 1, + aux_sym_val_table_repeat1, + [206245] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9687), 1, + anon_sym_DASH_DASH, + ACTIONS(9689), 1, + anon_sym_DASH2, + ACTIONS(9727), 1, + sym_identifier, + STATE(5866), 1, + sym_comment, + STATE(5889), 1, + aux_sym_ctrl_do_repeat1, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [206268] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(5867), 1, + sym_comment, + ACTIONS(2470), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206285] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9680), 1, + ACTIONS(9729), 1, anon_sym_DQUOTE2, - STATE(5874), 1, + STATE(5868), 1, sym_comment, - STATE(5953), 1, + STATE(5918), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206474] = 8, - ACTIONS(247), 1, + [206308] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5018), 1, - sym__blosure, - STATE(5875), 1, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(5869), 1, sym_comment, - [206499] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(2470), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9682), 1, - anon_sym_RBRACK, - STATE(5876), 1, - sym_comment, - STATE(6177), 1, - aux_sym_shebang_repeat1, - STATE(6958), 1, - sym_val_list, - STATE(7359), 1, - aux_sym_val_table_repeat1, - [206524] = 8, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206325] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9500), 1, + ACTIONS(9666), 1, anon_sym_LBRACE, - STATE(4860), 1, + STATE(4904), 1, sym_block, - STATE(4861), 1, + STATE(4906), 1, sym_val_closure, - STATE(5018), 1, + STATE(5080), 1, sym__blosure, - STATE(5877), 1, + STATE(5870), 1, sym_comment, - STATE(6027), 1, + STATE(5951), 1, aux_sym_shebang_repeat1, - [206549] = 8, - ACTIONS(247), 1, + [206350] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(5871), 1, + sym_comment, + ACTIONS(2474), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9684), 1, - anon_sym_RBRACK, - STATE(5878), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206367] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + STATE(5872), 1, sym_comment, - STATE(6178), 1, - aux_sym_shebang_repeat1, - STATE(6962), 1, - sym_val_list, - STATE(7362), 1, - aux_sym_val_table_repeat1, - [206574] = 4, - ACTIONS(247), 1, + STATE(6868), 1, + sym_block, + STATE(7463), 1, + sym_long_flag, + STATE(7692), 1, + sym_short_flag, + [206392] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1026), 1, + ACTIONS(2476), 1, anon_sym_DASH2, - STATE(5879), 1, + STATE(5873), 1, sym_comment, - ACTIONS(1028), 5, + ACTIONS(2478), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206591] = 4, - ACTIONS(247), 1, + [206409] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9731), 1, + anon_sym_RBRACK, + STATE(5874), 1, + sym_comment, + STATE(6179), 1, + aux_sym_shebang_repeat1, + STATE(7226), 1, + aux_sym_val_table_repeat1, + STATE(7247), 1, + sym_val_list, + [206434] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(2480), 1, anon_sym_DASH2, - STATE(5880), 1, + STATE(5875), 1, sym_comment, - ACTIONS(2392), 5, + ACTIONS(2482), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206608] = 7, - ACTIONS(3), 1, + [206451] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9686), 1, - anon_sym_DQUOTE2, - STATE(5881), 1, + ACTIONS(6715), 1, + anon_sym_DOT_DOT2, + STATE(5876), 1, sym_comment, - STATE(5884), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206631] = 8, + ACTIONS(6717), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5936), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206470] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4730), 1, - aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5882), 1, + ACTIONS(9733), 1, + aux_sym_unquoted_token3, + STATE(5877), 1, sym_comment, - STATE(6318), 1, + STATE(6260), 1, sym__immediate_decimal, - [206656] = 8, + [206495] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6715), 1, + anon_sym_DOT_DOT2, + STATE(5878), 1, + sym_comment, + ACTIONS(6717), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5946), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206514] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4730), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5883), 1, + ACTIONS(9733), 1, + aux_sym_unquoted_token3, + STATE(5879), 1, sym_comment, - STATE(8149), 1, + STATE(7771), 1, sym__immediate_decimal, - [206681] = 7, + [206539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9735), 1, anon_sym_DQUOTE2, - STATE(5884), 1, - sym_comment, - STATE(5953), 1, + STATE(5762), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(5880), 1, + sym_comment, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9536), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206704] = 6, + [206562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9690), 1, - anon_sym_DOT, - ACTIONS(9692), 1, - aux_sym__immediate_decimal_token2, - STATE(5885), 1, + STATE(5881), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(2240), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, + anon_sym_DOT_DOT2, + ACTIONS(2242), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [206725] = 8, - ACTIONS(247), 1, + [206579] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9694), 1, - anon_sym_RBRACK, - STATE(5886), 1, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5079), 1, + sym__blosure, + STATE(5882), 1, sym_comment, - STATE(6179), 1, + STATE(5926), 1, aux_sym_shebang_repeat1, - STATE(6985), 1, - sym_val_list, - STATE(7370), 1, - aux_sym_val_table_repeat1, - [206750] = 8, - ACTIONS(247), 1, + [206604] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(629), 1, - anon_sym_RPAREN, - ACTIONS(9514), 1, - sym__newline, - ACTIONS(9516), 1, - anon_sym_SEMI, - STATE(252), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5887), 1, + ACTIONS(2006), 1, + anon_sym_DASH2, + STATE(5883), 1, sym_comment, - STATE(6289), 1, - aux_sym__block_body_repeat1, - STATE(6852), 1, - aux_sym_shebang_repeat1, - [206775] = 8, - ACTIONS(247), 1, + ACTIONS(2008), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [206621] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9696), 1, - anon_sym_RBRACK, - STATE(5888), 1, + STATE(5884), 1, sym_comment, - STATE(6180), 1, - aux_sym_shebang_repeat1, - STATE(6991), 1, - sym_val_list, - STATE(7373), 1, - aux_sym_val_table_repeat1, - [206800] = 4, - ACTIONS(247), 1, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1874), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206638] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9478), 1, + anon_sym_def, + ACTIONS(9480), 1, + anon_sym_extern, + ACTIONS(9482), 1, + anon_sym_module, + ACTIONS(9484), 1, + anon_sym_use, + ACTIONS(9737), 1, + anon_sym_alias, + ACTIONS(9739), 1, + anon_sym_const, + STATE(5885), 1, + sym_comment, + [206663] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2406), 1, + ACTIONS(2488), 1, anon_sym_DASH2, - STATE(5889), 1, + STATE(5886), 1, sym_comment, - ACTIONS(2408), 5, + ACTIONS(2490), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206817] = 4, - ACTIONS(247), 1, + [206680] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(2492), 1, anon_sym_DASH2, - STATE(5890), 1, + STATE(5887), 1, sym_comment, - ACTIONS(1889), 5, + ACTIONS(2494), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206834] = 4, - ACTIONS(247), 1, + [206697] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2343), 1, + ACTIONS(5130), 1, anon_sym_DASH2, - STATE(5891), 1, + STATE(5888), 1, sym_comment, - ACTIONS(2345), 5, + ACTIONS(5128), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206851] = 8, - ACTIONS(247), 1, + [206714] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9687), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9689), 1, anon_sym_DASH2, - STATE(5892), 1, + ACTIONS(9741), 1, + sym_identifier, + STATE(5889), 1, sym_comment, - STATE(6444), 1, - sym_block, - STATE(7652), 1, + STATE(5948), 1, + aux_sym_ctrl_do_repeat1, + STATE(6172), 2, sym_short_flag, - STATE(7654), 1, sym_long_flag, - [206876] = 7, - ACTIONS(3), 1, + [206737] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9698), 1, - anon_sym_DQUOTE2, - STATE(5893), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(5890), 1, sym_comment, - STATE(5896), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206899] = 8, - ACTIONS(3), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6278), 1, + sym__assignment_pattern, + [206762] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8499), 1, - aux_sym_unquoted_token3, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5894), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(5891), 1, sym_comment, - STATE(6318), 1, - sym__immediate_decimal, - [206924] = 8, + STATE(6148), 1, + sym__variable_name, + STATE(6280), 1, + sym__assignment_pattern, + [206787] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2508), 1, + anon_sym_DASH2, + STATE(5892), 1, + sym_comment, + ACTIONS(2510), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206804] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2597), 1, + anon_sym_DASH2, + STATE(5893), 1, + sym_comment, + ACTIONS(2599), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206821] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + ACTIONS(4915), 1, aux_sym_unquoted_token3, - ACTIONS(8579), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, + ACTIONS(8868), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, + ACTIONS(8870), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, + ACTIONS(8872), 1, aux_sym__immediate_decimal_token5, - STATE(5895), 1, + STATE(5894), 1, sym_comment, - STATE(8149), 1, + STATE(6120), 1, sym__immediate_decimal, - [206949] = 7, - ACTIONS(3), 1, + [206846] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9700), 1, - anon_sym_DQUOTE2, - STATE(5896), 1, + ACTIONS(2601), 1, + anon_sym_DASH2, + STATE(5895), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206972] = 8, - ACTIONS(247), 1, + ACTIONS(2603), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206863] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5897), 1, + STATE(5896), 1, sym_comment, - STATE(6453), 1, + STATE(7144), 1, sym_block, - STATE(7655), 1, + STATE(7479), 1, sym_short_flag, - STATE(7656), 1, + STATE(7481), 1, sym_long_flag, - [206997] = 8, - ACTIONS(247), 1, + [206888] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9702), 1, - anon_sym_RBRACK, - STATE(5898), 1, + ACTIONS(2605), 1, + anon_sym_DASH2, + STATE(5897), 1, sym_comment, - STATE(6183), 1, - aux_sym_shebang_repeat1, - STATE(7016), 1, - sym_val_list, - STATE(7380), 1, - aux_sym_val_table_repeat1, - [207022] = 8, - ACTIONS(247), 1, + ACTIONS(2607), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206905] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5899), 1, + STATE(5898), 1, sym_comment, - STATE(6459), 1, + STATE(7146), 1, sym_block, - STATE(7660), 1, + STATE(7486), 1, sym_short_flag, - STATE(7661), 1, + STATE(7487), 1, sym_long_flag, - [207047] = 8, - ACTIONS(247), 1, + [206930] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5900), 1, + STATE(5899), 1, sym_comment, - STATE(6460), 1, + STATE(7150), 1, sym_block, - STATE(7664), 1, + STATE(7489), 1, sym_short_flag, - STATE(7666), 1, + STATE(7493), 1, sym_long_flag, - [207072] = 8, - ACTIONS(247), 1, + [206955] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9704), 1, - anon_sym_RBRACK, - STATE(5901), 1, + ACTIONS(2496), 1, + anon_sym_DASH2, + STATE(5900), 1, sym_comment, - STATE(6184), 1, - aux_sym_shebang_repeat1, - STATE(7020), 1, - sym_val_list, - STATE(7382), 1, - aux_sym_val_table_repeat1, - [207097] = 8, - ACTIONS(247), 1, + ACTIONS(2498), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206972] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5902), 1, + STATE(5901), 1, sym_comment, - STATE(6464), 1, + STATE(7172), 1, sym_block, - STATE(7667), 1, + STATE(7514), 1, sym_short_flag, - STATE(7669), 1, + STATE(7518), 1, sym_long_flag, - [207122] = 8, - ACTIONS(247), 1, + [206997] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5016), 1, + sym__blosure, + STATE(5902), 1, + sym_comment, + [207022] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5903), 1, sym_comment, - STATE(6465), 1, + STATE(7185), 1, sym_block, - STATE(7671), 1, + STATE(7520), 1, sym_short_flag, - STATE(7672), 1, + STATE(7521), 1, sym_long_flag, - [207147] = 8, - ACTIONS(247), 1, + [207047] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(9743), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9745), 1, + aux_sym__immediate_decimal_token2, STATE(5904), 1, sym_comment, - STATE(6477), 1, - sym_block, - STATE(7676), 1, - sym_short_flag, - STATE(7679), 1, - sym_long_flag, - [207172] = 8, - ACTIONS(247), 1, + ACTIONS(1890), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1892), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [207068] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5905), 1, sym_comment, - STATE(6479), 1, + STATE(6356), 1, sym_block, - STATE(7682), 1, - sym_short_flag, - STATE(7683), 1, + STATE(7586), 1, sym_long_flag, - [207197] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9706), 1, - anon_sym_DQUOTE2, - STATE(5906), 1, - sym_comment, - STATE(5910), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207220] = 8, + STATE(7669), 1, + sym_short_flag, + [207093] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, + ACTIONS(4915), 1, aux_sym_unquoted_token3, - ACTIONS(8421), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - STATE(5907), 1, + STATE(5906), 1, sym_comment, - STATE(6318), 1, + STATE(7665), 1, sym__immediate_decimal, - [207245] = 8, + [207118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - aux_sym_unquoted_token3, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - STATE(5908), 1, + ACTIONS(2349), 1, + anon_sym_LBRACE, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(5907), 1, sym_comment, - STATE(8149), 1, - sym__immediate_decimal, - [207270] = 4, - ACTIONS(247), 1, + ACTIONS(2345), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [207137] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2440), 1, + ACTIONS(5136), 1, anon_sym_DASH2, - STATE(5909), 1, + STATE(5908), 1, sym_comment, - ACTIONS(2442), 5, + ACTIONS(5134), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [207287] = 7, - ACTIONS(3), 1, + [207154] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9708), 1, - anon_sym_DQUOTE2, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + STATE(5909), 1, + sym_comment, + STATE(6361), 1, + sym_block, + STATE(7504), 1, + sym_short_flag, + STATE(7559), 1, + sym_long_flag, + [207179] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5910), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207310] = 4, - ACTIONS(247), 1, + STATE(6363), 1, + sym_block, + STATE(7573), 1, + sym_short_flag, + STATE(7575), 1, + sym_long_flag, + [207204] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5911), 1, sym_comment, - ACTIONS(1917), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207327] = 8, - ACTIONS(247), 1, + STATE(6366), 1, + sym_block, + STATE(7603), 1, + sym_short_flag, + STATE(7612), 1, + sym_long_flag, + [207229] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9710), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5912), 1, sym_comment, - STATE(6185), 1, - aux_sym_shebang_repeat1, - STATE(7039), 1, - sym_val_list, - STATE(7386), 1, - aux_sym_val_table_repeat1, - [207352] = 8, - ACTIONS(247), 1, + STATE(6387), 1, + sym_block, + STATE(7653), 1, + sym_short_flag, + STATE(7655), 1, + sym_long_flag, + [207254] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9712), 1, - anon_sym_RBRACK, STATE(5913), 1, sym_comment, - STATE(6186), 1, - aux_sym_shebang_repeat1, - STATE(7044), 1, - sym_val_list, - STATE(7389), 1, - aux_sym_val_table_repeat1, - [207377] = 4, - ACTIONS(247), 1, + ACTIONS(1556), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1558), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [207271] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(2609), 1, anon_sym_DASH2, STATE(5914), 1, sym_comment, - ACTIONS(1929), 5, + ACTIONS(2611), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [207394] = 7, - ACTIONS(3), 1, + [207288] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9714), 1, - anon_sym_DQUOTE2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5915), 1, sym_comment, - STATE(5917), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207417] = 4, - ACTIONS(247), 1, + STATE(7102), 1, + sym_block, + STATE(7527), 1, + sym_short_flag, + STATE(7532), 1, + sym_long_flag, + [207313] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1942), 1, - anon_sym_DASH2, + ACTIONS(6220), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + ACTIONS(9747), 1, + anon_sym_RBRACE, STATE(5916), 1, sym_comment, - ACTIONS(1944), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207434] = 7, + STATE(5924), 1, + aux_sym_cell_path_repeat1, + STATE(6800), 1, + sym_path, + STATE(7253), 1, + sym_cell_path, + [207338] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(9750), 1, + anon_sym_DOT_DOT2, + STATE(5917), 1, + sym_comment, + ACTIONS(1948), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9752), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, + ACTIONS(9754), 1, anon_sym_LPAREN, - ACTIONS(9716), 1, + ACTIONS(9760), 1, anon_sym_DQUOTE2, - STATE(5917), 1, - sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, + STATE(6698), 1, sym_expr_interpolated, - ACTIONS(9504), 2, + ACTIONS(9757), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [207457] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9718), 1, - anon_sym_RBRACK, - STATE(5918), 1, + STATE(5918), 2, sym_comment, - STATE(6190), 1, - aux_sym_shebang_repeat1, - STATE(7063), 1, - sym_val_list, - STATE(7394), 1, - aux_sym_val_table_repeat1, - [207482] = 8, - ACTIONS(247), 1, + aux_sym__inter_double_quotes_repeat1, + [207380] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9720), 1, + ACTIONS(1485), 1, + sym__entry_separator, + ACTIONS(9762), 1, + anon_sym_DOT, + STATE(6800), 1, + sym_path, + ACTIONS(1483), 2, anon_sym_RBRACK, - STATE(5919), 1, + anon_sym_RBRACE, + STATE(5919), 2, sym_comment, - STATE(6191), 1, - aux_sym_shebang_repeat1, - STATE(7067), 1, - sym_val_list, - STATE(7396), 1, - aux_sym_val_table_repeat1, - [207507] = 7, - ACTIONS(3), 1, + aux_sym_cell_path_repeat1, + [207401] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9722), 1, - anon_sym_DQUOTE2, + ACTIONS(9765), 1, + anon_sym_LT, STATE(5920), 1, sym_comment, - STATE(5921), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207530] = 7, + ACTIONS(7894), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9724), 1, - anon_sym_DQUOTE2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2355), 1, + anon_sym_LBRACE, STATE(5921), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207553] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9726), 1, - anon_sym_RBRACK, - STATE(5922), 1, - sym_comment, - STATE(6192), 1, - aux_sym_shebang_repeat1, - STATE(7080), 1, - sym_val_list, - STATE(7400), 1, - aux_sym_val_table_repeat1, - [207578] = 8, - ACTIONS(247), 1, + ACTIONS(2353), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [207437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9728), 1, + STATE(5922), 1, + sym_comment, + ACTIONS(1886), 3, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1888), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [207454] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9767), 1, + anon_sym_LT, STATE(5923), 1, sym_comment, - STATE(6193), 1, - aux_sym_shebang_repeat1, - STATE(7084), 1, - sym_val_list, - STATE(7402), 1, - aux_sym_val_table_repeat1, - [207603] = 7, + ACTIONS(7894), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [207471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9730), 1, - anon_sym_DQUOTE2, - STATE(5746), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(1481), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5919), 1, + aux_sym_cell_path_repeat1, STATE(5924), 1, sym_comment, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207626] = 7, - ACTIONS(3), 1, + STATE(6800), 1, + sym_path, + ACTIONS(1479), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207494] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9732), 1, - anon_sym_DQUOTE2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5925), 1, sym_comment, - STATE(5926), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207649] = 7, - ACTIONS(3), 1, + STATE(7007), 1, + sym_block, + STATE(7552), 1, + sym_short_flag, + STATE(7557), 1, + sym_long_flag, + [207519] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9734), 1, - anon_sym_DQUOTE2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5109), 1, + sym__blosure, STATE(5926), 1, sym_comment, - STATE(5953), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207672] = 8, - ACTIONS(247), 1, + [207544] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9736), 1, - anon_sym_RBRACK, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5927), 1, sym_comment, - STATE(6195), 1, - aux_sym_shebang_repeat1, - STATE(7103), 1, - sym_val_list, - STATE(7408), 1, - aux_sym_val_table_repeat1, - [207697] = 4, - ACTIONS(247), 1, + STATE(7008), 1, + sym_block, + STATE(7560), 1, + sym_short_flag, + STATE(7566), 1, + sym_long_flag, + [207569] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5928), 1, sym_comment, - ACTIONS(2492), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207714] = 4, - ACTIONS(247), 1, + STATE(7014), 1, + sym_block, + STATE(7597), 1, + sym_short_flag, + STATE(7601), 1, + sym_long_flag, + [207594] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5929), 1, sym_comment, - ACTIONS(2036), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207731] = 8, - ACTIONS(247), 1, + STATE(7036), 1, + sym_block, + STATE(7620), 1, + sym_short_flag, + STATE(7623), 1, + sym_long_flag, + [207619] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9738), 1, - anon_sym_RBRACK, + ACTIONS(9769), 1, + sym_long_flag_identifier, + ACTIONS(9771), 1, + anon_sym_EQ2, STATE(5930), 1, sym_comment, - STATE(6196), 1, - aux_sym_shebang_repeat1, - STATE(7113), 1, - sym_val_list, - STATE(7412), 1, - aux_sym_val_table_repeat1, - [207756] = 8, - ACTIONS(247), 1, + ACTIONS(4977), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4979), 2, + sym_identifier, + anon_sym_DASH2, + [207640] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9740), 1, - anon_sym_RBRACK, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5016), 1, + sym__blosure, STATE(5931), 1, sym_comment, - STATE(6197), 1, + STATE(6021), 1, aux_sym_shebang_repeat1, - STATE(7117), 1, - sym_val_list, - STATE(7414), 1, - aux_sym_val_table_repeat1, - [207781] = 4, - ACTIONS(247), 1, + [207665] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, - anon_sym_DASH2, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9773), 1, + anon_sym_DQUOTE2, STATE(5932), 1, sym_comment, - ACTIONS(2369), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207798] = 4, - ACTIONS(247), 1, + STATE(5947), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207688] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH2, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, STATE(5933), 1, sym_comment, - ACTIONS(2381), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207815] = 4, - ACTIONS(247), 1, + STATE(6260), 1, + sym__immediate_decimal, + [207713] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2038), 1, - anon_sym_DASH2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5178), 1, + sym__blosure, + STATE(5853), 1, + aux_sym_shebang_repeat1, STATE(5934), 1, sym_comment, - ACTIONS(2040), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207832] = 8, - ACTIONS(247), 1, + [207738] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_RBRACK, + ACTIONS(2197), 1, + anon_sym_DASH2, + ACTIONS(9775), 1, + anon_sym_DOT_DOT2, STATE(5935), 1, sym_comment, - STATE(6198), 1, - aux_sym_shebang_repeat1, - STATE(7129), 1, - sym_val_list, - STATE(7418), 1, - aux_sym_val_table_repeat1, - [207857] = 8, - ACTIONS(247), 1, + ACTIONS(2203), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9777), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207759] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9744), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5936), 1, sym_comment, - STATE(6199), 1, - aux_sym_shebang_repeat1, - STATE(7134), 1, - sym_val_list, - STATE(7420), 1, - aux_sym_val_table_repeat1, - [207882] = 8, - ACTIONS(3), 1, + STATE(6714), 1, + sym_block, + STATE(7617), 1, + sym_short_flag, + STATE(7632), 1, + sym_long_flag, + [207784] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2018), 1, - anon_sym_RBRACE, - ACTIONS(2020), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5937), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7478), 1, - sym_cell_path, - [207907] = 4, - ACTIONS(247), 1, + STATE(6715), 1, + sym_block, + STATE(7635), 1, + sym_short_flag, + STATE(7638), 1, + sym_long_flag, + [207809] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5938), 1, sym_comment, - ACTIONS(1901), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207924] = 8, - ACTIONS(247), 1, + STATE(6731), 1, + sym_block, + STATE(7659), 1, + sym_short_flag, + STATE(7660), 1, + sym_long_flag, + [207834] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9746), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5939), 1, sym_comment, - STATE(6200), 1, - aux_sym_shebang_repeat1, - STATE(7149), 1, - sym_val_list, - STATE(7424), 1, - aux_sym_val_table_repeat1, - [207949] = 8, - ACTIONS(247), 1, + STATE(6744), 1, + sym_block, + STATE(7674), 1, + sym_short_flag, + STATE(7676), 1, + sym_long_flag, + [207859] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9748), 1, - anon_sym_RBRACK, + ACTIONS(4915), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, STATE(5940), 1, sym_comment, - STATE(6201), 1, - aux_sym_shebang_repeat1, - STATE(7153), 1, - sym_val_list, - STATE(7426), 1, - aux_sym_val_table_repeat1, - [207974] = 4, - ACTIONS(247), 1, + STATE(7771), 1, + sym__immediate_decimal, + [207884] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2448), 1, - anon_sym_DASH2, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(5941), 1, sym_comment, - ACTIONS(2450), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207991] = 4, - ACTIONS(247), 1, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9672), 2, + sym_filesize_unit, + sym_duration_unit, + [207905] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2452), 1, - anon_sym_DASH2, STATE(5942), 1, sym_comment, - ACTIONS(2454), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208008] = 4, - ACTIONS(247), 1, + ACTIONS(2215), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2217), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [207922] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5943), 1, sym_comment, - ACTIONS(1909), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208025] = 8, - ACTIONS(247), 1, + STATE(6757), 1, + sym_block, + STATE(7680), 1, + sym_short_flag, + STATE(7684), 1, + sym_long_flag, + [207947] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5944), 1, sym_comment, - STATE(6604), 1, + STATE(6802), 1, sym_block, - STATE(7688), 1, + STATE(7694), 1, sym_short_flag, - STATE(7689), 1, + STATE(7697), 1, sym_long_flag, - [208050] = 8, - ACTIONS(247), 1, + [207972] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5945), 1, sym_comment, - STATE(6607), 1, + STATE(6810), 1, sym_block, - STATE(7690), 1, - sym_short_flag, - STATE(7691), 1, + STATE(7600), 1, sym_long_flag, - [208075] = 8, - ACTIONS(247), 1, + STATE(7698), 1, + sym_short_flag, + [207997] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5946), 1, sym_comment, - STATE(6737), 1, + STATE(6812), 1, sym_block, - STATE(7692), 1, + STATE(7459), 1, sym_short_flag, - STATE(7694), 1, + STATE(7462), 1, sym_long_flag, - [208100] = 8, - ACTIONS(247), 1, + [208022] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9779), 1, + anon_sym_DQUOTE2, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5947), 1, + sym_comment, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [208045] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8911), 1, + sym_identifier, + ACTIONS(9781), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9784), 1, anon_sym_DASH2, - STATE(5947), 1, + STATE(5948), 2, sym_comment, - STATE(6738), 1, - sym_block, - STATE(7696), 1, + aux_sym_ctrl_do_repeat1, + STATE(6172), 2, sym_short_flag, - STATE(7697), 1, sym_long_flag, - [208125] = 4, - ACTIONS(247), 1, + [208066] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2468), 1, - anon_sym_DASH2, - STATE(5948), 1, - sym_comment, - ACTIONS(2470), 5, - ts_builtin_sym_end, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208142] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2482), 1, - anon_sym_DASH2, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9787), 1, + anon_sym_RBRACK, STATE(5949), 1, sym_comment, - ACTIONS(2484), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208159] = 4, - ACTIONS(247), 1, + STATE(6199), 1, + aux_sym_shebang_repeat1, + STATE(7262), 1, + sym_val_list, + STATE(7305), 1, + aux_sym_val_table_repeat1, + [208091] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, + ACTIONS(9474), 1, + anon_sym_alias, + ACTIONS(9476), 1, + anon_sym_const, + ACTIONS(9478), 1, + anon_sym_def, + ACTIONS(9480), 1, + anon_sym_extern, + ACTIONS(9482), 1, + anon_sym_module, + ACTIONS(9484), 1, + anon_sym_use, STATE(5950), 1, sym_comment, - ACTIONS(1719), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208176] = 4, - ACTIONS(247), 1, + [208116] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2444), 1, - anon_sym_DASH2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5110), 1, + sym__blosure, STATE(5951), 1, sym_comment, - ACTIONS(2446), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208193] = 4, - ACTIONS(247), 1, + [208141] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5054), 1, - anon_sym_DASH2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(9789), 1, + anon_sym_DOT_DOT2, STATE(5952), 1, sym_comment, - ACTIONS(5052), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208210] = 6, - ACTIONS(3), 1, + ACTIONS(1958), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9791), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208162] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9750), 1, - anon_sym_LPAREN, - ACTIONS(9756), 1, - anon_sym_DQUOTE2, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9753), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5953), 2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(5110), 1, + sym__blosure, + STATE(5827), 1, + aux_sym_shebang_repeat1, + STATE(5953), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [208231] = 8, - ACTIONS(247), 1, + [208187] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9793), 1, + anon_sym_RBRACK, STATE(5954), 1, sym_comment, - STATE(7009), 1, - sym_block, - STATE(7522), 1, - sym_short_flag, - STATE(7558), 1, - sym_long_flag, - [208256] = 6, - ACTIONS(3), 1, + STATE(6200), 1, + aux_sym_shebang_repeat1, + STATE(7271), 1, + sym_val_list, + STATE(7307), 1, + aux_sym_val_table_repeat1, + [208212] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(9758), 1, - anon_sym_DOT_DOT2, + ACTIONS(4979), 1, + anon_sym_DASH2, + ACTIONS(9795), 1, + sym_long_flag_identifier, + ACTIONS(9797), 1, + anon_sym_EQ2, STATE(5955), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9760), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208277] = 4, - ACTIONS(247), 1, + ACTIONS(4977), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [208233] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1044), 1, - anon_sym_DASH2, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(9799), 1, + anon_sym_DOT, + ACTIONS(9801), 1, + aux_sym__immediate_decimal_token2, STATE(5956), 1, sym_comment, - ACTIONS(1046), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208294] = 4, - ACTIONS(247), 1, + ACTIONS(1874), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208254] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_DASH2, STATE(5957), 1, sym_comment, - ACTIONS(5062), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208311] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - sym__entry_separator, - ACTIONS(9762), 1, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, - STATE(5958), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9764), 2, + aux_sym_unquoted_token2, + ACTIONS(1892), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208332] = 4, - ACTIONS(247), 1, + [208271] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9803), 1, + anon_sym_RBRACK, + STATE(5958), 1, + sym_comment, + STATE(6180), 1, + aux_sym_shebang_repeat1, + STATE(7234), 1, + aux_sym_val_table_repeat1, + STATE(7437), 1, + sym_val_list, + [208296] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, STATE(5959), 1, sym_comment, - ACTIONS(5170), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208349] = 4, - ACTIONS(247), 1, + STATE(7004), 1, + sym_block, + STATE(7467), 1, + sym_short_flag, + STATE(7512), 1, + sym_long_flag, + [208321] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5176), 1, - anon_sym_DASH2, + ACTIONS(1445), 1, + sym__space, STATE(5960), 1, sym_comment, - ACTIONS(5174), 5, - ts_builtin_sym_end, + ACTIONS(1443), 5, sym__newline, - anon_sym_SEMI, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [208366] = 5, + anon_sym_DASH2, + anon_sym_LBRACE, + [208338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - anon_sym_LBRACE, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + ACTIONS(2183), 1, + sym__entry_separator, + ACTIONS(9805), 1, + anon_sym_DOT_DOT2, STATE(5961), 1, sym_comment, - ACTIONS(2238), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [208385] = 5, + ACTIONS(2177), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9807), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_LBRACE, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, STATE(5962), 1, sym_comment, - ACTIONS(1026), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [208404] = 8, - ACTIONS(247), 1, + ACTIONS(2219), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2221), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [208376] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, STATE(5963), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6282), 1, - sym__assignment_pattern, - [208429] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(9809), 6, + sym_raw_string_begin, sym_identifier, - STATE(5398), 1, - sym_val_variable, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208391] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5964), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6283), 1, - sym__assignment_pattern, - [208454] = 8, - ACTIONS(247), 1, + STATE(6667), 1, + sym_block, + STATE(7494), 1, + sym_short_flag, + STATE(7495), 1, + sym_long_flag, + [208416] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5965), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [208479] = 6, - ACTIONS(3), 1, + STATE(6670), 1, + sym_block, + STATE(7496), 1, + sym_short_flag, + STATE(7498), 1, + sym_long_flag, + [208441] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(9766), 1, - anon_sym_DOT_DOT2, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, STATE(5966), 1, sym_comment, - ACTIONS(2146), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9768), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208500] = 7, - ACTIONS(247), 1, + STATE(6775), 1, + sym_block, + STATE(7499), 1, + sym_short_flag, + STATE(7500), 1, + sym_long_flag, + [208466] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9530), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9532), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - ACTIONS(9770), 1, - anon_sym_LBRACE, STATE(5967), 1, sym_comment, - STATE(7188), 1, - sym_val_record, - STATE(7501), 2, + STATE(6778), 1, + sym_block, + STATE(7501), 1, sym_short_flag, + STATE(7502), 1, sym_long_flag, - [208523] = 4, - ACTIONS(247), 1, + [208491] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5081), 1, + ACTIONS(5150), 1, anon_sym_DASH2, STATE(5968), 1, sym_comment, - ACTIONS(5079), 5, + ACTIONS(5148), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208540] = 4, - ACTIONS(247), 1, + [208508] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5085), 1, + ACTIONS(5154), 1, anon_sym_DASH2, STATE(5969), 1, sym_comment, - ACTIONS(5083), 5, + ACTIONS(5152), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208557] = 5, - ACTIONS(247), 1, + [208525] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, + ACTIONS(4755), 1, + anon_sym_DOT_DOT2, + ACTIONS(9733), 1, + aux_sym_unquoted_token2, STATE(5970), 1, sym_comment, - STATE(6328), 1, - sym_block, - ACTIONS(9772), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208576] = 5, - ACTIONS(247), 1, + ACTIONS(4757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9672), 2, + sym_filesize_unit, + sym_duration_unit, + [208546] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9811), 1, + anon_sym_DQUOTE2, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, STATE(5971), 1, sym_comment, - STATE(6329), 1, - sym_block, - ACTIONS(9772), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208595] = 6, - ACTIONS(247), 1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [208569] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4970), 1, + ACTIONS(2006), 1, anon_sym_DASH2, - ACTIONS(9774), 1, - sym_long_flag_identifier, - ACTIONS(9776), 1, - anon_sym_EQ2, STATE(5972), 1, sym_comment, - ACTIONS(4968), 3, - anon_sym_DOLLAR, + ACTIONS(2008), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208616] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(5973), 1, - sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [208641] = 6, - ACTIONS(247), 1, + anon_sym_as, + [208586] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4974), 1, + ACTIONS(5020), 1, anon_sym_DOLLAR, - ACTIONS(9778), 1, + ACTIONS(9813), 1, anon_sym_EQ2, - ACTIONS(9780), 1, + ACTIONS(9815), 1, sym_short_flag_identifier, - STATE(5974), 1, + STATE(5973), 1, sym_comment, - ACTIONS(4976), 3, + ACTIONS(5022), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, - [208662] = 6, - ACTIONS(247), 1, + [208607] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9782), 1, - sym_long_flag_identifier, - ACTIONS(9784), 1, - anon_sym_EQ2, - STATE(5975), 1, - sym_comment, - ACTIONS(4968), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4970), 2, - sym_identifier, + ACTIONS(1538), 1, anon_sym_DASH2, - [208683] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH2, - STATE(5976), 1, + STATE(5974), 1, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1540), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208700] = 6, - ACTIONS(247), 1, + [208624] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2157), 1, - anon_sym_DASH2, - ACTIONS(9786), 1, - anon_sym_DOT_DOT2, - STATE(5977), 1, - sym_comment, - ACTIONS(2163), 2, - anon_sym_DASH_DASH, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(9788), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208721] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2398), 1, - anon_sym_DASH2, - STATE(5978), 1, + STATE(5975), 1, sym_comment, - ACTIONS(2400), 5, - ts_builtin_sym_end, + STATE(6818), 1, + sym_block, + ACTIONS(9817), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208738] = 7, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208643] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9819), 1, + aux_sym_unquoted_token3, + STATE(5976), 1, + sym_comment, + STATE(6260), 1, + sym__immediate_decimal, + [208668] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(1728), 1, aux_sym_unquoted_token2, - ACTIONS(8581), 1, + ACTIONS(8622), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, + ACTIONS(8624), 1, aux_sym__immediate_decimal_token5, - STATE(5979), 1, + STATE(5977), 1, sym_comment, - STATE(7693), 1, + STATE(8110), 1, sym__immediate_decimal, - ACTIONS(8579), 2, + ACTIONS(8620), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [208761] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8877), 1, - sym_identifier, - ACTIONS(9790), 1, - anon_sym_DASH_DASH, - ACTIONS(9793), 1, - anon_sym_DASH2, - STATE(5980), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [208782] = 5, - ACTIONS(247), 1, + [208691] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(5981), 1, + STATE(5978), 1, sym_comment, - STATE(6510), 1, + STATE(6342), 1, sym_block, - ACTIONS(9796), 4, + ACTIONS(9821), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [208801] = 4, - ACTIONS(247), 1, + [208710] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DASH2, - STATE(5982), 1, + ACTIONS(1540), 1, + sym__entry_separator, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + STATE(5979), 1, sym_comment, - ACTIONS(5132), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208818] = 4, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208731] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5138), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(5980), 1, + sym_comment, + STATE(7516), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208754] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + ACTIONS(9827), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9829), 1, + aux_sym__immediate_decimal_token2, + STATE(5981), 1, + sym_comment, + ACTIONS(1892), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208775] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2500), 1, anon_sym_DASH2, - STATE(5983), 1, + STATE(5982), 1, sym_comment, - ACTIONS(5136), 5, + ACTIONS(2502), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208835] = 3, - ACTIONS(247), 1, + [208792] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(5984), 1, + STATE(5983), 1, sym_comment, - ACTIONS(9798), 6, + ACTIONS(9831), 6, sym_raw_string_begin, sym_identifier, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [208850] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9544), 1, - anon_sym_DASH_DASH, - ACTIONS(9546), 1, - anon_sym_DASH2, - ACTIONS(9800), 1, - sym_identifier, - STATE(5858), 1, - aux_sym_ctrl_do_repeat1, - STATE(5985), 1, - sym_comment, - STATE(6035), 2, - sym_short_flag, - sym_long_flag, - [208873] = 8, + [208807] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1946), 1, - anon_sym_RBRACE, - ACTIONS(1948), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, - STATE(5986), 1, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9833), 1, + anon_sym_DQUOTE2, + STATE(5984), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7640), 1, - sym_cell_path, - [208898] = 4, - ACTIONS(247), 1, + STATE(5995), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [208830] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(2635), 1, anon_sym_DASH2, - STATE(5987), 1, + STATE(5985), 1, sym_comment, - ACTIONS(2412), 5, + ACTIONS(2637), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208915] = 4, - ACTIONS(247), 1, + [208847] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2414), 1, - anon_sym_DASH2, - STATE(5988), 1, - sym_comment, - ACTIONS(2416), 5, - ts_builtin_sym_end, + ACTIONS(641), 1, + anon_sym_RPAREN, + ACTIONS(9548), 1, sym__newline, + ACTIONS(9550), 1, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208932] = 8, - ACTIONS(247), 1, + STATE(276), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5986), 1, + sym_comment, + STATE(6786), 1, + aux_sym__block_body_repeat1, + STATE(7385), 1, + aux_sym_shebang_repeat1, + [208872] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(5630), 1, + aux_sym_unquoted_token3, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8868), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8870), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8872), 1, + aux_sym__immediate_decimal_token5, + STATE(5987), 1, + sym_comment, + STATE(6260), 1, + sym__immediate_decimal, + [208897] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(5988), 1, + sym_comment, + STATE(6148), 1, + sym__variable_name, + STATE(6278), 1, + sym__assignment_pattern, + [208922] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, STATE(5989), 1, sym_comment, - STATE(7143), 1, - sym_block, - STATE(7460), 1, - sym_short_flag, - STATE(7464), 1, - sym_long_flag, - [208957] = 4, - ACTIONS(247), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6280), 1, + sym__assignment_pattern, + [208947] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, - anon_sym_DASH2, + ACTIONS(5630), 1, + aux_sym_unquoted_token3, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8874), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8876), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8878), 1, + aux_sym__immediate_decimal_token5, STATE(5990), 1, sym_comment, - ACTIONS(2420), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208974] = 4, - ACTIONS(247), 1, + STATE(7771), 1, + sym__immediate_decimal, + [208972] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_LBRACE, STATE(5991), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208991] = 8, - ACTIONS(3), 1, + STATE(6367), 1, + sym_block, + ACTIONS(9821), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208991] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7381), 1, - anon_sym_RBRACK, - ACTIONS(7383), 1, - sym__entry_separator, - ACTIONS(9396), 1, - anon_sym_DOT, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, STATE(5992), 1, sym_comment, - STATE(5997), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, - sym_path, - STATE(7455), 1, - sym_cell_path, - [209016] = 6, - ACTIONS(247), 1, + STATE(7965), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [209014] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9802), 1, + ACTIONS(9835), 1, anon_sym_EQ2, - ACTIONS(9804), 1, + ACTIONS(9837), 1, sym_short_flag_identifier, STATE(5993), 1, sym_comment, - ACTIONS(4974), 2, + ACTIONS(5020), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(4976), 2, + ACTIONS(5022), 2, anon_sym_DASH_DASH, anon_sym_DASH2, - [209037] = 8, - ACTIONS(247), 1, + [209035] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_alias, - ACTIONS(9440), 1, - anon_sym_const, - ACTIONS(9442), 1, - anon_sym_def, - ACTIONS(9444), 1, - anon_sym_extern, - ACTIONS(9446), 1, - anon_sym_module, - ACTIONS(9448), 1, - anon_sym_use, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, STATE(5994), 1, sym_comment, - [209062] = 8, - ACTIONS(247), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6281), 1, + sym__assignment_pattern, + [209060] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_DASH_DASH, - ACTIONS(9532), 1, - anon_sym_DASH2, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DQUOTE2, + STATE(5918), 1, + aux_sym__inter_double_quotes_repeat1, STATE(5995), 1, sym_comment, - STATE(7163), 1, - sym_block, - STATE(7471), 1, - sym_short_flag, - STATE(7475), 1, - sym_long_flag, - [209087] = 4, - ACTIONS(247), 1, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209083] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(2635), 1, anon_sym_DASH2, STATE(5996), 1, sym_comment, - ACTIONS(1851), 5, + ACTIONS(2637), 5, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, sym__table_head_separator, - [209104] = 7, + [209100] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(1986), 1, + anon_sym_RBRACE, + ACTIONS(1988), 1, sym__entry_separator, - ACTIONS(9396), 1, + ACTIONS(9434), 1, anon_sym_DOT, + STATE(5924), 1, + aux_sym_cell_path_repeat1, STATE(5997), 1, sym_comment, - STATE(6020), 1, - aux_sym_cell_path_repeat1, - STATE(6783), 1, + STATE(6800), 1, sym_path, - ACTIONS(967), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209127] = 4, - ACTIONS(247), 1, + STATE(7668), 1, + sym_cell_path, + [209125] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9454), 1, + ACTIONS(9687), 1, + anon_sym_DASH_DASH, + ACTIONS(9689), 1, anon_sym_DASH2, + ACTIONS(9841), 1, + sym_identifier, + STATE(5838), 1, + aux_sym_ctrl_do_repeat1, STATE(5998), 1, sym_comment, - ACTIONS(9452), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209144] = 8, - ACTIONS(247), 1, + STATE(6172), 2, + sym_short_flag, + sym_long_flag, + [209148] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5042), 1, - sym__blosure, + ACTIONS(2163), 1, + anon_sym_RBRACE, + ACTIONS(2165), 1, + sym__entry_separator, + ACTIONS(9434), 1, + anon_sym_DOT, + STATE(5924), 1, + aux_sym_cell_path_repeat1, STATE(5999), 1, sym_comment, - [209169] = 8, - ACTIONS(247), 1, + STATE(6800), 1, + sym_path, + STATE(7472), 1, + sym_cell_path, + [209173] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5042), 1, - sym__blosure, - STATE(5865), 1, - aux_sym_shebang_repeat1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9843), 1, + anon_sym_RBRACK, STATE(6000), 1, sym_comment, - [209194] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH2, - STATE(6001), 1, - sym_comment, - ACTIONS(2432), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209211] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5046), 1, - sym__blosure, - STATE(5875), 1, + STATE(6201), 1, aux_sym_shebang_repeat1, - STATE(6002), 1, - sym_comment, - [209236] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6003), 1, - sym_comment, - ACTIONS(1733), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1737), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209253] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9806), 1, - anon_sym_LT, - STATE(6004), 1, - sym_comment, - ACTIONS(8019), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209270] = 8, + STATE(7314), 1, + aux_sym_val_table_repeat1, + STATE(7448), 1, + sym_val_list, + [209198] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, + ACTIONS(8874), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, + ACTIONS(8876), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, + ACTIONS(8878), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9524), 1, + ACTIONS(9819), 1, aux_sym_unquoted_token3, - STATE(6005), 1, + STATE(6001), 1, sym_comment, - STATE(6318), 1, + STATE(7771), 1, sym__immediate_decimal, - [209295] = 6, - ACTIONS(247), 1, + [209223] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LPAREN, + ACTIONS(9845), 1, + anon_sym_DQUOTE2, + STATE(5971), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6002), 1, + sym_comment, + STATE(6698), 1, + sym_expr_interpolated, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209246] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5174), 1, + anon_sym_DASH2, + STATE(6003), 1, + sym_comment, + ACTIONS(5172), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [209263] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1940), 1, anon_sym_DASH2, - ACTIONS(9808), 1, + ACTIONS(9847), 1, anon_sym_DOT_DOT2, - STATE(6006), 1, + STATE(6004), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(1948), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9810), 2, + ACTIONS(9849), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209316] = 6, - ACTIONS(247), 1, + [209284] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(1950), 1, anon_sym_DASH2, - ACTIONS(9812), 1, + ACTIONS(9851), 1, anon_sym_DOT_DOT2, - STATE(6007), 1, + STATE(6005), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1958), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9814), 2, + ACTIONS(9853), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209337] = 5, - ACTIONS(247), 1, + [209305] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9816), 1, + ACTIONS(9855), 1, anon_sym_DOT_DOT2, - STATE(6008), 1, + STATE(6006), 1, sym_comment, - ACTIONS(9818), 2, + ACTIONS(9857), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2163), 3, + ACTIONS(2203), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209356] = 4, - ACTIONS(247), 1, + [209324] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH2, - STATE(6009), 1, + STATE(6007), 1, sym_comment, - ACTIONS(5097), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209373] = 6, - ACTIONS(247), 1, + ACTIONS(1919), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1921), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209341] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(2228), 1, anon_sym_DASH2, - ACTIONS(9820), 1, + ACTIONS(9859), 1, anon_sym_DOT_DOT2, - STATE(6010), 1, + STATE(6008), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2234), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9822), 2, + ACTIONS(9861), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209394] = 6, - ACTIONS(247), 1, + [209362] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2130), 1, + ACTIONS(2177), 1, anon_sym_DASH2, - ACTIONS(9824), 1, + ACTIONS(9863), 1, anon_sym_DOT_DOT2, - STATE(6011), 1, + STATE(6009), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(2183), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9826), 2, + ACTIONS(9865), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209415] = 6, - ACTIONS(247), 1, + [209383] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2146), 1, + ACTIONS(2185), 1, anon_sym_DASH2, - ACTIONS(9828), 1, + ACTIONS(9867), 1, anon_sym_DOT_DOT2, - STATE(6012), 1, + STATE(6010), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2191), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9830), 2, + ACTIONS(9869), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209436] = 4, - ACTIONS(247), 1, + [209404] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9832), 1, - anon_sym_LT, - STATE(6013), 1, + STATE(6011), 1, sym_comment, - ACTIONS(8019), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209453] = 8, - ACTIONS(247), 1, + ACTIONS(1968), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1970), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209421] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9442), 1, + ACTIONS(9478), 1, anon_sym_def, - ACTIONS(9444), 1, + ACTIONS(9480), 1, anon_sym_extern, - ACTIONS(9446), 1, + ACTIONS(9482), 1, anon_sym_module, - ACTIONS(9448), 1, + ACTIONS(9484), 1, anon_sym_use, - ACTIONS(9834), 1, + ACTIONS(9871), 1, anon_sym_alias, - ACTIONS(9836), 1, + ACTIONS(9873), 1, anon_sym_const, - STATE(6014), 1, + STATE(6012), 1, + sym_comment, + [209446] = 8, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + ACTIONS(9875), 1, + anon_sym_RBRACK, + STATE(6013), 1, sym_comment, - [209478] = 4, - ACTIONS(247), 1, + STATE(6202), 1, + aux_sym_shebang_repeat1, + STATE(6823), 1, + sym_val_list, + STATE(7317), 1, + aux_sym_val_table_repeat1, + [209471] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(2504), 1, anon_sym_DASH2, - STATE(6015), 1, + STATE(6014), 1, sym_comment, - ACTIONS(5119), 5, + ACTIONS(2506), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [209495] = 5, - ACTIONS(247), 1, + [209488] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9838), 1, + ACTIONS(9877), 1, anon_sym_DOT_DOT2, - STATE(6016), 1, + STATE(6015), 1, sym_comment, - ACTIONS(9840), 2, + ACTIONS(9879), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2128), 3, + ACTIONS(2234), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209514] = 5, - ACTIONS(247), 1, + [209507] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9842), 1, + ACTIONS(9881), 1, anon_sym_DOT_DOT2, - STATE(6017), 1, + STATE(6016), 1, sym_comment, - ACTIONS(9844), 2, + ACTIONS(9883), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 3, + ACTIONS(2183), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209533] = 5, - ACTIONS(247), 1, + [209526] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9846), 1, + ACTIONS(9885), 1, anon_sym_DOT_DOT2, - STATE(6018), 1, + STATE(6017), 1, sym_comment, - ACTIONS(9848), 2, + ACTIONS(9887), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 3, + ACTIONS(2191), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209552] = 8, - ACTIONS(247), 1, + [209545] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9442), 1, + ACTIONS(9478), 1, anon_sym_def, - ACTIONS(9444), 1, + ACTIONS(9480), 1, anon_sym_extern, - ACTIONS(9446), 1, + ACTIONS(9482), 1, anon_sym_module, - ACTIONS(9448), 1, + ACTIONS(9484), 1, anon_sym_use, - ACTIONS(9850), 1, + ACTIONS(9889), 1, anon_sym_alias, - ACTIONS(9852), 1, + ACTIONS(9891), 1, anon_sym_const, - STATE(6019), 1, - sym_comment, - [209577] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(973), 1, - sym__entry_separator, - ACTIONS(9854), 1, - anon_sym_DOT, - STATE(6783), 1, - sym_path, - ACTIONS(971), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6020), 2, + STATE(6018), 1, sym_comment, - aux_sym_cell_path_repeat1, - [209598] = 4, - ACTIONS(247), 1, + [209570] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(1556), 1, anon_sym_DASH2, - STATE(6021), 1, + STATE(6019), 1, sym_comment, - ACTIONS(2458), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1558), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [209615] = 4, - ACTIONS(247), 1, + anon_sym_as, + [209587] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6022), 1, - sym_comment, - ACTIONS(1841), 2, + ACTIONS(4755), 1, anon_sym_DOT_DOT2, + ACTIONS(9819), 1, aux_sym_unquoted_token2, - ACTIONS(1843), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(6020), 1, + sym_comment, + ACTIONS(4757), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209632] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9857), 1, - anon_sym_DQUOTE2, - STATE(5754), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6023), 1, - sym_comment, - STATE(6311), 1, - sym_expr_interpolated, - ACTIONS(9504), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209655] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9859), 1, - anon_sym_RBRACK, - STATE(6024), 1, - sym_comment, - STATE(6240), 1, - aux_sym_shebang_repeat1, - STATE(6945), 1, - aux_sym_val_table_repeat1, - STATE(7100), 1, - sym_val_list, - [209680] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9442), 1, - anon_sym_def, - ACTIONS(9444), 1, - anon_sym_extern, - ACTIONS(9446), 1, - anon_sym_module, - ACTIONS(9448), 1, - anon_sym_use, - ACTIONS(9861), 1, - anon_sym_alias, - ACTIONS(9863), 1, - anon_sym_const, - STATE(6025), 1, - sym_comment, - [209705] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(5028), 1, - sym__blosure, - STATE(6026), 1, - sym_comment, - [209730] = 8, - ACTIONS(247), 1, + ACTIONS(9672), 2, + sym_filesize_unit, + sym_duration_unit, + [209608] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9500), 1, + ACTIONS(9666), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4860), 1, + STATE(4904), 1, sym_block, - STATE(4861), 1, + STATE(4906), 1, sym_val_closure, - STATE(5031), 1, + STATE(5079), 1, sym__blosure, - STATE(6027), 1, + STATE(6021), 1, sym_comment, - [209755] = 8, - ACTIONS(247), 1, + [209633] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9865), 1, - anon_sym_RBRACK, - STATE(6028), 1, + ACTIONS(9893), 1, + anon_sym_DOT, + ACTIONS(9895), 1, + aux_sym__immediate_decimal_token2, + STATE(6022), 1, sym_comment, - STATE(6194), 1, - aux_sym_shebang_repeat1, - STATE(7099), 1, - sym_val_list, - STATE(7406), 1, - aux_sym_val_table_repeat1, - [209780] = 7, + ACTIONS(1872), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [209654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9871), 1, - anon_sym_SQUOTE, - STATE(6029), 1, + ACTIONS(9464), 1, + anon_sym_DOT, + STATE(5836), 1, + aux_sym_cell_path_repeat1, + STATE(6023), 1, sym_comment, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [209802] = 5, - ACTIONS(247), 1, + STATE(6814), 1, + sym_path, + ACTIONS(1479), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [209675] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(2018), 1, anon_sym_DASH2, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - STATE(6030), 1, + STATE(6024), 1, sym_comment, - ACTIONS(1719), 3, - anon_sym_DOLLAR, + ACTIONS(2020), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209820] = 7, + anon_sym_as, + [209692] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9534), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9873), 1, - anon_sym_SQUOTE, - STATE(6031), 1, + ACTIONS(9897), 1, + anon_sym_DQUOTE2, + STATE(5731), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6025), 1, sym_comment, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, + STATE(6698), 1, sym_expr_interpolated, - [209842] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(9875), 1, - aux_sym__immediate_decimal_token2, - STATE(6032), 1, - sym_comment, - ACTIONS(1787), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209860] = 7, - ACTIONS(247), 1, + ACTIONS(9536), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209715] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2050), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6033), 1, + ACTIONS(9522), 1, + anon_sym_DASH2, + STATE(6026), 1, sym_comment, - [209882] = 7, - ACTIONS(3), 1, + ACTIONS(9520), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [209732] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9877), 1, - anon_sym_SQUOTE, - STATE(6034), 1, + ACTIONS(9478), 1, + anon_sym_def, + ACTIONS(9480), 1, + anon_sym_extern, + ACTIONS(9482), 1, + anon_sym_module, + ACTIONS(9484), 1, + anon_sym_use, + ACTIONS(9899), 1, + anon_sym_alias, + ACTIONS(9901), 1, + anon_sym_const, + STATE(6027), 1, sym_comment, - STATE(6039), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [209904] = 4, - ACTIONS(247), 1, + [209757] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9454), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(6035), 1, + STATE(6028), 1, sym_comment, - ACTIONS(9452), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209920] = 7, - ACTIONS(247), 1, + STATE(7193), 1, + sym_block, + STATE(7604), 1, + sym_short_flag, + STATE(7611), 1, + sym_long_flag, + [209782] = 8, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6036), 1, + STATE(6029), 1, sym_comment, - STATE(6040), 1, + STATE(6148), 1, sym__variable_name, - STATE(7198), 1, - sym__assignment_pattern_parenthesized, - [209942] = 3, - ACTIONS(247), 1, + STATE(6281), 1, + sym__assignment_pattern, + [209807] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6037), 1, + ACTIONS(5150), 1, + anon_sym_DASH2, + STATE(6030), 1, sym_comment, - ACTIONS(8251), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(5148), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [209956] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9879), 1, - anon_sym_SQUOTE, - STATE(6038), 1, - sym_comment, - STATE(6044), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [209978] = 7, - ACTIONS(3), 1, + [209823] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9881), 1, - anon_sym_SQUOTE, - STATE(6039), 1, - sym_comment, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [210000] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9883), 1, + ACTIONS(9903), 1, anon_sym_EQ, - ACTIONS(9885), 1, + ACTIONS(9905), 1, anon_sym_COLON, - STATE(6040), 1, + STATE(6031), 1, sym_comment, - STATE(6862), 1, + STATE(7060), 1, aux_sym_shebang_repeat1, - STATE(7825), 1, + STATE(7960), 1, sym_param_type, - [210022] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2173), 1, - anon_sym_RBRACE, - ACTIONS(2175), 1, - sym__entry_separator, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, - STATE(6041), 1, - sym_comment, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210042] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9887), 1, - anon_sym_PIPE, - ACTIONS(9889), 1, - anon_sym_if, - ACTIONS(9891), 1, - anon_sym_EQ_GT, - STATE(6042), 1, - sym_comment, - STATE(7025), 1, - aux_sym_match_pattern_repeat1, - STATE(7724), 1, - sym_match_guard, - [210064] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(9893), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9895), 1, - aux_sym__immediate_decimal_token2, - STATE(6043), 1, - sym_comment, - ACTIONS(1741), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210084] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9897), 1, - anon_sym_SQUOTE, - STATE(6044), 1, - sym_comment, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [210106] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_DOT, - STATE(6045), 1, - sym_comment, - ACTIONS(990), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [210122] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, - aux_sym__immediate_decimal_token5, - STATE(6046), 1, - sym_comment, - STATE(7566), 1, - sym__immediate_decimal, - ACTIONS(8579), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [210142] = 7, - ACTIONS(247), 1, + [209845] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6047), 1, + STATE(6032), 1, sym_comment, - STATE(6212), 1, + STATE(6184), 1, sym__variable_name, - STATE(7220), 1, - sym__assignment_pattern, - [210164] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2076), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6048), 1, - sym_comment, - [210186] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9899), 1, - anon_sym_LPAREN, - ACTIONS(9902), 1, - sym_unescaped_interpolated_content, - ACTIONS(9905), 1, - anon_sym_SQUOTE, - STATE(7162), 1, - sym_expr_interpolated, - STATE(6049), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [210206] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9907), 1, - anon_sym_DOT_DOT2, - STATE(6050), 1, - sym_comment, - ACTIONS(1828), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(9909), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210224] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9692), 1, - aux_sym__immediate_decimal_token2, - STATE(6051), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210242] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2083), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6052), 1, - sym_comment, - [210264] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(963), 1, - aux_sym_record_entry_token1, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1501), 1, - sym_cell_path, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - STATE(6053), 1, - sym_comment, - [210286] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1869), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2163), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6054), 1, - sym_comment, - [210308] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1767), 1, - sym__entry_separator, - ACTIONS(8700), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9911), 1, - anon_sym_DOT, - STATE(6055), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210328] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2165), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - sym__entry_separator, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, - STATE(6056), 1, - sym_comment, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210348] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6057), 1, - sym_comment, - ACTIONS(1004), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1002), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [210364] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6058), 1, - sym_comment, - ACTIONS(8065), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210378] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(9913), 1, - anon_sym_DOT_DOT2, - STATE(6059), 1, - sym_comment, - ACTIONS(9915), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210398] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(9917), 1, - anon_sym_DOT_DOT2, - STATE(6060), 1, - sym_comment, - ACTIONS(9919), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210418] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9921), 1, - anon_sym_SQUOTE, - STATE(6061), 1, - sym_comment, - STATE(6065), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [210440] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(9617), 1, - aux_sym__immediate_decimal_token2, - STATE(6062), 1, - sym_comment, - ACTIONS(1767), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [210458] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6063), 1, - sym_comment, - STATE(7453), 1, - sym_block, - ACTIONS(9607), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210476] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9923), 1, - anon_sym_SQUOTE, - STATE(6064), 1, - sym_comment, - STATE(6088), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [210498] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9925), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6065), 1, - sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [210520] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_DASH2, - STATE(6066), 1, - sym_comment, - ACTIONS(5062), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210536] = 7, - ACTIONS(247), 1, + STATE(7245), 1, + sym__assignment_pattern_parenthesized, + [209867] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6040), 1, - sym__variable_name, - STATE(6067), 1, + STATE(6033), 1, sym_comment, - STATE(7452), 1, + STATE(6184), 1, + sym__variable_name, + STATE(7277), 1, sym__assignment_pattern_parenthesized, - [210558] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(1991), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6068), 1, - sym_comment, - [210580] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6069), 1, - sym_comment, - STATE(7091), 1, - sym_block, - ACTIONS(9607), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210598] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(9927), 1, - anon_sym_use, - ACTIONS(9929), 1, - anon_sym_list, - ACTIONS(9931), 1, - anon_sym_hide, - ACTIONS(9933), 1, - anon_sym_new, - STATE(6070), 1, - sym_comment, - [210620] = 7, - ACTIONS(247), 1, + [209889] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(1983), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6071), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6034), 1, sym_comment, - [210642] = 7, - ACTIONS(247), 1, + STATE(6184), 1, + sym__variable_name, + STATE(7282), 1, + sym__assignment_pattern_parenthesized, + [209911] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(2008), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2003), 1, + STATE(2174), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6072), 1, - sym_comment, - [210664] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9935), 1, - aux_sym__immediate_decimal_token2, - STATE(6073), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210682] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9885), 1, - anon_sym_COLON, - ACTIONS(9937), 1, - anon_sym_EQ, - STATE(6074), 1, - sym_comment, - STATE(6862), 1, - aux_sym_shebang_repeat1, - STATE(7717), 1, - sym_param_type, - [210704] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(224), 1, - aux_sym__block_body_repeat1, - STATE(6075), 1, + STATE(6035), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1459), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210722] = 5, - ACTIONS(247), 1, + [209933] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(5130), 1, anon_sym_DASH2, - ACTIONS(9939), 1, - anon_sym_EQ2, - STATE(6076), 1, + STATE(6036), 1, sym_comment, - ACTIONS(4996), 3, + ACTIONS(5128), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [210740] = 5, - ACTIONS(247), 1, + [209949] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DOT_DOT2, - STATE(6077), 1, + STATE(6037), 1, sym_comment, - ACTIONS(1810), 2, - sym__newline, + ACTIONS(8103), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - ACTIONS(9943), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210758] = 5, - ACTIONS(247), 1, + [209963] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(5136), 1, anon_sym_DASH2, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - STATE(6078), 1, + STATE(6038), 1, sym_comment, - ACTIONS(1719), 3, + ACTIONS(5134), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [210776] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5924), 1, - sym__entry_separator, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, - STATE(6079), 1, - sym_comment, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210796] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6080), 1, - sym_comment, - STATE(7428), 1, - sym_block, - ACTIONS(9605), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210814] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6081), 1, - sym_comment, - STATE(7064), 1, - sym_val_list, - STATE(7236), 1, - aux_sym_val_table_repeat1, - [210836] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1828), 1, anon_sym_LBRACE, - ACTIONS(9945), 1, - anon_sym_DOT_DOT2, - STATE(6082), 1, - sym_comment, - ACTIONS(9947), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210856] = 6, + [209979] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, - ACTIONS(9949), 1, - anon_sym_RBRACE, - ACTIONS(9951), 1, - sym__entry_separator, - STATE(6083), 1, - sym_comment, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210876] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6084), 1, - sym_comment, - STATE(7126), 1, - sym_val_list, - STATE(7127), 1, - aux_sym_val_table_repeat1, - [210898] = 6, + ACTIONS(9907), 1, + anon_sym_QMARK2, + STATE(6039), 1, + sym_comment, + ACTIONS(1500), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1502), 2, + anon_sym_DOT, + sym__entry_separator, + [209997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9595), 1, - anon_sym_DOT_DOT2, - ACTIONS(9953), 1, + ACTIONS(9909), 1, + anon_sym_QMARK2, + STATE(6040), 1, + sym_comment, + ACTIONS(1490), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9955), 1, + ACTIONS(1492), 2, + anon_sym_DOT, sym__entry_separator, - STATE(6085), 1, - sym_comment, - ACTIONS(9597), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210918] = 7, - ACTIONS(247), 1, + [210015] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(2012), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2057), 1, + STATE(2023), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6086), 1, - sym_comment, - [210940] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6087), 1, + STATE(6041), 1, sym_comment, - STATE(7247), 1, - aux_sym_val_table_repeat1, - STATE(7253), 1, - sym_val_list, - [210962] = 7, - ACTIONS(3), 1, + [210037] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9957), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6088), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6042), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [210984] = 6, - ACTIONS(247), 1, + STATE(7213), 1, + sym_block, + ACTIONS(9817), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [210055] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(9959), 1, - anon_sym_DOT_DOT2, - STATE(6089), 1, + ACTIONS(5034), 1, + anon_sym_DASH2, + STATE(6043), 1, sym_comment, - ACTIONS(9961), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211004] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(5032), 4, sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6090), 1, - sym_comment, - STATE(6212), 1, - sym__variable_name, - STATE(7205), 1, - sym__assignment_pattern, - [211026] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9963), 1, - anon_sym_DOT_DOT2, - STATE(6091), 1, - sym_comment, - ACTIONS(2128), 2, - sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9965), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211044] = 7, - ACTIONS(3), 1, + [210071] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9967), 1, - anon_sym_SQUOTE, - STATE(6092), 1, + ACTIONS(1884), 1, + aux_sym_record_entry_token1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(1979), 1, + sym_cell_path, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, + sym_path, + STATE(6044), 1, sym_comment, - STATE(6104), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [211066] = 5, - ACTIONS(247), 1, + [210093] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9969), 1, - anon_sym_DOT_DOT2, - STATE(6093), 1, - sym_comment, - ACTIONS(2136), 2, + ACTIONS(8193), 1, sym__newline, - anon_sym_LBRACE, - ACTIONS(9971), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211084] = 5, - ACTIONS(247), 1, + ACTIONS(8195), 1, + sym__space, + STATE(4890), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6045), 1, + sym_comment, + STATE(6192), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7712), 1, + sym__flags_parenthesized, + [210115] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9973), 1, - anon_sym_DOT_DOT2, - STATE(6094), 1, + ACTIONS(5046), 1, + anon_sym_DASH2, + STATE(6046), 1, sym_comment, - ACTIONS(2152), 2, - sym__newline, + ACTIONS(5044), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9975), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211102] = 7, - ACTIONS(247), 1, + [210131] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6095), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + ACTIONS(9911), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9913), 1, + aux_sym__immediate_decimal_token2, + STATE(6047), 1, sym_comment, - STATE(6212), 1, - sym__variable_name, - STATE(6834), 1, - sym__assignment_pattern, - [211124] = 7, - ACTIONS(247), 1, + ACTIONS(1892), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [210151] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1737), 1, + ACTIONS(1888), 1, aux_sym_record_entry_token1, - ACTIONS(6524), 1, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(2089), 1, + STATE(1997), 1, sym_cell_path, - STATE(3502), 1, + STATE(3504), 1, aux_sym_cell_path_repeat1, - STATE(3607), 1, + STATE(3630), 1, sym_path, - STATE(6096), 1, + STATE(6048), 1, sym_comment, - [211146] = 5, - ACTIONS(247), 1, + [210173] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_DASH2, - ACTIONS(9977), 1, - anon_sym_EQ2, - STATE(6097), 1, + ACTIONS(9915), 1, + anon_sym_DOT_DOT2, + STATE(6049), 1, sym_comment, - ACTIONS(5056), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1948), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9917), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210191] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6050), 1, + sym_comment, + ACTIONS(8259), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [211164] = 7, - ACTIONS(247), 1, + [210205] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1976), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(1992), 1, + STATE(2035), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6098), 1, + STATE(6051), 1, sym_comment, - [211186] = 7, - ACTIONS(247), 1, + [210227] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1921), 1, + ACTIONS(2016), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2001), 1, + STATE(2042), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6099), 1, - sym_comment, - [211208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DOT, - STATE(6100), 1, + STATE(6052), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [211224] = 5, - ACTIONS(247), 1, + [210249] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9979), 1, - anon_sym_EQ2, - ACTIONS(9981), 1, - sym_short_flag_identifier, - STATE(6101), 1, - sym_comment, - ACTIONS(4976), 3, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [211242] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9678), 1, - aux_sym__immediate_decimal_token2, - STATE(6102), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_RBRACE, - ACTIONS(1828), 1, - sym__entry_separator, - ACTIONS(9983), 1, - anon_sym_DOT_DOT2, - STATE(6103), 1, + STATE(5414), 1, + sym_val_variable, + STATE(6031), 1, + sym__variable_name, + STATE(6053), 1, sym_comment, - ACTIONS(9985), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211280] = 7, - ACTIONS(3), 1, + STATE(7430), 1, + sym__assignment_pattern, + [210271] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9987), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6104), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6031), 1, + sym__variable_name, + STATE(6054), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [211302] = 7, - ACTIONS(247), 1, + STATE(7026), 1, + sym__assignment_pattern, + [210293] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(2020), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2010), 1, + STATE(2052), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6105), 1, + STATE(6055), 1, sym_comment, - [211324] = 7, - ACTIONS(247), 1, + [210315] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1944), 1, + ACTIONS(2024), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2011), 1, + STATE(2053), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6106), 1, + STATE(6056), 1, sym_comment, - [211346] = 7, - ACTIONS(247), 1, + [210337] = 7, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(2028), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2012), 1, + STATE(2054), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6107), 1, + STATE(6057), 1, sym_comment, - [211368] = 7, - ACTIONS(247), 1, + [210359] = 7, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2015), 1, + STATE(2055), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6108), 1, + STATE(6058), 1, sym_comment, - [211390] = 5, - ACTIONS(247), 1, + [210381] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9770), 1, + ACTIONS(9919), 1, + anon_sym_DOT_DOT2, + STATE(6059), 1, + sym_comment, + ACTIONS(1958), 2, + sym__newline, anon_sym_LBRACE, - STATE(6109), 1, + ACTIONS(9921), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210399] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9923), 1, + anon_sym_DOT_DOT2, + STATE(6060), 1, sym_comment, - STATE(7179), 1, - sym_val_record, - ACTIONS(9540), 3, - ts_builtin_sym_end, + ACTIONS(2234), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9925), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210417] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9927), 1, + anon_sym_DOT_DOT2, + STATE(6061), 1, + sym_comment, + ACTIONS(2183), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9929), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210435] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9931), 1, + anon_sym_DOT_DOT2, + STATE(6062), 1, + sym_comment, + ACTIONS(2191), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9933), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210453] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(193), 1, + aux_sym__block_body_repeat1, + STATE(6063), 1, + sym_comment, + ACTIONS(143), 2, sym__newline, anon_sym_SEMI, - [211408] = 7, - ACTIONS(247), 1, + ACTIONS(1256), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210471] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6110), 1, + ACTIONS(1475), 1, + aux_sym_record_entry_token1, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(1472), 1, + sym_cell_path, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, + sym_path, + STATE(6064), 1, sym_comment, - STATE(6122), 1, - sym__variable_name, - STATE(6282), 1, - sym__assignment_pattern, - [211430] = 7, - ACTIONS(247), 1, + [210493] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6111), 1, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(2306), 1, + sym__entry_separator, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + STATE(6065), 1, sym_comment, - STATE(6122), 1, - sym__variable_name, - STATE(6283), 1, - sym__assignment_pattern, - [211452] = 7, - ACTIONS(247), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210513] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(5188), 1, + anon_sym_DASH2, + STATE(6066), 1, + sym_comment, + ACTIONS(5186), 4, sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6112), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210529] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2000), 1, + sym__table_head_separator, + ACTIONS(6564), 1, + anon_sym_DOT, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, + sym_path, + STATE(5883), 1, + sym_cell_path, + STATE(6067), 1, sym_comment, - STATE(6122), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [211474] = 7, - ACTIONS(247), 1, + [210551] = 7, + ACTIONS(255), 1, anon_sym_POUND, ACTIONS(2036), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2016), 1, + STATE(2065), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6113), 1, + STATE(6068), 1, sym_comment, - [211496] = 7, - ACTIONS(247), 1, + [210573] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2040), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(2008), 1, + sym__table_head_separator, + ACTIONS(6564), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(3504), 1, + aux_sym_cell_path_repeat1, + STATE(3630), 1, sym_path, - STATE(2018), 1, + STATE(5996), 1, sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6114), 1, + STATE(6069), 1, sym_comment, - [211518] = 7, - ACTIONS(247), 1, + [210595] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6115), 1, + ACTIONS(2173), 1, + anon_sym_LBRACE, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2066), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6070), 1, sym_comment, - STATE(6122), 1, - sym__variable_name, - STATE(6494), 1, - sym__assignment_pattern, - [211540] = 7, - ACTIONS(247), 1, + [210617] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2040), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2023), 1, + STATE(2068), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6116), 1, + STATE(6071), 1, sym_comment, - [211562] = 4, - ACTIONS(247), 1, + [210639] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5081), 1, + ACTIONS(5210), 1, anon_sym_DASH2, - STATE(6117), 1, + STATE(6072), 1, sym_comment, - ACTIONS(5079), 4, + ACTIONS(5208), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [211578] = 7, - ACTIONS(247), 1, + [210655] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(2044), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2046), 1, + STATE(2070), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6118), 1, + STATE(6073), 1, sym_comment, - [211600] = 5, - ACTIONS(247), 1, + [210677] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(222), 1, - aux_sym__block_body_repeat1, - STATE(6119), 1, + ACTIONS(2048), 1, + anon_sym_LBRACE, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2071), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6074), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1457), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211618] = 7, - ACTIONS(247), 1, + [210699] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(2052), 1, anon_sym_LBRACE, - ACTIONS(8925), 1, + ACTIONS(8954), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1909), 1, sym_path, - STATE(2049), 1, + STATE(2073), 1, sym_cell_path, - STATE(5562), 1, + STATE(5506), 1, aux_sym_cell_path_repeat1, - STATE(6120), 1, + STATE(6075), 1, sym_comment, - [211640] = 7, + [210721] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(9989), 1, + ACTIONS(9939), 1, anon_sym_SQUOTE, - STATE(6121), 1, + STATE(6076), 1, sym_comment, - STATE(6140), 1, + STATE(6081), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, + STATE(7207), 1, sym_expr_interpolated, - [211662] = 7, - ACTIONS(247), 1, + [210743] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9885), 1, + ACTIONS(9905), 1, anon_sym_COLON, - ACTIONS(9991), 1, + ACTIONS(9941), 1, anon_sym_EQ, - STATE(6122), 1, + STATE(6077), 1, sym_comment, - STATE(6862), 1, + STATE(7060), 1, aux_sym_shebang_repeat1, - STATE(7937), 1, + STATE(7848), 1, sym_param_type, - [211684] = 7, - ACTIONS(247), 1, + [210765] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9885), 1, - anon_sym_COLON, - ACTIONS(9993), 1, - anon_sym_EQ, - STATE(6123), 1, + ACTIONS(2056), 1, + anon_sym_LBRACE, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2074), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6078), 1, sym_comment, - STATE(6862), 1, - aux_sym_shebang_repeat1, - STATE(7794), 1, - sym_param_type, - [211706] = 3, - ACTIONS(247), 1, + [210787] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6124), 1, + ACTIONS(2060), 1, + anon_sym_LBRACE, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2075), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6079), 1, sym_comment, - ACTIONS(8059), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + [210809] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2064), 1, anon_sym_LBRACE, - [211720] = 7, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2076), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6080), 1, + sym_comment, + [210831] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(9995), 1, + ACTIONS(9943), 1, anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6125), 1, + STATE(6081), 1, sym_comment, - STATE(7162), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [211742] = 4, - ACTIONS(247), 1, + [210853] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5154), 1, anon_sym_DASH2, - STATE(6126), 1, + STATE(6082), 1, sym_comment, - ACTIONS(5052), 4, + ACTIONS(5152), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [211758] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_DASH2, - ACTIONS(9997), 1, - anon_sym_EQ2, - STATE(6127), 1, - sym_comment, - ACTIONS(4996), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211776] = 3, - ACTIONS(247), 1, + [210869] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6128), 1, - sym_comment, - ACTIONS(8161), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(2068), 1, anon_sym_LBRACE, - [211790] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6129), 1, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2077), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6083), 1, sym_comment, - STATE(6904), 1, - sym_val_list, - STATE(7283), 1, - aux_sym_val_table_repeat1, - [211812] = 3, - ACTIONS(247), 1, + [210891] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6130), 1, - sym_comment, - ACTIONS(8181), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(9640), 1, anon_sym_LBRACE, - [211826] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6131), 1, - sym_comment, - STATE(7032), 1, - sym_val_list, - STATE(7287), 1, - aux_sym_val_table_repeat1, - [211848] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(9999), 1, - anon_sym_SQUOTE, - STATE(6132), 1, - sym_comment, - STATE(6142), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [211870] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_DASH_DASH, - ACTIONS(10001), 1, - sym_long_flag_identifier, - ACTIONS(10003), 1, - anon_sym_EQ2, - STATE(6133), 1, + STATE(6084), 1, sym_comment, - ACTIONS(4970), 2, - sym_identifier, - anon_sym_DASH2, - [211890] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8103), 1, + STATE(7134), 1, + sym_val_record, + ACTIONS(9574), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8105), 1, - sym__space, - STATE(4858), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6134), 1, - sym_comment, - STATE(6157), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7630), 1, - sym__flags_parenthesized, - [211912] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_DASH2, - ACTIONS(10005), 1, - anon_sym_EQ2, - STATE(6135), 1, - sym_comment, - ACTIONS(5056), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211930] = 4, - ACTIONS(247), 1, + anon_sym_SEMI, + [210909] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(1788), 1, anon_sym_DASH2, - STATE(6136), 1, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + STATE(6085), 1, sym_comment, - ACTIONS(5132), 4, - sym_identifier, + ACTIONS(1800), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [211946] = 4, - ACTIONS(247), 1, + [210927] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_DASH2, - STATE(6137), 1, - sym_comment, - ACTIONS(5136), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2072), 1, anon_sym_LBRACE, - [211962] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_DASH_DASH, - ACTIONS(10009), 1, - anon_sym_DASH2, - ACTIONS(10011), 1, - anon_sym_in2, - STATE(6138), 1, - sym_comment, - STATE(7999), 1, - sym_short_flag, - STATE(8122), 1, - sym_long_flag, - [211984] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10013), 1, - anon_sym_SQUOTE, - STATE(6029), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6139), 1, - sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212006] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10015), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6140), 1, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2078), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6086), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212028] = 4, + [210949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(1874), 1, + sym__entry_separator, + ACTIONS(8740), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9945), 1, anon_sym_DOT, - STATE(6141), 1, + STATE(6087), 1, sym_comment, - ACTIONS(998), 4, + ACTIONS(1872), 2, anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [212044] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10017), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6142), 1, - sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212066] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [210969] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_DASH2, - STATE(6143), 1, - sym_comment, - ACTIONS(5083), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6218), 1, anon_sym_LBRACE, - [212082] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10019), 1, - anon_sym_SQUOTE, - STATE(6031), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6144), 1, + STATE(6088), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212104] = 7, - ACTIONS(3), 1, + STATE(7169), 1, + sym_block, + ACTIONS(9703), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [210987] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10021), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6145), 1, + ACTIONS(9640), 1, + anon_sym_LBRACE, + STATE(6089), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212126] = 7, - ACTIONS(247), 1, + STATE(7136), 1, + sym_val_record, + ACTIONS(9578), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211005] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6123), 1, - sym__variable_name, - STATE(6146), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1948), 1, + anon_sym_LBRACE, + ACTIONS(9947), 1, + anon_sym_DOT_DOT2, + STATE(6090), 1, sym_comment, - STATE(6283), 1, - sym__assignment_pattern, - [212148] = 7, - ACTIONS(247), 1, + ACTIONS(9949), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211025] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6123), 1, - sym__variable_name, - STATE(6147), 1, + ACTIONS(1940), 1, + anon_sym_RBRACE, + ACTIONS(1948), 1, + sym__entry_separator, + ACTIONS(9951), 1, + anon_sym_DOT_DOT2, + STATE(6091), 1, sym_comment, - STATE(6285), 1, - sym__assignment_pattern, - [212170] = 7, - ACTIONS(247), 1, + ACTIONS(9953), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211045] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_DASH_DASH, - ACTIONS(10009), 1, + ACTIONS(1788), 1, anon_sym_DASH2, - ACTIONS(10023), 1, - anon_sym_in2, - STATE(6148), 1, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + STATE(6092), 1, sym_comment, - STATE(7713), 1, - sym_long_flag, - STATE(7966), 1, - sym_short_flag, - [212192] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(1800), 3, sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6123), 1, - sym__variable_name, - STATE(6149), 1, - sym_comment, - STATE(6494), 1, - sym__assignment_pattern, - [212214] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6150), 1, - sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6282), 1, - sym__assignment_pattern, - [212236] = 7, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + [211063] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6151), 1, + ACTIONS(9568), 1, + aux_sym__immediate_decimal_token2, + STATE(6093), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6283), 1, - sym__assignment_pattern, - [212258] = 7, - ACTIONS(247), 1, + ACTIONS(1872), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [211081] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6152), 1, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(2310), 1, + sym__entry_separator, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + STATE(6094), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [212280] = 7, - ACTIONS(3), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211101] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10025), 1, - anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6153), 1, + STATE(6095), 1, sym_comment, - STATE(7162), 1, - sym_expr_interpolated, - [212302] = 7, - ACTIONS(247), 1, + ACTIONS(8285), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [211115] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6154), 1, - sym_comment, - STATE(6212), 1, + STATE(6031), 1, sym__variable_name, - STATE(6857), 1, - sym__assignment_pattern, - [212324] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6155), 1, - sym_comment, - STATE(7193), 1, - sym_val_list, - STATE(7307), 1, - aux_sym_val_table_repeat1, - [212346] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6156), 1, - sym_comment, - STATE(7199), 1, - sym_val_list, - STATE(7309), 1, - aux_sym_val_table_repeat1, - [212368] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10027), 1, - sym__newline, - ACTIONS(10030), 1, - sym__space, - STATE(5678), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7630), 1, - sym__flags_parenthesized, - STATE(6157), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [212388] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_LBRACE, - ACTIONS(8925), 1, - anon_sym_DOT, - STATE(1882), 1, - sym_path, - STATE(2094), 1, - sym_cell_path, - STATE(5562), 1, - aux_sym_cell_path_repeat1, - STATE(6158), 1, - sym_comment, - [212410] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6159), 1, - sym_comment, - STATE(6820), 1, - sym_val_list, - STATE(7317), 1, - aux_sym_val_table_repeat1, - [212432] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6160), 1, + STATE(6096), 1, sym_comment, - STATE(6825), 1, - sym_val_list, - STATE(7320), 1, - aux_sym_val_table_repeat1, - [212454] = 6, - ACTIONS(247), 1, + STATE(7181), 1, + sym__assignment_pattern, + [211137] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1765), 1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - ACTIONS(10033), 1, + ACTIONS(9955), 1, anon_sym_DOT, - ACTIONS(10035), 1, + ACTIONS(9957), 1, aux_sym__immediate_decimal_token2, - STATE(6161), 1, - sym_comment, - ACTIONS(1767), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [212474] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH2, - STATE(6162), 1, - sym_comment, - ACTIONS(5097), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [212490] = 5, + STATE(6097), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10037), 1, + ACTIONS(9959), 1, aux_sym__immediate_decimal_token2, - STATE(6163), 1, + STATE(6098), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1919), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 2, + ACTIONS(1921), 2, anon_sym_LPAREN2, sym__entry_separator, - [212508] = 7, - ACTIONS(247), 1, + [211175] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6164), 1, + ACTIONS(9961), 1, + anon_sym_DASH_DASH, + ACTIONS(9963), 1, + anon_sym_DASH2, + ACTIONS(9965), 1, + anon_sym_in2, + STATE(6099), 1, sym_comment, - STATE(6847), 1, - sym_val_list, - STATE(7324), 1, - aux_sym_val_table_repeat1, - [212530] = 7, - ACTIONS(247), 1, + STATE(7974), 1, + sym_short_flag, + STATE(8131), 1, + sym_long_flag, + [211197] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6165), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6100), 1, sym_comment, - STATE(6853), 1, - sym_val_list, - STATE(7326), 1, - aux_sym_val_table_repeat1, - [212552] = 7, - ACTIONS(247), 1, + STATE(6862), 1, + sym_block, + ACTIONS(9719), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211215] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1749), 1, - aux_sym_record_entry_token1, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(2074), 1, - sym_cell_path, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - STATE(6166), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6101), 1, sym_comment, - [212574] = 7, - ACTIONS(3), 1, + STATE(7105), 1, + sym_block, + ACTIONS(9821), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211233] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LPAREN, - ACTIONS(9869), 1, - sym_unescaped_interpolated_content, - ACTIONS(10039), 1, - anon_sym_SQUOTE, - STATE(6167), 1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6102), 1, sym_comment, - STATE(6181), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, - sym_expr_interpolated, - [212596] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + STATE(7116), 1, + sym_block, + ACTIONS(9821), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6168), 1, - sym_comment, - STATE(6873), 1, - sym_val_list, - STATE(7331), 1, - aux_sym_val_table_repeat1, - [212618] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + [211251] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6169), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + ACTIONS(9967), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9969), 1, + aux_sym__immediate_decimal_token2, + STATE(6103), 1, sym_comment, - STATE(6879), 1, - sym_val_list, - STATE(7334), 1, - aux_sym_val_table_repeat1, - [212640] = 4, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [211271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6170), 1, + STATE(6104), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(1512), 2, anon_sym_DOT, sym__entry_separator, - ACTIONS(990), 3, + ACTIONS(1510), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_QMARK2, - [212656] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6171), 1, - sym_comment, - STATE(6896), 1, - sym_val_list, - STATE(7341), 1, - aux_sym_val_table_repeat1, - [212678] = 7, - ACTIONS(247), 1, + [211287] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6172), 1, + STATE(6105), 1, sym_comment, - STATE(6901), 1, - sym_val_list, - STATE(7344), 1, - aux_sym_val_table_repeat1, - [212700] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1869), 1, - sym__table_head_separator, - ACTIONS(6524), 1, + ACTIONS(1508), 2, anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - STATE(5996), 1, - sym_cell_path, - STATE(6173), 1, - sym_comment, - [212722] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6174), 1, - sym_comment, - STATE(6930), 1, - sym_val_list, - STATE(7351), 1, - aux_sym_val_table_repeat1, - [212744] = 7, - ACTIONS(247), 1, + sym__entry_separator, + ACTIONS(1506), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [211303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6175), 1, + STATE(6106), 1, sym_comment, - STATE(6936), 1, - sym_val_list, - STATE(7354), 1, - aux_sym_val_table_repeat1, - [212766] = 6, - ACTIONS(247), 1, + ACTIONS(1516), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1514), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [211319] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1810), 1, - anon_sym_LBRACE, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(10041), 1, - anon_sym_DOT_DOT2, - STATE(6176), 1, + STATE(195), 1, + aux_sym__block_body_repeat1, + STATE(6107), 1, sym_comment, - ACTIONS(10043), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212786] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(143), 2, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6177), 1, - sym_comment, - STATE(6960), 1, - sym_val_list, - STATE(7360), 1, - aux_sym_val_table_repeat1, - [212808] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + ACTIONS(637), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211337] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6178), 1, + STATE(6108), 1, sym_comment, - STATE(6964), 1, - sym_val_list, - STATE(7363), 1, - aux_sym_val_table_repeat1, - [212830] = 7, - ACTIONS(247), 1, + ACTIONS(1498), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1496), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [211353] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6179), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(9971), 1, + anon_sym_use, + ACTIONS(9973), 1, + anon_sym_list, + ACTIONS(9975), 1, + anon_sym_hide, + ACTIONS(9977), 1, + anon_sym_new, + STATE(6109), 1, sym_comment, - STATE(6989), 1, - sym_val_list, - STATE(7371), 1, - aux_sym_val_table_repeat1, - [212852] = 7, - ACTIONS(247), 1, + [211375] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6180), 1, + STATE(6110), 1, sym_comment, - STATE(6996), 1, - sym_val_list, - STATE(7374), 1, - aux_sym_val_table_repeat1, - [212874] = 7, + ACTIONS(7894), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [211389] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10045), 1, + ACTIONS(9979), 1, anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6181), 1, + STATE(6111), 1, sym_comment, - STATE(7162), 1, + STATE(6115), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [212896] = 4, - ACTIONS(247), 1, + [211411] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DASH2, - STATE(6182), 1, - sym_comment, - ACTIONS(5119), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6218), 1, anon_sym_LBRACE, - [212912] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6183), 1, + STATE(6112), 1, sym_comment, - STATE(7018), 1, - sym_val_list, - STATE(7381), 1, - aux_sym_val_table_repeat1, - [212934] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + STATE(6864), 1, + sym_block, + ACTIONS(9719), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6184), 1, - sym_comment, - STATE(7023), 1, - sym_val_list, - STATE(7383), 1, - aux_sym_val_table_repeat1, - [212956] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + [211429] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, + ACTIONS(9905), 1, + anon_sym_COLON, + ACTIONS(9981), 1, + anon_sym_EQ, + STATE(6113), 1, + sym_comment, + STATE(7060), 1, aux_sym_shebang_repeat1, - STATE(6185), 1, + STATE(7743), 1, + sym_param_type, + [211451] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1512), 1, + anon_sym_DOT, + STATE(6114), 1, sym_comment, - STATE(7042), 1, - sym_val_list, - STATE(7387), 1, - aux_sym_val_table_repeat1, - [212978] = 7, - ACTIONS(247), 1, + ACTIONS(1510), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [211467] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6186), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(9983), 1, + anon_sym_SQUOTE, + STATE(6115), 1, sym_comment, - STATE(7048), 1, - sym_val_list, - STATE(7390), 1, - aux_sym_val_table_repeat1, - [213000] = 5, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211489] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6187), 1, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, + sym__entry_separator, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + STATE(6116), 1, sym_comment, - STATE(6886), 1, - sym_block, - ACTIONS(9772), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [213018] = 5, - ACTIONS(247), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211509] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6188), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(9801), 1, + aux_sym__immediate_decimal_token2, + STATE(6117), 1, sym_comment, - STATE(6887), 1, - sym_block, - ACTIONS(9772), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [213036] = 7, - ACTIONS(247), 1, + ACTIONS(1874), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211527] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, - sym__table_head_separator, - ACTIONS(6524), 1, + ACTIONS(1508), 1, anon_sym_DOT, - STATE(3502), 1, - aux_sym_cell_path_repeat1, - STATE(3607), 1, - sym_path, - STATE(6021), 1, - sym_cell_path, - STATE(6189), 1, + STATE(6118), 1, sym_comment, - [213058] = 7, - ACTIONS(247), 1, + ACTIONS(1506), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [211543] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6190), 1, + ACTIONS(1516), 1, + anon_sym_DOT, + STATE(6119), 1, sym_comment, - STATE(7065), 1, - sym_val_list, - STATE(7395), 1, - aux_sym_val_table_repeat1, - [213080] = 7, - ACTIONS(247), 1, + ACTIONS(1514), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [211559] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6191), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(9985), 1, + anon_sym_DOT_DOT2, + STATE(6120), 1, sym_comment, - STATE(7070), 1, - sym_val_list, - STATE(7397), 1, - aux_sym_val_table_repeat1, - [213102] = 7, - ACTIONS(247), 1, + ACTIONS(9987), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211579] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6192), 1, + ACTIONS(1498), 1, + anon_sym_DOT, + STATE(6121), 1, sym_comment, - STATE(7082), 1, - sym_val_list, - STATE(7401), 1, - aux_sym_val_table_repeat1, - [213124] = 7, - ACTIONS(247), 1, + ACTIONS(1496), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [211595] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6193), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(9989), 1, + anon_sym_SQUOTE, + STATE(6122), 1, sym_comment, - STATE(7087), 1, - sym_val_list, - STATE(7403), 1, - aux_sym_val_table_repeat1, - [213146] = 7, - ACTIONS(247), 1, + STATE(6124), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211617] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6194), 1, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + ACTIONS(9991), 1, + anon_sym_RBRACE, + ACTIONS(9993), 1, + sym__entry_separator, + STATE(6123), 1, sym_comment, - STATE(7101), 1, - sym_val_list, - STATE(7407), 1, - aux_sym_val_table_repeat1, - [213168] = 7, - ACTIONS(247), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211637] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6195), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(9995), 1, + anon_sym_SQUOTE, + STATE(6124), 1, sym_comment, - STATE(7105), 1, - sym_val_list, - STATE(7409), 1, - aux_sym_val_table_repeat1, - [213190] = 7, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211659] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6196), 1, + ACTIONS(1950), 1, + anon_sym_RBRACE, + ACTIONS(1958), 1, + sym__entry_separator, + ACTIONS(9997), 1, + anon_sym_DOT_DOT2, + STATE(6125), 1, sym_comment, - STATE(7115), 1, - sym_val_list, - STATE(7413), 1, - aux_sym_val_table_repeat1, - [213212] = 7, - ACTIONS(247), 1, + ACTIONS(9999), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211679] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6197), 1, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + ACTIONS(10001), 1, + aux_sym__immediate_decimal_token2, + STATE(6126), 1, sym_comment, - STATE(7119), 1, - sym_val_list, - STATE(7415), 1, - aux_sym_val_table_repeat1, - [213234] = 7, - ACTIONS(247), 1, + ACTIONS(1921), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211697] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6198), 1, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + ACTIONS(10003), 1, + anon_sym_RBRACE, + ACTIONS(10005), 1, + sym__entry_separator, + STATE(6127), 1, sym_comment, - STATE(7132), 1, - sym_val_list, - STATE(7419), 1, - aux_sym_val_table_repeat1, - [213256] = 7, - ACTIONS(247), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211717] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6199), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10007), 1, + anon_sym_SQUOTE, + STATE(6128), 1, sym_comment, - STATE(7137), 1, - sym_val_list, - STATE(7421), 1, - aux_sym_val_table_repeat1, - [213278] = 7, - ACTIONS(247), 1, + STATE(6129), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211739] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6200), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10009), 1, + anon_sym_SQUOTE, + STATE(6129), 1, sym_comment, - STATE(7151), 1, - sym_val_list, - STATE(7425), 1, - aux_sym_val_table_repeat1, - [213300] = 7, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211761] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6201), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10011), 1, + anon_sym_SQUOTE, + STATE(6130), 1, sym_comment, - STATE(7157), 1, - sym_val_list, - STATE(7427), 1, - aux_sym_val_table_repeat1, - [213322] = 6, - ACTIONS(247), 1, + STATE(6132), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211783] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8622), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8583), 1, + ACTIONS(8624), 1, aux_sym__immediate_decimal_token5, - STATE(6202), 1, + STATE(6131), 1, sym_comment, - STATE(7735), 1, + STATE(7785), 1, sym__immediate_decimal, - ACTIONS(8579), 2, + ACTIONS(8620), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [213342] = 7, - ACTIONS(247), 1, + [211803] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6203), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10013), 1, + anon_sym_SQUOTE, + STATE(6132), 1, sym_comment, - STATE(7454), 1, - sym__assignment_pattern_parenthesized, - [213364] = 7, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211825] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6204), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10015), 1, + anon_sym_SQUOTE, + STATE(6133), 1, sym_comment, - STATE(7435), 1, - sym__assignment_pattern_parenthesized, - [213386] = 7, - ACTIONS(247), 1, + STATE(6134), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211847] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10017), 1, + anon_sym_SQUOTE, + STATE(6134), 1, + sym_comment, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [211869] = 7, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6205), 1, - sym_comment, - STATE(7452), 1, - sym__assignment_pattern_parenthesized, - [213408] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_DASH_DASH, - ACTIONS(10009), 1, - anon_sym_DASH2, - ACTIONS(10047), 1, - anon_sym_in2, - STATE(6206), 1, - sym_comment, - STATE(8114), 1, - sym_short_flag, - STATE(8115), 1, - sym_long_flag, - [213430] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6207), 1, + STATE(6135), 1, sym_comment, - ACTIONS(8019), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [213444] = 7, - ACTIONS(247), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6278), 1, + sym__assignment_pattern, + [211891] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6040), 1, - sym__variable_name, - STATE(6208), 1, + STATE(6136), 1, sym_comment, - STATE(7454), 1, - sym__assignment_pattern_parenthesized, - [213466] = 7, - ACTIONS(247), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6280), 1, + sym__assignment_pattern, + [211913] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6209), 1, - sym_comment, - STATE(7198), 1, - sym__assignment_pattern_parenthesized, - [213488] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_DASH_DASH, - ACTIONS(10009), 1, - anon_sym_DASH2, - ACTIONS(10049), 1, - anon_sym_in2, - STATE(6210), 1, + STATE(6137), 1, sym_comment, - STATE(8119), 1, - sym_short_flag, - STATE(8120), 1, - sym_long_flag, - [213510] = 7, + STATE(6148), 1, + sym__variable_name, + STATE(6281), 1, + sym__assignment_pattern, + [211935] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10051), 1, + ACTIONS(10019), 1, anon_sym_SQUOTE, - STATE(6211), 1, + STATE(6138), 1, sym_comment, - STATE(6218), 1, + STATE(6139), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, + STATE(7207), 1, sym_expr_interpolated, - [213532] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9885), 1, - anon_sym_COLON, - ACTIONS(10053), 1, - anon_sym_EQ, - STATE(6212), 1, - sym_comment, - STATE(6862), 1, - aux_sym_shebang_repeat1, - STATE(8140), 1, - sym_param_type, - [213554] = 7, + [211957] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10055), 1, + ACTIONS(10021), 1, anon_sym_SQUOTE, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6213), 1, + STATE(6139), 1, sym_comment, - STATE(7162), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [213576] = 7, + [211979] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10057), 1, + ACTIONS(10023), 1, anon_sym_SQUOTE, - STATE(6214), 1, + STATE(6140), 1, sym_comment, - STATE(6216), 1, + STATE(6142), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, + STATE(7207), 1, sym_expr_interpolated, - [213598] = 4, - ACTIONS(3), 1, + [212001] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DOT, - STATE(6215), 1, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(10027), 1, + anon_sym_if, + ACTIONS(10029), 1, + anon_sym_EQ_GT, + STATE(6141), 1, sym_comment, - ACTIONS(1002), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [213614] = 7, + STATE(7295), 1, + aux_sym_match_pattern_repeat1, + STATE(7839), 1, + sym_match_guard, + [212023] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10059), 1, + ACTIONS(10031), 1, anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6216), 1, + STATE(6142), 1, sym_comment, - STATE(7162), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [213636] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_DASH2, - STATE(6217), 1, - sym_comment, - ACTIONS(5170), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [213652] = 7, + [212045] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10061), 1, + ACTIONS(10033), 1, anon_sym_SQUOTE, - STATE(6049), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6218), 1, + STATE(6143), 1, sym_comment, - STATE(7162), 1, + STATE(6161), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [213674] = 7, - ACTIONS(247), 1, + [212067] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(9927), 1, - anon_sym_use, - ACTIONS(9929), 1, - anon_sym_list, - ACTIONS(9931), 1, - anon_sym_hide, - ACTIONS(9933), 1, - anon_sym_new, - STATE(6219), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6144), 1, sym_comment, - [213696] = 5, - ACTIONS(3), 1, + STATE(6148), 1, + sym__variable_name, + STATE(6509), 1, + sym__assignment_pattern, + [212089] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(980), 1, - anon_sym_DOT, - ACTIONS(10063), 1, - anon_sym_QMARK2, - STATE(6220), 1, + STATE(6145), 1, sym_comment, - ACTIONS(978), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [213714] = 5, - ACTIONS(247), 1, + ACTIONS(8295), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [212103] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10065), 1, + ACTIONS(10035), 1, anon_sym_DOT_DOT2, - STATE(6221), 1, + STATE(6146), 1, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2203), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(10067), 2, + ACTIONS(10037), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [213732] = 7, + [212121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10069), 1, + ACTIONS(10039), 1, anon_sym_SQUOTE, - STATE(6222), 1, + STATE(6147), 1, sym_comment, - STATE(6225), 1, + STATE(6150), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7162), 1, + STATE(7207), 1, sym_expr_interpolated, - [213754] = 5, - ACTIONS(3), 1, + [212143] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10071), 1, - anon_sym_QMARK2, - STATE(6223), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9905), 1, + anon_sym_COLON, + ACTIONS(10041), 1, + anon_sym_EQ, + STATE(6148), 1, sym_comment, - ACTIONS(978), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(980), 2, - anon_sym_DOT, - sym__entry_separator, - [213772] = 5, - ACTIONS(247), 1, + STATE(7060), 1, + aux_sym_shebang_repeat1, + STATE(8146), 1, + sym_param_type, + [212165] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_LBRACE, - STATE(6224), 1, + STATE(6149), 1, sym_comment, - STATE(7227), 1, - sym_val_record, - ACTIONS(9548), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [213790] = 7, + ACTIONS(8239), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [212179] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10073), 1, + ACTIONS(10043), 1, anon_sym_SQUOTE, - STATE(6049), 1, + STATE(6150), 1, + sym_comment, + STATE(6175), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6225), 1, + STATE(7207), 1, + sym_expr_interpolated, + [212201] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6151), 1, sym_comment, - STATE(7162), 1, + ACTIONS(8243), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [212215] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10045), 1, + anon_sym_SQUOTE, + STATE(6152), 1, + sym_comment, + STATE(6153), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [213812] = 6, - ACTIONS(247), 1, + [212237] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(10075), 1, - anon_sym_DOT, - ACTIONS(10077), 1, - aux_sym__immediate_decimal_token2, - STATE(6226), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10047), 1, + anon_sym_SQUOTE, + STATE(6153), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [213832] = 5, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212259] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6227), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10049), 1, + anon_sym_SQUOTE, + STATE(6154), 1, sym_comment, - STATE(6959), 1, - sym_block, - ACTIONS(9796), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [213850] = 5, + STATE(6156), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10079), 1, + ACTIONS(1502), 1, + anon_sym_DOT, + ACTIONS(10051), 1, anon_sym_QMARK2, - STATE(6228), 1, + STATE(6155), 1, sym_comment, - ACTIONS(984), 2, + ACTIONS(1500), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(986), 2, - anon_sym_DOT, sym__entry_separator, - [213868] = 4, + sym__table_head_separator, + [212299] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6229), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10053), 1, + anon_sym_SQUOTE, + STATE(6156), 1, sym_comment, - ACTIONS(996), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(994), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [213884] = 6, - ACTIONS(247), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212321] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(10081), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10083), 1, - aux_sym__immediate_decimal_token2, - STATE(6230), 1, + ACTIONS(10055), 1, + sym__newline, + ACTIONS(10058), 1, + sym__space, + STATE(5706), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7712), 1, + sym__flags_parenthesized, + STATE(6157), 2, sym_comment, - ACTIONS(1741), 2, + aux_sym_ctrl_do_parenthesized_repeat1, + [212341] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1958), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - [213904] = 4, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(10061), 1, + anon_sym_DOT_DOT2, + STATE(6158), 1, + sym_comment, + ACTIONS(10063), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212361] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6231), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10065), 1, + anon_sym_SQUOTE, + STATE(6159), 1, sym_comment, - ACTIONS(1000), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(998), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [213920] = 7, - ACTIONS(247), 1, + STATE(6160), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212383] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6040), 1, - sym__variable_name, - STATE(6232), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10067), 1, + anon_sym_SQUOTE, + STATE(6160), 1, sym_comment, - STATE(7435), 1, - sym__assignment_pattern_parenthesized, - [213942] = 7, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212405] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10085), 1, + ACTIONS(10069), 1, anon_sym_SQUOTE, - STATE(6153), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6233), 1, + STATE(6161), 1, sym_comment, - STATE(7162), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [213964] = 5, - ACTIONS(247), 1, + [212427] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(221), 1, + STATE(194), 1, aux_sym__block_body_repeat1, - STATE(6234), 1, + STATE(6162), 1, sym_comment, - ACTIONS(139), 2, + ACTIONS(143), 2, sym__newline, anon_sym_SEMI, - ACTIONS(627), 2, + ACTIONS(1258), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [213982] = 7, - ACTIONS(247), 1, + [212445] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(8647), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(5398), 1, + STATE(5414), 1, sym_val_variable, - STATE(6235), 1, - sym_comment, - STATE(6237), 1, + STATE(6031), 1, sym__variable_name, - STATE(6494), 1, + STATE(6163), 1, + sym_comment, + STATE(6929), 1, sym__assignment_pattern, - [214004] = 5, + [212467] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DOT, - ACTIONS(10087), 1, - anon_sym_QMARK2, - STATE(6236), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10071), 1, + anon_sym_SQUOTE, + STATE(6164), 1, sym_comment, - ACTIONS(984), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [214022] = 7, - ACTIONS(247), 1, + STATE(6165), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212489] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9885), 1, - anon_sym_COLON, - ACTIONS(10089), 1, - anon_sym_EQ, - STATE(6237), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10073), 1, + anon_sym_SQUOTE, + STATE(6165), 1, sym_comment, - STATE(6862), 1, - aux_sym_shebang_repeat1, - STATE(7861), 1, - sym_param_type, - [214044] = 7, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(9935), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, + ACTIONS(9937), 1, sym_unescaped_interpolated_content, - ACTIONS(10091), 1, + ACTIONS(10075), 1, anon_sym_SQUOTE, - STATE(6145), 1, + STATE(6166), 1, + sym_comment, + STATE(6167), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6238), 1, + STATE(7207), 1, + sym_expr_interpolated, + [212533] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10077), 1, + anon_sym_SQUOTE, + STATE(6167), 1, sym_comment, - STATE(7162), 1, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, sym_expr_interpolated, - [214066] = 4, - ACTIONS(247), 1, + [212555] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5176), 1, + ACTIONS(5170), 1, anon_sym_DASH2, - STATE(6239), 1, + STATE(6168), 1, sym_comment, - ACTIONS(5174), 4, + ACTIONS(5168), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [214082] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6240), 1, - sym_comment, - STATE(7224), 1, - sym_val_list, - STATE(7231), 1, - aux_sym_val_table_repeat1, - [214104] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8103), 1, - sym__newline, - ACTIONS(8105), 1, - sym__space, - STATE(4829), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6134), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6241), 1, - sym_comment, - STATE(7630), 1, - sym__flags_parenthesized, - [214126] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6242), 1, - sym_comment, - ACTIONS(8157), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [214140] = 7, - ACTIONS(247), 1, + [212571] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_DOLLAR, - ACTIONS(8647), 1, - sym_identifier, - STATE(5398), 1, - sym_val_variable, - STATE(6123), 1, - sym__variable_name, - STATE(6243), 1, - sym_comment, - STATE(6282), 1, - sym__assignment_pattern, - [214162] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6244), 1, + ACTIONS(5174), 1, + anon_sym_DASH2, + STATE(6169), 1, sym_comment, - ACTIONS(10093), 4, + ACTIONS(5172), 4, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [214175] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(627), 1, - ts_builtin_sym_end, - STATE(227), 1, - aux_sym__block_body_repeat1, - STATE(6245), 1, - sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [214192] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6180), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - STATE(4626), 1, - sym_block, - STATE(6246), 1, - sym_comment, - STATE(6265), 1, - aux_sym_shebang_repeat1, - [214211] = 5, + [212587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, - sym__entry_separator, - ACTIONS(10095), 1, - anon_sym_LBRACK2, - STATE(6247), 1, + ACTIONS(1492), 1, + anon_sym_DOT, + ACTIONS(10079), 1, + anon_sym_QMARK2, + STATE(6170), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(1490), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [214228] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6248), 1, - sym_comment, - ACTIONS(10097), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214241] = 4, + sym__entry_separator, + sym__table_head_separator, + [212605] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6249), 1, + ACTIONS(9895), 1, + aux_sym__immediate_decimal_token2, + STATE(6171), 1, sym_comment, - ACTIONS(1010), 2, - anon_sym_RBRACK, + ACTIONS(1872), 2, anon_sym_RBRACE, - ACTIONS(1012), 2, - anon_sym_DOT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, sym__entry_separator, - [214256] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6250), 1, - sym_comment, - ACTIONS(10099), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214269] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6251), 1, - sym_comment, - ACTIONS(10101), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214282] = 3, - ACTIONS(247), 1, + [212623] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6252), 1, + ACTIONS(9522), 1, + anon_sym_DASH2, + STATE(6172), 1, sym_comment, - ACTIONS(10103), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214295] = 3, - ACTIONS(247), 1, + ACTIONS(9520), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [212639] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6253), 1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(9971), 1, + anon_sym_use, + ACTIONS(9973), 1, + anon_sym_list, + ACTIONS(9975), 1, + anon_sym_hide, + ACTIONS(9977), 1, + anon_sym_new, + STATE(6173), 1, sym_comment, - ACTIONS(10105), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214308] = 3, - ACTIONS(247), 1, + [212661] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6254), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10081), 1, + anon_sym_SQUOTE, + STATE(6174), 1, sym_comment, - ACTIONS(10107), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214321] = 6, + STATE(6175), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7207), 1, + sym_expr_interpolated, + [212683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(2211), 1, - anon_sym_RBRACE, - ACTIONS(2213), 1, - sym__entry_separator, - STATE(6255), 1, + ACTIONS(10083), 1, + anon_sym_LPAREN, + ACTIONS(10086), 1, + sym_unescaped_interpolated_content, + ACTIONS(10089), 1, + anon_sym_SQUOTE, + STATE(7207), 1, + sym_expr_interpolated, + STATE(6175), 2, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - [214340] = 3, - ACTIONS(247), 1, + aux_sym__inter_single_quotes_repeat1, + [212703] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6256), 1, - sym_comment, - ACTIONS(10109), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214353] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6257), 1, + ACTIONS(9905), 1, + anon_sym_COLON, + ACTIONS(10091), 1, + anon_sym_EQ, + STATE(6176), 1, sym_comment, - ACTIONS(10111), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214366] = 5, - ACTIONS(3), 1, + STATE(7060), 1, + aux_sym_shebang_repeat1, + STATE(7718), 1, + sym_param_type, + [212725] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2242), 1, - anon_sym_PIPE, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(6258), 1, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(10093), 1, + anon_sym_EQ2, + STATE(6177), 1, sym_comment, - ACTIONS(2238), 2, - anon_sym_if, - anon_sym_EQ_GT, - [214383] = 6, + ACTIONS(5050), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [212743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1026), 1, - anon_sym_RBRACE, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym__unquoted_in_record_token4, - STATE(6259), 1, - sym_comment, - [214402] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6260), 1, + ACTIONS(10095), 1, + aux_sym__immediate_decimal_token2, + STATE(6178), 1, sym_comment, - ACTIONS(10113), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1919), 2, anon_sym_RBRACE, - [214415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1921), 2, anon_sym_LPAREN2, - ACTIONS(2215), 1, - anon_sym_RBRACE, - ACTIONS(2217), 1, sym__entry_separator, - STATE(6261), 1, - sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - [214434] = 6, - ACTIONS(247), 1, + [212761] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(10115), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(6262), 1, + STATE(6179), 1, sym_comment, - STATE(7810), 1, + STATE(7232), 1, + aux_sym_val_table_repeat1, + STATE(7435), 1, sym_val_list, - [214453] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6263), 1, - sym_comment, - ACTIONS(10117), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214466] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6264), 1, - sym_comment, - ACTIONS(10119), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214479] = 6, - ACTIONS(247), 1, + [212783] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(1761), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4672), 1, - sym_block, - STATE(6265), 1, + STATE(6180), 1, sym_comment, - [214498] = 6, - ACTIONS(247), 1, + STATE(7187), 1, + sym_val_list, + STATE(7239), 1, + aux_sym_val_table_repeat1, + [212805] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(4673), 1, - sym_block, - STATE(6266), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6181), 1, sym_comment, - STATE(6782), 1, - aux_sym_shebang_repeat1, - [214517] = 6, - ACTIONS(247), 1, + STATE(6184), 1, + sym__variable_name, + STATE(7010), 1, + sym__assignment_pattern_parenthesized, + [212827] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4632), 1, - sym_block, - STATE(6267), 1, + ACTIONS(5040), 1, + anon_sym_DASH2, + ACTIONS(10097), 1, + anon_sym_EQ2, + STATE(6182), 1, sym_comment, - [214536] = 6, - ACTIONS(3), 1, + ACTIONS(5038), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [212845] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8051), 1, - sym__entry_separator, - ACTIONS(8053), 1, - anon_sym_RBRACK, - STATE(6268), 1, + ACTIONS(10099), 1, + anon_sym_EQ2, + ACTIONS(10101), 1, + sym_short_flag_identifier, + STATE(6183), 1, sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - [214555] = 3, - ACTIONS(247), 1, + ACTIONS(5022), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [212863] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6269), 1, - sym_comment, - ACTIONS(10121), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214568] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10123), 1, - anon_sym_DQUOTE, - STATE(6270), 1, + ACTIONS(9905), 1, + anon_sym_COLON, + ACTIONS(10103), 1, + anon_sym_EQ, + STATE(6184), 1, sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214585] = 6, - ACTIONS(247), 1, + STATE(7060), 1, + aux_sym_shebang_repeat1, + STATE(7808), 1, + sym_param_type, + [212885] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4974), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(4976), 1, + ACTIONS(8674), 1, sym_identifier, - ACTIONS(10127), 1, - anon_sym_EQ2, - ACTIONS(10129), 1, - sym_short_flag_identifier, - STATE(6271), 1, + STATE(5414), 1, + sym_val_variable, + STATE(6077), 1, + sym__variable_name, + STATE(6185), 1, sym_comment, - [214604] = 5, - ACTIONS(247), 1, + STATE(6278), 1, + sym__assignment_pattern, + [212907] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1457), 1, - ts_builtin_sym_end, - STATE(277), 1, - aux_sym__block_body_repeat1, - STATE(6272), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6077), 1, + sym__variable_name, + STATE(6186), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [214621] = 5, - ACTIONS(3), 1, + STATE(6280), 1, + sym__assignment_pattern, + [212929] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(6273), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6077), 1, + sym__variable_name, + STATE(6187), 1, sym_comment, - ACTIONS(2246), 2, - anon_sym_if, - anon_sym_EQ_GT, - [214638] = 6, - ACTIONS(247), 1, + STATE(6281), 1, + sym__assignment_pattern, + [212951] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(9041), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - STATE(5398), 1, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, sym_val_variable, - STATE(6138), 1, + STATE(6077), 1, sym__variable_name, - STATE(6274), 1, + STATE(6188), 1, sym_comment, - [214657] = 5, - ACTIONS(3), 1, + STATE(6509), 1, + sym__assignment_pattern, + [212973] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2256), 1, - anon_sym_PIPE, - STATE(6275), 1, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(10105), 1, + anon_sym_EQ2, + STATE(6189), 1, sym_comment, - ACTIONS(2254), 2, - anon_sym_if, - anon_sym_EQ_GT, - [214674] = 3, - ACTIONS(247), 1, + ACTIONS(5050), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [212991] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6276), 1, - sym_comment, - ACTIONS(5685), 4, - ts_builtin_sym_end, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214687] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6277), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6190), 1, sym_comment, - ACTIONS(5652), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214700] = 4, - ACTIONS(3), 1, + STATE(7030), 1, + sym_val_list, + STATE(7274), 1, + aux_sym_val_table_repeat1, + [213013] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6278), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6191), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1016), 2, - anon_sym_DOT, - sym__entry_separator, - [214715] = 3, - ACTIONS(247), 1, + STATE(7101), 1, + sym_val_list, + STATE(7279), 1, + aux_sym_val_table_repeat1, + [213035] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6279), 1, - sym_comment, - ACTIONS(6321), 4, - ts_builtin_sym_end, + ACTIONS(8193), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214728] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6280), 1, + ACTIONS(8195), 1, + sym__space, + STATE(4884), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6157), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6192), 1, sym_comment, - ACTIONS(6323), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214741] = 3, - ACTIONS(247), 1, + STATE(7712), 1, + sym__flags_parenthesized, + [213057] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6281), 1, + ACTIONS(4977), 1, + anon_sym_DASH_DASH, + ACTIONS(10107), 1, + sym_long_flag_identifier, + ACTIONS(10109), 1, + anon_sym_EQ2, + STATE(6193), 1, sym_comment, - ACTIONS(10131), 4, + ACTIONS(4979), 2, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [214754] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6282), 1, - sym_comment, - ACTIONS(10133), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214767] = 3, - ACTIONS(247), 1, + anon_sym_DASH2, + [213077] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6283), 1, + ACTIONS(5040), 1, + anon_sym_DASH2, + ACTIONS(10111), 1, + anon_sym_EQ2, + STATE(6194), 1, sym_comment, - ACTIONS(10135), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214780] = 5, - ACTIONS(3), 1, + ACTIONS(5038), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [213095] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10137), 1, - anon_sym_DQUOTE, - STATE(6284), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6113), 1, + sym__variable_name, + STATE(6195), 1, sym_comment, - STATE(6295), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214797] = 3, - ACTIONS(247), 1, + STATE(6278), 1, + sym__assignment_pattern, + [213117] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6285), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6113), 1, + sym__variable_name, + STATE(6196), 1, sym_comment, - ACTIONS(10139), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214810] = 6, - ACTIONS(247), 1, + STATE(6280), 1, + sym__assignment_pattern, + [213139] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4968), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR, - ACTIONS(4970), 1, + ACTIONS(8674), 1, sym_identifier, - ACTIONS(10141), 1, - sym_long_flag_identifier, - ACTIONS(10143), 1, - anon_sym_EQ2, - STATE(6286), 1, + STATE(5414), 1, + sym_val_variable, + STATE(6113), 1, + sym__variable_name, + STATE(6197), 1, sym_comment, - [214829] = 3, - ACTIONS(247), 1, + STATE(6281), 1, + sym__assignment_pattern, + [213161] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6287), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6113), 1, + sym__variable_name, + STATE(6198), 1, sym_comment, - ACTIONS(10145), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214842] = 3, - ACTIONS(247), 1, + STATE(6509), 1, + sym__assignment_pattern, + [213183] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6288), 1, - sym_comment, - ACTIONS(10145), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214855] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9625), 1, - anon_sym_RPAREN, - STATE(6289), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6199), 1, sym_comment, - STATE(6778), 1, - aux_sym__block_body_repeat1, - ACTIONS(10147), 2, - sym__newline, - anon_sym_SEMI, - [214872] = 3, - ACTIONS(247), 1, + STATE(7269), 1, + sym_val_list, + STATE(7306), 1, + aux_sym_val_table_repeat1, + [213205] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6290), 1, - sym_comment, - ACTIONS(10149), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214885] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6291), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6200), 1, sym_comment, - ACTIONS(10151), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214898] = 3, - ACTIONS(247), 1, + STATE(7288), 1, + sym_val_list, + STATE(7308), 1, + aux_sym_val_table_repeat1, + [213227] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6292), 1, - sym_comment, - ACTIONS(10151), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214911] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(10077), 1, - aux_sym__immediate_decimal_token2, - STATE(6293), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6201), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [214928] = 3, - ACTIONS(247), 1, + STATE(6821), 1, + sym_val_list, + STATE(7315), 1, + aux_sym_val_table_repeat1, + [213249] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6294), 1, - sym_comment, - ACTIONS(10153), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214941] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10155), 1, - anon_sym_DQUOTE, - STATE(6295), 1, - sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214958] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6296), 1, - sym_comment, - ACTIONS(2268), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2270), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [214973] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3175), 1, - sym_parameter_parens, - STATE(3176), 1, - sym_parameter_bracks, - STATE(6297), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6202), 1, sym_comment, - [214992] = 6, - ACTIONS(247), 1, + STATE(6826), 1, + sym_val_list, + STATE(7318), 1, + aux_sym_val_table_repeat1, + [213271] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10161), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10163), 1, - anon_sym_LPAREN, - STATE(6187), 1, - sym_parameter_parens, - STATE(6188), 1, - sym_parameter_bracks, - STATE(6298), 1, - sym_comment, - [215011] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6299), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6203), 1, sym_comment, - ACTIONS(10165), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215024] = 3, - ACTIONS(247), 1, + STATE(6851), 1, + sym_val_list, + STATE(7324), 1, + aux_sym_val_table_repeat1, + [213293] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6300), 1, - sym_comment, - ACTIONS(10167), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215037] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10169), 1, - anon_sym_LPAREN, - STATE(6301), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6204), 1, sym_comment, - ACTIONS(10171), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [215052] = 4, - ACTIONS(247), 1, + STATE(6858), 1, + sym_val_list, + STATE(7327), 1, + aux_sym_val_table_repeat1, + [213315] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - STATE(6302), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6205), 1, sym_comment, - ACTIONS(1767), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215067] = 5, - ACTIONS(247), 1, + STATE(6875), 1, + sym_val_list, + STATE(7334), 1, + aux_sym_val_table_repeat1, + [213337] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(10173), 1, - anon_sym_DOT_DOT2, - STATE(6303), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6206), 1, sym_comment, - ACTIONS(10175), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215084] = 6, - ACTIONS(3), 1, + STATE(6881), 1, + sym_val_list, + STATE(7336), 1, + aux_sym_val_table_repeat1, + [213359] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10179), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6304), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6207), 1, sym_comment, - [215103] = 4, - ACTIONS(247), 1, + STATE(6899), 1, + sym_val_list, + STATE(7342), 1, + aux_sym_val_table_repeat1, + [213381] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(6305), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6208), 1, sym_comment, - ACTIONS(2232), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215118] = 3, - ACTIONS(247), 1, + STATE(6903), 1, + sym_val_list, + STATE(7344), 1, + aux_sym_val_table_repeat1, + [213403] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6306), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6209), 1, sym_comment, - ACTIONS(10181), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [215131] = 4, - ACTIONS(247), 1, + STATE(6924), 1, + sym_val_list, + STATE(7351), 1, + aux_sym_val_table_repeat1, + [213425] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(6307), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6210), 1, sym_comment, - ACTIONS(1741), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215146] = 4, - ACTIONS(247), 1, + STATE(6930), 1, + sym_val_list, + STATE(7353), 1, + aux_sym_val_table_repeat1, + [213447] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - STATE(6308), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6211), 1, sym_comment, - ACTIONS(1810), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215161] = 5, - ACTIONS(247), 1, + STATE(6947), 1, + sym_val_list, + STATE(7357), 1, + aux_sym_val_table_repeat1, + [213469] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(10183), 1, - aux_sym__immediate_decimal_token2, - STATE(6309), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6212), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [215178] = 5, - ACTIONS(247), 1, + STATE(6952), 1, + sym_val_list, + STATE(7360), 1, + aux_sym_val_table_repeat1, + [213491] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6653), 1, - anon_sym_DOT_DOT2, - ACTIONS(10185), 1, + ACTIONS(2000), 1, anon_sym_LBRACE, - STATE(6310), 1, - sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215195] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10187), 1, - anon_sym_LPAREN, - STATE(6311), 1, + ACTIONS(8954), 1, + anon_sym_DOT, + STATE(1909), 1, + sym_path, + STATE(2144), 1, + sym_cell_path, + STATE(5506), 1, + aux_sym_cell_path_repeat1, + STATE(6213), 1, sym_comment, - ACTIONS(10189), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [215210] = 6, - ACTIONS(3), 1, + [213513] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10191), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6312), 1, - sym_comment, - [215229] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(6313), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6214), 1, sym_comment, - ACTIONS(1787), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215244] = 6, - ACTIONS(247), 1, + STATE(6970), 1, + sym_val_list, + STATE(7365), 1, + aux_sym_val_table_repeat1, + [213535] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3185), 1, - sym_parameter_parens, - STATE(3187), 1, - sym_parameter_bracks, - STATE(6314), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6215), 1, sym_comment, - [215263] = 6, - ACTIONS(247), 1, + STATE(6976), 1, + sym_val_list, + STATE(7367), 1, + aux_sym_val_table_repeat1, + [213557] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_use, - ACTIONS(9929), 1, - anon_sym_list, - ACTIONS(9931), 1, - anon_sym_hide, - ACTIONS(9933), 1, - anon_sym_new, - STATE(6315), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6216), 1, sym_comment, - [215282] = 4, - ACTIONS(247), 1, + STATE(6996), 1, + sym_val_list, + STATE(7373), 1, + aux_sym_val_table_repeat1, + [213579] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1841), 1, - aux_sym_unquoted_token2, - STATE(6316), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6217), 1, sym_comment, - ACTIONS(1843), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215297] = 5, - ACTIONS(3), 1, + STATE(7002), 1, + sym_val_list, + STATE(7376), 1, + aux_sym_val_table_repeat1, + [213601] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10193), 1, - anon_sym_DQUOTE, - STATE(6317), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6218), 1, sym_comment, - STATE(6357), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [215314] = 5, - ACTIONS(247), 1, + STATE(6846), 1, + sym_val_list, + STATE(6874), 1, + aux_sym_val_table_repeat1, + [213623] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(10195), 1, - anon_sym_DOT_DOT2, - STATE(6318), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6219), 1, sym_comment, - ACTIONS(10197), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215331] = 4, - ACTIONS(3), 1, + STATE(7018), 1, + sym_val_list, + STATE(7381), 1, + aux_sym_val_table_repeat1, + [213645] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DOT, - STATE(6319), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6220), 1, sym_comment, - ACTIONS(1006), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [215346] = 4, - ACTIONS(3), 1, + STATE(7024), 1, + sym_val_list, + STATE(7383), 1, + aux_sym_val_table_repeat1, + [213667] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10199), 1, - anon_sym_LPAREN, - STATE(6320), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6221), 1, sym_comment, - ACTIONS(10201), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [215361] = 6, - ACTIONS(3), 1, + STATE(7041), 1, + sym_val_list, + STATE(7389), 1, + aux_sym_val_table_repeat1, + [213689] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10203), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6321), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6222), 1, sym_comment, - [215380] = 6, - ACTIONS(3), 1, + STATE(7047), 1, + sym_val_list, + STATE(7391), 1, + aux_sym_val_table_repeat1, + [213711] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10205), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6322), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6223), 1, sym_comment, - [215399] = 6, - ACTIONS(3), 1, + STATE(7056), 1, + sym_val_list, + STATE(7395), 1, + aux_sym_val_table_repeat1, + [213733] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10207), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6323), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6224), 1, sym_comment, - [215418] = 3, - ACTIONS(247), 1, + STATE(7061), 1, + sym_val_list, + STATE(7398), 1, + aux_sym_val_table_repeat1, + [213755] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6324), 1, - sym_comment, - ACTIONS(10209), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215431] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9518), 1, - anon_sym_RPAREN, - STATE(6325), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6225), 1, sym_comment, - STATE(6778), 1, - aux_sym__block_body_repeat1, - ACTIONS(10147), 2, - sym__newline, - anon_sym_SEMI, - [215448] = 3, - ACTIONS(247), 1, + STATE(7078), 1, + sym_val_list, + STATE(7403), 1, + aux_sym_val_table_repeat1, + [213777] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6326), 1, - sym_comment, - ACTIONS(10211), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215461] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6327), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6226), 1, sym_comment, - ACTIONS(10211), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215474] = 3, - ACTIONS(247), 1, + STATE(7082), 1, + sym_val_list, + STATE(7405), 1, + aux_sym_val_table_repeat1, + [213799] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6328), 1, - sym_comment, - ACTIONS(10213), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215487] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6329), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6227), 1, sym_comment, - ACTIONS(10213), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215500] = 3, - ACTIONS(247), 1, + STATE(7091), 1, + sym_val_list, + STATE(7409), 1, + aux_sym_val_table_repeat1, + [213821] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6330), 1, - sym_comment, - ACTIONS(10215), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215513] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_RBRACK, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2242), 1, - sym__entry_separator, - ACTIONS(2244), 1, - aux_sym__unquoted_in_list_token4, - STATE(6331), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6228), 1, sym_comment, - [215532] = 6, - ACTIONS(247), 1, + STATE(7096), 1, + sym_val_list, + STATE(7411), 1, + aux_sym_val_table_repeat1, + [213843] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(5801), 1, - sym_parameter_parens, - STATE(5803), 1, - sym_parameter_bracks, - STATE(6332), 1, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6229), 1, sym_comment, - [215551] = 3, - ACTIONS(247), 1, + STATE(7106), 1, + sym_val_list, + STATE(7416), 1, + aux_sym_val_table_repeat1, + [213865] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6333), 1, - sym_comment, - ACTIONS(6281), 4, - ts_builtin_sym_end, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [215564] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6334), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6230), 1, sym_comment, - ACTIONS(6327), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [215577] = 3, - ACTIONS(247), 1, + STATE(7111), 1, + sym_val_list, + STATE(7418), 1, + aux_sym_val_table_repeat1, + [213887] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6335), 1, - sym_comment, - ACTIONS(10217), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215590] = 4, - ACTIONS(3), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6231), 1, + sym_comment, + STATE(7119), 1, + sym_val_list, + STATE(7422), 1, + aux_sym_val_table_repeat1, + [213909] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6336), 1, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6232), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215605] = 3, - ACTIONS(247), 1, + STATE(7125), 1, + sym_val_list, + STATE(7424), 1, + aux_sym_val_table_repeat1, + [213931] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6337), 1, + ACTIONS(9935), 1, + anon_sym_LPAREN, + ACTIONS(9937), 1, + sym_unescaped_interpolated_content, + ACTIONS(10113), 1, + anon_sym_SQUOTE, + STATE(6174), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6233), 1, sym_comment, - ACTIONS(10217), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215618] = 3, - ACTIONS(247), 1, + STATE(7207), 1, + sym_expr_interpolated, + [213953] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6338), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6176), 1, + sym__variable_name, + STATE(6234), 1, sym_comment, - ACTIONS(10211), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215631] = 3, - ACTIONS(247), 1, + STATE(7245), 1, + sym__assignment_pattern_parenthesized, + [213975] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6339), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6176), 1, + sym__variable_name, + STATE(6235), 1, sym_comment, - ACTIONS(10211), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215644] = 3, - ACTIONS(247), 1, + STATE(7277), 1, + sym__assignment_pattern_parenthesized, + [213997] = 7, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6340), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6176), 1, + sym__variable_name, + STATE(6236), 1, sym_comment, - ACTIONS(10219), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215657] = 6, - ACTIONS(3), 1, + STATE(7282), 1, + sym__assignment_pattern_parenthesized, + [214019] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1026), 1, - anon_sym_RBRACK, - ACTIONS(1028), 1, - sym__entry_separator, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - ACTIONS(2228), 1, - aux_sym__unquoted_in_list_token4, - STATE(6341), 1, + ACTIONS(9961), 1, + anon_sym_DASH_DASH, + ACTIONS(9963), 1, + anon_sym_DASH2, + ACTIONS(10115), 1, + anon_sym_in2, + STATE(6237), 1, sym_comment, - [215676] = 6, - ACTIONS(3), 1, + STATE(8115), 1, + sym_short_flag, + STATE(8116), 1, + sym_long_flag, + [214041] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10221), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6342), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR, + ACTIONS(8674), 1, + sym_identifier, + STATE(5414), 1, + sym_val_variable, + STATE(6176), 1, + sym__variable_name, + STATE(6238), 1, sym_comment, - [215695] = 6, - ACTIONS(3), 1, + STATE(7010), 1, + sym__assignment_pattern_parenthesized, + [214063] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6343), 1, + ACTIONS(9961), 1, + anon_sym_DASH_DASH, + ACTIONS(9963), 1, + anon_sym_DASH2, + ACTIONS(10117), 1, + anon_sym_in2, + STATE(6239), 1, sym_comment, - [215714] = 6, - ACTIONS(3), 1, + STATE(8120), 1, + sym_short_flag, + STATE(8121), 1, + sym_long_flag, + [214085] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10225), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6344), 1, + ACTIONS(9961), 1, + anon_sym_DASH_DASH, + ACTIONS(9963), 1, + anon_sym_DASH2, + ACTIONS(10119), 1, + anon_sym_in2, + STATE(6240), 1, sym_comment, - [215733] = 3, - ACTIONS(247), 1, + STATE(7941), 1, + sym_short_flag, + STATE(8002), 1, + sym_long_flag, + [214107] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6345), 1, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(6241), 1, sym_comment, - ACTIONS(10227), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215746] = 4, - ACTIONS(247), 1, + STATE(7596), 1, + sym__immediate_decimal, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214127] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(1872), 1, aux_sym_unquoted_token2, - STATE(6346), 1, + ACTIONS(10121), 1, + anon_sym_DOT, + ACTIONS(10123), 1, + aux_sym__immediate_decimal_token2, + STATE(6242), 1, sym_comment, - ACTIONS(2262), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215761] = 6, - ACTIONS(3), 1, + ACTIONS(1874), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [214147] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10229), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6347), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(10125), 1, + anon_sym_DOT_DOT2, + STATE(6243), 1, sym_comment, - [215780] = 6, - ACTIONS(247), 1, + ACTIONS(10127), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214167] = 7, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1495), 1, - anon_sym_SEMI, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - STATE(252), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6348), 1, - sym_comment, - STATE(6852), 1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(1760), 1, aux_sym_shebang_repeat1, - [215799] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6349), 1, + STATE(6244), 1, sym_comment, - ACTIONS(10231), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215812] = 4, + STATE(7294), 1, + sym_val_list, + STATE(7297), 1, + aux_sym_val_table_repeat1, + [214189] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6350), 1, + ACTIONS(10129), 1, + anon_sym_DQUOTE, + STATE(6245), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215827] = 3, - ACTIONS(247), 1, + STATE(6477), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [214206] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6351), 1, + STATE(6246), 1, sym_comment, - ACTIONS(10233), 4, + ACTIONS(10133), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215840] = 3, - ACTIONS(247), 1, + [214219] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6352), 1, + STATE(6247), 1, sym_comment, - ACTIONS(10235), 4, + ACTIONS(10135), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215853] = 4, + [214232] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6353), 1, - sym_comment, - ACTIONS(1739), 2, + ACTIONS(2369), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 2, + ACTIONS(2371), 1, anon_sym_LPAREN2, + ACTIONS(2373), 1, sym__entry_separator, - [215868] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT, - STATE(6354), 1, + ACTIONS(2375), 1, + aux_sym__unquoted_in_record_token2, + STATE(6248), 1, sym_comment, - ACTIONS(1010), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [215883] = 4, - ACTIONS(3), 1, + [214251] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DOT, - STATE(6355), 1, + STATE(6249), 1, sym_comment, - ACTIONS(1014), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [215898] = 4, + ACTIONS(10137), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [214264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6356), 1, + STATE(6250), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(2407), 2, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 2, + aux_sym__unquoted_in_record_token4, + ACTIONS(2409), 2, anon_sym_LPAREN2, sym__entry_separator, - [215913] = 5, + [214279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10237), 1, + ACTIONS(10139), 1, anon_sym_DQUOTE, - STATE(6357), 1, + STATE(6251), 1, sym_comment, - STATE(6814), 1, + STATE(6262), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [215930] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6358), 1, - sym_comment, - ACTIONS(1841), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1843), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215945] = 6, + [214296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2258), 1, - anon_sym_RBRACK, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - ACTIONS(2262), 1, - sym__entry_separator, - STATE(6359), 1, + ACTIONS(10141), 1, + anon_sym_LPAREN, + STATE(6252), 1, sym_comment, - [215964] = 3, - ACTIONS(247), 1, + ACTIONS(10143), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [214311] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6360), 1, + STATE(6253), 1, sym_comment, - ACTIONS(10239), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215977] = 3, - ACTIONS(247), 1, + ACTIONS(8095), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [214324] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6361), 1, + ACTIONS(1258), 1, + ts_builtin_sym_end, + STATE(199), 1, + aux_sym__block_body_repeat1, + STATE(6254), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215990] = 3, - ACTIONS(247), 1, + [214341] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6362), 1, + STATE(6255), 1, sym_comment, - ACTIONS(10241), 4, + ACTIONS(10145), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216003] = 3, - ACTIONS(247), 1, + [214354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(6256), 1, sym_comment, - ACTIONS(10241), 4, + ACTIONS(10147), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216016] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_DASH2, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, - STATE(6364), 1, - sym_comment, - ACTIONS(1719), 2, - sym_identifier, - anon_sym_DASH_DASH, - [216033] = 3, - ACTIONS(247), 1, + [214367] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6365), 1, + STATE(6257), 1, sym_comment, - ACTIONS(10243), 4, + ACTIONS(10149), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216046] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6366), 1, - sym_comment, - ACTIONS(6325), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [216059] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6367), 1, - sym_comment, - ACTIONS(6215), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [216072] = 3, - ACTIONS(247), 1, + [214380] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6368), 1, + ACTIONS(1538), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, + sym__entry_separator, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym__unquoted_in_list_token4, + STATE(6258), 1, sym_comment, - ACTIONS(10239), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216085] = 3, - ACTIONS(247), 1, + [214399] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6369), 1, - sym_comment, - ACTIONS(10245), 4, + ACTIONS(8674), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216098] = 3, - ACTIONS(247), 1, + ACTIONS(9014), 1, + anon_sym_DOLLAR, + STATE(5414), 1, + sym_val_variable, + STATE(6240), 1, + sym__variable_name, + STATE(6259), 1, + sym_comment, + [214418] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6370), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(10151), 1, + anon_sym_DOT_DOT2, + STATE(6260), 1, sym_comment, - ACTIONS(10239), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216111] = 3, - ACTIONS(247), 1, + ACTIONS(10153), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6371), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10157), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6261), 1, sym_comment, - ACTIONS(10247), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216124] = 5, + [214454] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10249), 1, + ACTIONS(10159), 1, anon_sym_DQUOTE, - STATE(6372), 1, + STATE(6262), 1, sym_comment, - STATE(6376), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [216141] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6373), 1, - sym_comment, - ACTIONS(10251), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216154] = 3, - ACTIONS(247), 1, + [214471] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6374), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10161), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6263), 1, sym_comment, - ACTIONS(10253), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216167] = 3, - ACTIONS(247), 1, + [214490] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6375), 1, + STATE(6264), 1, sym_comment, - ACTIONS(10255), 4, + ACTIONS(10149), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216180] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10257), 1, - anon_sym_DQUOTE, - STATE(6376), 1, - sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216197] = 6, + [214503] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 1, - anon_sym_RBRACE, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(6530), 1, sym__entry_separator, - STATE(6377), 1, - sym_comment, - [216216] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(5970), 1, - sym_parameter_parens, - STATE(5971), 1, - sym_parameter_bracks, - STATE(6378), 1, + ACTIONS(10163), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6265), 1, sym_comment, - [216235] = 6, + [214522] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10259), 1, + ACTIONS(10165), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6379), 1, + STATE(6266), 1, sym_comment, - [216254] = 6, + [214541] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10261), 1, + ACTIONS(10167), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6380), 1, + STATE(6267), 1, sym_comment, - [216273] = 6, + [214560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10263), 1, + ACTIONS(10169), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6381), 1, + STATE(6268), 1, sym_comment, - [216292] = 6, + [214579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10265), 1, + ACTIONS(10171), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6382), 1, + STATE(6269), 1, sym_comment, - [216311] = 6, + [214598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10267), 1, + ACTIONS(10173), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6383), 1, + STATE(6270), 1, sym_comment, - [216330] = 6, + [214617] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10269), 1, + ACTIONS(10175), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6384), 1, + STATE(6271), 1, sym_comment, - [216349] = 6, + [214636] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10271), 1, + ACTIONS(10177), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6385), 1, + STATE(6272), 1, sym_comment, - [216368] = 6, + [214655] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10273), 1, + ACTIONS(10179), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6386), 1, + STATE(6273), 1, sym_comment, - [216387] = 3, - ACTIONS(247), 1, + [214674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6387), 1, + STATE(6274), 1, sym_comment, - ACTIONS(10275), 4, + ACTIONS(5703), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216400] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [214687] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6388), 1, + STATE(6275), 1, sym_comment, - ACTIONS(10275), 4, + ACTIONS(5715), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216413] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [214700] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6389), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + STATE(6276), 1, sym_comment, - ACTIONS(10277), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216426] = 3, - ACTIONS(247), 1, + ACTIONS(1874), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214715] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6390), 1, + ACTIONS(9656), 1, + anon_sym_RPAREN, + STATE(6277), 1, sym_comment, - ACTIONS(10277), 4, + STATE(6734), 1, + aux_sym__block_body_repeat1, + ACTIONS(10181), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216439] = 3, - ACTIONS(247), 1, + [214732] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6391), 1, + STATE(6278), 1, sym_comment, - ACTIONS(10277), 4, + ACTIONS(10183), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216452] = 3, - ACTIONS(247), 1, + [214745] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6392), 1, + ACTIONS(1520), 1, + anon_sym_DOT, + STATE(6279), 1, + sym_comment, + ACTIONS(1518), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [214760] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6280), 1, sym_comment, - ACTIONS(10277), 4, + ACTIONS(10185), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216465] = 3, - ACTIONS(247), 1, + [214773] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6393), 1, + STATE(6281), 1, sym_comment, - ACTIONS(10279), 4, + ACTIONS(10187), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216478] = 6, - ACTIONS(3), 1, + [214786] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym__entry_separator, - ACTIONS(7946), 1, - anon_sym_RBRACK, - STATE(6394), 1, + ACTIONS(4977), 1, + anon_sym_DOLLAR, + ACTIONS(4979), 1, + sym_identifier, + ACTIONS(10189), 1, + sym_long_flag_identifier, + ACTIONS(10191), 1, + anon_sym_EQ2, + STATE(6282), 1, sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - [216497] = 6, + [214805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10281), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6395), 1, - sym_comment, - [216516] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, - STATE(6396), 1, + ACTIONS(1524), 1, + anon_sym_DOT, + STATE(6283), 1, sym_comment, - ACTIONS(2276), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [216531] = 3, - ACTIONS(247), 1, + ACTIONS(1522), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [214820] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6397), 1, + STATE(6284), 1, sym_comment, - ACTIONS(10283), 4, + ACTIONS(10193), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216544] = 3, - ACTIONS(247), 1, + [214833] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6398), 1, + STATE(6285), 1, sym_comment, - ACTIONS(10285), 4, + ACTIONS(10195), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216557] = 3, - ACTIONS(247), 1, + [214846] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6399), 1, + STATE(6286), 1, sym_comment, - ACTIONS(10287), 4, + ACTIONS(10197), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216570] = 3, - ACTIONS(247), 1, + [214859] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6400), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(6287), 1, sym_comment, - ACTIONS(10287), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216583] = 3, - ACTIONS(247), 1, + ACTIONS(1892), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214874] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6401), 1, + STATE(6288), 1, sym_comment, - ACTIONS(10289), 4, + ACTIONS(10199), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216596] = 5, + [214887] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6289), 1, + sym_comment, + ACTIONS(10201), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214900] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10291), 1, + ACTIONS(10203), 1, anon_sym_DQUOTE, - STATE(6402), 1, + STATE(6290), 1, sym_comment, - STATE(6406), 1, + STATE(6294), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [216613] = 3, - ACTIONS(247), 1, + [214917] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6403), 1, + STATE(6291), 1, sym_comment, - ACTIONS(10293), 4, + ACTIONS(10205), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216626] = 3, - ACTIONS(247), 1, + [214930] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6404), 1, + STATE(6292), 1, sym_comment, - ACTIONS(10295), 4, + ACTIONS(6373), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216639] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [214943] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6405), 1, + STATE(6293), 1, sym_comment, - ACTIONS(10297), 4, + ACTIONS(10205), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216652] = 5, + [214956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10299), 1, + ACTIONS(10207), 1, anon_sym_DQUOTE, - STATE(6406), 1, + STATE(6294), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [216669] = 6, - ACTIONS(247), 1, + [214973] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6295), 1, + sym_comment, + ACTIONS(10205), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214986] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + STATE(6296), 1, + sym_comment, + ACTIONS(6375), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(6180), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4634), 1, - sym_block, - STATE(6267), 1, - aux_sym_shebang_repeat1, - STATE(6407), 1, + [214999] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6297), 1, sym_comment, - [216688] = 4, - ACTIONS(3), 1, + ACTIONS(10209), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215012] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6408), 1, + STATE(6298), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216703] = 6, + ACTIONS(5679), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [215025] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6299), 1, + sym_comment, + ACTIONS(10147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215038] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6300), 1, + sym_comment, + ACTIONS(10205), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215051] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6301), 1, + sym_comment, + ACTIONS(10205), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10301), 1, + ACTIONS(10211), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6409), 1, + STATE(6302), 1, sym_comment, - [216722] = 6, + [215083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10303), 1, + ACTIONS(10213), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6410), 1, + STATE(6303), 1, sym_comment, - [216741] = 6, + [215102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10305), 1, + ACTIONS(10215), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6411), 1, + STATE(6304), 1, sym_comment, - [216760] = 6, + [215121] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10307), 1, + ACTIONS(10217), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6412), 1, + STATE(6305), 1, sym_comment, - [216779] = 6, + [215140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10309), 1, + ACTIONS(10219), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6413), 1, + STATE(6306), 1, sym_comment, - [216798] = 6, + [215159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10311), 1, + ACTIONS(10221), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6414), 1, + STATE(6307), 1, sym_comment, - [216817] = 6, + [215178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10313), 1, + ACTIONS(10223), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6415), 1, + STATE(6308), 1, sym_comment, - [216836] = 6, + [215197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10315), 1, + ACTIONS(10225), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6416), 1, + STATE(6309), 1, sym_comment, - [216855] = 6, - ACTIONS(3), 1, + [215216] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_RBRACE, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2242), 1, - sym__entry_separator, - ACTIONS(2244), 1, - aux_sym__unquoted_in_record_token4, - STATE(6417), 1, + STATE(6310), 1, sym_comment, - [216874] = 6, - ACTIONS(3), 1, + ACTIONS(10201), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215229] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4968), 1, - sym__space, - ACTIONS(4970), 1, + STATE(6311), 1, + sym_comment, + ACTIONS(5683), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(10317), 1, - sym_long_flag_identifier, - ACTIONS(10319), 1, - anon_sym_EQ2, - STATE(6418), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [215242] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + STATE(6312), 1, sym_comment, - [216893] = 3, - ACTIONS(247), 1, + ACTIONS(1921), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215257] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6313), 1, sym_comment, - ACTIONS(10321), 4, + ACTIONS(10227), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216906] = 5, + [215270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10323), 1, + ACTIONS(10229), 1, anon_sym_DQUOTE, - STATE(6420), 1, + STATE(6314), 1, sym_comment, - STATE(6422), 1, + STATE(6320), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [216923] = 5, - ACTIONS(247), 1, + [215287] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6315), 1, + sym_comment, + ACTIONS(10205), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215300] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6316), 1, + sym_comment, + ACTIONS(10147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215313] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(4915), 1, aux_sym_unquoted_token2, - ACTIONS(10325), 1, - aux_sym__immediate_decimal_token2, - STATE(6421), 1, + STATE(6317), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [216940] = 5, + ACTIONS(1800), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215328] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6318), 1, + sym_comment, + ACTIONS(10231), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215341] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6319), 1, + sym_comment, + ACTIONS(10233), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10327), 1, + ACTIONS(10235), 1, anon_sym_DQUOTE, - STATE(6422), 1, + STATE(6320), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [216957] = 3, - ACTIONS(247), 1, + [215371] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6423), 1, + STATE(6321), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10205), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216970] = 3, - ACTIONS(247), 1, + [215384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6424), 1, + STATE(6322), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10237), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216983] = 6, - ACTIONS(247), 1, + [215397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(4860), 1, - sym_block, - STATE(4861), 1, - sym_val_closure, - STATE(4885), 1, - sym__blosure, - STATE(6425), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6323), 1, sym_comment, - [217002] = 4, - ACTIONS(247), 1, + [215416] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, + ACTIONS(1968), 1, aux_sym_unquoted_token2, - STATE(6426), 1, + STATE(6324), 1, sym_comment, - ACTIONS(1719), 3, + ACTIONS(1970), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [217017] = 6, + [215431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10331), 1, + ACTIONS(10241), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6427), 1, + STATE(6325), 1, sym_comment, - [217036] = 6, + [215450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(10243), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6428), 1, + STATE(6326), 1, sym_comment, - [217055] = 6, + [215469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10335), 1, + ACTIONS(10245), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6429), 1, + STATE(6327), 1, sym_comment, - [217074] = 6, + [215488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10337), 1, + ACTIONS(10247), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6430), 1, + STATE(6328), 1, sym_comment, - [217093] = 6, + [215507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10339), 1, + ACTIONS(10249), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6431), 1, + STATE(6329), 1, sym_comment, - [217112] = 6, + [215526] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10341), 1, + ACTIONS(10251), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6432), 1, + STATE(6330), 1, sym_comment, - [217131] = 6, + [215545] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10343), 1, + ACTIONS(10253), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6433), 1, + STATE(6331), 1, sym_comment, - [217150] = 6, + [215564] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10345), 1, + ACTIONS(10255), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6434), 1, + STATE(6332), 1, sym_comment, - [217169] = 3, - ACTIONS(247), 1, + [215583] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6435), 1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(6333), 1, + sym_comment, + ACTIONS(2335), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215598] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6334), 1, + sym_comment, + ACTIONS(10257), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [215611] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10259), 1, + anon_sym_DQUOTE, + STATE(6335), 1, + sym_comment, + STATE(6341), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [215628] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6336), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10205), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217182] = 4, + [215641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - STATE(6436), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(2391), 1, + anon_sym_RBRACE, + ACTIONS(2393), 1, + sym__entry_separator, + STATE(6337), 1, sym_comment, - ACTIONS(1026), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [217197] = 3, - ACTIONS(247), 1, + STATE(7875), 1, + sym__expr_parenthesized_immediate, + [215660] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6437), 1, + STATE(6338), 1, sym_comment, - ACTIONS(10347), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217210] = 6, + ACTIONS(10261), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215673] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4974), 1, - sym__space, - ACTIONS(4976), 1, - sym__newline, - ACTIONS(10349), 1, - anon_sym_EQ2, - ACTIONS(10351), 1, - sym_short_flag_identifier, - STATE(6438), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(2395), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + sym__entry_separator, + STATE(6339), 1, + sym_comment, + STATE(7875), 1, + sym__expr_parenthesized_immediate, + [215692] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6340), 1, sym_comment, - [217229] = 5, + ACTIONS(5711), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [215705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10353), 1, + ACTIONS(10263), 1, anon_sym_DQUOTE, - STATE(6439), 1, + STATE(6341), 1, sym_comment, - STATE(6441), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [217246] = 3, - ACTIONS(247), 1, + [215722] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6440), 1, + STATE(6342), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10265), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217259] = 5, - ACTIONS(3), 1, + [215735] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10355), 1, - anon_sym_DQUOTE, - STATE(6441), 1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(6343), 1, sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217276] = 3, - ACTIONS(247), 1, + ACTIONS(1958), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215750] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6442), 1, + STATE(6344), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10267), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217289] = 3, - ACTIONS(247), 1, + [215763] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6443), 1, + STATE(6345), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10269), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217302] = 3, - ACTIONS(247), 1, + [215776] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6444), 1, + STATE(6346), 1, sym_comment, - ACTIONS(10357), 4, + ACTIONS(10271), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217315] = 6, + [215789] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10359), 1, + ACTIONS(10273), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6347), 1, sym_comment, - [217334] = 6, + [215808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10361), 1, + ACTIONS(10275), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6348), 1, sym_comment, - [217353] = 6, + [215827] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10363), 1, + ACTIONS(10277), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6349), 1, sym_comment, - [217372] = 6, + [215846] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10365), 1, + ACTIONS(10279), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6350), 1, sym_comment, - [217391] = 6, + [215865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10281), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6351), 1, sym_comment, - [217410] = 6, + [215884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10369), 1, + ACTIONS(10283), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6352), 1, sym_comment, - [217429] = 6, + [215903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10371), 1, + ACTIONS(10285), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, + STATE(6353), 1, sym_comment, - [217448] = 6, + [215922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10373), 1, + ACTIONS(10287), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6452), 1, + STATE(6354), 1, sym_comment, - [217467] = 3, - ACTIONS(247), 1, + [215941] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6453), 1, + STATE(6355), 1, sym_comment, - ACTIONS(10357), 4, + ACTIONS(10271), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217480] = 3, - ACTIONS(247), 1, + [215954] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6454), 1, + STATE(6356), 1, + sym_comment, + ACTIONS(10289), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215967] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6357), 1, sym_comment, - ACTIONS(10375), 4, + ACTIONS(10291), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217493] = 3, - ACTIONS(247), 1, + [215980] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6455), 1, + STATE(6358), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10293), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217506] = 5, + [215993] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10377), 1, + ACTIONS(10295), 1, anon_sym_DQUOTE, - STATE(6456), 1, + STATE(6359), 1, sym_comment, - STATE(6461), 1, + STATE(6364), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [217523] = 3, - ACTIONS(247), 1, + [216010] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6457), 1, + STATE(6360), 1, sym_comment, - ACTIONS(5681), 4, - ts_builtin_sym_end, + ACTIONS(10145), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [217536] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216023] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6458), 1, + STATE(6361), 1, sym_comment, - ACTIONS(10329), 4, + ACTIONS(10289), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217549] = 3, - ACTIONS(247), 1, + [216036] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6459), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10357), 4, + ACTIONS(10297), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217562] = 3, - ACTIONS(247), 1, + [216049] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6460), 1, + STATE(6363), 1, sym_comment, - ACTIONS(10357), 4, + ACTIONS(10289), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217575] = 5, + [216062] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10379), 1, + ACTIONS(10299), 1, anon_sym_DQUOTE, - STATE(6461), 1, + STATE(6364), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [217592] = 3, - ACTIONS(247), 1, + [216079] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6462), 1, + STATE(6365), 1, sym_comment, - ACTIONS(10381), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217605] = 3, - ACTIONS(247), 1, + ACTIONS(2407), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2409), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216094] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6463), 1, + STATE(6366), 1, sym_comment, - ACTIONS(10381), 4, + ACTIONS(10289), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217618] = 3, - ACTIONS(247), 1, + [216107] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6464), 1, + STATE(6367), 1, sym_comment, - ACTIONS(10383), 4, + ACTIONS(10265), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217631] = 3, - ACTIONS(247), 1, + [216120] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6465), 1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(10301), 1, + anon_sym_DOT_DOT2, + STATE(6368), 1, sym_comment, - ACTIONS(10383), 4, + ACTIONS(10303), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216137] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6369), 1, + sym_comment, + ACTIONS(10305), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217644] = 6, - ACTIONS(3), 1, + [216150] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, - sym__entry_separator, - ACTIONS(2252), 1, - aux_sym__unquoted_in_record_token4, - STATE(6466), 1, + ACTIONS(1321), 1, + anon_sym_SEMI, + ACTIONS(3965), 1, + sym__newline, + STATE(276), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6370), 1, sym_comment, - [217663] = 6, + STATE(7385), 1, + aux_sym_shebang_repeat1, + [216169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10385), 1, + ACTIONS(10307), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6467), 1, + STATE(6371), 1, sym_comment, - [217682] = 6, + [216188] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10387), 1, + ACTIONS(10309), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6468), 1, + STATE(6372), 1, sym_comment, - [217701] = 6, + [216207] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10389), 1, + ACTIONS(10311), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6469), 1, + STATE(6373), 1, sym_comment, - [217720] = 6, + [216226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10391), 1, + ACTIONS(10313), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6470), 1, + STATE(6374), 1, sym_comment, - [217739] = 6, + [216245] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10393), 1, + ACTIONS(10315), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6471), 1, + STATE(6375), 1, sym_comment, - [217758] = 6, + [216264] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10395), 1, + ACTIONS(10317), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6472), 1, + STATE(6376), 1, sym_comment, - [217777] = 6, + [216283] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10397), 1, + ACTIONS(10319), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6377), 1, sym_comment, - [217796] = 6, + [216302] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10399), 1, + ACTIONS(10321), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6474), 1, + STATE(6378), 1, sym_comment, - [217815] = 6, + [216321] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10323), 1, + anon_sym_DQUOTE, + STATE(6379), 1, + sym_comment, + STATE(6665), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(1728), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1940), 1, + anon_sym_RBRACK, + ACTIONS(1942), 1, anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2254), 1, - anon_sym_RBRACE, - ACTIONS(2256), 1, + ACTIONS(1948), 1, sym__entry_separator, - STATE(6475), 1, + STATE(6380), 1, sym_comment, - [217834] = 3, - ACTIONS(247), 1, + [216357] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6476), 1, + STATE(6381), 1, sym_comment, - ACTIONS(10401), 4, + ACTIONS(10325), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217847] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6477), 1, - sym_comment, - ACTIONS(10383), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217860] = 5, + [216370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10403), 1, + ACTIONS(10327), 1, anon_sym_DQUOTE, - STATE(6478), 1, + STATE(6382), 1, sym_comment, - STATE(6480), 1, + STATE(6385), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [217877] = 3, - ACTIONS(247), 1, + [216387] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6479), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10329), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6383), 1, sym_comment, - ACTIONS(10383), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217890] = 5, + [216406] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6384), 1, + sym_comment, + ACTIONS(10331), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [216419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10405), 1, + ACTIONS(10333), 1, anon_sym_DQUOTE, - STATE(6480), 1, + STATE(6385), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [217907] = 6, + [216436] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2230), 1, + ACTIONS(2304), 1, anon_sym_RBRACE, - ACTIONS(2232), 1, + ACTIONS(2306), 1, sym__entry_separator, - STATE(6481), 1, + STATE(6386), 1, sym_comment, - [217926] = 6, - ACTIONS(3), 1, + STATE(7637), 1, + sym__expr_parenthesized_immediate, + [216455] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1802), 1, + STATE(6387), 1, + sym_comment, + ACTIONS(10335), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1804), 1, + [216468] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + ACTIONS(5946), 1, + anon_sym_PIPE, + STATE(6388), 1, + sym_comment, + ACTIONS(5941), 2, + anon_sym_if, + anon_sym_EQ_GT, + [216485] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5538), 1, anon_sym_LPAREN2, - ACTIONS(1810), 1, + ACTIONS(7932), 1, sym__entry_separator, - ACTIONS(1812), 1, - aux_sym__unquoted_in_record_token2, - STATE(6482), 1, + ACTIONS(7934), 1, + anon_sym_RBRACK, + STATE(6389), 1, sym_comment, - [217945] = 6, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + [216504] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10407), 1, + ACTIONS(10337), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6483), 1, + STATE(6390), 1, sym_comment, - [217964] = 6, + [216523] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(10339), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6484), 1, + STATE(6391), 1, sym_comment, - [217983] = 6, + [216542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10411), 1, + ACTIONS(10341), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6485), 1, + STATE(6392), 1, sym_comment, - [218002] = 6, + [216561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10343), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6486), 1, + STATE(6393), 1, sym_comment, - [218021] = 6, + [216580] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10415), 1, + ACTIONS(10345), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, + STATE(6394), 1, sym_comment, - [218040] = 6, + [216599] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10417), 1, + ACTIONS(10347), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6395), 1, sym_comment, - [218059] = 6, + [216618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10419), 1, + ACTIONS(10349), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6396), 1, sym_comment, - [218078] = 6, + [216637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10421), 1, + ACTIONS(10351), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6397), 1, sym_comment, - [218097] = 3, - ACTIONS(247), 1, + [216656] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6491), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2333), 1, + anon_sym_RBRACK, + ACTIONS(2335), 1, + sym__entry_separator, + STATE(6398), 1, sym_comment, - ACTIONS(10423), 4, + [216675] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6399), 1, + sym_comment, + ACTIONS(10353), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218110] = 5, + [216688] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9971), 1, + anon_sym_use, + ACTIONS(9973), 1, + anon_sym_list, + ACTIONS(9975), 1, + anon_sym_hide, + ACTIONS(9977), 1, + anon_sym_new, + STATE(6400), 1, + sym_comment, + [216707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10425), 1, + ACTIONS(10355), 1, anon_sym_DQUOTE, - STATE(6492), 1, + STATE(6401), 1, sym_comment, - STATE(6493), 1, + STATE(6405), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218127] = 5, + [216724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10427), 1, - anon_sym_DQUOTE, - STATE(6493), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2341), 1, + sym__entry_separator, + ACTIONS(2343), 1, + aux_sym__unquoted_in_record_token4, + STATE(6402), 1, sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218144] = 3, - ACTIONS(247), 1, + [216743] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6494), 1, + STATE(6403), 1, sym_comment, - ACTIONS(10429), 4, + ACTIONS(10145), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218157] = 4, + [216756] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6495), 1, - sym_comment, - ACTIONS(1785), 2, + ACTIONS(1950), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 2, + ACTIONS(1952), 1, anon_sym_LPAREN2, + ACTIONS(1958), 1, sym__entry_separator, - [218172] = 6, - ACTIONS(247), 1, + ACTIONS(1960), 1, + aux_sym__unquoted_in_list_token2, + STATE(6404), 1, + sym_comment, + [216775] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10431), 1, - anon_sym_LBRACE, - STATE(5011), 1, - sym__blosure, - STATE(5168), 1, - sym_block, - STATE(5175), 1, - sym_val_closure, - STATE(6496), 1, + ACTIONS(10357), 1, + anon_sym_DQUOTE, + STATE(6405), 1, sym_comment, - [218191] = 6, + STATE(6665), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216792] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7995), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(7997), 1, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10359), 1, anon_sym_RBRACK, - STATE(6497), 1, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6406), 1, sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - [218210] = 6, + [216811] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10361), 1, + anon_sym_DQUOTE, + STATE(6407), 1, + sym_comment, + STATE(6479), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216828] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6408), 1, + sym_comment, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216841] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6409), 1, + sym_comment, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216854] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6410), 1, + sym_comment, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216867] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10433), 1, + ACTIONS(10365), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6498), 1, + STATE(6411), 1, sym_comment, - [218229] = 6, + [216886] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10367), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6499), 1, + STATE(6412), 1, sym_comment, - [218248] = 6, + [216905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10369), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6500), 1, + STATE(6413), 1, sym_comment, - [218267] = 6, + [216924] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10439), 1, + ACTIONS(10371), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6414), 1, sym_comment, - [218286] = 6, + [216943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10441), 1, + ACTIONS(10373), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6502), 1, + STATE(6415), 1, sym_comment, - [218305] = 6, + [216962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10443), 1, + ACTIONS(10375), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6503), 1, + STATE(6416), 1, sym_comment, - [218324] = 6, + [216981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10445), 1, + ACTIONS(10377), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6504), 1, + STATE(6417), 1, sym_comment, - [218343] = 6, + [217000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10447), 1, + ACTIONS(10379), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6505), 1, - sym_comment, - [218362] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6506), 1, + STATE(6418), 1, sym_comment, - ACTIONS(10449), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218375] = 3, - ACTIONS(247), 1, + [217019] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6507), 1, + STATE(6419), 1, sym_comment, - ACTIONS(10451), 4, + ACTIONS(10363), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218388] = 5, - ACTIONS(3), 1, + [217032] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10453), 1, - anon_sym_DQUOTE, - STATE(6508), 1, + STATE(6420), 1, sym_comment, - STATE(6509), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218405] = 5, + ACTIONS(10381), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(10383), 1, anon_sym_DQUOTE, - STATE(6509), 1, + STATE(6421), 1, sym_comment, - STATE(6814), 1, + STATE(6426), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218422] = 3, - ACTIONS(247), 1, + [217062] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6510), 1, + STATE(6422), 1, sym_comment, - ACTIONS(10457), 4, + ACTIONS(10385), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218435] = 3, - ACTIONS(247), 1, + [217075] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6511), 1, + STATE(6423), 1, sym_comment, - ACTIONS(10459), 4, + ACTIONS(10385), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218448] = 3, - ACTIONS(247), 1, + [217088] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6512), 1, + STATE(6424), 1, + sym_comment, + ACTIONS(10387), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217101] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(5857), 1, + sym_parameter_parens, + STATE(5861), 1, + sym_parameter_bracks, + STATE(6425), 1, + sym_comment, + [217120] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10393), 1, + anon_sym_DQUOTE, + STATE(6426), 1, + sym_comment, + STATE(6665), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [217137] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6427), 1, sym_comment, - ACTIONS(10461), 4, + ACTIONS(10395), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218461] = 6, + [217150] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, + STATE(6428), 1, + sym_comment, + ACTIONS(2373), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217165] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2258), 1, - anon_sym_RBRACE, - ACTIONS(2260), 1, + ACTIONS(5538), 1, anon_sym_LPAREN2, - ACTIONS(2262), 1, + ACTIONS(8082), 1, sym__entry_separator, - STATE(6513), 1, + ACTIONS(8084), 1, + anon_sym_RBRACK, + STATE(6429), 1, sym_comment, - [218480] = 6, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + [217184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10463), 1, + ACTIONS(10397), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6514), 1, + STATE(6430), 1, sym_comment, - [218499] = 6, + [217203] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10465), 1, + ACTIONS(10399), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6515), 1, + STATE(6431), 1, sym_comment, - [218518] = 6, + [217222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(10401), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6516), 1, + STATE(6432), 1, sym_comment, - [218537] = 6, + [217241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, + ACTIONS(10403), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6517), 1, + STATE(6433), 1, sym_comment, - [218556] = 6, + [217260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10405), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6518), 1, + STATE(6434), 1, sym_comment, - [218575] = 6, + [217279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10407), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6519), 1, + STATE(6435), 1, sym_comment, - [218594] = 6, + [217298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10475), 1, + ACTIONS(10409), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6520), 1, + STATE(6436), 1, sym_comment, - [218613] = 6, + [217317] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10477), 1, + ACTIONS(10411), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6521), 1, + STATE(6437), 1, sym_comment, - [218632] = 3, - ACTIONS(247), 1, + [217336] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6522), 1, + STATE(6438), 1, sym_comment, - ACTIONS(10479), 4, + ACTIONS(6369), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218645] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [217349] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6523), 1, + STATE(6439), 1, sym_comment, - ACTIONS(10481), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218658] = 3, - ACTIONS(247), 1, + ACTIONS(10413), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217362] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6524), 1, + ACTIONS(10415), 1, + anon_sym_DQUOTE, + STATE(6440), 1, sym_comment, - ACTIONS(10483), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218671] = 3, - ACTIONS(247), 1, + STATE(6442), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [217379] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6525), 1, + STATE(6441), 1, sym_comment, - ACTIONS(10485), 4, + ACTIONS(6371), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218684] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6526), 1, - sym_comment, - ACTIONS(10487), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218697] = 5, + anon_sym_LBRACE, + [217392] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, + ACTIONS(10417), 1, anon_sym_DQUOTE, - STATE(6527), 1, + STATE(6442), 1, sym_comment, - STATE(6528), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218714] = 5, + [217409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10491), 1, + ACTIONS(10419), 1, anon_sym_DQUOTE, - STATE(6528), 1, + STATE(6443), 1, sym_comment, - STATE(6814), 1, + STATE(6513), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218731] = 6, + [217426] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + ACTIONS(10421), 1, + aux_sym__immediate_decimal_token2, + STATE(6444), 1, + sym_comment, + ACTIONS(1921), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [217443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10493), 1, + ACTIONS(10423), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6529), 1, + STATE(6445), 1, sym_comment, - [218750] = 6, + [217462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10425), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6530), 1, + STATE(6446), 1, sym_comment, - [218769] = 6, + [217481] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10497), 1, + ACTIONS(10427), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6531), 1, + STATE(6447), 1, sym_comment, - [218788] = 6, + [217500] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10499), 1, + ACTIONS(10429), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6532), 1, + STATE(6448), 1, sym_comment, - [218807] = 6, + [217519] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10501), 1, + ACTIONS(10431), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6533), 1, + STATE(6449), 1, sym_comment, - [218826] = 6, + [217538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10503), 1, + ACTIONS(10433), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6534), 1, + STATE(6450), 1, sym_comment, - [218845] = 6, + [217557] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10505), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6451), 1, + sym_comment, + [217576] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10437), 1, + anon_sym_RBRACK, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6535), 1, + STATE(6452), 1, sym_comment, - [218864] = 6, + [217595] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10507), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6536), 1, + STATE(6453), 1, sym_comment, - [218883] = 3, - ACTIONS(247), 1, + ACTIONS(2407), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [217608] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6537), 1, + STATE(6454), 1, sym_comment, - ACTIONS(10509), 4, + ACTIONS(10439), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218896] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6538), 1, - sym_comment, - ACTIONS(10511), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218909] = 5, + [217621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10513), 1, + ACTIONS(10441), 1, anon_sym_DQUOTE, - STATE(6539), 1, + STATE(6455), 1, sym_comment, - STATE(6541), 1, + STATE(6458), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218926] = 5, + [217638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - ACTIONS(5933), 1, - anon_sym_PIPE, - STATE(6540), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10443), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6456), 1, sym_comment, - ACTIONS(5928), 2, - anon_sym_if, - anon_sym_EQ_GT, - [218943] = 5, + [217657] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6457), 1, + sym_comment, + ACTIONS(10445), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217670] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10515), 1, + ACTIONS(10447), 1, anon_sym_DQUOTE, - STATE(6541), 1, + STATE(6458), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [218960] = 4, - ACTIONS(3), 1, + [217687] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6542), 1, + STATE(6459), 1, sym_comment, - ACTIONS(1841), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [218975] = 3, - ACTIONS(247), 1, + ACTIONS(10445), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217700] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6543), 1, + STATE(6460), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10449), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218988] = 3, - ACTIONS(247), 1, + [217713] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6544), 1, + STATE(6461), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10451), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219001] = 6, + [217726] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2345), 1, anon_sym_RBRACK, - ACTIONS(2274), 1, + ACTIONS(2347), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2349), 1, sym__entry_separator, - ACTIONS(2278), 1, - aux_sym__unquoted_in_list_token2, - STATE(6545), 1, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + STATE(6462), 1, sym_comment, - [219020] = 3, - ACTIONS(247), 1, + [217745] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6546), 1, + STATE(6463), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10363), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219033] = 6, + [217758] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10517), 1, + ACTIONS(10453), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6547), 1, + STATE(6464), 1, sym_comment, - [219052] = 6, + [217777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10519), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6548), 1, + STATE(6465), 1, sym_comment, - [219071] = 6, + [217796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10457), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6549), 1, + STATE(6466), 1, sym_comment, - [219090] = 6, + [217815] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10523), 1, + ACTIONS(10459), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6550), 1, + STATE(6467), 1, sym_comment, - [219109] = 6, + [217834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10525), 1, + ACTIONS(10461), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6551), 1, + STATE(6468), 1, sym_comment, - [219128] = 6, + [217853] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10527), 1, + ACTIONS(10463), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6552), 1, + STATE(6469), 1, sym_comment, - [219147] = 6, + [217872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10529), 1, + ACTIONS(10465), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6553), 1, + STATE(6470), 1, sym_comment, - [219166] = 6, + [217891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10531), 1, + ACTIONS(10467), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6554), 1, + STATE(6471), 1, sym_comment, - [219185] = 3, - ACTIONS(247), 1, + [217910] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6555), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2353), 1, + anon_sym_RBRACK, + ACTIONS(2355), 1, + sym__entry_separator, + STATE(6472), 1, sym_comment, - ACTIONS(10511), 4, + [217929] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6473), 1, + sym_comment, + ACTIONS(10469), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217942] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6681), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219198] = 3, - ACTIONS(247), 1, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(10473), 1, + anon_sym_COLON, + STATE(4042), 1, + aux_sym_shebang_repeat1, + STATE(6474), 1, + sym_comment, + [217961] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6556), 1, + STATE(6475), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10201), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219211] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6557), 1, - sym_comment, - ACTIONS(10533), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219224] = 3, - ACTIONS(247), 1, + [217974] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6558), 1, + STATE(6476), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10475), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219237] = 5, + [217987] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10535), 1, + ACTIONS(10477), 1, anon_sym_DQUOTE, - STATE(6559), 1, + STATE(6477), 1, sym_comment, - STATE(6560), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219254] = 5, + [218004] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6478), 1, + sym_comment, + ACTIONS(10201), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10537), 1, + ACTIONS(10479), 1, anon_sym_DQUOTE, - STATE(6560), 1, + STATE(6479), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219271] = 3, - ACTIONS(247), 1, + [218034] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6561), 1, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(9957), 1, + aux_sym__immediate_decimal_token2, + STATE(6480), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(1874), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [218051] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6481), 1, + sym_comment, + ACTIONS(10481), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219284] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10539), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6562), 1, - sym_comment, - [219303] = 3, - ACTIONS(247), 1, + [218064] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6563), 1, + STATE(6482), 1, sym_comment, - ACTIONS(10541), 4, + ACTIONS(10475), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219316] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6564), 1, - sym_comment, - ACTIONS(10543), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219329] = 6, + [218077] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10545), 1, + ACTIONS(10483), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6565), 1, + STATE(6483), 1, sym_comment, - [219348] = 6, + [218096] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10547), 1, + ACTIONS(10485), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6566), 1, + STATE(6484), 1, sym_comment, - [219367] = 6, + [218115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10549), 1, + ACTIONS(10487), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6567), 1, + STATE(6485), 1, sym_comment, - [219386] = 6, + [218134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10551), 1, + ACTIONS(10489), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6568), 1, + STATE(6486), 1, sym_comment, - [219405] = 6, + [218153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10553), 1, + ACTIONS(10491), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6569), 1, + STATE(6487), 1, sym_comment, - [219424] = 6, + [218172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10555), 1, + ACTIONS(10493), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6570), 1, + STATE(6488), 1, sym_comment, - [219443] = 6, + [218191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10557), 1, + ACTIONS(10495), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6571), 1, + STATE(6489), 1, sym_comment, - [219462] = 3, - ACTIONS(247), 1, + [218210] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6572), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10497), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6490), 1, sym_comment, - ACTIONS(10541), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219475] = 3, - ACTIONS(247), 1, + [218229] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6573), 1, + ACTIONS(10499), 1, + anon_sym_use, + ACTIONS(10501), 1, + anon_sym_list, + ACTIONS(10503), 1, + anon_sym_hide, + ACTIONS(10505), 1, + anon_sym_new, + STATE(6491), 1, sym_comment, - ACTIONS(10541), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219488] = 3, - ACTIONS(247), 1, + [218248] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6574), 1, + STATE(6492), 1, sym_comment, - ACTIONS(10559), 4, + ACTIONS(10507), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219501] = 3, - ACTIONS(247), 1, + [218261] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6575), 1, - sym_comment, - ACTIONS(10541), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219514] = 5, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4771), 1, + sym_block, + STATE(6493), 1, + sym_comment, + [218280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10561), 1, + ACTIONS(10509), 1, anon_sym_DQUOTE, - STATE(6576), 1, + STATE(6494), 1, sym_comment, - STATE(6577), 1, + STATE(6496), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219531] = 5, + [218297] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6495), 1, + sym_comment, + ACTIONS(10511), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218310] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10563), 1, + ACTIONS(10513), 1, anon_sym_DQUOTE, - STATE(6577), 1, + STATE(6496), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219548] = 6, - ACTIONS(3), 1, + [218327] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - sym__entry_separator, - ACTIONS(2278), 1, - aux_sym__unquoted_in_record_token2, - STATE(6578), 1, + STATE(6497), 1, sym_comment, - [219567] = 6, - ACTIONS(3), 1, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218340] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10565), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6579), 1, + STATE(6498), 1, sym_comment, - [219586] = 6, + ACTIONS(5707), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218353] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10567), 1, + ACTIONS(10515), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6580), 1, + STATE(6499), 1, sym_comment, - [219605] = 6, + [218372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10569), 1, + ACTIONS(10517), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6581), 1, + STATE(6500), 1, sym_comment, - [219624] = 6, + [218391] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10571), 1, + ACTIONS(10519), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6582), 1, + STATE(6501), 1, sym_comment, - [219643] = 6, + [218410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, + ACTIONS(10521), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6583), 1, + STATE(6502), 1, sym_comment, - [219662] = 6, + [218429] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10575), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6584), 1, + STATE(6503), 1, sym_comment, - [219681] = 6, + [218448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10525), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6585), 1, + STATE(6504), 1, sym_comment, - [219700] = 6, + [218467] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10579), 1, + ACTIONS(10527), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6586), 1, + STATE(6505), 1, sym_comment, - [219719] = 6, + [218486] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10581), 1, + ACTIONS(10529), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6587), 1, + STATE(6506), 1, sym_comment, - [219738] = 3, - ACTIONS(247), 1, + [218505] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6588), 1, - sym_comment, - ACTIONS(10541), 4, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219751] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6589), 1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(4772), 1, + sym_block, + STATE(6507), 1, sym_comment, - ACTIONS(10541), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219764] = 3, - ACTIONS(247), 1, + STATE(6774), 1, + aux_sym_shebang_repeat1, + [218524] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6590), 1, + STATE(6508), 1, sym_comment, - ACTIONS(10583), 4, + ACTIONS(10531), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219777] = 4, - ACTIONS(3), 1, + [218537] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(6591), 1, + STATE(6509), 1, sym_comment, - ACTIONS(2238), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [219792] = 5, + ACTIONS(10533), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10585), 1, + ACTIONS(10535), 1, anon_sym_DQUOTE, - STATE(6592), 1, + STATE(6510), 1, sym_comment, - STATE(6593), 1, + STATE(6512), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219809] = 5, + [218567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(2399), 1, + anon_sym_RBRACE, + ACTIONS(2401), 1, + sym__entry_separator, + STATE(6511), 1, + sym_comment, + STATE(7875), 1, + sym__expr_parenthesized_immediate, + [218586] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10537), 1, anon_sym_DQUOTE, - STATE(6593), 1, + STATE(6512), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [219826] = 6, + [218603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10589), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6594), 1, - sym_comment, - [219845] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6595), 1, + ACTIONS(10539), 1, + anon_sym_DQUOTE, + STATE(6513), 1, sym_comment, - ACTIONS(10591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219858] = 6, + STATE(6665), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10593), 1, + ACTIONS(10541), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6596), 1, + STATE(6514), 1, sym_comment, - [219877] = 6, + [218639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10595), 1, + ACTIONS(10543), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6597), 1, + STATE(6515), 1, sym_comment, - [219896] = 6, + [218658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10597), 1, + ACTIONS(10545), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6598), 1, + STATE(6516), 1, sym_comment, - [219915] = 6, + [218677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10599), 1, + ACTIONS(10547), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6599), 1, + STATE(6517), 1, sym_comment, - [219934] = 6, + [218696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10601), 1, + ACTIONS(10549), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6600), 1, + STATE(6518), 1, sym_comment, - [219953] = 6, + [218715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10603), 1, + ACTIONS(10551), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6601), 1, + STATE(6519), 1, sym_comment, - [219972] = 6, + [218734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10605), 1, + ACTIONS(10553), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6602), 1, + STATE(6520), 1, sym_comment, - [219991] = 6, + [218753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10607), 1, + ACTIONS(10555), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6603), 1, + STATE(6521), 1, sym_comment, - [220010] = 3, - ACTIONS(247), 1, + [218772] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6604), 1, + ACTIONS(10557), 1, + anon_sym_RPAREN, + STATE(6522), 1, sym_comment, - ACTIONS(10609), 4, + STATE(6734), 1, + aux_sym__block_body_repeat1, + ACTIONS(10181), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220023] = 3, - ACTIONS(247), 1, + [218789] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6605), 1, + STATE(6523), 1, sym_comment, - ACTIONS(10611), 4, + ACTIONS(10559), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220036] = 5, + [218802] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6524), 1, + sym_comment, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, + ACTIONS(10561), 1, anon_sym_DQUOTE, - STATE(6606), 1, + STATE(6525), 1, sym_comment, - STATE(6608), 1, + STATE(6526), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220053] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6607), 1, - sym_comment, - ACTIONS(10609), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220066] = 5, + [218832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, + ACTIONS(10563), 1, anon_sym_DQUOTE, - STATE(6608), 1, + STATE(6526), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220083] = 3, - ACTIONS(247), 1, + [218849] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6609), 1, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(5978), 1, + sym_parameter_parens, + STATE(5991), 1, + sym_parameter_bracks, + STATE(6527), 1, sym_comment, - ACTIONS(10617), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220096] = 6, + [218868] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10619), 1, + ACTIONS(10565), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6610), 1, + STATE(6528), 1, sym_comment, - [220115] = 6, + [218887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10621), 1, + ACTIONS(10567), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6611), 1, + STATE(6529), 1, sym_comment, - [220134] = 6, + [218906] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10623), 1, + ACTIONS(10569), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6612), 1, + STATE(6530), 1, sym_comment, - [220153] = 6, + [218925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10625), 1, + ACTIONS(10571), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6613), 1, + STATE(6531), 1, sym_comment, - [220172] = 6, + [218944] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10627), 1, + ACTIONS(10573), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6614), 1, + STATE(6532), 1, sym_comment, - [220191] = 6, + [218963] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10629), 1, + ACTIONS(10575), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6615), 1, + STATE(6533), 1, sym_comment, - [220210] = 6, + [218982] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10631), 1, + ACTIONS(10577), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6616), 1, + STATE(6534), 1, sym_comment, - [220229] = 6, + [219001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10633), 1, + ACTIONS(10579), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6617), 1, + STATE(6535), 1, sym_comment, - [220248] = 6, + [219020] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10635), 1, + ACTIONS(10581), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6618), 1, + STATE(6536), 1, sym_comment, - [220267] = 3, - ACTIONS(247), 1, + [219039] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6619), 1, + STATE(6537), 1, sym_comment, - ACTIONS(10637), 4, + ACTIONS(10583), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220280] = 5, + [219052] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, + ACTIONS(10585), 1, anon_sym_DQUOTE, - STATE(6620), 1, + STATE(6538), 1, sym_comment, - STATE(6621), 1, + STATE(6539), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220297] = 5, + [219069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, + ACTIONS(10587), 1, anon_sym_DQUOTE, - STATE(6621), 1, + STATE(6539), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220314] = 6, + [219086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10643), 1, + ACTIONS(10589), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6622), 1, + STATE(6540), 1, sym_comment, - [220333] = 6, + [219105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10645), 1, + ACTIONS(10591), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6623), 1, + STATE(6541), 1, sym_comment, - [220352] = 6, + [219124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10647), 1, + ACTIONS(10593), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6624), 1, + STATE(6542), 1, sym_comment, - [220371] = 6, + [219143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10649), 1, + ACTIONS(10595), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6625), 1, + STATE(6543), 1, sym_comment, - [220390] = 6, + [219162] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10651), 1, + ACTIONS(10597), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6626), 1, + STATE(6544), 1, sym_comment, - [220409] = 6, + [219181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10653), 1, + ACTIONS(10599), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6627), 1, + STATE(6545), 1, sym_comment, - [220428] = 6, + [219200] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10655), 1, + ACTIONS(10601), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6628), 1, + STATE(6546), 1, sym_comment, - [220447] = 6, + [219219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10657), 1, + ACTIONS(10603), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6629), 1, + STATE(6547), 1, sym_comment, - [220466] = 3, - ACTIONS(247), 1, + [219238] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6630), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10605), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6548), 1, sym_comment, - ACTIONS(10659), 4, + [219257] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6549), 1, + sym_comment, + ACTIONS(10607), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220479] = 5, + [219270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10661), 1, + ACTIONS(10609), 1, anon_sym_DQUOTE, - STATE(6631), 1, + STATE(6550), 1, sym_comment, - STATE(6632), 1, + STATE(6551), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220496] = 5, + [219287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10663), 1, + ACTIONS(10611), 1, anon_sym_DQUOTE, - STATE(6632), 1, + STATE(6551), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220513] = 6, + [219304] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10665), 1, + ACTIONS(10613), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6633), 1, + STATE(6552), 1, sym_comment, - [220532] = 6, + [219323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10667), 1, + ACTIONS(10615), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6634), 1, + STATE(6553), 1, sym_comment, - [220551] = 6, + [219342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10669), 1, + ACTIONS(10617), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6635), 1, + STATE(6554), 1, sym_comment, - [220570] = 6, + [219361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10671), 1, + ACTIONS(10619), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6636), 1, + STATE(6555), 1, sym_comment, - [220589] = 6, + [219380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10673), 1, + ACTIONS(10621), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6637), 1, + STATE(6556), 1, sym_comment, - [220608] = 6, + [219399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10675), 1, + ACTIONS(10623), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6638), 1, + STATE(6557), 1, sym_comment, - [220627] = 6, + [219418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10677), 1, + ACTIONS(10625), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6639), 1, + STATE(6558), 1, sym_comment, - [220646] = 6, + [219437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10679), 1, + ACTIONS(10627), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6640), 1, + STATE(6559), 1, sym_comment, - [220665] = 3, - ACTIONS(247), 1, + [219456] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6641), 1, + STATE(6560), 1, sym_comment, - ACTIONS(10681), 4, + ACTIONS(10629), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220678] = 5, + [219469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10683), 1, + ACTIONS(10631), 1, anon_sym_DQUOTE, - STATE(6642), 1, + STATE(6561), 1, sym_comment, - STATE(6644), 1, + STATE(6562), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220695] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6643), 1, - sym_comment, - ACTIONS(10541), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220708] = 5, + [219486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10685), 1, + ACTIONS(10633), 1, anon_sym_DQUOTE, - STATE(6644), 1, + STATE(6562), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220725] = 3, - ACTIONS(247), 1, + [219503] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6645), 1, + STATE(6563), 1, sym_comment, - ACTIONS(10687), 4, + ACTIONS(10635), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220738] = 5, + [219516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10689), 1, + ACTIONS(10637), 1, anon_sym_DQUOTE, - STATE(6646), 1, + STATE(6564), 1, sym_comment, - STATE(6648), 1, + STATE(6566), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220755] = 3, - ACTIONS(247), 1, + [219533] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6647), 1, + STATE(6565), 1, sym_comment, - ACTIONS(10541), 4, + ACTIONS(10639), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220768] = 5, + [219546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10691), 1, + ACTIONS(10641), 1, anon_sym_DQUOTE, - STATE(6648), 1, + STATE(6566), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220785] = 3, - ACTIONS(247), 1, + [219563] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6649), 1, + STATE(6567), 1, sym_comment, - ACTIONS(10693), 4, + ACTIONS(10643), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220798] = 5, + [219576] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10695), 1, + ACTIONS(10645), 1, anon_sym_DQUOTE, - STATE(6650), 1, + STATE(6568), 1, sym_comment, - STATE(6651), 1, + STATE(6569), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220815] = 5, + [219593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10697), 1, + ACTIONS(10647), 1, anon_sym_DQUOTE, - STATE(6651), 1, + STATE(6569), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220832] = 3, - ACTIONS(247), 1, + [219610] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6652), 1, + STATE(6570), 1, sym_comment, - ACTIONS(10699), 4, + ACTIONS(10649), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220845] = 5, + [219623] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10701), 1, + ACTIONS(10651), 1, anon_sym_DQUOTE, - STATE(6653), 1, + STATE(6571), 1, sym_comment, - STATE(6654), 1, + STATE(6572), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220862] = 5, + [219640] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10703), 1, + ACTIONS(10653), 1, anon_sym_DQUOTE, - STATE(6654), 1, + STATE(6572), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220879] = 4, - ACTIONS(247), 1, + [219657] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - STATE(6655), 1, + STATE(6573), 1, sym_comment, - ACTIONS(1828), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220894] = 3, - ACTIONS(247), 1, + ACTIONS(10655), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [219670] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6656), 1, + ACTIONS(10657), 1, + anon_sym_DQUOTE, + STATE(6574), 1, + sym_comment, + STATE(6575), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219687] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10659), 1, + anon_sym_DQUOTE, + STATE(6575), 1, + sym_comment, + STATE(6665), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219704] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6576), 1, sym_comment, - ACTIONS(10705), 4, + ACTIONS(10661), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220907] = 5, + [219717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10707), 1, + ACTIONS(10663), 1, anon_sym_DQUOTE, - STATE(6657), 1, + STATE(6577), 1, sym_comment, - STATE(6658), 1, + STATE(6578), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220924] = 5, + [219734] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10709), 1, + ACTIONS(10665), 1, anon_sym_DQUOTE, - STATE(6658), 1, + STATE(6578), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220941] = 3, - ACTIONS(247), 1, + [219751] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6659), 1, + STATE(6579), 1, sym_comment, - ACTIONS(10711), 4, + ACTIONS(10667), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220954] = 5, + [219764] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10713), 1, + ACTIONS(10669), 1, anon_sym_DQUOTE, - STATE(6660), 1, + STATE(6580), 1, sym_comment, - STATE(6661), 1, + STATE(6581), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220971] = 5, + [219781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10715), 1, + ACTIONS(10671), 1, anon_sym_DQUOTE, - STATE(6661), 1, + STATE(6581), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [220988] = 3, - ACTIONS(247), 1, + [219798] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6662), 1, + STATE(6582), 1, sym_comment, - ACTIONS(10717), 4, + ACTIONS(10673), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219811] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6583), 1, + sym_comment, + ACTIONS(10675), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221001] = 5, + [219824] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10719), 1, + ACTIONS(10677), 1, anon_sym_DQUOTE, - STATE(6663), 1, + STATE(6584), 1, sym_comment, - STATE(6664), 1, + STATE(6585), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221018] = 5, + [219841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10721), 1, + ACTIONS(10679), 1, anon_sym_DQUOTE, - STATE(6664), 1, + STATE(6585), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221035] = 3, - ACTIONS(247), 1, + [219858] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10681), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6586), 1, + sym_comment, + [219877] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6665), 1, + STATE(6587), 1, sym_comment, - ACTIONS(10723), 4, + ACTIONS(10683), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221048] = 5, + [219890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10725), 1, + ACTIONS(10685), 1, anon_sym_DQUOTE, - STATE(6666), 1, + STATE(6588), 1, sym_comment, - STATE(6667), 1, + STATE(6589), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221065] = 5, + [219907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10727), 1, + ACTIONS(10687), 1, anon_sym_DQUOTE, - STATE(6667), 1, + STATE(6589), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221082] = 3, - ACTIONS(247), 1, + [219924] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6668), 1, + STATE(6590), 1, sym_comment, - ACTIONS(10729), 4, + ACTIONS(10689), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221095] = 5, + [219937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10731), 1, + ACTIONS(10691), 1, anon_sym_DQUOTE, - STATE(6669), 1, + STATE(6591), 1, sym_comment, - STATE(6670), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221112] = 5, + [219954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10733), 1, + ACTIONS(10693), 1, anon_sym_DQUOTE, - STATE(6670), 1, + STATE(6592), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221129] = 3, - ACTIONS(247), 1, + [219971] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6671), 1, + STATE(6593), 1, sym_comment, - ACTIONS(10735), 4, + ACTIONS(10695), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221142] = 5, + [219984] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10737), 1, + ACTIONS(10697), 1, anon_sym_DQUOTE, - STATE(6672), 1, + STATE(6594), 1, sym_comment, - STATE(6673), 1, + STATE(6595), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221159] = 5, + [220001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10739), 1, + ACTIONS(10699), 1, anon_sym_DQUOTE, - STATE(6673), 1, + STATE(6595), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221176] = 3, - ACTIONS(247), 1, + [220018] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6674), 1, + STATE(6596), 1, sym_comment, - ACTIONS(10741), 4, + ACTIONS(10701), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221189] = 5, + [220031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10743), 1, + ACTIONS(10703), 1, anon_sym_DQUOTE, - STATE(6675), 1, + STATE(6597), 1, sym_comment, - STATE(6676), 1, + STATE(6598), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221206] = 5, + [220048] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10745), 1, + ACTIONS(10705), 1, anon_sym_DQUOTE, - STATE(6676), 1, + STATE(6598), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221223] = 3, - ACTIONS(247), 1, + [220065] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6677), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10707), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6599), 1, + sym_comment, + [220084] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6600), 1, sym_comment, - ACTIONS(10747), 4, + ACTIONS(10709), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221236] = 5, + [220097] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10749), 1, + ACTIONS(10711), 1, anon_sym_DQUOTE, - STATE(6678), 1, + STATE(6601), 1, sym_comment, - STATE(6679), 1, + STATE(6602), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221253] = 5, + [220114] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10751), 1, + ACTIONS(10713), 1, anon_sym_DQUOTE, - STATE(6679), 1, + STATE(6602), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221270] = 3, - ACTIONS(247), 1, + [220131] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6680), 1, + STATE(6603), 1, + sym_comment, + ACTIONS(10715), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220144] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6604), 1, sym_comment, - ACTIONS(10753), 4, + ACTIONS(10717), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221283] = 5, + [220157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10755), 1, + ACTIONS(10719), 1, anon_sym_DQUOTE, - STATE(6681), 1, + STATE(6605), 1, sym_comment, - STATE(6682), 1, + STATE(6606), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221300] = 5, + [220174] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10757), 1, + ACTIONS(10721), 1, anon_sym_DQUOTE, - STATE(6682), 1, + STATE(6606), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221317] = 3, - ACTIONS(247), 1, + [220191] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6683), 1, + STATE(6607), 1, + sym_comment, + ACTIONS(10723), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220204] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6608), 1, sym_comment, - ACTIONS(10759), 4, + ACTIONS(10725), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221330] = 5, + [220217] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10761), 1, + ACTIONS(10727), 1, anon_sym_DQUOTE, - STATE(6684), 1, + STATE(6609), 1, sym_comment, - STATE(6685), 1, + STATE(6610), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221347] = 5, + [220234] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10763), 1, + ACTIONS(10729), 1, anon_sym_DQUOTE, - STATE(6685), 1, + STATE(6610), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221364] = 3, - ACTIONS(247), 1, + [220251] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6686), 1, + STATE(6611), 1, sym_comment, - ACTIONS(10765), 4, + ACTIONS(10731), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221377] = 5, + [220264] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10767), 1, + ACTIONS(10733), 1, anon_sym_DQUOTE, - STATE(6687), 1, + STATE(6612), 1, sym_comment, - STATE(6688), 1, + STATE(6613), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221394] = 5, + [220281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10769), 1, + ACTIONS(10735), 1, anon_sym_DQUOTE, - STATE(6688), 1, + STATE(6613), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221411] = 3, - ACTIONS(247), 1, + [220298] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6689), 1, + STATE(6614), 1, sym_comment, - ACTIONS(10771), 4, + ACTIONS(10737), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221424] = 5, + [220311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10773), 1, + ACTIONS(10739), 1, anon_sym_DQUOTE, - STATE(6690), 1, + STATE(6615), 1, sym_comment, - STATE(6691), 1, + STATE(6616), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221441] = 5, + [220328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10775), 1, + ACTIONS(10741), 1, anon_sym_DQUOTE, - STATE(6691), 1, + STATE(6616), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221458] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8047), 1, - sym__entry_separator, - ACTIONS(8049), 1, - anon_sym_RBRACK, - STATE(6692), 1, - sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - [221477] = 3, - ACTIONS(247), 1, + [220345] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6693), 1, + STATE(6617), 1, sym_comment, - ACTIONS(10777), 4, + ACTIONS(10743), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221490] = 5, + [220358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10779), 1, + ACTIONS(10745), 1, anon_sym_DQUOTE, - STATE(6694), 1, + STATE(6618), 1, sym_comment, - STATE(6695), 1, + STATE(6619), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221507] = 5, + [220375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10781), 1, + ACTIONS(10747), 1, anon_sym_DQUOTE, - STATE(6695), 1, + STATE(6619), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221524] = 3, - ACTIONS(247), 1, + [220392] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6696), 1, - sym_comment, - ACTIONS(5693), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [221537] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6697), 1, + STATE(6620), 1, sym_comment, - ACTIONS(10783), 4, + ACTIONS(10749), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221550] = 5, + [220405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10785), 1, + ACTIONS(10751), 1, anon_sym_DQUOTE, - STATE(6698), 1, + STATE(6621), 1, sym_comment, - STATE(6699), 1, + STATE(6622), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221567] = 5, + [220422] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10787), 1, + ACTIONS(10753), 1, anon_sym_DQUOTE, - STATE(6699), 1, + STATE(6622), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221584] = 3, - ACTIONS(247), 1, + [220439] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6700), 1, + STATE(6623), 1, sym_comment, - ACTIONS(10789), 4, + ACTIONS(10755), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221597] = 5, + [220452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10791), 1, + ACTIONS(10757), 1, anon_sym_DQUOTE, - STATE(6701), 1, + STATE(6624), 1, sym_comment, - STATE(6702), 1, + STATE(6625), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221614] = 5, + [220469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10793), 1, + ACTIONS(10759), 1, anon_sym_DQUOTE, - STATE(6702), 1, + STATE(6625), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221631] = 3, - ACTIONS(247), 1, + [220486] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6703), 1, + STATE(6626), 1, sym_comment, - ACTIONS(10795), 4, + ACTIONS(10761), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221644] = 5, + [220499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10797), 1, + ACTIONS(10763), 1, anon_sym_DQUOTE, - STATE(6704), 1, + STATE(6627), 1, sym_comment, - STATE(6705), 1, + STATE(6628), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221661] = 5, + [220516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10799), 1, + ACTIONS(10765), 1, anon_sym_DQUOTE, - STATE(6705), 1, + STATE(6628), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221678] = 3, - ACTIONS(247), 1, + [220533] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6706), 1, + STATE(6629), 1, sym_comment, - ACTIONS(10801), 4, + ACTIONS(10767), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221691] = 5, + [220546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10803), 1, + ACTIONS(10769), 1, anon_sym_DQUOTE, - STATE(6707), 1, + STATE(6630), 1, sym_comment, - STATE(6708), 1, + STATE(6631), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221708] = 5, + [220563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10805), 1, + ACTIONS(10771), 1, anon_sym_DQUOTE, - STATE(6708), 1, + STATE(6631), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221725] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6709), 1, - sym_comment, - ACTIONS(10807), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221738] = 3, - ACTIONS(247), 1, + [220580] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6710), 1, + STATE(6632), 1, sym_comment, - ACTIONS(10809), 4, + ACTIONS(10773), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221751] = 5, + [220593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10811), 1, + ACTIONS(10775), 1, anon_sym_DQUOTE, - STATE(6711), 1, + STATE(6633), 1, sym_comment, - STATE(6712), 1, + STATE(6634), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221768] = 5, + [220610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10813), 1, + ACTIONS(10777), 1, anon_sym_DQUOTE, - STATE(6712), 1, + STATE(6634), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221785] = 3, - ACTIONS(247), 1, + [220627] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6713), 1, + STATE(6635), 1, sym_comment, - ACTIONS(10815), 4, + ACTIONS(10779), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221798] = 5, + [220640] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10817), 1, + ACTIONS(10781), 1, anon_sym_DQUOTE, - STATE(6714), 1, + STATE(6636), 1, sym_comment, - STATE(6715), 1, + STATE(6637), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221815] = 5, + [220657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10819), 1, + ACTIONS(10783), 1, anon_sym_DQUOTE, - STATE(6715), 1, + STATE(6637), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221832] = 3, - ACTIONS(247), 1, + [220674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6716), 1, + STATE(6638), 1, sym_comment, - ACTIONS(10821), 4, + ACTIONS(10785), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221845] = 5, + [220687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10823), 1, + ACTIONS(10787), 1, anon_sym_DQUOTE, - STATE(6717), 1, + STATE(6639), 1, sym_comment, - STATE(6718), 1, + STATE(6640), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221862] = 5, + [220704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10825), 1, + ACTIONS(10789), 1, anon_sym_DQUOTE, - STATE(6718), 1, + STATE(6640), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221879] = 3, - ACTIONS(247), 1, + [220721] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6719), 1, + STATE(6641), 1, sym_comment, - ACTIONS(10827), 4, + ACTIONS(10791), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221892] = 5, + [220734] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10829), 1, + ACTIONS(10793), 1, anon_sym_DQUOTE, - STATE(6720), 1, + STATE(6642), 1, sym_comment, - STATE(6721), 1, + STATE(6643), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221909] = 5, + [220751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10795), 1, anon_sym_DQUOTE, - STATE(6721), 1, + STATE(6643), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221926] = 3, - ACTIONS(247), 1, + [220768] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6722), 1, + STATE(6644), 1, sym_comment, - ACTIONS(10833), 4, + ACTIONS(10797), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221939] = 5, + [220781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10835), 1, + ACTIONS(10799), 1, anon_sym_DQUOTE, - STATE(6723), 1, + STATE(6645), 1, sym_comment, - STATE(6724), 1, + STATE(6646), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221956] = 5, + [220798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10837), 1, + ACTIONS(10801), 1, anon_sym_DQUOTE, - STATE(6724), 1, + STATE(6646), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [221973] = 3, - ACTIONS(247), 1, + [220815] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6725), 1, + STATE(6647), 1, sym_comment, - ACTIONS(10839), 4, + ACTIONS(10803), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [221986] = 5, + [220828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10841), 1, + ACTIONS(10805), 1, anon_sym_DQUOTE, - STATE(6726), 1, + STATE(6648), 1, sym_comment, - STATE(6727), 1, + STATE(6649), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222003] = 5, + [220845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10843), 1, + ACTIONS(10807), 1, anon_sym_DQUOTE, - STATE(6727), 1, + STATE(6649), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222020] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6728), 1, - sym_comment, - ACTIONS(10845), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [222033] = 5, + [220862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10847), 1, + ACTIONS(10809), 1, anon_sym_DQUOTE, - STATE(6729), 1, + STATE(6650), 1, sym_comment, - STATE(6730), 1, + STATE(6651), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222050] = 5, + [220879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10849), 1, + ACTIONS(10811), 1, anon_sym_DQUOTE, - STATE(6730), 1, + STATE(6651), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222067] = 5, + [220896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10851), 1, + ACTIONS(10813), 1, anon_sym_DQUOTE, - STATE(6731), 1, + STATE(6652), 1, sym_comment, - STATE(6732), 1, + STATE(6653), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222084] = 5, + [220913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10853), 1, + ACTIONS(10815), 1, anon_sym_DQUOTE, - STATE(6732), 1, + STATE(6653), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222101] = 5, + [220930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10855), 1, + ACTIONS(10817), 1, anon_sym_DQUOTE, - STATE(6733), 1, + STATE(6654), 1, sym_comment, - STATE(6734), 1, + STATE(6655), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222118] = 5, + [220947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10857), 1, + ACTIONS(10819), 1, anon_sym_DQUOTE, - STATE(6734), 1, + STATE(6655), 1, sym_comment, - STATE(6814), 1, + STATE(6665), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10131), 2, sym__escaped_str_content, sym_escape_sequence, - [222135] = 5, + [220964] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6656), 1, + sym_comment, + ACTIONS(10821), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220977] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6657), 1, + sym_comment, + ACTIONS(10823), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [220990] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6658), 1, + sym_comment, + ACTIONS(10825), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221003] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6659), 1, + sym_comment, + ACTIONS(10827), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10859), 1, - anon_sym_DQUOTE, - STATE(6735), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(2403), 1, + anon_sym_RBRACE, + ACTIONS(2405), 1, + sym__entry_separator, + STATE(6660), 1, sym_comment, - STATE(6736), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [222152] = 5, + STATE(7875), 1, + sym__expr_parenthesized_immediate, + [221035] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3171), 1, + sym_parameter_parens, + STATE(3182), 1, + sym_parameter_bracks, + STATE(6661), 1, + sym_comment, + [221054] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6662), 1, + sym_comment, + ACTIONS(10829), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221067] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6663), 1, + sym_comment, + ACTIONS(10831), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221080] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + ACTIONS(10833), 1, + anon_sym_LBRACE, + STATE(6664), 1, + sym_comment, + ACTIONS(6652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10861), 1, + ACTIONS(10835), 1, anon_sym_DQUOTE, - STATE(6736), 1, - sym_comment, - STATE(6814), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10125), 2, + ACTIONS(10837), 2, sym__escaped_str_content, sym_escape_sequence, - [222169] = 3, - ACTIONS(247), 1, + STATE(6665), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [221112] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6737), 1, + STATE(6666), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221127] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6667), 1, sym_comment, - ACTIONS(10609), 4, + ACTIONS(10840), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222182] = 3, - ACTIONS(247), 1, + [221140] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6738), 1, + ACTIONS(9666), 1, + anon_sym_LBRACE, + STATE(4897), 1, + sym__blosure, + STATE(4904), 1, + sym_block, + STATE(4906), 1, + sym_val_closure, + STATE(6668), 1, + sym_comment, + [221159] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6669), 1, + sym_comment, + ACTIONS(10842), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221172] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6670), 1, + sym_comment, + ACTIONS(10840), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221185] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6671), 1, sym_comment, - ACTIONS(10609), 4, + ACTIONS(10844), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222195] = 3, - ACTIONS(247), 1, + [221198] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5020), 1, + sym__space, + ACTIONS(5022), 1, + sym__newline, + ACTIONS(10846), 1, + anon_sym_EQ2, + ACTIONS(10848), 1, + sym_short_flag_identifier, + STATE(6672), 1, + sym_comment, + [221217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6673), 1, + sym_comment, + ACTIONS(1890), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1892), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221232] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3173), 1, + sym_parameter_bracks, + STATE(3181), 1, + sym_parameter_parens, + STATE(6674), 1, + sym_comment, + [221251] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10850), 1, + anon_sym_LBRACK, + ACTIONS(10852), 1, + anon_sym_LPAREN, + STATE(6101), 1, + sym_parameter_parens, + STATE(6102), 1, + sym_parameter_bracks, + STATE(6675), 1, + sym_comment, + [221270] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3176), 1, + sym_parameter_bracks, + STATE(3187), 1, + sym_parameter_parens, + STATE(6676), 1, + sym_comment, + [221289] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3172), 1, + sym_parameter_parens, + STATE(3179), 1, + sym_parameter_bracks, + STATE(6677), 1, + sym_comment, + [221308] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10850), 1, + anon_sym_LBRACK, + ACTIONS(10852), 1, + anon_sym_LPAREN, + STATE(6100), 1, + sym_parameter_parens, + STATE(6112), 1, + sym_parameter_bracks, + STATE(6678), 1, + sym_comment, + [221327] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2345), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2349), 1, + sym__entry_separator, + ACTIONS(2351), 1, + aux_sym__unquoted_in_record_token4, + STATE(6679), 1, + sym_comment, + [221346] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10854), 1, + anon_sym_LPAREN, + STATE(6680), 1, + sym_comment, + ACTIONS(10856), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [221361] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3180), 1, + sym_parameter_parens, + STATE(3185), 1, + sym_parameter_bracks, + STATE(6681), 1, + sym_comment, + [221380] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2353), 1, + anon_sym_RBRACE, + ACTIONS(2355), 1, + sym__entry_separator, + STATE(6682), 1, + sym_comment, + [221399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6683), 1, + sym_comment, + ACTIONS(1919), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1921), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221414] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(4696), 1, + sym_block, + STATE(6684), 1, + sym_comment, STATE(6739), 1, + aux_sym_shebang_repeat1, + [221433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6685), 1, + sym_comment, + ACTIONS(1968), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1970), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221448] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10858), 1, + anon_sym_DOT, + STATE(6686), 1, + sym_comment, + ACTIONS(1874), 2, + sym__newline, + anon_sym_LBRACE, + [221465] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6687), 1, + sym_comment, + ACTIONS(10860), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221478] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, + ACTIONS(10123), 1, + aux_sym__immediate_decimal_token2, + STATE(6688), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [221495] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6689), 1, + sym_comment, + ACTIONS(10862), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221508] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1788), 1, + anon_sym_DASH2, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, + STATE(6690), 1, + sym_comment, + ACTIONS(1800), 2, + sym_identifier, + anon_sym_DASH_DASH, + [221525] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6691), 1, + sym_comment, + ACTIONS(6377), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [221538] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6692), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221551] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6693), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221564] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6694), 1, + sym_comment, + ACTIONS(1518), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1520), 2, + anon_sym_DOT, + sym__entry_separator, + [221579] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + STATE(6695), 1, + sym_comment, + ACTIONS(1948), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221594] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6696), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1874), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221609] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6697), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221622] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10866), 1, + anon_sym_LPAREN, + STATE(6698), 1, + sym_comment, + ACTIONS(10868), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [221637] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(637), 1, + ts_builtin_sym_end, + STATE(198), 1, + aux_sym__block_body_repeat1, + STATE(6699), 1, + sym_comment, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [221654] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6700), 1, + sym_comment, + ACTIONS(1522), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1524), 2, + anon_sym_DOT, + sym__entry_separator, + [221669] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6701), 1, + sym_comment, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221682] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10870), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6702), 1, + sym_comment, + [221701] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(2310), 1, + sym__entry_separator, + STATE(6703), 1, + sym_comment, + STATE(7637), 1, + sym__expr_parenthesized_immediate, + [221720] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6704), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221733] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6705), 1, + sym_comment, + ACTIONS(10363), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221746] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6706), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221759] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6707), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221772] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6708), 1, + sym_comment, + ACTIONS(10872), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221785] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6709), 1, + sym_comment, + ACTIONS(10874), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221798] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6710), 1, + sym_comment, + ACTIONS(10876), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [221811] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6711), 1, sym_comment, - ACTIONS(10863), 4, + ACTIONS(10878), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [222208] = 4, + [221824] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6712), 1, + sym_comment, + ACTIONS(10880), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221837] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6713), 1, + sym_comment, + ACTIONS(10882), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221850] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6714), 1, + sym_comment, + ACTIONS(10884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221863] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6715), 1, + sym_comment, + ACTIONS(10884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, aux_sym_unquoted_token4, + STATE(6716), 1, + sym_comment, + ACTIONS(2337), 2, + anon_sym_if, + anon_sym_EQ_GT, + [221893] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1538), 1, + anon_sym_RBRACE, + ACTIONS(1540), 1, + sym__entry_separator, + ACTIONS(2329), 1, + anon_sym_LPAREN2, + ACTIONS(2331), 1, + aux_sym__unquoted_in_record_token4, + STATE(6717), 1, + sym_comment, + [221912] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6718), 1, + sym_comment, + ACTIONS(10886), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221925] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6719), 1, + sym_comment, + ACTIONS(10888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221938] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6720), 1, + sym_comment, + ACTIONS(10890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221951] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(10892), 1, + anon_sym_LBRACK, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(6721), 1, + sym_comment, + STATE(7939), 1, + sym_val_list, + [221970] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1728), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1940), 1, + anon_sym_RBRACE, + ACTIONS(1942), 1, + anon_sym_LPAREN2, + ACTIONS(1948), 1, + sym__entry_separator, + STATE(6722), 1, + sym_comment, + [221989] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6723), 1, + sym_comment, + ACTIONS(6379), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [222002] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1744), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2357), 1, + anon_sym_RBRACK, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + ACTIONS(2361), 1, + sym__entry_separator, + STATE(6724), 1, + sym_comment, + [222021] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6725), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222034] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6726), 1, + sym_comment, + ACTIONS(5729), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [222047] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + STATE(6727), 1, + sym_comment, + ACTIONS(2361), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222062] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7928), 1, + sym__entry_separator, + ACTIONS(7930), 1, + anon_sym_RBRACK, + STATE(6728), 1, + sym_comment, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + [222081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6729), 1, + sym_comment, + ACTIONS(1890), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [222096] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6730), 1, + sym_comment, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222109] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6731), 1, + sym_comment, + ACTIONS(10884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222122] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + ACTIONS(10894), 1, + anon_sym_LBRACE, + STATE(6732), 1, + sym_comment, + ACTIONS(6652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222139] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(4735), 1, + sym_block, + STATE(6493), 1, + aux_sym_shebang_repeat1, + STATE(6733), 1, + sym_comment, + [222158] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_RPAREN, + ACTIONS(10896), 2, + sym__newline, + anon_sym_SEMI, + STATE(6734), 2, + sym_comment, + aux_sym__block_body_repeat1, + [222173] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6735), 1, + sym_comment, + ACTIONS(10899), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222186] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6736), 1, + sym_comment, + ACTIONS(10901), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222199] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10903), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6737), 1, + sym_comment, + [222218] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6738), 1, + sym_comment, + [222237] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(4790), 1, + sym_block, + STATE(6739), 1, + sym_comment, + [222256] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DASH2, + ACTIONS(10907), 1, + anon_sym_EQ2, STATE(6740), 1, sym_comment, - ACTIONS(2246), 3, + ACTIONS(5050), 2, sym_identifier, anon_sym_DASH_DASH, - anon_sym_DASH2, - [222223] = 4, + [222273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, STATE(6741), 1, sym_comment, - ACTIONS(2254), 3, + [222292] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10911), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6742), 1, + sym_comment, + [222311] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(5040), 1, + anon_sym_DASH2, + ACTIONS(10913), 1, + anon_sym_EQ2, + STATE(6743), 1, + sym_comment, + ACTIONS(5038), 2, sym_identifier, anon_sym_DASH_DASH, - anon_sym_DASH2, - [222238] = 3, - ACTIONS(247), 1, + [222328] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6742), 1, + STATE(6744), 1, sym_comment, - ACTIONS(10865), 4, + ACTIONS(10884), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222251] = 3, - ACTIONS(247), 1, + [222341] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6743), 1, + STATE(6745), 1, sym_comment, - ACTIONS(10867), 4, + ACTIONS(10915), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222264] = 3, - ACTIONS(247), 1, + [222354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6744), 1, + STATE(6746), 1, sym_comment, - ACTIONS(10869), 4, + ACTIONS(10917), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222277] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10157), 1, - anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3173), 1, - sym_parameter_parens, - STATE(3174), 1, - sym_parameter_bracks, - STATE(6745), 1, - sym_comment, - [222296] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6653), 1, - anon_sym_DOT_DOT2, - ACTIONS(10871), 1, - anon_sym_LBRACE, - STATE(6746), 1, - sym_comment, - ACTIONS(6637), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [222313] = 3, - ACTIONS(247), 1, + [222367] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6747), 1, sym_comment, - ACTIONS(10873), 4, + ACTIONS(10919), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222326] = 3, - ACTIONS(247), 1, + [222380] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2409), 1, + anon_sym_PIPE, STATE(6748), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222339] = 3, - ACTIONS(247), 1, + ACTIONS(2407), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [222395] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2337), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2341), 1, + sym__entry_separator, + ACTIONS(2343), 1, + aux_sym__unquoted_in_list_token4, STATE(6749), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222352] = 3, - ACTIONS(247), 1, + [222414] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7944), 1, + sym__entry_separator, + ACTIONS(7946), 1, + anon_sym_RBRACK, STATE(6750), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222365] = 3, - ACTIONS(247), 1, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + [222433] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2369), 1, + anon_sym_RBRACK, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2373), 1, + sym__entry_separator, + ACTIONS(2375), 1, + aux_sym__unquoted_in_list_token2, STATE(6751), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222378] = 3, - ACTIONS(247), 1, + [222452] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10921), 1, + anon_sym_LBRACE, + STATE(5048), 1, + sym_block, + STATE(5049), 1, + sym_val_closure, + STATE(5055), 1, + sym__blosure, STATE(6752), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222391] = 3, - ACTIONS(247), 1, + [222471] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(6753), 1, sym_comment, - ACTIONS(10873), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222404] = 3, - ACTIONS(247), 1, + ACTIONS(1538), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [222486] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6754), 1, sym_comment, - ACTIONS(10873), 4, + ACTIONS(10919), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222417] = 3, - ACTIONS(247), 1, + [222499] = 6, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3183), 1, + sym_parameter_parens, + STATE(3184), 1, + sym_parameter_bracks, STATE(6755), 1, sym_comment, - ACTIONS(5658), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [222430] = 3, - ACTIONS(247), 1, + [222518] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2333), 1, + anon_sym_RBRACE, + ACTIONS(2335), 1, + sym__entry_separator, STATE(6756), 1, sym_comment, - ACTIONS(10875), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222443] = 3, - ACTIONS(247), 1, + [222537] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6757), 1, sym_comment, - ACTIONS(10877), 4, + ACTIONS(10923), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222456] = 6, - ACTIONS(247), 1, + [222550] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10157), 1, - anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3171), 1, - sym_parameter_parens, - STATE(3180), 1, - sym_parameter_bracks, + ACTIONS(1950), 1, + anon_sym_RBRACE, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1958), 1, + sym__entry_separator, + ACTIONS(1960), 1, + aux_sym__unquoted_in_record_token2, STATE(6758), 1, sym_comment, - [222475] = 6, - ACTIONS(247), 1, + [222569] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(10389), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, + ACTIONS(10391), 1, anon_sym_LPAREN, - STATE(3182), 1, + STATE(3186), 1, sym_parameter_parens, - STATE(3184), 1, + STATE(3188), 1, sym_parameter_bracks, STATE(6759), 1, sym_comment, - [222494] = 4, + [222588] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10925), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, STATE(6760), 1, sym_comment, - ACTIONS(2268), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2270), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222509] = 6, - ACTIONS(247), 1, + [222607] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10157), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3172), 1, - sym_parameter_bracks, - STATE(3183), 1, - sym_parameter_parens, + ACTIONS(10927), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, STATE(6761), 1, sym_comment, - [222528] = 3, - ACTIONS(247), 1, + [222626] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, STATE(6762), 1, sym_comment, - ACTIONS(5689), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [222541] = 6, - ACTIONS(247), 1, + [222645] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10157), 1, - anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3177), 1, - sym_parameter_parens, - STATE(3178), 1, - sym_parameter_bracks, + ACTIONS(5020), 1, + anon_sym_DOLLAR, + ACTIONS(5022), 1, + sym_identifier, + ACTIONS(10931), 1, + anon_sym_EQ2, + ACTIONS(10933), 1, + sym_short_flag_identifier, STATE(6763), 1, sym_comment, - [222560] = 6, - ACTIONS(3), 1, + [222664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(2199), 1, - anon_sym_RBRACE, - ACTIONS(2201), 1, - sym__entry_separator, STATE(6764), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - [222579] = 6, + ACTIONS(10901), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10879), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10935), 1, + anon_sym_DQUOTE, + STATE(6379), 1, + aux_sym__str_double_quotes_repeat1, STATE(6765), 1, sym_comment, - [222598] = 6, + ACTIONS(10131), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(2207), 1, - anon_sym_RBRACE, - ACTIONS(2209), 1, - sym__entry_separator, STATE(6766), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - [222617] = 6, + ACTIONS(1919), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1921), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [222709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10881), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(6767), 1, sym_comment, - [222636] = 6, - ACTIONS(3), 1, + ACTIONS(2345), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [222724] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10883), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1256), 1, + ts_builtin_sym_end, + STATE(226), 1, + aux_sym__block_body_repeat1, STATE(6768), 1, sym_comment, - [222655] = 5, - ACTIONS(247), 1, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [222741] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(10035), 1, - aux_sym__immediate_decimal_token2, STATE(6769), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [222672] = 3, + ACTIONS(10937), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222754] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(6770), 1, sym_comment, - ACTIONS(2268), 4, + ACTIONS(2337), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, - aux_sym_unquoted_token4, - [222685] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10885), 1, - anon_sym_RPAREN, - STATE(6771), 1, - sym_comment, - STATE(6778), 1, - aux_sym__block_body_repeat1, - ACTIONS(10147), 2, - sym__newline, - anon_sym_SEMI, - [222702] = 6, + [222769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(5538), 1, anon_sym_LPAREN2, - ACTIONS(2165), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, sym__entry_separator, - STATE(6772), 1, + STATE(6771), 1, sym_comment, - STATE(7611), 1, + STATE(7535), 1, sym__expr_parenthesized_immediate, - [222721] = 3, - ACTIONS(247), 1, + [222788] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6773), 1, + ACTIONS(10389), 1, + anon_sym_LBRACK, + ACTIONS(10391), 1, + anon_sym_LPAREN, + STATE(3177), 1, + sym_parameter_bracks, + STATE(3178), 1, + sym_parameter_parens, + STATE(6772), 1, sym_comment, - ACTIONS(10887), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [222734] = 6, + [222807] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 1, - anon_sym_RBRACK, - ACTIONS(1822), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, + ACTIONS(6530), 1, sym__entry_separator, - STATE(6774), 1, - sym_comment, - [222753] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9055), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10889), 1, - anon_sym_DOT, - STATE(6775), 1, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10939), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6773), 1, sym_comment, - ACTIONS(1767), 2, - sym__newline, - anon_sym_LBRACE, - [222770] = 3, - ACTIONS(247), 1, + [222826] = 6, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6776), 1, - sym_comment, - ACTIONS(5662), 4, - ts_builtin_sym_end, + ACTIONS(3965), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6216), 1, anon_sym_LBRACE, - [222783] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(10891), 1, - anon_sym_EQ, - ACTIONS(10893), 1, - anon_sym_COLON, - STATE(4049), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(6777), 1, + STATE(4667), 1, + sym_block, + STATE(6774), 1, sym_comment, - [222802] = 4, - ACTIONS(247), 1, + [222845] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1463), 1, - anon_sym_RPAREN, - ACTIONS(10895), 2, + STATE(6775), 1, + sym_comment, + ACTIONS(10840), 4, sym__newline, anon_sym_SEMI, - STATE(6778), 2, - sym_comment, - aux_sym__block_body_repeat1, - [222817] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222858] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2230), 1, - anon_sym_RBRACK, - ACTIONS(2232), 1, - sym__entry_separator, - STATE(6779), 1, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + ACTIONS(10941), 1, + aux_sym__immediate_decimal_token2, + STATE(6776), 1, sym_comment, - [222836] = 5, - ACTIONS(247), 1, + ACTIONS(1921), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222875] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_DASH2, - ACTIONS(10898), 1, - anon_sym_EQ2, - STATE(6780), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(6777), 1, sym_comment, - ACTIONS(4996), 2, + ACTIONS(2353), 3, sym_identifier, anon_sym_DASH_DASH, - [222853] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5058), 1, anon_sym_DASH2, - ACTIONS(10900), 1, - anon_sym_EQ2, - STATE(6781), 1, - sym_comment, - ACTIONS(5056), 2, - sym_identifier, - anon_sym_DASH_DASH, - [222870] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, - sym__newline, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(4700), 1, - sym_block, - STATE(6782), 1, - sym_comment, - [222889] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6783), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1008), 2, - anon_sym_DOT, - sym__entry_separator, - [222904] = 5, - ACTIONS(247), 1, + [222890] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1459), 1, - ts_builtin_sym_end, - STATE(280), 1, - aux_sym__block_body_repeat1, - STATE(6784), 1, + STATE(6778), 1, sym_comment, - ACTIONS(25), 2, + ACTIONS(10840), 4, sym__newline, anon_sym_SEMI, - [222921] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10902), 1, - anon_sym_DQUOTE, - STATE(6270), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6785), 1, - sym_comment, - ACTIONS(10125), 2, - sym__escaped_str_content, - sym_escape_sequence, - [222938] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10904), 1, + ACTIONS(10943), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6786), 1, + STATE(6779), 1, sym_comment, - [222957] = 6, + [222922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(1744), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2357), 1, + anon_sym_RBRACE, + ACTIONS(2359), 1, + anon_sym_LPAREN2, + ACTIONS(2361), 1, sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10906), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6787), 1, + STATE(6780), 1, sym_comment, - [222976] = 6, + [222941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2427), 1, sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10908), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6788), 1, + ACTIONS(10945), 1, + anon_sym_LBRACK2, + STATE(6781), 1, sym_comment, - [222995] = 6, + ACTIONS(2423), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222958] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10910), 1, + ACTIONS(10947), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6789), 1, + STATE(6782), 1, sym_comment, - [223014] = 6, - ACTIONS(3), 1, + [222977] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10912), 1, + ACTIONS(10949), 1, anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6790), 1, + STATE(5200), 1, + aux_sym_parameter_repeat2, + STATE(6783), 1, sym_comment, - [223033] = 6, + ACTIONS(2655), 2, + sym__newline, + anon_sym_COMMA, + [222994] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10914), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6791), 1, + ACTIONS(2349), 1, + anon_sym_PIPE, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(6784), 1, sym_comment, - [223052] = 6, + ACTIONS(2345), 2, + anon_sym_if, + anon_sym_EQ_GT, + [223011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACK, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, - sym__entry_separator, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - STATE(6792), 1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2355), 1, + anon_sym_PIPE, + STATE(6785), 1, sym_comment, - [223071] = 6, - ACTIONS(3), 1, + ACTIONS(2353), 2, + anon_sym_if, + anon_sym_EQ_GT, + [223028] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2254), 1, - anon_sym_RBRACK, - ACTIONS(2256), 1, - sym__entry_separator, - STATE(6793), 1, + ACTIONS(9552), 1, + anon_sym_RPAREN, + STATE(6734), 1, + aux_sym__block_body_repeat1, + STATE(6786), 1, sym_comment, - [223090] = 6, - ACTIONS(247), 1, + ACTIONS(10181), 2, + sym__newline, + anon_sym_SEMI, + [223045] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10157), 1, - anon_sym_LBRACK, - ACTIONS(10159), 1, - anon_sym_LPAREN, - STATE(3186), 1, - sym_parameter_parens, - STATE(3188), 1, - sym_parameter_bracks, - STATE(6794), 1, + STATE(6787), 1, sym_comment, - [223109] = 6, - ACTIONS(3), 1, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223058] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5924), 1, - sym__entry_separator, - STATE(6795), 1, + STATE(6788), 1, sym_comment, - STATE(7651), 1, - sym__expr_parenthesized_immediate, - [223128] = 6, - ACTIONS(247), 1, + ACTIONS(10951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223071] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10161), 1, - anon_sym_LBRACK, - ACTIONS(10163), 1, - anon_sym_LPAREN, - STATE(6063), 1, - sym_parameter_parens, - STATE(6069), 1, - sym_parameter_bracks, - STATE(6796), 1, + STATE(6789), 1, + sym_comment, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223084] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6790), 1, + sym_comment, + ACTIONS(10953), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223097] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6791), 1, sym_comment, - [223147] = 6, + ACTIONS(10955), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223110] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + STATE(6792), 1, + sym_comment, + ACTIONS(1968), 2, anon_sym_RBRACK, - ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1970), 2, anon_sym_LPAREN2, - ACTIONS(1810), 1, sym__entry_separator, - ACTIONS(1812), 1, - aux_sym__unquoted_in_list_token2, - STATE(6797), 1, - sym_comment, - [223166] = 6, - ACTIONS(247), 1, + [223125] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(5049), 1, + STATE(5144), 1, sym_block, - STATE(6798), 1, + STATE(6793), 1, sym_comment, - STATE(6800), 1, + STATE(6795), 1, aux_sym_shebang_repeat1, - [223185] = 6, - ACTIONS(3), 1, + [223144] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - ACTIONS(10916), 1, - anon_sym_RBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, - STATE(6799), 1, + STATE(6794), 1, sym_comment, - [223204] = 6, - ACTIONS(247), 1, + ACTIONS(10957), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223157] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(5059), 1, + STATE(5146), 1, sym_block, - STATE(6800), 1, + STATE(6795), 1, sym_comment, - [223223] = 6, - ACTIONS(247), 1, + [223176] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(5060), 1, + STATE(5147), 1, sym_block, - STATE(6801), 1, + STATE(6796), 1, sym_comment, - STATE(6802), 1, + STATE(6797), 1, aux_sym_shebang_repeat1, - [223242] = 6, - ACTIONS(247), 1, + [223195] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(5073), 1, + STATE(5153), 1, sym_block, - STATE(6802), 1, + STATE(6797), 1, sym_comment, - [223261] = 6, - ACTIONS(247), 1, + [223214] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(10115), 1, + ACTIONS(10892), 1, anon_sym_LBRACK, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(6803), 1, + STATE(6798), 1, sym_comment, - STATE(7756), 1, + STATE(7757), 1, sym_val_list, - [223280] = 4, + [223233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_PIPE, - STATE(6804), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(10155), 1, + anon_sym_LBRACK, + ACTIONS(10959), 1, + anon_sym_RBRACK, + STATE(3402), 1, + aux_sym__multiple_types_repeat1, + STATE(6799), 1, sym_comment, - ACTIONS(2268), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [223295] = 6, + [223252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(2173), 1, + STATE(6800), 1, + sym_comment, + ACTIONS(1526), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(2175), 1, + ACTIONS(1528), 2, + anon_sym_DOT, sym__entry_separator, - STATE(6805), 1, + [223267] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6801), 1, sym_comment, - STATE(7611), 1, - sym__expr_parenthesized_immediate, - [223314] = 6, - ACTIONS(247), 1, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223280] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10918), 1, - anon_sym_use, - ACTIONS(10920), 1, - anon_sym_list, - ACTIONS(10922), 1, - anon_sym_hide, - ACTIONS(10924), 1, - anon_sym_new, - STATE(6806), 1, + STATE(6802), 1, sym_comment, - [223333] = 6, - ACTIONS(247), 1, + ACTIONS(10923), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223293] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(4949), 1, + STATE(4914), 1, sym_block, - STATE(6807), 1, + STATE(6803), 1, sym_comment, - STATE(6808), 1, + STATE(6804), 1, aux_sym_shebang_repeat1, - [223352] = 6, - ACTIONS(247), 1, + [223312] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4951), 1, + STATE(4916), 1, sym_block, - STATE(6808), 1, + STATE(6804), 1, sym_comment, - [223371] = 6, - ACTIONS(247), 1, + [223331] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(4952), 1, + STATE(4917), 1, sym_block, - STATE(6809), 1, + STATE(6805), 1, sym_comment, - STATE(6810), 1, + STATE(6806), 1, aux_sym_shebang_repeat1, - [223390] = 6, - ACTIONS(247), 1, + [223350] = 6, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(3965), 1, sym__newline, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(1761), 1, + STATE(1760), 1, aux_sym_shebang_repeat1, - STATE(4956), 1, + STATE(4921), 1, sym_block, - STATE(6810), 1, + STATE(6806), 1, + sym_comment, + [223369] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6807), 1, sym_comment, - [223409] = 5, - ACTIONS(247), 1, + ACTIONS(10961), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223382] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1828), 1, + ACTIONS(1948), 1, anon_sym_EQ_GT, - ACTIONS(10926), 1, + ACTIONS(10963), 1, anon_sym_DOT_DOT2, - STATE(6811), 1, + STATE(6808), 1, sym_comment, - ACTIONS(10928), 2, + ACTIONS(10965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [223426] = 5, - ACTIONS(247), 1, + [223399] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1958), 1, anon_sym_EQ_GT, - ACTIONS(10930), 1, + ACTIONS(10967), 1, anon_sym_DOT_DOT2, - STATE(6812), 1, + STATE(6809), 1, sym_comment, - ACTIONS(10932), 2, + ACTIONS(10969), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [223443] = 5, - ACTIONS(247), 1, + [223416] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10934), 1, - anon_sym_RBRACK, - STATE(5202), 1, - aux_sym_parameter_repeat2, - STATE(6813), 1, + STATE(6810), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(10923), 4, sym__newline, - anon_sym_COMMA, - [223460] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10936), 1, - anon_sym_DQUOTE, - ACTIONS(10938), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6814), 2, - sym_comment, - aux_sym__str_double_quotes_repeat1, - [223475] = 3, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223429] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6815), 1, + STATE(6811), 1, sym_comment, - ACTIONS(8125), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [223488] = 6, - ACTIONS(247), 1, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223442] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8647), 1, - sym_identifier, - ACTIONS(9041), 1, - anon_sym_DOLLAR, - STATE(5398), 1, - sym_val_variable, - STATE(6210), 1, - sym__variable_name, - STATE(6816), 1, + STATE(6812), 1, sym_comment, - [223507] = 6, + ACTIONS(10923), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10177), 1, + ACTIONS(10155), 1, anon_sym_LBRACK, - ACTIONS(10941), 1, + ACTIONS(10971), 1, anon_sym_RBRACK, - STATE(3396), 1, + STATE(3402), 1, aux_sym__multiple_types_repeat1, - STATE(6817), 1, + STATE(6813), 1, sym_comment, - [223526] = 5, + [223474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10943), 1, + ACTIONS(1528), 1, + anon_sym_DOT, + STATE(6814), 1, + sym_comment, + ACTIONS(1526), 3, anon_sym_RBRACK, - STATE(6767), 1, - aux_sym__multiple_types_repeat1, - STATE(6818), 1, + sym__entry_separator, + sym__table_head_separator, + [223489] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6815), 1, sym_comment, - [223542] = 3, + ACTIONS(10147), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223502] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6819), 1, + ACTIONS(4977), 1, + sym__space, + ACTIONS(4979), 1, + sym__newline, + ACTIONS(10973), 1, + sym_long_flag_identifier, + ACTIONS(10975), 1, + anon_sym_EQ2, + STATE(6816), 1, sym_comment, - ACTIONS(2456), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [223554] = 5, + [223521] = 6, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(8674), 1, + sym_identifier, + ACTIONS(9014), 1, + anon_sym_DOLLAR, + STATE(5414), 1, + sym_val_variable, + STATE(6239), 1, + sym__variable_name, + STATE(6817), 1, + sym_comment, + [223540] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6818), 1, + sym_comment, + ACTIONS(10977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10945), 1, + ACTIONS(10979), 1, anon_sym_RBRACK, - STATE(6410), 1, + STATE(6418), 1, aux_sym__multiple_types_repeat1, + STATE(6819), 1, + sym_comment, + [223569] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(6820), 1, sym_comment, - [223570] = 5, + ACTIONS(10923), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223581] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10947), 1, + ACTIONS(10981), 1, anon_sym_RBRACK, - STATE(6411), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, STATE(6821), 1, sym_comment, - [223586] = 5, + [223597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10949), 1, + ACTIONS(10983), 1, anon_sym_RBRACK, - STATE(6412), 1, + STATE(6304), 1, aux_sym__multiple_types_repeat1, STATE(6822), 1, sym_comment, - [223602] = 5, + [223613] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10951), 1, + ACTIONS(10985), 1, anon_sym_RBRACK, - STATE(6413), 1, + STATE(6305), 1, aux_sym__multiple_types_repeat1, STATE(6823), 1, sym_comment, - [223618] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10953), 1, - anon_sym_RBRACK, - ACTIONS(10955), 1, - sym_hex_digit, - STATE(6824), 1, - sym_comment, - STATE(6839), 1, - aux_sym_val_binary_repeat1, - [223634] = 5, + [223629] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10957), 1, + ACTIONS(10987), 1, anon_sym_RBRACK, - STATE(6414), 1, + STATE(6306), 1, aux_sym__multiple_types_repeat1, + STATE(6824), 1, + sym_comment, + [223645] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(6825), 1, sym_comment, - [223650] = 5, + ACTIONS(1800), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [223659] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10959), 1, + ACTIONS(10989), 1, anon_sym_RBRACK, - STATE(6415), 1, + STATE(6307), 1, aux_sym__multiple_types_repeat1, STATE(6826), 1, sym_comment, - [223666] = 4, + [223675] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(10991), 1, + anon_sym_RBRACK, + STATE(6308), 1, + aux_sym__multiple_types_repeat1, STATE(6827), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223680] = 5, - ACTIONS(3), 1, + [223691] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10961), 1, - anon_sym_RBRACK, - STATE(6416), 1, - aux_sym__multiple_types_repeat1, STATE(6828), 1, sym_comment, - [223696] = 4, + ACTIONS(10864), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(2565), 1, sym__entry_separator, STATE(6829), 1, sym_comment, - ACTIONS(1927), 2, + ACTIONS(2563), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [223710] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6830), 1, - sym_comment, - ACTIONS(10119), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223722] = 5, + [223717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10963), 1, + ACTIONS(10993), 1, anon_sym_RBRACK, - STATE(6312), 1, + STATE(6309), 1, aux_sym__multiple_types_repeat1, + STATE(6830), 1, + sym_comment, + [223733] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1248), 1, + anon_sym_RPAREN, STATE(6831), 1, sym_comment, - [223738] = 4, - ACTIONS(3), 1, + ACTIONS(1241), 2, + sym__newline, + anon_sym_SEMI, + [223747] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1944), 1, - sym__entry_separator, STATE(6832), 1, sym_comment, - ACTIONS(1942), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223752] = 4, - ACTIONS(247), 1, + ACTIONS(1248), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [223759] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10965), 1, - anon_sym_EQ2, STATE(6833), 1, sym_comment, - ACTIONS(4996), 2, - sym_identifier, - anon_sym_DOLLAR, - [223766] = 3, - ACTIONS(247), 1, + ACTIONS(10864), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223771] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6834), 1, sym_comment, @@ -419954,13223 +558032,13237 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223778] = 5, - ACTIONS(3), 1, + [223783] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(7236), 1, - aux_sym_unquoted_token4, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(10995), 1, + anon_sym_GT2, STATE(6835), 1, sym_comment, - STATE(7498), 1, - sym__expr_parenthesized_immediate, - [223794] = 3, - ACTIONS(247), 1, + STATE(7723), 1, + sym_param_cmd, + [223799] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6836), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10901), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223806] = 3, - ACTIONS(247), 1, + [223811] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6837), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10864), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223818] = 5, - ACTIONS(247), 1, + [223823] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(10967), 1, - anon_sym_RBRACK, + ACTIONS(2637), 1, + sym__entry_separator, STATE(6838), 1, sym_comment, - STATE(6844), 1, - aux_sym_val_binary_repeat1, - [223834] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10969), 1, + ACTIONS(2635), 2, anon_sym_RBRACK, - ACTIONS(10971), 1, - sym_hex_digit, - STATE(6839), 2, + anon_sym_RBRACE, + [223837] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2345), 1, + anon_sym_EQ_GT, + ACTIONS(2349), 1, + anon_sym_PIPE, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + STATE(6839), 1, sym_comment, - aux_sym_val_binary_repeat1, - [223848] = 4, + [223853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10199), 1, - anon_sym_LPAREN, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1800), 1, + sym__entry_separator, + ACTIONS(8768), 1, + aux_sym__unquoted_in_record_token2, STATE(6840), 1, sym_comment, - ACTIONS(10201), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [223862] = 4, - ACTIONS(247), 1, + [223869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, + ACTIONS(2448), 1, + anon_sym_RBRACE, STATE(6841), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_LBRACE, + ACTIONS(2450), 2, anon_sym_LPAREN2, - [223876] = 3, - ACTIONS(247), 1, + sym__entry_separator, + [223883] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10997), 1, + anon_sym_RBRACK, + ACTIONS(10999), 1, + sym_hex_digit, STATE(6842), 1, sym_comment, - ACTIONS(10109), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223888] = 5, + STATE(6848), 1, + aux_sym_val_binary_repeat1, + [223899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4553), 1, + ACTIONS(2351), 1, aux_sym_unquoted_token4, + ACTIONS(2353), 1, + anon_sym_EQ_GT, + ACTIONS(2355), 1, + anon_sym_PIPE, STATE(6843), 1, sym_comment, - STATE(7673), 1, - sym__expr_parenthesized_immediate, - [223904] = 5, - ACTIONS(247), 1, + [223915] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(10974), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2020), 1, + sym__entry_separator, STATE(6844), 1, sym_comment, - [223920] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(10976), 1, + ACTIONS(2018), 2, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, - STATE(6845), 1, + anon_sym_RBRACE, + [223929] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(11001), 1, + anon_sym_PIPE, + ACTIONS(11004), 1, + anon_sym_EQ_GT, + STATE(6845), 2, sym_comment, - [223936] = 5, + aux_sym_match_pattern_repeat1, + [223943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10978), 1, + ACTIONS(11006), 1, anon_sym_RBRACK, - STATE(6427), 1, + STATE(6586), 1, aux_sym__multiple_types_repeat1, STATE(6846), 1, sym_comment, - [223952] = 5, + [223959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10980), 1, - anon_sym_RBRACK, - STATE(6428), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4291), 1, + aux_sym_unquoted_token4, STATE(6847), 1, sym_comment, - [223968] = 5, - ACTIONS(3), 1, + STATE(7490), 1, + sym__expr_parenthesized_immediate, + [223975] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10982), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11008), 1, anon_sym_RBRACK, - STATE(6429), 1, - aux_sym__multiple_types_repeat1, STATE(6848), 1, sym_comment, - [223984] = 5, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [223991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(10984), 1, - anon_sym_RBRACK, - STATE(6430), 1, + ACTIONS(6101), 1, + anon_sym_RBRACE, + STATE(3004), 1, aux_sym__multiple_types_repeat1, STATE(6849), 1, sym_comment, - [224000] = 3, - ACTIONS(247), 1, + [224007] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11010), 1, + anon_sym_RBRACK, + STATE(6325), 1, + aux_sym__multiple_types_repeat1, STATE(6850), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224012] = 5, + [224023] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10986), 1, + ACTIONS(11012), 1, anon_sym_RBRACK, - STATE(6431), 1, + STATE(6326), 1, aux_sym__multiple_types_repeat1, STATE(6851), 1, sym_comment, - [224028] = 5, - ACTIONS(247), 1, + [224039] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1534), 1, - anon_sym_SEMI, - ACTIONS(3929), 1, - sym__newline, - STATE(1761), 1, - aux_sym_shebang_repeat1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11014), 1, + anon_sym_RBRACK, + STATE(6327), 1, + aux_sym__multiple_types_repeat1, STATE(6852), 1, sym_comment, - [224044] = 5, + [224055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10988), 1, + ACTIONS(11016), 1, anon_sym_RBRACK, - STATE(6432), 1, + STATE(6328), 1, aux_sym__multiple_types_repeat1, STATE(6853), 1, sym_comment, - [224060] = 5, + [224071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2470), 1, sym__entry_separator, - ACTIONS(10990), 1, - anon_sym_RBRACK, - STATE(6433), 1, - aux_sym__multiple_types_repeat1, STATE(6854), 1, sym_comment, - [224076] = 5, + ACTIONS(2468), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224085] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(10992), 1, + ACTIONS(11018), 1, anon_sym_RBRACK, - STATE(6434), 1, + STATE(6329), 1, aux_sym__multiple_types_repeat1, STATE(6855), 1, sym_comment, - [224092] = 3, - ACTIONS(247), 1, + [224101] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2470), 1, + sym__entry_separator, STATE(6856), 1, sym_comment, - ACTIONS(10357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224104] = 3, - ACTIONS(247), 1, + ACTIONS(2468), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224115] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(8768), 1, + aux_sym__unquoted_in_record_token4, STATE(6857), 1, sym_comment, - ACTIONS(10139), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224116] = 5, - ACTIONS(247), 1, + STATE(7628), 1, + sym__expr_parenthesized_immediate, + [224131] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_in2, - ACTIONS(10994), 1, - sym_long_flag_identifier, - ACTIONS(10996), 1, - anon_sym_EQ2, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11020), 1, + anon_sym_RBRACK, + STATE(6330), 1, + aux_sym__multiple_types_repeat1, STATE(6858), 1, sym_comment, - [224132] = 5, - ACTIONS(247), 1, + [224147] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_LBRACE, - ACTIONS(10998), 1, - anon_sym_EQ2, - ACTIONS(11000), 1, - sym_short_flag_identifier, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11022), 1, + anon_sym_RBRACK, + STATE(6331), 1, + aux_sym__multiple_types_repeat1, STATE(6859), 1, sym_comment, - [224148] = 3, - ACTIONS(247), 1, + [224163] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11024), 1, + anon_sym_RBRACK, + STATE(6332), 1, + aux_sym__multiple_types_repeat1, STATE(6860), 1, sym_comment, - ACTIONS(10241), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224160] = 4, - ACTIONS(247), 1, + [224179] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, STATE(6861), 1, sym_comment, - ACTIONS(1719), 2, - sym_identifier, - anon_sym_DOLLAR, - [224174] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3929), 1, + ACTIONS(10864), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11002), 1, - anon_sym_COLON, - STATE(1761), 1, - aux_sym_shebang_repeat1, - STATE(6862), 1, - sym_comment, - [224190] = 3, - ACTIONS(247), 1, + anon_sym_SEMI, + [224191] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6863), 1, + STATE(6862), 1, sym_comment, - ACTIONS(10241), 3, + ACTIONS(10385), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224202] = 5, - ACTIONS(247), 1, + [224203] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11004), 1, - anon_sym_RBRACK, - STATE(6864), 1, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6103), 1, + anon_sym_RBRACE, + STATE(3008), 1, + aux_sym__multiple_types_repeat1, + STATE(6863), 1, sym_comment, - STATE(6870), 1, - aux_sym_val_binary_repeat1, - [224218] = 3, - ACTIONS(247), 1, + [224219] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6865), 1, + STATE(6864), 1, sym_comment, - ACTIONS(10511), 3, + ACTIONS(10385), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224230] = 3, - ACTIONS(247), 1, + [224231] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6866), 1, + STATE(6865), 1, sym_comment, - ACTIONS(10511), 3, + ACTIONS(10864), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224242] = 3, - ACTIONS(247), 1, + [224243] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11026), 1, + anon_sym_RBRACK, + STATE(6866), 1, + sym_comment, + STATE(6871), 1, + aux_sym_val_binary_repeat1, + [224259] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6867), 1, sym_comment, - ACTIONS(10209), 3, + ACTIONS(10395), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224254] = 3, - ACTIONS(247), 1, + [224271] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6868), 1, sym_comment, - ACTIONS(10511), 3, + ACTIONS(10884), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224266] = 5, + [224283] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2510), 1, + sym__entry_separator, + STATE(6869), 1, + sym_comment, + ACTIONS(2508), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(6450), 1, + ACTIONS(6502), 1, aux_sym_unquoted_token4, - STATE(6869), 1, + STATE(6870), 1, sym_comment, - STATE(7632), 1, + STATE(7457), 1, sym__expr_parenthesized_immediate, - [224282] = 5, - ACTIONS(247), 1, + [224313] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11006), 1, + ACTIONS(11028), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, - STATE(6870), 1, - sym_comment, - [224298] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(11008), 1, - anon_sym_GT2, STATE(6871), 1, sym_comment, - STATE(7819), 1, - sym_param_cmd, - [224314] = 5, - ACTIONS(3), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [224329] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11010), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11030), 1, anon_sym_RBRACK, - STATE(6445), 1, - aux_sym__multiple_types_repeat1, STATE(6872), 1, sym_comment, - [224330] = 5, + STATE(7145), 1, + aux_sym_val_binary_repeat1, + [224345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11012), 1, + ACTIONS(11032), 1, anon_sym_RBRACK, - STATE(6446), 1, + STATE(6347), 1, aux_sym__multiple_types_repeat1, STATE(6873), 1, sym_comment, - [224346] = 5, - ACTIONS(3), 1, + [224361] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11014), 1, - anon_sym_RBRACK, - STATE(6447), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9540), 1, + anon_sym_LBRACK, STATE(6874), 1, sym_comment, - [224362] = 5, + STATE(7149), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [224377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11016), 1, + ACTIONS(11034), 1, anon_sym_RBRACK, - STATE(6448), 1, + STATE(6348), 1, aux_sym__multiple_types_repeat1, STATE(6875), 1, sym_comment, - [224378] = 5, + [224393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11018), 1, + ACTIONS(11036), 1, anon_sym_RBRACK, - STATE(2803), 1, + STATE(6349), 1, aux_sym__multiple_types_repeat1, STATE(6876), 1, sym_comment, - [224394] = 5, + [224409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11020), 1, + ACTIONS(11038), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6350), 1, aux_sym__multiple_types_repeat1, STATE(6877), 1, sym_comment, - [224410] = 4, + [224425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2446), 1, + ACTIONS(2415), 1, + anon_sym_RBRACE, + ACTIONS(2417), 1, sym__entry_separator, + STATE(609), 1, + aux_sym__multiple_types_repeat1, STATE(6878), 1, sym_comment, - ACTIONS(2444), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224424] = 5, + [224441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11022), 1, + ACTIONS(11040), 1, anon_sym_RBRACK, - STATE(6450), 1, + STATE(6351), 1, aux_sym__multiple_types_repeat1, STATE(6879), 1, sym_comment, - [224440] = 5, + [224457] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6880), 1, + sym_comment, + ACTIONS(10899), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11024), 1, + ACTIONS(11042), 1, anon_sym_RBRACK, - STATE(6451), 1, + STATE(6352), 1, aux_sym__multiple_types_repeat1, - STATE(6880), 1, - sym_comment, - [224456] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(6881), 1, sym_comment, - ACTIONS(10451), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224468] = 3, - ACTIONS(247), 1, + [224485] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11044), 1, + anon_sym_RBRACK, + STATE(6353), 1, + aux_sym__multiple_types_repeat1, STATE(6882), 1, sym_comment, - ACTIONS(10211), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224480] = 5, + [224501] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11026), 1, + ACTIONS(11046), 1, anon_sym_RBRACK, - STATE(6452), 1, + STATE(6354), 1, aux_sym__multiple_types_repeat1, STATE(6883), 1, sym_comment, - [224496] = 4, + [224517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11028), 1, - anon_sym_DQUOTE, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6136), 1, + anon_sym_RBRACE, + STATE(2998), 1, + aux_sym__multiple_types_repeat1, STATE(6884), 1, sym_comment, - ACTIONS(11030), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224510] = 3, - ACTIONS(247), 1, + [224533] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6885), 1, sym_comment, - ACTIONS(10211), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224522] = 3, - ACTIONS(247), 1, + ACTIONS(6172), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224545] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6886), 1, sym_comment, - ACTIONS(10213), 3, + ACTIONS(10269), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224534] = 3, - ACTIONS(247), 1, + [224557] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11048), 1, + anon_sym_RBRACK, + STATE(2864), 1, + aux_sym__multiple_types_repeat1, STATE(6887), 1, sym_comment, - ACTIONS(10213), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224546] = 4, - ACTIONS(247), 1, + [224573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(6138), 1, + anon_sym_RBRACE, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, STATE(6888), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [224560] = 3, - ACTIONS(247), 1, + [224589] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11050), 1, + anon_sym_DQUOTE, STATE(6889), 1, sym_comment, - ACTIONS(10511), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224572] = 5, - ACTIONS(247), 1, + ACTIONS(11052), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224603] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11032), 1, - anon_sym_RBRACK, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, + ACTIONS(5941), 1, + anon_sym_EQ_GT, + ACTIONS(5946), 1, + anon_sym_PIPE, STATE(6890), 1, sym_comment, - STATE(6893), 1, - aux_sym_val_binary_repeat1, - [224588] = 3, - ACTIONS(247), 1, + [224619] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6132), 1, + anon_sym_RBRACK, STATE(6891), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224600] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6892), 1, - sym_comment, - ACTIONS(11034), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [224612] = 5, - ACTIONS(247), 1, + ACTIONS(6134), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [224633] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11036), 1, + ACTIONS(11054), 1, anon_sym_RBRACK, - STATE(6839), 1, + STATE(6892), 1, + sym_comment, + STATE(6896), 1, aux_sym_val_binary_repeat1, + [224649] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token4, STATE(6893), 1, sym_comment, - [224628] = 5, - ACTIONS(3), 1, + STATE(7522), 1, + sym__expr_parenthesized_immediate, + [224665] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11038), 1, - anon_sym_RBRACK, - STATE(6467), 1, - aux_sym__multiple_types_repeat1, STATE(6894), 1, sym_comment, - [224644] = 5, + ACTIONS(10449), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(1721), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11056), 1, + anon_sym_RBRACK, + STATE(6599), 1, + aux_sym__multiple_types_repeat1, STATE(6895), 1, sym_comment, - STATE(7504), 1, - sym__expr_parenthesized_immediate, - [224660] = 5, - ACTIONS(3), 1, + [224693] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11040), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11058), 1, anon_sym_RBRACK, - STATE(6468), 1, - aux_sym__multiple_types_repeat1, STATE(6896), 1, sym_comment, - [224676] = 5, - ACTIONS(3), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [224709] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11042), 1, - anon_sym_RBRACK, - STATE(6469), 1, - aux_sym__multiple_types_repeat1, STATE(6897), 1, sym_comment, - [224692] = 5, + ACTIONS(6172), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11044), 1, + ACTIONS(11060), 1, anon_sym_RBRACK, - STATE(6470), 1, + STATE(6371), 1, aux_sym__multiple_types_repeat1, STATE(6898), 1, sym_comment, - [224708] = 5, + [224737] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11046), 1, + ACTIONS(11062), 1, anon_sym_RBRACK, - STATE(6471), 1, + STATE(6372), 1, aux_sym__multiple_types_repeat1, STATE(6899), 1, sym_comment, - [224724] = 4, + [224753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11064), 1, + anon_sym_RBRACK, + STATE(6373), 1, + aux_sym__multiple_types_repeat1, STATE(6900), 1, sym_comment, - ACTIONS(2410), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224738] = 5, + [224769] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11048), 1, + ACTIONS(11066), 1, anon_sym_RBRACK, - STATE(6472), 1, + STATE(6374), 1, aux_sym__multiple_types_repeat1, STATE(6901), 1, sym_comment, - [224754] = 5, + [224785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11050), 1, + ACTIONS(11068), 1, anon_sym_RBRACK, - STATE(6473), 1, + STATE(6375), 1, aux_sym__multiple_types_repeat1, STATE(6902), 1, sym_comment, - [224770] = 5, + [224801] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(8023), 1, + ACTIONS(11070), 1, anon_sym_RBRACK, - ACTIONS(11052), 1, - anon_sym_LT, + STATE(6376), 1, + aux_sym__multiple_types_repeat1, STATE(6903), 1, sym_comment, - [224786] = 5, + [224817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11054), 1, + ACTIONS(11072), 1, anon_sym_RBRACK, - STATE(6321), 1, + STATE(6377), 1, aux_sym__multiple_types_repeat1, STATE(6904), 1, sym_comment, - [224802] = 5, - ACTIONS(3), 1, + [224833] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11056), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11074), 1, anon_sym_RBRACK, - STATE(6474), 1, - aux_sym__multiple_types_repeat1, STATE(6905), 1, sym_comment, - [224818] = 5, + STATE(6951), 1, + aux_sym_val_binary_repeat1, + [224849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11058), 1, + ACTIONS(11076), 1, anon_sym_RBRACK, - STATE(6322), 1, + STATE(6378), 1, aux_sym__multiple_types_repeat1, STATE(6906), 1, sym_comment, - [224834] = 5, + [224865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11060), 1, + ACTIONS(11078), 1, anon_sym_RBRACK, - STATE(6323), 1, + STATE(6536), 1, aux_sym__multiple_types_repeat1, STATE(6907), 1, sym_comment, - [224850] = 5, - ACTIONS(3), 1, + [224881] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(11062), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, STATE(6908), 1, sym_comment, - [224866] = 3, - ACTIONS(247), 1, + ACTIONS(10451), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224893] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6909), 1, sym_comment, - ACTIONS(10511), 3, + ACTIONS(10951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224878] = 3, - ACTIONS(247), 1, + [224905] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6910), 1, sym_comment, - ACTIONS(10111), 3, + ACTIONS(10147), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224890] = 4, - ACTIONS(247), 1, + [224917] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, STATE(6911), 1, sym_comment, - ACTIONS(2276), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [224904] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(7853), 1, - anon_sym_EQ, - STATE(5122), 1, - sym_param_cmd, - STATE(6912), 1, - sym_comment, - [224920] = 5, + ACTIONS(11080), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [224929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2203), 1, sym__entry_separator, - ACTIONS(11064), 1, + STATE(6912), 1, + sym_comment, + ACTIONS(2197), 2, anon_sym_RBRACK, - STATE(6562), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [224943] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(6913), 1, sym_comment, - [224936] = 3, - ACTIONS(247), 1, + ACTIONS(6194), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224955] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2084), 1, + sym__entry_separator, STATE(6914), 1, sym_comment, - ACTIONS(10381), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224948] = 3, - ACTIONS(247), 1, + ACTIONS(2082), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224969] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11082), 1, + anon_sym_RBRACK, STATE(6915), 1, sym_comment, - ACTIONS(10381), 3, + STATE(6919), 1, + aux_sym_val_binary_repeat1, + [224985] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6916), 1, + sym_comment, + ACTIONS(10475), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224960] = 4, + [224997] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(2621), 1, sym__entry_separator, - STATE(6916), 1, + STATE(6917), 1, sym_comment, - ACTIONS(2414), 2, + ACTIONS(2619), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224974] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11066), 1, - anon_sym_RBRACK, - STATE(6917), 1, - sym_comment, - STATE(6924), 1, - aux_sym_val_binary_repeat1, - [224990] = 4, - ACTIONS(3), 1, + [225011] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2420), 1, - sym__entry_separator, + ACTIONS(10027), 1, + anon_sym_if, + ACTIONS(11084), 1, + anon_sym_EQ_GT, STATE(6918), 1, sym_comment, - ACTIONS(2418), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225004] = 5, - ACTIONS(247), 1, + STATE(7839), 1, + sym_match_guard, + [225027] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(7999), 1, - anon_sym_EQ, - STATE(5147), 1, - sym_param_cmd, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11086), 1, + anon_sym_RBRACK, STATE(6919), 1, sym_comment, - [225020] = 3, - ACTIONS(247), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [225043] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6920), 1, sym_comment, - ACTIONS(10511), 3, + ACTIONS(10475), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225032] = 5, + [225055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11068), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, - STATE(6594), 1, + STATE(6390), 1, aux_sym__multiple_types_repeat1, STATE(6921), 1, sym_comment, - [225048] = 5, - ACTIONS(3), 1, + [225071] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8019), 1, - sym__entry_separator, - ACTIONS(8023), 1, - anon_sym_RBRACK, - ACTIONS(11070), 1, - anon_sym_LT, STATE(6922), 1, sym_comment, - [225064] = 3, - ACTIONS(247), 1, + ACTIONS(10149), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225083] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2409), 1, + sym__space, STATE(6923), 1, sym_comment, - ACTIONS(10511), 3, - ts_builtin_sym_end, + ACTIONS(2407), 2, sym__newline, - anon_sym_SEMI, - [225076] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [225097] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11072), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11090), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + STATE(6391), 1, + aux_sym__multiple_types_repeat1, STATE(6924), 1, sym_comment, - [225092] = 4, - ACTIONS(247), 1, + [225113] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - aux_sym_unquoted_token2, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11092), 1, + anon_sym_RBRACK, + STATE(6392), 1, + aux_sym__multiple_types_repeat1, STATE(6925), 1, sym_comment, - ACTIONS(1843), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225106] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6926), 1, - sym_comment, - ACTIONS(10511), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225118] = 5, + [225129] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11074), 1, + ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(6483), 1, + STATE(6393), 1, aux_sym__multiple_types_repeat1, - STATE(6927), 1, + STATE(6926), 1, sym_comment, - [225134] = 3, - ACTIONS(247), 1, + [225145] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6928), 1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + STATE(6927), 1, sym_comment, - ACTIONS(6140), 3, + ACTIONS(2335), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [225146] = 5, + [225159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(2314), 1, - anon_sym_RBRACE, - STATE(565), 1, + ACTIONS(11096), 1, + anon_sym_RBRACK, + STATE(6394), 1, aux_sym__multiple_types_repeat1, + STATE(6928), 1, + sym_comment, + [225175] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(6929), 1, sym_comment, - [225162] = 5, + ACTIONS(10533), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11076), 1, + ACTIONS(11098), 1, anon_sym_RBRACK, - STATE(6484), 1, + STATE(6395), 1, aux_sym__multiple_types_repeat1, STATE(6930), 1, sym_comment, - [225178] = 5, + [225203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11078), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(6485), 1, + STATE(6396), 1, aux_sym__multiple_types_repeat1, STATE(6931), 1, sym_comment, - [225194] = 5, + [225219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2060), 1, sym__entry_separator, - ACTIONS(11080), 1, - anon_sym_RBRACK, - STATE(6486), 1, - aux_sym__multiple_types_repeat1, STATE(6932), 1, sym_comment, - [225210] = 5, + ACTIONS(2058), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225233] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11082), 1, + ACTIONS(11102), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6397), 1, aux_sym__multiple_types_repeat1, STATE(6933), 1, sym_comment, - [225226] = 4, - ACTIONS(3), 1, + [225249] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2424), 1, - sym__entry_separator, STATE(6934), 1, sym_comment, - ACTIONS(2422), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225240] = 4, + ACTIONS(10133), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225261] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(6091), 1, sym__entry_separator, + ACTIONS(11104), 1, + anon_sym_RBRACE, + STATE(2937), 1, + aux_sym__multiple_types_repeat1, STATE(6935), 1, sym_comment, - ACTIONS(2426), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225254] = 5, - ACTIONS(3), 1, + [225277] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11084), 1, - anon_sym_RBRACK, - STATE(6488), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, STATE(6936), 1, sym_comment, - [225270] = 5, + ACTIONS(1958), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [225291] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11086), 1, - anon_sym_RBRACK, - STATE(6489), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1427), 1, + sym__newline, + ACTIONS(1429), 1, + sym__space, + STATE(313), 1, + aux_sym_ctrl_do_parenthesized_repeat2, STATE(6937), 1, sym_comment, - [225286] = 4, - ACTIONS(3), 1, + [225307] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2438), 1, - sym__entry_separator, STATE(6938), 1, sym_comment, - ACTIONS(2436), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225300] = 3, - ACTIONS(247), 1, + ACTIONS(11106), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225319] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11108), 1, + anon_sym_RBRACK, STATE(6939), 1, sym_comment, - ACTIONS(10215), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225312] = 5, + STATE(6943), 1, + aux_sym_val_binary_repeat1, + [225335] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11088), 1, - anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4969), 1, + aux_sym_unquoted_token4, STATE(6940), 1, sym_comment, - [225328] = 5, - ACTIONS(247), 1, + STATE(7577), 1, + sym__expr_parenthesized_immediate, + [225351] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(7853), 1, - anon_sym_EQ, - STATE(5142), 1, - sym_param_cmd, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, STATE(6941), 1, sym_comment, - [225344] = 3, - ACTIONS(247), 1, + ACTIONS(1874), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [225365] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6942), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225356] = 3, - ACTIONS(247), 1, + ACTIONS(5936), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225377] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11110), 1, + anon_sym_RBRACK, STATE(6943), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225368] = 4, - ACTIONS(247), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [225393] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11090), 1, - anon_sym_LBRACK, - STATE(7644), 1, - sym_val_list, - STATE(6944), 2, + STATE(6944), 1, sym_comment, - aux_sym_val_table_repeat1, - [225382] = 5, - ACTIONS(247), 1, + ACTIONS(6176), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225405] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6921), 1, - sym_val_list, - STATE(6944), 1, - aux_sym_val_table_repeat1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11112), 1, + anon_sym_RBRACK, + STATE(6411), 1, + aux_sym__multiple_types_repeat1, STATE(6945), 1, sym_comment, - [225398] = 3, - ACTIONS(247), 1, + [225421] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2533), 1, + sym__entry_separator, STATE(6946), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225410] = 3, - ACTIONS(247), 1, + ACTIONS(2531), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225435] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11114), 1, + anon_sym_RBRACK, + STATE(6412), 1, + aux_sym__multiple_types_repeat1, STATE(6947), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225422] = 3, - ACTIONS(247), 1, + [225451] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11116), 1, + anon_sym_RBRACK, + STATE(6413), 1, + aux_sym__multiple_types_repeat1, STATE(6948), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225434] = 5, + [225467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11093), 1, + ACTIONS(11118), 1, anon_sym_RBRACK, - STATE(3430), 1, + STATE(6414), 1, aux_sym__multiple_types_repeat1, STATE(6949), 1, sym_comment, - [225450] = 3, - ACTIONS(247), 1, + [225483] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11120), 1, + anon_sym_RBRACK, + STATE(6415), 1, + aux_sym__multiple_types_repeat1, STATE(6950), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225462] = 5, - ACTIONS(247), 1, + [225499] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11095), 1, + ACTIONS(11122), 1, anon_sym_RBRACK, STATE(6951), 1, sym_comment, - STATE(6956), 1, + STATE(7264), 1, aux_sym_val_binary_repeat1, - [225478] = 5, + [225515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11097), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(3432), 1, + STATE(6416), 1, aux_sym__multiple_types_repeat1, STATE(6952), 1, sym_comment, - [225494] = 3, - ACTIONS(247), 1, + [225531] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11126), 1, + anon_sym_RBRACK, + STATE(6417), 1, + aux_sym__multiple_types_repeat1, STATE(6953), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225506] = 3, - ACTIONS(247), 1, + [225547] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6954), 1, sym_comment, - ACTIONS(10383), 3, + ACTIONS(10149), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225518] = 3, - ACTIONS(247), 1, + [225559] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6955), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225530] = 5, - ACTIONS(247), 1, + ACTIONS(6180), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225571] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11099), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + STATE(6737), 1, + aux_sym__multiple_types_repeat1, STATE(6956), 1, sym_comment, - [225546] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4976), 1, - anon_sym_in2, - ACTIONS(11101), 1, - anon_sym_EQ2, - ACTIONS(11103), 1, - sym_short_flag_identifier, - STATE(6957), 1, - sym_comment, - [225562] = 5, + [225587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11105), 1, + ACTIONS(11130), 1, anon_sym_RBRACK, - STATE(6498), 1, + STATE(6702), 1, aux_sym__multiple_types_repeat1, + STATE(6957), 1, + sym_comment, + [225603] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, STATE(6958), 1, sym_comment, - [225578] = 3, - ACTIONS(247), 1, + STATE(7300), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [225619] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6959), 1, sym_comment, - ACTIONS(10457), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225590] = 5, + [225631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2506), 1, sym__entry_separator, - ACTIONS(11107), 1, - anon_sym_RBRACK, - STATE(6499), 1, - aux_sym__multiple_types_repeat1, STATE(6960), 1, sym_comment, - [225606] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11109), 1, + ACTIONS(2504), 2, anon_sym_RBRACK, - STATE(6500), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [225645] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(6961), 1, sym_comment, - [225622] = 5, - ACTIONS(3), 1, + ACTIONS(10145), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225657] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11111), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11132), 1, anon_sym_RBRACK, - STATE(6501), 1, - aux_sym__multiple_types_repeat1, STATE(6962), 1, sym_comment, - [225638] = 5, - ACTIONS(3), 1, + STATE(6966), 1, + aux_sym_val_binary_repeat1, + [225673] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11113), 1, - anon_sym_RBRACK, - STATE(6502), 1, - aux_sym__multiple_types_repeat1, STATE(6963), 1, sym_comment, - [225654] = 5, - ACTIONS(3), 1, + ACTIONS(10145), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225685] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11115), 1, - anon_sym_RBRACK, - STATE(6503), 1, - aux_sym__multiple_types_repeat1, STATE(6964), 1, sym_comment, - [225670] = 5, - ACTIONS(3), 1, + ACTIONS(10145), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225697] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11117), 1, - anon_sym_RBRACK, - STATE(6504), 1, - aux_sym__multiple_types_repeat1, STATE(6965), 1, sym_comment, - [225686] = 5, - ACTIONS(3), 1, + ACTIONS(11134), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [225709] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11119), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11136), 1, anon_sym_RBRACK, - STATE(3422), 1, - aux_sym__multiple_types_repeat1, STATE(6966), 1, sym_comment, - [225702] = 5, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [225725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11121), 1, + ACTIONS(11138), 1, anon_sym_RBRACK, - STATE(6505), 1, + STATE(6430), 1, aux_sym__multiple_types_repeat1, STATE(6967), 1, sym_comment, - [225718] = 3, - ACTIONS(247), 1, + [225741] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6968), 1, sym_comment, - ACTIONS(10217), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225730] = 3, - ACTIONS(247), 1, + ACTIONS(5946), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225753] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6969), 1, sym_comment, - ACTIONS(10239), 3, + ACTIONS(10147), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225742] = 4, - ACTIONS(247), 1, + [225765] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11123), 1, - anon_sym_EQ2, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11140), 1, + anon_sym_RBRACK, + STATE(6431), 1, + aux_sym__multiple_types_repeat1, STATE(6970), 1, sym_comment, - ACTIONS(5056), 2, - sym_identifier, - anon_sym_DOLLAR, - [225756] = 5, + [225781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1026), 1, - sym__newline, - ACTIONS(1028), 1, - sym__space, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11142), 1, + anon_sym_RBRACK, + STATE(6432), 1, + aux_sym__multiple_types_repeat1, STATE(6971), 1, sym_comment, - [225772] = 3, - ACTIONS(247), 1, + [225797] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11144), 1, + anon_sym_RBRACK, + STATE(6433), 1, + aux_sym__multiple_types_repeat1, STATE(6972), 1, sym_comment, - ACTIONS(6131), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225784] = 3, - ACTIONS(247), 1, + [225813] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11146), 1, + anon_sym_RBRACK, + STATE(6434), 1, + aux_sym__multiple_types_repeat1, STATE(6973), 1, sym_comment, - ACTIONS(10329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225796] = 3, - ACTIONS(247), 1, + [225829] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2337), 1, + sym__newline, + ACTIONS(2341), 1, + sym__space, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(6974), 1, sym_comment, - ACTIONS(10217), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225808] = 3, - ACTIONS(247), 1, + [225845] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(4979), 1, + anon_sym_in2, + ACTIONS(11148), 1, + sym_long_flag_identifier, + ACTIONS(11150), 1, + anon_sym_EQ2, STATE(6975), 1, sym_comment, - ACTIONS(10239), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225820] = 3, - ACTIONS(247), 1, + [225861] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11152), 1, + anon_sym_RBRACK, + STATE(6435), 1, + aux_sym__multiple_types_repeat1, STATE(6976), 1, sym_comment, - ACTIONS(10251), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225832] = 3, - ACTIONS(247), 1, + [225877] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11154), 1, + anon_sym_RBRACK, + STATE(6436), 1, + aux_sym__multiple_types_repeat1, STATE(6977), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225844] = 3, - ACTIONS(247), 1, + [225893] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6978), 1, sym_comment, - ACTIONS(10609), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225856] = 5, - ACTIONS(247), 1, + [225905] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11125), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11156), 1, anon_sym_RBRACK, + STATE(6437), 1, + aux_sym__multiple_types_repeat1, STATE(6979), 1, sym_comment, - STATE(6983), 1, - aux_sym_val_binary_repeat1, - [225872] = 3, - ACTIONS(247), 1, + [225921] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6980), 1, sym_comment, - ACTIONS(10211), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225884] = 3, - ACTIONS(247), 1, + [225933] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6981), 1, sym_comment, - ACTIONS(10253), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225896] = 3, - ACTIONS(247), 1, + [225945] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6982), 1, sym_comment, - ACTIONS(10211), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225908] = 5, - ACTIONS(247), 1, + [225957] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11127), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2409), 1, + anon_sym_PIPE, STATE(6983), 1, sym_comment, - [225924] = 4, + ACTIONS(2407), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [225971] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(6984), 1, + sym_comment, + ACTIONS(10363), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2492), 1, + ACTIONS(2478), 1, sym__entry_separator, - STATE(6984), 1, + STATE(6985), 1, sym_comment, - ACTIONS(2490), 2, + ACTIONS(2476), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225938] = 5, + [225997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(5767), 1, sym__entry_separator, - ACTIONS(11129), 1, + ACTIONS(11158), 1, anon_sym_RBRACK, - STATE(6514), 1, + STATE(2679), 1, aux_sym__multiple_types_repeat1, - STATE(6985), 1, - sym_comment, - [225954] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(6986), 1, sym_comment, - ACTIONS(10219), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225966] = 4, - ACTIONS(3), 1, + [226013] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2036), 1, - sym__entry_separator, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11160), 1, + anon_sym_RBRACK, STATE(6987), 1, sym_comment, - ACTIONS(2034), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225980] = 3, - ACTIONS(247), 1, + STATE(6992), 1, + aux_sym_val_binary_repeat1, + [226029] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(6988), 1, sym_comment, - ACTIONS(10459), 3, + ACTIONS(10363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225992] = 5, - ACTIONS(3), 1, + [226041] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11131), 1, - anon_sym_RBRACK, - STATE(6515), 1, - aux_sym__multiple_types_repeat1, STATE(6989), 1, sym_comment, - [226008] = 5, + ACTIONS(10363), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11133), 1, - anon_sym_RBRACK, - STATE(6516), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token4, STATE(6990), 1, sym_comment, - [226024] = 5, - ACTIONS(3), 1, + STATE(7474), 1, + sym__expr_parenthesized_immediate, + [226069] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11135), 1, - anon_sym_RBRACK, - STATE(6517), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5022), 1, + anon_sym_in2, + ACTIONS(11162), 1, + anon_sym_EQ2, + ACTIONS(11164), 1, + sym_short_flag_identifier, STATE(6991), 1, sym_comment, - [226040] = 5, - ACTIONS(3), 1, + [226085] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(11137), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11166), 1, anon_sym_RBRACK, - STATE(2804), 1, - aux_sym__multiple_types_repeat1, STATE(6992), 1, sym_comment, - [226056] = 5, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [226101] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + aux_sym_unquoted_token2, + STATE(6993), 1, + sym_comment, + ACTIONS(1921), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [226115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11139), 1, + ACTIONS(11168), 1, anon_sym_RBRACK, - STATE(6518), 1, + STATE(6445), 1, aux_sym__multiple_types_repeat1, - STATE(6993), 1, + STATE(6994), 1, sym_comment, - [226072] = 3, - ACTIONS(247), 1, + [226131] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(6994), 1, + STATE(6995), 1, sym_comment, - ACTIONS(10479), 3, + ACTIONS(10363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226084] = 5, + [226143] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5056), 1, - sym__space, - ACTIONS(5058), 1, - sym__newline, - ACTIONS(11141), 1, - anon_sym_EQ2, - STATE(6995), 1, - sym_comment, - [226100] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11143), 1, + ACTIONS(11170), 1, anon_sym_RBRACK, - STATE(6519), 1, + STATE(6446), 1, aux_sym__multiple_types_repeat1, STATE(6996), 1, sym_comment, - [226116] = 5, + [226159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11145), 1, + ACTIONS(11172), 1, anon_sym_RBRACK, - STATE(6520), 1, + STATE(6447), 1, aux_sym__multiple_types_repeat1, STATE(6997), 1, sym_comment, - [226132] = 5, + [226175] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11147), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(2805), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, STATE(6998), 1, sym_comment, - [226148] = 4, - ACTIONS(3), 1, + [226191] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2392), 1, - sym__entry_separator, STATE(6999), 1, sym_comment, - ACTIONS(2390), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226162] = 5, + ACTIONS(10363), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11149), 1, + ACTIONS(11176), 1, anon_sym_RBRACK, - STATE(6521), 1, + STATE(6449), 1, aux_sym__multiple_types_repeat1, STATE(7000), 1, sym_comment, - [226178] = 4, + [226219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11151), 1, - anon_sym_LPAREN, + ACTIONS(2482), 1, + sym__entry_separator, STATE(7001), 1, sym_comment, - ACTIONS(11153), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [226192] = 3, - ACTIONS(247), 1, + ACTIONS(2480), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226233] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(6450), 1, + aux_sym__multiple_types_repeat1, STATE(7002), 1, sym_comment, - ACTIONS(10275), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226204] = 3, - ACTIONS(247), 1, + [226249] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(6451), 1, + aux_sym__multiple_types_repeat1, STATE(7003), 1, sym_comment, - ACTIONS(10275), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226216] = 4, - ACTIONS(3), 1, + [226265] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2369), 1, - sym__entry_separator, STATE(7004), 1, sym_comment, - ACTIONS(2367), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226230] = 3, - ACTIONS(247), 1, + ACTIONS(10884), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226277] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7005), 1, sym_comment, - ACTIONS(10277), 3, + ACTIONS(10363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226242] = 3, + [226289] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11182), 1, + anon_sym_RBRACK, + STATE(6452), 1, + aux_sym__multiple_types_repeat1, STATE(7006), 1, sym_comment, - ACTIONS(1847), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [226254] = 4, - ACTIONS(3), 1, + [226305] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2381), 1, - sym__entry_separator, STATE(7007), 1, sym_comment, - ACTIONS(2379), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226268] = 5, - ACTIONS(247), 1, + ACTIONS(10840), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226317] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11155), 1, - anon_sym_RBRACK, STATE(7008), 1, sym_comment, - STATE(7013), 1, - aux_sym_val_binary_repeat1, - [226284] = 3, - ACTIONS(247), 1, + ACTIONS(10840), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226329] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7009), 1, sym_comment, - ACTIONS(10609), 3, + ACTIONS(10860), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226296] = 5, - ACTIONS(247), 1, + [226341] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9889), 1, - anon_sym_if, - ACTIONS(11157), 1, - anon_sym_EQ_GT, STATE(7010), 1, sym_comment, - STATE(7724), 1, - sym_match_guard, - [226312] = 5, - ACTIONS(3), 1, + ACTIONS(11184), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [226353] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - ACTIONS(11159), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11186), 1, anon_sym_RBRACK, - STATE(2825), 1, - aux_sym__multiple_types_repeat1, STATE(7011), 1, sym_comment, - [226328] = 4, - ACTIONS(3), 1, + STATE(7015), 1, + aux_sym_val_binary_repeat1, + [226369] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2040), 1, - sym__entry_separator, STATE(7012), 1, sym_comment, - ACTIONS(2038), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226342] = 5, - ACTIONS(247), 1, + ACTIONS(10363), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226381] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11161), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, STATE(7013), 1, sym_comment, - [226358] = 5, - ACTIONS(3), 1, + ACTIONS(10363), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226393] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(11163), 1, - anon_sym_RBRACE, - STATE(2929), 1, - aux_sym__multiple_types_repeat1, STATE(7014), 1, sym_comment, - [226374] = 5, - ACTIONS(3), 1, + ACTIONS(10840), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226405] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(11165), 1, - anon_sym_RBRACE, - STATE(2930), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11188), 1, + anon_sym_RBRACK, STATE(7015), 1, sym_comment, - [226390] = 5, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [226421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11167), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, - STATE(6529), 1, + STATE(6464), 1, aux_sym__multiple_types_repeat1, STATE(7016), 1, sym_comment, - [226406] = 4, - ACTIONS(3), 1, + [226437] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1851), 1, - sym__entry_separator, STATE(7017), 1, sym_comment, - ACTIONS(1847), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226420] = 5, + ACTIONS(10231), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11169), 1, + ACTIONS(11192), 1, anon_sym_RBRACK, - STATE(6530), 1, + STATE(6465), 1, aux_sym__multiple_types_repeat1, STATE(7018), 1, sym_comment, - [226436] = 5, + [226465] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11171), 1, + ACTIONS(11194), 1, anon_sym_RBRACK, - STATE(6531), 1, + STATE(6466), 1, aux_sym__multiple_types_repeat1, STATE(7019), 1, sym_comment, - [226452] = 5, + [226481] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11173), 1, + ACTIONS(11196), 1, anon_sym_RBRACK, - STATE(6532), 1, + STATE(6467), 1, aux_sym__multiple_types_repeat1, STATE(7020), 1, sym_comment, - [226468] = 5, + [226497] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7021), 1, + sym_comment, + ACTIONS(10233), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11175), 1, + ACTIONS(11198), 1, anon_sym_RBRACK, - STATE(6533), 1, + STATE(6468), 1, aux_sym__multiple_types_repeat1, - STATE(7021), 1, - sym_comment, - [226484] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(11177), 1, - anon_sym_GT2, STATE(7022), 1, sym_comment, - STATE(7957), 1, - sym_param_cmd, - [226500] = 5, + [226525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11179), 1, - anon_sym_RBRACK, - STATE(6534), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, + aux_sym__unquoted_in_record_token4, STATE(7023), 1, sym_comment, - [226516] = 5, + STATE(7686), 1, + sym__expr_parenthesized_immediate, + [226541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11181), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, - STATE(6535), 1, + STATE(6469), 1, aux_sym__multiple_types_repeat1, STATE(7024), 1, sym_comment, - [226532] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9887), 1, - anon_sym_PIPE, - ACTIONS(11183), 1, - anon_sym_EQ_GT, - STATE(7025), 1, - sym_comment, - STATE(7240), 1, - aux_sym_match_pattern_repeat1, - [226548] = 5, + [226557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11185), 1, + ACTIONS(11202), 1, anon_sym_RBRACK, - STATE(6342), 1, + STATE(6470), 1, aux_sym__multiple_types_repeat1, + STATE(7025), 1, + sym_comment, + [226573] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7026), 1, sym_comment, - [226564] = 5, + ACTIONS(10187), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11187), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, - STATE(6536), 1, + STATE(6471), 1, aux_sym__multiple_types_repeat1, STATE(7027), 1, sym_comment, - [226580] = 4, - ACTIONS(3), 1, + [226601] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1296), 1, - anon_sym_POUND_BANG, - ACTIONS(11189), 1, - sym__newline, - STATE(7028), 2, + STATE(7028), 1, sym_comment, - aux_sym_shebang_repeat1, - [226594] = 4, - ACTIONS(3), 1, + ACTIONS(10197), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226613] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__entry_separator, STATE(7029), 1, sym_comment, - ACTIONS(2383), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226608] = 5, + ACTIONS(11206), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [226625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11208), 1, + anon_sym_RBRACK, + STATE(6738), 1, + aux_sym__multiple_types_repeat1, STATE(7030), 1, sym_comment, - STATE(7536), 1, - sym__expr_parenthesized_immediate, - [226624] = 4, + [226641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11210), 1, + anon_sym_RBRACK, + STATE(6741), 1, + aux_sym__multiple_types_repeat1, STATE(7031), 1, sym_comment, - ACTIONS(1899), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226638] = 5, + [226657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11192), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(6343), 1, + STATE(6742), 1, aux_sym__multiple_types_repeat1, STATE(7032), 1, sym_comment, - [226654] = 5, + [226673] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11194), 1, + ACTIONS(11214), 1, anon_sym_RBRACK, - STATE(6344), 1, + STATE(3442), 1, aux_sym__multiple_types_repeat1, STATE(7033), 1, sym_comment, - [226670] = 3, - ACTIONS(247), 1, + [226689] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11216), 1, + anon_sym_RBRACK, + STATE(2822), 1, + aux_sym__multiple_types_repeat1, STATE(7034), 1, sym_comment, - ACTIONS(10255), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226682] = 5, - ACTIONS(247), 1, + [226705] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11196), 1, + ACTIONS(11218), 1, anon_sym_RBRACK, STATE(7035), 1, sym_comment, - STATE(7037), 1, + STATE(7038), 1, aux_sym_val_binary_repeat1, - [226698] = 3, - ACTIONS(247), 1, + [226721] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7036), 1, sym_comment, - ACTIONS(10277), 3, + ACTIONS(10840), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226710] = 5, - ACTIONS(247), 1, + [226733] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11198), 1, + ACTIONS(11220), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, STATE(7037), 1, sym_comment, - [226726] = 5, - ACTIONS(3), 1, + STATE(7211), 1, + aux_sym_val_binary_repeat1, + [226749] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6110), 1, - anon_sym_RBRACE, - STATE(2971), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11222), 1, + anon_sym_RBRACK, STATE(7038), 1, sym_comment, - [226742] = 5, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [226765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11200), 1, + ACTIONS(11224), 1, anon_sym_RBRACK, - STATE(6547), 1, + STATE(6483), 1, aux_sym__multiple_types_repeat1, STATE(7039), 1, sym_comment, - [226758] = 3, - ACTIONS(247), 1, + [226781] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7040), 1, sym_comment, - ACTIONS(10357), 3, + ACTIONS(10195), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226770] = 5, + [226793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11202), 1, + ACTIONS(11226), 1, anon_sym_RBRACK, - STATE(2709), 1, + STATE(6484), 1, aux_sym__multiple_types_repeat1, STATE(7041), 1, sym_comment, - [226786] = 5, + [226809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11204), 1, + ACTIONS(11228), 1, anon_sym_RBRACK, - STATE(6548), 1, + STATE(6485), 1, aux_sym__multiple_types_repeat1, STATE(7042), 1, sym_comment, - [226802] = 5, + [226825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11206), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, - STATE(6549), 1, + STATE(6486), 1, aux_sym__multiple_types_repeat1, STATE(7043), 1, sym_comment, - [226818] = 5, + [226841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11208), 1, + ACTIONS(11232), 1, anon_sym_RBRACK, - STATE(6550), 1, + STATE(6487), 1, aux_sym__multiple_types_repeat1, STATE(7044), 1, sym_comment, - [226834] = 5, - ACTIONS(247), 1, + [226857] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6299), 1, - sym_block, STATE(7045), 1, sym_comment, - [226850] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11210), 1, + ACTIONS(2635), 3, anon_sym_RBRACK, - STATE(6551), 1, - aux_sym__multiple_types_repeat1, + sym__entry_separator, + sym__table_head_separator, + [226869] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7046), 1, sym_comment, - [226866] = 4, + ACTIONS(10237), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226881] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_PIPE, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11234), 1, + anon_sym_RBRACK, + STATE(6488), 1, + aux_sym__multiple_types_repeat1, STATE(7047), 1, sym_comment, - ACTIONS(2268), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [226880] = 5, + [226897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11212), 1, + ACTIONS(11236), 1, anon_sym_RBRACK, - STATE(6552), 1, + STATE(6489), 1, aux_sym__multiple_types_repeat1, STATE(7048), 1, sym_comment, - [226896] = 5, - ACTIONS(3), 1, + [226913] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11214), 1, - anon_sym_RBRACK, - STATE(6553), 1, - aux_sym__multiple_types_repeat1, STATE(7049), 1, sym_comment, - [226912] = 5, + ACTIONS(10293), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11216), 1, + ACTIONS(11238), 1, anon_sym_RBRACK, - STATE(6554), 1, + STATE(6490), 1, aux_sym__multiple_types_repeat1, STATE(7050), 1, sym_comment, - [226928] = 3, - ACTIONS(247), 1, + [226941] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11240), 1, + anon_sym_RBRACK, STATE(7051), 1, sym_comment, - ACTIONS(10153), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226940] = 5, + STATE(7053), 1, + aux_sym_val_binary_repeat1, + [226957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, + ACTIONS(2417), 1, sym__entry_separator, - ACTIONS(11218), 1, - anon_sym_RBRACK, - STATE(2674), 1, + ACTIONS(11242), 1, + anon_sym_RBRACE, + STATE(610), 1, aux_sym__multiple_types_repeat1, STATE(7052), 1, sym_comment, - [226956] = 5, - ACTIONS(3), 1, + [226973] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(11220), 1, - anon_sym_RBRACE, - STATE(3015), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11244), 1, + anon_sym_RBRACK, STATE(7053), 1, sym_comment, - [226972] = 4, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [226989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11246), 1, + anon_sym_RBRACK, + STATE(6499), 1, + aux_sym__multiple_types_repeat1, STATE(7054), 1, sym_comment, - ACTIONS(1707), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226986] = 3, - ACTIONS(247), 1, + [227005] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2599), 1, + sym__entry_separator, STATE(7055), 1, sym_comment, - ACTIONS(5801), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [226998] = 5, - ACTIONS(247), 1, + ACTIONS(2597), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227019] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11222), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11248), 1, anon_sym_RBRACK, + STATE(6500), 1, + aux_sym__multiple_types_repeat1, STATE(7056), 1, sym_comment, - STATE(7061), 1, - aux_sym_val_binary_repeat1, - [227014] = 3, - ACTIONS(247), 1, + [227035] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11250), 1, + anon_sym_RBRACK, + STATE(6501), 1, + aux_sym__multiple_types_repeat1, STATE(7057), 1, sym_comment, - ACTIONS(10277), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227026] = 5, + [227051] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11224), 1, + ACTIONS(11252), 1, anon_sym_RBRACK, - STATE(2817), 1, + STATE(6502), 1, aux_sym__multiple_types_repeat1, STATE(7058), 1, sym_comment, - [227042] = 5, + [227067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11226), 1, + ACTIONS(11254), 1, anon_sym_RBRACK, - STATE(2818), 1, + STATE(6503), 1, aux_sym__multiple_types_repeat1, STATE(7059), 1, sym_comment, - [227058] = 4, - ACTIONS(3), 1, + [227083] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, + ACTIONS(3965), 1, + sym__newline, + ACTIONS(11256), 1, + anon_sym_COLON, + STATE(1760), 1, + aux_sym_shebang_repeat1, STATE(7060), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227072] = 5, - ACTIONS(247), 1, + [227099] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11228), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11258), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + STATE(6504), 1, + aux_sym__multiple_types_repeat1, STATE(7061), 1, sym_comment, - [227088] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7062), 1, - sym_comment, - ACTIONS(8917), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227100] = 5, + [227115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11230), 1, + ACTIONS(11260), 1, anon_sym_RBRACK, - STATE(6817), 1, + STATE(6505), 1, aux_sym__multiple_types_repeat1, + STATE(7062), 1, + sym_comment, + [227131] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11262), 1, + anon_sym_POUND_BANG, + ACTIONS(11264), 1, + sym__newline, STATE(7063), 1, sym_comment, - [227116] = 5, + STATE(7283), 1, + aux_sym_shebang_repeat1, + [227147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11232), 1, - anon_sym_RBRACK, - STATE(6765), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5050), 1, + sym__space, + ACTIONS(5052), 1, + sym__newline, + ACTIONS(11266), 1, + anon_sym_EQ2, STATE(7064), 1, sym_comment, - [227132] = 5, + [227163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11234), 1, + ACTIONS(11268), 1, anon_sym_RBRACK, - STATE(6565), 1, + STATE(6506), 1, aux_sym__multiple_types_repeat1, STATE(7065), 1, sym_comment, - [227148] = 5, + [227179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2234), 1, sym__entry_separator, - ACTIONS(11236), 1, - anon_sym_RBRACK, - STATE(6566), 1, - aux_sym__multiple_types_repeat1, STATE(7066), 1, sym_comment, - [227164] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11238), 1, + ACTIONS(2228), 2, anon_sym_RBRACK, - STATE(6567), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [227193] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7067), 1, sym_comment, - [227180] = 5, - ACTIONS(3), 1, + ACTIONS(10297), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227205] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11240), 1, - anon_sym_RBRACK, - STATE(6568), 1, - aux_sym__multiple_types_repeat1, STATE(7068), 1, sym_comment, - [227196] = 5, - ACTIONS(3), 1, + ACTIONS(10673), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227217] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_RBRACK, - ACTIONS(1719), 1, - sym__entry_separator, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token2, STATE(7069), 1, sym_comment, - [227212] = 5, - ACTIONS(3), 1, + ACTIONS(10957), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227229] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11242), 1, - anon_sym_RBRACK, - STATE(6569), 1, - aux_sym__multiple_types_repeat1, STATE(7070), 1, sym_comment, - [227228] = 5, - ACTIONS(3), 1, + ACTIONS(10715), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227241] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11244), 1, - anon_sym_RBRACK, - STATE(6570), 1, - aux_sym__multiple_types_repeat1, STATE(7071), 1, sym_comment, - [227244] = 5, - ACTIONS(3), 1, + ACTIONS(10201), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227253] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11246), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11270), 1, anon_sym_RBRACK, - STATE(6571), 1, - aux_sym__multiple_types_repeat1, STATE(7072), 1, sym_comment, - [227260] = 3, - ACTIONS(247), 1, + STATE(7074), 1, + aux_sym_val_binary_repeat1, + [227269] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7073), 1, sym_comment, - ACTIONS(10277), 3, + ACTIONS(10723), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227272] = 4, - ACTIONS(3), 1, + [227281] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2408), 1, - sym__entry_separator, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11272), 1, + anon_sym_RBRACK, STATE(7074), 1, sym_comment, - ACTIONS(2406), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227286] = 4, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [227297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11274), 1, + anon_sym_RBRACK, + STATE(6514), 1, + aux_sym__multiple_types_repeat1, STATE(7075), 1, sym_comment, - ACTIONS(2130), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227300] = 5, - ACTIONS(3), 1, + [227313] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11248), 1, - anon_sym_RBRACK, - STATE(6768), 1, - aux_sym__multiple_types_repeat1, STATE(7076), 1, sym_comment, - [227316] = 5, - ACTIONS(247), 1, + ACTIONS(10201), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227325] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11250), 1, - anon_sym_RBRACK, STATE(7077), 1, sym_comment, - STATE(7079), 1, - aux_sym_val_binary_repeat1, - [227332] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7078), 1, - sym_comment, - ACTIONS(10541), 3, + ACTIONS(10953), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227344] = 5, - ACTIONS(247), 1, + [227337] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11252), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11276), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + STATE(6515), 1, + aux_sym__multiple_types_repeat1, + STATE(7078), 1, + sym_comment, + [227353] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11278), 1, + anon_sym_RBRACK, + STATE(6516), 1, + aux_sym__multiple_types_repeat1, STATE(7079), 1, sym_comment, - [227360] = 5, + [227369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11254), 1, + ACTIONS(11280), 1, anon_sym_RBRACK, - STATE(6579), 1, + STATE(6517), 1, aux_sym__multiple_types_repeat1, STATE(7080), 1, sym_comment, - [227376] = 3, - ACTIONS(247), 1, + [227385] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11282), 1, + anon_sym_RBRACK, + STATE(6518), 1, + aux_sym__multiple_types_repeat1, STATE(7081), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227388] = 5, + [227401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11256), 1, + ACTIONS(11284), 1, anon_sym_RBRACK, - STATE(6580), 1, + STATE(6519), 1, aux_sym__multiple_types_repeat1, STATE(7082), 1, sym_comment, - [227404] = 5, + [227417] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11258), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(6581), 1, + STATE(6520), 1, aux_sym__multiple_types_repeat1, STATE(7083), 1, sym_comment, - [227420] = 5, + [227433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11260), 1, + ACTIONS(11288), 1, anon_sym_RBRACK, - STATE(6582), 1, + STATE(6521), 1, aux_sym__multiple_types_repeat1, STATE(7084), 1, sym_comment, - [227436] = 5, - ACTIONS(3), 1, + [227449] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11262), 1, - anon_sym_RBRACK, - STATE(6583), 1, - aux_sym__multiple_types_repeat1, STATE(7085), 1, sym_comment, - [227452] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7086), 1, - sym_comment, - ACTIONS(8921), 3, + ACTIONS(10955), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227464] = 5, + [227461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2611), 1, sym__entry_separator, - ACTIONS(11264), 1, - anon_sym_RBRACK, - STATE(6584), 1, - aux_sym__multiple_types_repeat1, - STATE(7087), 1, + STATE(7086), 1, sym_comment, - [227480] = 5, + ACTIONS(2609), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2417), 1, sym__entry_separator, - ACTIONS(11266), 1, - anon_sym_RBRACK, - STATE(6585), 1, + ACTIONS(11290), 1, + anon_sym_RBRACE, + STATE(621), 1, aux_sym__multiple_types_repeat1, + STATE(7087), 1, + sym_comment, + [227491] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(11292), 1, + anon_sym_EQ2, STATE(7088), 1, sym_comment, - [227496] = 5, + ACTIONS(5038), 2, + sym_identifier, + anon_sym_DOLLAR, + [227505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11268), 1, + ACTIONS(11294), 1, anon_sym_RBRACK, - STATE(6347), 1, + STATE(6528), 1, aux_sym__multiple_types_repeat1, STATE(7089), 1, sym_comment, - [227512] = 5, + [227521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11270), 1, - anon_sym_RBRACK, - STATE(6586), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11296), 1, + anon_sym_LPAREN, STATE(7090), 1, sym_comment, - [227528] = 3, - ACTIONS(247), 1, + ACTIONS(11298), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [227535] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11300), 1, + anon_sym_RBRACK, + STATE(6529), 1, + aux_sym__multiple_types_repeat1, STATE(7091), 1, sym_comment, - ACTIONS(10151), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227540] = 4, + [227551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6054), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11302), 1, anon_sym_RBRACK, + STATE(6530), 1, + aux_sym__multiple_types_repeat1, STATE(7092), 1, sym_comment, - ACTIONS(6056), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [227554] = 5, + [227567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11304), 1, + anon_sym_RBRACK, + STATE(6531), 1, + aux_sym__multiple_types_repeat1, STATE(7093), 1, sym_comment, - STATE(7529), 1, - sym__expr_parenthesized_immediate, - [227570] = 5, + [227583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11272), 1, + ACTIONS(11306), 1, anon_sym_RBRACK, - STATE(6787), 1, + STATE(6532), 1, aux_sym__multiple_types_repeat1, STATE(7094), 1, sym_comment, - [227586] = 3, - ACTIONS(247), 1, + [227599] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2183), 1, + sym__entry_separator, STATE(7095), 1, sym_comment, - ACTIONS(11274), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227598] = 5, - ACTIONS(247), 1, + ACTIONS(2177), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227613] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11276), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11308), 1, anon_sym_RBRACK, + STATE(6533), 1, + aux_sym__multiple_types_repeat1, STATE(7096), 1, sym_comment, - STATE(7098), 1, - aux_sym_val_binary_repeat1, - [227614] = 3, - ACTIONS(247), 1, + [227629] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11310), 1, + anon_sym_RBRACK, + STATE(6534), 1, + aux_sym__multiple_types_repeat1, STATE(7097), 1, sym_comment, - ACTIONS(10279), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227626] = 5, - ACTIONS(247), 1, + [227645] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11278), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(11312), 1, + anon_sym_GT2, STATE(7098), 1, sym_comment, - [227642] = 5, + STATE(8014), 1, + sym_param_cmd, + [227661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11280), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, - STATE(6596), 1, + STATE(6535), 1, aux_sym__multiple_types_repeat1, STATE(7099), 1, sym_comment, - [227658] = 5, + [227677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11282), 1, + ACTIONS(11316), 1, anon_sym_RBRACK, - STATE(6395), 1, + STATE(6760), 1, aux_sym__multiple_types_repeat1, STATE(7100), 1, sym_comment, - [227674] = 5, + [227693] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11284), 1, + ACTIONS(11318), 1, anon_sym_RBRACK, - STATE(6597), 1, + STATE(6761), 1, aux_sym__multiple_types_repeat1, STATE(7101), 1, sym_comment, - [227690] = 5, - ACTIONS(3), 1, + [227709] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11286), 1, - anon_sym_RBRACK, - STATE(6598), 1, - aux_sym__multiple_types_repeat1, STATE(7102), 1, sym_comment, - [227706] = 5, + ACTIONS(10890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11288), 1, + ACTIONS(11320), 1, anon_sym_RBRACK, - STATE(6599), 1, + STATE(6762), 1, aux_sym__multiple_types_repeat1, STATE(7103), 1, sym_comment, - [227722] = 5, + [227737] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11290), 1, + ACTIONS(11322), 1, anon_sym_RBRACK, - STATE(6600), 1, + STATE(6540), 1, aux_sym__multiple_types_repeat1, STATE(7104), 1, sym_comment, - [227738] = 5, - ACTIONS(3), 1, + [227753] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11292), 1, - anon_sym_RBRACK, - STATE(6601), 1, - aux_sym__multiple_types_repeat1, STATE(7105), 1, sym_comment, - [227754] = 5, + ACTIONS(10265), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11294), 1, + ACTIONS(11324), 1, anon_sym_RBRACK, - STATE(6602), 1, + STATE(6541), 1, aux_sym__multiple_types_repeat1, STATE(7106), 1, sym_comment, - [227770] = 5, + [227781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11296), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, - STATE(6603), 1, + STATE(6542), 1, aux_sym__multiple_types_repeat1, STATE(7107), 1, sym_comment, - [227786] = 3, - ACTIONS(247), 1, + [227797] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11328), 1, + anon_sym_RBRACK, + STATE(6543), 1, + aux_sym__multiple_types_repeat1, STATE(7108), 1, sym_comment, - ACTIONS(10357), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227798] = 3, - ACTIONS(247), 1, + [227813] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2417), 1, + sym__entry_separator, + ACTIONS(11330), 1, + anon_sym_RBRACE, + STATE(591), 1, + aux_sym__multiple_types_repeat1, STATE(7109), 1, sym_comment, - ACTIONS(5926), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227810] = 4, - ACTIONS(247), 1, + [227829] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11332), 1, + anon_sym_RBRACK, + STATE(6544), 1, + aux_sym__multiple_types_repeat1, STATE(7110), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227824] = 5, - ACTIONS(247), 1, + [227845] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11298), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11334), 1, anon_sym_RBRACK, + STATE(6545), 1, + aux_sym__multiple_types_repeat1, STATE(7111), 1, sym_comment, - STATE(7446), 1, - aux_sym_val_binary_repeat1, - [227840] = 3, - ACTIONS(247), 1, + [227861] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11336), 1, + anon_sym_RBRACK, + STATE(6546), 1, + aux_sym__multiple_types_repeat1, STATE(7112), 1, sym_comment, - ACTIONS(10481), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227852] = 5, + [227877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(11300), 1, - anon_sym_RBRACK, - STATE(6610), 1, + ACTIONS(6128), 1, + anon_sym_RBRACE, + STATE(2996), 1, aux_sym__multiple_types_repeat1, STATE(7113), 1, sym_comment, - [227868] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7114), 1, - sym_comment, - ACTIONS(6152), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227880] = 5, + [227893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11302), 1, + ACTIONS(11338), 1, anon_sym_RBRACK, - STATE(6611), 1, + STATE(6547), 1, aux_sym__multiple_types_repeat1, + STATE(7114), 1, + sym_comment, + [227909] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + aux_sym_unquoted_token2, STATE(7115), 1, sym_comment, - [227896] = 5, - ACTIONS(3), 1, + ACTIONS(1874), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227923] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11304), 1, - anon_sym_RBRACK, - STATE(6612), 1, - aux_sym__multiple_types_repeat1, STATE(7116), 1, sym_comment, - [227912] = 5, + ACTIONS(10265), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11306), 1, + ACTIONS(11340), 1, anon_sym_RBRACK, - STATE(6613), 1, + STATE(6552), 1, aux_sym__multiple_types_repeat1, STATE(7117), 1, sym_comment, - [227928] = 5, + [227951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11308), 1, - anon_sym_RBRACK, - STATE(6614), 1, + ACTIONS(10155), 1, + anon_sym_LBRACK, + STATE(3402), 1, aux_sym__multiple_types_repeat1, STATE(7118), 1, sym_comment, - [227944] = 5, + [227967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11310), 1, + ACTIONS(11342), 1, anon_sym_RBRACK, - STATE(6615), 1, + STATE(6553), 1, aux_sym__multiple_types_repeat1, STATE(7119), 1, sym_comment, - [227960] = 5, + [227983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11312), 1, + ACTIONS(11344), 1, anon_sym_RBRACK, - STATE(6616), 1, + STATE(6554), 1, aux_sym__multiple_types_repeat1, STATE(7120), 1, sym_comment, - [227976] = 3, - ACTIONS(247), 1, + [227999] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11346), 1, + anon_sym_RBRACK, + STATE(6555), 1, + aux_sym__multiple_types_repeat1, STATE(7121), 1, sym_comment, - ACTIONS(10483), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227988] = 4, - ACTIONS(3), 1, + [228015] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2432), 1, - sym__entry_separator, STATE(7122), 1, sym_comment, - ACTIONS(2430), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228002] = 5, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11314), 1, + ACTIONS(11348), 1, anon_sym_RBRACK, - STATE(6617), 1, + STATE(6556), 1, aux_sym__multiple_types_repeat1, STATE(7123), 1, sym_comment, - [228018] = 4, - ACTIONS(247), 1, + [228043] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, STATE(7124), 1, sym_comment, - ACTIONS(2262), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228032] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7125), 1, - sym_comment, - ACTIONS(10485), 3, + ACTIONS(10205), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228044] = 5, + [228055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11316), 1, + ACTIONS(11350), 1, anon_sym_RBRACK, - STATE(6790), 1, + STATE(6557), 1, + aux_sym__multiple_types_repeat1, + STATE(7125), 1, + sym_comment, + [228071] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11352), 1, + anon_sym_RBRACK, + STATE(6558), 1, aux_sym__multiple_types_repeat1, STATE(7126), 1, sym_comment, - [228060] = 5, - ACTIONS(247), 1, + [228087] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7127), 1, sym_comment, - STATE(7365), 1, - sym_val_list, - [228076] = 5, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11318), 1, + ACTIONS(11354), 1, anon_sym_RBRACK, - STATE(6791), 1, + STATE(6559), 1, aux_sym__multiple_types_repeat1, STATE(7128), 1, sym_comment, - [228092] = 5, - ACTIONS(3), 1, + [228115] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11320), 1, - anon_sym_RBRACK, - STATE(6622), 1, - aux_sym__multiple_types_repeat1, STATE(7129), 1, sym_comment, - [228108] = 3, - ACTIONS(247), 1, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228127] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7130), 1, sym_comment, - ACTIONS(11322), 3, + ACTIONS(10205), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [228120] = 4, - ACTIONS(3), 1, + [228139] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2496), 1, - sym__entry_separator, STATE(7131), 1, sym_comment, - ACTIONS(2494), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228134] = 5, - ACTIONS(3), 1, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228151] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11324), 1, - anon_sym_RBRACK, - STATE(6623), 1, - aux_sym__multiple_types_repeat1, STATE(7132), 1, sym_comment, - [228150] = 5, - ACTIONS(3), 1, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228163] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11326), 1, - anon_sym_RBRACK, - STATE(6624), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11358), 1, + anon_sym_COMMA, STATE(7133), 1, sym_comment, - [228166] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11328), 1, + ACTIONS(11356), 2, anon_sym_RBRACK, - STATE(6625), 1, - aux_sym__multiple_types_repeat1, + sym_hex_digit, + [228177] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7134), 1, sym_comment, - [228182] = 4, - ACTIONS(3), 1, + ACTIONS(10872), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228189] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2500), 1, - sym__entry_separator, STATE(7135), 1, sym_comment, - ACTIONS(2498), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228196] = 5, - ACTIONS(3), 1, + ACTIONS(10205), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228201] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11330), 1, - anon_sym_RBRACK, - STATE(6626), 1, - aux_sym__multiple_types_repeat1, STATE(7136), 1, sym_comment, - [228212] = 5, - ACTIONS(3), 1, + ACTIONS(10874), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228213] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11332), 1, - anon_sym_RBRACK, - STATE(6627), 1, - aux_sym__multiple_types_repeat1, STATE(7137), 1, sym_comment, - [228228] = 5, + ACTIONS(10880), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2545), 1, sym__entry_separator, - ACTIONS(11334), 1, - anon_sym_RBRACK, - STATE(6628), 1, - aux_sym__multiple_types_repeat1, STATE(7138), 1, sym_comment, - [228244] = 3, + ACTIONS(2543), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228239] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2557), 1, + sym__entry_separator, STATE(7139), 1, sym_comment, - ACTIONS(2268), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [228256] = 3, - ACTIONS(247), 1, + ACTIONS(2555), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228253] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7140), 1, sym_comment, - ACTIONS(10231), 3, + ACTIONS(10882), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228268] = 5, - ACTIONS(3), 1, + [228265] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(6629), 1, - aux_sym__multiple_types_repeat1, STATE(7141), 1, sym_comment, - [228284] = 4, + ACTIONS(10271), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(6091), 1, sym__entry_separator, + ACTIONS(6130), 1, + anon_sym_RBRACE, + STATE(2997), 1, + aux_sym__multiple_types_repeat1, STATE(7142), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228298] = 3, - ACTIONS(247), 1, + [228293] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7143), 1, sym_comment, - ACTIONS(10609), 3, + ACTIONS(10271), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228310] = 4, - ACTIONS(3), 1, + [228305] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2516), 1, - sym__entry_separator, STATE(7144), 1, sym_comment, - ACTIONS(2514), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228324] = 4, - ACTIONS(3), 1, + ACTIONS(10289), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228317] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2353), 1, - sym__entry_separator, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11360), 1, + anon_sym_RBRACK, STATE(7145), 1, sym_comment, - ACTIONS(2351), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228338] = 3, - ACTIONS(247), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [228333] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7146), 1, sym_comment, - ACTIONS(11338), 3, + ACTIONS(10289), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [228350] = 4, + [228345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11362), 1, + anon_sym_RBRACK, + STATE(6773), 1, + aux_sym__multiple_types_repeat1, STATE(7147), 1, sym_comment, - ACTIONS(2355), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228364] = 3, - ACTIONS(247), 1, + [228361] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2191), 1, + sym__entry_separator, STATE(7148), 1, sym_comment, - ACTIONS(6156), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228376] = 5, + ACTIONS(2185), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11340), 1, + ACTIONS(11364), 1, anon_sym_RBRACK, - STATE(6633), 1, + STATE(6782), 1, aux_sym__multiple_types_repeat1, STATE(7149), 1, sym_comment, - [228392] = 3, - ACTIONS(247), 1, + [228391] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7150), 1, sym_comment, - ACTIONS(10167), 3, + ACTIONS(10289), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228404] = 5, - ACTIONS(3), 1, + [228403] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(6634), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1968), 1, + aux_sym_unquoted_token2, STATE(7151), 1, sym_comment, - [228420] = 5, - ACTIONS(3), 1, + ACTIONS(1970), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [228417] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11344), 1, - anon_sym_RBRACK, - STATE(6635), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(11366), 1, + anon_sym_GT2, STATE(7152), 1, sym_comment, - [228436] = 5, + STATE(7836), 1, + sym_param_cmd, + [228433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11346), 1, - anon_sym_RBRACK, - STATE(6636), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(4635), 1, + aux_sym_unquoted_token4, STATE(7153), 1, sym_comment, - [228452] = 5, - ACTIONS(3), 1, + STATE(7675), 1, + sym__expr_parenthesized_immediate, + [228449] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11348), 1, - anon_sym_RBRACK, - STATE(6637), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(7848), 1, + anon_sym_EQ, + STATE(5009), 1, + sym_param_cmd, STATE(7154), 1, sym_comment, - [228468] = 5, - ACTIONS(247), 1, + [228465] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11350), 1, - anon_sym_RBRACK, - STATE(6845), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2345), 1, + sym__newline, + ACTIONS(2349), 1, + sym__space, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7155), 1, sym_comment, - [228484] = 4, - ACTIONS(3), 1, + [228481] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2361), 1, - sym__entry_separator, + STATE(280), 1, + aux_sym__block_body_repeat1, STATE(7156), 1, sym_comment, - ACTIONS(2359), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228498] = 5, + ACTIONS(143), 2, + sym__newline, + anon_sym_SEMI, + [228495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(1800), 1, sym__entry_separator, - ACTIONS(11352), 1, - anon_sym_RBRACK, - STATE(6638), 1, - aux_sym__multiple_types_repeat1, STATE(7157), 1, sym_comment, - [228514] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11354), 1, + ACTIONS(1788), 2, anon_sym_RBRACK, - STATE(6639), 1, - aux_sym__multiple_types_repeat1, - STATE(7158), 1, - sym_comment, - [228530] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [228509] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7159), 1, + STATE(7158), 1, sym_comment, - ACTIONS(10233), 3, + ACTIONS(10305), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228542] = 5, - ACTIONS(3), 1, + [228521] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11356), 1, - anon_sym_RBRACK, - STATE(6640), 1, - aux_sym__multiple_types_repeat1, - STATE(7160), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(7159), 1, sym_comment, - [228558] = 4, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [228535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(2056), 1, sym__entry_separator, - STATE(7161), 1, + STATE(7160), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2054), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228572] = 4, - ACTIONS(3), 1, + [228549] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11358), 1, - anon_sym_LPAREN, - STATE(7162), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(7161), 1, sym_comment, - ACTIONS(11360), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [228586] = 3, - ACTIONS(247), 1, + ACTIONS(1892), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228563] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7163), 1, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(7848), 1, + anon_sym_EQ, + STATE(5010), 1, + sym_param_cmd, + STATE(7162), 1, sym_comment, - ACTIONS(10609), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228598] = 3, - ACTIONS(247), 1, + [228579] = 4, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7164), 1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + STATE(7163), 1, sym_comment, - ACTIONS(5933), 3, + ACTIONS(1948), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [228610] = 5, + [228593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token4, - STATE(7165), 1, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11368), 1, + anon_sym_RBRACK, + STATE(2858), 1, + aux_sym__multiple_types_repeat1, + STATE(7164), 1, sym_comment, - STATE(7608), 1, - sym__expr_parenthesized_immediate, - [228626] = 3, - ACTIONS(247), 1, + [228609] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7166), 1, + STATE(7165), 1, sym_comment, - ACTIONS(10099), 3, - ts_builtin_sym_end, + ACTIONS(11370), 3, sym__newline, anon_sym_SEMI, - [228638] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [228621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2514), 1, + sym__entry_separator, + STATE(7166), 1, + sym_comment, + ACTIONS(2512), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228635] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2641), 1, + sym__entry_separator, STATE(7167), 1, sym_comment, - ACTIONS(10461), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228650] = 4, - ACTIONS(247), 1, + ACTIONS(2639), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228649] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, + ACTIONS(1540), 1, + sym__entry_separator, STATE(7168), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228664] = 3, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228663] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7169), 1, sym_comment, - ACTIONS(10329), 3, + ACTIONS(10917), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228676] = 3, - ACTIONS(247), 1, + [228675] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2577), 1, + sym__entry_separator, STATE(7170), 1, sym_comment, - ACTIONS(10101), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228688] = 3, - ACTIONS(247), 1, + ACTIONS(2575), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228689] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2581), 1, + sym__entry_separator, STATE(7171), 1, sym_comment, - ACTIONS(10617), 3, + ACTIONS(2579), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228703] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7172), 1, + sym_comment, + ACTIONS(10289), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228700] = 5, + [228715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - ACTIONS(11362), 1, - sym__space, - STATE(7172), 1, + ACTIONS(2036), 1, + sym__entry_separator, + STATE(7173), 1, sym_comment, - [228716] = 3, - ACTIONS(247), 1, + ACTIONS(2034), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228729] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7173), 1, + STATE(7174), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(10261), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228728] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3557), 1, - sym__newline, - ACTIONS(3559), 1, - sym__space, - STATE(1171), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7174), 1, - sym_comment, - [228744] = 3, - ACTIONS(247), 1, + [228741] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7175), 1, sym_comment, - ACTIONS(10329), 3, + ACTIONS(10147), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228756] = 3, - ACTIONS(247), 1, + [228753] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2494), 1, + sym__entry_separator, STATE(7176), 1, sym_comment, - ACTIONS(11364), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228768] = 3, - ACTIONS(247), 1, + ACTIONS(2492), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228767] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2498), 1, + sym__entry_separator, STATE(7177), 1, sym_comment, - ACTIONS(10357), 3, + ACTIONS(2496), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228781] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7178), 1, + sym_comment, + ACTIONS(10842), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228793] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7179), 1, + sym_comment, + ACTIONS(10639), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228780] = 4, + [228805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(6530), 1, sym__entry_separator, - STATE(7178), 1, - sym_comment, - ACTIONS(1863), 2, + ACTIONS(11372), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228794] = 3, - ACTIONS(247), 1, + STATE(6261), 1, + aux_sym__multiple_types_repeat1, + STATE(7180), 1, + sym_comment, + [228821] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7179), 1, + STATE(7181), 1, sym_comment, - ACTIONS(10807), 3, + ACTIONS(10183), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228806] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11366), 1, - anon_sym_RBRACK, - STATE(6824), 1, - aux_sym_val_binary_repeat1, - STATE(7180), 1, - sym_comment, - [228822] = 4, + [228833] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(2585), 1, sym__entry_separator, - STATE(7181), 1, + STATE(7182), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2583), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228836] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11368), 1, - anon_sym_RBRACK, - STATE(7182), 1, - sym_comment, - STATE(7187), 1, - aux_sym_val_binary_repeat1, - [228852] = 3, - ACTIONS(247), 1, + [228847] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2008), 1, + sym__entry_separator, STATE(7183), 1, sym_comment, - ACTIONS(10243), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228864] = 4, + ACTIONS(2006), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(2589), 1, sym__entry_separator, STATE(7184), 1, sym_comment, - ACTIONS(1887), 2, + ACTIONS(2587), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228878] = 3, - ACTIONS(247), 1, + [228875] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7185), 1, sym_comment, - ACTIONS(10235), 3, + ACTIONS(10335), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228890] = 5, + [228887] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(7190), 1, - aux_sym_unquoted_token4, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11374), 1, + anon_sym_RBRACK, + STATE(6548), 1, + aux_sym__multiple_types_repeat1, STATE(7186), 1, sym_comment, - STATE(7494), 1, - sym__expr_parenthesized_immediate, - [228906] = 5, - ACTIONS(247), 1, + [228903] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11370), 1, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11376), 1, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + STATE(6263), 1, + aux_sym__multiple_types_repeat1, STATE(7187), 1, sym_comment, - [228922] = 3, - ACTIONS(247), 1, + [228919] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11378), 1, + anon_sym_RBRACK, + STATE(6265), 1, + aux_sym__multiple_types_repeat1, STATE(7188), 1, sym_comment, - ACTIONS(10591), 3, + [228935] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7189), 1, + sym_comment, + ACTIONS(10844), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228934] = 4, - ACTIONS(3), 1, + [228947] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2163), 1, - sym__entry_separator, - STATE(7189), 1, + STATE(7190), 1, sym_comment, - ACTIONS(2157), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228948] = 5, - ACTIONS(3), 1, + ACTIONS(10864), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228959] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11372), 1, - anon_sym_RBRACK, - STATE(6379), 1, - aux_sym__multiple_types_repeat1, - STATE(7190), 1, + STATE(7191), 1, sym_comment, - [228964] = 4, + ACTIONS(10864), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(6091), 1, sym__entry_separator, - STATE(7191), 1, - sym_comment, - ACTIONS(2343), 2, - anon_sym_RBRACK, + ACTIONS(11380), 1, anon_sym_RBRACE, - [228978] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACE, - ACTIONS(11374), 1, - sym_long_flag_identifier, - ACTIONS(11376), 1, - anon_sym_EQ2, + STATE(2940), 1, + aux_sym__multiple_types_repeat1, STATE(7192), 1, sym_comment, - [228994] = 5, - ACTIONS(3), 1, + [228987] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11378), 1, - anon_sym_RBRACK, - STATE(6380), 1, - aux_sym__multiple_types_repeat1, STATE(7193), 1, sym_comment, - [229010] = 5, - ACTIONS(3), 1, + ACTIONS(10884), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228999] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11380), 1, - anon_sym_RBRACK, - STATE(6381), 1, - aux_sym__multiple_types_repeat1, STATE(7194), 1, sym_comment, - [229026] = 5, - ACTIONS(3), 1, + ACTIONS(10886), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229011] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11382), 1, - anon_sym_RBRACK, - STATE(6382), 1, - aux_sym__multiple_types_repeat1, STATE(7195), 1, sym_comment, - [229042] = 5, - ACTIONS(247), 1, + ACTIONS(10888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229023] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6219), 1, + ACTIONS(6343), 1, anon_sym_AT, - ACTIONS(11384), 1, - anon_sym_GT2, + ACTIONS(7971), 1, + anon_sym_EQ, + STATE(5072), 1, + sym_param_cmd, STATE(7196), 1, sym_comment, - STATE(7949), 1, - sym_param_cmd, - [229058] = 5, - ACTIONS(3), 1, + [229039] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11386), 1, - anon_sym_RBRACK, - STATE(6383), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, STATE(7197), 1, sym_comment, - [229074] = 3, - ACTIONS(247), 1, + ACTIONS(2361), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [229053] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, STATE(7198), 1, sym_comment, - ACTIONS(11388), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229086] = 5, + ACTIONS(1800), 2, + sym_identifier, + anon_sym_DOLLAR, + [229067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11390), 1, - anon_sym_RBRACK, - STATE(6384), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(7199), 1, sym_comment, - [229102] = 5, + ACTIONS(2337), 2, + sym_identifier, + anon_sym_DOLLAR, + [229081] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11392), 1, - anon_sym_RBRACK, - STATE(6385), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(7282), 1, + aux_sym_unquoted_token4, STATE(7200), 1, sym_comment, - [229118] = 5, + STATE(7622), 1, + sym__expr_parenthesized_immediate, + [229097] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11394), 1, + ACTIONS(1788), 1, anon_sym_RBRACK, - STATE(6386), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1800), 1, + sym__entry_separator, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token2, STATE(7201), 1, sym_comment, - [229134] = 3, - ACTIONS(247), 1, + [229113] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11382), 1, + sym__table_head_separator, STATE(7202), 1, sym_comment, - ACTIONS(10165), 3, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [229127] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7203), 1, + sym_comment, + ACTIONS(10937), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229146] = 5, + [229139] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, - ACTIONS(5928), 1, - anon_sym_EQ_GT, - ACTIONS(5933), 1, - anon_sym_PIPE, - STATE(7203), 1, - sym_comment, - [229162] = 3, - ACTIONS(247), 1, - anon_sym_POUND, + ACTIONS(2068), 1, + sym__entry_separator, STATE(7204), 1, sym_comment, - ACTIONS(10383), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229174] = 3, - ACTIONS(247), 1, + ACTIONS(2066), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229153] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(7205), 1, sym_comment, - ACTIONS(10133), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229186] = 4, + ACTIONS(1538), 2, + sym_identifier, + anon_sym_DOLLAR, + [229167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - sym__entry_separator, STATE(7206), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2006), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [229200] = 4, + sym__entry_separator, + sym__table_head_separator, + [229179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11396), 1, - sym__table_head_separator, + ACTIONS(11384), 1, + anon_sym_LPAREN, STATE(7207), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229214] = 4, - ACTIONS(3), 1, + ACTIONS(11386), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [229193] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2450), 1, - sym__entry_separator, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6284), 1, + sym_block, STATE(7208), 1, sym_comment, - ACTIONS(2448), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229228] = 4, - ACTIONS(3), 1, + [229209] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2454), 1, - sym__entry_separator, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_block, STATE(7209), 1, sym_comment, - ACTIONS(2452), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229242] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - sym__entry_separator, - STATE(7210), 1, - sym_comment, - ACTIONS(1907), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229256] = 4, - ACTIONS(247), 1, + [229225] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1919), 1, aux_sym_unquoted_token2, - STATE(7211), 1, + STATE(7210), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(1921), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [229270] = 4, - ACTIONS(3), 1, + [229239] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2470), 1, - sym__entry_separator, - STATE(7212), 1, - sym_comment, - ACTIONS(2468), 2, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11388), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229284] = 5, - ACTIONS(247), 1, + STATE(7211), 1, + sym_comment, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [229255] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3449), 1, aux_sym_record_entry_token1, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6290), 1, + STATE(4692), 1, sym_block, - STATE(7213), 1, + STATE(7212), 1, sym_comment, - [229300] = 3, - ACTIONS(247), 1, + [229271] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7214), 1, + STATE(7213), 1, sym_comment, - ACTIONS(10383), 3, + ACTIONS(10977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229312] = 5, - ACTIONS(247), 1, + [229283] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6299), 1, - sym_block, + ACTIONS(2040), 1, + sym__entry_separator, + STATE(7214), 1, + sym_comment, + ACTIONS(2038), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229297] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11390), 1, + sym__table_head_separator, STATE(7215), 1, sym_comment, - [229328] = 5, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [229311] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(4648), 1, - sym_block, + ACTIONS(2603), 1, + sym__entry_separator, STATE(7216), 1, sym_comment, - [229344] = 4, + ACTIONS(2601), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2484), 1, + ACTIONS(2607), 1, sym__entry_separator, STATE(7217), 1, sym_comment, - ACTIONS(2482), 2, + ACTIONS(2605), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229358] = 5, + [229339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - sym__newline, - ACTIONS(2242), 1, - sym__space, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + ACTIONS(2502), 1, + sym__entry_separator, STATE(7218), 1, sym_comment, - [229374] = 4, - ACTIONS(247), 1, + ACTIONS(2500), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229353] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_RPAREN, STATE(7219), 1, sym_comment, - ACTIONS(1285), 2, + ACTIONS(11392), 3, sym__newline, anon_sym_SEMI, - [229388] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [229365] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11394), 1, + sym__table_head_separator, STATE(7220), 1, sym_comment, - ACTIONS(10429), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229400] = 4, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [229379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(5767), 1, sym__entry_separator, + ACTIONS(11396), 1, + anon_sym_RBRACK, + STATE(2731), 1, + aux_sym__multiple_types_repeat1, STATE(7221), 1, sym_comment, - ACTIONS(2146), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229414] = 3, - ACTIONS(247), 1, + [229395] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + ACTIONS(11398), 1, + sym__space, STATE(7222), 1, sym_comment, - ACTIONS(1292), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229426] = 5, - ACTIONS(3), 1, + [229411] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11398), 1, - anon_sym_RBRACK, - STATE(6618), 1, - aux_sym__multiple_types_repeat1, STATE(7223), 1, sym_comment, - [229442] = 5, + ACTIONS(10267), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229423] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2044), 1, sym__entry_separator, - ACTIONS(11400), 1, - anon_sym_RBRACK, - STATE(6587), 1, - aux_sym__multiple_types_repeat1, STATE(7224), 1, sym_comment, - [229458] = 5, - ACTIONS(3), 1, + ACTIONS(2042), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229437] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__newline, - ACTIONS(1719), 1, - sym__space, - ACTIONS(7190), 1, + ACTIONS(1968), 1, aux_sym_unquoted_token2, STATE(7225), 1, sym_comment, - [229474] = 4, - ACTIONS(3), 1, + ACTIONS(1970), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [229451] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11402), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, STATE(7226), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229488] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7227), 1, - sym_comment, - ACTIONS(10865), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229500] = 5, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7436), 1, + sym_val_list, + [229467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6038), 1, - anon_sym_RBRACE, - ACTIONS(6040), 1, + ACTIONS(5767), 1, sym__entry_separator, - STATE(2940), 1, + ACTIONS(11400), 1, + anon_sym_RBRACK, + STATE(2736), 1, aux_sym__multiple_types_repeat1, + STATE(7227), 1, + sym_comment, + [229483] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11402), 1, + anon_sym_RBRACK, STATE(7228), 1, sym_comment, - [229516] = 5, - ACTIONS(3), 1, + STATE(7258), 1, + aux_sym_val_binary_repeat1, + [229499] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__newline, - ACTIONS(2250), 1, - sym__space, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, STATE(7229), 1, sym_comment, - [229532] = 5, - ACTIONS(3), 1, + ACTIONS(11404), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229511] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - ACTIONS(11404), 1, - sym__space, STATE(7230), 1, sym_comment, - [229548] = 5, - ACTIONS(247), 1, + ACTIONS(11406), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229523] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7094), 1, - sym_val_list, + ACTIONS(7894), 1, + sym__entry_separator, + ACTIONS(7898), 1, + anon_sym_RBRACK, + ACTIONS(11408), 1, + anon_sym_LT, STATE(7231), 1, sym_comment, - [229564] = 5, - ACTIONS(3), 1, + [229539] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2254), 1, - sym__newline, - ACTIONS(2256), 1, - sym__space, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7180), 1, + sym_val_list, STATE(7232), 1, sym_comment, - [229580] = 5, - ACTIONS(3), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [229555] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6044), 1, - anon_sym_RBRACE, - STATE(2965), 1, - aux_sym__multiple_types_repeat1, STATE(7233), 1, sym_comment, - [229596] = 5, - ACTIONS(247), 1, + ACTIONS(10961), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229567] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6818), 1, + STATE(7188), 1, sym_val_list, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7234), 1, sym_comment, - [229612] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(11406), 1, - anon_sym_GT2, - STATE(7235), 1, - sym_comment, - STATE(7908), 1, - sym_param_cmd, - [229628] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7236), 1, - sym_comment, - STATE(7249), 1, - sym_val_list, - [229644] = 5, - ACTIONS(247), 1, + [229583] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7237), 1, + ACTIONS(7894), 1, + sym__entry_separator, + ACTIONS(7898), 1, + anon_sym_RBRACK, + ACTIONS(11410), 1, + anon_sym_LT, + STATE(7235), 1, sym_comment, - STATE(7254), 1, - sym_val_list, - [229660] = 4, + [229599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(2518), 1, sym__entry_separator, - STATE(7238), 1, + STATE(7236), 1, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2516), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229674] = 4, + [229613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(2522), 1, sym__entry_separator, - STATE(7239), 1, + STATE(7237), 1, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2520), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229688] = 4, - ACTIONS(247), 1, + [229627] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11408), 1, + STATE(7238), 1, + sym_comment, + ACTIONS(5778), 3, anon_sym_PIPE, - ACTIONS(11411), 1, + anon_sym_if, anon_sym_EQ_GT, - STATE(7240), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [229702] = 5, - ACTIONS(247), 1, + [229639] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7128), 1, + STATE(6907), 1, sym_val_list, - STATE(7241), 1, - sym_comment, - [229718] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7242), 1, + STATE(7239), 1, sym_comment, - ACTIONS(6136), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229730] = 5, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [229655] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(2526), 1, sym__entry_separator, - ACTIONS(6066), 1, - anon_sym_RBRACE, - STATE(3000), 1, - aux_sym__multiple_types_repeat1, - STATE(7243), 1, + STATE(7240), 1, sym_comment, - [229746] = 5, + ACTIONS(2524), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11413), 1, + ACTIONS(11412), 1, anon_sym_RBRACK, - STATE(2819), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(7244), 1, + STATE(7241), 1, sym_comment, - [229762] = 5, - ACTIONS(247), 1, + [229685] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(4648), 1, - sym_block, - STATE(7245), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + ACTIONS(11414), 1, + sym__space, + STATE(7242), 1, sym_comment, - [229778] = 5, + [229701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(5952), 1, sym__entry_separator, - ACTIONS(6076), 1, - anon_sym_RBRACE, - STATE(3006), 1, + ACTIONS(11416), 1, + anon_sym_RBRACK, + STATE(2855), 1, aux_sym__multiple_types_repeat1, - STATE(7246), 1, - sym_comment, - [229794] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7247), 1, + STATE(7243), 1, sym_comment, - STATE(7329), 1, - sym_val_list, - [229810] = 5, + [229717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(2569), 1, sym__entry_separator, - ACTIONS(6064), 1, + STATE(7244), 1, + sym_comment, + ACTIONS(2567), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2978), 1, - aux_sym__multiple_types_repeat1, - STATE(7248), 1, + [229731] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7245), 1, + sym_comment, + ACTIONS(11418), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229743] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7246), 1, sym_comment, - [229826] = 5, + ACTIONS(10445), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11415), 1, + ACTIONS(11420), 1, anon_sym_RBRACK, - STATE(6786), 1, + STATE(6799), 1, aux_sym__multiple_types_repeat1, - STATE(7249), 1, + STATE(7247), 1, sym_comment, - [229842] = 3, - ACTIONS(247), 1, + [229771] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7250), 1, + STATE(7248), 1, sym_comment, - ACTIONS(10097), 3, - ts_builtin_sym_end, + ACTIONS(11422), 3, sym__newline, anon_sym_SEMI, - [229854] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [229783] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7251), 1, + STATE(7249), 1, sym_comment, - ACTIONS(11417), 3, + ACTIONS(10445), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229866] = 3, - ACTIONS(247), 1, + [229795] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6124), 1, + anon_sym_RBRACK, + STATE(7250), 1, + sym_comment, + ACTIONS(6126), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [229809] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + ACTIONS(7202), 1, + aux_sym_unquoted_token4, + STATE(7251), 1, + sym_comment, + STATE(7584), 1, + sym__expr_parenthesized_immediate, + [229825] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7252), 1, sym_comment, - ACTIONS(11419), 3, + ACTIONS(10201), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229878] = 5, + [229837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(1996), 1, sym__entry_separator, - ACTIONS(11421), 1, - anon_sym_RBRACK, - STATE(6788), 1, - aux_sym__multiple_types_repeat1, STATE(7253), 1, sym_comment, - [229894] = 5, + ACTIONS(1994), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2595), 1, sym__entry_separator, - ACTIONS(11423), 1, - anon_sym_RBRACK, - STATE(6789), 1, - aux_sym__multiple_types_repeat1, STATE(7254), 1, sym_comment, - [229910] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2593), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [229865] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7255), 1, sym_comment, - ACTIONS(6062), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [229924] = 3, - ACTIONS(247), 1, + ACTIONS(10201), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229877] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7256), 1, sym_comment, - ACTIONS(10283), 3, + ACTIONS(10481), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229936] = 3, - ACTIONS(247), 1, + [229889] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(11424), 1, + anon_sym_EQ2, STATE(7257), 1, sym_comment, - ACTIONS(10867), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229948] = 5, - ACTIONS(3), 1, + ACTIONS(5050), 2, + sym_identifier, + anon_sym_DOLLAR, + [229903] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(11425), 1, - anon_sym_RBRACE, - STATE(2970), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11426), 1, + anon_sym_RBRACK, STATE(7258), 1, sym_comment, - [229964] = 3, - ACTIONS(247), 1, + STATE(7264), 1, + aux_sym_val_binary_repeat1, + [229919] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11428), 1, + anon_sym_RBRACK, + STATE(2852), 1, + aux_sym__multiple_types_repeat1, STATE(7259), 1, sym_comment, - ACTIONS(10869), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229976] = 4, - ACTIONS(247), 1, + [229935] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11430), 1, + anon_sym_RBRACK, + STATE(2853), 1, + aux_sym__multiple_types_repeat1, STATE(7260), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [229990] = 3, - ACTIONS(247), 1, + [229951] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7261), 1, sym_comment, - ACTIONS(10383), 3, + ACTIONS(10209), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230002] = 3, - ACTIONS(247), 1, + [229963] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11432), 1, + anon_sym_RBRACK, + STATE(6266), 1, + aux_sym__multiple_types_repeat1, STATE(7262), 1, sym_comment, - ACTIONS(10285), 3, + [229979] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7263), 1, + sym_comment, + ACTIONS(10821), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230014] = 5, - ACTIONS(3), 1, + [229991] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_RBRACE, - ACTIONS(1719), 1, - sym__entry_separator, - ACTIONS(8629), 1, - aux_sym__unquoted_in_record_token2, - STATE(7263), 1, + ACTIONS(11434), 1, + anon_sym_RBRACK, + ACTIONS(11436), 1, + sym_hex_digit, + STATE(7264), 2, sym_comment, - [230030] = 4, + aux_sym_val_binary_repeat1, + [230005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2404), 1, - sym__entry_separator, - STATE(7264), 1, + ACTIONS(11439), 1, + sym__table_head_separator, + STATE(7265), 1, sym_comment, - ACTIONS(2402), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [230044] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [230019] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(7265), 1, + ACTIONS(10141), 1, + anon_sym_LPAREN, + STATE(7266), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230058] = 3, - ACTIONS(247), 1, + ACTIONS(10143), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [230033] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7266), 1, + STATE(7267), 1, sym_comment, - ACTIONS(10145), 3, + ACTIONS(10825), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230070] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2488), 1, - sym__entry_separator, - STATE(7267), 1, - sym_comment, - ACTIONS(2486), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230084] = 4, + [230045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2318), 1, - anon_sym_RBRACE, + ACTIONS(11441), 1, + sym__table_head_separator, STATE(7268), 1, sym_comment, - ACTIONS(2320), 2, - anon_sym_LPAREN2, + ACTIONS(1538), 2, + anon_sym_RBRACK, sym__entry_separator, - [230098] = 4, + [230059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2512), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11443), 1, + anon_sym_RBRACK, + STATE(6267), 1, + aux_sym__multiple_types_repeat1, STATE(7269), 1, sym_comment, - ACTIONS(2510), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230112] = 3, - ACTIONS(247), 1, + [230075] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11445), 1, + anon_sym_RBRACK, + STATE(6268), 1, + aux_sym__multiple_types_repeat1, STATE(7270), 1, sym_comment, - ACTIONS(10287), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230124] = 3, - ACTIONS(247), 1, + [230091] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11447), 1, + anon_sym_RBRACK, + STATE(6269), 1, + aux_sym__multiple_types_repeat1, STATE(7271), 1, sym_comment, - ACTIONS(10287), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230136] = 5, - ACTIONS(3), 1, + [230107] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - ACTIONS(8629), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7031), 1, + sym_val_list, STATE(7272), 1, sym_comment, - STATE(7647), 1, - sym__expr_parenthesized_immediate, - [230152] = 3, - ACTIONS(247), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [230123] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1788), 1, + sym__newline, + ACTIONS(1800), 1, + sym__space, + ACTIONS(7202), 1, + aux_sym_unquoted_token2, STATE(7273), 1, sym_comment, - ACTIONS(10875), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230164] = 3, - ACTIONS(247), 1, + [230139] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7100), 1, + sym_val_list, STATE(7274), 1, sym_comment, - ACTIONS(10227), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230176] = 4, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [230155] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7103), 1, + sym_val_list, + STATE(7275), 1, + sym_comment, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [230171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11427), 1, + ACTIONS(11449), 1, sym__table_head_separator, - STATE(7275), 1, + STATE(7276), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230190] = 3, - ACTIONS(247), 1, + [230185] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7276), 1, + STATE(7277), 1, sym_comment, - ACTIONS(10877), 3, - ts_builtin_sym_end, + ACTIONS(11451), 3, sym__newline, anon_sym_SEMI, - [230202] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, - STATE(7277), 1, - sym_comment, - ACTIONS(2238), 2, - sym_identifier, - anon_sym_DOLLAR, - [230216] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [230197] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, STATE(7278), 1, sym_comment, - ACTIONS(1026), 2, - sym_identifier, - anon_sym_DOLLAR, - [230230] = 4, - ACTIONS(3), 1, + ACTIONS(6186), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230209] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11429), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7147), 1, + sym_val_list, STATE(7279), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230244] = 3, - ACTIONS(247), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [230225] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2625), 1, + sym__entry_separator, STATE(7280), 1, sym_comment, - ACTIONS(11431), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230256] = 5, - ACTIONS(247), 1, + ACTIONS(2623), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230239] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6906), 1, - sym_val_list, - STATE(6944), 1, - aux_sym_val_table_repeat1, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(11453), 1, + anon_sym_GT2, STATE(7281), 1, sym_comment, - [230272] = 3, - ACTIONS(247), 1, + STATE(7854), 1, + sym_param_cmd, + [230255] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7282), 1, sym_comment, - ACTIONS(11433), 3, + ACTIONS(11455), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [230284] = 5, - ACTIONS(247), 1, + [230267] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7026), 1, - sym_val_list, - STATE(7283), 1, + ACTIONS(1233), 1, + anon_sym_POUND_BANG, + ACTIONS(11457), 1, + sym__newline, + STATE(7283), 2, sym_comment, - [230300] = 5, - ACTIONS(247), 1, + aux_sym_shebang_repeat1, + [230281] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7033), 1, - sym_val_list, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11460), 1, + anon_sym_RBRACK, + STATE(6270), 1, + aux_sym__multiple_types_repeat1, STATE(7284), 1, sym_comment, - [230316] = 5, - ACTIONS(3), 1, + [230297] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4996), 1, - sym__space, - ACTIONS(4998), 1, - sym__newline, - ACTIONS(11435), 1, - anon_sym_EQ2, STATE(7285), 1, sym_comment, - [230332] = 5, + ACTIONS(10193), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(2490), 1, sym__entry_separator, - ACTIONS(11437), 1, - anon_sym_RBRACE, - STATE(575), 1, - aux_sym__multiple_types_repeat1, STATE(7286), 1, sym_comment, - [230348] = 5, - ACTIONS(247), 1, + ACTIONS(2488), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230323] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7089), 1, - sym_val_list, + ACTIONS(2486), 1, + sym__entry_separator, STATE(7287), 1, sym_comment, - [230364] = 5, + ACTIONS(2484), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11439), 1, + ACTIONS(11462), 1, anon_sym_RBRACK, - STATE(3454), 1, + STATE(6271), 1, aux_sym__multiple_types_repeat1, STATE(7288), 1, sym_comment, - [230380] = 3, - ACTIONS(247), 1, + [230353] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11464), 1, + anon_sym_RBRACK, + STATE(6272), 1, + aux_sym__multiple_types_repeat1, STATE(7289), 1, sym_comment, - ACTIONS(11441), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230392] = 3, - ACTIONS(247), 1, + [230369] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2549), 1, + sym__entry_separator, STATE(7290), 1, sym_comment, - ACTIONS(10293), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230404] = 3, - ACTIONS(247), 1, + ACTIONS(2547), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230383] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11466), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym__multiple_types_repeat1, STATE(7291), 1, sym_comment, - ACTIONS(10295), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230416] = 3, - ACTIONS(247), 1, + [230399] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7292), 1, sym_comment, - ACTIONS(11443), 3, + ACTIONS(10884), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [230428] = 4, + [230411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11445), 1, - sym__table_head_separator, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2353), 1, + sym__newline, + ACTIONS(2355), 1, + sym__space, STATE(7293), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230442] = 4, + [230427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, - sym__space, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11468), 1, + anon_sym_RBRACK, + STATE(6779), 1, + aux_sym__multiple_types_repeat1, STATE(7294), 1, sym_comment, - ACTIONS(2268), 2, - sym__newline, - aux_sym_unquoted_token4, - [230456] = 5, - ACTIONS(3), 1, + [230443] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11447), 1, - anon_sym_POUND_BANG, - ACTIONS(11449), 1, - sym__newline, - STATE(7028), 1, - aux_sym_shebang_repeat1, + ACTIONS(10025), 1, + anon_sym_PIPE, + ACTIONS(11470), 1, + anon_sym_EQ_GT, + STATE(6845), 1, + aux_sym_match_pattern_repeat1, STATE(7295), 1, sym_comment, - [230472] = 4, + [230459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11451), 1, - sym__table_head_separator, + ACTIONS(6089), 1, + anon_sym_RBRACE, + ACTIONS(6091), 1, + sym__entry_separator, + STATE(2952), 1, + aux_sym__multiple_types_repeat1, STATE(7296), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230486] = 3, - ACTIONS(247), 1, + [230475] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7186), 1, + sym_val_list, STATE(7297), 1, sym_comment, - ACTIONS(10297), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230498] = 3, - ACTIONS(247), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + [230491] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11472), 1, + sym__table_head_separator, STATE(7298), 1, sym_comment, - ACTIONS(10145), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230510] = 3, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230505] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7299), 1, sym_comment, - ACTIONS(10873), 3, + ACTIONS(10827), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230522] = 3, - ACTIONS(247), 1, + [230517] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11474), 1, + anon_sym_RBRACK, + STATE(6813), 1, + aux_sym__multiple_types_repeat1, STATE(7300), 1, sym_comment, - ACTIONS(10873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230534] = 4, + [230533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11453), 1, + ACTIONS(11476), 1, sym__table_head_separator, STATE(7301), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230548] = 3, - ACTIONS(247), 1, + [230547] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7302), 1, sym_comment, - ACTIONS(10873), 3, + ACTIONS(10829), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230560] = 4, - ACTIONS(3), 1, + [230559] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11455), 1, - sym__table_head_separator, - STATE(7303), 1, + ACTIONS(11478), 1, + anon_sym_LBRACK, + STATE(7526), 1, + sym_val_list, + STATE(7303), 2, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230574] = 5, - ACTIONS(247), 1, + aux_sym_val_table_repeat1, + [230573] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6290), 1, - sym_block, STATE(7304), 1, sym_comment, - [230590] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7305), 1, - sym_comment, - ACTIONS(10873), 3, + ACTIONS(10831), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230602] = 5, - ACTIONS(247), 1, + [230585] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, + STATE(7270), 1, + sym_val_list, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7194), 1, + STATE(7305), 1, + sym_comment, + [230601] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7284), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7306), 1, sym_comment, - [230618] = 5, - ACTIONS(247), 1, + [230617] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7197), 1, + STATE(7289), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7307), 1, sym_comment, - [230634] = 5, - ACTIONS(247), 1, + [230633] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7200), 1, + STATE(7291), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7308), 1, sym_comment, - [230650] = 5, - ACTIONS(247), 1, + [230649] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7201), 1, - sym_val_list, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, STATE(7309), 1, sym_comment, - [230666] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - sym__entry_separator, - ACTIONS(11457), 1, - anon_sym_RBRACE, - STATE(576), 1, - aux_sym__multiple_types_repeat1, - STATE(7310), 1, - sym_comment, - [230682] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7311), 1, - sym_comment, - ACTIONS(10873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230694] = 4, + ACTIONS(2373), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11459), 1, + ACTIONS(11481), 1, sym__table_head_separator, - STATE(7312), 1, + STATE(7310), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230708] = 5, + [230677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6040), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(6052), 1, + ACTIONS(6095), 1, anon_sym_RBRACE, - STATE(2991), 1, + STATE(2954), 1, aux_sym__multiple_types_repeat1, - STATE(7313), 1, + STATE(7311), 1, sym_comment, - [230724] = 4, + [230693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11461), 1, + ACTIONS(11483), 1, sym__table_head_separator, - STATE(7314), 1, + STATE(7312), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230738] = 4, + [230707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2298), 1, + ACTIONS(2454), 1, anon_sym_RBRACE, - STATE(7315), 1, + STATE(7313), 1, sym_comment, - ACTIONS(2300), 2, + ACTIONS(2456), 2, anon_sym_LPAREN2, sym__entry_separator, - [230752] = 5, - ACTIONS(247), 1, + [230721] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6821), 1, + STATE(6822), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7316), 1, + STATE(7314), 1, sym_comment, - [230768] = 5, - ACTIONS(247), 1, + [230737] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6823), 1, + STATE(6824), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7317), 1, + STATE(7315), 1, sym_comment, - [230784] = 5, - ACTIONS(3), 1, + [230753] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - ACTIONS(6058), 1, - anon_sym_RBRACE, - STATE(2992), 1, - aux_sym__multiple_types_repeat1, - STATE(7318), 1, + STATE(7316), 1, sym_comment, - [230800] = 5, - ACTIONS(247), 1, + ACTIONS(8990), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230765] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6826), 1, + STATE(6827), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7319), 1, + STATE(7317), 1, sym_comment, - [230816] = 5, - ACTIONS(247), 1, + [230781] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6828), 1, + STATE(6830), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7320), 1, + STATE(7318), 1, sym_comment, - [230832] = 4, + [230797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11463), 1, + ACTIONS(11485), 1, sym__table_head_separator, - STATE(7321), 1, + STATE(7319), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230846] = 4, + [230811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11465), 1, + ACTIONS(11487), 1, sym__table_head_separator, + STATE(7320), 1, + sym_comment, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230825] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(4977), 1, + anon_sym_LBRACE, + ACTIONS(11489), 1, + sym_long_flag_identifier, + ACTIONS(11491), 1, + anon_sym_EQ2, + STATE(7321), 1, + sym_comment, + [230841] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11493), 1, + anon_sym_RBRACK, + STATE(3446), 1, + aux_sym__multiple_types_repeat1, STATE(7322), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230860] = 5, - ACTIONS(247), 1, + [230857] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6848), 1, + STATE(6852), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7323), 1, sym_comment, - [230876] = 5, - ACTIONS(247), 1, + [230873] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6851), 1, + STATE(6855), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7324), 1, sym_comment, - [230892] = 5, - ACTIONS(247), 1, + [230889] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6854), 1, - sym_val_list, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7325), 1, sym_comment, - [230908] = 5, - ACTIONS(247), 1, + ACTIONS(9024), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230901] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6855), 1, + STATE(6859), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7326), 1, sym_comment, - [230924] = 4, - ACTIONS(3), 1, + [230917] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11467), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6860), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7327), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230938] = 4, + [230933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11469), 1, + ACTIONS(11495), 1, sym__table_head_separator, STATE(7328), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [230952] = 5, + [230947] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7329), 1, + sym_comment, + ACTIONS(10919), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(11471), 1, - anon_sym_RBRACK, - STATE(6799), 1, + ACTIONS(11497), 1, + anon_sym_RBRACE, + STATE(2993), 1, aux_sym__multiple_types_repeat1, - STATE(7329), 1, + STATE(7330), 1, + sym_comment, + [230975] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11499), 1, + sym__table_head_separator, + STATE(7331), 1, + sym_comment, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230989] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(4692), 1, + sym_block, + STATE(7332), 1, sym_comment, - [230968] = 5, - ACTIONS(247), 1, + [231005] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6874), 1, + STATE(6876), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7330), 1, + STATE(7333), 1, sym_comment, - [230984] = 5, - ACTIONS(247), 1, + [231021] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6877), 1, + STATE(6879), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7331), 1, - sym_comment, - [231000] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7332), 1, + STATE(7334), 1, sym_comment, - ACTIONS(10873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231012] = 5, - ACTIONS(247), 1, + [231037] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6880), 1, + STATE(6882), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7333), 1, + STATE(7335), 1, sym_comment, - [231028] = 5, - ACTIONS(247), 1, + [231053] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, STATE(6883), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7334), 1, + STATE(7336), 1, sym_comment, - [231044] = 4, + [231069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11473), 1, + ACTIONS(11501), 1, sym__table_head_separator, - STATE(7335), 1, + STATE(7337), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231058] = 4, - ACTIONS(3), 1, + [231083] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(7336), 1, + STATE(7338), 1, sym_comment, - ACTIONS(2246), 2, - sym_identifier, - anon_sym_DOLLAR, - [231072] = 4, + ACTIONS(10919), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(7337), 1, + ACTIONS(6091), 1, + sym__entry_separator, + ACTIONS(11503), 1, + anon_sym_RBRACE, + STATE(2994), 1, + aux_sym__multiple_types_repeat1, + STATE(7339), 1, sym_comment, - ACTIONS(2254), 2, - sym_identifier, - anon_sym_DOLLAR, - [231086] = 4, + [231111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11475), 1, + ACTIONS(11505), 1, sym__table_head_separator, - STATE(7338), 1, + STATE(7340), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231100] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7339), 1, - sym_comment, - ACTIONS(10873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231112] = 5, - ACTIONS(247), 1, + [231125] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6897), 1, + STATE(6900), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7340), 1, + STATE(7341), 1, sym_comment, - [231128] = 5, - ACTIONS(247), 1, + [231141] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6899), 1, + STATE(6902), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, - STATE(7341), 1, - sym_comment, - [231144] = 3, - ACTIONS(247), 1, - anon_sym_POUND, STATE(7342), 1, sym_comment, - ACTIONS(10873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231156] = 5, - ACTIONS(247), 1, + [231157] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6902), 1, + STATE(6904), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7343), 1, sym_comment, - [231172] = 5, - ACTIONS(247), 1, + [231173] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6905), 1, + STATE(6906), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7344), 1, sym_comment, - [231188] = 4, + [231189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11477), 1, + ACTIONS(11507), 1, sym__table_head_separator, STATE(7345), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231202] = 5, - ACTIONS(3), 1, + [231203] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(10177), 1, - anon_sym_LBRACK, - STATE(3396), 1, - aux_sym__multiple_types_repeat1, STATE(7346), 1, sym_comment, - [231218] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(309), 1, - aux_sym__block_body_repeat1, - STATE(7347), 1, - sym_comment, - ACTIONS(139), 2, + ACTIONS(10923), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231232] = 4, + [231215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11479), 1, + ACTIONS(11509), 1, sym__table_head_separator, - STATE(7348), 1, + STATE(7347), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231246] = 4, - ACTIONS(247), 1, + [231229] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1906), 1, + aux_sym__unquoted_in_record_token4, + STATE(7348), 1, + sym_comment, + STATE(7475), 1, + sym__expr_parenthesized_immediate, + [231245] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1841), 1, - aux_sym_unquoted_token2, STATE(7349), 1, sym_comment, - ACTIONS(1843), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [231260] = 5, - ACTIONS(247), 1, + ACTIONS(6190), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231257] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6931), 1, + STATE(6925), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7350), 1, sym_comment, - [231276] = 5, - ACTIONS(247), 1, + [231273] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6933), 1, + STATE(6928), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7351), 1, sym_comment, - [231292] = 3, - ACTIONS(247), 1, + [231289] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6931), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7352), 1, sym_comment, - ACTIONS(6144), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231304] = 5, - ACTIONS(247), 1, + [231305] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6933), 1, sym_val_list, - STATE(6944), 1, + STATE(7303), 1, aux_sym_val_table_repeat1, STATE(7353), 1, sym_comment, - [231320] = 5, - ACTIONS(247), 1, + [231321] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6940), 1, - sym_val_list, - STATE(6944), 1, - aux_sym_val_table_repeat1, + ACTIONS(11511), 1, + sym__table_head_separator, STATE(7354), 1, sym_comment, - [231336] = 4, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11481), 1, + ACTIONS(11513), 1, sym__table_head_separator, STATE(7355), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231350] = 3, - ACTIONS(247), 1, + [231349] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6948), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7356), 1, sym_comment, - ACTIONS(6144), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231362] = 4, - ACTIONS(3), 1, + [231365] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11483), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6950), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7357), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [231376] = 5, + [231381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4956), 1, - aux_sym_unquoted_token4, STATE(7358), 1, sym_comment, - STATE(7463), 1, - sym__expr_parenthesized_immediate, - [231392] = 5, - ACTIONS(247), 1, + ACTIONS(2407), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [231393] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6961), 1, + STATE(6953), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7359), 1, sym_comment, - [231408] = 5, - ACTIONS(247), 1, + [231409] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6963), 1, + STATE(6819), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7360), 1, sym_comment, - [231424] = 5, + [231425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, - sym__entry_separator, - ACTIONS(11485), 1, - anon_sym_RBRACK, - STATE(2704), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11515), 1, + sym__table_head_separator, STATE(7361), 1, sym_comment, - [231440] = 5, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231439] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6965), 1, - sym_val_list, + ACTIONS(5767), 1, + sym__entry_separator, + ACTIONS(11517), 1, + anon_sym_RBRACK, + STATE(2711), 1, + aux_sym__multiple_types_repeat1, STATE(7362), 1, sym_comment, - [231456] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6967), 1, - sym_val_list, - STATE(7363), 1, - sym_comment, - [231472] = 4, + [231455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11487), 1, + ACTIONS(11519), 1, sym__table_head_separator, - STATE(7364), 1, + STATE(7363), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231486] = 5, - ACTIONS(3), 1, + [231469] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11489), 1, - anon_sym_RBRACK, - STATE(6304), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6971), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7364), 1, + sym_comment, + [231485] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6973), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7365), 1, sym_comment, - [231502] = 3, - ACTIONS(247), 1, + [231501] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6977), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7366), 1, sym_comment, - ACTIONS(10113), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231514] = 4, - ACTIONS(3), 1, + [231517] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11491), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6979), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7367), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [231528] = 5, + [231533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_EQ_GT, - ACTIONS(2242), 1, - anon_sym_PIPE, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + ACTIONS(11521), 1, + sym__table_head_separator, STATE(7368), 1, sym_comment, - [231544] = 5, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, + ACTIONS(6530), 1, sym__entry_separator, - ACTIONS(11493), 1, + ACTIONS(11523), 1, anon_sym_RBRACK, - STATE(2673), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, STATE(7369), 1, sym_comment, - [231560] = 5, - ACTIONS(247), 1, + [231563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6990), 1, - sym_val_list, + ACTIONS(11525), 1, + sym__table_head_separator, STATE(7370), 1, sym_comment, - [231576] = 5, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231577] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(6993), 1, - sym_val_list, STATE(7371), 1, sym_comment, - [231592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2458), 1, - sym__entry_separator, - STATE(7372), 1, - sym_comment, - ACTIONS(2456), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [231606] = 5, - ACTIONS(247), 1, + ACTIONS(6166), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231589] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(6997), 1, sym_val_list, - STATE(7373), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7372), 1, sym_comment, - [231622] = 5, - ACTIONS(247), 1, + [231605] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7000), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7373), 1, + sym_comment, + [231621] = 3, + ACTIONS(255), 1, + anon_sym_POUND, STATE(7374), 1, sym_comment, - [231638] = 4, - ACTIONS(3), 1, + ACTIONS(10923), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231633] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11495), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7003), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7375), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [231652] = 5, - ACTIONS(247), 1, + [231649] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11497), 1, - anon_sym_RBRACK, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7006), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7376), 1, sym_comment, - STATE(7440), 1, - aux_sym_val_binary_repeat1, - [231668] = 4, + [231665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11499), 1, + ACTIONS(11527), 1, sym__table_head_separator, STATE(7377), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231682] = 5, + [231679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - ACTIONS(4569), 1, - aux_sym_unquoted_token4, + ACTIONS(11529), 1, + sym__table_head_separator, STATE(7378), 1, sym_comment, - STATE(7700), 1, - sym__expr_parenthesized_immediate, - [231698] = 3, - ACTIONS(247), 1, + ACTIONS(1538), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231693] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(6895), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7379), 1, sym_comment, - ACTIONS(6148), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231710] = 5, - ACTIONS(247), 1, + [231709] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7019), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7380), 1, sym_comment, - [231726] = 5, - ACTIONS(247), 1, + [231725] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7021), 1, + STATE(7022), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7381), 1, sym_comment, - [231742] = 5, - ACTIONS(247), 1, + [231741] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7024), 1, + STATE(7025), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7382), 1, sym_comment, - [231758] = 5, - ACTIONS(247), 1, + [231757] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, STATE(7027), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7383), 1, sym_comment, - [231774] = 4, + [231773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11501), 1, + ACTIONS(11531), 1, sym__table_head_separator, STATE(7384), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231788] = 4, + [231787] = 5, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(1327), 1, + anon_sym_SEMI, + ACTIONS(3965), 1, + sym__newline, + STATE(1760), 1, + aux_sym_shebang_repeat1, + STATE(7385), 1, + sym_comment, + [231803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11503), 1, + ACTIONS(11533), 1, sym__table_head_separator, - STATE(7385), 1, + STATE(7386), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231802] = 5, - ACTIONS(247), 1, + [231817] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7043), 1, - sym_val_list, - STATE(7386), 1, + ACTIONS(2337), 1, + anon_sym_EQ_GT, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, + STATE(7387), 1, sym_comment, - [231818] = 5, - ACTIONS(247), 1, + [231833] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7046), 1, + STATE(7042), 1, sym_val_list, - STATE(7387), 1, - sym_comment, - [231834] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token4, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7388), 1, sym_comment, - STATE(7608), 1, - sym__expr_parenthesized_immediate, - [231850] = 5, - ACTIONS(247), 1, + [231849] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7049), 1, + STATE(7044), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7389), 1, sym_comment, - [231866] = 5, - ACTIONS(247), 1, + [231865] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7050), 1, + STATE(7048), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7390), 1, sym_comment, - [231882] = 4, - ACTIONS(3), 1, + [231881] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11505), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7050), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7391), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [231896] = 4, + [231897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2442), 1, - sym__entry_separator, + ACTIONS(11535), 1, + sym__table_head_separator, STATE(7392), 1, sym_comment, - ACTIONS(2440), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [231910] = 4, + sym__entry_separator, + [231911] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11507), 1, + ACTIONS(11537), 1, sym__table_head_separator, STATE(7393), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [231924] = 5, - ACTIONS(247), 1, + [231925] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7066), 1, + STATE(7057), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7394), 1, sym_comment, - [231940] = 5, - ACTIONS(247), 1, + [231941] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7068), 1, + STATE(7059), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7395), 1, sym_comment, - [231956] = 5, - ACTIONS(247), 1, + [231957] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7071), 1, - sym_val_list, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11539), 1, + anon_sym_RBRACK, + STATE(3447), 1, + aux_sym__multiple_types_repeat1, STATE(7396), 1, sym_comment, - [231972] = 5, - ACTIONS(247), 1, + [231973] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7072), 1, + STATE(7062), 1, sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7397), 1, sym_comment, - [231988] = 4, - ACTIONS(3), 1, + [231989] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11509), 1, - sym__table_head_separator, + ACTIONS(9540), 1, + anon_sym_LBRACK, + STATE(7065), 1, + sym_val_list, + STATE(7303), 1, + aux_sym_val_table_repeat1, STATE(7398), 1, sym_comment, - ACTIONS(1026), 2, - anon_sym_RBRACK, - sym__entry_separator, - [232002] = 4, + [232005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11511), 1, + ACTIONS(11541), 1, sym__table_head_separator, STATE(7399), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232016] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7083), 1, - sym_val_list, - STATE(7400), 1, - sym_comment, - [232032] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7085), 1, - sym_val_list, - STATE(7401), 1, - sym_comment, - [232048] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7088), 1, - sym_val_list, - STATE(7402), 1, - sym_comment, - [232064] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7090), 1, - sym_val_list, - STATE(7403), 1, - sym_comment, - [232080] = 4, + [232019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11513), 1, + ACTIONS(11543), 1, sym__table_head_separator, - STATE(7404), 1, + STATE(7400), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232094] = 4, + [232033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11515), 1, - sym__table_head_separator, - STATE(7405), 1, + ACTIONS(2553), 1, + sym__entry_separator, + STATE(7401), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(2551), 2, anon_sym_RBRACK, - sym__entry_separator, - [232108] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [232047] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7102), 1, + STATE(7079), 1, sym_val_list, - STATE(7406), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7402), 1, sym_comment, - [232124] = 5, - ACTIONS(247), 1, + [232063] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7104), 1, + STATE(7081), 1, sym_val_list, - STATE(7407), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7403), 1, sym_comment, - [232140] = 5, - ACTIONS(247), 1, + [232079] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7106), 1, + STATE(7083), 1, sym_val_list, - STATE(7408), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7404), 1, sym_comment, - [232156] = 5, - ACTIONS(247), 1, + [232095] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7107), 1, + STATE(7084), 1, sym_val_list, - STATE(7409), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7405), 1, sym_comment, - [232172] = 4, + [232111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11517), 1, + ACTIONS(11545), 1, sym__table_head_separator, - STATE(7410), 1, + STATE(7406), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232186] = 4, + [232125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11519), 1, + ACTIONS(11547), 1, sym__table_head_separator, - STATE(7411), 1, + STATE(7407), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232200] = 5, - ACTIONS(247), 1, + [232139] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7116), 1, + STATE(7092), 1, sym_val_list, - STATE(7412), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7408), 1, sym_comment, - [232216] = 5, - ACTIONS(247), 1, + [232155] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7118), 1, + STATE(7094), 1, sym_val_list, - STATE(7413), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7409), 1, sym_comment, - [232232] = 5, - ACTIONS(247), 1, + [232171] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7120), 1, + STATE(7097), 1, sym_val_list, - STATE(7414), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7410), 1, sym_comment, - [232248] = 5, - ACTIONS(247), 1, + [232187] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7123), 1, + STATE(7099), 1, sym_val_list, - STATE(7415), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7411), 1, sym_comment, - [232264] = 4, + [232203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11521), 1, + ACTIONS(11549), 1, sym__table_head_separator, - STATE(7416), 1, + STATE(7412), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232278] = 4, + [232217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11523), 1, + ACTIONS(11551), 1, sym__table_head_separator, - STATE(7417), 1, + STATE(7413), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232292] = 5, - ACTIONS(247), 1, + [232231] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2474), 1, + sym__entry_separator, + STATE(7414), 1, + sym_comment, + ACTIONS(2472), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232245] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7133), 1, + STATE(7107), 1, sym_val_list, - STATE(7418), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7415), 1, sym_comment, - [232308] = 5, - ACTIONS(247), 1, + [232261] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7136), 1, + STATE(7110), 1, sym_val_list, - STATE(7419), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7416), 1, sym_comment, - [232324] = 5, - ACTIONS(247), 1, + [232277] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7138), 1, + STATE(7112), 1, sym_val_list, - STATE(7420), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7417), 1, sym_comment, - [232340] = 5, - ACTIONS(247), 1, + [232293] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7141), 1, + STATE(7114), 1, sym_val_list, - STATE(7421), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7418), 1, sym_comment, - [232356] = 4, + [232309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(11553), 1, sym__table_head_separator, - STATE(7422), 1, + STATE(7419), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232370] = 4, + [232323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11527), 1, + ACTIONS(11555), 1, sym__table_head_separator, - STATE(7423), 1, + STATE(7420), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, sym__entry_separator, - [232384] = 5, - ACTIONS(247), 1, + [232337] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7152), 1, + STATE(7120), 1, sym_val_list, - STATE(7424), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7421), 1, sym_comment, - [232400] = 5, - ACTIONS(247), 1, + [232353] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7154), 1, + STATE(7123), 1, sym_val_list, - STATE(7425), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7422), 1, sym_comment, - [232416] = 5, - ACTIONS(247), 1, + [232369] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7158), 1, + STATE(7126), 1, sym_val_list, - STATE(7426), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7423), 1, sym_comment, - [232432] = 5, - ACTIONS(247), 1, + [232385] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9520), 1, + ACTIONS(9540), 1, anon_sym_LBRACK, - STATE(6944), 1, - aux_sym_val_table_repeat1, - STATE(7160), 1, + STATE(7128), 1, sym_val_list, - STATE(7427), 1, + STATE(7303), 1, + aux_sym_val_table_repeat1, + STATE(7424), 1, sym_comment, - [232448] = 3, - ACTIONS(247), 1, + [232401] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7428), 1, + ACTIONS(2072), 1, + sym__entry_separator, + STATE(7425), 1, sym_comment, - ACTIONS(10103), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232460] = 3, - ACTIONS(247), 1, + ACTIONS(2070), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232415] = 5, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7429), 1, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6284), 1, + sym_block, + STATE(7426), 1, + sym_comment, + [232431] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + STATE(7427), 1, sym_comment, - ACTIONS(10105), 3, + ACTIONS(10915), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232472] = 5, + [232443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_EQ_GT, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - STATE(7430), 1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token4, + STATE(7428), 1, sym_comment, - [232488] = 5, - ACTIONS(3), 1, + STATE(7522), 1, + sym__expr_parenthesized_immediate, + [232459] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2254), 1, - anon_sym_EQ_GT, - ACTIONS(2256), 1, - anon_sym_PIPE, - STATE(7431), 1, + ACTIONS(10999), 1, + sym_hex_digit, + ACTIONS(11557), 1, + anon_sym_RBRACK, + STATE(7429), 1, sym_comment, - [232504] = 3, - ACTIONS(247), 1, + STATE(7440), 1, + aux_sym_val_binary_repeat1, + [232475] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7432), 1, + STATE(7430), 1, sym_comment, - ACTIONS(10107), 3, + ACTIONS(10185), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232516] = 3, - ACTIONS(247), 1, + [232487] = 3, + ACTIONS(255), 1, anon_sym_POUND, - STATE(7433), 1, + STATE(7431), 1, sym_comment, - ACTIONS(10121), 3, + ACTIONS(10923), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232528] = 4, - ACTIONS(247), 1, + [232499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + ACTIONS(2561), 1, + sym__entry_separator, + STATE(7432), 1, + sym_comment, + ACTIONS(2559), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232513] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11559), 1, + anon_sym_RBRACK, + STATE(2856), 1, + aux_sym__multiple_types_repeat1, + STATE(7433), 1, + sym_comment, + [232529] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5952), 1, + sym__entry_separator, + ACTIONS(11561), 1, + anon_sym_RBRACK, + STATE(2857), 1, + aux_sym__multiple_types_repeat1, STATE(7434), 1, sym_comment, - ACTIONS(2232), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [232542] = 3, - ACTIONS(247), 1, + [232545] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11563), 1, + anon_sym_RBRACK, + STATE(6383), 1, + aux_sym__multiple_types_repeat1, STATE(7435), 1, sym_comment, - ACTIONS(11529), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232554] = 4, - ACTIONS(247), 1, + [232561] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + ACTIONS(6530), 1, + sym__entry_separator, + ACTIONS(11565), 1, + anon_sym_RBRACK, + STATE(6406), 1, + aux_sym__multiple_types_repeat1, STATE(7436), 1, sym_comment, - ACTIONS(1810), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [232568] = 4, + [232577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11567), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym__multiple_types_repeat1, STATE(7437), 1, sym_comment, - ACTIONS(1853), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232582] = 4, - ACTIONS(3), 1, + [232593] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1917), 1, - sym__entry_separator, + ACTIONS(5020), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_EQ2, + ACTIONS(11571), 1, + sym_short_flag_identifier, STATE(7438), 1, sym_comment, - ACTIONS(1915), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232596] = 5, + [232609] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4281), 1, anon_sym_LPAREN2, - ACTIONS(4866), 1, + ACTIONS(4915), 1, aux_sym_unquoted_token4, STATE(7439), 1, sym_comment, - STATE(7707), 1, + STATE(7710), 1, sym__expr_parenthesized_immediate, - [232612] = 5, - ACTIONS(247), 1, + [232625] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10999), 1, sym_hex_digit, - ACTIONS(11531), 1, + ACTIONS(11573), 1, anon_sym_RBRACK, - STATE(6839), 1, + STATE(7264), 1, aux_sym_val_binary_repeat1, STATE(7440), 1, sym_comment, - [232628] = 3, - ACTIONS(247), 1, + [232641] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7441), 1, sym_comment, - ACTIONS(10117), 3, + ACTIONS(10862), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232640] = 4, - ACTIONS(247), 1, + [232653] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11535), 1, - anon_sym_COMMA, STATE(7442), 1, sym_comment, - ACTIONS(11533), 2, - anon_sym_RBRACK, - sym_hex_digit, - [232654] = 5, - ACTIONS(3), 1, + ACTIONS(11575), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232665] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2290), 1, - sym__entry_separator, - ACTIONS(11537), 1, - anon_sym_RBRACE, - STATE(579), 1, - aux_sym__multiple_types_repeat1, STATE(7443), 1, sym_comment, - [232670] = 5, - ACTIONS(247), 1, + ACTIONS(11577), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232677] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6219), 1, - anon_sym_AT, - ACTIONS(8039), 1, - anon_sym_EQ, - STATE(5093), 1, - sym_param_cmd, STATE(7444), 1, sym_comment, - [232686] = 4, - ACTIONS(247), 1, + ACTIONS(10901), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232689] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, + ACTIONS(2537), 1, + sym__entry_separator, STATE(7445), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [232700] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10955), 1, - sym_hex_digit, - ACTIONS(11539), 1, + ACTIONS(2535), 2, anon_sym_RBRACK, - STATE(6839), 1, - aux_sym_val_binary_repeat1, + anon_sym_RBRACE, + [232703] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1538), 1, + sym__newline, + ACTIONS(1540), 1, + sym__space, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(7446), 1, sym_comment, - [232716] = 5, + [232719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, - sym__entry_separator, - ACTIONS(11541), 1, - anon_sym_RBRACK, - STATE(6409), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5038), 1, + sym__space, + ACTIONS(5040), 1, + sym__newline, + ACTIONS(11579), 1, + anon_sym_EQ2, STATE(7447), 1, sym_comment, - [232732] = 4, + [232735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(6530), 1, sym__entry_separator, + ACTIONS(11581), 1, + anon_sym_RBRACK, + STATE(6302), 1, + aux_sym__multiple_types_repeat1, STATE(7448), 1, sym_comment, - ACTIONS(2371), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232746] = 4, + [232751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2480), 1, + ACTIONS(2541), 1, sym__entry_separator, STATE(7449), 1, sym_comment, - ACTIONS(2478), 2, + ACTIONS(2539), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [232760] = 4, + [232765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, - sym__entry_separator, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7450), 1, sym_comment, - ACTIONS(2347), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232774] = 3, - ACTIONS(247), 1, + ACTIONS(2345), 2, + sym_identifier, + anon_sym_DOLLAR, + [232779] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7451), 1, sym_comment, - ACTIONS(10149), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232786] = 3, - ACTIONS(247), 1, + ACTIONS(2353), 2, + sym_identifier, + anon_sym_DOLLAR, + [232793] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7452), 1, sym_comment, - ACTIONS(11543), 3, + ACTIONS(10864), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [232798] = 3, - ACTIONS(247), 1, + [232805] = 5, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_block, STATE(7453), 1, sym_comment, - ACTIONS(10151), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232810] = 3, - ACTIONS(247), 1, + [232821] = 3, + ACTIONS(255), 1, anon_sym_POUND, STATE(7454), 1, sym_comment, - ACTIONS(11545), 3, + ACTIONS(10147), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [232822] = 4, - ACTIONS(3), 1, + [232833] = 5, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7373), 1, - sym__entry_separator, + ACTIONS(6343), 1, + anon_sym_AT, + ACTIONS(7917), 1, + anon_sym_EQ, + STATE(5070), 1, + sym_param_cmd, STATE(7455), 1, sym_comment, - [232835] = 4, - ACTIONS(247), 1, + [232849] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7451), 1, - sym_block, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, + ACTIONS(11583), 1, + anon_sym_make, STATE(7456), 1, sym_comment, - [232848] = 4, - ACTIONS(247), 1, + [232862] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6926), 1, - sym_block, + ACTIONS(11585), 1, + aux_sym__unquoted_with_expr_token1, STATE(7457), 1, sym_comment, - [232861] = 4, + STATE(7465), 1, + aux_sym__unquoted_with_expr_repeat1, + [232875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11547), 1, + ACTIONS(11587), 1, aux_sym__unquoted_with_expr_token1, STATE(7458), 1, sym_comment, - STATE(7483), 1, + STATE(7466), 1, aux_sym__unquoted_with_expr_repeat1, - [232874] = 4, - ACTIONS(3), 1, + [232888] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8157), 1, - sym__entry_separator, - ACTIONS(8159), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6701), 1, + sym_block, STATE(7459), 1, sym_comment, - [232887] = 4, - ACTIONS(247), 1, + [232901] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(7311), 1, + STATE(7261), 1, sym_block, STATE(7460), 1, sym_comment, - [232900] = 4, - ACTIONS(247), 1, + [232914] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6975), 1, - sym_block, + ACTIONS(8239), 1, + sym__entry_separator, + ACTIONS(8241), 1, + anon_sym_RBRACK, STATE(7461), 1, sym_comment, - [232913] = 4, - ACTIONS(247), 1, + [232927] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(7299), 1, + STATE(6705), 1, sym_block, STATE(7462), 1, sym_comment, - [232926] = 4, - ACTIONS(3), 1, + [232940] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11549), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6961), 1, + sym_block, STATE(7463), 1, sym_comment, - STATE(7488), 1, - aux_sym__unquoted_with_expr_repeat1, - [232939] = 4, - ACTIONS(247), 1, + [232953] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7332), 1, - sym_block, + ACTIONS(5705), 1, + anon_sym_RBRACK, + ACTIONS(5707), 1, + sym__entry_separator, STATE(7464), 1, sym_comment, - [232952] = 4, + [232966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(11589), 1, + aux_sym__unquoted_with_expr_token1, STATE(7465), 1, sym_comment, - [232965] = 4, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, + [232979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11551), 1, + ACTIONS(11591), 1, aux_sym__unquoted_with_expr_token1, STATE(7466), 1, sym_comment, - STATE(7483), 1, + STATE(7530), 1, aux_sym__unquoted_with_expr_repeat1, - [232978] = 4, - ACTIONS(3), 1, + [232992] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_in2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6963), 1, + sym_block, STATE(7467), 1, sym_comment, - [232991] = 4, + [233005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8251), 1, - sym__entry_separator, - ACTIONS(8253), 1, - anon_sym_RBRACK, + ACTIONS(1449), 1, + sym__space, + STATE(316), 1, + aux_sym_pipe_element_repeat1, STATE(7468), 1, sym_comment, - [233004] = 4, - ACTIONS(3), 1, + [233018] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8065), 1, - sym__entry_separator, - ACTIONS(8067), 1, - anon_sym_RBRACK, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7012), 1, + sym_block, STATE(7469), 1, sym_comment, - [233017] = 4, - ACTIONS(3), 1, + [233031] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11553), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7249), 1, + sym_block, STATE(7470), 1, sym_comment, - STATE(7489), 1, - aux_sym__unquoted_with_expr_repeat1, - [233030] = 4, - ACTIONS(247), 1, + [233044] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7339), 1, - sym_block, + ACTIONS(6091), 1, + sym__entry_separator, + STATE(3072), 1, + aux_sym__multiple_types_repeat1, STATE(7471), 1, sym_comment, - [233043] = 4, + [233057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11555), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1986), 1, + anon_sym_RBRACE, + ACTIONS(1988), 1, + sym__entry_separator, STATE(7472), 1, sym_comment, - STATE(7698), 1, - aux_sym__unquoted_with_expr_repeat1, - [233056] = 4, + [233070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11557), 1, - anon_sym_RBRACK, - ACTIONS(11559), 1, + ACTIONS(1940), 1, + anon_sym_RBRACE, + ACTIONS(1948), 1, sym__entry_separator, STATE(7473), 1, sym_comment, - [233069] = 4, - ACTIONS(247), 1, + [233083] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6335), 1, - sym_block, + ACTIONS(11593), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7474), 1, sym_comment, - [233082] = 4, - ACTIONS(247), 1, + STATE(7569), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233096] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7342), 1, - sym_block, + ACTIONS(11595), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7475), 1, sym_comment, - [233095] = 4, - ACTIONS(247), 1, + STATE(7509), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233109] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(4648), 1, - sym_block, + ACTIONS(8243), 1, + sym__entry_separator, + ACTIONS(8245), 1, + anon_sym_RBRACK, STATE(7476), 1, sym_comment, - [233108] = 4, + [233122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11561), 1, - sym__newline, - ACTIONS(11563), 1, - sym__space, + ACTIONS(11597), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7477), 1, sym_comment, - [233121] = 4, + STATE(7511), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, - anon_sym_RBRACE, - ACTIONS(2396), 1, - sym__entry_separator, + ACTIONS(11599), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7478), 1, sym_comment, - [233134] = 4, - ACTIONS(247), 1, + STATE(7570), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233148] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6947), 1, + STATE(7452), 1, sym_block, STATE(7479), 1, sym_comment, - [233147] = 4, - ACTIONS(3), 1, + [233161] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_in2, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6476), 1, + sym_block, STATE(7480), 1, sym_comment, - [233160] = 4, - ACTIONS(3), 1, + [233174] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2254), 1, - anon_sym_in2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6828), 1, + sym_block, STATE(7481), 1, sym_comment, - [233173] = 4, - ACTIONS(247), 1, + [233187] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, + ACTIONS(11601), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7482), 1, sym_comment, - STATE(7608), 1, - sym__expr_parenthesized_immediate, - [233186] = 3, + STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11565), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 2, + ACTIONS(11603), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7483), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [233197] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6337), 1, - sym_block, STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233213] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11605), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7484), 2, sym_comment, - [233210] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233224] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6482), 1, + sym_block, STATE(7485), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - [233223] = 4, - ACTIONS(3), 1, + [233237] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + STATE(6833), 1, + sym_block, STATE(7486), 1, sym_comment, - [233236] = 4, - ACTIONS(3), 1, + [233250] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2230), 1, - anon_sym_RBRACE, - ACTIONS(2232), 1, - sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6837), 1, + sym_block, STATE(7487), 1, sym_comment, - [233249] = 4, + [233263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11568), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(5112), 1, + sym__entry_separator, + ACTIONS(5115), 1, + anon_sym_RBRACE, STATE(7488), 1, sym_comment, - [233262] = 4, - ACTIONS(3), 1, + [233276] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11570), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6861), 1, + sym_block, STATE(7489), 1, sym_comment, - [233275] = 4, + [233289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - anon_sym_RBRACE, - ACTIONS(2270), 1, - sym__entry_separator, + ACTIONS(11608), 1, + aux_sym__unquoted_with_expr_token1, STATE(7490), 1, sym_comment, - [233288] = 4, + STATE(7513), 1, + aux_sym__unquoted_with_expr_repeat1, + [233302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, + ACTIONS(5677), 1, + anon_sym_RBRACK, + ACTIONS(5679), 1, sym__entry_separator, STATE(7491), 1, sym_comment, - [233301] = 4, + [233315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_RBRACE, - ACTIONS(2256), 1, - sym__entry_separator, + ACTIONS(11610), 1, + aux_sym__unquoted_with_expr_token1, STATE(7492), 1, sym_comment, - [233314] = 4, - ACTIONS(247), 1, + STATE(7524), 1, + aux_sym__unquoted_with_expr_repeat1, + [233328] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5056), 1, - anon_sym_in2, - ACTIONS(11572), 1, - anon_sym_EQ2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6865), 1, + sym_block, STATE(7493), 1, sym_comment, - [233327] = 4, - ACTIONS(3), 1, + [233341] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11574), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6291), 1, + sym_block, STATE(7494), 1, sym_comment, - STATE(7499), 1, - aux_sym__unquoted_with_expr_repeat1, - [233340] = 4, - ACTIONS(3), 1, + [233354] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11576), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6293), 1, + sym_block, STATE(7495), 1, sym_comment, - STATE(7500), 1, - aux_sym__unquoted_with_expr_repeat1, - [233353] = 4, - ACTIONS(247), 1, + [233367] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(7300), 1, + STATE(6295), 1, sym_block, STATE(7496), 1, sym_comment, - [233366] = 4, - ACTIONS(247), 1, + [233380] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(2407), 1, + aux_sym_unquoted_token4, + ACTIONS(2409), 1, anon_sym_LBRACE, - STATE(6909), 1, - sym_block, STATE(7497), 1, sym_comment, - [233379] = 4, - ACTIONS(3), 1, + [233393] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11578), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6300), 1, + sym_block, STATE(7498), 1, sym_comment, - STATE(7521), 1, - aux_sym__unquoted_with_expr_repeat1, - [233392] = 4, - ACTIONS(3), 1, + [233406] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11580), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6301), 1, + sym_block, STATE(7499), 1, sym_comment, - [233405] = 4, - ACTIONS(3), 1, + [233419] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11582), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6315), 1, + sym_block, STATE(7500), 1, sym_comment, - [233418] = 4, - ACTIONS(247), 1, + [233432] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9770), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(7150), 1, - sym_val_record, + STATE(6321), 1, + sym_block, STATE(7501), 1, sym_comment, - [233431] = 4, - ACTIONS(3), 1, + [233445] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, + STATE(6336), 1, + sym_block, STATE(7502), 1, sym_comment, - [233444] = 4, + [233458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2502), 1, - anon_sym_RBRACE, - ACTIONS(2504), 1, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, sym__entry_separator, STATE(7503), 1, sym_comment, - [233457] = 4, - ACTIONS(3), 1, + [233471] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11584), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6697), 1, + sym_block, STATE(7504), 1, sym_comment, - STATE(7634), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233470] = 4, - ACTIONS(247), 1, + [233484] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7171), 1, - sym_block, + ACTIONS(2407), 1, + anon_sym_RBRACE, + ACTIONS(2409), 1, + sym__entry_separator, STATE(7505), 1, sym_comment, - [233483] = 4, + [233497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11586), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5701), 1, + anon_sym_RBRACK, + ACTIONS(5703), 1, + sym__entry_separator, STATE(7506), 1, sym_comment, - STATE(7525), 1, - aux_sym__unquoted_with_expr_repeat1, - [233496] = 4, - ACTIONS(247), 1, + [233510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1822), 1, - anon_sym_LPAREN2, + ACTIONS(10003), 1, + anon_sym_RBRACE, + ACTIONS(10005), 1, + sym__entry_separator, STATE(7507), 1, sym_comment, - [233509] = 4, - ACTIONS(247), 1, + [233523] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2373), 1, + sym__entry_separator, STATE(7508), 1, sym_comment, - STATE(7529), 1, - sym__expr_parenthesized_immediate, - [233522] = 4, - ACTIONS(247), 1, + [233536] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6290), 1, - sym_block, + ACTIONS(11612), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7509), 1, sym_comment, - [233535] = 4, - ACTIONS(247), 1, + [233549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6387), 1, - sym_block, + ACTIONS(5713), 1, + anon_sym_RBRACK, + ACTIONS(5715), 1, + sym__entry_separator, STATE(7510), 1, sym_comment, - [233548] = 4, + [233562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - anon_sym_RBRACK, - ACTIONS(7902), 1, - sym__entry_separator, + ACTIONS(11614), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7511), 1, sym_comment, - [233561] = 4, - ACTIONS(247), 1, + [233575] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6388), 1, + STATE(6964), 1, sym_block, STATE(7512), 1, sym_comment, - [233574] = 4, - ACTIONS(247), 1, + [233588] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6948), 1, - sym_block, + ACTIONS(11616), 1, + aux_sym__unquoted_with_expr_token1, STATE(7513), 1, sym_comment, - [233587] = 4, - ACTIONS(247), 1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, + [233601] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6950), 1, + STATE(7190), 1, sym_block, STATE(7514), 1, sym_comment, - [233600] = 4, - ACTIONS(3), 1, + [233614] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11588), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1948), 1, + anon_sym_LBRACE, STATE(7515), 1, sym_comment, - STATE(7517), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233613] = 4, - ACTIONS(3), 1, + [233627] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_RBRACK, - ACTIONS(5652), 1, - sym__entry_separator, + ACTIONS(2371), 1, + anon_sym_LPAREN2, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, STATE(7516), 1, sym_comment, - [233626] = 3, - ACTIONS(3), 1, + [233640] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11590), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7517), 2, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(11618), 1, + anon_sym_EQ2, + STATE(7517), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233637] = 4, - ACTIONS(247), 1, + [233653] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(11593), 1, - anon_sym_make, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7191), 1, + sym_block, STATE(7518), 1, sym_comment, - [233650] = 4, - ACTIONS(247), 1, + [233666] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - anon_sym_LPAREN2, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + ACTIONS(11620), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7519), 1, sym_comment, - [233663] = 4, - ACTIONS(247), 1, + STATE(7608), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233679] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(7270), 1, + STATE(7329), 1, sym_block, STATE(7520), 1, sym_comment, - [233676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11595), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7521), 1, - sym_comment, - [233689] = 4, - ACTIONS(247), 1, + [233692] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(7302), 1, + STATE(7338), 1, sym_block, - STATE(7522), 1, + STATE(7521), 1, sym_comment, - [233702] = 4, + [233705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11597), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7523), 1, + ACTIONS(11622), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7522), 1, sym_comment, - STATE(7637), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233715] = 4, + STATE(7672), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5691), 1, - anon_sym_RBRACK, - ACTIONS(5693), 1, + ACTIONS(2631), 1, + anon_sym_RBRACE, + ACTIONS(2633), 1, sym__entry_separator, - STATE(7524), 1, + STATE(7523), 1, sym_comment, - [233728] = 4, + [233731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11599), 1, + ACTIONS(11624), 1, aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, + STATE(7524), 1, + sym_comment, + STATE(7530), 1, aux_sym__unquoted_with_expr_repeat1, + [233744] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(11626), 1, + sym_identifier, + ACTIONS(11628), 1, + anon_sym_DOLLAR, STATE(7525), 1, sym_comment, - [233741] = 4, - ACTIONS(247), 1, + [233757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6953), 1, - sym_block, + ACTIONS(6530), 1, + sym__entry_separator, + STATE(7118), 1, + aux_sym__multiple_types_repeat1, STATE(7526), 1, sym_comment, - [233754] = 4, - ACTIONS(247), 1, + [233770] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(4941), 1, + STATE(7141), 1, sym_block, STATE(7527), 1, sym_comment, - [233767] = 4, - ACTIONS(3), 1, + [233783] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11601), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7517), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + STATE(7474), 1, + sym__expr_parenthesized_immediate, STATE(7528), 1, sym_comment, - [233780] = 4, + [233796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11603), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7528), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(1538), 1, + anon_sym_in2, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(7529), 1, sym_comment, - [233793] = 4, - ACTIONS(247), 1, + [233809] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, - ACTIONS(2232), 1, - anon_sym_LBRACE, - STATE(7530), 1, + ACTIONS(11630), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 2, sym_comment, - [233806] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_with_expr_repeat1, + [233820] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6977), 1, - sym_block, + ACTIONS(1800), 1, + anon_sym_in2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(7531), 1, sym_comment, - [233819] = 4, - ACTIONS(3), 1, + [233833] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11605), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7143), 1, + sym_block, STATE(7532), 1, sym_comment, - [233832] = 4, - ACTIONS(3), 1, + [233846] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_RBRACE, - ACTIONS(1810), 1, - sym__entry_separator, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, + ACTIONS(11583), 1, + anon_sym_make, STATE(7533), 1, sym_comment, - [233845] = 4, - ACTIONS(247), 1, + [233859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(7498), 1, - sym__expr_parenthesized_immediate, + ACTIONS(5767), 1, + sym__entry_separator, + STATE(2779), 1, + aux_sym__multiple_types_repeat1, STATE(7534), 1, sym_comment, - [233858] = 4, + [233872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11607), 1, + ACTIONS(11633), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7517), 1, + STATE(7519), 1, aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7535), 1, sym_comment, - [233871] = 4, + [233885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11609), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2349), 1, + anon_sym_LBRACE, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7536), 1, sym_comment, - STATE(7617), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233884] = 4, + [233898] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11611), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2355), 1, + anon_sym_LBRACE, STATE(7537), 1, sym_comment, - STATE(7618), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233897] = 4, - ACTIONS(3), 1, + [233911] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11613), 1, - anon_sym_RBRACE, - ACTIONS(11615), 1, - sym__entry_separator, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(7538), 1, sym_comment, - [233910] = 4, - ACTIONS(247), 1, + STATE(7622), 1, + sym__expr_parenthesized_immediate, + [233924] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6399), 1, + STATE(4866), 1, sym_block, STATE(7539), 1, sym_comment, - [233923] = 4, - ACTIONS(247), 1, + [233937] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6400), 1, + STATE(7441), 1, sym_block, STATE(7540), 1, sym_comment, - [233936] = 4, + [233950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9949), 1, - anon_sym_RBRACE, - ACTIONS(9951), 1, + ACTIONS(7894), 1, sym__entry_separator, + ACTIONS(7898), 1, + anon_sym_RBRACK, STATE(7541), 1, sym_comment, - [233949] = 4, - ACTIONS(3), 1, + [233963] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11617), 1, - anon_sym_RBRACE, - ACTIONS(11619), 1, - sym__entry_separator, + ACTIONS(11635), 1, + anon_sym_DASH2, STATE(7542), 1, sym_comment, - [233962] = 4, + STATE(7987), 1, + sym_param_short_flag, + [233976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5660), 1, - anon_sym_RBRACK, - ACTIONS(5662), 1, - sym__entry_separator, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(7543), 1, sym_comment, - [233975] = 4, + [233989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9953), 1, - anon_sym_RBRACE, - ACTIONS(9955), 1, - sym__entry_separator, + ACTIONS(11637), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7544), 1, sym_comment, - [233988] = 4, - ACTIONS(247), 1, + [234002] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - STATE(7536), 1, - sym__expr_parenthesized_immediate, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6284), 1, + sym_block, STATE(7545), 1, sym_comment, - [234001] = 3, - ACTIONS(247), 1, + [234015] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(9576), 1, + anon_sym_LBRACE, + STATE(6735), 1, + sym_val_record, STATE(7546), 1, sym_comment, - ACTIONS(11411), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [234012] = 4, - ACTIONS(247), 1, + [234028] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7271), 1, - sym_block, + ACTIONS(2337), 1, + anon_sym_in2, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(7547), 1, sym_comment, - [234025] = 4, - ACTIONS(247), 1, + [234041] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6850), 1, - sym_block, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(7475), 1, + sym__expr_parenthesized_immediate, STATE(7548), 1, sym_comment, - [234038] = 4, - ACTIONS(247), 1, + [234054] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6360), 1, - sym_block, + ACTIONS(5050), 1, + anon_sym_in2, + ACTIONS(11639), 1, + anon_sym_EQ2, STATE(7549), 1, sym_comment, - [234051] = 4, - ACTIONS(247), 1, + [234067] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6361), 1, - sym_block, + ACTIONS(5681), 1, + anon_sym_RBRACK, + ACTIONS(5683), 1, + sym__entry_separator, STATE(7550), 1, sym_comment, - [234064] = 4, - ACTIONS(3), 1, + [234080] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6916), 1, + sym_block, STATE(7551), 1, sym_comment, - [234077] = 4, - ACTIONS(3), 1, + [234093] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6040), 1, - sym__entry_separator, - STATE(3060), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7122), 1, + sym_block, STATE(7552), 1, sym_comment, - [234090] = 4, - ACTIONS(247), 1, + [234106] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2276), 1, - anon_sym_LBRACE, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, + ACTIONS(5709), 1, + anon_sym_RBRACK, + ACTIONS(5711), 1, + sym__entry_separator, STATE(7553), 1, sym_comment, - [234103] = 4, - ACTIONS(247), 1, + [234119] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6891), 1, - sym_block, + ACTIONS(11641), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7554), 1, sym_comment, - [234116] = 4, - ACTIONS(247), 1, + [234132] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + STATE(6689), 1, + sym_block, STATE(7555), 1, sym_comment, - [234129] = 4, - ACTIONS(3), 1, + [234145] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11621), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(2361), 1, + anon_sym_LBRACE, STATE(7556), 1, sym_comment, - STATE(7706), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [234142] = 4, - ACTIONS(3), 1, + [234158] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11623), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7124), 1, + sym_block, STATE(7557), 1, sym_comment, - STATE(7706), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [234155] = 4, - ACTIONS(247), 1, + [234171] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7305), 1, - sym_block, + ACTIONS(2357), 1, + anon_sym_RBRACE, + ACTIONS(2361), 1, + sym__entry_separator, STATE(7558), 1, sym_comment, - [234168] = 4, - ACTIONS(247), 1, + [234184] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11625), 1, - sym_identifier, - ACTIONS(11627), 1, - anon_sym_DOLLAR, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6704), 1, + sym_block, STATE(7559), 1, sym_comment, - [234181] = 4, - ACTIONS(3), 1, + [234197] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_RBRACK, - ACTIONS(5658), 1, - sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7127), 1, + sym_block, STATE(7560), 1, sym_comment, - [234194] = 4, - ACTIONS(247), 1, + [234210] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6942), 1, + STATE(6457), 1, sym_block, STATE(7561), 1, sym_comment, - [234207] = 4, + [234223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - sym__entry_separator, - STATE(2892), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2345), 1, + anon_sym_in2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7562), 1, sym_comment, - [234220] = 4, - ACTIONS(247), 1, + [234236] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_LPAREN2, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, + ACTIONS(2353), 1, + anon_sym_in2, STATE(7563), 1, sym_comment, - STATE(8050), 1, - sym__expr_parenthesized_immediate, - [234233] = 4, - ACTIONS(3), 1, + [234249] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11629), 1, - sym__newline, - ACTIONS(11631), 1, - sym__space, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6459), 1, + sym_block, STATE(7564), 1, sym_comment, - [234246] = 4, + [234262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11633), 1, + ACTIONS(11643), 1, anon_sym_RBRACK, - ACTIONS(11635), 1, + ACTIONS(11645), 1, sym__entry_separator, STATE(7565), 1, sym_comment, - [234259] = 4, - ACTIONS(247), 1, + [234275] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2260), 1, - anon_sym_LPAREN2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7129), 1, + sym_block, STATE(7566), 1, sym_comment, - [234272] = 4, - ACTIONS(247), 1, + [234288] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(7078), 1, + STATE(4811), 1, sym_block, STATE(7567), 1, sym_comment, - [234285] = 4, - ACTIONS(3), 1, + [234301] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_RBRACE, - ACTIONS(1828), 1, - sym__entry_separator, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(7568), 1, sym_comment, - [234298] = 4, - ACTIONS(247), 1, + STATE(7966), 1, + sym__expr_parenthesized_immediate, + [234314] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7081), 1, - sym_block, + ACTIONS(11647), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7569), 1, sym_comment, - [234311] = 4, + STATE(7608), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [234327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - ACTIONS(2244), 1, - aux_sym_unquoted_token4, + ACTIONS(11649), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7570), 1, sym_comment, - [234324] = 4, - ACTIONS(247), 1, + STATE(7608), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [234340] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6974), 1, - sym_block, + ACTIONS(8285), 1, + sym__entry_separator, + ACTIONS(8287), 1, + anon_sym_RBRACK, STATE(7571), 1, sym_comment, - [234337] = 4, - ACTIONS(247), 1, + [234353] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6910), 1, + sym_block, STATE(7572), 1, sym_comment, - STATE(7700), 1, - sym__expr_parenthesized_immediate, - [234350] = 4, - ACTIONS(3), 1, + [234366] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8059), 1, - sym__entry_separator, - ACTIONS(8061), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6706), 1, + sym_block, STATE(7573), 1, sym_comment, - [234363] = 4, - ACTIONS(3), 1, + [234379] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2165), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - sym__entry_separator, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6346), 1, + sym_block, STATE(7574), 1, sym_comment, - [234376] = 4, - ACTIONS(247), 1, + [234392] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(4936), 1, + STATE(6707), 1, sym_block, STATE(7575), 1, sym_comment, - [234389] = 4, - ACTIONS(247), 1, + [234405] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6969), 1, + sym_block, STATE(7576), 1, sym_comment, - STATE(7647), 1, - sym__expr_parenthesized_immediate, - [234402] = 4, - ACTIONS(247), 1, + [234418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(11651), 1, + aux_sym__unquoted_with_expr_token1, STATE(7577), 1, sym_comment, - STATE(8105), 1, - sym__expr_parenthesized_immediate, - [234415] = 4, + STATE(7682), 1, + aux_sym__unquoted_with_expr_repeat1, + [234431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11637), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7535), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11653), 1, + aux_sym__unquoted_with_expr_token1, STATE(7578), 1, sym_comment, - [234428] = 4, - ACTIONS(247), 1, + STATE(7683), 1, + aux_sym__unquoted_with_expr_repeat1, + [234444] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6923), 1, + STATE(4889), 1, sym_block, STATE(7579), 1, sym_comment, - [234441] = 4, - ACTIONS(247), 1, + [234457] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4996), 1, - anon_sym_LBRACE, - ACTIONS(11639), 1, - anon_sym_EQ2, + ACTIONS(11655), 1, + sym__newline, + ACTIONS(11657), 1, + sym__space, STATE(7580), 1, sym_comment, - [234454] = 4, - ACTIONS(247), 1, + [234470] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7002), 1, - sym_block, STATE(7581), 1, sym_comment, - [234467] = 4, - ACTIONS(247), 1, + ACTIONS(11659), 2, + anon_sym_RBRACK, + sym_hex_digit, + [234481] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6946), 1, + STATE(4952), 1, sym_block, STATE(7582), 1, sym_comment, - [234480] = 4, - ACTIONS(247), 1, + [234494] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(7463), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2373), 1, + anon_sym_LBRACE, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, STATE(7583), 1, sym_comment, - [234493] = 4, - ACTIONS(247), 1, + [234507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LPAREN2, - STATE(7504), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11661), 1, + aux_sym__unquoted_with_expr_token1, STATE(7584), 1, sym_comment, - [234506] = 4, + STATE(7592), 1, + aux_sym__unquoted_with_expr_repeat1, + [234520] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, - anon_sym_RBRACE, - ACTIONS(2508), 1, - sym__entry_separator, + ACTIONS(11663), 1, + aux_sym__unquoted_with_expr_token1, STATE(7585), 1, sym_comment, - [234519] = 4, - ACTIONS(3), 1, + STATE(7595), 1, + aux_sym__unquoted_with_expr_repeat1, + [234533] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2276), 1, - sym__entry_separator, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6693), 1, + sym_block, STATE(7586), 1, sym_comment, - [234532] = 4, - ACTIONS(3), 1, + [234546] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8161), 1, - sym__entry_separator, - ACTIONS(8163), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6355), 1, + sym_block, STATE(7587), 1, sym_comment, - [234545] = 4, - ACTIONS(247), 1, + [234559] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6368), 1, - sym_block, + ACTIONS(2345), 1, + anon_sym_RBRACE, + ACTIONS(2349), 1, + sym__entry_separator, STATE(7588), 1, sym_comment, - [234558] = 4, + [234572] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(2306), 1, sym__entry_separator, - STATE(3496), 1, - aux_sym__multiple_types_repeat1, STATE(7589), 1, sym_comment, - [234571] = 4, - ACTIONS(247), 1, + [234585] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6370), 1, - sym_block, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(7577), 1, + sym__expr_parenthesized_immediate, STATE(7590), 1, sym_comment, - [234584] = 4, + [234598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8181), 1, - sym__entry_separator, - ACTIONS(8183), 1, + ACTIONS(11665), 1, anon_sym_RBRACK, + ACTIONS(11667), 1, + sym__entry_separator, STATE(7591), 1, sym_comment, - [234597] = 4, - ACTIONS(247), 1, + [234611] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6423), 1, - sym_block, + ACTIONS(11669), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7592), 1, sym_comment, - [234610] = 4, - ACTIONS(247), 1, + [234624] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6424), 1, - sym_block, + ACTIONS(5038), 1, + anon_sym_in2, + ACTIONS(11671), 1, + anon_sym_EQ2, STATE(7593), 1, sym_comment, - [234623] = 4, - ACTIONS(247), 1, + [234637] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6435), 1, - sym_block, + ACTIONS(1790), 1, + anon_sym_LPAREN2, STATE(7594), 1, sym_comment, - [234636] = 4, - ACTIONS(247), 1, + STATE(7686), 1, + sym__expr_parenthesized_immediate, + [234650] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6440), 1, - sym_block, + ACTIONS(11673), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7595), 1, sym_comment, - [234649] = 4, - ACTIONS(247), 1, + [234663] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6442), 1, - sym_block, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(2359), 1, + anon_sym_LPAREN2, STATE(7596), 1, sym_comment, - [234662] = 4, - ACTIONS(247), 1, + [234676] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6443), 1, + STATE(7130), 1, sym_block, STATE(7597), 1, sym_comment, - [234675] = 4, - ACTIONS(247), 1, + [234689] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(1800), 1, anon_sym_LBRACE, - ACTIONS(11641), 1, - anon_sym_EQ2, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(7598), 1, sym_comment, - [234688] = 4, - ACTIONS(247), 1, + [234702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6455), 1, - sym_block, + ACTIONS(7857), 1, + anon_sym_RBRACK, + ACTIONS(7859), 1, + sym__entry_separator, STATE(7599), 1, sym_comment, - [234701] = 4, - ACTIONS(247), 1, + [234715] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6458), 1, + STATE(6524), 1, sym_block, STATE(7600), 1, sym_comment, - [234714] = 4, - ACTIONS(247), 1, + [234728] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6462), 1, + STATE(7131), 1, sym_block, STATE(7601), 1, sym_comment, - [234727] = 4, - ACTIONS(247), 1, + [234741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(5220), 1, - sym_block, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2341), 1, + sym__entry_separator, STATE(7602), 1, sym_comment, - [234740] = 4, - ACTIONS(247), 1, + [234754] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6463), 1, + STATE(6725), 1, sym_block, STATE(7603), 1, sym_comment, - [234753] = 4, - ACTIONS(3), 1, + [234767] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3565), 1, - sym__space, - STATE(1172), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6978), 1, + sym_block, STATE(7604), 1, sym_comment, - [234766] = 4, + [234780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, + ACTIONS(2353), 1, + anon_sym_RBRACE, + ACTIONS(2355), 1, sym__entry_separator, - STATE(2790), 1, - aux_sym__multiple_types_repeat1, STATE(7605), 1, sym_comment, - [234779] = 4, - ACTIONS(247), 1, + [234793] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_LBRACE, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, + ACTIONS(8259), 1, + sym__entry_separator, + ACTIONS(8261), 1, + anon_sym_RBRACK, STATE(7606), 1, sym_comment, - [234792] = 4, - ACTIONS(247), 1, + [234806] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(7494), 1, - sym__expr_parenthesized_immediate, + ACTIONS(8095), 1, + sym__entry_separator, + ACTIONS(8097), 1, + anon_sym_RBRACK, STATE(7607), 1, sym_comment, - [234805] = 4, + [234819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11643), 1, + ACTIONS(11675), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7515), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7608), 1, + STATE(7608), 2, sym_comment, - [234818] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [234830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6836), 1, - sym_block, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym__unquoted_in_record_token4, STATE(7609), 1, sym_comment, - [234831] = 4, - ACTIONS(247), 1, + [234843] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(5125), 1, - sym_block, + ACTIONS(11678), 1, + sym__newline, + ACTIONS(11680), 1, + sym__space, STATE(7610), 1, sym_comment, - [234844] = 4, - ACTIONS(3), 1, + [234856] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11645), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7557), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6980), 1, + sym_block, STATE(7611), 1, sym_comment, - [234857] = 4, - ACTIONS(3), 1, + [234869] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8125), 1, - sym__entry_separator, - ACTIONS(8127), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6730), 1, + sym_block, STATE(7612), 1, sym_comment, - [234870] = 4, - ACTIONS(247), 1, + [234882] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(5226), 1, + sym_block, STATE(7613), 1, sym_comment, - STATE(7707), 1, - sym__expr_parenthesized_immediate, - [234883] = 4, - ACTIONS(247), 1, + [234895] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11647), 1, - anon_sym_DASH2, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_block, STATE(7614), 1, sym_comment, - STATE(8014), 1, - sym_param_short_flag, - [234896] = 4, - ACTIONS(247), 1, + [234908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6955), 1, - sym_block, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(2310), 1, + sym__entry_separator, STATE(7615), 1, sym_comment, - [234909] = 4, - ACTIONS(247), 1, + [234921] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6973), 1, - sym_block, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(7584), 1, + sym__expr_parenthesized_immediate, STATE(7616), 1, sym_comment, - [234922] = 4, - ACTIONS(3), 1, + [234934] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11649), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6787), 1, + sym_block, STATE(7617), 1, sym_comment, - STATE(7706), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [234935] = 4, + [234947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11651), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(5727), 1, + anon_sym_RBRACK, + ACTIONS(5729), 1, + sym__entry_separator, STATE(7618), 1, sym_comment, - STATE(7706), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [234948] = 4, - ACTIONS(247), 1, + [234960] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6981), 1, + sym_block, STATE(7619), 1, sym_comment, - STATE(7673), 1, - sym__expr_parenthesized_immediate, - [234961] = 4, - ACTIONS(247), 1, + [234973] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6865), 1, + STATE(7132), 1, sym_block, STATE(7620), 1, sym_comment, - [234974] = 4, - ACTIONS(3), 1, + [234986] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2258), 1, - anon_sym_RBRACE, - ACTIONS(2262), 1, - sym__entry_separator, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(5172), 1, + sym_block, STATE(7621), 1, sym_comment, - [234987] = 4, + [234999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - ACTIONS(2270), 1, - anon_sym_LBRACE, + ACTIONS(11682), 1, + aux_sym__unquoted_with_expr_token1, STATE(7622), 1, sym_comment, - [235000] = 4, - ACTIONS(247), 1, + STATE(7671), 1, + aux_sym__unquoted_with_expr_repeat1, + [235012] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(7169), 1, + STATE(7135), 1, sym_block, STATE(7623), 1, sym_comment, - [235013] = 4, - ACTIONS(247), 1, + [235025] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4543), 1, - anon_sym_LPAREN2, + ACTIONS(11684), 1, + aux_sym__unquoted_with_expr_token1, STATE(7624), 1, sym_comment, - STATE(7632), 1, - sym__expr_parenthesized_immediate, - [235026] = 4, - ACTIONS(247), 1, + STATE(7689), 1, + aux_sym__unquoted_with_expr_repeat1, + [235038] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7175), 1, - sym_block, + ACTIONS(4281), 1, + anon_sym_LPAREN2, STATE(7625), 1, sym_comment, - [235039] = 3, - ACTIONS(247), 1, + STATE(7710), 1, + sym__expr_parenthesized_immediate, + [235051] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6982), 1, + sym_block, STATE(7626), 1, sym_comment, - ACTIONS(9091), 2, - anon_sym_GT2, - anon_sym_AT, - [235050] = 4, + [235064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_LBRACE, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(11686), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7627), 1, sym_comment, - [235063] = 4, - ACTIONS(247), 1, + [235077] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(4799), 1, - sym_block, + ACTIONS(11688), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7627), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7628), 1, sym_comment, - [235076] = 4, - ACTIONS(3), 1, + [235090] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_RBRACK, - ACTIONS(5681), 1, - sym__entry_separator, STATE(7629), 1, sym_comment, - [235089] = 4, - ACTIONS(3), 1, + ACTIONS(9109), 2, + anon_sym_GT2, + anon_sym_AT, + [235101] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11653), 1, - sym__newline, - ACTIONS(11655), 1, - sym__space, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(7490), 1, + sym__expr_parenthesized_immediate, STATE(7630), 1, sym_comment, - [235102] = 4, - ACTIONS(3), 1, + [235114] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, - ACTIONS(2256), 1, - anon_sym_LBRACE, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(7628), 1, + sym__expr_parenthesized_immediate, STATE(7631), 1, sym_comment, - [235115] = 4, - ACTIONS(3), 1, + [235127] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11657), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6789), 1, + sym_block, STATE(7632), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [235128] = 4, + [235140] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11659), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7384), 1, + anon_sym_RBRACK, + ACTIONS(7386), 1, + sym__entry_separator, STATE(7633), 1, sym_comment, - STATE(7646), 1, - aux_sym__unquoted_with_expr_repeat1, - [235141] = 4, - ACTIONS(3), 1, + [235153] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11661), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, STATE(7634), 1, sym_comment, - STATE(7706), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [235154] = 3, - ACTIONS(3), 1, + STATE(7875), 1, + sym__expr_parenthesized_immediate, + [235166] = 4, + ACTIONS(255), 1, anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6801), 1, + sym_block, STATE(7635), 1, sym_comment, - ACTIONS(2268), 2, - anon_sym_in2, - aux_sym_unquoted_token4, - [235165] = 4, - ACTIONS(3), 1, + [235179] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11663), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7517), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(7457), 1, + sym__expr_parenthesized_immediate, STATE(7636), 1, sym_comment, - [235178] = 4, + [235192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11665), 1, + ACTIONS(11690), 1, aux_sym__unquoted_in_record_with_expr_token1, STATE(7637), 1, sym_comment, - STATE(7706), 1, + STATE(7656), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [235191] = 4, - ACTIONS(3), 1, + [235205] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5160), 1, - sym__entry_separator, - ACTIONS(5163), 1, - anon_sym_RBRACE, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6811), 1, + sym_block, STATE(7638), 1, sym_comment, - [235204] = 4, + [235218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_RBRACE, - ACTIONS(2242), 1, + ACTIONS(5952), 1, sym__entry_separator, + STATE(2874), 1, + aux_sym__multiple_types_repeat1, STATE(7639), 1, sym_comment, - [235217] = 4, - ACTIONS(3), 1, + [235231] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2018), 1, - anon_sym_RBRACE, - ACTIONS(2020), 1, - sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7454), 1, + sym_block, STATE(7640), 1, sym_comment, - [235230] = 4, + [235244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5687), 1, - anon_sym_RBRACK, - ACTIONS(5689), 1, + ACTIONS(8103), 1, sym__entry_separator, + ACTIONS(8105), 1, + anon_sym_RBRACK, STATE(7641), 1, sym_comment, - [235243] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11667), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + [235257] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + sym__entry_separator, + STATE(3479), 1, + aux_sym__multiple_types_repeat1, STATE(7642), 1, sym_comment, - [235256] = 4, - ACTIONS(247), 1, + [235270] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(9640), 1, anon_sym_LBRACE, - STATE(6914), 1, - sym_block, + STATE(6880), 1, + sym_val_record, STATE(7643), 1, sym_comment, - [235269] = 4, + [235283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(2417), 1, sym__entry_separator, - STATE(7346), 1, + STATE(678), 1, aux_sym__multiple_types_repeat1, STATE(7644), 1, sym_comment, - [235282] = 4, - ACTIONS(247), 1, + [235296] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6915), 1, - sym_block, + ACTIONS(2339), 1, + anon_sym_LPAREN2, + ACTIONS(2343), 1, + aux_sym__unquoted_in_list_token4, STATE(7645), 1, sym_comment, - [235295] = 4, - ACTIONS(3), 1, + [235309] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11669), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(4692), 1, + sym_block, STATE(7646), 1, sym_comment, - [235308] = 4, - ACTIONS(3), 1, + [235322] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11671), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7556), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6815), 1, + sym_block, STATE(7647), 1, sym_comment, - [235321] = 4, - ACTIONS(247), 1, + [235335] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6300), 1, - sym_val_record, + STATE(6256), 1, + sym_block, STATE(7648), 1, sym_comment, - [235334] = 4, + [235348] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6984), 1, + sym_block, + STATE(7649), 1, + sym_comment, + [235361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - anon_sym_RBRACK, - ACTIONS(5685), 1, + ACTIONS(2627), 1, + anon_sym_RBRACE, + ACTIONS(2629), 1, sym__entry_separator, - STATE(7649), 1, + STATE(7650), 1, sym_comment, - [235347] = 4, - ACTIONS(247), 1, + [235374] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6299), 1, + STATE(6920), 1, sym_block, - STATE(7650), 1, + STATE(7651), 1, sym_comment, - [235360] = 4, + [235387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11673), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7636), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7651), 1, + ACTIONS(11692), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7652), 1, sym_comment, - [235373] = 4, - ACTIONS(247), 1, + [235400] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6538), 1, + STATE(6747), 1, sym_block, - STATE(7652), 1, - sym_comment, - [235386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11675), 1, - anon_sym_RBRACK, - ACTIONS(11677), 1, - sym__entry_separator, STATE(7653), 1, sym_comment, - [235399] = 4, - ACTIONS(247), 1, + [235413] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6543), 1, + STATE(6988), 1, sym_block, STATE(7654), 1, sym_comment, - [235412] = 4, - ACTIONS(247), 1, + [235426] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6544), 1, + STATE(6754), 1, sym_block, STATE(7655), 1, sym_comment, - [235425] = 4, - ACTIONS(247), 1, + [235439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6546), 1, - sym_block, + ACTIONS(11694), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7484), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7656), 1, sym_comment, - [235438] = 4, - ACTIONS(247), 1, + [235452] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(2341), 1, anon_sym_LBRACE, - STATE(6866), 1, - sym_block, + ACTIONS(2343), 1, + aux_sym_unquoted_token4, STATE(7657), 1, sym_comment, - [235451] = 4, - ACTIONS(247), 1, + [235465] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6609), 1, - sym_block, + ACTIONS(8295), 1, + sym__entry_separator, + ACTIONS(8297), 1, + anon_sym_RBRACK, STATE(7658), 1, sym_comment, - [235464] = 4, - ACTIONS(3), 1, + [235478] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11679), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6255), 1, + sym_block, STATE(7659), 1, sym_comment, - [235477] = 4, - ACTIONS(247), 1, + [235491] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6555), 1, + STATE(6360), 1, sym_block, STATE(7660), 1, sym_comment, - [235490] = 4, - ACTIONS(247), 1, + [235504] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6556), 1, + STATE(7013), 1, sym_block, STATE(7661), 1, sym_comment, - [235503] = 4, + [235517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1026), 1, - anon_sym_in2, - ACTIONS(2228), 1, + ACTIONS(1540), 1, + anon_sym_LBRACE, + ACTIONS(2331), 1, aux_sym_unquoted_token4, STATE(7662), 1, sym_comment, - [235516] = 4, - ACTIONS(247), 1, + [235530] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6943), 1, - sym_block, STATE(7663), 1, sym_comment, - [235529] = 4, - ACTIONS(247), 1, + ACTIONS(11004), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6558), 1, - sym_block, + ACTIONS(1950), 1, + anon_sym_RBRACE, + ACTIONS(1958), 1, + sym__entry_separator, STATE(7664), 1, sym_comment, - [235542] = 4, - ACTIONS(247), 1, + [235554] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4996), 1, - anon_sym_in2, - ACTIONS(11681), 1, - anon_sym_EQ2, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, + ACTIONS(1942), 1, + anon_sym_LPAREN2, STATE(7665), 1, sym_comment, - [235555] = 4, - ACTIONS(247), 1, + [235567] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6561), 1, + STATE(7246), 1, sym_block, STATE(7666), 1, sym_comment, - [235568] = 4, - ACTIONS(247), 1, + [235580] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6563), 1, + STATE(7175), 1, sym_block, STATE(7667), 1, sym_comment, - [235581] = 4, - ACTIONS(247), 1, + [235593] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_in2, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2573), 1, + sym__entry_separator, STATE(7668), 1, sym_comment, - [235594] = 4, - ACTIONS(247), 1, + [235606] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6572), 1, + STATE(6692), 1, sym_block, STATE(7669), 1, sym_comment, - [235607] = 4, - ACTIONS(247), 1, + [235619] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6920), 1, + STATE(6989), 1, sym_block, STATE(7670), 1, sym_comment, - [235620] = 4, - ACTIONS(247), 1, + [235632] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6573), 1, - sym_block, + ACTIONS(11696), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7671), 1, sym_comment, - [235633] = 4, - ACTIONS(247), 1, + [235645] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6575), 1, - sym_block, + ACTIONS(11698), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7608), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7672), 1, sym_comment, - [235646] = 4, - ACTIONS(3), 1, + [235658] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11683), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7458), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6995), 1, + sym_block, STATE(7673), 1, sym_comment, - [235659] = 4, - ACTIONS(247), 1, + [235671] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(4939), 1, + STATE(6403), 1, sym_block, STATE(7674), 1, sym_comment, - [235672] = 4, + [235684] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11685), 1, + ACTIONS(11700), 1, aux_sym__unquoted_with_expr_token1, - STATE(7466), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, STATE(7675), 1, sym_comment, - [235685] = 4, - ACTIONS(247), 1, + [235697] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6588), 1, + STATE(6408), 1, sym_block, STATE(7676), 1, sym_comment, - [235698] = 4, - ACTIONS(247), 1, + [235710] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6868), 1, - sym_block, + ACTIONS(11702), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7554), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7677), 1, sym_comment, - [235711] = 4, - ACTIONS(247), 1, + [235723] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - STATE(6889), 1, - sym_block, + ACTIONS(11704), 1, + anon_sym_EQ2, STATE(7678), 1, sym_comment, - [235724] = 4, - ACTIONS(247), 1, + [235736] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6589), 1, - sym_block, + ACTIONS(11706), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7679), 1, sym_comment, - [235737] = 4, - ACTIONS(247), 1, + [235749] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6837), 1, + STATE(6409), 1, sym_block, STATE(7680), 1, sym_comment, - [235750] = 4, - ACTIONS(3), 1, + [235762] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11687), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7659), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(5538), 1, + anon_sym_LPAREN2, STATE(7681), 1, sym_comment, - [235763] = 4, - ACTIONS(247), 1, + STATE(7840), 1, + sym__expr_parenthesized_immediate, + [235775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6643), 1, - sym_block, + ACTIONS(11708), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7682), 1, sym_comment, - [235776] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6647), 1, - sym_block, - STATE(7683), 1, - sym_comment, - [235789] = 4, + [235788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11689), 1, + ACTIONS(11710), 1, aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, + STATE(7530), 1, aux_sym__unquoted_with_expr_repeat1, + STATE(7683), 1, + sym_comment, + [235801] = 4, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6410), 1, + sym_block, STATE(7684), 1, sym_comment, - [235802] = 3, + [235814] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11712), 1, + anon_sym_RBRACE, + ACTIONS(11714), 1, + sym__entry_separator, STATE(7685), 1, sym_comment, - ACTIONS(1288), 2, - anon_sym_POUND_BANG, - sym__newline, - [235813] = 4, - ACTIONS(247), 1, + [235827] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, - ACTIONS(1828), 1, - anon_sym_LBRACE, + ACTIONS(11716), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7482), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7686), 1, sym_comment, - [235826] = 4, + [235840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - anon_sym_RBRACE, - ACTIONS(2175), 1, - sym__entry_separator, + ACTIONS(11718), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7687), 1, sym_comment, - [235839] = 4, - ACTIONS(247), 1, + [235853] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6747), 1, + STATE(6299), 1, sym_block, STATE(7688), 1, sym_comment, - [235852] = 4, - ACTIONS(247), 1, + [235866] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6748), 1, - sym_block, + ACTIONS(11720), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7530), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7689), 1, sym_comment, - [235865] = 4, - ACTIONS(247), 1, + [235879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6749), 1, - sym_block, + ACTIONS(9991), 1, + anon_sym_RBRACE, + ACTIONS(9993), 1, + sym__entry_separator, STATE(7690), 1, sym_comment, - [235878] = 4, - ACTIONS(247), 1, + [235892] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6750), 1, + STATE(6316), 1, sym_block, STATE(7691), 1, sym_comment, - [235891] = 4, - ACTIONS(247), 1, + [235905] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6751), 1, + STATE(6959), 1, sym_block, STATE(7692), 1, sym_comment, - [235904] = 4, - ACTIONS(247), 1, + [235918] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(6999), 1, + sym_block, STATE(7693), 1, sym_comment, - [235917] = 4, - ACTIONS(247), 1, + [235931] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6752), 1, + STATE(6419), 1, sym_block, STATE(7694), 1, sym_comment, - [235930] = 4, - ACTIONS(247), 1, + [235944] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(6968), 1, + STATE(7005), 1, sym_block, STATE(7695), 1, sym_comment, - [235943] = 4, - ACTIONS(247), 1, + [235957] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_LBRACE, - STATE(6753), 1, - sym_block, + ACTIONS(5538), 1, + anon_sym_LPAREN2, + STATE(7522), 1, + sym__expr_parenthesized_immediate, STATE(7696), 1, sym_comment, - [235956] = 4, - ACTIONS(247), 1, + [235970] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6180), 1, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(6754), 1, + STATE(6463), 1, sym_block, STATE(7697), 1, sym_comment, - [235969] = 4, - ACTIONS(3), 1, + [235983] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11691), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6216), 1, + anon_sym_LBRACE, + STATE(6497), 1, + sym_block, STATE(7698), 1, sym_comment, - [235982] = 4, + [235996] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(2333), 1, + anon_sym_RBRACE, + ACTIONS(2335), 1, sym__entry_separator, - STATE(627), 1, - aux_sym__multiple_types_repeat1, STATE(7699), 1, sym_comment, - [235995] = 4, + [236009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11693), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7684), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(11722), 1, + anon_sym_RBRACE, + ACTIONS(11724), 1, + sym__entry_separator, STATE(7700), 1, sym_comment, - [236008] = 3, - ACTIONS(247), 1, + [236022] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11726), 1, + anon_sym_RBRACK, + ACTIONS(11728), 1, + sym__entry_separator, STATE(7701), 1, sym_comment, - ACTIONS(11695), 2, - anon_sym_RBRACK, - sym_hex_digit, - [236019] = 4, + [236035] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8019), 1, - sym__entry_separator, - ACTIONS(8023), 1, - anon_sym_RBRACK, STATE(7702), 1, sym_comment, - [236032] = 4, - ACTIONS(247), 1, + ACTIONS(2407), 2, + anon_sym_in2, + aux_sym_unquoted_token4, + [236046] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(11593), 1, - anon_sym_make, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, STATE(7703), 1, sym_comment, - [236045] = 4, - ACTIONS(247), 1, + [236059] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7202), 1, - sym_block, STATE(7704), 1, sym_comment, - [236058] = 4, - ACTIONS(3), 1, + ACTIONS(1244), 2, + anon_sym_POUND_BANG, + sym__newline, + [236070] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_RBRACK, - ACTIONS(5924), 1, - sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_LBRACE, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, STATE(7705), 1, sym_comment, - [236071] = 3, + [236083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11697), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7706), 2, + ACTIONS(11730), 1, + anon_sym_LPAREN2, + ACTIONS(11732), 1, + aux_sym__record_key_token1, + STATE(7706), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [236082] = 4, - ACTIONS(3), 1, + [236096] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11700), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7532), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6218), 1, + anon_sym_LBRACE, + STATE(7285), 1, + sym_block, STATE(7707), 1, sym_comment, - [236095] = 4, - ACTIONS(3), 1, + [236109] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11702), 1, - anon_sym_LPAREN2, - ACTIONS(11704), 1, - aux_sym__record_key_token1, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, + ACTIONS(2335), 1, + anon_sym_LBRACE, STATE(7708), 1, sym_comment, - [236108] = 4, - ACTIONS(247), 1, + [236122] = 4, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(6969), 1, - sym_block, + ACTIONS(4281), 1, + anon_sym_LPAREN2, + STATE(7675), 1, + sym__expr_parenthesized_immediate, STATE(7709), 1, sym_comment, - [236121] = 4, - ACTIONS(247), 1, + [236135] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, - ACTIONS(2262), 1, - anon_sym_LBRACE, + ACTIONS(11734), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7652), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7710), 1, sym_comment, - [236134] = 4, - ACTIONS(247), 1, + [236148] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(7003), 1, - sym_block, + ACTIONS(11736), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7679), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7711), 1, sym_comment, - [236147] = 3, - ACTIONS(247), 1, + [236161] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11706), 1, - anon_sym_RBRACK, + ACTIONS(11738), 1, + sym__newline, + ACTIONS(11740), 1, + sym__space, STATE(7712), 1, sym_comment, - [236157] = 3, - ACTIONS(247), 1, + [236174] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11708), 1, - anon_sym_in2, + ACTIONS(11742), 1, + anon_sym_RBRACE, STATE(7713), 1, sym_comment, - [236167] = 3, - ACTIONS(247), 1, + [236184] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11710), 1, - anon_sym_RBRACE, + ACTIONS(11744), 1, + sym_raw_string_end, STATE(7714), 1, sym_comment, - [236177] = 3, - ACTIONS(247), 1, + [236194] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11712), 1, - sym_raw_string_end, + ACTIONS(529), 1, + anon_sym_RPAREN2, STATE(7715), 1, sym_comment, - [236187] = 3, - ACTIONS(247), 1, + [236204] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11714), 1, - anon_sym_EQ, + ACTIONS(11746), 1, + anon_sym_RBRACK, STATE(7716), 1, sym_comment, - [236197] = 3, - ACTIONS(247), 1, + [236214] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11716), 1, + ACTIONS(11748), 1, anon_sym_EQ, STATE(7717), 1, sym_comment, - [236207] = 3, - ACTIONS(247), 1, + [236224] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11718), 1, - anon_sym_EQ_GT, + ACTIONS(11750), 1, + anon_sym_EQ, STATE(7718), 1, sym_comment, - [236217] = 3, - ACTIONS(247), 1, + [236234] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11720), 1, + ACTIONS(11752), 1, anon_sym_RBRACE, STATE(7719), 1, sym_comment, - [236227] = 3, - ACTIONS(247), 1, + [236244] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4762), 1, - aux_sym_unquoted_token2, + ACTIONS(11754), 1, + anon_sym_LBRACE, STATE(7720), 1, sym_comment, - [236237] = 3, - ACTIONS(247), 1, + [236254] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11722), 1, - sym_raw_string_end, + ACTIONS(11756), 1, + anon_sym_RBRACE, STATE(7721), 1, sym_comment, - [236247] = 3, - ACTIONS(247), 1, + [236264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11724), 1, - anon_sym_RPAREN, + ACTIONS(5711), 1, + aux_sym_record_entry_token1, STATE(7722), 1, sym_comment, - [236257] = 3, - ACTIONS(247), 1, + [236274] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11726), 1, - anon_sym_LBRACE, + ACTIONS(11758), 1, + anon_sym_GT2, STATE(7723), 1, sym_comment, - [236267] = 3, - ACTIONS(247), 1, + [236284] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11183), 1, - anon_sym_EQ_GT, + ACTIONS(5707), 1, + aux_sym_record_entry_token1, STATE(7724), 1, sym_comment, - [236277] = 3, - ACTIONS(3), 1, + [236294] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11728), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11760), 1, + sym_raw_string_end, STATE(7725), 1, sym_comment, - [236287] = 3, - ACTIONS(247), 1, + [236304] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9508), 1, - aux_sym_unquoted_token2, + ACTIONS(11762), 1, + anon_sym_RBRACE, STATE(7726), 1, sym_comment, - [236297] = 3, - ACTIONS(247), 1, + [236314] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11730), 1, - anon_sym_GT2, + ACTIONS(11764), 1, + anon_sym_RBRACE, STATE(7727), 1, sym_comment, - [236307] = 3, - ACTIONS(247), 1, + [236324] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11732), 1, - sym_raw_string_end, + ACTIONS(513), 1, + anon_sym_RPAREN2, STATE(7728), 1, sym_comment, - [236317] = 3, - ACTIONS(247), 1, + [236334] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8653), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11766), 1, + anon_sym_EQ, STATE(7729), 1, sym_comment, - [236327] = 3, - ACTIONS(247), 1, + [236344] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11734), 1, - anon_sym_RBRACE, + ACTIONS(11768), 1, + anon_sym_RBRACK, STATE(7730), 1, sym_comment, - [236337] = 3, - ACTIONS(247), 1, + [236354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11736), 1, - anon_sym_RBRACE, + ACTIONS(11770), 1, + sym_raw_string_end, STATE(7731), 1, sym_comment, - [236347] = 3, - ACTIONS(247), 1, + [236364] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11772), 1, + anon_sym_GT2, STATE(7732), 1, sym_comment, - [236357] = 3, - ACTIONS(3), 1, + [236374] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11738), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11774), 1, + anon_sym_LBRACE, STATE(7733), 1, sym_comment, - [236367] = 3, - ACTIONS(3), 1, + [236384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9508), 1, - aux_sym_unquoted_token4, + ACTIONS(11776), 1, + sym_raw_string_end, STATE(7734), 1, sym_comment, - [236377] = 3, - ACTIONS(247), 1, + [236394] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1661), 1, - aux_sym_unquoted_token2, + ACTIONS(11778), 1, + anon_sym_RPAREN, STATE(7735), 1, sym_comment, - [236387] = 3, - ACTIONS(247), 1, + [236404] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11740), 1, - sym_raw_string_end, + ACTIONS(11780), 1, + aux_sym_cmd_identifier_token41, STATE(7736), 1, sym_comment, - [236397] = 3, - ACTIONS(247), 1, + [236414] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11742), 1, - sym_raw_string_end, + ACTIONS(11782), 1, + aux_sym_cmd_identifier_token41, STATE(7737), 1, sym_comment, - [236407] = 3, - ACTIONS(247), 1, + [236424] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11744), 1, - sym_identifier, + ACTIONS(11784), 1, + anon_sym_RBRACE, STATE(7738), 1, sym_comment, - [236417] = 3, - ACTIONS(247), 1, + [236434] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8635), 1, - aux_sym_unquoted_token2, + ACTIONS(11786), 1, + anon_sym_EQ, STATE(7739), 1, sym_comment, - [236427] = 3, - ACTIONS(247), 1, + [236444] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(509), 1, - anon_sym_RPAREN2, + ACTIONS(11788), 1, + sym_raw_string_end, STATE(7740), 1, sym_comment, - [236437] = 3, - ACTIONS(247), 1, + [236454] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5549), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11790), 1, + anon_sym_RPAREN2, STATE(7741), 1, sym_comment, - [236447] = 3, - ACTIONS(247), 1, + [236464] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11746), 1, - anon_sym_RBRACK, + ACTIONS(11792), 1, + anon_sym_LBRACE, STATE(7742), 1, sym_comment, - [236457] = 3, - ACTIONS(247), 1, + [236474] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11748), 1, - sym_raw_string_end, + ACTIONS(11794), 1, + anon_sym_EQ, STATE(7743), 1, sym_comment, - [236467] = 3, - ACTIONS(247), 1, + [236484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11750), 1, - sym__table_head_separator, + ACTIONS(11796), 1, + sym_identifier, STATE(7744), 1, sym_comment, - [236477] = 3, - ACTIONS(247), 1, + [236494] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6450), 1, - aux_sym_unquoted_token2, + ACTIONS(11798), 1, + sym__table_head_separator, STATE(7745), 1, sym_comment, - [236487] = 3, - ACTIONS(3), 1, + [236504] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6450), 1, - aux_sym_unquoted_token4, + ACTIONS(11800), 1, + anon_sym_EQ, STATE(7746), 1, sym_comment, - [236497] = 3, - ACTIONS(247), 1, + [236514] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11752), 1, - anon_sym_RBRACK, + ACTIONS(4915), 1, + aux_sym_unquoted_token2, STATE(7747), 1, sym_comment, - [236507] = 3, - ACTIONS(247), 1, + [236524] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11754), 1, - anon_sym_RPAREN, + ACTIONS(2215), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7748), 1, sym_comment, - [236517] = 3, - ACTIONS(247), 1, + [236534] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11756), 1, - anon_sym_RPAREN, + ACTIONS(545), 1, + anon_sym_RPAREN2, STATE(7749), 1, sym_comment, - [236527] = 3, - ACTIONS(247), 1, + [236544] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11758), 1, - anon_sym_RPAREN, + ACTIONS(5683), 1, + aux_sym_record_entry_token1, STATE(7750), 1, sym_comment, - [236537] = 3, - ACTIONS(247), 1, + [236554] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11760), 1, - sym_identifier, + ACTIONS(11754), 1, + anon_sym_LBRACE, STATE(7751), 1, sym_comment, - [236547] = 3, - ACTIONS(247), 1, + [236564] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11762), 1, - anon_sym_RBRACE, + ACTIONS(11802), 1, + anon_sym_LBRACE, STATE(7752), 1, sym_comment, - [236557] = 3, - ACTIONS(247), 1, + [236574] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11764), 1, - anon_sym_RBRACE, + ACTIONS(11804), 1, + sym_raw_string_end, STATE(7753), 1, sym_comment, - [236567] = 3, - ACTIONS(247), 1, + [236584] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11766), 1, + ACTIONS(11806), 1, anon_sym_RBRACE, STATE(7754), 1, sym_comment, - [236577] = 3, - ACTIONS(3), 1, + [236594] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11768), 1, - aux_sym_shebang_token1, + ACTIONS(11808), 1, + anon_sym_RPAREN, STATE(7755), 1, sym_comment, - [236587] = 3, - ACTIONS(247), 1, + [236604] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11770), 1, - sym__table_head_separator, + ACTIONS(11810), 1, + anon_sym_RPAREN, STATE(7756), 1, sym_comment, - [236597] = 3, - ACTIONS(3), 1, + [236614] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym_unquoted_token4, + ACTIONS(11812), 1, + sym__table_head_separator, STATE(7757), 1, sym_comment, - [236607] = 3, - ACTIONS(247), 1, + [236624] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11772), 1, - anon_sym_RBRACE, + ACTIONS(11814), 1, + anon_sym_DASH_GT, STATE(7758), 1, sym_comment, - [236617] = 3, - ACTIONS(247), 1, + [236634] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11774), 1, - anon_sym_make, + ACTIONS(9733), 1, + aux_sym_unquoted_token4, STATE(7759), 1, sym_comment, - [236627] = 3, - ACTIONS(247), 1, + [236644] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11776), 1, + ACTIONS(11816), 1, sym_raw_string_end, STATE(7760), 1, sym_comment, - [236637] = 3, - ACTIONS(247), 1, + [236654] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11778), 1, - anon_sym_RBRACK, + ACTIONS(11818), 1, + sym_raw_string_end, STATE(7761), 1, sym_comment, - [236647] = 3, - ACTIONS(247), 1, + [236664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11780), 1, - anon_sym_RBRACE, + ACTIONS(11820), 1, + sym_raw_string_end, STATE(7762), 1, sym_comment, - [236657] = 3, - ACTIONS(247), 1, + [236674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11782), 1, - anon_sym_RBRACE, + ACTIONS(11822), 1, + sym_raw_string_end, STATE(7763), 1, sym_comment, - [236667] = 3, - ACTIONS(247), 1, + [236684] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2278), 1, - aux_sym_unquoted_token2, + ACTIONS(11824), 1, + anon_sym_RPAREN, STATE(7764), 1, sym_comment, - [236677] = 3, - ACTIONS(247), 1, + [236694] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11784), 1, - anon_sym_RBRACE, + ACTIONS(11826), 1, + anon_sym_RPAREN, STATE(7765), 1, sym_comment, - [236687] = 3, - ACTIONS(247), 1, + [236704] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1812), 1, - aux_sym_unquoted_token2, + ACTIONS(11828), 1, + anon_sym_RPAREN, STATE(7766), 1, sym_comment, - [236697] = 3, - ACTIONS(247), 1, + [236714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11786), 1, - anon_sym_RBRACE, + ACTIONS(6502), 1, + aux_sym_unquoted_token2, STATE(7767), 1, sym_comment, - [236707] = 3, - ACTIONS(247), 1, + [236724] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11788), 1, - sym_raw_string_end, + ACTIONS(6502), 1, + aux_sym_unquoted_token4, STATE(7768), 1, sym_comment, - [236717] = 3, - ACTIONS(247), 1, + [236734] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11790), 1, - anon_sym_RBRACE, + ACTIONS(11830), 1, + sym_raw_string_end, STATE(7769), 1, sym_comment, - [236727] = 3, - ACTIONS(247), 1, + [236744] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11792), 1, - anon_sym_DASH_GT, + ACTIONS(11832), 1, + anon_sym_RBRACK, STATE(7770), 1, sym_comment, - [236737] = 3, - ACTIONS(247), 1, + [236754] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11794), 1, - anon_sym_RPAREN, + ACTIONS(1728), 1, + aux_sym_unquoted_token2, STATE(7771), 1, sym_comment, - [236747] = 3, - ACTIONS(247), 1, + [236764] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11796), 1, - anon_sym_RPAREN, + ACTIONS(11834), 1, + anon_sym_RBRACE, STATE(7772), 1, sym_comment, - [236757] = 3, - ACTIONS(247), 1, + [236774] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11798), 1, - anon_sym_RPAREN, + ACTIONS(11836), 1, + anon_sym_RBRACK, STATE(7773), 1, sym_comment, - [236767] = 3, - ACTIONS(247), 1, + [236784] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11800), 1, - anon_sym_RBRACE, + ACTIONS(11838), 1, + anon_sym_RBRACK, STATE(7774), 1, sym_comment, - [236777] = 3, - ACTIONS(247), 1, + [236794] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11802), 1, - anon_sym_RBRACE, + ACTIONS(11840), 1, + anon_sym_RPAREN, STATE(7775), 1, sym_comment, - [236787] = 3, - ACTIONS(247), 1, + [236804] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5681), 1, - aux_sym_record_entry_token1, + ACTIONS(11842), 1, + anon_sym_RBRACE, STATE(7776), 1, sym_comment, - [236797] = 3, - ACTIONS(247), 1, + [236814] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11804), 1, - anon_sym_EQ, + ACTIONS(11844), 1, + anon_sym_RBRACE, STATE(7777), 1, sym_comment, - [236807] = 3, - ACTIONS(247), 1, + [236824] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11806), 1, - anon_sym_RPAREN, + ACTIONS(11846), 1, + anon_sym_RBRACE, STATE(7778), 1, sym_comment, - [236817] = 3, - ACTIONS(247), 1, + [236834] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym_unquoted_token2, + ACTIONS(11848), 1, + anon_sym_RBRACE, STATE(7779), 1, sym_comment, - [236827] = 3, - ACTIONS(247), 1, + [236844] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5580), 1, - aux_sym_unquoted_token2, + ACTIONS(11850), 1, + anon_sym_RPAREN, STATE(7780), 1, sym_comment, - [236837] = 3, - ACTIONS(247), 1, + [236854] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11808), 1, - anon_sym_RBRACE, + ACTIONS(11852), 1, + sym__table_head_separator, STATE(7781), 1, sym_comment, - [236847] = 3, - ACTIONS(247), 1, + [236864] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5689), 1, - aux_sym_record_entry_token1, + ACTIONS(11854), 1, + sym_raw_string_end, STATE(7782), 1, sym_comment, - [236857] = 3, - ACTIONS(247), 1, + [236874] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11810), 1, - sym_raw_string_end, + ACTIONS(11856), 1, + anon_sym_RBRACE, STATE(7783), 1, sym_comment, - [236867] = 3, - ACTIONS(247), 1, + [236884] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11812), 1, + ACTIONS(11858), 1, anon_sym_RBRACE, STATE(7784), 1, sym_comment, - [236877] = 3, - ACTIONS(3), 1, + [236894] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4762), 1, - aux_sym_unquoted_token4, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, STATE(7785), 1, sym_comment, - [236887] = 3, - ACTIONS(247), 1, + [236904] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5658), 1, - aux_sym_record_entry_token1, + ACTIONS(11860), 1, + anon_sym_RBRACE, STATE(7786), 1, sym_comment, - [236897] = 3, - ACTIONS(3), 1, + [236914] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11814), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11862), 1, + anon_sym_RBRACE, STATE(7787), 1, sym_comment, - [236907] = 3, - ACTIONS(3), 1, + [236924] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4730), 1, - aux_sym_unquoted_token4, + ACTIONS(11864), 1, + anon_sym_RPAREN, STATE(7788), 1, sym_comment, - [236917] = 3, - ACTIONS(247), 1, + [236934] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11816), 1, - anon_sym_RBRACK, + ACTIONS(11866), 1, + anon_sym_RBRACE, STATE(7789), 1, sym_comment, - [236927] = 3, - ACTIONS(247), 1, + [236944] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11818), 1, - anon_sym_EQ, + ACTIONS(11868), 1, + ts_builtin_sym_end, STATE(7790), 1, sym_comment, - [236937] = 3, - ACTIONS(247), 1, + [236954] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11820), 1, - anon_sym_RPAREN, + ACTIONS(11870), 1, + anon_sym_RBRACE, STATE(7791), 1, sym_comment, - [236947] = 3, - ACTIONS(247), 1, + [236964] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11872), 1, + aux_sym_cmd_identifier_token41, STATE(7792), 1, sym_comment, - [236957] = 3, - ACTIONS(247), 1, + [236974] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11822), 1, - sym_raw_string_end, + ACTIONS(4915), 1, + aux_sym_unquoted_token4, STATE(7793), 1, sym_comment, - [236967] = 3, - ACTIONS(247), 1, + [236984] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11824), 1, - anon_sym_EQ, + ACTIONS(11874), 1, + anon_sym_RPAREN, STATE(7794), 1, sym_comment, - [236977] = 3, - ACTIONS(247), 1, + [236994] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11826), 1, - anon_sym_RPAREN, + ACTIONS(11876), 1, + sym_raw_string_end, STATE(7795), 1, sym_comment, - [236987] = 3, - ACTIONS(247), 1, + [237004] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11828), 1, + ACTIONS(11878), 1, anon_sym_RBRACE, STATE(7796), 1, sym_comment, - [236997] = 3, - ACTIONS(247), 1, + [237014] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11830), 1, - anon_sym_RPAREN, + ACTIONS(11880), 1, + anon_sym_RBRACE, STATE(7797), 1, sym_comment, - [237007] = 3, - ACTIONS(247), 1, + [237024] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11832), 1, - anon_sym_RBRACE, + ACTIONS(541), 1, + anon_sym_RPAREN2, STATE(7798), 1, sym_comment, - [237017] = 3, - ACTIONS(3), 1, + [237034] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11834), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11882), 1, + anon_sym_RBRACK, STATE(7799), 1, sym_comment, - [237027] = 3, - ACTIONS(247), 1, + [237044] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11836), 1, + ACTIONS(11884), 1, anon_sym_RPAREN, STATE(7800), 1, sym_comment, - [237037] = 3, - ACTIONS(247), 1, + [237054] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11838), 1, - anon_sym_RBRACE, + ACTIONS(11886), 1, + anon_sym_RPAREN, STATE(7801), 1, sym_comment, - [237047] = 3, - ACTIONS(3), 1, + [237064] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2228), 1, - aux_sym_unquoted_token4, + ACTIONS(11888), 1, + sym_raw_string_end, STATE(7802), 1, sym_comment, - [237057] = 3, - ACTIONS(247), 1, + [237074] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11840), 1, - sym_raw_string_content, + ACTIONS(11890), 1, + anon_sym_RBRACE, STATE(7803), 1, sym_comment, - [237067] = 3, - ACTIONS(247), 1, + [237084] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11842), 1, - anon_sym_RBRACE, + ACTIONS(11892), 1, + sym_raw_string_content, STATE(7804), 1, sym_comment, - [237077] = 3, - ACTIONS(247), 1, + [237094] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11844), 1, - anon_sym_RPAREN, + ACTIONS(4969), 1, + aux_sym_unquoted_token2, STATE(7805), 1, sym_comment, - [237087] = 3, - ACTIONS(247), 1, + [237104] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5188), 1, - anon_sym_LBRACK2, + ACTIONS(11894), 1, + sym_raw_string_end, STATE(7806), 1, sym_comment, - [237097] = 3, - ACTIONS(247), 1, + [237114] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9524), 1, - aux_sym_unquoted_token2, + ACTIONS(5224), 1, + anon_sym_LBRACK2, STATE(7807), 1, sym_comment, - [237107] = 3, - ACTIONS(3), 1, + [237124] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token4, + ACTIONS(11896), 1, + anon_sym_EQ, STATE(7808), 1, sym_comment, - [237117] = 3, - ACTIONS(247), 1, + [237134] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11846), 1, - sym_raw_string_end, + ACTIONS(11898), 1, + anon_sym_RBRACE, STATE(7809), 1, sym_comment, - [237127] = 3, - ACTIONS(247), 1, + [237144] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11848), 1, - sym__table_head_separator, + ACTIONS(11900), 1, + anon_sym_RBRACE, STATE(7810), 1, sym_comment, - [237137] = 3, - ACTIONS(247), 1, + [237154] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, + ACTIONS(11902), 1, + anon_sym_RBRACE, STATE(7811), 1, sym_comment, - [237147] = 3, - ACTIONS(3), 1, + [237164] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2118), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3449), 1, + aux_sym_record_entry_token1, STATE(7812), 1, sym_comment, - [237157] = 3, - ACTIONS(3), 1, + [237174] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11850), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11904), 1, + sym_raw_string_end, STATE(7813), 1, sym_comment, - [237167] = 3, - ACTIONS(247), 1, + [237184] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11852), 1, - anon_sym_RBRACE, + ACTIONS(11906), 1, + aux_sym_shebang_token1, STATE(7814), 1, sym_comment, - [237177] = 3, - ACTIONS(247), 1, + [237194] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11854), 1, + ACTIONS(11908), 1, anon_sym_RBRACE, STATE(7815), 1, sym_comment, - [237187] = 3, - ACTIONS(247), 1, + [237204] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11856), 1, - sym_identifier, + ACTIONS(4969), 1, + aux_sym_unquoted_token4, STATE(7816), 1, sym_comment, - [237197] = 3, - ACTIONS(247), 1, + [237214] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11858), 1, - anon_sym_RBRACE, + ACTIONS(11910), 1, + anon_sym_RPAREN, STATE(7817), 1, sym_comment, - [237207] = 3, - ACTIONS(247), 1, + [237224] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11860), 1, - anon_sym_EQ, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token4, STATE(7818), 1, sym_comment, - [237217] = 3, - ACTIONS(247), 1, + [237234] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11862), 1, - anon_sym_GT2, + ACTIONS(11912), 1, + sym_raw_string_end, STATE(7819), 1, sym_comment, - [237227] = 3, + [237244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11864), 1, - sym__space, + ACTIONS(2219), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7820), 1, sym_comment, - [237237] = 3, - ACTIONS(247), 1, + [237254] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11866), 1, - anon_sym_RBRACE, + ACTIONS(11914), 1, + anon_sym_RPAREN, STATE(7821), 1, sym_comment, - [237247] = 3, - ACTIONS(247), 1, + [237264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11868), 1, - anon_sym_RPAREN, + ACTIONS(11916), 1, + anon_sym_RBRACE, STATE(7822), 1, sym_comment, - [237257] = 3, - ACTIONS(247), 1, + [237274] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11870), 1, - anon_sym_EQ, + ACTIONS(11918), 1, + sym_raw_string_end, STATE(7823), 1, sym_comment, - [237267] = 3, - ACTIONS(247), 1, + [237284] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11872), 1, + ACTIONS(11920), 1, sym_raw_string_end, STATE(7824), 1, sym_comment, - [237277] = 3, - ACTIONS(247), 1, + [237294] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11874), 1, - anon_sym_EQ, + ACTIONS(8768), 1, + aux_sym__unquoted_in_record_token2, STATE(7825), 1, sym_comment, - [237287] = 3, - ACTIONS(247), 1, + [237304] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11876), 1, - anon_sym_RBRACK, + ACTIONS(11922), 1, + sym_raw_string_end, STATE(7826), 1, sym_comment, - [237297] = 3, - ACTIONS(3), 1, + [237314] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11878), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(1802), 1, + aux_sym__unquoted_in_record_token2, STATE(7827), 1, sym_comment, - [237307] = 3, - ACTIONS(247), 1, + [237324] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11880), 1, + ACTIONS(11728), 1, anon_sym_LBRACE, STATE(7828), 1, sym_comment, - [237317] = 3, - ACTIONS(247), 1, + [237334] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11882), 1, - sym_param_short_flag_identifier, + ACTIONS(11924), 1, + anon_sym_RPAREN, STATE(7829), 1, sym_comment, - [237327] = 3, - ACTIONS(247), 1, + [237344] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, + ACTIONS(11926), 1, + aux_sym_cmd_identifier_token41, STATE(7830), 1, sym_comment, - [237337] = 3, - ACTIONS(247), 1, + [237354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11884), 1, - anon_sym_LBRACE, + ACTIONS(11928), 1, + anon_sym_RBRACE, STATE(7831), 1, sym_comment, - [237347] = 3, - ACTIONS(3), 1, + [237364] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11886), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11930), 1, + anon_sym_EQ, STATE(7832), 1, sym_comment, - [237357] = 3, - ACTIONS(247), 1, + [237374] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11888), 1, - sym_identifier, + ACTIONS(7282), 1, + aux_sym_unquoted_token2, STATE(7833), 1, sym_comment, - [237367] = 3, - ACTIONS(247), 1, + [237384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11890), 1, - sym_raw_string_end, + ACTIONS(11932), 1, + anon_sym_RPAREN, STATE(7834), 1, sym_comment, - [237377] = 3, - ACTIONS(247), 1, + [237394] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11892), 1, - anon_sym_LBRACE, + ACTIONS(11934), 1, + sym_identifier, STATE(7835), 1, sym_comment, - [237387] = 3, - ACTIONS(247), 1, + [237404] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11894), 1, - anon_sym_RBRACE, + ACTIONS(11936), 1, + anon_sym_GT2, STATE(7836), 1, sym_comment, - [237397] = 3, - ACTIONS(247), 1, + [237414] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11896), 1, - anon_sym_RBRACE, + ACTIONS(11938), 1, + sym_raw_string_end, STATE(7837), 1, sym_comment, - [237407] = 3, - ACTIONS(247), 1, + [237424] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11898), 1, - sym_raw_string_end, + ACTIONS(11940), 1, + anon_sym_GT2, STATE(7838), 1, sym_comment, - [237417] = 3, - ACTIONS(247), 1, + [237434] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11900), 1, - sym_raw_string_end, + ACTIONS(11470), 1, + anon_sym_EQ_GT, STATE(7839), 1, sym_comment, - [237427] = 3, - ACTIONS(247), 1, + [237444] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11902), 1, - sym_raw_string_end, + ACTIONS(11942), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7840), 1, sym_comment, - [237437] = 3, - ACTIONS(247), 1, + [237454] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11904), 1, - anon_sym_RPAREN, + ACTIONS(11944), 1, + anon_sym_EQ, STATE(7841), 1, sym_comment, - [237447] = 3, - ACTIONS(247), 1, + [237464] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4730), 1, - aux_sym_unquoted_token2, + ACTIONS(11946), 1, + anon_sym_RPAREN, STATE(7842), 1, sym_comment, - [237457] = 3, - ACTIONS(247), 1, + [237474] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11906), 1, - anon_sym_RBRACK, + ACTIONS(11948), 1, + sym_raw_string_end, STATE(7843), 1, sym_comment, - [237467] = 3, - ACTIONS(247), 1, + [237484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11908), 1, + ACTIONS(11950), 1, anon_sym_RPAREN, STATE(7844), 1, sym_comment, - [237477] = 3, - ACTIONS(247), 1, + [237494] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11910), 1, - anon_sym_RBRACE, + ACTIONS(11952), 1, + sym_raw_string_end, STATE(7845), 1, sym_comment, - [237487] = 3, - ACTIONS(3), 1, + [237504] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2118), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11954), 1, + anon_sym_RBRACE, STATE(7846), 1, sym_comment, - [237497] = 3, - ACTIONS(3), 1, + [237514] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8635), 1, - aux_sym_unquoted_token4, + ACTIONS(11956), 1, + sym_raw_string_end, STATE(7847), 1, sym_comment, - [237507] = 3, - ACTIONS(3), 1, + [237524] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11912), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11958), 1, + anon_sym_EQ, STATE(7848), 1, sym_comment, - [237517] = 3, - ACTIONS(247), 1, + [237534] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11914), 1, - sym_raw_string_end, + ACTIONS(11960), 1, + anon_sym_RBRACK, STATE(7849), 1, sym_comment, - [237527] = 3, - ACTIONS(247), 1, + [237544] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11916), 1, - anon_sym_RBRACE, + ACTIONS(7202), 1, + aux_sym_unquoted_token2, STATE(7850), 1, sym_comment, - [237537] = 3, - ACTIONS(247), 1, + [237554] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11918), 1, - sym_raw_string_end, + ACTIONS(11962), 1, + ts_builtin_sym_end, STATE(7851), 1, sym_comment, - [237547] = 3, - ACTIONS(247), 1, + [237564] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_record_entry_token1, + ACTIONS(11964), 1, + sym_raw_string_end, STATE(7852), 1, sym_comment, - [237557] = 3, - ACTIONS(247), 1, + [237574] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(483), 1, - anon_sym_RPAREN2, + ACTIONS(11966), 1, + sym_raw_string_end, STATE(7853), 1, sym_comment, - [237567] = 3, - ACTIONS(247), 1, + [237584] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11920), 1, - anon_sym_RBRACE, + ACTIONS(11968), 1, + anon_sym_GT2, STATE(7854), 1, sym_comment, - [237577] = 3, - ACTIONS(247), 1, + [237594] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11922), 1, - anon_sym_EQ_GT, + ACTIONS(10894), 1, + anon_sym_LBRACE, STATE(7855), 1, sym_comment, - [237587] = 3, - ACTIONS(247), 1, + [237604] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11924), 1, - anon_sym_RPAREN, + ACTIONS(11970), 1, + anon_sym_RBRACK, STATE(7856), 1, sym_comment, - [237597] = 3, - ACTIONS(247), 1, + [237614] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11926), 1, - sym_raw_string_end, + ACTIONS(7282), 1, + aux_sym_unquoted_token4, STATE(7857), 1, sym_comment, - [237607] = 3, - ACTIONS(247), 1, + [237624] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11928), 1, - anon_sym_RPAREN2, + ACTIONS(11972), 1, + sym_raw_string_end, STATE(7858), 1, sym_comment, - [237617] = 3, - ACTIONS(247), 1, + [237634] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11930), 1, + ACTIONS(11974), 1, anon_sym_RBRACK, STATE(7859), 1, sym_comment, - [237627] = 3, - ACTIONS(247), 1, + [237644] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11932), 1, - anon_sym_RBRACE, + ACTIONS(11976), 1, + sym_raw_string_end, STATE(7860), 1, sym_comment, - [237637] = 3, - ACTIONS(247), 1, + [237654] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11934), 1, - anon_sym_EQ, + ACTIONS(4763), 1, + aux_sym_unquoted_token2, STATE(7861), 1, sym_comment, - [237647] = 3, - ACTIONS(247), 1, + [237664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11936), 1, - anon_sym_RBRACK, + ACTIONS(11978), 1, + anon_sym_RPAREN, STATE(7862), 1, sym_comment, - [237657] = 3, - ACTIONS(247), 1, + [237674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11938), 1, - anon_sym_RPAREN, + ACTIONS(11980), 1, + anon_sym_RBRACK, STATE(7863), 1, sym_comment, - [237667] = 3, - ACTIONS(247), 1, + [237684] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11940), 1, - sym_raw_string_content, + ACTIONS(11982), 1, + anon_sym_RPAREN, STATE(7864), 1, sym_comment, - [237677] = 3, - ACTIONS(247), 1, + [237694] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11942), 1, - sym_raw_string_end, + ACTIONS(11984), 1, + sym_raw_string_content, STATE(7865), 1, sym_comment, - [237687] = 3, - ACTIONS(247), 1, + [237704] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11944), 1, + ACTIONS(11986), 1, anon_sym_RPAREN, STATE(7866), 1, sym_comment, - [237697] = 3, - ACTIONS(247), 1, + [237714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_LBRACK2, + ACTIONS(11988), 1, + anon_sym_RBRACE, STATE(7867), 1, sym_comment, - [237707] = 3, - ACTIONS(3), 1, + [237724] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11946), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5132), 1, + anon_sym_LBRACK2, STATE(7868), 1, sym_comment, - [237717] = 3, - ACTIONS(247), 1, + [237734] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11948), 1, - sym_identifier, + ACTIONS(11990), 1, + anon_sym_RBRACE, STATE(7869), 1, sym_comment, - [237727] = 3, - ACTIONS(247), 1, + [237744] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11950), 1, - anon_sym_RBRACK, + ACTIONS(11992), 1, + sym_raw_string_end, STATE(7870), 1, sym_comment, - [237737] = 3, - ACTIONS(247), 1, + [237754] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11952), 1, - sym_raw_string_end, + ACTIONS(8688), 1, + aux_sym_unquoted_token2, STATE(7871), 1, sym_comment, - [237747] = 3, + [237764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(7202), 1, + aux_sym_unquoted_token4, STATE(7872), 1, sym_comment, - [237757] = 3, - ACTIONS(247), 1, + [237774] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11954), 1, - sym_raw_string_content, + ACTIONS(11994), 1, + anon_sym_RBRACE, STATE(7873), 1, sym_comment, - [237767] = 3, - ACTIONS(247), 1, + [237784] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11956), 1, - anon_sym_RBRACE, + ACTIONS(11996), 1, + anon_sym_RBRACK, STATE(7874), 1, sym_comment, - [237777] = 3, - ACTIONS(247), 1, + [237794] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11958), 1, - anon_sym_LBRACE, + ACTIONS(11998), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7875), 1, sym_comment, - [237787] = 3, - ACTIONS(247), 1, + [237804] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11960), 1, - ts_builtin_sym_end, + ACTIONS(12000), 1, + anon_sym_RPAREN, STATE(7876), 1, sym_comment, - [237797] = 3, - ACTIONS(247), 1, + [237814] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11962), 1, - anon_sym_RBRACE, + ACTIONS(12002), 1, + anon_sym_LBRACE, STATE(7877), 1, sym_comment, - [237807] = 3, - ACTIONS(247), 1, + [237824] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11964), 1, - anon_sym_RPAREN, + ACTIONS(12004), 1, + sym_raw_string_end, STATE(7878), 1, sym_comment, - [237817] = 3, - ACTIONS(247), 1, + [237834] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11966), 1, + ACTIONS(12006), 1, anon_sym_RBRACE, STATE(7879), 1, sym_comment, - [237827] = 3, - ACTIONS(247), 1, + [237844] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11968), 1, - anon_sym_RBRACK, + ACTIONS(12008), 1, + anon_sym_RBRACE, STATE(7880), 1, sym_comment, - [237837] = 3, - ACTIONS(247), 1, + [237854] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11970), 1, - anon_sym_RBRACE, + ACTIONS(12010), 1, + sym_raw_string_end, STATE(7881), 1, sym_comment, - [237847] = 3, - ACTIONS(247), 1, + [237864] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11972), 1, + ACTIONS(12012), 1, anon_sym_RPAREN, STATE(7882), 1, sym_comment, - [237857] = 3, - ACTIONS(247), 1, + [237874] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11974), 1, - anon_sym_RBRACE, + ACTIONS(12014), 1, + anon_sym_RPAREN, STATE(7883), 1, sym_comment, - [237867] = 3, - ACTIONS(247), 1, + [237884] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4569), 1, + ACTIONS(4782), 1, aux_sym_unquoted_token2, STATE(7884), 1, sym_comment, - [237877] = 3, - ACTIONS(247), 1, + [237894] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11976), 1, - sym_raw_string_end, + ACTIONS(12016), 1, + sym_identifier, STATE(7885), 1, sym_comment, - [237887] = 3, - ACTIONS(247), 1, + [237904] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11978), 1, - sym_raw_string_content, + ACTIONS(12018), 1, + anon_sym_RBRACE, STATE(7886), 1, sym_comment, - [237897] = 3, - ACTIONS(247), 1, + [237914] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11980), 1, - anon_sym_RBRACE, + ACTIONS(12020), 1, + sym_raw_string_content, STATE(7887), 1, sym_comment, - [237907] = 3, - ACTIONS(247), 1, + [237924] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8014), 1, - anon_sym_LBRACK2, + ACTIONS(12022), 1, + sym_raw_string_end, STATE(7888), 1, sym_comment, - [237917] = 3, - ACTIONS(247), 1, + [237934] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5693), 1, - aux_sym_record_entry_token1, + ACTIONS(8012), 1, + anon_sym_LBRACK2, STATE(7889), 1, sym_comment, - [237927] = 3, - ACTIONS(3), 1, + [237944] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5580), 1, - aux_sym_unquoted_token4, + ACTIONS(12024), 1, + anon_sym_RBRACE, STATE(7890), 1, sym_comment, - [237937] = 3, - ACTIONS(247), 1, + [237954] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11982), 1, - anon_sym_RPAREN, + ACTIONS(12026), 1, + aux_sym_cmd_identifier_token41, STATE(7891), 1, sym_comment, - [237947] = 3, - ACTIONS(247), 1, + [237964] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11984), 1, - anon_sym_RBRACK, + ACTIONS(12028), 1, + anon_sym_RBRACE, STATE(7892), 1, sym_comment, - [237957] = 3, - ACTIONS(3), 1, + [237974] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11986), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5729), 1, + aux_sym_record_entry_token1, STATE(7893), 1, sym_comment, - [237967] = 3, - ACTIONS(247), 1, + [237984] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11988), 1, + ACTIONS(12030), 1, anon_sym_RBRACE, STATE(7894), 1, sym_comment, - [237977] = 3, - ACTIONS(247), 1, + [237994] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11990), 1, + ACTIONS(12032), 1, sym_raw_string_end, STATE(7895), 1, sym_comment, - [237987] = 3, - ACTIONS(247), 1, + [238004] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7293), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12034), 1, + aux_sym_cmd_identifier_token41, STATE(7896), 1, sym_comment, - [237997] = 3, - ACTIONS(247), 1, + [238014] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11992), 1, - anon_sym_RBRACE, + ACTIONS(12036), 1, + anon_sym_LBRACE, STATE(7897), 1, sym_comment, - [238007] = 3, - ACTIONS(247), 1, + [238024] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, + ACTIONS(12038), 1, + anon_sym_RPAREN, STATE(7898), 1, sym_comment, - [238017] = 3, - ACTIONS(247), 1, + [238034] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11994), 1, - anon_sym_RPAREN, + ACTIONS(4825), 1, + aux_sym_record_entry_token1, STATE(7899), 1, sym_comment, - [238027] = 3, - ACTIONS(247), 1, + [238044] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11996), 1, - sym_long_flag_identifier, + ACTIONS(12040), 1, + anon_sym_RBRACK, STATE(7900), 1, sym_comment, - [238037] = 3, - ACTIONS(247), 1, + [238054] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11998), 1, + ACTIONS(12042), 1, sym_raw_string_content, STATE(7901), 1, sym_comment, - [238047] = 3, - ACTIONS(247), 1, + [238064] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5997), 1, + ACTIONS(6063), 1, anon_sym_LBRACK2, STATE(7902), 1, sym_comment, - [238057] = 3, - ACTIONS(3), 1, + [238074] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12000), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(9733), 1, + aux_sym_unquoted_token2, STATE(7903), 1, sym_comment, - [238067] = 3, - ACTIONS(3), 1, + [238084] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8499), 1, - aux_sym_unquoted_token4, + ACTIONS(12044), 1, + sym_identifier, STATE(7904), 1, sym_comment, - [238077] = 3, - ACTIONS(247), 1, + [238094] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12002), 1, + ACTIONS(12046), 1, sym_raw_string_end, STATE(7905), 1, sym_comment, - [238087] = 3, - ACTIONS(247), 1, + [238104] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token2, + ACTIONS(12048), 1, + aux_sym_cmd_identifier_token41, STATE(7906), 1, sym_comment, - [238097] = 3, - ACTIONS(247), 1, + [238114] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12004), 1, - anon_sym_RPAREN, + ACTIONS(12050), 1, + sym_raw_string_end, STATE(7907), 1, sym_comment, - [238107] = 3, - ACTIONS(247), 1, + [238124] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12006), 1, - anon_sym_GT2, + ACTIONS(2219), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7908), 1, sym_comment, - [238117] = 3, - ACTIONS(247), 1, + [238134] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12008), 1, - sym_identifier, + ACTIONS(5630), 1, + aux_sym_unquoted_token2, STATE(7909), 1, sym_comment, - [238127] = 3, - ACTIONS(247), 1, + [238144] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12010), 1, - sym_raw_string_end, + ACTIONS(12052), 1, + aux_sym_record_entry_token1, STATE(7910), 1, sym_comment, - [238137] = 3, - ACTIONS(247), 1, + [238154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12012), 1, - anon_sym_RPAREN, + ACTIONS(4782), 1, + aux_sym_unquoted_token4, STATE(7911), 1, sym_comment, - [238147] = 3, - ACTIONS(247), 1, + [238164] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12014), 1, - anon_sym_RBRACK, + ACTIONS(12054), 1, + sym_raw_string_end, STATE(7912), 1, sym_comment, - [238157] = 3, - ACTIONS(3), 1, + [238174] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym_unquoted_token4, + ACTIONS(12056), 1, + anon_sym_LBRACE, STATE(7913), 1, sym_comment, - [238167] = 3, - ACTIONS(247), 1, + [238184] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12016), 1, - anon_sym_RPAREN2, + ACTIONS(12058), 1, + sym_raw_string_end, STATE(7914), 1, sym_comment, - [238177] = 3, - ACTIONS(247), 1, + [238194] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12018), 1, + ACTIONS(12060), 1, sym_raw_string_content, STATE(7915), 1, sym_comment, - [238187] = 3, - ACTIONS(247), 1, + [238204] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7652), 1, + ACTIONS(7816), 1, anon_sym_LBRACK2, STATE(7916), 1, sym_comment, - [238197] = 3, - ACTIONS(247), 1, + [238214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12020), 1, - sym_raw_string_end, + ACTIONS(12062), 1, + sym__space, STATE(7917), 1, sym_comment, - [238207] = 3, - ACTIONS(247), 1, + [238224] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12022), 1, - anon_sym_RPAREN, + ACTIONS(12064), 1, + anon_sym_LBRACE, STATE(7918), 1, sym_comment, - [238217] = 3, - ACTIONS(247), 1, + [238234] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12024), 1, + ACTIONS(12066), 1, anon_sym_RBRACE, STATE(7919), 1, sym_comment, - [238227] = 3, - ACTIONS(247), 1, + [238244] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12026), 1, - anon_sym_RBRACK, + ACTIONS(2331), 1, + aux_sym_unquoted_token4, STATE(7920), 1, sym_comment, - [238237] = 3, - ACTIONS(247), 1, + [238254] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12028), 1, - anon_sym_GT2, + ACTIONS(12068), 1, + sym_raw_string_end, STATE(7921), 1, sym_comment, - [238247] = 3, - ACTIONS(247), 1, + [238264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12030), 1, - anon_sym_EQ, + ACTIONS(12070), 1, + anon_sym_LBRACE, STATE(7922), 1, sym_comment, - [238257] = 3, - ACTIONS(247), 1, + [238274] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12032), 1, - anon_sym_RBRACE, + ACTIONS(5788), 1, + aux_sym__unquoted_in_list_token2, STATE(7923), 1, sym_comment, - [238267] = 3, - ACTIONS(247), 1, + [238284] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12034), 1, - anon_sym_RBRACE, + ACTIONS(12072), 1, + sym_raw_string_end, STATE(7924), 1, sym_comment, - [238277] = 3, - ACTIONS(247), 1, + [238294] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym_record_entry_token1, + ACTIONS(12074), 1, + anon_sym_RBRACE, STATE(7925), 1, sym_comment, - [238287] = 3, - ACTIONS(247), 1, + [238304] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12036), 1, - anon_sym_RBRACE, + ACTIONS(12076), 1, + anon_sym_GT2, STATE(7926), 1, sym_comment, - [238297] = 3, - ACTIONS(247), 1, + [238314] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12038), 1, - sym_raw_string_end, + ACTIONS(12078), 1, + anon_sym_RBRACK, STATE(7927), 1, sym_comment, - [238307] = 3, - ACTIONS(247), 1, + [238324] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12040), 1, - anon_sym_RPAREN, + ACTIONS(12080), 1, + sym_raw_string_end, STATE(7928), 1, sym_comment, - [238317] = 3, - ACTIONS(247), 1, + [238334] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12042), 1, + ACTIONS(12082), 1, sym_raw_string_content, STATE(7929), 1, sym_comment, - [238327] = 3, - ACTIONS(247), 1, + [238344] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8055), 1, + ACTIONS(8037), 1, anon_sym_LBRACK2, STATE(7930), 1, sym_comment, - [238337] = 3, - ACTIONS(247), 1, + [238354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12044), 1, - sym_raw_string_end, + ACTIONS(8491), 1, + aux_sym_unquoted_token2, STATE(7931), 1, sym_comment, - [238347] = 3, - ACTIONS(247), 1, + [238364] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(8499), 1, - aux_sym_unquoted_token2, + ACTIONS(12084), 1, + anon_sym_RBRACK, STATE(7932), 1, sym_comment, - [238357] = 3, - ACTIONS(247), 1, + [238374] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12046), 1, - anon_sym_RBRACK, + ACTIONS(12086), 1, + anon_sym_RPAREN, STATE(7933), 1, sym_comment, - [238367] = 3, - ACTIONS(247), 1, + [238384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12048), 1, - anon_sym_RPAREN, + ACTIONS(12088), 1, + anon_sym_RBRACE, STATE(7934), 1, sym_comment, - [238377] = 3, - ACTIONS(247), 1, + [238394] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12050), 1, - anon_sym_RBRACE, + ACTIONS(12090), 1, + sym_identifier, STATE(7935), 1, sym_comment, - [238387] = 3, - ACTIONS(247), 1, + [238404] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12052), 1, - anon_sym_RBRACE, + ACTIONS(12092), 1, + sym_raw_string_content, STATE(7936), 1, sym_comment, - [238397] = 3, - ACTIONS(247), 1, + [238414] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12054), 1, - anon_sym_EQ, + ACTIONS(4763), 1, + aux_sym_unquoted_token4, STATE(7937), 1, sym_comment, - [238407] = 3, - ACTIONS(3), 1, + [238424] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12056), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12094), 1, + anon_sym_RBRACE, STATE(7938), 1, sym_comment, - [238417] = 3, - ACTIONS(247), 1, + [238434] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12058), 1, - sym_raw_string_end, + ACTIONS(12096), 1, + sym__table_head_separator, STATE(7939), 1, sym_comment, - [238427] = 3, - ACTIONS(247), 1, + [238444] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12060), 1, - sym_identifier, + ACTIONS(12098), 1, + anon_sym_RBRACE, STATE(7940), 1, sym_comment, - [238437] = 3, - ACTIONS(247), 1, + [238454] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12062), 1, - anon_sym_RBRACE, + ACTIONS(12100), 1, + anon_sym_in2, STATE(7941), 1, sym_comment, - [238447] = 3, - ACTIONS(247), 1, + [238464] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12064), 1, + ACTIONS(12102), 1, sym_raw_string_content, STATE(7942), 1, sym_comment, - [238457] = 3, - ACTIONS(247), 1, + [238474] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6515), 1, + ACTIONS(6550), 1, anon_sym_LBRACK2, STATE(7943), 1, sym_comment, - [238467] = 3, - ACTIONS(247), 1, + [238484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12066), 1, - anon_sym_LBRACE, + ACTIONS(6490), 1, + aux_sym_unquoted_token2, STATE(7944), 1, sym_comment, - [238477] = 3, - ACTIONS(247), 1, + [238494] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12068), 1, - anon_sym_RPAREN, + ACTIONS(8491), 1, + aux_sym_unquoted_token4, STATE(7945), 1, sym_comment, - [238487] = 3, - ACTIONS(247), 1, + [238504] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12070), 1, - anon_sym_RBRACK, + ACTIONS(1906), 1, + aux_sym__unquoted_in_record_token2, STATE(7946), 1, sym_comment, - [238497] = 3, - ACTIONS(247), 1, + [238514] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12072), 1, - anon_sym_RBRACK, + ACTIONS(12104), 1, + anon_sym_RPAREN, STATE(7947), 1, sym_comment, - [238507] = 3, - ACTIONS(247), 1, + [238524] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12074), 1, - sym_raw_string_end, + ACTIONS(12106), 1, + anon_sym_RPAREN, STATE(7948), 1, sym_comment, - [238517] = 3, - ACTIONS(247), 1, + [238534] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12076), 1, - anon_sym_GT2, + ACTIONS(12108), 1, + anon_sym_RBRACK, STATE(7949), 1, sym_comment, - [238527] = 3, - ACTIONS(247), 1, + [238544] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12078), 1, - anon_sym_RPAREN, + ACTIONS(12110), 1, + aux_sym_cmd_identifier_token41, STATE(7950), 1, sym_comment, - [238537] = 3, - ACTIONS(247), 1, + [238554] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12080), 1, - anon_sym_RBRACE, + ACTIONS(12112), 1, + anon_sym_LBRACE, STATE(7951), 1, sym_comment, - [238547] = 3, - ACTIONS(247), 1, + [238564] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12082), 1, - sym_raw_string_end, + ACTIONS(11583), 1, + anon_sym_make, STATE(7952), 1, sym_comment, - [238557] = 3, - ACTIONS(247), 1, + [238574] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12084), 1, - anon_sym_RPAREN, + ACTIONS(12114), 1, + anon_sym_RBRACK, STATE(7953), 1, sym_comment, - [238567] = 3, - ACTIONS(247), 1, + [238584] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12086), 1, - sym_raw_string_content, + ACTIONS(12116), 1, + anon_sym_RPAREN2, STATE(7954), 1, sym_comment, - [238577] = 3, - ACTIONS(247), 1, + [238594] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5068), 1, - anon_sym_LBRACK2, + ACTIONS(12118), 1, + sym_raw_string_content, STATE(7955), 1, sym_comment, - [238587] = 3, - ACTIONS(247), 1, + [238604] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12088), 1, - anon_sym_RPAREN, + ACTIONS(5048), 1, + anon_sym_LBRACK2, STATE(7956), 1, sym_comment, - [238597] = 3, - ACTIONS(247), 1, + [238614] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12090), 1, - anon_sym_GT2, + ACTIONS(12120), 1, + anon_sym_RPAREN, STATE(7957), 1, sym_comment, - [238607] = 3, - ACTIONS(247), 1, + [238624] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12092), 1, - anon_sym_LPAREN2, + ACTIONS(12122), 1, + anon_sym_RBRACE, STATE(7958), 1, sym_comment, - [238617] = 3, - ACTIONS(247), 1, + [238634] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12094), 1, - sym_raw_string_end, + ACTIONS(12124), 1, + anon_sym_RPAREN, STATE(7959), 1, sym_comment, - [238627] = 3, - ACTIONS(247), 1, + [238644] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12096), 1, - anon_sym_RBRACE, + ACTIONS(12126), 1, + anon_sym_EQ, STATE(7960), 1, sym_comment, - [238637] = 3, - ACTIONS(247), 1, + [238654] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12098), 1, - sym_raw_string_end, + ACTIONS(12128), 1, + anon_sym_RBRACE, STATE(7961), 1, sym_comment, - [238647] = 3, - ACTIONS(247), 1, + [238664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12100), 1, - anon_sym_RBRACE, + ACTIONS(10945), 1, + anon_sym_LBRACK2, STATE(7962), 1, sym_comment, - [238657] = 3, - ACTIONS(247), 1, + [238674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12102), 1, - anon_sym_LBRACE, + ACTIONS(12130), 1, + anon_sym_RBRACE, STATE(7963), 1, sym_comment, - [238667] = 3, - ACTIONS(247), 1, + [238684] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4553), 1, - aux_sym_unquoted_token2, + ACTIONS(12132), 1, + anon_sym_RBRACE, STATE(7964), 1, sym_comment, - [238677] = 3, - ACTIONS(3), 1, + [238694] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token4, + ACTIONS(2375), 1, + aux_sym_unquoted_token2, STATE(7965), 1, sym_comment, - [238687] = 3, - ACTIONS(247), 1, + [238704] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12104), 1, - anon_sym_in2, + ACTIONS(12134), 1, + aux_sym__unquoted_with_expr_token1, STATE(7966), 1, sym_comment, - [238697] = 3, - ACTIONS(247), 1, + [238714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(12136), 1, + anon_sym_RBRACE, STATE(7967), 1, sym_comment, - [238707] = 3, - ACTIONS(247), 1, + [238724] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6116), 1, - anon_sym_LBRACK2, + ACTIONS(12138), 1, + sym_raw_string_end, STATE(7968), 1, sym_comment, - [238717] = 3, - ACTIONS(247), 1, + [238734] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_RPAREN, + ACTIONS(6159), 1, + anon_sym_LBRACK2, STATE(7969), 1, sym_comment, - [238727] = 3, - ACTIONS(247), 1, + [238744] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5727), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12140), 1, + anon_sym_RBRACE, STATE(7970), 1, sym_comment, - [238737] = 3, - ACTIONS(247), 1, + [238754] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12108), 1, + ACTIONS(12142), 1, anon_sym_RBRACK, STATE(7971), 1, sym_comment, - [238747] = 3, - ACTIONS(247), 1, + [238764] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12110), 1, + ACTIONS(12144), 1, anon_sym_RBRACE, STATE(7972), 1, sym_comment, - [238757] = 3, - ACTIONS(247), 1, + [238774] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12112), 1, - sym_raw_string_end, + ACTIONS(8688), 1, + aux_sym_unquoted_token4, STATE(7973), 1, sym_comment, - [238767] = 3, - ACTIONS(3), 1, + [238784] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12114), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12146), 1, + anon_sym_in2, STATE(7974), 1, sym_comment, - [238777] = 3, - ACTIONS(247), 1, + [238794] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12116), 1, - anon_sym_RPAREN, + ACTIONS(12148), 1, + anon_sym_RBRACK, STATE(7975), 1, sym_comment, - [238787] = 3, - ACTIONS(247), 1, + [238804] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12118), 1, - anon_sym_RBRACE, + ACTIONS(7329), 1, + aux_sym__unquoted_in_list_token2, STATE(7976), 1, sym_comment, - [238797] = 3, - ACTIONS(3), 1, + [238814] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12120), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12150), 1, + anon_sym_RBRACK, STATE(7977), 1, sym_comment, - [238807] = 3, - ACTIONS(247), 1, + [238824] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12122), 1, - sym_raw_string_end, + ACTIONS(12152), 1, + anon_sym_RBRACK, STATE(7978), 1, sym_comment, - [238817] = 3, - ACTIONS(247), 1, + [238834] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12124), 1, - anon_sym_RBRACK, + ACTIONS(12154), 1, + sym_raw_string_end, STATE(7979), 1, sym_comment, - [238827] = 3, - ACTIONS(247), 1, + [238844] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12126), 1, - sym_raw_string_content, + ACTIONS(12156), 1, + aux_sym_cmd_identifier_token41, STATE(7980), 1, sym_comment, - [238837] = 3, - ACTIONS(247), 1, + [238854] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6641), 1, - anon_sym_LBRACK2, + ACTIONS(12158), 1, + sym_raw_string_content, STATE(7981), 1, sym_comment, - [238847] = 3, - ACTIONS(247), 1, + [238864] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12128), 1, - anon_sym_RPAREN, + ACTIONS(6656), 1, + anon_sym_LBRACK2, STATE(7982), 1, sym_comment, - [238857] = 3, - ACTIONS(247), 1, + [238874] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12130), 1, + ACTIONS(12160), 1, anon_sym_RBRACE, STATE(7983), 1, sym_comment, - [238867] = 3, - ACTIONS(247), 1, + [238884] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12132), 1, - anon_sym_RBRACK, + ACTIONS(2351), 1, + aux_sym_unquoted_token4, STATE(7984), 1, sym_comment, - [238877] = 3, - ACTIONS(247), 1, + [238894] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12134), 1, - sym_raw_string_content, + ACTIONS(12162), 1, + anon_sym_EQ, STATE(7985), 1, sym_comment, - [238887] = 3, - ACTIONS(3), 1, + [238904] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11704), 1, - aux_sym__record_key_token1, + ACTIONS(557), 1, + ts_builtin_sym_end, STATE(7986), 1, sym_comment, - [238897] = 3, - ACTIONS(247), 1, + [238914] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(569), 1, - ts_builtin_sym_end, + ACTIONS(12164), 1, + anon_sym_RPAREN, STATE(7987), 1, sym_comment, - [238907] = 3, - ACTIONS(247), 1, + [238924] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12136), 1, - anon_sym_RPAREN, + ACTIONS(12166), 1, + aux_sym_cmd_identifier_token41, STATE(7988), 1, sym_comment, - [238917] = 3, - ACTIONS(247), 1, + [238934] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12138), 1, - anon_sym_RBRACE, + ACTIONS(12168), 1, + sym_raw_string_end, STATE(7989), 1, sym_comment, - [238927] = 3, - ACTIONS(247), 1, + [238944] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12140), 1, - aux_sym_env_var_token2, + ACTIONS(10833), 1, + anon_sym_LBRACE, STATE(7990), 1, sym_comment, - [238937] = 3, - ACTIONS(247), 1, + [238954] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11593), 1, - anon_sym_make, + ACTIONS(12170), 1, + sym_raw_string_end, STATE(7991), 1, sym_comment, - [238947] = 3, - ACTIONS(247), 1, + [238964] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12142), 1, - anon_sym_RPAREN, + ACTIONS(12172), 1, + anon_sym_RBRACK, STATE(7992), 1, sym_comment, - [238957] = 3, - ACTIONS(247), 1, + [238974] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12144), 1, - sym_raw_string_content, + ACTIONS(12174), 1, + anon_sym_RPAREN, STATE(7993), 1, sym_comment, - [238967] = 3, - ACTIONS(247), 1, + [238984] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6094), 1, - anon_sym_LBRACK2, + ACTIONS(12176), 1, + sym_raw_string_content, STATE(7994), 1, sym_comment, - [238977] = 3, - ACTIONS(3), 1, + [238994] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9524), 1, - aux_sym_unquoted_token4, + ACTIONS(6072), 1, + anon_sym_LBRACK2, STATE(7995), 1, sym_comment, - [238987] = 3, - ACTIONS(247), 1, + [239004] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12146), 1, - anon_sym_EQ, + ACTIONS(12178), 1, + anon_sym_RBRACE, STATE(7996), 1, sym_comment, - [238997] = 3, - ACTIONS(247), 1, + [239014] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12148), 1, - anon_sym_RBRACE, + ACTIONS(12180), 1, + aux_sym_comment_token1, STATE(7997), 1, sym_comment, - [239007] = 3, - ACTIONS(247), 1, + [239024] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12150), 1, - anon_sym_RBRACE, + ACTIONS(12182), 1, + anon_sym_LBRACE, STATE(7998), 1, sym_comment, - [239017] = 3, - ACTIONS(247), 1, + [239034] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12152), 1, - anon_sym_in2, + ACTIONS(2215), 1, + aux_sym__unquoted_with_expr_token1, STATE(7999), 1, sym_comment, - [239027] = 3, - ACTIONS(3), 1, + [239044] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12154), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(5485), 1, + anon_sym_LBRACK2, STATE(8000), 1, sym_comment, - [239037] = 3, - ACTIONS(247), 1, + [239054] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12156), 1, - anon_sym_RBRACK, + ACTIONS(12184), 1, + anon_sym_RPAREN, STATE(8001), 1, sym_comment, - [239047] = 3, - ACTIONS(3), 1, + [239064] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12158), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12186), 1, + anon_sym_in2, STATE(8002), 1, sym_comment, - [239057] = 3, - ACTIONS(247), 1, + [239074] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10095), 1, - anon_sym_LBRACK2, + ACTIONS(2215), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(8003), 1, sym_comment, - [239067] = 3, - ACTIONS(247), 1, + [239084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_RPAREN2, + ACTIONS(12188), 1, + aux_sym_cmd_identifier_token41, STATE(8004), 1, sym_comment, - [239077] = 3, - ACTIONS(3), 1, + [239094] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12160), 1, - aux_sym_comment_token1, + ACTIONS(12190), 1, + sym_identifier, STATE(8005), 1, sym_comment, - [239087] = 3, - ACTIONS(247), 1, + [239104] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12162), 1, - sym_raw_string_content, + ACTIONS(12192), 1, + anon_sym_RBRACE, STATE(8006), 1, sym_comment, - [239097] = 3, - ACTIONS(247), 1, + [239114] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(9488), 1, - anon_sym_LBRACK2, + ACTIONS(12194), 1, + sym_raw_string_content, STATE(8007), 1, sym_comment, - [239107] = 3, - ACTIONS(247), 1, + [239124] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12164), 1, - sym_identifier, + ACTIONS(9446), 1, + anon_sym_LBRACK2, STATE(8008), 1, sym_comment, - [239117] = 3, - ACTIONS(247), 1, + [239134] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12166), 1, - anon_sym_RBRACE, + ACTIONS(12196), 1, + anon_sym_RPAREN, STATE(8009), 1, sym_comment, - [239127] = 3, - ACTIONS(247), 1, + [239144] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12168), 1, - anon_sym_RBRACE, + ACTIONS(12198), 1, + anon_sym_RPAREN, STATE(8010), 1, sym_comment, - [239137] = 3, - ACTIONS(247), 1, + [239154] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12170), 1, - anon_sym_RPAREN, + ACTIONS(12200), 1, + anon_sym_RBRACK, STATE(8011), 1, sym_comment, - [239147] = 3, - ACTIONS(247), 1, + [239164] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12172), 1, - sym_raw_string_end, + ACTIONS(12202), 1, + anon_sym_RPAREN, STATE(8012), 1, sym_comment, - [239157] = 3, - ACTIONS(247), 1, + [239174] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12174), 1, - anon_sym_RPAREN, + ACTIONS(12204), 1, + anon_sym_RBRACE, STATE(8013), 1, sym_comment, - [239167] = 3, - ACTIONS(247), 1, + [239184] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12176), 1, - anon_sym_RPAREN, + ACTIONS(12206), 1, + anon_sym_GT2, STATE(8014), 1, sym_comment, - [239177] = 3, - ACTIONS(247), 1, + [239194] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12178), 1, - anon_sym_RBRACE, + ACTIONS(12208), 1, + sym_raw_string_end, STATE(8015), 1, sym_comment, - [239187] = 3, - ACTIONS(3), 1, + [239204] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12180), 1, - sym__space, + ACTIONS(12210), 1, + anon_sym_RBRACE, STATE(8016), 1, sym_comment, - [239197] = 3, - ACTIONS(247), 1, + [239214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12182), 1, - anon_sym_RPAREN, + ACTIONS(11732), 1, + aux_sym__record_key_token1, STATE(8017), 1, sym_comment, - [239207] = 3, - ACTIONS(247), 1, + [239224] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_RBRACE, + ACTIONS(12212), 1, + anon_sym_EQ_GT, STATE(8018), 1, sym_comment, - [239217] = 3, - ACTIONS(247), 1, + [239234] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12186), 1, - sym_raw_string_content, + ACTIONS(12214), 1, + anon_sym_EQ, STATE(8019), 1, sym_comment, - [239227] = 3, - ACTIONS(247), 1, + [239244] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2434), 1, - anon_sym_LBRACK2, + ACTIONS(12216), 1, + sym_raw_string_content, STATE(8020), 1, sym_comment, - [239237] = 3, - ACTIONS(247), 1, + [239254] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12188), 1, - anon_sym_RBRACE, + ACTIONS(2613), 1, + anon_sym_LBRACK2, STATE(8021), 1, sym_comment, - [239247] = 3, - ACTIONS(247), 1, + [239264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12190), 1, - anon_sym_RPAREN, + ACTIONS(12218), 1, + anon_sym_RBRACE, STATE(8022), 1, sym_comment, - [239257] = 3, - ACTIONS(247), 1, + [239274] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12192), 1, + ACTIONS(12220), 1, anon_sym_RPAREN, STATE(8023), 1, sym_comment, - [239267] = 3, + [239284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2183), 1, + ACTIONS(2219), 1, aux_sym__unquoted_with_expr_token1, STATE(8024), 1, sym_comment, - [239277] = 3, - ACTIONS(3), 1, + [239294] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12194), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12222), 1, + anon_sym_RBRACE, STATE(8025), 1, sym_comment, - [239287] = 3, - ACTIONS(247), 1, + [239304] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10871), 1, - anon_sym_LBRACE, + ACTIONS(12224), 1, + anon_sym_RPAREN, STATE(8026), 1, sym_comment, - [239297] = 3, - ACTIONS(3), 1, + [239314] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12196), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12226), 1, + anon_sym_make, STATE(8027), 1, sym_comment, - [239307] = 3, - ACTIONS(247), 1, + [239324] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12198), 1, - anon_sym_LBRACE, + ACTIONS(12228), 1, + anon_sym_LPAREN2, STATE(8028), 1, sym_comment, - [239317] = 3, - ACTIONS(247), 1, + [239334] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12200), 1, - sym_raw_string_content, + ACTIONS(12230), 1, + anon_sym_RBRACE, STATE(8029), 1, sym_comment, - [239327] = 3, - ACTIONS(247), 1, + [239344] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2324), 1, - anon_sym_LBRACK2, + ACTIONS(12232), 1, + sym_raw_string_content, STATE(8030), 1, sym_comment, - [239337] = 3, - ACTIONS(247), 1, + [239354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(505), 1, - anon_sym_RPAREN2, + ACTIONS(2425), 1, + anon_sym_LBRACK2, STATE(8031), 1, sym_comment, - [239347] = 3, - ACTIONS(247), 1, + [239364] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12202), 1, - sym_raw_string_end, + ACTIONS(12234), 1, + aux_sym_record_entry_token1, STATE(8032), 1, sym_comment, - [239357] = 3, - ACTIONS(247), 1, + [239374] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12204), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, STATE(8033), 1, sym_comment, - [239367] = 3, - ACTIONS(247), 1, + [239384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12206), 1, - sym_raw_string_end, + ACTIONS(12238), 1, + anon_sym_RBRACE, STATE(8034), 1, sym_comment, - [239377] = 3, - ACTIONS(247), 1, + [239394] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12208), 1, + ACTIONS(12240), 1, anon_sym_RPAREN, STATE(8035), 1, sym_comment, - [239387] = 3, - ACTIONS(247), 1, + [239404] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12210), 1, - anon_sym_RPAREN, + ACTIONS(12242), 1, + aux_sym_cmd_identifier_token41, STATE(8036), 1, sym_comment, - [239397] = 3, - ACTIONS(247), 1, + [239414] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12212), 1, - sym_raw_string_end, + ACTIONS(12244), 1, + anon_sym_LBRACE, STATE(8037), 1, sym_comment, - [239407] = 3, - ACTIONS(247), 1, + [239424] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12214), 1, - anon_sym_RBRACK, + ACTIONS(12246), 1, + anon_sym_EQ, STATE(8038), 1, sym_comment, - [239417] = 3, - ACTIONS(247), 1, + [239434] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12216), 1, - sym_raw_string_content, + ACTIONS(12248), 1, + anon_sym_RBRACE, STATE(8039), 1, sym_comment, - [239427] = 3, - ACTIONS(247), 1, + [239444] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12218), 1, - anon_sym_RPAREN, + ACTIONS(12250), 1, + sym_raw_string_content, STATE(8040), 1, sym_comment, - [239437] = 3, - ACTIONS(247), 1, + [239454] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12220), 1, - anon_sym_RBRACE, + ACTIONS(12252), 1, + sym_raw_string_content, STATE(8041), 1, sym_comment, - [239447] = 3, - ACTIONS(247), 1, + [239464] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12222), 1, - anon_sym_LBRACE, + ACTIONS(8802), 1, + aux_sym__unquoted_in_list_token2, STATE(8042), 1, sym_comment, - [239457] = 3, - ACTIONS(247), 1, + [239474] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12224), 1, - sym__table_head_separator, + ACTIONS(12254), 1, + sym_raw_string_end, STATE(8043), 1, sym_comment, - [239467] = 3, - ACTIONS(247), 1, + [239484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12226), 1, - anon_sym_RBRACE, + ACTIONS(12256), 1, + sym_raw_string_end, STATE(8044), 1, sym_comment, - [239477] = 3, - ACTIONS(247), 1, + [239494] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12228), 1, - anon_sym_RBRACE, + ACTIONS(12258), 1, + sym_raw_string_end, STATE(8045), 1, sym_comment, - [239487] = 3, - ACTIONS(247), 1, + [239504] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12230), 1, - sym_raw_string_end, + ACTIONS(12244), 1, + anon_sym_LBRACE, STATE(8046), 1, sym_comment, - [239497] = 3, - ACTIONS(247), 1, + [239514] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12232), 1, - anon_sym_RPAREN, + ACTIONS(12260), 1, + anon_sym_RBRACK, STATE(8047), 1, sym_comment, - [239507] = 3, - ACTIONS(247), 1, + [239524] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12234), 1, - sym_raw_string_content, + ACTIONS(12262), 1, + anon_sym_RPAREN, STATE(8048), 1, sym_comment, - [239517] = 3, - ACTIONS(247), 1, + [239534] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11559), 1, - anon_sym_LBRACE, + ACTIONS(12264), 1, + sym_raw_string_content, STATE(8049), 1, sym_comment, - [239527] = 3, - ACTIONS(3), 1, + [239544] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12236), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12266), 1, + anon_sym_RBRACE, STATE(8050), 1, sym_comment, - [239537] = 3, - ACTIONS(247), 1, + [239554] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12238), 1, - anon_sym_EQ, + ACTIONS(12268), 1, + anon_sym_RBRACE, STATE(8051), 1, sym_comment, - [239547] = 3, - ACTIONS(247), 1, + [239564] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12240), 1, - anon_sym_EQ, + ACTIONS(12270), 1, + anon_sym_RPAREN, STATE(8052), 1, sym_comment, - [239557] = 3, - ACTIONS(247), 1, + [239574] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12242), 1, + ACTIONS(12272), 1, anon_sym_RBRACE, STATE(8053), 1, sym_comment, - [239567] = 3, - ACTIONS(247), 1, + [239584] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym_unquoted_token2, + ACTIONS(12274), 1, + anon_sym_RPAREN, STATE(8054), 1, sym_comment, - [239577] = 3, - ACTIONS(247), 1, + [239594] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12244), 1, - sym_raw_string_end, + ACTIONS(12276), 1, + anon_sym_EQ_GT, STATE(8055), 1, sym_comment, - [239587] = 3, + [239604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym_unquoted_token4, + ACTIONS(12278), 1, + aux_sym_cmd_identifier_token41, STATE(8056), 1, sym_comment, - [239597] = 3, - ACTIONS(247), 1, + [239614] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12246), 1, - sym_raw_string_content, + ACTIONS(4291), 1, + aux_sym_unquoted_token2, STATE(8057), 1, sym_comment, - [239607] = 3, - ACTIONS(247), 1, + [239624] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12248), 1, - aux_sym_record_entry_token1, + ACTIONS(12280), 1, + sym_raw_string_content, STATE(8058), 1, sym_comment, - [239617] = 3, - ACTIONS(247), 1, + [239634] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12250), 1, - anon_sym_RBRACE, + ACTIONS(12282), 1, + anon_sym_RPAREN, STATE(8059), 1, sym_comment, - [239627] = 3, - ACTIONS(247), 1, + [239644] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12252), 1, - sym_raw_string_end, + ACTIONS(6490), 1, + aux_sym_unquoted_token4, STATE(8060), 1, sym_comment, - [239637] = 3, - ACTIONS(247), 1, + [239654] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12254), 1, - aux_sym_record_entry_token1, + ACTIONS(12284), 1, + anon_sym_RPAREN, STATE(8061), 1, sym_comment, - [239647] = 3, - ACTIONS(247), 1, + [239664] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12256), 1, - anon_sym_RBRACE, + ACTIONS(12286), 1, + anon_sym_RBRACK, STATE(8062), 1, sym_comment, - [239657] = 3, - ACTIONS(3), 1, + [239674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2183), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12288), 1, + anon_sym_RPAREN, STATE(8063), 1, sym_comment, - [239667] = 3, - ACTIONS(247), 1, + [239684] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12258), 1, - anon_sym_RPAREN, + ACTIONS(4635), 1, + aux_sym_unquoted_token2, STATE(8064), 1, sym_comment, - [239677] = 3, - ACTIONS(247), 1, + [239694] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12260), 1, - anon_sym_LBRACE, + ACTIONS(12290), 1, + aux_sym_shebang_token1, STATE(8065), 1, sym_comment, - [239687] = 3, - ACTIONS(247), 1, + [239704] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12262), 1, - sym_raw_string_content, + ACTIONS(12292), 1, + anon_sym_RBRACE, STATE(8066), 1, sym_comment, - [239697] = 3, - ACTIONS(247), 1, + [239714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12264), 1, + ACTIONS(12294), 1, sym_raw_string_content, STATE(8067), 1, sym_comment, - [239707] = 3, - ACTIONS(247), 1, + [239724] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12266), 1, + ACTIONS(12296), 1, sym_raw_string_content, STATE(8068), 1, sym_comment, - [239717] = 3, - ACTIONS(247), 1, + [239734] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12268), 1, + ACTIONS(12298), 1, sym_raw_string_content, STATE(8069), 1, sym_comment, - [239727] = 3, - ACTIONS(247), 1, + [239744] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12270), 1, + ACTIONS(12300), 1, sym_raw_string_content, STATE(8070), 1, sym_comment, - [239737] = 3, - ACTIONS(247), 1, + [239754] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12272), 1, + ACTIONS(12302), 1, sym_raw_string_content, STATE(8071), 1, sym_comment, - [239747] = 3, - ACTIONS(247), 1, + [239764] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12274), 1, + ACTIONS(12304), 1, sym_raw_string_content, STATE(8072), 1, sym_comment, - [239757] = 3, - ACTIONS(247), 1, + [239774] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12276), 1, + ACTIONS(12306), 1, sym_raw_string_content, STATE(8073), 1, sym_comment, - [239767] = 3, - ACTIONS(247), 1, + [239784] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12278), 1, + ACTIONS(12308), 1, sym_raw_string_content, STATE(8074), 1, sym_comment, - [239777] = 3, - ACTIONS(247), 1, + [239794] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12280), 1, + ACTIONS(12310), 1, sym_raw_string_content, STATE(8075), 1, sym_comment, - [239787] = 3, - ACTIONS(247), 1, + [239804] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12282), 1, + ACTIONS(12312), 1, sym_raw_string_content, STATE(8076), 1, sym_comment, - [239797] = 3, - ACTIONS(247), 1, + [239814] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12284), 1, + ACTIONS(12314), 1, sym_raw_string_content, STATE(8077), 1, sym_comment, - [239807] = 3, - ACTIONS(247), 1, + [239824] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12286), 1, + ACTIONS(12316), 1, sym_raw_string_content, STATE(8078), 1, sym_comment, - [239817] = 3, - ACTIONS(247), 1, + [239834] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12288), 1, + ACTIONS(12318), 1, sym_raw_string_content, STATE(8079), 1, sym_comment, - [239827] = 3, - ACTIONS(247), 1, + [239844] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12290), 1, + ACTIONS(12320), 1, sym_raw_string_content, STATE(8080), 1, sym_comment, - [239837] = 3, - ACTIONS(247), 1, + [239854] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12292), 1, + ACTIONS(12322), 1, sym_raw_string_content, STATE(8081), 1, sym_comment, - [239847] = 3, - ACTIONS(247), 1, + [239864] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12294), 1, + ACTIONS(12324), 1, sym_raw_string_content, STATE(8082), 1, sym_comment, - [239857] = 3, - ACTIONS(247), 1, + [239874] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12296), 1, + ACTIONS(12326), 1, sym_raw_string_content, STATE(8083), 1, sym_comment, - [239867] = 3, - ACTIONS(247), 1, + [239884] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12298), 1, + ACTIONS(12328), 1, sym_raw_string_content, STATE(8084), 1, sym_comment, - [239877] = 3, - ACTIONS(247), 1, + [239894] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12300), 1, + ACTIONS(12330), 1, sym_raw_string_content, STATE(8085), 1, sym_comment, - [239887] = 3, - ACTIONS(247), 1, + [239904] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12302), 1, + ACTIONS(12332), 1, sym_raw_string_content, STATE(8086), 1, sym_comment, - [239897] = 3, - ACTIONS(247), 1, + [239914] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12304), 1, + ACTIONS(12334), 1, sym_raw_string_content, STATE(8087), 1, sym_comment, - [239907] = 3, - ACTIONS(247), 1, + [239924] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12306), 1, + ACTIONS(12336), 1, sym_raw_string_content, STATE(8088), 1, sym_comment, - [239917] = 3, - ACTIONS(247), 1, + [239934] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12308), 1, + ACTIONS(12338), 1, sym_raw_string_content, STATE(8089), 1, sym_comment, - [239927] = 3, - ACTIONS(247), 1, + [239944] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12310), 1, + ACTIONS(12340), 1, sym_raw_string_content, STATE(8090), 1, sym_comment, - [239937] = 3, - ACTIONS(247), 1, + [239954] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12312), 1, + ACTIONS(12342), 1, sym_raw_string_content, STATE(8091), 1, sym_comment, - [239947] = 3, - ACTIONS(247), 1, + [239964] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12314), 1, + ACTIONS(12344), 1, sym_raw_string_content, STATE(8092), 1, sym_comment, - [239957] = 3, - ACTIONS(247), 1, + [239974] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12316), 1, + ACTIONS(12346), 1, sym_raw_string_content, STATE(8093), 1, sym_comment, - [239967] = 3, - ACTIONS(247), 1, + [239984] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12318), 1, + ACTIONS(12348), 1, sym_raw_string_content, STATE(8094), 1, sym_comment, - [239977] = 3, - ACTIONS(247), 1, + [239994] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12320), 1, + ACTIONS(12350), 1, sym_raw_string_content, STATE(8095), 1, sym_comment, - [239987] = 3, - ACTIONS(247), 1, + [240004] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12322), 1, + ACTIONS(12352), 1, sym_raw_string_content, STATE(8096), 1, sym_comment, - [239997] = 3, - ACTIONS(247), 1, + [240014] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12324), 1, - anon_sym_RBRACE, + ACTIONS(12354), 1, + sym_raw_string_content, STATE(8097), 1, sym_comment, - [240007] = 3, - ACTIONS(247), 1, + [240024] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12260), 1, - anon_sym_LBRACE, + ACTIONS(5630), 1, + aux_sym_unquoted_token4, STATE(8098), 1, sym_comment, - [240017] = 3, - ACTIONS(247), 1, + [240034] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11702), 1, - anon_sym_LPAREN2, + ACTIONS(12356), 1, + sym_raw_string_end, STATE(8099), 1, sym_comment, - [240027] = 3, - ACTIONS(247), 1, + [240044] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12326), 1, - anon_sym_LBRACE, + ACTIONS(11730), 1, + anon_sym_LPAREN2, STATE(8100), 1, sym_comment, - [240037] = 3, - ACTIONS(3), 1, + [240054] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12328), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12358), 1, + sym_identifier, STATE(8101), 1, sym_comment, - [240047] = 3, - ACTIONS(247), 1, + [240064] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12330), 1, - anon_sym_LBRACE, + ACTIONS(12360), 1, + anon_sym_RBRACE, STATE(8102), 1, sym_comment, - [240057] = 3, - ACTIONS(247), 1, + [240074] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12332), 1, - anon_sym_GT2, + ACTIONS(12362), 1, + anon_sym_RBRACK, STATE(8103), 1, sym_comment, - [240067] = 3, - ACTIONS(247), 1, + [240084] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(11958), 1, - anon_sym_LBRACE, + ACTIONS(12364), 1, + anon_sym_RPAREN, STATE(8104), 1, sym_comment, - [240077] = 3, - ACTIONS(3), 1, + [240094] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12334), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(12366), 1, + anon_sym_RBRACE, STATE(8105), 1, sym_comment, - [240087] = 3, - ACTIONS(247), 1, + [240104] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12336), 1, - anon_sym_RBRACK, + ACTIONS(12368), 1, + anon_sym_RPAREN, STATE(8106), 1, sym_comment, - [240097] = 3, - ACTIONS(247), 1, + [240114] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12338), 1, - anon_sym_RBRACK, + ACTIONS(12370), 1, + anon_sym_RBRACE, STATE(8107), 1, sym_comment, - [240107] = 3, - ACTIONS(247), 1, + [240124] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12340), 1, - anon_sym_RPAREN, + ACTIONS(12372), 1, + anon_sym_RBRACE, STATE(8108), 1, sym_comment, - [240117] = 3, - ACTIONS(247), 1, + [240134] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12342), 1, - anon_sym_RBRACE, + ACTIONS(12374), 1, + anon_sym_RPAREN, STATE(8109), 1, sym_comment, - [240127] = 3, - ACTIONS(247), 1, + [240144] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12344), 1, - sym_raw_string_end, + ACTIONS(1960), 1, + aux_sym_unquoted_token2, STATE(8110), 1, sym_comment, - [240137] = 3, - ACTIONS(3), 1, + [240154] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2183), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12376), 1, + anon_sym_RBRACE, STATE(8111), 1, sym_comment, - [240147] = 3, - ACTIONS(247), 1, + [240164] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12346), 1, - anon_sym_RBRACE, + ACTIONS(12378), 1, + anon_sym_EQ, STATE(8112), 1, sym_comment, - [240157] = 3, - ACTIONS(247), 1, + [240174] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12348), 1, - anon_sym_RPAREN, + ACTIONS(12380), 1, + anon_sym_LBRACE, STATE(8113), 1, sym_comment, - [240167] = 3, - ACTIONS(247), 1, + [240184] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12350), 1, - anon_sym_in2, + ACTIONS(12382), 1, + anon_sym_GT2, STATE(8114), 1, sym_comment, - [240177] = 3, - ACTIONS(247), 1, + [240194] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12352), 1, + ACTIONS(12384), 1, anon_sym_in2, STATE(8115), 1, sym_comment, - [240187] = 3, - ACTIONS(247), 1, + [240204] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12354), 1, - anon_sym_RBRACE, + ACTIONS(12386), 1, + anon_sym_in2, STATE(8116), 1, sym_comment, - [240197] = 3, - ACTIONS(247), 1, + [240214] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12356), 1, - anon_sym_RBRACK, + ACTIONS(12388), 1, + anon_sym_RPAREN2, STATE(8117), 1, sym_comment, - [240207] = 3, - ACTIONS(247), 1, + [240224] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12358), 1, - anon_sym_RBRACE, + ACTIONS(9819), 1, + aux_sym_unquoted_token2, STATE(8118), 1, sym_comment, - [240217] = 3, - ACTIONS(247), 1, + [240234] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12360), 1, - anon_sym_in2, + ACTIONS(12390), 1, + aux_sym_cmd_identifier_token41, STATE(8119), 1, sym_comment, - [240227] = 3, - ACTIONS(247), 1, + [240244] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12362), 1, + ACTIONS(12392), 1, anon_sym_in2, STATE(8120), 1, sym_comment, - [240237] = 3, - ACTIONS(247), 1, + [240254] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12364), 1, - anon_sym_LBRACE, + ACTIONS(12394), 1, + anon_sym_in2, STATE(8121), 1, sym_comment, - [240247] = 3, - ACTIONS(247), 1, + [240264] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12366), 1, - anon_sym_in2, + ACTIONS(12396), 1, + anon_sym_RBRACE, STATE(8122), 1, sym_comment, - [240257] = 3, - ACTIONS(247), 1, + [240274] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12368), 1, - anon_sym_RBRACE, + ACTIONS(9819), 1, + aux_sym_unquoted_token4, STATE(8123), 1, sym_comment, - [240267] = 3, - ACTIONS(247), 1, + [240284] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_RPAREN, + ACTIONS(12398), 1, + anon_sym_EQ, STATE(8124), 1, sym_comment, - [240277] = 3, - ACTIONS(3), 1, + [240294] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token4, + ACTIONS(12400), 1, + anon_sym_RBRACE, STATE(8125), 1, sym_comment, - [240287] = 3, - ACTIONS(247), 1, + [240304] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12372), 1, + ACTIONS(12402), 1, anon_sym_RBRACE, STATE(8126), 1, sym_comment, - [240297] = 3, - ACTIONS(3), 1, + [240314] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12374), 1, - aux_sym_shebang_token1, + ACTIONS(12404), 1, + anon_sym_RPAREN, STATE(8127), 1, sym_comment, - [240307] = 3, - ACTIONS(247), 1, + [240324] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12376), 1, - anon_sym_RBRACE, + ACTIONS(12406), 1, + sym_identifier, STATE(8128), 1, sym_comment, - [240317] = 3, - ACTIONS(247), 1, + [240334] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12378), 1, - anon_sym_RPAREN, + ACTIONS(12408), 1, + anon_sym_RBRACE, STATE(8129), 1, sym_comment, - [240327] = 3, - ACTIONS(247), 1, + [240344] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12380), 1, - sym_raw_string_end, + ACTIONS(12410), 1, + aux_sym_cmd_identifier_token41, STATE(8130), 1, sym_comment, - [240337] = 3, - ACTIONS(247), 1, + [240354] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12382), 1, - anon_sym_RBRACE, + ACTIONS(12412), 1, + anon_sym_in2, STATE(8131), 1, sym_comment, - [240347] = 3, - ACTIONS(247), 1, + [240364] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12384), 1, - anon_sym_RPAREN, + ACTIONS(12414), 1, + anon_sym_EQ, STATE(8132), 1, sym_comment, - [240357] = 3, - ACTIONS(247), 1, + [240374] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12386), 1, - anon_sym_DASH_GT, + ACTIONS(12416), 1, + sym_raw_string_end, STATE(8133), 1, sym_comment, - [240367] = 3, - ACTIONS(247), 1, + [240384] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(6554), 1, - anon_sym_LPAREN2, + ACTIONS(12418), 1, + anon_sym_DASH_GT, STATE(8134), 1, sym_comment, - [240377] = 3, - ACTIONS(247), 1, + [240394] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12388), 1, - anon_sym_RBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, STATE(8135), 1, sym_comment, - [240387] = 3, - ACTIONS(247), 1, + [240404] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12390), 1, - anon_sym_RPAREN, + ACTIONS(12420), 1, + anon_sym_RBRACE, STATE(8136), 1, sym_comment, - [240397] = 3, - ACTIONS(247), 1, + [240414] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12392), 1, - anon_sym_EQ, + ACTIONS(5548), 1, + aux_sym__unquoted_in_list_token2, STATE(8137), 1, sym_comment, - [240407] = 3, - ACTIONS(3), 1, + [240424] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12394), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12422), 1, + anon_sym_RPAREN, STATE(8138), 1, sym_comment, - [240417] = 3, - ACTIONS(247), 1, + [240434] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(5481), 1, - anon_sym_LBRACK2, + ACTIONS(12424), 1, + anon_sym_RBRACK, STATE(8139), 1, sym_comment, - [240427] = 3, - ACTIONS(247), 1, + [240444] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12396), 1, - anon_sym_EQ, + ACTIONS(12426), 1, + anon_sym_RBRACE, STATE(8140), 1, sym_comment, - [240437] = 3, - ACTIONS(247), 1, + [240454] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(487), 1, - anon_sym_RPAREN2, + ACTIONS(12428), 1, + anon_sym_RBRACE, STATE(8141), 1, sym_comment, - [240447] = 3, - ACTIONS(247), 1, + [240464] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12398), 1, - anon_sym_RBRACK, + ACTIONS(12430), 1, + anon_sym_RPAREN, STATE(8142), 1, sym_comment, - [240457] = 3, - ACTIONS(247), 1, + [240474] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(501), 1, - anon_sym_RPAREN2, + ACTIONS(12432), 1, + anon_sym_RPAREN, STATE(8143), 1, sym_comment, - [240467] = 3, - ACTIONS(247), 1, + [240484] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12400), 1, - anon_sym_GT2, + ACTIONS(12434), 1, + anon_sym_RBRACE, STATE(8144), 1, sym_comment, - [240477] = 3, - ACTIONS(247), 1, + [240494] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12402), 1, + ACTIONS(12436), 1, anon_sym_RBRACE, STATE(8145), 1, sym_comment, - [240487] = 3, - ACTIONS(247), 1, + [240504] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12404), 1, - anon_sym_RBRACE, + ACTIONS(12438), 1, + anon_sym_EQ, STATE(8146), 1, sym_comment, - [240497] = 3, - ACTIONS(247), 1, + [240514] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12406), 1, - anon_sym_RBRACK, + ACTIONS(12440), 1, + sym__space, STATE(8147), 1, sym_comment, - [240507] = 3, - ACTIONS(247), 1, + [240524] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_RPAREN, + ACTIONS(12442), 1, + anon_sym_RBRACE, STATE(8148), 1, sym_comment, - [240517] = 3, - ACTIONS(247), 1, + [240534] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1559), 1, - aux_sym_unquoted_token2, + ACTIONS(12444), 1, + aux_sym_cmd_identifier_token41, STATE(8149), 1, sym_comment, - [240527] = 3, - ACTIONS(3), 1, + [240544] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2118), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12446), 1, + anon_sym_RPAREN, STATE(8150), 1, sym_comment, - [240537] = 3, - ACTIONS(247), 1, + [240554] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RPAREN, + ACTIONS(549), 1, + anon_sym_RPAREN2, STATE(8151), 1, sym_comment, - [240547] = 3, - ACTIONS(3), 1, + [240564] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12412), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12448), 1, + anon_sym_RBRACK, STATE(8152), 1, sym_comment, - [240557] = 3, - ACTIONS(247), 1, + [240574] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(10185), 1, - anon_sym_LBRACE, + ACTIONS(12450), 1, + anon_sym_RPAREN, STATE(8153), 1, sym_comment, - [240567] = 3, - ACTIONS(247), 1, + [240584] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12414), 1, - anon_sym_EQ, + ACTIONS(12452), 1, + anon_sym_RBRACE, STATE(8154), 1, sym_comment, - [240577] = 3, - ACTIONS(247), 1, + [240594] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12416), 1, - sym_raw_string_end, + ACTIONS(12454), 1, + aux_sym_cmd_identifier_token41, STATE(8155), 1, sym_comment, - [240587] = 3, - ACTIONS(247), 1, + [240604] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(517), 1, - anon_sym_RPAREN2, + ACTIONS(12456), 1, + anon_sym_RPAREN, STATE(8156), 1, sym_comment, - [240597] = 3, - ACTIONS(247), 1, + [240614] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12418), 1, - anon_sym_RPAREN, + ACTIONS(12458), 1, + aux_sym_cmd_identifier_token41, STATE(8157), 1, sym_comment, - [240607] = 3, - ACTIONS(247), 1, + [240624] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12420), 1, - anon_sym_RBRACE, + ACTIONS(12460), 1, + sym_long_flag_identifier, STATE(8158), 1, sym_comment, - [240617] = 3, - ACTIONS(247), 1, + [240634] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12422), 1, - ts_builtin_sym_end, + ACTIONS(12462), 1, + anon_sym_RBRACE, STATE(8159), 1, sym_comment, - [240627] = 3, - ACTIONS(247), 1, + [240644] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(4956), 1, - aux_sym_unquoted_token2, + ACTIONS(12464), 1, + anon_sym_RPAREN, STATE(8160), 1, sym_comment, - [240637] = 3, - ACTIONS(247), 1, + [240654] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12424), 1, - sym_raw_string_end, + ACTIONS(12466), 1, + anon_sym_RPAREN, STATE(8161), 1, sym_comment, - [240647] = 3, - ACTIONS(247), 1, + [240664] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12426), 1, - sym_raw_string_end, + ACTIONS(12468), 1, + aux_sym_cmd_identifier_token41, STATE(8162), 1, sym_comment, - [240657] = 3, - ACTIONS(247), 1, + [240674] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12428), 1, - anon_sym_RBRACE, + ACTIONS(12470), 1, + aux_sym_env_var_token2, STATE(8163), 1, sym_comment, - [240667] = 3, - ACTIONS(247), 1, + [240684] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12430), 1, - anon_sym_RBRACE, + ACTIONS(2452), 1, + aux_sym_record_entry_token1, STATE(8164), 1, sym_comment, - [240677] = 3, - ACTIONS(247), 1, + [240694] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12432), 1, - sym_raw_string_end, + ACTIONS(12472), 1, + sym_param_short_flag_identifier, STATE(8165), 1, sym_comment, - [240687] = 3, - ACTIONS(247), 1, + [240704] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12434), 1, - anon_sym_EQ, + ACTIONS(507), 1, + anon_sym_RPAREN2, STATE(8166), 1, sym_comment, - [240697] = 3, - ACTIONS(247), 1, + [240714] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(2306), 1, - aux_sym_record_entry_token1, + ACTIONS(12474), 1, + anon_sym_RBRACE, STATE(8167), 1, sym_comment, - [240707] = 3, - ACTIONS(247), 1, + [240724] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12436), 1, - sym_raw_string_end, + ACTIONS(12476), 1, + aux_sym_cmd_identifier_token41, STATE(8168), 1, sym_comment, - [240717] = 3, - ACTIONS(247), 1, + [240734] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12438), 1, - anon_sym_RBRACE, + ACTIONS(3447), 1, + aux_sym_record_entry_token1, STATE(8169), 1, sym_comment, - [240727] = 3, - ACTIONS(247), 1, + [240744] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12440), 1, - anon_sym_RBRACE, + ACTIONS(5679), 1, + aux_sym_record_entry_token1, STATE(8170), 1, sym_comment, - [240737] = 3, - ACTIONS(247), 1, + [240754] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12442), 1, - anon_sym_RPAREN2, + ACTIONS(12478), 1, + anon_sym_RBRACE, STATE(8171), 1, sym_comment, - [240747] = 3, - ACTIONS(247), 1, + [240764] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12444), 1, - sym_raw_string_end, + ACTIONS(12480), 1, + anon_sym_RBRACE, STATE(8172), 1, sym_comment, - [240757] = 3, - ACTIONS(247), 1, + [240774] = 3, + ACTIONS(255), 1, anon_sym_POUND, - ACTIONS(12446), 1, - sym_raw_string_content, + ACTIONS(523), 1, + anon_sym_RPAREN2, STATE(8173), 1, sym_comment, - [240767] = 1, - ACTIONS(12448), 1, + [240784] = 3, + ACTIONS(255), 1, + anon_sym_POUND, + ACTIONS(12482), 1, + sym_raw_string_content, + STATE(8174), 1, + sym_comment, + [240794] = 1, + ACTIONS(12484), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1727)] = 0, - [SMALL_STATE(1728)] = 75, - [SMALL_STATE(1729)] = 152, - [SMALL_STATE(1730)] = 225, - [SMALL_STATE(1731)] = 298, - [SMALL_STATE(1732)] = 373, - [SMALL_STATE(1733)] = 446, - [SMALL_STATE(1734)] = 519, - [SMALL_STATE(1735)] = 592, - [SMALL_STATE(1736)] = 665, - [SMALL_STATE(1737)] = 738, - [SMALL_STATE(1738)] = 811, - [SMALL_STATE(1739)] = 918, - [SMALL_STATE(1740)] = 991, - [SMALL_STATE(1741)] = 1064, - [SMALL_STATE(1742)] = 1137, - [SMALL_STATE(1743)] = 1212, - [SMALL_STATE(1744)] = 1315, - [SMALL_STATE(1745)] = 1388, - [SMALL_STATE(1746)] = 1461, - [SMALL_STATE(1747)] = 1534, - [SMALL_STATE(1748)] = 1609, - [SMALL_STATE(1749)] = 1684, - [SMALL_STATE(1750)] = 1757, - [SMALL_STATE(1751)] = 1830, - [SMALL_STATE(1752)] = 1903, - [SMALL_STATE(1753)] = 2050, - [SMALL_STATE(1754)] = 2123, - [SMALL_STATE(1755)] = 2196, - [SMALL_STATE(1756)] = 2269, - [SMALL_STATE(1757)] = 2342, - [SMALL_STATE(1758)] = 2415, - [SMALL_STATE(1759)] = 2518, - [SMALL_STATE(1760)] = 2625, - [SMALL_STATE(1761)] = 2698, - [SMALL_STATE(1762)] = 2773, - [SMALL_STATE(1763)] = 2846, - [SMALL_STATE(1764)] = 2919, - [SMALL_STATE(1765)] = 2992, - [SMALL_STATE(1766)] = 3065, - [SMALL_STATE(1767)] = 3138, - [SMALL_STATE(1768)] = 3213, - [SMALL_STATE(1769)] = 3286, - [SMALL_STATE(1770)] = 3361, - [SMALL_STATE(1771)] = 3434, - [SMALL_STATE(1772)] = 3507, - [SMALL_STATE(1773)] = 3580, - [SMALL_STATE(1774)] = 3653, - [SMALL_STATE(1775)] = 3728, - [SMALL_STATE(1776)] = 3801, - [SMALL_STATE(1777)] = 3874, - [SMALL_STATE(1778)] = 3947, - [SMALL_STATE(1779)] = 4022, - [SMALL_STATE(1780)] = 4095, - [SMALL_STATE(1781)] = 4242, - [SMALL_STATE(1782)] = 4315, - [SMALL_STATE(1783)] = 4462, - [SMALL_STATE(1784)] = 4609, - [SMALL_STATE(1785)] = 4756, - [SMALL_STATE(1786)] = 4829, - [SMALL_STATE(1787)] = 4902, - [SMALL_STATE(1788)] = 4975, - [SMALL_STATE(1789)] = 5050, - [SMALL_STATE(1790)] = 5197, - [SMALL_STATE(1791)] = 5344, - [SMALL_STATE(1792)] = 5417, - [SMALL_STATE(1793)] = 5490, - [SMALL_STATE(1794)] = 5563, - [SMALL_STATE(1795)] = 5636, - [SMALL_STATE(1796)] = 5711, - [SMALL_STATE(1797)] = 5784, - [SMALL_STATE(1798)] = 5857, - [SMALL_STATE(1799)] = 5930, - [SMALL_STATE(1800)] = 6003, - [SMALL_STATE(1801)] = 6076, - [SMALL_STATE(1802)] = 6149, - [SMALL_STATE(1803)] = 6222, - [SMALL_STATE(1804)] = 6295, - [SMALL_STATE(1805)] = 6368, - [SMALL_STATE(1806)] = 6441, - [SMALL_STATE(1807)] = 6516, - [SMALL_STATE(1808)] = 6591, - [SMALL_STATE(1809)] = 6664, - [SMALL_STATE(1810)] = 6737, - [SMALL_STATE(1811)] = 6812, - [SMALL_STATE(1812)] = 6885, - [SMALL_STATE(1813)] = 6958, - [SMALL_STATE(1814)] = 7061, - [SMALL_STATE(1815)] = 7134, - [SMALL_STATE(1816)] = 7207, - [SMALL_STATE(1817)] = 7286, - [SMALL_STATE(1818)] = 7359, - [SMALL_STATE(1819)] = 7432, - [SMALL_STATE(1820)] = 7505, - [SMALL_STATE(1821)] = 7578, - [SMALL_STATE(1822)] = 7651, - [SMALL_STATE(1823)] = 7724, - [SMALL_STATE(1824)] = 7797, - [SMALL_STATE(1825)] = 7870, - [SMALL_STATE(1826)] = 7943, - [SMALL_STATE(1827)] = 8016, - [SMALL_STATE(1828)] = 8089, - [SMALL_STATE(1829)] = 8162, - [SMALL_STATE(1830)] = 8235, - [SMALL_STATE(1831)] = 8308, - [SMALL_STATE(1832)] = 8455, - [SMALL_STATE(1833)] = 8528, - [SMALL_STATE(1834)] = 8601, - [SMALL_STATE(1835)] = 8674, - [SMALL_STATE(1836)] = 8747, - [SMALL_STATE(1837)] = 8820, - [SMALL_STATE(1838)] = 8893, - [SMALL_STATE(1839)] = 8966, - [SMALL_STATE(1840)] = 9039, - [SMALL_STATE(1841)] = 9112, - [SMALL_STATE(1842)] = 9185, - [SMALL_STATE(1843)] = 9332, - [SMALL_STATE(1844)] = 9405, - [SMALL_STATE(1845)] = 9552, - [SMALL_STATE(1846)] = 9625, - [SMALL_STATE(1847)] = 9700, - [SMALL_STATE(1848)] = 9847, - [SMALL_STATE(1849)] = 9920, - [SMALL_STATE(1850)] = 10027, - [SMALL_STATE(1851)] = 10174, - [SMALL_STATE(1852)] = 10247, - [SMALL_STATE(1853)] = 10320, + [SMALL_STATE(1728)] = 73, + [SMALL_STATE(1729)] = 146, + [SMALL_STATE(1730)] = 219, + [SMALL_STATE(1731)] = 292, + [SMALL_STATE(1732)] = 365, + [SMALL_STATE(1733)] = 438, + [SMALL_STATE(1734)] = 511, + [SMALL_STATE(1735)] = 584, + [SMALL_STATE(1736)] = 657, + [SMALL_STATE(1737)] = 730, + [SMALL_STATE(1738)] = 833, + [SMALL_STATE(1739)] = 906, + [SMALL_STATE(1740)] = 979, + [SMALL_STATE(1741)] = 1052, + [SMALL_STATE(1742)] = 1125, + [SMALL_STATE(1743)] = 1198, + [SMALL_STATE(1744)] = 1271, + [SMALL_STATE(1745)] = 1344, + [SMALL_STATE(1746)] = 1417, + [SMALL_STATE(1747)] = 1490, + [SMALL_STATE(1748)] = 1563, + [SMALL_STATE(1749)] = 1636, + [SMALL_STATE(1750)] = 1743, + [SMALL_STATE(1751)] = 1816, + [SMALL_STATE(1752)] = 1889, + [SMALL_STATE(1753)] = 1962, + [SMALL_STATE(1754)] = 2035, + [SMALL_STATE(1755)] = 2108, + [SMALL_STATE(1756)] = 2183, + [SMALL_STATE(1757)] = 2256, + [SMALL_STATE(1758)] = 2331, + [SMALL_STATE(1759)] = 2404, + [SMALL_STATE(1760)] = 2477, + [SMALL_STATE(1761)] = 2552, + [SMALL_STATE(1762)] = 2625, + [SMALL_STATE(1763)] = 2698, + [SMALL_STATE(1764)] = 2771, + [SMALL_STATE(1765)] = 2844, + [SMALL_STATE(1766)] = 2919, + [SMALL_STATE(1767)] = 2992, + [SMALL_STATE(1768)] = 3065, + [SMALL_STATE(1769)] = 3138, + [SMALL_STATE(1770)] = 3211, + [SMALL_STATE(1771)] = 3284, + [SMALL_STATE(1772)] = 3357, + [SMALL_STATE(1773)] = 3430, + [SMALL_STATE(1774)] = 3503, + [SMALL_STATE(1775)] = 3576, + [SMALL_STATE(1776)] = 3649, + [SMALL_STATE(1777)] = 3722, + [SMALL_STATE(1778)] = 3795, + [SMALL_STATE(1779)] = 3868, + [SMALL_STATE(1780)] = 3941, + [SMALL_STATE(1781)] = 4048, + [SMALL_STATE(1782)] = 4125, + [SMALL_STATE(1783)] = 4198, + [SMALL_STATE(1784)] = 4271, + [SMALL_STATE(1785)] = 4344, + [SMALL_STATE(1786)] = 4417, + [SMALL_STATE(1787)] = 4490, + [SMALL_STATE(1788)] = 4563, + [SMALL_STATE(1789)] = 4636, + [SMALL_STATE(1790)] = 4709, + [SMALL_STATE(1791)] = 4782, + [SMALL_STATE(1792)] = 4857, + [SMALL_STATE(1793)] = 4932, + [SMALL_STATE(1794)] = 5007, + [SMALL_STATE(1795)] = 5082, + [SMALL_STATE(1796)] = 5157, + [SMALL_STATE(1797)] = 5232, + [SMALL_STATE(1798)] = 5335, + [SMALL_STATE(1799)] = 5408, + [SMALL_STATE(1800)] = 5483, + [SMALL_STATE(1801)] = 5556, + [SMALL_STATE(1802)] = 5629, + [SMALL_STATE(1803)] = 5702, + [SMALL_STATE(1804)] = 5775, + [SMALL_STATE(1805)] = 5848, + [SMALL_STATE(1806)] = 5921, + [SMALL_STATE(1807)] = 5994, + [SMALL_STATE(1808)] = 6067, + [SMALL_STATE(1809)] = 6142, + [SMALL_STATE(1810)] = 6215, + [SMALL_STATE(1811)] = 6318, + [SMALL_STATE(1812)] = 6391, + [SMALL_STATE(1813)] = 6464, + [SMALL_STATE(1814)] = 6537, + [SMALL_STATE(1815)] = 6612, + [SMALL_STATE(1816)] = 6685, + [SMALL_STATE(1817)] = 6792, + [SMALL_STATE(1818)] = 6865, + [SMALL_STATE(1819)] = 6938, + [SMALL_STATE(1820)] = 7085, + [SMALL_STATE(1821)] = 7232, + [SMALL_STATE(1822)] = 7379, + [SMALL_STATE(1823)] = 7526, + [SMALL_STATE(1824)] = 7673, + [SMALL_STATE(1825)] = 7820, + [SMALL_STATE(1826)] = 7893, + [SMALL_STATE(1827)] = 7966, + [SMALL_STATE(1828)] = 8041, + [SMALL_STATE(1829)] = 8188, + [SMALL_STATE(1830)] = 8261, + [SMALL_STATE(1831)] = 8408, + [SMALL_STATE(1832)] = 8555, + [SMALL_STATE(1833)] = 8628, + [SMALL_STATE(1834)] = 8701, + [SMALL_STATE(1835)] = 8774, + [SMALL_STATE(1836)] = 8847, + [SMALL_STATE(1837)] = 8920, + [SMALL_STATE(1838)] = 8993, + [SMALL_STATE(1839)] = 9072, + [SMALL_STATE(1840)] = 9145, + [SMALL_STATE(1841)] = 9218, + [SMALL_STATE(1842)] = 9291, + [SMALL_STATE(1843)] = 9364, + [SMALL_STATE(1844)] = 9437, + [SMALL_STATE(1845)] = 9512, + [SMALL_STATE(1846)] = 9659, + [SMALL_STATE(1847)] = 9732, + [SMALL_STATE(1848)] = 9805, + [SMALL_STATE(1849)] = 9880, + [SMALL_STATE(1850)] = 9953, + [SMALL_STATE(1851)] = 10100, + [SMALL_STATE(1852)] = 10173, + [SMALL_STATE(1853)] = 10246, [SMALL_STATE(1854)] = 10393, [SMALL_STATE(1855)] = 10466, - [SMALL_STATE(1856)] = 10538, - [SMALL_STATE(1857)] = 10610, - [SMALL_STATE(1858)] = 10682, - [SMALL_STATE(1859)] = 10754, - [SMALL_STATE(1860)] = 10826, - [SMALL_STATE(1861)] = 10898, - [SMALL_STATE(1862)] = 10974, + [SMALL_STATE(1856)] = 10542, + [SMALL_STATE(1857)] = 10614, + [SMALL_STATE(1858)] = 10686, + [SMALL_STATE(1859)] = 10762, + [SMALL_STATE(1860)] = 10834, + [SMALL_STATE(1861)] = 10906, + [SMALL_STATE(1862)] = 10978, [SMALL_STATE(1863)] = 11050, [SMALL_STATE(1864)] = 11122, - [SMALL_STATE(1865)] = 11198, - [SMALL_STATE(1866)] = 11274, - [SMALL_STATE(1867)] = 11350, - [SMALL_STATE(1868)] = 11422, - [SMALL_STATE(1869)] = 11494, - [SMALL_STATE(1870)] = 11570, - [SMALL_STATE(1871)] = 11646, - [SMALL_STATE(1872)] = 11718, - [SMALL_STATE(1873)] = 11794, - [SMALL_STATE(1874)] = 11938, - [SMALL_STATE(1875)] = 12014, - [SMALL_STATE(1876)] = 12090, - [SMALL_STATE(1877)] = 12162, - [SMALL_STATE(1878)] = 12234, - [SMALL_STATE(1879)] = 12306, - [SMALL_STATE(1880)] = 12378, - [SMALL_STATE(1881)] = 12450, - [SMALL_STATE(1882)] = 12526, - [SMALL_STATE(1883)] = 12598, - [SMALL_STATE(1884)] = 12670, - [SMALL_STATE(1885)] = 12746, - [SMALL_STATE(1886)] = 12818, - [SMALL_STATE(1887)] = 12890, - [SMALL_STATE(1888)] = 12962, - [SMALL_STATE(1889)] = 13034, - [SMALL_STATE(1890)] = 13106, - [SMALL_STATE(1891)] = 13178, - [SMALL_STATE(1892)] = 13250, - [SMALL_STATE(1893)] = 13326, - [SMALL_STATE(1894)] = 13398, - [SMALL_STATE(1895)] = 13470, - [SMALL_STATE(1896)] = 13542, - [SMALL_STATE(1897)] = 13614, - [SMALL_STATE(1898)] = 13686, - [SMALL_STATE(1899)] = 13758, - [SMALL_STATE(1900)] = 13830, - [SMALL_STATE(1901)] = 13904, - [SMALL_STATE(1902)] = 13978, - [SMALL_STATE(1903)] = 14050, - [SMALL_STATE(1904)] = 14122, - [SMALL_STATE(1905)] = 14194, - [SMALL_STATE(1906)] = 14266, - [SMALL_STATE(1907)] = 14338, - [SMALL_STATE(1908)] = 14410, - [SMALL_STATE(1909)] = 14482, - [SMALL_STATE(1910)] = 14554, - [SMALL_STATE(1911)] = 14626, - [SMALL_STATE(1912)] = 14698, - [SMALL_STATE(1913)] = 14770, - [SMALL_STATE(1914)] = 14842, - [SMALL_STATE(1915)] = 14914, - [SMALL_STATE(1916)] = 14986, - [SMALL_STATE(1917)] = 15058, - [SMALL_STATE(1918)] = 15130, - [SMALL_STATE(1919)] = 15202, - [SMALL_STATE(1920)] = 15274, - [SMALL_STATE(1921)] = 15346, - [SMALL_STATE(1922)] = 15418, - [SMALL_STATE(1923)] = 15490, - [SMALL_STATE(1924)] = 15562, - [SMALL_STATE(1925)] = 15634, - [SMALL_STATE(1926)] = 15706, - [SMALL_STATE(1927)] = 15778, - [SMALL_STATE(1928)] = 15850, - [SMALL_STATE(1929)] = 15922, - [SMALL_STATE(1930)] = 15994, - [SMALL_STATE(1931)] = 16066, - [SMALL_STATE(1932)] = 16138, - [SMALL_STATE(1933)] = 16210, - [SMALL_STATE(1934)] = 16282, - [SMALL_STATE(1935)] = 16354, - [SMALL_STATE(1936)] = 16426, - [SMALL_STATE(1937)] = 16498, - [SMALL_STATE(1938)] = 16570, - [SMALL_STATE(1939)] = 16642, - [SMALL_STATE(1940)] = 16714, - [SMALL_STATE(1941)] = 16786, - [SMALL_STATE(1942)] = 16858, - [SMALL_STATE(1943)] = 16930, - [SMALL_STATE(1944)] = 17002, - [SMALL_STATE(1945)] = 17074, - [SMALL_STATE(1946)] = 17148, - [SMALL_STATE(1947)] = 17220, - [SMALL_STATE(1948)] = 17292, - [SMALL_STATE(1949)] = 17368, - [SMALL_STATE(1950)] = 17440, - [SMALL_STATE(1951)] = 17512, - [SMALL_STATE(1952)] = 17584, - [SMALL_STATE(1953)] = 17660, - [SMALL_STATE(1954)] = 17732, - [SMALL_STATE(1955)] = 17804, - [SMALL_STATE(1956)] = 17876, - [SMALL_STATE(1957)] = 17948, - [SMALL_STATE(1958)] = 18020, - [SMALL_STATE(1959)] = 18092, - [SMALL_STATE(1960)] = 18164, - [SMALL_STATE(1961)] = 18236, - [SMALL_STATE(1962)] = 18380, - [SMALL_STATE(1963)] = 18456, - [SMALL_STATE(1964)] = 18600, - [SMALL_STATE(1965)] = 18672, - [SMALL_STATE(1966)] = 18744, - [SMALL_STATE(1967)] = 18816, - [SMALL_STATE(1968)] = 18888, - [SMALL_STATE(1969)] = 18960, - [SMALL_STATE(1970)] = 19036, - [SMALL_STATE(1971)] = 19108, - [SMALL_STATE(1972)] = 19180, - [SMALL_STATE(1973)] = 19252, - [SMALL_STATE(1974)] = 19324, - [SMALL_STATE(1975)] = 19468, - [SMALL_STATE(1976)] = 19612, - [SMALL_STATE(1977)] = 19756, + [SMALL_STATE(1865)] = 11194, + [SMALL_STATE(1866)] = 11266, + [SMALL_STATE(1867)] = 11338, + [SMALL_STATE(1868)] = 11410, + [SMALL_STATE(1869)] = 11482, + [SMALL_STATE(1870)] = 11554, + [SMALL_STATE(1871)] = 11626, + [SMALL_STATE(1872)] = 11698, + [SMALL_STATE(1873)] = 11770, + [SMALL_STATE(1874)] = 11842, + [SMALL_STATE(1875)] = 11914, + [SMALL_STATE(1876)] = 11986, + [SMALL_STATE(1877)] = 12062, + [SMALL_STATE(1878)] = 12134, + [SMALL_STATE(1879)] = 12206, + [SMALL_STATE(1880)] = 12278, + [SMALL_STATE(1881)] = 12350, + [SMALL_STATE(1882)] = 12422, + [SMALL_STATE(1883)] = 12498, + [SMALL_STATE(1884)] = 12570, + [SMALL_STATE(1885)] = 12642, + [SMALL_STATE(1886)] = 12714, + [SMALL_STATE(1887)] = 12786, + [SMALL_STATE(1888)] = 12858, + [SMALL_STATE(1889)] = 12930, + [SMALL_STATE(1890)] = 13002, + [SMALL_STATE(1891)] = 13074, + [SMALL_STATE(1892)] = 13146, + [SMALL_STATE(1893)] = 13218, + [SMALL_STATE(1894)] = 13290, + [SMALL_STATE(1895)] = 13362, + [SMALL_STATE(1896)] = 13434, + [SMALL_STATE(1897)] = 13506, + [SMALL_STATE(1898)] = 13578, + [SMALL_STATE(1899)] = 13650, + [SMALL_STATE(1900)] = 13722, + [SMALL_STATE(1901)] = 13794, + [SMALL_STATE(1902)] = 13866, + [SMALL_STATE(1903)] = 13938, + [SMALL_STATE(1904)] = 14010, + [SMALL_STATE(1905)] = 14082, + [SMALL_STATE(1906)] = 14154, + [SMALL_STATE(1907)] = 14226, + [SMALL_STATE(1908)] = 14298, + [SMALL_STATE(1909)] = 14370, + [SMALL_STATE(1910)] = 14442, + [SMALL_STATE(1911)] = 14514, + [SMALL_STATE(1912)] = 14586, + [SMALL_STATE(1913)] = 14658, + [SMALL_STATE(1914)] = 14730, + [SMALL_STATE(1915)] = 14802, + [SMALL_STATE(1916)] = 14874, + [SMALL_STATE(1917)] = 14950, + [SMALL_STATE(1918)] = 15022, + [SMALL_STATE(1919)] = 15094, + [SMALL_STATE(1920)] = 15238, + [SMALL_STATE(1921)] = 15310, + [SMALL_STATE(1922)] = 15382, + [SMALL_STATE(1923)] = 15456, + [SMALL_STATE(1924)] = 15600, + [SMALL_STATE(1925)] = 15672, + [SMALL_STATE(1926)] = 15744, + [SMALL_STATE(1927)] = 15816, + [SMALL_STATE(1928)] = 15890, + [SMALL_STATE(1929)] = 15962, + [SMALL_STATE(1930)] = 16038, + [SMALL_STATE(1931)] = 16110, + [SMALL_STATE(1932)] = 16182, + [SMALL_STATE(1933)] = 16258, + [SMALL_STATE(1934)] = 16330, + [SMALL_STATE(1935)] = 16402, + [SMALL_STATE(1936)] = 16474, + [SMALL_STATE(1937)] = 16550, + [SMALL_STATE(1938)] = 16622, + [SMALL_STATE(1939)] = 16694, + [SMALL_STATE(1940)] = 16766, + [SMALL_STATE(1941)] = 16838, + [SMALL_STATE(1942)] = 16910, + [SMALL_STATE(1943)] = 16982, + [SMALL_STATE(1944)] = 17054, + [SMALL_STATE(1945)] = 17126, + [SMALL_STATE(1946)] = 17202, + [SMALL_STATE(1947)] = 17278, + [SMALL_STATE(1948)] = 17350, + [SMALL_STATE(1949)] = 17422, + [SMALL_STATE(1950)] = 17494, + [SMALL_STATE(1951)] = 17566, + [SMALL_STATE(1952)] = 17638, + [SMALL_STATE(1953)] = 17710, + [SMALL_STATE(1954)] = 17782, + [SMALL_STATE(1955)] = 17854, + [SMALL_STATE(1956)] = 17926, + [SMALL_STATE(1957)] = 17998, + [SMALL_STATE(1958)] = 18074, + [SMALL_STATE(1959)] = 18146, + [SMALL_STATE(1960)] = 18290, + [SMALL_STATE(1961)] = 18366, + [SMALL_STATE(1962)] = 18442, + [SMALL_STATE(1963)] = 18518, + [SMALL_STATE(1964)] = 18590, + [SMALL_STATE(1965)] = 18666, + [SMALL_STATE(1966)] = 18738, + [SMALL_STATE(1967)] = 18810, + [SMALL_STATE(1968)] = 18882, + [SMALL_STATE(1969)] = 18958, + [SMALL_STATE(1970)] = 19030, + [SMALL_STATE(1971)] = 19102, + [SMALL_STATE(1972)] = 19174, + [SMALL_STATE(1973)] = 19246, + [SMALL_STATE(1974)] = 19320, + [SMALL_STATE(1975)] = 19464, + [SMALL_STATE(1976)] = 19608, + [SMALL_STATE(1977)] = 19752, [SMALL_STATE(1978)] = 19828, - [SMALL_STATE(1979)] = 19905, - [SMALL_STATE(1980)] = 19984, - [SMALL_STATE(1981)] = 20055, - [SMALL_STATE(1982)] = 20134, - [SMALL_STATE(1983)] = 20213, - [SMALL_STATE(1984)] = 20284, - [SMALL_STATE(1985)] = 20363, - [SMALL_STATE(1986)] = 20442, - [SMALL_STATE(1987)] = 20513, - [SMALL_STATE(1988)] = 20590, - [SMALL_STATE(1989)] = 20669, - [SMALL_STATE(1990)] = 20748, - [SMALL_STATE(1991)] = 20825, - [SMALL_STATE(1992)] = 20896, - [SMALL_STATE(1993)] = 20967, - [SMALL_STATE(1994)] = 21044, - [SMALL_STATE(1995)] = 21121, - [SMALL_STATE(1996)] = 21198, - [SMALL_STATE(1997)] = 21275, - [SMALL_STATE(1998)] = 21352, - [SMALL_STATE(1999)] = 21431, - [SMALL_STATE(2000)] = 21508, - [SMALL_STATE(2001)] = 21583, - [SMALL_STATE(2002)] = 21654, - [SMALL_STATE(2003)] = 21731, - [SMALL_STATE(2004)] = 21802, - [SMALL_STATE(2005)] = 21879, - [SMALL_STATE(2006)] = 21956, - [SMALL_STATE(2007)] = 22035, - [SMALL_STATE(2008)] = 22112, - [SMALL_STATE(2009)] = 22189, - [SMALL_STATE(2010)] = 22266, - [SMALL_STATE(2011)] = 22337, - [SMALL_STATE(2012)] = 22408, - [SMALL_STATE(2013)] = 22479, - [SMALL_STATE(2014)] = 22556, - [SMALL_STATE(2015)] = 22697, - [SMALL_STATE(2016)] = 22768, - [SMALL_STATE(2017)] = 22839, - [SMALL_STATE(2018)] = 22980, - [SMALL_STATE(2019)] = 23051, - [SMALL_STATE(2020)] = 23128, - [SMALL_STATE(2021)] = 23203, - [SMALL_STATE(2022)] = 23282, - [SMALL_STATE(2023)] = 23361, - [SMALL_STATE(2024)] = 23432, - [SMALL_STATE(2025)] = 23513, - [SMALL_STATE(2026)] = 23592, - [SMALL_STATE(2027)] = 23671, - [SMALL_STATE(2028)] = 23750, - [SMALL_STATE(2029)] = 23829, - [SMALL_STATE(2030)] = 23908, - [SMALL_STATE(2031)] = 23987, - [SMALL_STATE(2032)] = 24064, - [SMALL_STATE(2033)] = 24141, - [SMALL_STATE(2034)] = 24218, - [SMALL_STATE(2035)] = 24295, - [SMALL_STATE(2036)] = 24372, - [SMALL_STATE(2037)] = 24449, - [SMALL_STATE(2038)] = 24526, - [SMALL_STATE(2039)] = 24597, - [SMALL_STATE(2040)] = 24674, - [SMALL_STATE(2041)] = 24751, - [SMALL_STATE(2042)] = 24828, - [SMALL_STATE(2043)] = 24907, - [SMALL_STATE(2044)] = 24986, - [SMALL_STATE(2045)] = 25065, - [SMALL_STATE(2046)] = 25144, - [SMALL_STATE(2047)] = 25215, - [SMALL_STATE(2048)] = 25294, - [SMALL_STATE(2049)] = 25365, - [SMALL_STATE(2050)] = 25436, - [SMALL_STATE(2051)] = 25507, - [SMALL_STATE(2052)] = 25584, - [SMALL_STATE(2053)] = 25663, - [SMALL_STATE(2054)] = 25734, - [SMALL_STATE(2055)] = 25811, - [SMALL_STATE(2056)] = 25888, - [SMALL_STATE(2057)] = 25965, - [SMALL_STATE(2058)] = 26036, - [SMALL_STATE(2059)] = 26113, - [SMALL_STATE(2060)] = 26190, - [SMALL_STATE(2061)] = 26267, - [SMALL_STATE(2062)] = 26346, - [SMALL_STATE(2063)] = 26423, - [SMALL_STATE(2064)] = 26500, - [SMALL_STATE(2065)] = 26577, - [SMALL_STATE(2066)] = 26718, - [SMALL_STATE(2067)] = 26859, - [SMALL_STATE(2068)] = 26936, - [SMALL_STATE(2069)] = 27017, - [SMALL_STATE(2070)] = 27094, - [SMALL_STATE(2071)] = 27171, - [SMALL_STATE(2072)] = 27248, - [SMALL_STATE(2073)] = 27327, - [SMALL_STATE(2074)] = 27404, - [SMALL_STATE(2075)] = 27475, - [SMALL_STATE(2076)] = 27552, - [SMALL_STATE(2077)] = 27623, - [SMALL_STATE(2078)] = 27700, - [SMALL_STATE(2079)] = 27777, - [SMALL_STATE(2080)] = 27856, - [SMALL_STATE(2081)] = 27927, - [SMALL_STATE(2082)] = 28004, - [SMALL_STATE(2083)] = 28081, - [SMALL_STATE(2084)] = 28152, - [SMALL_STATE(2085)] = 28229, - [SMALL_STATE(2086)] = 28306, - [SMALL_STATE(2087)] = 28383, - [SMALL_STATE(2088)] = 28460, - [SMALL_STATE(2089)] = 28537, + [SMALL_STATE(1979)] = 19969, + [SMALL_STATE(1980)] = 20040, + [SMALL_STATE(1981)] = 20117, + [SMALL_STATE(1982)] = 20194, + [SMALL_STATE(1983)] = 20271, + [SMALL_STATE(1984)] = 20348, + [SMALL_STATE(1985)] = 20425, + [SMALL_STATE(1986)] = 20500, + [SMALL_STATE(1987)] = 20577, + [SMALL_STATE(1988)] = 20654, + [SMALL_STATE(1989)] = 20733, + [SMALL_STATE(1990)] = 20810, + [SMALL_STATE(1991)] = 20887, + [SMALL_STATE(1992)] = 20964, + [SMALL_STATE(1993)] = 21041, + [SMALL_STATE(1994)] = 21118, + [SMALL_STATE(1995)] = 21195, + [SMALL_STATE(1996)] = 21272, + [SMALL_STATE(1997)] = 21349, + [SMALL_STATE(1998)] = 21420, + [SMALL_STATE(1999)] = 21497, + [SMALL_STATE(2000)] = 21576, + [SMALL_STATE(2001)] = 21655, + [SMALL_STATE(2002)] = 21734, + [SMALL_STATE(2003)] = 21813, + [SMALL_STATE(2004)] = 21892, + [SMALL_STATE(2005)] = 21963, + [SMALL_STATE(2006)] = 22040, + [SMALL_STATE(2007)] = 22117, + [SMALL_STATE(2008)] = 22194, + [SMALL_STATE(2009)] = 22271, + [SMALL_STATE(2010)] = 22348, + [SMALL_STATE(2011)] = 22425, + [SMALL_STATE(2012)] = 22502, + [SMALL_STATE(2013)] = 22579, + [SMALL_STATE(2014)] = 22656, + [SMALL_STATE(2015)] = 22733, + [SMALL_STATE(2016)] = 22810, + [SMALL_STATE(2017)] = 22887, + [SMALL_STATE(2018)] = 22958, + [SMALL_STATE(2019)] = 23029, + [SMALL_STATE(2020)] = 23106, + [SMALL_STATE(2021)] = 23185, + [SMALL_STATE(2022)] = 23262, + [SMALL_STATE(2023)] = 23339, + [SMALL_STATE(2024)] = 23410, + [SMALL_STATE(2025)] = 23487, + [SMALL_STATE(2026)] = 23566, + [SMALL_STATE(2027)] = 23643, + [SMALL_STATE(2028)] = 23720, + [SMALL_STATE(2029)] = 23797, + [SMALL_STATE(2030)] = 23874, + [SMALL_STATE(2031)] = 23951, + [SMALL_STATE(2032)] = 24028, + [SMALL_STATE(2033)] = 24107, + [SMALL_STATE(2034)] = 24182, + [SMALL_STATE(2035)] = 24259, + [SMALL_STATE(2036)] = 24330, + [SMALL_STATE(2037)] = 24409, + [SMALL_STATE(2038)] = 24488, + [SMALL_STATE(2039)] = 24567, + [SMALL_STATE(2040)] = 24646, + [SMALL_STATE(2041)] = 24725, + [SMALL_STATE(2042)] = 24804, + [SMALL_STATE(2043)] = 24875, + [SMALL_STATE(2044)] = 25016, + [SMALL_STATE(2045)] = 25157, + [SMALL_STATE(2046)] = 25236, + [SMALL_STATE(2047)] = 25315, + [SMALL_STATE(2048)] = 25394, + [SMALL_STATE(2049)] = 25473, + [SMALL_STATE(2050)] = 25552, + [SMALL_STATE(2051)] = 25633, + [SMALL_STATE(2052)] = 25710, + [SMALL_STATE(2053)] = 25781, + [SMALL_STATE(2054)] = 25852, + [SMALL_STATE(2055)] = 25923, + [SMALL_STATE(2056)] = 25994, + [SMALL_STATE(2057)] = 26071, + [SMALL_STATE(2058)] = 26148, + [SMALL_STATE(2059)] = 26225, + [SMALL_STATE(2060)] = 26302, + [SMALL_STATE(2061)] = 26381, + [SMALL_STATE(2062)] = 26460, + [SMALL_STATE(2063)] = 26539, + [SMALL_STATE(2064)] = 26618, + [SMALL_STATE(2065)] = 26689, + [SMALL_STATE(2066)] = 26760, + [SMALL_STATE(2067)] = 26831, + [SMALL_STATE(2068)] = 26902, + [SMALL_STATE(2069)] = 26973, + [SMALL_STATE(2070)] = 27050, + [SMALL_STATE(2071)] = 27121, + [SMALL_STATE(2072)] = 27192, + [SMALL_STATE(2073)] = 27271, + [SMALL_STATE(2074)] = 27342, + [SMALL_STATE(2075)] = 27413, + [SMALL_STATE(2076)] = 27484, + [SMALL_STATE(2077)] = 27555, + [SMALL_STATE(2078)] = 27626, + [SMALL_STATE(2079)] = 27697, + [SMALL_STATE(2080)] = 27774, + [SMALL_STATE(2081)] = 27851, + [SMALL_STATE(2082)] = 27992, + [SMALL_STATE(2083)] = 28073, + [SMALL_STATE(2084)] = 28150, + [SMALL_STATE(2085)] = 28227, + [SMALL_STATE(2086)] = 28298, + [SMALL_STATE(2087)] = 28375, + [SMALL_STATE(2088)] = 28454, + [SMALL_STATE(2089)] = 28531, [SMALL_STATE(2090)] = 28608, [SMALL_STATE(2091)] = 28685, - [SMALL_STATE(2092)] = 28823, - [SMALL_STATE(2093)] = 28893, - [SMALL_STATE(2094)] = 28963, - [SMALL_STATE(2095)] = 29033, - [SMALL_STATE(2096)] = 29103, - [SMALL_STATE(2097)] = 29173, - [SMALL_STATE(2098)] = 29243, - [SMALL_STATE(2099)] = 29313, - [SMALL_STATE(2100)] = 29383, - [SMALL_STATE(2101)] = 29455, - [SMALL_STATE(2102)] = 29527, - [SMALL_STATE(2103)] = 29597, - [SMALL_STATE(2104)] = 29735, - [SMALL_STATE(2105)] = 29873, - [SMALL_STATE(2106)] = 30011, - [SMALL_STATE(2107)] = 30149, - [SMALL_STATE(2108)] = 30287, - [SMALL_STATE(2109)] = 30361, - [SMALL_STATE(2110)] = 30435, - [SMALL_STATE(2111)] = 30573, - [SMALL_STATE(2112)] = 30643, - [SMALL_STATE(2113)] = 30713, - [SMALL_STATE(2114)] = 30783, - [SMALL_STATE(2115)] = 30853, - [SMALL_STATE(2116)] = 30991, - [SMALL_STATE(2117)] = 31061, + [SMALL_STATE(2092)] = 28755, + [SMALL_STATE(2093)] = 28825, + [SMALL_STATE(2094)] = 28895, + [SMALL_STATE(2095)] = 28965, + [SMALL_STATE(2096)] = 29035, + [SMALL_STATE(2097)] = 29105, + [SMALL_STATE(2098)] = 29179, + [SMALL_STATE(2099)] = 29249, + [SMALL_STATE(2100)] = 29319, + [SMALL_STATE(2101)] = 29389, + [SMALL_STATE(2102)] = 29459, + [SMALL_STATE(2103)] = 29529, + [SMALL_STATE(2104)] = 29599, + [SMALL_STATE(2105)] = 29669, + [SMALL_STATE(2106)] = 29739, + [SMALL_STATE(2107)] = 29877, + [SMALL_STATE(2108)] = 30015, + [SMALL_STATE(2109)] = 30153, + [SMALL_STATE(2110)] = 30291, + [SMALL_STATE(2111)] = 30429, + [SMALL_STATE(2112)] = 30567, + [SMALL_STATE(2113)] = 30637, + [SMALL_STATE(2114)] = 30707, + [SMALL_STATE(2115)] = 30785, + [SMALL_STATE(2116)] = 30923, + [SMALL_STATE(2117)] = 30993, [SMALL_STATE(2118)] = 31131, - [SMALL_STATE(2119)] = 31205, - [SMALL_STATE(2120)] = 31279, - [SMALL_STATE(2121)] = 31349, - [SMALL_STATE(2122)] = 31419, - [SMALL_STATE(2123)] = 31489, - [SMALL_STATE(2124)] = 31627, - [SMALL_STATE(2125)] = 31697, - [SMALL_STATE(2126)] = 31767, - [SMALL_STATE(2127)] = 31841, - [SMALL_STATE(2128)] = 31911, - [SMALL_STATE(2129)] = 31981, - [SMALL_STATE(2130)] = 32051, - [SMALL_STATE(2131)] = 32125, - [SMALL_STATE(2132)] = 32195, - [SMALL_STATE(2133)] = 32265, - [SMALL_STATE(2134)] = 32403, - [SMALL_STATE(2135)] = 32473, - [SMALL_STATE(2136)] = 32543, - [SMALL_STATE(2137)] = 32681, - [SMALL_STATE(2138)] = 32751, - [SMALL_STATE(2139)] = 32821, - [SMALL_STATE(2140)] = 32891, - [SMALL_STATE(2141)] = 32961, - [SMALL_STATE(2142)] = 33099, - [SMALL_STATE(2143)] = 33237, - [SMALL_STATE(2144)] = 33375, - [SMALL_STATE(2145)] = 33513, - [SMALL_STATE(2146)] = 33651, - [SMALL_STATE(2147)] = 33789, - [SMALL_STATE(2148)] = 33927, - [SMALL_STATE(2149)] = 34065, - [SMALL_STATE(2150)] = 34203, - [SMALL_STATE(2151)] = 34341, - [SMALL_STATE(2152)] = 34479, - [SMALL_STATE(2153)] = 34617, - [SMALL_STATE(2154)] = 34687, - [SMALL_STATE(2155)] = 34825, - [SMALL_STATE(2156)] = 34895, - [SMALL_STATE(2157)] = 35033, - [SMALL_STATE(2158)] = 35103, - [SMALL_STATE(2159)] = 35173, - [SMALL_STATE(2160)] = 35311, - [SMALL_STATE(2161)] = 35381, - [SMALL_STATE(2162)] = 35451, - [SMALL_STATE(2163)] = 35521, - [SMALL_STATE(2164)] = 35591, - [SMALL_STATE(2165)] = 35661, - [SMALL_STATE(2166)] = 35799, - [SMALL_STATE(2167)] = 35937, - [SMALL_STATE(2168)] = 36075, - [SMALL_STATE(2169)] = 36213, - [SMALL_STATE(2170)] = 36351, - [SMALL_STATE(2171)] = 36429, - [SMALL_STATE(2172)] = 36499, - [SMALL_STATE(2173)] = 36569, - [SMALL_STATE(2174)] = 36649, - [SMALL_STATE(2175)] = 36719, + [SMALL_STATE(2119)] = 31269, + [SMALL_STATE(2120)] = 31343, + [SMALL_STATE(2121)] = 31481, + [SMALL_STATE(2122)] = 31619, + [SMALL_STATE(2123)] = 31757, + [SMALL_STATE(2124)] = 31827, + [SMALL_STATE(2125)] = 31897, + [SMALL_STATE(2126)] = 31967, + [SMALL_STATE(2127)] = 32041, + [SMALL_STATE(2128)] = 32111, + [SMALL_STATE(2129)] = 32183, + [SMALL_STATE(2130)] = 32253, + [SMALL_STATE(2131)] = 32323, + [SMALL_STATE(2132)] = 32393, + [SMALL_STATE(2133)] = 32463, + [SMALL_STATE(2134)] = 32601, + [SMALL_STATE(2135)] = 32671, + [SMALL_STATE(2136)] = 32741, + [SMALL_STATE(2137)] = 32811, + [SMALL_STATE(2138)] = 32883, + [SMALL_STATE(2139)] = 32953, + [SMALL_STATE(2140)] = 33033, + [SMALL_STATE(2141)] = 33103, + [SMALL_STATE(2142)] = 33173, + [SMALL_STATE(2143)] = 33247, + [SMALL_STATE(2144)] = 33317, + [SMALL_STATE(2145)] = 33387, + [SMALL_STATE(2146)] = 33461, + [SMALL_STATE(2147)] = 33531, + [SMALL_STATE(2148)] = 33601, + [SMALL_STATE(2149)] = 33739, + [SMALL_STATE(2150)] = 33877, + [SMALL_STATE(2151)] = 33947, + [SMALL_STATE(2152)] = 34085, + [SMALL_STATE(2153)] = 34223, + [SMALL_STATE(2154)] = 34293, + [SMALL_STATE(2155)] = 34363, + [SMALL_STATE(2156)] = 34433, + [SMALL_STATE(2157)] = 34571, + [SMALL_STATE(2158)] = 34709, + [SMALL_STATE(2159)] = 34847, + [SMALL_STATE(2160)] = 34985, + [SMALL_STATE(2161)] = 35123, + [SMALL_STATE(2162)] = 35261, + [SMALL_STATE(2163)] = 35399, + [SMALL_STATE(2164)] = 35537, + [SMALL_STATE(2165)] = 35607, + [SMALL_STATE(2166)] = 35677, + [SMALL_STATE(2167)] = 35815, + [SMALL_STATE(2168)] = 35953, + [SMALL_STATE(2169)] = 36091, + [SMALL_STATE(2170)] = 36229, + [SMALL_STATE(2171)] = 36367, + [SMALL_STATE(2172)] = 36505, + [SMALL_STATE(2173)] = 36643, + [SMALL_STATE(2174)] = 36717, + [SMALL_STATE(2175)] = 36787, [SMALL_STATE(2176)] = 36857, [SMALL_STATE(2177)] = 36928, [SMALL_STATE(2178)] = 36999, [SMALL_STATE(2179)] = 37070, - [SMALL_STATE(2180)] = 37139, - [SMALL_STATE(2181)] = 37210, + [SMALL_STATE(2180)] = 37141, + [SMALL_STATE(2181)] = 37212, [SMALL_STATE(2182)] = 37283, - [SMALL_STATE(2183)] = 37360, - [SMALL_STATE(2184)] = 37433, - [SMALL_STATE(2185)] = 37504, - [SMALL_STATE(2186)] = 37575, - [SMALL_STATE(2187)] = 37646, - [SMALL_STATE(2188)] = 37717, - [SMALL_STATE(2189)] = 37788, - [SMALL_STATE(2190)] = 37859, - [SMALL_STATE(2191)] = 37930, - [SMALL_STATE(2192)] = 38001, - [SMALL_STATE(2193)] = 38072, - [SMALL_STATE(2194)] = 38143, - [SMALL_STATE(2195)] = 38214, - [SMALL_STATE(2196)] = 38285, - [SMALL_STATE(2197)] = 38356, - [SMALL_STATE(2198)] = 38427, - [SMALL_STATE(2199)] = 38498, - [SMALL_STATE(2200)] = 38569, - [SMALL_STATE(2201)] = 38640, - [SMALL_STATE(2202)] = 38711, - [SMALL_STATE(2203)] = 38782, - [SMALL_STATE(2204)] = 38853, - [SMALL_STATE(2205)] = 38924, - [SMALL_STATE(2206)] = 38995, - [SMALL_STATE(2207)] = 39066, - [SMALL_STATE(2208)] = 39137, - [SMALL_STATE(2209)] = 39208, - [SMALL_STATE(2210)] = 39279, - [SMALL_STATE(2211)] = 39350, - [SMALL_STATE(2212)] = 39421, - [SMALL_STATE(2213)] = 39490, - [SMALL_STATE(2214)] = 39561, - [SMALL_STATE(2215)] = 39632, - [SMALL_STATE(2216)] = 39703, - [SMALL_STATE(2217)] = 39772, - [SMALL_STATE(2218)] = 39843, - [SMALL_STATE(2219)] = 39914, - [SMALL_STATE(2220)] = 39991, - [SMALL_STATE(2221)] = 40078, - [SMALL_STATE(2222)] = 40149, - [SMALL_STATE(2223)] = 40220, - [SMALL_STATE(2224)] = 40291, - [SMALL_STATE(2225)] = 40362, - [SMALL_STATE(2226)] = 40435, - [SMALL_STATE(2227)] = 40506, - [SMALL_STATE(2228)] = 40579, - [SMALL_STATE(2229)] = 40650, - [SMALL_STATE(2230)] = 40749, - [SMALL_STATE(2231)] = 40822, - [SMALL_STATE(2232)] = 40893, - [SMALL_STATE(2233)] = 40964, - [SMALL_STATE(2234)] = 41035, - [SMALL_STATE(2235)] = 41106, - [SMALL_STATE(2236)] = 41177, - [SMALL_STATE(2237)] = 41248, - [SMALL_STATE(2238)] = 41319, - [SMALL_STATE(2239)] = 41390, - [SMALL_STATE(2240)] = 41461, - [SMALL_STATE(2241)] = 41532, - [SMALL_STATE(2242)] = 41603, - [SMALL_STATE(2243)] = 41674, - [SMALL_STATE(2244)] = 41745, - [SMALL_STATE(2245)] = 41816, - [SMALL_STATE(2246)] = 41887, - [SMALL_STATE(2247)] = 41986, - [SMALL_STATE(2248)] = 42057, - [SMALL_STATE(2249)] = 42128, - [SMALL_STATE(2250)] = 42199, - [SMALL_STATE(2251)] = 42272, - [SMALL_STATE(2252)] = 42341, - [SMALL_STATE(2253)] = 42412, - [SMALL_STATE(2254)] = 42483, - [SMALL_STATE(2255)] = 42556, - [SMALL_STATE(2256)] = 42627, - [SMALL_STATE(2257)] = 42700, - [SMALL_STATE(2258)] = 42773, - [SMALL_STATE(2259)] = 42844, - [SMALL_STATE(2260)] = 42915, - [SMALL_STATE(2261)] = 42986, - [SMALL_STATE(2262)] = 43057, - [SMALL_STATE(2263)] = 43128, - [SMALL_STATE(2264)] = 43199, - [SMALL_STATE(2265)] = 43276, - [SMALL_STATE(2266)] = 43347, - [SMALL_STATE(2267)] = 43418, - [SMALL_STATE(2268)] = 43517, - [SMALL_STATE(2269)] = 43590, - [SMALL_STATE(2270)] = 43661, - [SMALL_STATE(2271)] = 43732, - [SMALL_STATE(2272)] = 43803, - [SMALL_STATE(2273)] = 43874, - [SMALL_STATE(2274)] = 43945, - [SMALL_STATE(2275)] = 44016, - [SMALL_STATE(2276)] = 44087, - [SMALL_STATE(2277)] = 44158, - [SMALL_STATE(2278)] = 44231, - [SMALL_STATE(2279)] = 44302, - [SMALL_STATE(2280)] = 44373, - [SMALL_STATE(2281)] = 44444, - [SMALL_STATE(2282)] = 44515, - [SMALL_STATE(2283)] = 44586, - [SMALL_STATE(2284)] = 44659, - [SMALL_STATE(2285)] = 44730, - [SMALL_STATE(2286)] = 44803, - [SMALL_STATE(2287)] = 44874, - [SMALL_STATE(2288)] = 44945, - [SMALL_STATE(2289)] = 45018, - [SMALL_STATE(2290)] = 45089, - [SMALL_STATE(2291)] = 45162, - [SMALL_STATE(2292)] = 45233, - [SMALL_STATE(2293)] = 45304, - [SMALL_STATE(2294)] = 45375, - [SMALL_STATE(2295)] = 45446, - [SMALL_STATE(2296)] = 45517, - [SMALL_STATE(2297)] = 45588, - [SMALL_STATE(2298)] = 45687, - [SMALL_STATE(2299)] = 45758, - [SMALL_STATE(2300)] = 45827, - [SMALL_STATE(2301)] = 45898, - [SMALL_STATE(2302)] = 45969, - [SMALL_STATE(2303)] = 46040, - [SMALL_STATE(2304)] = 46111, - [SMALL_STATE(2305)] = 46182, - [SMALL_STATE(2306)] = 46255, - [SMALL_STATE(2307)] = 46328, - [SMALL_STATE(2308)] = 46399, - [SMALL_STATE(2309)] = 46472, - [SMALL_STATE(2310)] = 46543, - [SMALL_STATE(2311)] = 46614, - [SMALL_STATE(2312)] = 46685, - [SMALL_STATE(2313)] = 46758, - [SMALL_STATE(2314)] = 46829, - [SMALL_STATE(2315)] = 46902, - [SMALL_STATE(2316)] = 46975, - [SMALL_STATE(2317)] = 47046, - [SMALL_STATE(2318)] = 47117, - [SMALL_STATE(2319)] = 47188, - [SMALL_STATE(2320)] = 47259, - [SMALL_STATE(2321)] = 47330, - [SMALL_STATE(2322)] = 47399, + [SMALL_STATE(2183)] = 37354, + [SMALL_STATE(2184)] = 37425, + [SMALL_STATE(2185)] = 37496, + [SMALL_STATE(2186)] = 37567, + [SMALL_STATE(2187)] = 37638, + [SMALL_STATE(2188)] = 37709, + [SMALL_STATE(2189)] = 37780, + [SMALL_STATE(2190)] = 37851, + [SMALL_STATE(2191)] = 37922, + [SMALL_STATE(2192)] = 37993, + [SMALL_STATE(2193)] = 38064, + [SMALL_STATE(2194)] = 38135, + [SMALL_STATE(2195)] = 38206, + [SMALL_STATE(2196)] = 38277, + [SMALL_STATE(2197)] = 38348, + [SMALL_STATE(2198)] = 38419, + [SMALL_STATE(2199)] = 38490, + [SMALL_STATE(2200)] = 38561, + [SMALL_STATE(2201)] = 38634, + [SMALL_STATE(2202)] = 38705, + [SMALL_STATE(2203)] = 38776, + [SMALL_STATE(2204)] = 38849, + [SMALL_STATE(2205)] = 38922, + [SMALL_STATE(2206)] = 38993, + [SMALL_STATE(2207)] = 39064, + [SMALL_STATE(2208)] = 39135, + [SMALL_STATE(2209)] = 39206, + [SMALL_STATE(2210)] = 39305, + [SMALL_STATE(2211)] = 39376, + [SMALL_STATE(2212)] = 39463, + [SMALL_STATE(2213)] = 39534, + [SMALL_STATE(2214)] = 39605, + [SMALL_STATE(2215)] = 39676, + [SMALL_STATE(2216)] = 39747, + [SMALL_STATE(2217)] = 39816, + [SMALL_STATE(2218)] = 39885, + [SMALL_STATE(2219)] = 39958, + [SMALL_STATE(2220)] = 40031, + [SMALL_STATE(2221)] = 40102, + [SMALL_STATE(2222)] = 40173, + [SMALL_STATE(2223)] = 40244, + [SMALL_STATE(2224)] = 40315, + [SMALL_STATE(2225)] = 40386, + [SMALL_STATE(2226)] = 40457, + [SMALL_STATE(2227)] = 40528, + [SMALL_STATE(2228)] = 40599, + [SMALL_STATE(2229)] = 40670, + [SMALL_STATE(2230)] = 40741, + [SMALL_STATE(2231)] = 40812, + [SMALL_STATE(2232)] = 40883, + [SMALL_STATE(2233)] = 40960, + [SMALL_STATE(2234)] = 41031, + [SMALL_STATE(2235)] = 41102, + [SMALL_STATE(2236)] = 41173, + [SMALL_STATE(2237)] = 41244, + [SMALL_STATE(2238)] = 41315, + [SMALL_STATE(2239)] = 41386, + [SMALL_STATE(2240)] = 41457, + [SMALL_STATE(2241)] = 41528, + [SMALL_STATE(2242)] = 41599, + [SMALL_STATE(2243)] = 41670, + [SMALL_STATE(2244)] = 41741, + [SMALL_STATE(2245)] = 41812, + [SMALL_STATE(2246)] = 41883, + [SMALL_STATE(2247)] = 41954, + [SMALL_STATE(2248)] = 42025, + [SMALL_STATE(2249)] = 42096, + [SMALL_STATE(2250)] = 42167, + [SMALL_STATE(2251)] = 42238, + [SMALL_STATE(2252)] = 42309, + [SMALL_STATE(2253)] = 42378, + [SMALL_STATE(2254)] = 42449, + [SMALL_STATE(2255)] = 42520, + [SMALL_STATE(2256)] = 42591, + [SMALL_STATE(2257)] = 42662, + [SMALL_STATE(2258)] = 42733, + [SMALL_STATE(2259)] = 42804, + [SMALL_STATE(2260)] = 42875, + [SMALL_STATE(2261)] = 42946, + [SMALL_STATE(2262)] = 43017, + [SMALL_STATE(2263)] = 43088, + [SMALL_STATE(2264)] = 43161, + [SMALL_STATE(2265)] = 43234, + [SMALL_STATE(2266)] = 43305, + [SMALL_STATE(2267)] = 43374, + [SMALL_STATE(2268)] = 43447, + [SMALL_STATE(2269)] = 43518, + [SMALL_STATE(2270)] = 43589, + [SMALL_STATE(2271)] = 43660, + [SMALL_STATE(2272)] = 43733, + [SMALL_STATE(2273)] = 43804, + [SMALL_STATE(2274)] = 43873, + [SMALL_STATE(2275)] = 43944, + [SMALL_STATE(2276)] = 44015, + [SMALL_STATE(2277)] = 44086, + [SMALL_STATE(2278)] = 44157, + [SMALL_STATE(2279)] = 44230, + [SMALL_STATE(2280)] = 44329, + [SMALL_STATE(2281)] = 44428, + [SMALL_STATE(2282)] = 44501, + [SMALL_STATE(2283)] = 44572, + [SMALL_STATE(2284)] = 44643, + [SMALL_STATE(2285)] = 44714, + [SMALL_STATE(2286)] = 44787, + [SMALL_STATE(2287)] = 44858, + [SMALL_STATE(2288)] = 44931, + [SMALL_STATE(2289)] = 45002, + [SMALL_STATE(2290)] = 45075, + [SMALL_STATE(2291)] = 45146, + [SMALL_STATE(2292)] = 45217, + [SMALL_STATE(2293)] = 45288, + [SMALL_STATE(2294)] = 45365, + [SMALL_STATE(2295)] = 45436, + [SMALL_STATE(2296)] = 45507, + [SMALL_STATE(2297)] = 45578, + [SMALL_STATE(2298)] = 45649, + [SMALL_STATE(2299)] = 45720, + [SMALL_STATE(2300)] = 45793, + [SMALL_STATE(2301)] = 45864, + [SMALL_STATE(2302)] = 45935, + [SMALL_STATE(2303)] = 46006, + [SMALL_STATE(2304)] = 46077, + [SMALL_STATE(2305)] = 46176, + [SMALL_STATE(2306)] = 46247, + [SMALL_STATE(2307)] = 46316, + [SMALL_STATE(2308)] = 46387, + [SMALL_STATE(2309)] = 46458, + [SMALL_STATE(2310)] = 46531, + [SMALL_STATE(2311)] = 46602, + [SMALL_STATE(2312)] = 46679, + [SMALL_STATE(2313)] = 46750, + [SMALL_STATE(2314)] = 46821, + [SMALL_STATE(2315)] = 46892, + [SMALL_STATE(2316)] = 46965, + [SMALL_STATE(2317)] = 47036, + [SMALL_STATE(2318)] = 47109, + [SMALL_STATE(2319)] = 47180, + [SMALL_STATE(2320)] = 47253, + [SMALL_STATE(2321)] = 47324, + [SMALL_STATE(2322)] = 47397, [SMALL_STATE(2323)] = 47470, [SMALL_STATE(2324)] = 47541, - [SMALL_STATE(2325)] = 47639, - [SMALL_STATE(2326)] = 47711, - [SMALL_STATE(2327)] = 47805, - [SMALL_STATE(2328)] = 47899, - [SMALL_STATE(2329)] = 47975, - [SMALL_STATE(2330)] = 48061, - [SMALL_STATE(2331)] = 48141, - [SMALL_STATE(2332)] = 48235, - [SMALL_STATE(2333)] = 48327, - [SMALL_STATE(2334)] = 48417, - [SMALL_STATE(2335)] = 48513, - [SMALL_STATE(2336)] = 48595, - [SMALL_STATE(2337)] = 48667, - [SMALL_STATE(2338)] = 48735, - [SMALL_STATE(2339)] = 48811, - [SMALL_STATE(2340)] = 48895, - [SMALL_STATE(2341)] = 48967, - [SMALL_STATE(2342)] = 49039, - [SMALL_STATE(2343)] = 49135, - [SMALL_STATE(2344)] = 49219, - [SMALL_STATE(2345)] = 49319, - [SMALL_STATE(2346)] = 49415, - [SMALL_STATE(2347)] = 49487, - [SMALL_STATE(2348)] = 49585, - [SMALL_STATE(2349)] = 49685, - [SMALL_STATE(2350)] = 49767, - [SMALL_STATE(2351)] = 49863, - [SMALL_STATE(2352)] = 49941, - [SMALL_STATE(2353)] = 50023, - [SMALL_STATE(2354)] = 50123, - [SMALL_STATE(2355)] = 50211, - [SMALL_STATE(2356)] = 50281, - [SMALL_STATE(2357)] = 50363, - [SMALL_STATE(2358)] = 50461, - [SMALL_STATE(2359)] = 50549, - [SMALL_STATE(2360)] = 50633, - [SMALL_STATE(2361)] = 50717, - [SMALL_STATE(2362)] = 50813, - [SMALL_STATE(2363)] = 50913, - [SMALL_STATE(2364)] = 51013, - [SMALL_STATE(2365)] = 51109, - [SMALL_STATE(2366)] = 51205, - [SMALL_STATE(2367)] = 51279, - [SMALL_STATE(2368)] = 51375, - [SMALL_STATE(2369)] = 51471, - [SMALL_STATE(2370)] = 51553, - [SMALL_STATE(2371)] = 51651, - [SMALL_STATE(2372)] = 51753, - [SMALL_STATE(2373)] = 51841, - [SMALL_STATE(2374)] = 51919, - [SMALL_STATE(2375)] = 52015, - [SMALL_STATE(2376)] = 52103, - [SMALL_STATE(2377)] = 52187, - [SMALL_STATE(2378)] = 52275, - [SMALL_STATE(2379)] = 52361, - [SMALL_STATE(2380)] = 52437, - [SMALL_STATE(2381)] = 52537, - [SMALL_STATE(2382)] = 52621, - [SMALL_STATE(2383)] = 52719, - [SMALL_STATE(2384)] = 52819, - [SMALL_STATE(2385)] = 52915, - [SMALL_STATE(2386)] = 52983, - [SMALL_STATE(2387)] = 53085, - [SMALL_STATE(2388)] = 53157, - [SMALL_STATE(2389)] = 53245, - [SMALL_STATE(2390)] = 53333, - [SMALL_STATE(2391)] = 53403, - [SMALL_STATE(2392)] = 53477, - [SMALL_STATE(2393)] = 53567, - [SMALL_STATE(2394)] = 53645, - [SMALL_STATE(2395)] = 53747, - [SMALL_STATE(2396)] = 53819, - [SMALL_STATE(2397)] = 53895, - [SMALL_STATE(2398)] = 53983, - [SMALL_STATE(2399)] = 54063, - [SMALL_STATE(2400)] = 54155, - [SMALL_STATE(2401)] = 54229, - [SMALL_STATE(2402)] = 54323, - [SMALL_STATE(2403)] = 54413, - [SMALL_STATE(2404)] = 54485, - [SMALL_STATE(2405)] = 54559, - [SMALL_STATE(2406)] = 54651, - [SMALL_STATE(2407)] = 54729, - [SMALL_STATE(2408)] = 54819, - [SMALL_STATE(2409)] = 54909, - [SMALL_STATE(2410)] = 54999, - [SMALL_STATE(2411)] = 55095, - [SMALL_STATE(2412)] = 55189, - [SMALL_STATE(2413)] = 55273, - [SMALL_STATE(2414)] = 55353, - [SMALL_STATE(2415)] = 55451, - [SMALL_STATE(2416)] = 55541, - [SMALL_STATE(2417)] = 55623, - [SMALL_STATE(2418)] = 55697, - [SMALL_STATE(2419)] = 55793, - [SMALL_STATE(2420)] = 55865, - [SMALL_STATE(2421)] = 55941, - [SMALL_STATE(2422)] = 56023, - [SMALL_STATE(2423)] = 56115, - [SMALL_STATE(2424)] = 56191, - [SMALL_STATE(2425)] = 56291, - [SMALL_STATE(2426)] = 56371, - [SMALL_STATE(2427)] = 56463, - [SMALL_STATE(2428)] = 56543, - [SMALL_STATE(2429)] = 56635, - [SMALL_STATE(2430)] = 56709, - [SMALL_STATE(2431)] = 56793, - [SMALL_STATE(2432)] = 56881, - [SMALL_STATE(2433)] = 56977, - [SMALL_STATE(2434)] = 57067, - [SMALL_STATE(2435)] = 57161, - [SMALL_STATE(2436)] = 57257, - [SMALL_STATE(2437)] = 57353, - [SMALL_STATE(2438)] = 57423, - [SMALL_STATE(2439)] = 57519, - [SMALL_STATE(2440)] = 57609, - [SMALL_STATE(2441)] = 57707, - [SMALL_STATE(2442)] = 57803, - [SMALL_STATE(2443)] = 57897, - [SMALL_STATE(2444)] = 57973, - [SMALL_STATE(2445)] = 58043, - [SMALL_STATE(2446)] = 58135, - [SMALL_STATE(2447)] = 58221, - [SMALL_STATE(2448)] = 58317, - [SMALL_STATE(2449)] = 58411, - [SMALL_STATE(2450)] = 58509, - [SMALL_STATE(2451)] = 58591, - [SMALL_STATE(2452)] = 58659, + [SMALL_STATE(2325)] = 47637, + [SMALL_STATE(2326)] = 47719, + [SMALL_STATE(2327)] = 47815, + [SMALL_STATE(2328)] = 47911, + [SMALL_STATE(2329)] = 47999, + [SMALL_STATE(2330)] = 48097, + [SMALL_STATE(2331)] = 48197, + [SMALL_STATE(2332)] = 48269, + [SMALL_STATE(2333)] = 48367, + [SMALL_STATE(2334)] = 48455, + [SMALL_STATE(2335)] = 48551, + [SMALL_STATE(2336)] = 48635, + [SMALL_STATE(2337)] = 48703, + [SMALL_STATE(2338)] = 48777, + [SMALL_STATE(2339)] = 48871, + [SMALL_STATE(2340)] = 48971, + [SMALL_STATE(2341)] = 49043, + [SMALL_STATE(2342)] = 49115, + [SMALL_STATE(2343)] = 49189, + [SMALL_STATE(2344)] = 49273, + [SMALL_STATE(2345)] = 49373, + [SMALL_STATE(2346)] = 49451, + [SMALL_STATE(2347)] = 49523, + [SMALL_STATE(2348)] = 49625, + [SMALL_STATE(2349)] = 49725, + [SMALL_STATE(2350)] = 49807, + [SMALL_STATE(2351)] = 49881, + [SMALL_STATE(2352)] = 49953, + [SMALL_STATE(2353)] = 50043, + [SMALL_STATE(2354)] = 50119, + [SMALL_STATE(2355)] = 50219, + [SMALL_STATE(2356)] = 50307, + [SMALL_STATE(2357)] = 50381, + [SMALL_STATE(2358)] = 50463, + [SMALL_STATE(2359)] = 50541, + [SMALL_STATE(2360)] = 50627, + [SMALL_STATE(2361)] = 50729, + [SMALL_STATE(2362)] = 50803, + [SMALL_STATE(2363)] = 50901, + [SMALL_STATE(2364)] = 50973, + [SMALL_STATE(2365)] = 51069, + [SMALL_STATE(2366)] = 51139, + [SMALL_STATE(2367)] = 51235, + [SMALL_STATE(2368)] = 51333, + [SMALL_STATE(2369)] = 51425, + [SMALL_STATE(2370)] = 51515, + [SMALL_STATE(2371)] = 51617, + [SMALL_STATE(2372)] = 51701, + [SMALL_STATE(2373)] = 51785, + [SMALL_STATE(2374)] = 51869, + [SMALL_STATE(2375)] = 51939, + [SMALL_STATE(2376)] = 52023, + [SMALL_STATE(2377)] = 52111, + [SMALL_STATE(2378)] = 52193, + [SMALL_STATE(2379)] = 52283, + [SMALL_STATE(2380)] = 52379, + [SMALL_STATE(2381)] = 52473, + [SMALL_STATE(2382)] = 52575, + [SMALL_STATE(2383)] = 52659, + [SMALL_STATE(2384)] = 52741, + [SMALL_STATE(2385)] = 52817, + [SMALL_STATE(2386)] = 52913, + [SMALL_STATE(2387)] = 53009, + [SMALL_STATE(2388)] = 53089, + [SMALL_STATE(2389)] = 53181, + [SMALL_STATE(2390)] = 53249, + [SMALL_STATE(2391)] = 53325, + [SMALL_STATE(2392)] = 53421, + [SMALL_STATE(2393)] = 53515, + [SMALL_STATE(2394)] = 53601, + [SMALL_STATE(2395)] = 53701, + [SMALL_STATE(2396)] = 53773, + [SMALL_STATE(2397)] = 53843, + [SMALL_STATE(2398)] = 53937, + [SMALL_STATE(2399)] = 54033, + [SMALL_STATE(2400)] = 54119, + [SMALL_STATE(2401)] = 54193, + [SMALL_STATE(2402)] = 54283, + [SMALL_STATE(2403)] = 54363, + [SMALL_STATE(2404)] = 54461, + [SMALL_STATE(2405)] = 54535, + [SMALL_STATE(2406)] = 54635, + [SMALL_STATE(2407)] = 54719, + [SMALL_STATE(2408)] = 54807, + [SMALL_STATE(2409)] = 54877, + [SMALL_STATE(2410)] = 54973, + [SMALL_STATE(2411)] = 55055, + [SMALL_STATE(2412)] = 55123, + [SMALL_STATE(2413)] = 55211, + [SMALL_STATE(2414)] = 55305, + [SMALL_STATE(2415)] = 55397, + [SMALL_STATE(2416)] = 55493, + [SMALL_STATE(2417)] = 55591, + [SMALL_STATE(2418)] = 55667, + [SMALL_STATE(2419)] = 55753, + [SMALL_STATE(2420)] = 55849, + [SMALL_STATE(2421)] = 55931, + [SMALL_STATE(2422)] = 56007, + [SMALL_STATE(2423)] = 56085, + [SMALL_STATE(2424)] = 56163, + [SMALL_STATE(2425)] = 56261, + [SMALL_STATE(2426)] = 56353, + [SMALL_STATE(2427)] = 56441, + [SMALL_STATE(2428)] = 56521, + [SMALL_STATE(2429)] = 56609, + [SMALL_STATE(2430)] = 56689, + [SMALL_STATE(2431)] = 56779, + [SMALL_STATE(2432)] = 56861, + [SMALL_STATE(2433)] = 56951, + [SMALL_STATE(2434)] = 57043, + [SMALL_STATE(2435)] = 57141, + [SMALL_STATE(2436)] = 57233, + [SMALL_STATE(2437)] = 57323, + [SMALL_STATE(2438)] = 57399, + [SMALL_STATE(2439)] = 57475, + [SMALL_STATE(2440)] = 57573, + [SMALL_STATE(2441)] = 57667, + [SMALL_STATE(2442)] = 57759, + [SMALL_STATE(2443)] = 57859, + [SMALL_STATE(2444)] = 57955, + [SMALL_STATE(2445)] = 58051, + [SMALL_STATE(2446)] = 58147, + [SMALL_STATE(2447)] = 58227, + [SMALL_STATE(2448)] = 58323, + [SMALL_STATE(2449)] = 58415, + [SMALL_STATE(2450)] = 58503, + [SMALL_STATE(2451)] = 58573, + [SMALL_STATE(2452)] = 58667, [SMALL_STATE(2453)] = 58745, - [SMALL_STATE(2454)] = 58837, - [SMALL_STATE(2455)] = 58931, - [SMALL_STATE(2456)] = 59009, - [SMALL_STATE(2457)] = 59111, - [SMALL_STATE(2458)] = 59209, - [SMALL_STATE(2459)] = 59301, - [SMALL_STATE(2460)] = 59387, - [SMALL_STATE(2461)] = 59461, - [SMALL_STATE(2462)] = 59531, + [SMALL_STATE(2454)] = 58831, + [SMALL_STATE(2455)] = 58923, + [SMALL_STATE(2456)] = 59011, + [SMALL_STATE(2457)] = 59105, + [SMALL_STATE(2458)] = 59177, + [SMALL_STATE(2459)] = 59271, + [SMALL_STATE(2460)] = 59367, + [SMALL_STATE(2461)] = 59439, + [SMALL_STATE(2462)] = 59529, [SMALL_STATE(2463)] = 59619, - [SMALL_STATE(2464)] = 59686, - [SMALL_STATE(2465)] = 59753, - [SMALL_STATE(2466)] = 59820, - [SMALL_STATE(2467)] = 59887, - [SMALL_STATE(2468)] = 59954, - [SMALL_STATE(2469)] = 60021, - [SMALL_STATE(2470)] = 60088, - [SMALL_STATE(2471)] = 60173, - [SMALL_STATE(2472)] = 60240, - [SMALL_STATE(2473)] = 60307, - [SMALL_STATE(2474)] = 60374, - [SMALL_STATE(2475)] = 60441, - [SMALL_STATE(2476)] = 60508, - [SMALL_STATE(2477)] = 60575, - [SMALL_STATE(2478)] = 60642, - [SMALL_STATE(2479)] = 60709, - [SMALL_STATE(2480)] = 60790, - [SMALL_STATE(2481)] = 60857, - [SMALL_STATE(2482)] = 60924, - [SMALL_STATE(2483)] = 60991, - [SMALL_STATE(2484)] = 61058, - [SMALL_STATE(2485)] = 61139, - [SMALL_STATE(2486)] = 61220, - [SMALL_STATE(2487)] = 61301, - [SMALL_STATE(2488)] = 61368, - [SMALL_STATE(2489)] = 61435, - [SMALL_STATE(2490)] = 61502, - [SMALL_STATE(2491)] = 61581, - [SMALL_STATE(2492)] = 61648, - [SMALL_STATE(2493)] = 61721, - [SMALL_STATE(2494)] = 61788, - [SMALL_STATE(2495)] = 61871, - [SMALL_STATE(2496)] = 61938, - [SMALL_STATE(2497)] = 62007, - [SMALL_STATE(2498)] = 62074, - [SMALL_STATE(2499)] = 62141, - [SMALL_STATE(2500)] = 62234, - [SMALL_STATE(2501)] = 62301, - [SMALL_STATE(2502)] = 62396, - [SMALL_STATE(2503)] = 62463, - [SMALL_STATE(2504)] = 62560, - [SMALL_STATE(2505)] = 62627, - [SMALL_STATE(2506)] = 62712, - [SMALL_STATE(2507)] = 62779, - [SMALL_STATE(2508)] = 62846, - [SMALL_STATE(2509)] = 62913, - [SMALL_STATE(2510)] = 62990, - [SMALL_STATE(2511)] = 63057, - [SMALL_STATE(2512)] = 63124, - [SMALL_STATE(2513)] = 63191, - [SMALL_STATE(2514)] = 63260, - [SMALL_STATE(2515)] = 63329, - [SMALL_STATE(2516)] = 63398, - [SMALL_STATE(2517)] = 63467, - [SMALL_STATE(2518)] = 63556, - [SMALL_STATE(2519)] = 63623, - [SMALL_STATE(2520)] = 63714, - [SMALL_STATE(2521)] = 63781, - [SMALL_STATE(2522)] = 63862, - [SMALL_STATE(2523)] = 63933, - [SMALL_STATE(2524)] = 64000, - [SMALL_STATE(2525)] = 64067, - [SMALL_STATE(2526)] = 64134, - [SMALL_STATE(2527)] = 64201, - [SMALL_STATE(2528)] = 64268, - [SMALL_STATE(2529)] = 64335, - [SMALL_STATE(2530)] = 64420, - [SMALL_STATE(2531)] = 64489, - [SMALL_STATE(2532)] = 64574, - [SMALL_STATE(2533)] = 64643, - [SMALL_STATE(2534)] = 64710, - [SMALL_STATE(2535)] = 64777, - [SMALL_STATE(2536)] = 64844, - [SMALL_STATE(2537)] = 64911, - [SMALL_STATE(2538)] = 64978, - [SMALL_STATE(2539)] = 65045, - [SMALL_STATE(2540)] = 65112, - [SMALL_STATE(2541)] = 65179, - [SMALL_STATE(2542)] = 65246, - [SMALL_STATE(2543)] = 65313, - [SMALL_STATE(2544)] = 65380, - [SMALL_STATE(2545)] = 65447, - [SMALL_STATE(2546)] = 65514, - [SMALL_STATE(2547)] = 65581, - [SMALL_STATE(2548)] = 65654, - [SMALL_STATE(2549)] = 65721, - [SMALL_STATE(2550)] = 65788, - [SMALL_STATE(2551)] = 65859, - [SMALL_STATE(2552)] = 65926, - [SMALL_STATE(2553)] = 65993, + [SMALL_STATE(2464)] = 59704, + [SMALL_STATE(2465)] = 59775, + [SMALL_STATE(2466)] = 59842, + [SMALL_STATE(2467)] = 59909, + [SMALL_STATE(2468)] = 59976, + [SMALL_STATE(2469)] = 60043, + [SMALL_STATE(2470)] = 60110, + [SMALL_STATE(2471)] = 60177, + [SMALL_STATE(2472)] = 60244, + [SMALL_STATE(2473)] = 60325, + [SMALL_STATE(2474)] = 60410, + [SMALL_STATE(2475)] = 60477, + [SMALL_STATE(2476)] = 60544, + [SMALL_STATE(2477)] = 60611, + [SMALL_STATE(2478)] = 60680, + [SMALL_STATE(2479)] = 60747, + [SMALL_STATE(2480)] = 60818, + [SMALL_STATE(2481)] = 60885, + [SMALL_STATE(2482)] = 60952, + [SMALL_STATE(2483)] = 61025, + [SMALL_STATE(2484)] = 61092, + [SMALL_STATE(2485)] = 61159, + [SMALL_STATE(2486)] = 61226, + [SMALL_STATE(2487)] = 61293, + [SMALL_STATE(2488)] = 61360, + [SMALL_STATE(2489)] = 61429, + [SMALL_STATE(2490)] = 61496, + [SMALL_STATE(2491)] = 61563, + [SMALL_STATE(2492)] = 61630, + [SMALL_STATE(2493)] = 61697, + [SMALL_STATE(2494)] = 61764, + [SMALL_STATE(2495)] = 61831, + [SMALL_STATE(2496)] = 61910, + [SMALL_STATE(2497)] = 61977, + [SMALL_STATE(2498)] = 62044, + [SMALL_STATE(2499)] = 62111, + [SMALL_STATE(2500)] = 62178, + [SMALL_STATE(2501)] = 62245, + [SMALL_STATE(2502)] = 62312, + [SMALL_STATE(2503)] = 62379, + [SMALL_STATE(2504)] = 62460, + [SMALL_STATE(2505)] = 62527, + [SMALL_STATE(2506)] = 62594, + [SMALL_STATE(2507)] = 62661, + [SMALL_STATE(2508)] = 62728, + [SMALL_STATE(2509)] = 62795, + [SMALL_STATE(2510)] = 62864, + [SMALL_STATE(2511)] = 62931, + [SMALL_STATE(2512)] = 62998, + [SMALL_STATE(2513)] = 63065, + [SMALL_STATE(2514)] = 63148, + [SMALL_STATE(2515)] = 63221, + [SMALL_STATE(2516)] = 63288, + [SMALL_STATE(2517)] = 63355, + [SMALL_STATE(2518)] = 63422, + [SMALL_STATE(2519)] = 63517, + [SMALL_STATE(2520)] = 63584, + [SMALL_STATE(2521)] = 63681, + [SMALL_STATE(2522)] = 63748, + [SMALL_STATE(2523)] = 63815, + [SMALL_STATE(2524)] = 63882, + [SMALL_STATE(2525)] = 63949, + [SMALL_STATE(2526)] = 64016, + [SMALL_STATE(2527)] = 64083, + [SMALL_STATE(2528)] = 64168, + [SMALL_STATE(2529)] = 64235, + [SMALL_STATE(2530)] = 64302, + [SMALL_STATE(2531)] = 64369, + [SMALL_STATE(2532)] = 64436, + [SMALL_STATE(2533)] = 64505, + [SMALL_STATE(2534)] = 64590, + [SMALL_STATE(2535)] = 64657, + [SMALL_STATE(2536)] = 64724, + [SMALL_STATE(2537)] = 64805, + [SMALL_STATE(2538)] = 64886, + [SMALL_STATE(2539)] = 64955, + [SMALL_STATE(2540)] = 65036, + [SMALL_STATE(2541)] = 65105, + [SMALL_STATE(2542)] = 65174, + [SMALL_STATE(2543)] = 65241, + [SMALL_STATE(2544)] = 65318, + [SMALL_STATE(2545)] = 65385, + [SMALL_STATE(2546)] = 65452, + [SMALL_STATE(2547)] = 65539, + [SMALL_STATE(2548)] = 65606, + [SMALL_STATE(2549)] = 65695, + [SMALL_STATE(2550)] = 65762, + [SMALL_STATE(2551)] = 65829, + [SMALL_STATE(2552)] = 65896, + [SMALL_STATE(2553)] = 65987, [SMALL_STATE(2554)] = 66080, - [SMALL_STATE(2555)] = 66162, - [SMALL_STATE(2556)] = 66238, - [SMALL_STATE(2557)] = 66312, - [SMALL_STATE(2558)] = 66386, - [SMALL_STATE(2559)] = 66476, - [SMALL_STATE(2560)] = 66558, - [SMALL_STATE(2561)] = 66640, - [SMALL_STATE(2562)] = 66714, - [SMALL_STATE(2563)] = 66784, - [SMALL_STATE(2564)] = 66854, - [SMALL_STATE(2565)] = 66924, - [SMALL_STATE(2566)] = 66990, - [SMALL_STATE(2567)] = 67072, - [SMALL_STATE(2568)] = 67162, - [SMALL_STATE(2569)] = 67228, - [SMALL_STATE(2570)] = 67294, - [SMALL_STATE(2571)] = 67360, - [SMALL_STATE(2572)] = 67430, - [SMALL_STATE(2573)] = 67496, - [SMALL_STATE(2574)] = 67562, - [SMALL_STATE(2575)] = 67628, - [SMALL_STATE(2576)] = 67694, - [SMALL_STATE(2577)] = 67782, - [SMALL_STATE(2578)] = 67848, - [SMALL_STATE(2579)] = 67914, - [SMALL_STATE(2580)] = 68004, - [SMALL_STATE(2581)] = 68094, - [SMALL_STATE(2582)] = 68184, - [SMALL_STATE(2583)] = 68250, - [SMALL_STATE(2584)] = 68340, - [SMALL_STATE(2585)] = 68406, - [SMALL_STATE(2586)] = 68472, - [SMALL_STATE(2587)] = 68538, - [SMALL_STATE(2588)] = 68606, - [SMALL_STATE(2589)] = 68674, - [SMALL_STATE(2590)] = 68764, - [SMALL_STATE(2591)] = 68854, - [SMALL_STATE(2592)] = 68944, - [SMALL_STATE(2593)] = 69034, - [SMALL_STATE(2594)] = 69124, - [SMALL_STATE(2595)] = 69214, + [SMALL_STATE(2555)] = 66146, + [SMALL_STATE(2556)] = 66212, + [SMALL_STATE(2557)] = 66302, + [SMALL_STATE(2558)] = 66368, + [SMALL_STATE(2559)] = 66438, + [SMALL_STATE(2560)] = 66504, + [SMALL_STATE(2561)] = 66594, + [SMALL_STATE(2562)] = 66664, + [SMALL_STATE(2563)] = 66734, + [SMALL_STATE(2564)] = 66808, + [SMALL_STATE(2565)] = 66890, + [SMALL_STATE(2566)] = 66966, + [SMALL_STATE(2567)] = 67054, + [SMALL_STATE(2568)] = 67144, + [SMALL_STATE(2569)] = 67210, + [SMALL_STATE(2570)] = 67276, + [SMALL_STATE(2571)] = 67342, + [SMALL_STATE(2572)] = 67432, + [SMALL_STATE(2573)] = 67514, + [SMALL_STATE(2574)] = 67580, + [SMALL_STATE(2575)] = 67650, + [SMALL_STATE(2576)] = 67740, + [SMALL_STATE(2577)] = 67806, + [SMALL_STATE(2578)] = 67896, + [SMALL_STATE(2579)] = 67978, + [SMALL_STATE(2580)] = 68046, + [SMALL_STATE(2581)] = 68136, + [SMALL_STATE(2582)] = 68218, + [SMALL_STATE(2583)] = 68284, + [SMALL_STATE(2584)] = 68374, + [SMALL_STATE(2585)] = 68464, + [SMALL_STATE(2586)] = 68538, + [SMALL_STATE(2587)] = 68604, + [SMALL_STATE(2588)] = 68670, + [SMALL_STATE(2589)] = 68744, + [SMALL_STATE(2590)] = 68810, + [SMALL_STATE(2591)] = 68876, + [SMALL_STATE(2592)] = 68942, + [SMALL_STATE(2593)] = 69032, + [SMALL_STATE(2594)] = 69122, + [SMALL_STATE(2595)] = 69190, [SMALL_STATE(2596)] = 69280, [SMALL_STATE(2597)] = 69367, [SMALL_STATE(2598)] = 69432, - [SMALL_STATE(2599)] = 69497, - [SMALL_STATE(2600)] = 69584, - [SMALL_STATE(2601)] = 69671, - [SMALL_STATE(2602)] = 69758, - [SMALL_STATE(2603)] = 69845, - [SMALL_STATE(2604)] = 69910, - [SMALL_STATE(2605)] = 69997, - [SMALL_STATE(2606)] = 70062, - [SMALL_STATE(2607)] = 70149, - [SMALL_STATE(2608)] = 70236, - [SMALL_STATE(2609)] = 70303, - [SMALL_STATE(2610)] = 70390, - [SMALL_STATE(2611)] = 70477, - [SMALL_STATE(2612)] = 70564, - [SMALL_STATE(2613)] = 70629, - [SMALL_STATE(2614)] = 70716, - [SMALL_STATE(2615)] = 70781, - [SMALL_STATE(2616)] = 70848, - [SMALL_STATE(2617)] = 70915, - [SMALL_STATE(2618)] = 71002, - [SMALL_STATE(2619)] = 71089, - [SMALL_STATE(2620)] = 71176, - [SMALL_STATE(2621)] = 71241, - [SMALL_STATE(2622)] = 71306, - [SMALL_STATE(2623)] = 71393, - [SMALL_STATE(2624)] = 71480, - [SMALL_STATE(2625)] = 71545, - [SMALL_STATE(2626)] = 71610, - [SMALL_STATE(2627)] = 71697, - [SMALL_STATE(2628)] = 71762, - [SMALL_STATE(2629)] = 71827, - [SMALL_STATE(2630)] = 71914, - [SMALL_STATE(2631)] = 72001, - [SMALL_STATE(2632)] = 72088, - [SMALL_STATE(2633)] = 72153, - [SMALL_STATE(2634)] = 72218, - [SMALL_STATE(2635)] = 72305, - [SMALL_STATE(2636)] = 72378, - [SMALL_STATE(2637)] = 72465, - [SMALL_STATE(2638)] = 72538, - [SMALL_STATE(2639)] = 72611, - [SMALL_STATE(2640)] = 72698, - [SMALL_STATE(2641)] = 72763, - [SMALL_STATE(2642)] = 72828, - [SMALL_STATE(2643)] = 72893, - [SMALL_STATE(2644)] = 72980, - [SMALL_STATE(2645)] = 73045, - [SMALL_STATE(2646)] = 73132, - [SMALL_STATE(2647)] = 73219, - [SMALL_STATE(2648)] = 73306, - [SMALL_STATE(2649)] = 73393, - [SMALL_STATE(2650)] = 73480, - [SMALL_STATE(2651)] = 73545, - [SMALL_STATE(2652)] = 73612, - [SMALL_STATE(2653)] = 73683, - [SMALL_STATE(2654)] = 73752, - [SMALL_STATE(2655)] = 73839, - [SMALL_STATE(2656)] = 73904, + [SMALL_STATE(2599)] = 69501, + [SMALL_STATE(2600)] = 69566, + [SMALL_STATE(2601)] = 69631, + [SMALL_STATE(2602)] = 69696, + [SMALL_STATE(2603)] = 69761, + [SMALL_STATE(2604)] = 69826, + [SMALL_STATE(2605)] = 69913, + [SMALL_STATE(2606)] = 70000, + [SMALL_STATE(2607)] = 70065, + [SMALL_STATE(2608)] = 70130, + [SMALL_STATE(2609)] = 70217, + [SMALL_STATE(2610)] = 70304, + [SMALL_STATE(2611)] = 70391, + [SMALL_STATE(2612)] = 70478, + [SMALL_STATE(2613)] = 70551, + [SMALL_STATE(2614)] = 70616, + [SMALL_STATE(2615)] = 70681, + [SMALL_STATE(2616)] = 70768, + [SMALL_STATE(2617)] = 70855, + [SMALL_STATE(2618)] = 70942, + [SMALL_STATE(2619)] = 71029, + [SMALL_STATE(2620)] = 71094, + [SMALL_STATE(2621)] = 71181, + [SMALL_STATE(2622)] = 71268, + [SMALL_STATE(2623)] = 71355, + [SMALL_STATE(2624)] = 71442, + [SMALL_STATE(2625)] = 71529, + [SMALL_STATE(2626)] = 71616, + [SMALL_STATE(2627)] = 71703, + [SMALL_STATE(2628)] = 71770, + [SMALL_STATE(2629)] = 71837, + [SMALL_STATE(2630)] = 71924, + [SMALL_STATE(2631)] = 72011, + [SMALL_STATE(2632)] = 72076, + [SMALL_STATE(2633)] = 72163, + [SMALL_STATE(2634)] = 72250, + [SMALL_STATE(2635)] = 72317, + [SMALL_STATE(2636)] = 72404, + [SMALL_STATE(2637)] = 72491, + [SMALL_STATE(2638)] = 72578, + [SMALL_STATE(2639)] = 72665, + [SMALL_STATE(2640)] = 72730, + [SMALL_STATE(2641)] = 72795, + [SMALL_STATE(2642)] = 72882, + [SMALL_STATE(2643)] = 72955, + [SMALL_STATE(2644)] = 73020, + [SMALL_STATE(2645)] = 73107, + [SMALL_STATE(2646)] = 73174, + [SMALL_STATE(2647)] = 73239, + [SMALL_STATE(2648)] = 73312, + [SMALL_STATE(2649)] = 73377, + [SMALL_STATE(2650)] = 73464, + [SMALL_STATE(2651)] = 73529, + [SMALL_STATE(2652)] = 73594, + [SMALL_STATE(2653)] = 73659, + [SMALL_STATE(2654)] = 73730, + [SMALL_STATE(2655)] = 73795, + [SMALL_STATE(2656)] = 73882, [SMALL_STATE(2657)] = 73969, - [SMALL_STATE(2658)] = 74034, - [SMALL_STATE(2659)] = 74099, + [SMALL_STATE(2658)] = 74056, + [SMALL_STATE(2659)] = 74121, [SMALL_STATE(2660)] = 74186, [SMALL_STATE(2661)] = 74273, [SMALL_STATE(2662)] = 74360, [SMALL_STATE(2663)] = 74447, [SMALL_STATE(2664)] = 74512, - [SMALL_STATE(2665)] = 74599, - [SMALL_STATE(2666)] = 74686, + [SMALL_STATE(2665)] = 74577, + [SMALL_STATE(2666)] = 74664, [SMALL_STATE(2667)] = 74751, - [SMALL_STATE(2668)] = 74823, + [SMALL_STATE(2668)] = 74815, [SMALL_STATE(2669)] = 74887, - [SMALL_STATE(2670)] = 74951, - [SMALL_STATE(2671)] = 75015, - [SMALL_STATE(2672)] = 75079, - [SMALL_STATE(2673)] = 75145, - [SMALL_STATE(2674)] = 75215, - [SMALL_STATE(2675)] = 75285, - [SMALL_STATE(2676)] = 75349, - [SMALL_STATE(2677)] = 75419, - [SMALL_STATE(2678)] = 75487, - [SMALL_STATE(2679)] = 75555, - [SMALL_STATE(2680)] = 75619, - [SMALL_STATE(2681)] = 75683, - [SMALL_STATE(2682)] = 75747, - [SMALL_STATE(2683)] = 75811, - [SMALL_STATE(2684)] = 75885, - [SMALL_STATE(2685)] = 75949, - [SMALL_STATE(2686)] = 76017, - [SMALL_STATE(2687)] = 76081, - [SMALL_STATE(2688)] = 76153, - [SMALL_STATE(2689)] = 76217, - [SMALL_STATE(2690)] = 76281, - [SMALL_STATE(2691)] = 76345, - [SMALL_STATE(2692)] = 76411, - [SMALL_STATE(2693)] = 76477, - [SMALL_STATE(2694)] = 76599, - [SMALL_STATE(2695)] = 76721, - [SMALL_STATE(2696)] = 76785, - [SMALL_STATE(2697)] = 76849, - [SMALL_STATE(2698)] = 76913, - [SMALL_STATE(2699)] = 76977, - [SMALL_STATE(2700)] = 77045, - [SMALL_STATE(2701)] = 77117, - [SMALL_STATE(2702)] = 77185, - [SMALL_STATE(2703)] = 77249, - [SMALL_STATE(2704)] = 77313, - [SMALL_STATE(2705)] = 77383, - [SMALL_STATE(2706)] = 77447, - [SMALL_STATE(2707)] = 77563, - [SMALL_STATE(2708)] = 77681, - [SMALL_STATE(2709)] = 77745, - [SMALL_STATE(2710)] = 77815, - [SMALL_STATE(2711)] = 77879, - [SMALL_STATE(2712)] = 77951, - [SMALL_STATE(2713)] = 78015, - [SMALL_STATE(2714)] = 78083, - [SMALL_STATE(2715)] = 78155, - [SMALL_STATE(2716)] = 78219, - [SMALL_STATE(2717)] = 78283, - [SMALL_STATE(2718)] = 78347, - [SMALL_STATE(2719)] = 78411, - [SMALL_STATE(2720)] = 78475, - [SMALL_STATE(2721)] = 78547, - [SMALL_STATE(2722)] = 78623, - [SMALL_STATE(2723)] = 78687, - [SMALL_STATE(2724)] = 78803, - [SMALL_STATE(2725)] = 78921, - [SMALL_STATE(2726)] = 78993, - [SMALL_STATE(2727)] = 79057, - [SMALL_STATE(2728)] = 79121, - [SMALL_STATE(2729)] = 79193, - [SMALL_STATE(2730)] = 79265, - [SMALL_STATE(2731)] = 79329, - [SMALL_STATE(2732)] = 79401, - [SMALL_STATE(2733)] = 79473, - [SMALL_STATE(2734)] = 79545, - [SMALL_STATE(2735)] = 79617, - [SMALL_STATE(2736)] = 79689, - [SMALL_STATE(2737)] = 79761, - [SMALL_STATE(2738)] = 79833, - [SMALL_STATE(2739)] = 79905, - [SMALL_STATE(2740)] = 79977, - [SMALL_STATE(2741)] = 80049, - [SMALL_STATE(2742)] = 80121, - [SMALL_STATE(2743)] = 80193, - [SMALL_STATE(2744)] = 80265, - [SMALL_STATE(2745)] = 80337, - [SMALL_STATE(2746)] = 80409, + [SMALL_STATE(2670)] = 75003, + [SMALL_STATE(2671)] = 75067, + [SMALL_STATE(2672)] = 75185, + [SMALL_STATE(2673)] = 75249, + [SMALL_STATE(2674)] = 75321, + [SMALL_STATE(2675)] = 75389, + [SMALL_STATE(2676)] = 75461, + [SMALL_STATE(2677)] = 75527, + [SMALL_STATE(2678)] = 75593, + [SMALL_STATE(2679)] = 75665, + [SMALL_STATE(2680)] = 75735, + [SMALL_STATE(2681)] = 75799, + [SMALL_STATE(2682)] = 75871, + [SMALL_STATE(2683)] = 75943, + [SMALL_STATE(2684)] = 76007, + [SMALL_STATE(2685)] = 76079, + [SMALL_STATE(2686)] = 76143, + [SMALL_STATE(2687)] = 76215, + [SMALL_STATE(2688)] = 76287, + [SMALL_STATE(2689)] = 76351, + [SMALL_STATE(2690)] = 76415, + [SMALL_STATE(2691)] = 76491, + [SMALL_STATE(2692)] = 76555, + [SMALL_STATE(2693)] = 76627, + [SMALL_STATE(2694)] = 76701, + [SMALL_STATE(2695)] = 76773, + [SMALL_STATE(2696)] = 76845, + [SMALL_STATE(2697)] = 76909, + [SMALL_STATE(2698)] = 76973, + [SMALL_STATE(2699)] = 77091, + [SMALL_STATE(2700)] = 77155, + [SMALL_STATE(2701)] = 77219, + [SMALL_STATE(2702)] = 77289, + [SMALL_STATE(2703)] = 77357, + [SMALL_STATE(2704)] = 77425, + [SMALL_STATE(2705)] = 77489, + [SMALL_STATE(2706)] = 77553, + [SMALL_STATE(2707)] = 77625, + [SMALL_STATE(2708)] = 77697, + [SMALL_STATE(2709)] = 77761, + [SMALL_STATE(2710)] = 77825, + [SMALL_STATE(2711)] = 77889, + [SMALL_STATE(2712)] = 77959, + [SMALL_STATE(2713)] = 78023, + [SMALL_STATE(2714)] = 78095, + [SMALL_STATE(2715)] = 78159, + [SMALL_STATE(2716)] = 78223, + [SMALL_STATE(2717)] = 78287, + [SMALL_STATE(2718)] = 78409, + [SMALL_STATE(2719)] = 78481, + [SMALL_STATE(2720)] = 78603, + [SMALL_STATE(2721)] = 78669, + [SMALL_STATE(2722)] = 78733, + [SMALL_STATE(2723)] = 78805, + [SMALL_STATE(2724)] = 78869, + [SMALL_STATE(2725)] = 78941, + [SMALL_STATE(2726)] = 79057, + [SMALL_STATE(2727)] = 79129, + [SMALL_STATE(2728)] = 79201, + [SMALL_STATE(2729)] = 79265, + [SMALL_STATE(2730)] = 79329, + [SMALL_STATE(2731)] = 79393, + [SMALL_STATE(2732)] = 79463, + [SMALL_STATE(2733)] = 79531, + [SMALL_STATE(2734)] = 79595, + [SMALL_STATE(2735)] = 79659, + [SMALL_STATE(2736)] = 79731, + [SMALL_STATE(2737)] = 79801, + [SMALL_STATE(2738)] = 79873, + [SMALL_STATE(2739)] = 79945, + [SMALL_STATE(2740)] = 80009, + [SMALL_STATE(2741)] = 80073, + [SMALL_STATE(2742)] = 80145, + [SMALL_STATE(2743)] = 80213, + [SMALL_STATE(2744)] = 80277, + [SMALL_STATE(2745)] = 80349, + [SMALL_STATE(2746)] = 80413, [SMALL_STATE(2747)] = 80481, [SMALL_STATE(2748)] = 80545, - [SMALL_STATE(2749)] = 80660, - [SMALL_STATE(2750)] = 80723, - [SMALL_STATE(2751)] = 80790, - [SMALL_STATE(2752)] = 80853, - [SMALL_STATE(2753)] = 80916, - [SMALL_STATE(2754)] = 80983, - [SMALL_STATE(2755)] = 81050, - [SMALL_STATE(2756)] = 81115, - [SMALL_STATE(2757)] = 81180, - [SMALL_STATE(2758)] = 81251, - [SMALL_STATE(2759)] = 81322, - [SMALL_STATE(2760)] = 81393, - [SMALL_STATE(2761)] = 81458, - [SMALL_STATE(2762)] = 81529, - [SMALL_STATE(2763)] = 81594, - [SMALL_STATE(2764)] = 81665, - [SMALL_STATE(2765)] = 81736, - [SMALL_STATE(2766)] = 81801, - [SMALL_STATE(2767)] = 81868, - [SMALL_STATE(2768)] = 81939, - [SMALL_STATE(2769)] = 82010, - [SMALL_STATE(2770)] = 82077, - [SMALL_STATE(2771)] = 82148, - [SMALL_STATE(2772)] = 82219, - [SMALL_STATE(2773)] = 82290, - [SMALL_STATE(2774)] = 82361, - [SMALL_STATE(2775)] = 82432, - [SMALL_STATE(2776)] = 82503, - [SMALL_STATE(2777)] = 82574, - [SMALL_STATE(2778)] = 82645, - [SMALL_STATE(2779)] = 82716, - [SMALL_STATE(2780)] = 82781, - [SMALL_STATE(2781)] = 82852, - [SMALL_STATE(2782)] = 82965, - [SMALL_STATE(2783)] = 83080, - [SMALL_STATE(2784)] = 83193, - [SMALL_STATE(2785)] = 83258, + [SMALL_STATE(2749)] = 80616, + [SMALL_STATE(2750)] = 80687, + [SMALL_STATE(2751)] = 80758, + [SMALL_STATE(2752)] = 80873, + [SMALL_STATE(2753)] = 80944, + [SMALL_STATE(2754)] = 81009, + [SMALL_STATE(2755)] = 81082, + [SMALL_STATE(2756)] = 81145, + [SMALL_STATE(2757)] = 81214, + [SMALL_STATE(2758)] = 81279, + [SMALL_STATE(2759)] = 81344, + [SMALL_STATE(2760)] = 81415, + [SMALL_STATE(2761)] = 81486, + [SMALL_STATE(2762)] = 81557, + [SMALL_STATE(2763)] = 81628, + [SMALL_STATE(2764)] = 81703, + [SMALL_STATE(2765)] = 81816, + [SMALL_STATE(2766)] = 81879, + [SMALL_STATE(2767)] = 81950, + [SMALL_STATE(2768)] = 82013, + [SMALL_STATE(2769)] = 82078, + [SMALL_STATE(2770)] = 82191, + [SMALL_STATE(2771)] = 82262, + [SMALL_STATE(2772)] = 82329, + [SMALL_STATE(2773)] = 82400, + [SMALL_STATE(2774)] = 82471, + [SMALL_STATE(2775)] = 82536, + [SMALL_STATE(2776)] = 82607, + [SMALL_STATE(2777)] = 82670, + [SMALL_STATE(2778)] = 82737, + [SMALL_STATE(2779)] = 82800, + [SMALL_STATE(2780)] = 82867, + [SMALL_STATE(2781)] = 82938, + [SMALL_STATE(2782)] = 83053, + [SMALL_STATE(2783)] = 83118, + [SMALL_STATE(2784)] = 83185, + [SMALL_STATE(2785)] = 83250, [SMALL_STATE(2786)] = 83321, - [SMALL_STATE(2787)] = 83434, - [SMALL_STATE(2788)] = 83509, - [SMALL_STATE(2789)] = 83622, - [SMALL_STATE(2790)] = 83695, - [SMALL_STATE(2791)] = 83762, - [SMALL_STATE(2792)] = 83825, - [SMALL_STATE(2793)] = 83894, - [SMALL_STATE(2794)] = 83957, + [SMALL_STATE(2787)] = 83388, + [SMALL_STATE(2788)] = 83501, + [SMALL_STATE(2789)] = 83572, + [SMALL_STATE(2790)] = 83639, + [SMALL_STATE(2791)] = 83702, + [SMALL_STATE(2792)] = 83765, + [SMALL_STATE(2793)] = 83836, + [SMALL_STATE(2794)] = 83907, [SMALL_STATE(2795)] = 84020, [SMALL_STATE(2796)] = 84083, [SMALL_STATE(2797)] = 84154, - [SMALL_STATE(2798)] = 84216, - [SMALL_STATE(2799)] = 84278, - [SMALL_STATE(2800)] = 84344, - [SMALL_STATE(2801)] = 84408, - [SMALL_STATE(2802)] = 84470, - [SMALL_STATE(2803)] = 84534, - [SMALL_STATE(2804)] = 84602, - [SMALL_STATE(2805)] = 84670, - [SMALL_STATE(2806)] = 84738, - [SMALL_STATE(2807)] = 84802, - [SMALL_STATE(2808)] = 84864, - [SMALL_STATE(2809)] = 84926, - [SMALL_STATE(2810)] = 84988, - [SMALL_STATE(2811)] = 85054, - [SMALL_STATE(2812)] = 85122, - [SMALL_STATE(2813)] = 85184, - [SMALL_STATE(2814)] = 85250, - [SMALL_STATE(2815)] = 85314, - [SMALL_STATE(2816)] = 85382, - [SMALL_STATE(2817)] = 85446, - [SMALL_STATE(2818)] = 85514, - [SMALL_STATE(2819)] = 85582, - [SMALL_STATE(2820)] = 85650, - [SMALL_STATE(2821)] = 85718, - [SMALL_STATE(2822)] = 85780, - [SMALL_STATE(2823)] = 85850, - [SMALL_STATE(2824)] = 85920, - [SMALL_STATE(2825)] = 85984, - [SMALL_STATE(2826)] = 86052, - [SMALL_STATE(2827)] = 86122, - [SMALL_STATE(2828)] = 86184, - [SMALL_STATE(2829)] = 86246, - [SMALL_STATE(2830)] = 86312, - [SMALL_STATE(2831)] = 86374, - [SMALL_STATE(2832)] = 86444, - [SMALL_STATE(2833)] = 86514, - [SMALL_STATE(2834)] = 86576, - [SMALL_STATE(2835)] = 86646, - [SMALL_STATE(2836)] = 86716, - [SMALL_STATE(2837)] = 86786, - [SMALL_STATE(2838)] = 86856, - [SMALL_STATE(2839)] = 86926, - [SMALL_STATE(2840)] = 86996, - [SMALL_STATE(2841)] = 87066, - [SMALL_STATE(2842)] = 87128, - [SMALL_STATE(2843)] = 87198, - [SMALL_STATE(2844)] = 87268, - [SMALL_STATE(2845)] = 87330, + [SMALL_STATE(2798)] = 84224, + [SMALL_STATE(2799)] = 84294, + [SMALL_STATE(2800)] = 84364, + [SMALL_STATE(2801)] = 84434, + [SMALL_STATE(2802)] = 84504, + [SMALL_STATE(2803)] = 84574, + [SMALL_STATE(2804)] = 84644, + [SMALL_STATE(2805)] = 84714, + [SMALL_STATE(2806)] = 84784, + [SMALL_STATE(2807)] = 84854, + [SMALL_STATE(2808)] = 84924, + [SMALL_STATE(2809)] = 84994, + [SMALL_STATE(2810)] = 85064, + [SMALL_STATE(2811)] = 85134, + [SMALL_STATE(2812)] = 85204, + [SMALL_STATE(2813)] = 85274, + [SMALL_STATE(2814)] = 85342, + [SMALL_STATE(2815)] = 85408, + [SMALL_STATE(2816)] = 85472, + [SMALL_STATE(2817)] = 85540, + [SMALL_STATE(2818)] = 85610, + [SMALL_STATE(2819)] = 85674, + [SMALL_STATE(2820)] = 85736, + [SMALL_STATE(2821)] = 85806, + [SMALL_STATE(2822)] = 85868, + [SMALL_STATE(2823)] = 85936, + [SMALL_STATE(2824)] = 85998, + [SMALL_STATE(2825)] = 86060, + [SMALL_STATE(2826)] = 86126, + [SMALL_STATE(2827)] = 86190, + [SMALL_STATE(2828)] = 86252, + [SMALL_STATE(2829)] = 86316, + [SMALL_STATE(2830)] = 86380, + [SMALL_STATE(2831)] = 86442, + [SMALL_STATE(2832)] = 86504, + [SMALL_STATE(2833)] = 86566, + [SMALL_STATE(2834)] = 86628, + [SMALL_STATE(2835)] = 86690, + [SMALL_STATE(2836)] = 86752, + [SMALL_STATE(2837)] = 86814, + [SMALL_STATE(2838)] = 86876, + [SMALL_STATE(2839)] = 86946, + [SMALL_STATE(2840)] = 87008, + [SMALL_STATE(2841)] = 87070, + [SMALL_STATE(2842)] = 87132, + [SMALL_STATE(2843)] = 87196, + [SMALL_STATE(2844)] = 87260, + [SMALL_STATE(2845)] = 87324, [SMALL_STATE(2846)] = 87392, - [SMALL_STATE(2847)] = 87462, - [SMALL_STATE(2848)] = 87532, - [SMALL_STATE(2849)] = 87598, - [SMALL_STATE(2850)] = 87668, - [SMALL_STATE(2851)] = 87732, - [SMALL_STATE(2852)] = 87794, - [SMALL_STATE(2853)] = 87864, - [SMALL_STATE(2854)] = 87930, - [SMALL_STATE(2855)] = 87992, - [SMALL_STATE(2856)] = 88054, - [SMALL_STATE(2857)] = 88124, - [SMALL_STATE(2858)] = 88192, - [SMALL_STATE(2859)] = 88258, - [SMALL_STATE(2860)] = 88322, - [SMALL_STATE(2861)] = 88386, - [SMALL_STATE(2862)] = 88456, - [SMALL_STATE(2863)] = 88526, - [SMALL_STATE(2864)] = 88588, - [SMALL_STATE(2865)] = 88650, - [SMALL_STATE(2866)] = 88712, + [SMALL_STATE(2847)] = 87458, + [SMALL_STATE(2848)] = 87522, + [SMALL_STATE(2849)] = 87584, + [SMALL_STATE(2850)] = 87646, + [SMALL_STATE(2851)] = 87708, + [SMALL_STATE(2852)] = 87770, + [SMALL_STATE(2853)] = 87838, + [SMALL_STATE(2854)] = 87906, + [SMALL_STATE(2855)] = 87976, + [SMALL_STATE(2856)] = 88044, + [SMALL_STATE(2857)] = 88112, + [SMALL_STATE(2858)] = 88180, + [SMALL_STATE(2859)] = 88248, + [SMALL_STATE(2860)] = 88314, + [SMALL_STATE(2861)] = 88380, + [SMALL_STATE(2862)] = 88446, + [SMALL_STATE(2863)] = 88516, + [SMALL_STATE(2864)] = 88586, + [SMALL_STATE(2865)] = 88654, + [SMALL_STATE(2866)] = 88720, [SMALL_STATE(2867)] = 88782, [SMALL_STATE(2868)] = 88852, - [SMALL_STATE(2869)] = 88913, - [SMALL_STATE(2870)] = 88976, - [SMALL_STATE(2871)] = 89037, - [SMALL_STATE(2872)] = 89104, - [SMALL_STATE(2873)] = 89169, - [SMALL_STATE(2874)] = 89232, - [SMALL_STATE(2875)] = 89293, - [SMALL_STATE(2876)] = 89358, - [SMALL_STATE(2877)] = 89423, - [SMALL_STATE(2878)] = 89492, - [SMALL_STATE(2879)] = 89557, - [SMALL_STATE(2880)] = 89618, - [SMALL_STATE(2881)] = 89683, - [SMALL_STATE(2882)] = 89754, - [SMALL_STATE(2883)] = 89817, - [SMALL_STATE(2884)] = 89882, - [SMALL_STATE(2885)] = 89943, - [SMALL_STATE(2886)] = 90006, - [SMALL_STATE(2887)] = 90069, - [SMALL_STATE(2888)] = 90134, - [SMALL_STATE(2889)] = 90199, - [SMALL_STATE(2890)] = 90262, - [SMALL_STATE(2891)] = 90325, - [SMALL_STATE(2892)] = 90390, - [SMALL_STATE(2893)] = 90455, - [SMALL_STATE(2894)] = 90520, - [SMALL_STATE(2895)] = 90585, - [SMALL_STATE(2896)] = 90648, - [SMALL_STATE(2897)] = 90709, - [SMALL_STATE(2898)] = 90770, - [SMALL_STATE(2899)] = 90835, - [SMALL_STATE(2900)] = 90900, - [SMALL_STATE(2901)] = 90961, - [SMALL_STATE(2902)] = 91022, - [SMALL_STATE(2903)] = 91087, - [SMALL_STATE(2904)] = 91148, - [SMALL_STATE(2905)] = 91213, - [SMALL_STATE(2906)] = 91274, - [SMALL_STATE(2907)] = 91339, - [SMALL_STATE(2908)] = 91404, - [SMALL_STATE(2909)] = 91469, - [SMALL_STATE(2910)] = 91530, - [SMALL_STATE(2911)] = 91591, - [SMALL_STATE(2912)] = 91652, - [SMALL_STATE(2913)] = 91713, - [SMALL_STATE(2914)] = 91774, - [SMALL_STATE(2915)] = 91835, - [SMALL_STATE(2916)] = 91896, - [SMALL_STATE(2917)] = 91957, - [SMALL_STATE(2918)] = 92018, - [SMALL_STATE(2919)] = 92079, - [SMALL_STATE(2920)] = 92144, - [SMALL_STATE(2921)] = 92209, - [SMALL_STATE(2922)] = 92270, - [SMALL_STATE(2923)] = 92333, - [SMALL_STATE(2924)] = 92394, - [SMALL_STATE(2925)] = 92457, + [SMALL_STATE(2869)] = 88917, + [SMALL_STATE(2870)] = 88978, + [SMALL_STATE(2871)] = 89039, + [SMALL_STATE(2872)] = 89100, + [SMALL_STATE(2873)] = 89161, + [SMALL_STATE(2874)] = 89222, + [SMALL_STATE(2875)] = 89287, + [SMALL_STATE(2876)] = 89348, + [SMALL_STATE(2877)] = 89409, + [SMALL_STATE(2878)] = 89472, + [SMALL_STATE(2879)] = 89535, + [SMALL_STATE(2880)] = 89596, + [SMALL_STATE(2881)] = 89657, + [SMALL_STATE(2882)] = 89718, + [SMALL_STATE(2883)] = 89779, + [SMALL_STATE(2884)] = 89842, + [SMALL_STATE(2885)] = 89905, + [SMALL_STATE(2886)] = 89966, + [SMALL_STATE(2887)] = 90027, + [SMALL_STATE(2888)] = 90088, + [SMALL_STATE(2889)] = 90149, + [SMALL_STATE(2890)] = 90210, + [SMALL_STATE(2891)] = 90271, + [SMALL_STATE(2892)] = 90334, + [SMALL_STATE(2893)] = 90401, + [SMALL_STATE(2894)] = 90466, + [SMALL_STATE(2895)] = 90531, + [SMALL_STATE(2896)] = 90592, + [SMALL_STATE(2897)] = 90653, + [SMALL_STATE(2898)] = 90718, + [SMALL_STATE(2899)] = 90783, + [SMALL_STATE(2900)] = 90848, + [SMALL_STATE(2901)] = 90909, + [SMALL_STATE(2902)] = 90974, + [SMALL_STATE(2903)] = 91039, + [SMALL_STATE(2904)] = 91100, + [SMALL_STATE(2905)] = 91161, + [SMALL_STATE(2906)] = 91226, + [SMALL_STATE(2907)] = 91291, + [SMALL_STATE(2908)] = 91356, + [SMALL_STATE(2909)] = 91421, + [SMALL_STATE(2910)] = 91486, + [SMALL_STATE(2911)] = 91551, + [SMALL_STATE(2912)] = 91614, + [SMALL_STATE(2913)] = 91679, + [SMALL_STATE(2914)] = 91750, + [SMALL_STATE(2915)] = 91811, + [SMALL_STATE(2916)] = 91880, + [SMALL_STATE(2917)] = 91945, + [SMALL_STATE(2918)] = 92010, + [SMALL_STATE(2919)] = 92071, + [SMALL_STATE(2920)] = 92136, + [SMALL_STATE(2921)] = 92201, + [SMALL_STATE(2922)] = 92264, + [SMALL_STATE(2923)] = 92327, + [SMALL_STATE(2924)] = 92390, + [SMALL_STATE(2925)] = 92453, [SMALL_STATE(2926)] = 92518, [SMALL_STATE(2927)] = 92579, [SMALL_STATE(2928)] = 92644, [SMALL_STATE(2929)] = 92704, - [SMALL_STATE(2930)] = 92770, - [SMALL_STATE(2931)] = 92836, - [SMALL_STATE(2932)] = 92898, - [SMALL_STATE(2933)] = 92958, - [SMALL_STATE(2934)] = 93018, - [SMALL_STATE(2935)] = 93078, - [SMALL_STATE(2936)] = 93142, - [SMALL_STATE(2937)] = 93202, - [SMALL_STATE(2938)] = 93262, - [SMALL_STATE(2939)] = 93322, - [SMALL_STATE(2940)] = 93382, - [SMALL_STATE(2941)] = 93448, - [SMALL_STATE(2942)] = 93510, - [SMALL_STATE(2943)] = 93570, - [SMALL_STATE(2944)] = 93630, - [SMALL_STATE(2945)] = 93690, - [SMALL_STATE(2946)] = 93750, - [SMALL_STATE(2947)] = 93810, - [SMALL_STATE(2948)] = 93870, - [SMALL_STATE(2949)] = 93930, - [SMALL_STATE(2950)] = 93990, - [SMALL_STATE(2951)] = 94050, - [SMALL_STATE(2952)] = 94110, - [SMALL_STATE(2953)] = 94170, - [SMALL_STATE(2954)] = 94230, - [SMALL_STATE(2955)] = 94292, - [SMALL_STATE(2956)] = 94352, - [SMALL_STATE(2957)] = 94412, - [SMALL_STATE(2958)] = 94472, - [SMALL_STATE(2959)] = 94532, - [SMALL_STATE(2960)] = 94592, - [SMALL_STATE(2961)] = 94652, - [SMALL_STATE(2962)] = 94712, - [SMALL_STATE(2963)] = 94772, - [SMALL_STATE(2964)] = 94832, - [SMALL_STATE(2965)] = 94892, - [SMALL_STATE(2966)] = 94958, - [SMALL_STATE(2967)] = 95018, - [SMALL_STATE(2968)] = 95078, - [SMALL_STATE(2969)] = 95138, - [SMALL_STATE(2970)] = 95198, - [SMALL_STATE(2971)] = 95264, - [SMALL_STATE(2972)] = 95330, - [SMALL_STATE(2973)] = 95390, - [SMALL_STATE(2974)] = 95452, - [SMALL_STATE(2975)] = 95514, - [SMALL_STATE(2976)] = 95576, - [SMALL_STATE(2977)] = 95636, - [SMALL_STATE(2978)] = 95700, - [SMALL_STATE(2979)] = 95766, - [SMALL_STATE(2980)] = 95826, - [SMALL_STATE(2981)] = 95886, - [SMALL_STATE(2982)] = 95946, - [SMALL_STATE(2983)] = 96008, - [SMALL_STATE(2984)] = 96068, - [SMALL_STATE(2985)] = 96142, - [SMALL_STATE(2986)] = 96202, - [SMALL_STATE(2987)] = 96262, - [SMALL_STATE(2988)] = 96322, - [SMALL_STATE(2989)] = 96382, - [SMALL_STATE(2990)] = 96442, - [SMALL_STATE(2991)] = 96504, - [SMALL_STATE(2992)] = 96570, - [SMALL_STATE(2993)] = 96636, - [SMALL_STATE(2994)] = 96700, - [SMALL_STATE(2995)] = 96760, - [SMALL_STATE(2996)] = 96820, + [SMALL_STATE(2930)] = 92766, + [SMALL_STATE(2931)] = 92840, + [SMALL_STATE(2932)] = 92902, + [SMALL_STATE(2933)] = 92964, + [SMALL_STATE(2934)] = 93026, + [SMALL_STATE(2935)] = 93088, + [SMALL_STATE(2936)] = 93150, + [SMALL_STATE(2937)] = 93210, + [SMALL_STATE(2938)] = 93276, + [SMALL_STATE(2939)] = 93336, + [SMALL_STATE(2940)] = 93396, + [SMALL_STATE(2941)] = 93462, + [SMALL_STATE(2942)] = 93522, + [SMALL_STATE(2943)] = 93582, + [SMALL_STATE(2944)] = 93642, + [SMALL_STATE(2945)] = 93702, + [SMALL_STATE(2946)] = 93762, + [SMALL_STATE(2947)] = 93822, + [SMALL_STATE(2948)] = 93882, + [SMALL_STATE(2949)] = 93942, + [SMALL_STATE(2950)] = 94006, + [SMALL_STATE(2951)] = 94066, + [SMALL_STATE(2952)] = 94126, + [SMALL_STATE(2953)] = 94192, + [SMALL_STATE(2954)] = 94252, + [SMALL_STATE(2955)] = 94318, + [SMALL_STATE(2956)] = 94378, + [SMALL_STATE(2957)] = 94440, + [SMALL_STATE(2958)] = 94502, + [SMALL_STATE(2959)] = 94562, + [SMALL_STATE(2960)] = 94622, + [SMALL_STATE(2961)] = 94682, + [SMALL_STATE(2962)] = 94742, + [SMALL_STATE(2963)] = 94802, + [SMALL_STATE(2964)] = 94862, + [SMALL_STATE(2965)] = 94922, + [SMALL_STATE(2966)] = 94982, + [SMALL_STATE(2967)] = 95042, + [SMALL_STATE(2968)] = 95106, + [SMALL_STATE(2969)] = 95166, + [SMALL_STATE(2970)] = 95226, + [SMALL_STATE(2971)] = 95288, + [SMALL_STATE(2972)] = 95348, + [SMALL_STATE(2973)] = 95408, + [SMALL_STATE(2974)] = 95468, + [SMALL_STATE(2975)] = 95528, + [SMALL_STATE(2976)] = 95588, + [SMALL_STATE(2977)] = 95648, + [SMALL_STATE(2978)] = 95708, + [SMALL_STATE(2979)] = 95768, + [SMALL_STATE(2980)] = 95828, + [SMALL_STATE(2981)] = 95888, + [SMALL_STATE(2982)] = 95948, + [SMALL_STATE(2983)] = 96010, + [SMALL_STATE(2984)] = 96070, + [SMALL_STATE(2985)] = 96132, + [SMALL_STATE(2986)] = 96196, + [SMALL_STATE(2987)] = 96256, + [SMALL_STATE(2988)] = 96320, + [SMALL_STATE(2989)] = 96380, + [SMALL_STATE(2990)] = 96440, + [SMALL_STATE(2991)] = 96502, + [SMALL_STATE(2992)] = 96562, + [SMALL_STATE(2993)] = 96622, + [SMALL_STATE(2994)] = 96688, + [SMALL_STATE(2995)] = 96754, + [SMALL_STATE(2996)] = 96814, [SMALL_STATE(2997)] = 96880, - [SMALL_STATE(2998)] = 96940, - [SMALL_STATE(2999)] = 97002, - [SMALL_STATE(3000)] = 97064, - [SMALL_STATE(3001)] = 97130, - [SMALL_STATE(3002)] = 97192, - [SMALL_STATE(3003)] = 97252, - [SMALL_STATE(3004)] = 97312, - [SMALL_STATE(3005)] = 97372, - [SMALL_STATE(3006)] = 97432, - [SMALL_STATE(3007)] = 97498, - [SMALL_STATE(3008)] = 97558, - [SMALL_STATE(3009)] = 97618, - [SMALL_STATE(3010)] = 97678, - [SMALL_STATE(3011)] = 97740, - [SMALL_STATE(3012)] = 97800, - [SMALL_STATE(3013)] = 97860, - [SMALL_STATE(3014)] = 97920, - [SMALL_STATE(3015)] = 97980, - [SMALL_STATE(3016)] = 98046, + [SMALL_STATE(2998)] = 96946, + [SMALL_STATE(2999)] = 97012, + [SMALL_STATE(3000)] = 97078, + [SMALL_STATE(3001)] = 97138, + [SMALL_STATE(3002)] = 97198, + [SMALL_STATE(3003)] = 97258, + [SMALL_STATE(3004)] = 97318, + [SMALL_STATE(3005)] = 97384, + [SMALL_STATE(3006)] = 97444, + [SMALL_STATE(3007)] = 97504, + [SMALL_STATE(3008)] = 97564, + [SMALL_STATE(3009)] = 97630, + [SMALL_STATE(3010)] = 97690, + [SMALL_STATE(3011)] = 97750, + [SMALL_STATE(3012)] = 97810, + [SMALL_STATE(3013)] = 97870, + [SMALL_STATE(3014)] = 97930, + [SMALL_STATE(3015)] = 97990, + [SMALL_STATE(3016)] = 98050, [SMALL_STATE(3017)] = 98110, [SMALL_STATE(3018)] = 98171, [SMALL_STATE(3019)] = 98230, @@ -433179,82 +571271,82 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3022)] = 98407, [SMALL_STATE(3023)] = 98466, [SMALL_STATE(3024)] = 98525, - [SMALL_STATE(3025)] = 98586, - [SMALL_STATE(3026)] = 98645, - [SMALL_STATE(3027)] = 98704, - [SMALL_STATE(3028)] = 98763, + [SMALL_STATE(3025)] = 98584, + [SMALL_STATE(3026)] = 98643, + [SMALL_STATE(3027)] = 98702, + [SMALL_STATE(3028)] = 98761, [SMALL_STATE(3029)] = 98822, [SMALL_STATE(3030)] = 98881, [SMALL_STATE(3031)] = 98940, - [SMALL_STATE(3032)] = 99001, - [SMALL_STATE(3033)] = 99062, - [SMALL_STATE(3034)] = 99121, - [SMALL_STATE(3035)] = 99182, - [SMALL_STATE(3036)] = 99243, - [SMALL_STATE(3037)] = 99304, - [SMALL_STATE(3038)] = 99365, - [SMALL_STATE(3039)] = 99424, - [SMALL_STATE(3040)] = 99483, - [SMALL_STATE(3041)] = 99542, - [SMALL_STATE(3042)] = 99601, - [SMALL_STATE(3043)] = 99674, - [SMALL_STATE(3044)] = 99733, - [SMALL_STATE(3045)] = 99792, - [SMALL_STATE(3046)] = 99851, - [SMALL_STATE(3047)] = 99910, - [SMALL_STATE(3048)] = 99971, - [SMALL_STATE(3049)] = 100032, - [SMALL_STATE(3050)] = 100091, - [SMALL_STATE(3051)] = 100150, - [SMALL_STATE(3052)] = 100209, - [SMALL_STATE(3053)] = 100272, - [SMALL_STATE(3054)] = 100331, - [SMALL_STATE(3055)] = 100394, - [SMALL_STATE(3056)] = 100457, - [SMALL_STATE(3057)] = 100516, - [SMALL_STATE(3058)] = 100577, - [SMALL_STATE(3059)] = 100638, - [SMALL_STATE(3060)] = 100699, - [SMALL_STATE(3061)] = 100762, - [SMALL_STATE(3062)] = 100821, - [SMALL_STATE(3063)] = 100880, - [SMALL_STATE(3064)] = 100939, - [SMALL_STATE(3065)] = 101000, - [SMALL_STATE(3066)] = 101059, - [SMALL_STATE(3067)] = 101118, - [SMALL_STATE(3068)] = 101177, - [SMALL_STATE(3069)] = 101236, - [SMALL_STATE(3070)] = 101295, - [SMALL_STATE(3071)] = 101354, - [SMALL_STATE(3072)] = 101415, - [SMALL_STATE(3073)] = 101474, - [SMALL_STATE(3074)] = 101533, - [SMALL_STATE(3075)] = 101592, - [SMALL_STATE(3076)] = 101651, - [SMALL_STATE(3077)] = 101710, - [SMALL_STATE(3078)] = 101769, - [SMALL_STATE(3079)] = 101828, - [SMALL_STATE(3080)] = 101887, - [SMALL_STATE(3081)] = 101946, - [SMALL_STATE(3082)] = 102005, - [SMALL_STATE(3083)] = 102064, - [SMALL_STATE(3084)] = 102123, - [SMALL_STATE(3085)] = 102182, - [SMALL_STATE(3086)] = 102241, - [SMALL_STATE(3087)] = 102300, - [SMALL_STATE(3088)] = 102359, - [SMALL_STATE(3089)] = 102418, - [SMALL_STATE(3090)] = 102477, - [SMALL_STATE(3091)] = 102536, - [SMALL_STATE(3092)] = 102595, - [SMALL_STATE(3093)] = 102654, - [SMALL_STATE(3094)] = 102713, - [SMALL_STATE(3095)] = 102772, - [SMALL_STATE(3096)] = 102831, - [SMALL_STATE(3097)] = 102890, - [SMALL_STATE(3098)] = 102951, - [SMALL_STATE(3099)] = 103010, - [SMALL_STATE(3100)] = 103069, + [SMALL_STATE(3032)] = 98999, + [SMALL_STATE(3033)] = 99060, + [SMALL_STATE(3034)] = 99119, + [SMALL_STATE(3035)] = 99178, + [SMALL_STATE(3036)] = 99237, + [SMALL_STATE(3037)] = 99296, + [SMALL_STATE(3038)] = 99355, + [SMALL_STATE(3039)] = 99414, + [SMALL_STATE(3040)] = 99473, + [SMALL_STATE(3041)] = 99532, + [SMALL_STATE(3042)] = 99591, + [SMALL_STATE(3043)] = 99650, + [SMALL_STATE(3044)] = 99709, + [SMALL_STATE(3045)] = 99768, + [SMALL_STATE(3046)] = 99829, + [SMALL_STATE(3047)] = 99888, + [SMALL_STATE(3048)] = 99947, + [SMALL_STATE(3049)] = 100008, + [SMALL_STATE(3050)] = 100069, + [SMALL_STATE(3051)] = 100128, + [SMALL_STATE(3052)] = 100191, + [SMALL_STATE(3053)] = 100254, + [SMALL_STATE(3054)] = 100315, + [SMALL_STATE(3055)] = 100374, + [SMALL_STATE(3056)] = 100435, + [SMALL_STATE(3057)] = 100496, + [SMALL_STATE(3058)] = 100555, + [SMALL_STATE(3059)] = 100614, + [SMALL_STATE(3060)] = 100675, + [SMALL_STATE(3061)] = 100734, + [SMALL_STATE(3062)] = 100793, + [SMALL_STATE(3063)] = 100854, + [SMALL_STATE(3064)] = 100915, + [SMALL_STATE(3065)] = 100974, + [SMALL_STATE(3066)] = 101033, + [SMALL_STATE(3067)] = 101094, + [SMALL_STATE(3068)] = 101153, + [SMALL_STATE(3069)] = 101212, + [SMALL_STATE(3070)] = 101271, + [SMALL_STATE(3071)] = 101330, + [SMALL_STATE(3072)] = 101389, + [SMALL_STATE(3073)] = 101452, + [SMALL_STATE(3074)] = 101511, + [SMALL_STATE(3075)] = 101570, + [SMALL_STATE(3076)] = 101629, + [SMALL_STATE(3077)] = 101688, + [SMALL_STATE(3078)] = 101747, + [SMALL_STATE(3079)] = 101806, + [SMALL_STATE(3080)] = 101865, + [SMALL_STATE(3081)] = 101924, + [SMALL_STATE(3082)] = 101983, + [SMALL_STATE(3083)] = 102042, + [SMALL_STATE(3084)] = 102101, + [SMALL_STATE(3085)] = 102160, + [SMALL_STATE(3086)] = 102219, + [SMALL_STATE(3087)] = 102278, + [SMALL_STATE(3088)] = 102337, + [SMALL_STATE(3089)] = 102396, + [SMALL_STATE(3090)] = 102455, + [SMALL_STATE(3091)] = 102514, + [SMALL_STATE(3092)] = 102573, + [SMALL_STATE(3093)] = 102632, + [SMALL_STATE(3094)] = 102693, + [SMALL_STATE(3095)] = 102754, + [SMALL_STATE(3096)] = 102815, + [SMALL_STATE(3097)] = 102874, + [SMALL_STATE(3098)] = 102937, + [SMALL_STATE(3099)] = 102996, + [SMALL_STATE(3100)] = 103055, [SMALL_STATE(3101)] = 103128, [SMALL_STATE(3102)] = 103186, [SMALL_STATE(3103)] = 103244, @@ -433293,35 +571385,35 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3136)] = 105158, [SMALL_STATE(3137)] = 105216, [SMALL_STATE(3138)] = 105274, - [SMALL_STATE(3139)] = 105332, - [SMALL_STATE(3140)] = 105390, - [SMALL_STATE(3141)] = 105448, - [SMALL_STATE(3142)] = 105506, - [SMALL_STATE(3143)] = 105564, - [SMALL_STATE(3144)] = 105622, - [SMALL_STATE(3145)] = 105680, - [SMALL_STATE(3146)] = 105738, - [SMALL_STATE(3147)] = 105796, - [SMALL_STATE(3148)] = 105854, - [SMALL_STATE(3149)] = 105912, - [SMALL_STATE(3150)] = 105970, - [SMALL_STATE(3151)] = 106028, - [SMALL_STATE(3152)] = 106086, - [SMALL_STATE(3153)] = 106144, - [SMALL_STATE(3154)] = 106202, - [SMALL_STATE(3155)] = 106260, - [SMALL_STATE(3156)] = 106318, - [SMALL_STATE(3157)] = 106376, - [SMALL_STATE(3158)] = 106434, - [SMALL_STATE(3159)] = 106492, - [SMALL_STATE(3160)] = 106550, - [SMALL_STATE(3161)] = 106608, - [SMALL_STATE(3162)] = 106666, - [SMALL_STATE(3163)] = 106724, - [SMALL_STATE(3164)] = 106782, - [SMALL_STATE(3165)] = 106840, - [SMALL_STATE(3166)] = 106898, - [SMALL_STATE(3167)] = 106956, + [SMALL_STATE(3139)] = 105334, + [SMALL_STATE(3140)] = 105392, + [SMALL_STATE(3141)] = 105450, + [SMALL_STATE(3142)] = 105508, + [SMALL_STATE(3143)] = 105566, + [SMALL_STATE(3144)] = 105624, + [SMALL_STATE(3145)] = 105682, + [SMALL_STATE(3146)] = 105740, + [SMALL_STATE(3147)] = 105798, + [SMALL_STATE(3148)] = 105856, + [SMALL_STATE(3149)] = 105914, + [SMALL_STATE(3150)] = 105972, + [SMALL_STATE(3151)] = 106030, + [SMALL_STATE(3152)] = 106088, + [SMALL_STATE(3153)] = 106146, + [SMALL_STATE(3154)] = 106204, + [SMALL_STATE(3155)] = 106262, + [SMALL_STATE(3156)] = 106320, + [SMALL_STATE(3157)] = 106378, + [SMALL_STATE(3158)] = 106436, + [SMALL_STATE(3159)] = 106494, + [SMALL_STATE(3160)] = 106552, + [SMALL_STATE(3161)] = 106610, + [SMALL_STATE(3162)] = 106668, + [SMALL_STATE(3163)] = 106726, + [SMALL_STATE(3164)] = 106784, + [SMALL_STATE(3165)] = 106842, + [SMALL_STATE(3166)] = 106900, + [SMALL_STATE(3167)] = 106958, [SMALL_STATE(3168)] = 107016, [SMALL_STATE(3169)] = 107074, [SMALL_STATE(3170)] = 107139, @@ -433329,13 +571421,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3172)] = 107272, [SMALL_STATE(3173)] = 107348, [SMALL_STATE(3174)] = 107424, - [SMALL_STATE(3175)] = 107500, - [SMALL_STATE(3176)] = 107576, - [SMALL_STATE(3177)] = 107652, - [SMALL_STATE(3178)] = 107728, - [SMALL_STATE(3179)] = 107804, - [SMALL_STATE(3180)] = 107870, - [SMALL_STATE(3181)] = 107946, + [SMALL_STATE(3175)] = 107490, + [SMALL_STATE(3176)] = 107554, + [SMALL_STATE(3177)] = 107630, + [SMALL_STATE(3178)] = 107706, + [SMALL_STATE(3179)] = 107782, + [SMALL_STATE(3180)] = 107858, + [SMALL_STATE(3181)] = 107934, [SMALL_STATE(3182)] = 108010, [SMALL_STATE(3183)] = 108086, [SMALL_STATE(3184)] = 108162, @@ -433345,10939 +571437,10954 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3188)] = 108466, [SMALL_STATE(3189)] = 108542, [SMALL_STATE(3190)] = 108607, - [SMALL_STATE(3191)] = 108665, - [SMALL_STATE(3192)] = 108723, - [SMALL_STATE(3193)] = 108793, - [SMALL_STATE(3194)] = 108847, - [SMALL_STATE(3195)] = 108901, - [SMALL_STATE(3196)] = 108959, + [SMALL_STATE(3191)] = 108661, + [SMALL_STATE(3192)] = 108715, + [SMALL_STATE(3193)] = 108773, + [SMALL_STATE(3194)] = 108831, + [SMALL_STATE(3195)] = 108889, + [SMALL_STATE(3196)] = 108943, [SMALL_STATE(3197)] = 109013, - [SMALL_STATE(3198)] = 109071, + [SMALL_STATE(3198)] = 109067, [SMALL_STATE(3199)] = 109125, [SMALL_STATE(3200)] = 109182, - [SMALL_STATE(3201)] = 109251, - [SMALL_STATE(3202)] = 109304, - [SMALL_STATE(3203)] = 109361, - [SMALL_STATE(3204)] = 109418, - [SMALL_STATE(3205)] = 109475, - [SMALL_STATE(3206)] = 109530, - [SMALL_STATE(3207)] = 109587, - [SMALL_STATE(3208)] = 109654, + [SMALL_STATE(3201)] = 109237, + [SMALL_STATE(3202)] = 109294, + [SMALL_STATE(3203)] = 109351, + [SMALL_STATE(3204)] = 109408, + [SMALL_STATE(3205)] = 109465, + [SMALL_STATE(3206)] = 109522, + [SMALL_STATE(3207)] = 109589, + [SMALL_STATE(3208)] = 109642, [SMALL_STATE(3209)] = 109711, - [SMALL_STATE(3210)] = 109761, - [SMALL_STATE(3211)] = 109825, - [SMALL_STATE(3212)] = 109891, - [SMALL_STATE(3213)] = 109959, - [SMALL_STATE(3214)] = 110019, - [SMALL_STATE(3215)] = 110081, - [SMALL_STATE(3216)] = 110149, - [SMALL_STATE(3217)] = 110219, - [SMALL_STATE(3218)] = 110275, - [SMALL_STATE(3219)] = 110333, - [SMALL_STATE(3220)] = 110411, - [SMALL_STATE(3221)] = 110491, - [SMALL_STATE(3222)] = 110571, - [SMALL_STATE(3223)] = 110653, - [SMALL_STATE(3224)] = 110735, - [SMALL_STATE(3225)] = 110819, - [SMALL_STATE(3226)] = 110889, - [SMALL_STATE(3227)] = 110961, - [SMALL_STATE(3228)] = 111025, - [SMALL_STATE(3229)] = 111091, - [SMALL_STATE(3230)] = 111163, - [SMALL_STATE(3231)] = 111237, - [SMALL_STATE(3232)] = 111311, - [SMALL_STATE(3233)] = 111387, - [SMALL_STATE(3234)] = 111463, - [SMALL_STATE(3235)] = 111541, - [SMALL_STATE(3236)] = 111609, - [SMALL_STATE(3237)] = 111671, - [SMALL_STATE(3238)] = 111741, - [SMALL_STATE(3239)] = 111799, - [SMALL_STATE(3240)] = 111879, - [SMALL_STATE(3241)] = 111961, - [SMALL_STATE(3242)] = 112045, - [SMALL_STATE(3243)] = 112117, - [SMALL_STATE(3244)] = 112183, - [SMALL_STATE(3245)] = 112257, - [SMALL_STATE(3246)] = 112333, - [SMALL_STATE(3247)] = 112411, - [SMALL_STATE(3248)] = 112477, - [SMALL_STATE(3249)] = 112537, - [SMALL_STATE(3250)] = 112605, - [SMALL_STATE(3251)] = 112661, - [SMALL_STATE(3252)] = 112739, - [SMALL_STATE(3253)] = 112819, - [SMALL_STATE(3254)] = 112901, - [SMALL_STATE(3255)] = 112971, - [SMALL_STATE(3256)] = 113035, - [SMALL_STATE(3257)] = 113107, - [SMALL_STATE(3258)] = 113181, - [SMALL_STATE(3259)] = 113257, - [SMALL_STATE(3260)] = 113323, - [SMALL_STATE(3261)] = 113391, - [SMALL_STATE(3262)] = 113451, - [SMALL_STATE(3263)] = 113513, - [SMALL_STATE(3264)] = 113581, - [SMALL_STATE(3265)] = 113651, - [SMALL_STATE(3266)] = 113707, - [SMALL_STATE(3267)] = 113765, - [SMALL_STATE(3268)] = 113843, - [SMALL_STATE(3269)] = 113923, - [SMALL_STATE(3270)] = 114003, - [SMALL_STATE(3271)] = 114085, - [SMALL_STATE(3272)] = 114167, - [SMALL_STATE(3273)] = 114251, - [SMALL_STATE(3274)] = 114321, - [SMALL_STATE(3275)] = 114393, - [SMALL_STATE(3276)] = 114457, + [SMALL_STATE(3210)] = 109793, + [SMALL_STATE(3211)] = 109849, + [SMALL_STATE(3212)] = 109927, + [SMALL_STATE(3213)] = 110007, + [SMALL_STATE(3214)] = 110089, + [SMALL_STATE(3215)] = 110159, + [SMALL_STATE(3216)] = 110223, + [SMALL_STATE(3217)] = 110295, + [SMALL_STATE(3218)] = 110369, + [SMALL_STATE(3219)] = 110445, + [SMALL_STATE(3220)] = 110511, + [SMALL_STATE(3221)] = 110579, + [SMALL_STATE(3222)] = 110639, + [SMALL_STATE(3223)] = 110701, + [SMALL_STATE(3224)] = 110769, + [SMALL_STATE(3225)] = 110839, + [SMALL_STATE(3226)] = 110895, + [SMALL_STATE(3227)] = 110953, + [SMALL_STATE(3228)] = 111031, + [SMALL_STATE(3229)] = 111111, + [SMALL_STATE(3230)] = 111191, + [SMALL_STATE(3231)] = 111273, + [SMALL_STATE(3232)] = 111355, + [SMALL_STATE(3233)] = 111439, + [SMALL_STATE(3234)] = 111509, + [SMALL_STATE(3235)] = 111581, + [SMALL_STATE(3236)] = 111645, + [SMALL_STATE(3237)] = 111711, + [SMALL_STATE(3238)] = 111783, + [SMALL_STATE(3239)] = 111857, + [SMALL_STATE(3240)] = 111931, + [SMALL_STATE(3241)] = 112007, + [SMALL_STATE(3242)] = 112083, + [SMALL_STATE(3243)] = 112161, + [SMALL_STATE(3244)] = 112223, + [SMALL_STATE(3245)] = 112289, + [SMALL_STATE(3246)] = 112349, + [SMALL_STATE(3247)] = 112417, + [SMALL_STATE(3248)] = 112473, + [SMALL_STATE(3249)] = 112551, + [SMALL_STATE(3250)] = 112631, + [SMALL_STATE(3251)] = 112713, + [SMALL_STATE(3252)] = 112783, + [SMALL_STATE(3253)] = 112847, + [SMALL_STATE(3254)] = 112919, + [SMALL_STATE(3255)] = 112993, + [SMALL_STATE(3256)] = 113069, + [SMALL_STATE(3257)] = 113141, + [SMALL_STATE(3258)] = 113195, + [SMALL_STATE(3259)] = 113265, + [SMALL_STATE(3260)] = 113329, + [SMALL_STATE(3261)] = 113387, + [SMALL_STATE(3262)] = 113453, + [SMALL_STATE(3263)] = 113507, + [SMALL_STATE(3264)] = 113583, + [SMALL_STATE(3265)] = 113661, + [SMALL_STATE(3266)] = 113741, + [SMALL_STATE(3267)] = 113809, + [SMALL_STATE(3268)] = 113871, + [SMALL_STATE(3269)] = 113941, + [SMALL_STATE(3270)] = 114013, + [SMALL_STATE(3271)] = 114087, + [SMALL_STATE(3272)] = 114151, + [SMALL_STATE(3273)] = 114209, + [SMALL_STATE(3274)] = 114293, + [SMALL_STATE(3275)] = 114357, + [SMALL_STATE(3276)] = 114439, [SMALL_STATE(3277)] = 114523, [SMALL_STATE(3278)] = 114595, - [SMALL_STATE(3279)] = 114669, - [SMALL_STATE(3280)] = 114743, - [SMALL_STATE(3281)] = 114819, - [SMALL_STATE(3282)] = 114895, - [SMALL_STATE(3283)] = 114973, - [SMALL_STATE(3284)] = 115023, - [SMALL_STATE(3285)] = 115089, - [SMALL_STATE(3286)] = 115157, - [SMALL_STATE(3287)] = 115213, + [SMALL_STATE(3279)] = 114649, + [SMALL_STATE(3280)] = 114715, + [SMALL_STATE(3281)] = 114781, + [SMALL_STATE(3282)] = 114855, + [SMALL_STATE(3283)] = 114931, + [SMALL_STATE(3284)] = 115005, + [SMALL_STATE(3285)] = 115083, + [SMALL_STATE(3286)] = 115149, + [SMALL_STATE(3287)] = 115215, [SMALL_STATE(3288)] = 115291, - [SMALL_STATE(3289)] = 115371, - [SMALL_STATE(3290)] = 115453, - [SMALL_STATE(3291)] = 115523, - [SMALL_STATE(3292)] = 115587, - [SMALL_STATE(3293)] = 115659, - [SMALL_STATE(3294)] = 115733, - [SMALL_STATE(3295)] = 115809, - [SMALL_STATE(3296)] = 115875, - [SMALL_STATE(3297)] = 115939, - [SMALL_STATE(3298)] = 115997, - [SMALL_STATE(3299)] = 116063, - [SMALL_STATE(3300)] = 116117, - [SMALL_STATE(3301)] = 116193, - [SMALL_STATE(3302)] = 116271, - [SMALL_STATE(3303)] = 116351, - [SMALL_STATE(3304)] = 116419, - [SMALL_STATE(3305)] = 116481, - [SMALL_STATE(3306)] = 116551, - [SMALL_STATE(3307)] = 116623, - [SMALL_STATE(3308)] = 116697, - [SMALL_STATE(3309)] = 116763, - [SMALL_STATE(3310)] = 116827, - [SMALL_STATE(3311)] = 116881, - [SMALL_STATE(3312)] = 116949, - [SMALL_STATE(3313)] = 117011, - [SMALL_STATE(3314)] = 117081, - [SMALL_STATE(3315)] = 117139, - [SMALL_STATE(3316)] = 117193, - [SMALL_STATE(3317)] = 117273, - [SMALL_STATE(3318)] = 117355, - [SMALL_STATE(3319)] = 117439, - [SMALL_STATE(3320)] = 117489, - [SMALL_STATE(3321)] = 117561, - [SMALL_STATE(3322)] = 117627, - [SMALL_STATE(3323)] = 117701, - [SMALL_STATE(3324)] = 117777, - [SMALL_STATE(3325)] = 117827, - [SMALL_STATE(3326)] = 117877, - [SMALL_STATE(3327)] = 117927, - [SMALL_STATE(3328)] = 118005, - [SMALL_STATE(3329)] = 118069, - [SMALL_STATE(3330)] = 118133, - [SMALL_STATE(3331)] = 118199, - [SMALL_STATE(3332)] = 118265, - [SMALL_STATE(3333)] = 118333, - [SMALL_STATE(3334)] = 118387, - [SMALL_STATE(3335)] = 118441, - [SMALL_STATE(3336)] = 118505, + [SMALL_STATE(3289)] = 115355, + [SMALL_STATE(3290)] = 115419, + [SMALL_STATE(3291)] = 115485, + [SMALL_STATE(3292)] = 115553, + [SMALL_STATE(3293)] = 115603, + [SMALL_STATE(3294)] = 115653, + [SMALL_STATE(3295)] = 115721, + [SMALL_STATE(3296)] = 115781, + [SMALL_STATE(3297)] = 115843, + [SMALL_STATE(3298)] = 115911, + [SMALL_STATE(3299)] = 115961, + [SMALL_STATE(3300)] = 116011, + [SMALL_STATE(3301)] = 116081, + [SMALL_STATE(3302)] = 116159, + [SMALL_STATE(3303)] = 116227, + [SMALL_STATE(3304)] = 116283, + [SMALL_STATE(3305)] = 116341, + [SMALL_STATE(3306)] = 116419, + [SMALL_STATE(3307)] = 116499, + [SMALL_STATE(3308)] = 116565, + [SMALL_STATE(3309)] = 116645, + [SMALL_STATE(3310)] = 116727, + [SMALL_STATE(3311)] = 116809, + [SMALL_STATE(3312)] = 116893, + [SMALL_STATE(3313)] = 116963, + [SMALL_STATE(3314)] = 117035, + [SMALL_STATE(3315)] = 117085, + [SMALL_STATE(3316)] = 117135, + [SMALL_STATE(3317)] = 117199, + [SMALL_STATE(3318)] = 117265, + [SMALL_STATE(3319)] = 117329, + [SMALL_STATE(3320)] = 117401, + [SMALL_STATE(3321)] = 117475, + [SMALL_STATE(3322)] = 117549, + [SMALL_STATE(3323)] = 117625, + [SMALL_STATE(3324)] = 117701, + [SMALL_STATE(3325)] = 117779, + [SMALL_STATE(3326)] = 117847, + [SMALL_STATE(3327)] = 117909, + [SMALL_STATE(3328)] = 117979, + [SMALL_STATE(3329)] = 118045, + [SMALL_STATE(3330)] = 118099, + [SMALL_STATE(3331)] = 118157, + [SMALL_STATE(3332)] = 118211, + [SMALL_STATE(3333)] = 118271, + [SMALL_STATE(3334)] = 118337, + [SMALL_STATE(3335)] = 118417, + [SMALL_STATE(3336)] = 118485, [SMALL_STATE(3337)] = 118565, [SMALL_STATE(3338)] = 118626, [SMALL_STATE(3339)] = 118687, [SMALL_STATE(3340)] = 118738, - [SMALL_STATE(3341)] = 118791, - [SMALL_STATE(3342)] = 118852, - [SMALL_STATE(3343)] = 118925, - [SMALL_STATE(3344)] = 118976, - [SMALL_STATE(3345)] = 119047, - [SMALL_STATE(3346)] = 119112, - [SMALL_STATE(3347)] = 119187, - [SMALL_STATE(3348)] = 119248, - [SMALL_STATE(3349)] = 119309, - [SMALL_STATE(3350)] = 119370, - [SMALL_STATE(3351)] = 119421, - [SMALL_STATE(3352)] = 119472, - [SMALL_STATE(3353)] = 119537, - [SMALL_STATE(3354)] = 119602, - [SMALL_STATE(3355)] = 119657, - [SMALL_STATE(3356)] = 119722, - [SMALL_STATE(3357)] = 119789, - [SMALL_STATE(3358)] = 119850, - [SMALL_STATE(3359)] = 119909, - [SMALL_STATE(3360)] = 119960, - [SMALL_STATE(3361)] = 120023, - [SMALL_STATE(3362)] = 120092, - [SMALL_STATE(3363)] = 120153, - [SMALL_STATE(3364)] = 120230, - [SMALL_STATE(3365)] = 120281, - [SMALL_STATE(3366)] = 120338, - [SMALL_STATE(3367)] = 120397, - [SMALL_STATE(3368)] = 120476, - [SMALL_STATE(3369)] = 120537, - [SMALL_STATE(3370)] = 120588, - [SMALL_STATE(3371)] = 120649, - [SMALL_STATE(3372)] = 120710, - [SMALL_STATE(3373)] = 120761, - [SMALL_STATE(3374)] = 120812, - [SMALL_STATE(3375)] = 120865, - [SMALL_STATE(3376)] = 120916, - [SMALL_STATE(3377)] = 120967, - [SMALL_STATE(3378)] = 121022, - [SMALL_STATE(3379)] = 121087, + [SMALL_STATE(3341)] = 118793, + [SMALL_STATE(3342)] = 118848, + [SMALL_STATE(3343)] = 118899, + [SMALL_STATE(3344)] = 118960, + [SMALL_STATE(3345)] = 119019, + [SMALL_STATE(3346)] = 119070, + [SMALL_STATE(3347)] = 119135, + [SMALL_STATE(3348)] = 119200, + [SMALL_STATE(3349)] = 119265, + [SMALL_STATE(3350)] = 119326, + [SMALL_STATE(3351)] = 119377, + [SMALL_STATE(3352)] = 119428, + [SMALL_STATE(3353)] = 119479, + [SMALL_STATE(3354)] = 119530, + [SMALL_STATE(3355)] = 119581, + [SMALL_STATE(3356)] = 119632, + [SMALL_STATE(3357)] = 119683, + [SMALL_STATE(3358)] = 119744, + [SMALL_STATE(3359)] = 119809, + [SMALL_STATE(3360)] = 119870, + [SMALL_STATE(3361)] = 119923, + [SMALL_STATE(3362)] = 119974, + [SMALL_STATE(3363)] = 120035, + [SMALL_STATE(3364)] = 120098, + [SMALL_STATE(3365)] = 120155, + [SMALL_STATE(3366)] = 120220, + [SMALL_STATE(3367)] = 120273, + [SMALL_STATE(3368)] = 120348, + [SMALL_STATE(3369)] = 120425, + [SMALL_STATE(3370)] = 120504, + [SMALL_STATE(3371)] = 120571, + [SMALL_STATE(3372)] = 120632, + [SMALL_STATE(3373)] = 120701, + [SMALL_STATE(3374)] = 120772, + [SMALL_STATE(3375)] = 120845, + [SMALL_STATE(3376)] = 120906, + [SMALL_STATE(3377)] = 120957, + [SMALL_STATE(3378)] = 121018, + [SMALL_STATE(3379)] = 121077, [SMALL_STATE(3380)] = 121138, - [SMALL_STATE(3381)] = 121192, - [SMALL_STATE(3382)] = 121246, - [SMALL_STATE(3383)] = 121300, - [SMALL_STATE(3384)] = 121366, - [SMALL_STATE(3385)] = 121424, - [SMALL_STATE(3386)] = 121476, - [SMALL_STATE(3387)] = 121528, + [SMALL_STATE(3381)] = 121204, + [SMALL_STATE(3382)] = 121258, + [SMALL_STATE(3383)] = 121310, + [SMALL_STATE(3384)] = 121396, + [SMALL_STATE(3385)] = 121450, + [SMALL_STATE(3386)] = 121508, + [SMALL_STATE(3387)] = 121562, [SMALL_STATE(3388)] = 121614, - [SMALL_STATE(3389)] = 121700, - [SMALL_STATE(3390)] = 121758, - [SMALL_STATE(3391)] = 121816, - [SMALL_STATE(3392)] = 121870, - [SMALL_STATE(3393)] = 121926, - [SMALL_STATE(3394)] = 121980, + [SMALL_STATE(3389)] = 121668, + [SMALL_STATE(3390)] = 121726, + [SMALL_STATE(3391)] = 121784, + [SMALL_STATE(3392)] = 121838, + [SMALL_STATE(3393)] = 121894, + [SMALL_STATE(3394)] = 121948, [SMALL_STATE(3395)] = 122034, - [SMALL_STATE(3396)] = 122083, - [SMALL_STATE(3397)] = 122132, - [SMALL_STATE(3398)] = 122185, + [SMALL_STATE(3396)] = 122089, + [SMALL_STATE(3397)] = 122140, + [SMALL_STATE(3398)] = 122189, [SMALL_STATE(3399)] = 122240, [SMALL_STATE(3400)] = 122295, [SMALL_STATE(3401)] = 122350, - [SMALL_STATE(3402)] = 122401, - [SMALL_STATE(3403)] = 122464, - [SMALL_STATE(3404)] = 122527, - [SMALL_STATE(3405)] = 122610, + [SMALL_STATE(3402)] = 122433, + [SMALL_STATE(3403)] = 122482, + [SMALL_STATE(3404)] = 122545, + [SMALL_STATE(3405)] = 122604, [SMALL_STATE(3406)] = 122667, - [SMALL_STATE(3407)] = 122726, - [SMALL_STATE(3408)] = 122775, - [SMALL_STATE(3409)] = 122824, - [SMALL_STATE(3410)] = 122887, - [SMALL_STATE(3411)] = 122936, - [SMALL_STATE(3412)] = 122999, - [SMALL_STATE(3413)] = 123050, - [SMALL_STATE(3414)] = 123101, - [SMALL_STATE(3415)] = 123156, - [SMALL_STATE(3416)] = 123221, - [SMALL_STATE(3417)] = 123276, - [SMALL_STATE(3418)] = 123329, - [SMALL_STATE(3419)] = 123382, - [SMALL_STATE(3420)] = 123465, + [SMALL_STATE(3407)] = 122732, + [SMALL_STATE(3408)] = 122787, + [SMALL_STATE(3409)] = 122850, + [SMALL_STATE(3410)] = 122899, + [SMALL_STATE(3411)] = 122962, + [SMALL_STATE(3412)] = 123013, + [SMALL_STATE(3413)] = 123096, + [SMALL_STATE(3414)] = 123153, + [SMALL_STATE(3415)] = 123208, + [SMALL_STATE(3416)] = 123261, + [SMALL_STATE(3417)] = 123310, + [SMALL_STATE(3418)] = 123361, + [SMALL_STATE(3419)] = 123414, + [SMALL_STATE(3420)] = 123467, [SMALL_STATE(3421)] = 123516, - [SMALL_STATE(3422)] = 123572, - [SMALL_STATE(3423)] = 123624, - [SMALL_STATE(3424)] = 123672, - [SMALL_STATE(3425)] = 123720, - [SMALL_STATE(3426)] = 123776, - [SMALL_STATE(3427)] = 123824, - [SMALL_STATE(3428)] = 123880, - [SMALL_STATE(3429)] = 123928, - [SMALL_STATE(3430)] = 123976, - [SMALL_STATE(3431)] = 124028, - [SMALL_STATE(3432)] = 124080, - [SMALL_STATE(3433)] = 124132, - [SMALL_STATE(3434)] = 124180, - [SMALL_STATE(3435)] = 124242, - [SMALL_STATE(3436)] = 124290, - [SMALL_STATE(3437)] = 124340, - [SMALL_STATE(3438)] = 124390, - [SMALL_STATE(3439)] = 124438, - [SMALL_STATE(3440)] = 124486, - [SMALL_STATE(3441)] = 124548, - [SMALL_STATE(3442)] = 124596, - [SMALL_STATE(3443)] = 124644, - [SMALL_STATE(3444)] = 124692, - [SMALL_STATE(3445)] = 124740, - [SMALL_STATE(3446)] = 124788, - [SMALL_STATE(3447)] = 124836, - [SMALL_STATE(3448)] = 124884, - [SMALL_STATE(3449)] = 124932, - [SMALL_STATE(3450)] = 124980, - [SMALL_STATE(3451)] = 125028, - [SMALL_STATE(3452)] = 125076, - [SMALL_STATE(3453)] = 125124, - [SMALL_STATE(3454)] = 125172, - [SMALL_STATE(3455)] = 125224, - [SMALL_STATE(3456)] = 125272, - [SMALL_STATE(3457)] = 125328, - [SMALL_STATE(3458)] = 125376, - [SMALL_STATE(3459)] = 125430, + [SMALL_STATE(3422)] = 123568, + [SMALL_STATE(3423)] = 123622, + [SMALL_STATE(3424)] = 123670, + [SMALL_STATE(3425)] = 123718, + [SMALL_STATE(3426)] = 123766, + [SMALL_STATE(3427)] = 123814, + [SMALL_STATE(3428)] = 123864, + [SMALL_STATE(3429)] = 123912, + [SMALL_STATE(3430)] = 123962, + [SMALL_STATE(3431)] = 124010, + [SMALL_STATE(3432)] = 124058, + [SMALL_STATE(3433)] = 124106, + [SMALL_STATE(3434)] = 124162, + [SMALL_STATE(3435)] = 124210, + [SMALL_STATE(3436)] = 124258, + [SMALL_STATE(3437)] = 124314, + [SMALL_STATE(3438)] = 124362, + [SMALL_STATE(3439)] = 124410, + [SMALL_STATE(3440)] = 124462, + [SMALL_STATE(3441)] = 124510, + [SMALL_STATE(3442)] = 124566, + [SMALL_STATE(3443)] = 124618, + [SMALL_STATE(3444)] = 124680, + [SMALL_STATE(3445)] = 124728, + [SMALL_STATE(3446)] = 124776, + [SMALL_STATE(3447)] = 124828, + [SMALL_STATE(3448)] = 124880, + [SMALL_STATE(3449)] = 124928, + [SMALL_STATE(3450)] = 124976, + [SMALL_STATE(3451)] = 125032, + [SMALL_STATE(3452)] = 125094, + [SMALL_STATE(3453)] = 125142, + [SMALL_STATE(3454)] = 125190, + [SMALL_STATE(3455)] = 125238, + [SMALL_STATE(3456)] = 125286, + [SMALL_STATE(3457)] = 125334, + [SMALL_STATE(3458)] = 125396, + [SMALL_STATE(3459)] = 125444, [SMALL_STATE(3460)] = 125492, - [SMALL_STATE(3461)] = 125547, + [SMALL_STATE(3461)] = 125539, [SMALL_STATE(3462)] = 125594, - [SMALL_STATE(3463)] = 125649, - [SMALL_STATE(3464)] = 125696, - [SMALL_STATE(3465)] = 125751, - [SMALL_STATE(3466)] = 125806, - [SMALL_STATE(3467)] = 125861, - [SMALL_STATE(3468)] = 125916, - [SMALL_STATE(3469)] = 125971, - [SMALL_STATE(3470)] = 126022, - [SMALL_STATE(3471)] = 126077, - [SMALL_STATE(3472)] = 126132, - [SMALL_STATE(3473)] = 126187, - [SMALL_STATE(3474)] = 126242, - [SMALL_STATE(3475)] = 126297, - [SMALL_STATE(3476)] = 126344, - [SMALL_STATE(3477)] = 126397, - [SMALL_STATE(3478)] = 126446, - [SMALL_STATE(3479)] = 126501, - [SMALL_STATE(3480)] = 126556, - [SMALL_STATE(3481)] = 126611, - [SMALL_STATE(3482)] = 126666, - [SMALL_STATE(3483)] = 126713, - [SMALL_STATE(3484)] = 126764, - [SMALL_STATE(3485)] = 126815, - [SMALL_STATE(3486)] = 126862, - [SMALL_STATE(3487)] = 126917, - [SMALL_STATE(3488)] = 126972, - [SMALL_STATE(3489)] = 127027, - [SMALL_STATE(3490)] = 127074, - [SMALL_STATE(3491)] = 127129, - [SMALL_STATE(3492)] = 127184, - [SMALL_STATE(3493)] = 127239, - [SMALL_STATE(3494)] = 127294, - [SMALL_STATE(3495)] = 127341, - [SMALL_STATE(3496)] = 127396, + [SMALL_STATE(3463)] = 125641, + [SMALL_STATE(3464)] = 125688, + [SMALL_STATE(3465)] = 125743, + [SMALL_STATE(3466)] = 125796, + [SMALL_STATE(3467)] = 125843, + [SMALL_STATE(3468)] = 125898, + [SMALL_STATE(3469)] = 125953, + [SMALL_STATE(3470)] = 126008, + [SMALL_STATE(3471)] = 126059, + [SMALL_STATE(3472)] = 126108, + [SMALL_STATE(3473)] = 126155, + [SMALL_STATE(3474)] = 126210, + [SMALL_STATE(3475)] = 126265, + [SMALL_STATE(3476)] = 126320, + [SMALL_STATE(3477)] = 126367, + [SMALL_STATE(3478)] = 126422, + [SMALL_STATE(3479)] = 126477, + [SMALL_STATE(3480)] = 126526, + [SMALL_STATE(3481)] = 126581, + [SMALL_STATE(3482)] = 126636, + [SMALL_STATE(3483)] = 126683, + [SMALL_STATE(3484)] = 126734, + [SMALL_STATE(3485)] = 126785, + [SMALL_STATE(3486)] = 126840, + [SMALL_STATE(3487)] = 126895, + [SMALL_STATE(3488)] = 126950, + [SMALL_STATE(3489)] = 127005, + [SMALL_STATE(3490)] = 127060, + [SMALL_STATE(3491)] = 127115, + [SMALL_STATE(3492)] = 127170, + [SMALL_STATE(3493)] = 127225, + [SMALL_STATE(3494)] = 127280, + [SMALL_STATE(3495)] = 127335, + [SMALL_STATE(3496)] = 127390, [SMALL_STATE(3497)] = 127445, - [SMALL_STATE(3498)] = 127491, - [SMALL_STATE(3499)] = 127537, - [SMALL_STATE(3500)] = 127583, - [SMALL_STATE(3501)] = 127629, - [SMALL_STATE(3502)] = 127675, - [SMALL_STATE(3503)] = 127727, - [SMALL_STATE(3504)] = 127773, - [SMALL_STATE(3505)] = 127819, - [SMALL_STATE(3506)] = 127865, - [SMALL_STATE(3507)] = 127911, - [SMALL_STATE(3508)] = 127957, - [SMALL_STATE(3509)] = 128005, - [SMALL_STATE(3510)] = 128051, - [SMALL_STATE(3511)] = 128097, - [SMALL_STATE(3512)] = 128147, - [SMALL_STATE(3513)] = 128193, - [SMALL_STATE(3514)] = 128239, - [SMALL_STATE(3515)] = 128285, - [SMALL_STATE(3516)] = 128331, - [SMALL_STATE(3517)] = 128377, - [SMALL_STATE(3518)] = 128423, - [SMALL_STATE(3519)] = 128469, - [SMALL_STATE(3520)] = 128515, - [SMALL_STATE(3521)] = 128561, - [SMALL_STATE(3522)] = 128607, - [SMALL_STATE(3523)] = 128657, - [SMALL_STATE(3524)] = 128705, - [SMALL_STATE(3525)] = 128755, - [SMALL_STATE(3526)] = 128805, - [SMALL_STATE(3527)] = 128853, - [SMALL_STATE(3528)] = 128899, - [SMALL_STATE(3529)] = 128949, - [SMALL_STATE(3530)] = 128995, - [SMALL_STATE(3531)] = 129041, - [SMALL_STATE(3532)] = 129087, - [SMALL_STATE(3533)] = 129133, - [SMALL_STATE(3534)] = 129179, - [SMALL_STATE(3535)] = 129225, - [SMALL_STATE(3536)] = 129271, - [SMALL_STATE(3537)] = 129317, - [SMALL_STATE(3538)] = 129367, - [SMALL_STATE(3539)] = 129413, - [SMALL_STATE(3540)] = 129459, - [SMALL_STATE(3541)] = 129505, - [SMALL_STATE(3542)] = 129557, - [SMALL_STATE(3543)] = 129603, - [SMALL_STATE(3544)] = 129651, - [SMALL_STATE(3545)] = 129705, - [SMALL_STATE(3546)] = 129751, - [SMALL_STATE(3547)] = 129795, + [SMALL_STATE(3498)] = 127495, + [SMALL_STATE(3499)] = 127541, + [SMALL_STATE(3500)] = 127587, + [SMALL_STATE(3501)] = 127633, + [SMALL_STATE(3502)] = 127679, + [SMALL_STATE(3503)] = 127725, + [SMALL_STATE(3504)] = 127771, + [SMALL_STATE(3505)] = 127823, + [SMALL_STATE(3506)] = 127869, + [SMALL_STATE(3507)] = 127915, + [SMALL_STATE(3508)] = 127965, + [SMALL_STATE(3509)] = 128011, + [SMALL_STATE(3510)] = 128057, + [SMALL_STATE(3511)] = 128103, + [SMALL_STATE(3512)] = 128149, + [SMALL_STATE(3513)] = 128197, + [SMALL_STATE(3514)] = 128243, + [SMALL_STATE(3515)] = 128291, + [SMALL_STATE(3516)] = 128337, + [SMALL_STATE(3517)] = 128387, + [SMALL_STATE(3518)] = 128439, + [SMALL_STATE(3519)] = 128485, + [SMALL_STATE(3520)] = 128531, + [SMALL_STATE(3521)] = 128577, + [SMALL_STATE(3522)] = 128623, + [SMALL_STATE(3523)] = 128673, + [SMALL_STATE(3524)] = 128725, + [SMALL_STATE(3525)] = 128771, + [SMALL_STATE(3526)] = 128819, + [SMALL_STATE(3527)] = 128865, + [SMALL_STATE(3528)] = 128911, + [SMALL_STATE(3529)] = 128957, + [SMALL_STATE(3530)] = 129007, + [SMALL_STATE(3531)] = 129053, + [SMALL_STATE(3532)] = 129099, + [SMALL_STATE(3533)] = 129145, + [SMALL_STATE(3534)] = 129191, + [SMALL_STATE(3535)] = 129237, + [SMALL_STATE(3536)] = 129285, + [SMALL_STATE(3537)] = 129331, + [SMALL_STATE(3538)] = 129385, + [SMALL_STATE(3539)] = 129435, + [SMALL_STATE(3540)] = 129481, + [SMALL_STATE(3541)] = 129527, + [SMALL_STATE(3542)] = 129573, + [SMALL_STATE(3543)] = 129619, + [SMALL_STATE(3544)] = 129665, + [SMALL_STATE(3545)] = 129711, + [SMALL_STATE(3546)] = 129755, + [SMALL_STATE(3547)] = 129801, [SMALL_STATE(3548)] = 129847, - [SMALL_STATE(3549)] = 129901, + [SMALL_STATE(3549)] = 129893, [SMALL_STATE(3550)] = 129947, [SMALL_STATE(3551)] = 129993, - [SMALL_STATE(3552)] = 130046, - [SMALL_STATE(3553)] = 130099, - [SMALL_STATE(3554)] = 130148, - [SMALL_STATE(3555)] = 130193, - [SMALL_STATE(3556)] = 130238, - [SMALL_STATE(3557)] = 130291, - [SMALL_STATE(3558)] = 130340, - [SMALL_STATE(3559)] = 130393, - [SMALL_STATE(3560)] = 130440, - [SMALL_STATE(3561)] = 130487, - [SMALL_STATE(3562)] = 130536, - [SMALL_STATE(3563)] = 130581, - [SMALL_STATE(3564)] = 130634, - [SMALL_STATE(3565)] = 130679, - [SMALL_STATE(3566)] = 130732, - [SMALL_STATE(3567)] = 130785, - [SMALL_STATE(3568)] = 130838, - [SMALL_STATE(3569)] = 130883, - [SMALL_STATE(3570)] = 130936, - [SMALL_STATE(3571)] = 130981, - [SMALL_STATE(3572)] = 131026, - [SMALL_STATE(3573)] = 131075, - [SMALL_STATE(3574)] = 131120, - [SMALL_STATE(3575)] = 131165, - [SMALL_STATE(3576)] = 131214, - [SMALL_STATE(3577)] = 131259, - [SMALL_STATE(3578)] = 131312, - [SMALL_STATE(3579)] = 131365, - [SMALL_STATE(3580)] = 131418, - [SMALL_STATE(3581)] = 131463, - [SMALL_STATE(3582)] = 131508, - [SMALL_STATE(3583)] = 131553, - [SMALL_STATE(3584)] = 131606, - [SMALL_STATE(3585)] = 131659, - [SMALL_STATE(3586)] = 131712, - [SMALL_STATE(3587)] = 131765, - [SMALL_STATE(3588)] = 131818, - [SMALL_STATE(3589)] = 131867, - [SMALL_STATE(3590)] = 131920, - [SMALL_STATE(3591)] = 131965, - [SMALL_STATE(3592)] = 132010, - [SMALL_STATE(3593)] = 132055, - [SMALL_STATE(3594)] = 132108, - [SMALL_STATE(3595)] = 132155, - [SMALL_STATE(3596)] = 132202, - [SMALL_STATE(3597)] = 132255, - [SMALL_STATE(3598)] = 132308, - [SMALL_STATE(3599)] = 132361, - [SMALL_STATE(3600)] = 132414, - [SMALL_STATE(3601)] = 132467, - [SMALL_STATE(3602)] = 132520, - [SMALL_STATE(3603)] = 132569, - [SMALL_STATE(3604)] = 132622, + [SMALL_STATE(3552)] = 130040, + [SMALL_STATE(3553)] = 130093, + [SMALL_STATE(3554)] = 130142, + [SMALL_STATE(3555)] = 130187, + [SMALL_STATE(3556)] = 130236, + [SMALL_STATE(3557)] = 130285, + [SMALL_STATE(3558)] = 130334, + [SMALL_STATE(3559)] = 130379, + [SMALL_STATE(3560)] = 130432, + [SMALL_STATE(3561)] = 130485, + [SMALL_STATE(3562)] = 130530, + [SMALL_STATE(3563)] = 130583, + [SMALL_STATE(3564)] = 130636, + [SMALL_STATE(3565)] = 130689, + [SMALL_STATE(3566)] = 130734, + [SMALL_STATE(3567)] = 130787, + [SMALL_STATE(3568)] = 130832, + [SMALL_STATE(3569)] = 130881, + [SMALL_STATE(3570)] = 130934, + [SMALL_STATE(3571)] = 130987, + [SMALL_STATE(3572)] = 131040, + [SMALL_STATE(3573)] = 131093, + [SMALL_STATE(3574)] = 131138, + [SMALL_STATE(3575)] = 131183, + [SMALL_STATE(3576)] = 131236, + [SMALL_STATE(3577)] = 131289, + [SMALL_STATE(3578)] = 131342, + [SMALL_STATE(3579)] = 131395, + [SMALL_STATE(3580)] = 131440, + [SMALL_STATE(3581)] = 131493, + [SMALL_STATE(3582)] = 131546, + [SMALL_STATE(3583)] = 131599, + [SMALL_STATE(3584)] = 131652, + [SMALL_STATE(3585)] = 131705, + [SMALL_STATE(3586)] = 131750, + [SMALL_STATE(3587)] = 131803, + [SMALL_STATE(3588)] = 131856, + [SMALL_STATE(3589)] = 131901, + [SMALL_STATE(3590)] = 131948, + [SMALL_STATE(3591)] = 131993, + [SMALL_STATE(3592)] = 132040, + [SMALL_STATE(3593)] = 132093, + [SMALL_STATE(3594)] = 132140, + [SMALL_STATE(3595)] = 132193, + [SMALL_STATE(3596)] = 132242, + [SMALL_STATE(3597)] = 132295, + [SMALL_STATE(3598)] = 132340, + [SMALL_STATE(3599)] = 132389, + [SMALL_STATE(3600)] = 132434, + [SMALL_STATE(3601)] = 132479, + [SMALL_STATE(3602)] = 132532, + [SMALL_STATE(3603)] = 132585, + [SMALL_STATE(3604)] = 132630, [SMALL_STATE(3605)] = 132675, [SMALL_STATE(3606)] = 132720, - [SMALL_STATE(3607)] = 132764, - [SMALL_STATE(3608)] = 132808, - [SMALL_STATE(3609)] = 132854, - [SMALL_STATE(3610)] = 132902, - [SMALL_STATE(3611)] = 132946, - [SMALL_STATE(3612)] = 132990, - [SMALL_STATE(3613)] = 133038, - [SMALL_STATE(3614)] = 133084, - [SMALL_STATE(3615)] = 133128, - [SMALL_STATE(3616)] = 133172, - [SMALL_STATE(3617)] = 133216, - [SMALL_STATE(3618)] = 133262, - [SMALL_STATE(3619)] = 133306, - [SMALL_STATE(3620)] = 133350, - [SMALL_STATE(3621)] = 133394, - [SMALL_STATE(3622)] = 133438, - [SMALL_STATE(3623)] = 133486, - [SMALL_STATE(3624)] = 133534, - [SMALL_STATE(3625)] = 133586, - [SMALL_STATE(3626)] = 133630, - [SMALL_STATE(3627)] = 133674, - [SMALL_STATE(3628)] = 133718, - [SMALL_STATE(3629)] = 133762, - [SMALL_STATE(3630)] = 133806, - [SMALL_STATE(3631)] = 133852, - [SMALL_STATE(3632)] = 133900, - [SMALL_STATE(3633)] = 133946, - [SMALL_STATE(3634)] = 133992, - [SMALL_STATE(3635)] = 134044, - [SMALL_STATE(3636)] = 134090, - [SMALL_STATE(3637)] = 134136, + [SMALL_STATE(3607)] = 132766, + [SMALL_STATE(3608)] = 132818, + [SMALL_STATE(3609)] = 132862, + [SMALL_STATE(3610)] = 132908, + [SMALL_STATE(3611)] = 132952, + [SMALL_STATE(3612)] = 132998, + [SMALL_STATE(3613)] = 133042, + [SMALL_STATE(3614)] = 133090, + [SMALL_STATE(3615)] = 133138, + [SMALL_STATE(3616)] = 133182, + [SMALL_STATE(3617)] = 133228, + [SMALL_STATE(3618)] = 133274, + [SMALL_STATE(3619)] = 133318, + [SMALL_STATE(3620)] = 133364, + [SMALL_STATE(3621)] = 133412, + [SMALL_STATE(3622)] = 133456, + [SMALL_STATE(3623)] = 133500, + [SMALL_STATE(3624)] = 133544, + [SMALL_STATE(3625)] = 133588, + [SMALL_STATE(3626)] = 133640, + [SMALL_STATE(3627)] = 133684, + [SMALL_STATE(3628)] = 133728, + [SMALL_STATE(3629)] = 133774, + [SMALL_STATE(3630)] = 133818, + [SMALL_STATE(3631)] = 133862, + [SMALL_STATE(3632)] = 133906, + [SMALL_STATE(3633)] = 133950, + [SMALL_STATE(3634)] = 133994, + [SMALL_STATE(3635)] = 134040, + [SMALL_STATE(3636)] = 134086, + [SMALL_STATE(3637)] = 134134, [SMALL_STATE(3638)] = 134182, [SMALL_STATE(3639)] = 134228, [SMALL_STATE(3640)] = 134271, - [SMALL_STATE(3641)] = 134314, - [SMALL_STATE(3642)] = 134357, - [SMALL_STATE(3643)] = 134400, - [SMALL_STATE(3644)] = 134443, - [SMALL_STATE(3645)] = 134486, - [SMALL_STATE(3646)] = 134529, - [SMALL_STATE(3647)] = 134574, - [SMALL_STATE(3648)] = 134625, - [SMALL_STATE(3649)] = 134668, - [SMALL_STATE(3650)] = 134711, - [SMALL_STATE(3651)] = 134754, - [SMALL_STATE(3652)] = 134801, - [SMALL_STATE(3653)] = 134844, - [SMALL_STATE(3654)] = 134887, - [SMALL_STATE(3655)] = 134930, - [SMALL_STATE(3656)] = 134973, - [SMALL_STATE(3657)] = 135016, - [SMALL_STATE(3658)] = 135063, - [SMALL_STATE(3659)] = 135106, - [SMALL_STATE(3660)] = 135149, - [SMALL_STATE(3661)] = 135192, - [SMALL_STATE(3662)] = 135235, - [SMALL_STATE(3663)] = 135278, - [SMALL_STATE(3664)] = 135321, - [SMALL_STATE(3665)] = 135364, - [SMALL_STATE(3666)] = 135411, - [SMALL_STATE(3667)] = 135454, - [SMALL_STATE(3668)] = 135501, - [SMALL_STATE(3669)] = 135548, - [SMALL_STATE(3670)] = 135595, - [SMALL_STATE(3671)] = 135642, - [SMALL_STATE(3672)] = 135689, - [SMALL_STATE(3673)] = 135736, - [SMALL_STATE(3674)] = 135783, - [SMALL_STATE(3675)] = 135826, - [SMALL_STATE(3676)] = 135873, - [SMALL_STATE(3677)] = 135920, - [SMALL_STATE(3678)] = 135963, - [SMALL_STATE(3679)] = 136010, - [SMALL_STATE(3680)] = 136057, - [SMALL_STATE(3681)] = 136100, - [SMALL_STATE(3682)] = 136147, - [SMALL_STATE(3683)] = 136190, - [SMALL_STATE(3684)] = 136237, - [SMALL_STATE(3685)] = 136284, - [SMALL_STATE(3686)] = 136331, - [SMALL_STATE(3687)] = 136374, - [SMALL_STATE(3688)] = 136417, - [SMALL_STATE(3689)] = 136464, - [SMALL_STATE(3690)] = 136511, - [SMALL_STATE(3691)] = 136554, - [SMALL_STATE(3692)] = 136597, - [SMALL_STATE(3693)] = 136640, - [SMALL_STATE(3694)] = 136683, - [SMALL_STATE(3695)] = 136726, - [SMALL_STATE(3696)] = 136769, - [SMALL_STATE(3697)] = 136816, - [SMALL_STATE(3698)] = 136859, - [SMALL_STATE(3699)] = 136908, - [SMALL_STATE(3700)] = 136955, - [SMALL_STATE(3701)] = 137002, - [SMALL_STATE(3702)] = 137045, - [SMALL_STATE(3703)] = 137088, - [SMALL_STATE(3704)] = 137131, - [SMALL_STATE(3705)] = 137174, - [SMALL_STATE(3706)] = 137217, - [SMALL_STATE(3707)] = 137306, - [SMALL_STATE(3708)] = 137349, - [SMALL_STATE(3709)] = 137392, - [SMALL_STATE(3710)] = 137437, - [SMALL_STATE(3711)] = 137480, - [SMALL_STATE(3712)] = 137523, - [SMALL_STATE(3713)] = 137566, + [SMALL_STATE(3641)] = 134318, + [SMALL_STATE(3642)] = 134407, + [SMALL_STATE(3643)] = 134454, + [SMALL_STATE(3644)] = 134501, + [SMALL_STATE(3645)] = 134544, + [SMALL_STATE(3646)] = 134591, + [SMALL_STATE(3647)] = 134638, + [SMALL_STATE(3648)] = 134681, + [SMALL_STATE(3649)] = 134724, + [SMALL_STATE(3650)] = 134771, + [SMALL_STATE(3651)] = 134818, + [SMALL_STATE(3652)] = 134861, + [SMALL_STATE(3653)] = 134904, + [SMALL_STATE(3654)] = 134947, + [SMALL_STATE(3655)] = 134990, + [SMALL_STATE(3656)] = 135033, + [SMALL_STATE(3657)] = 135076, + [SMALL_STATE(3658)] = 135119, + [SMALL_STATE(3659)] = 135162, + [SMALL_STATE(3660)] = 135205, + [SMALL_STATE(3661)] = 135248, + [SMALL_STATE(3662)] = 135293, + [SMALL_STATE(3663)] = 135336, + [SMALL_STATE(3664)] = 135379, + [SMALL_STATE(3665)] = 135422, + [SMALL_STATE(3666)] = 135465, + [SMALL_STATE(3667)] = 135508, + [SMALL_STATE(3668)] = 135551, + [SMALL_STATE(3669)] = 135594, + [SMALL_STATE(3670)] = 135637, + [SMALL_STATE(3671)] = 135680, + [SMALL_STATE(3672)] = 135723, + [SMALL_STATE(3673)] = 135766, + [SMALL_STATE(3674)] = 135809, + [SMALL_STATE(3675)] = 135858, + [SMALL_STATE(3676)] = 135901, + [SMALL_STATE(3677)] = 135944, + [SMALL_STATE(3678)] = 135987, + [SMALL_STATE(3679)] = 136030, + [SMALL_STATE(3680)] = 136073, + [SMALL_STATE(3681)] = 136116, + [SMALL_STATE(3682)] = 136167, + [SMALL_STATE(3683)] = 136210, + [SMALL_STATE(3684)] = 136253, + [SMALL_STATE(3685)] = 136296, + [SMALL_STATE(3686)] = 136339, + [SMALL_STATE(3687)] = 136386, + [SMALL_STATE(3688)] = 136429, + [SMALL_STATE(3689)] = 136472, + [SMALL_STATE(3690)] = 136515, + [SMALL_STATE(3691)] = 136558, + [SMALL_STATE(3692)] = 136603, + [SMALL_STATE(3693)] = 136646, + [SMALL_STATE(3694)] = 136693, + [SMALL_STATE(3695)] = 136736, + [SMALL_STATE(3696)] = 136783, + [SMALL_STATE(3697)] = 136830, + [SMALL_STATE(3698)] = 136877, + [SMALL_STATE(3699)] = 136924, + [SMALL_STATE(3700)] = 136971, + [SMALL_STATE(3701)] = 137014, + [SMALL_STATE(3702)] = 137057, + [SMALL_STATE(3703)] = 137104, + [SMALL_STATE(3704)] = 137151, + [SMALL_STATE(3705)] = 137198, + [SMALL_STATE(3706)] = 137245, + [SMALL_STATE(3707)] = 137292, + [SMALL_STATE(3708)] = 137335, + [SMALL_STATE(3709)] = 137378, + [SMALL_STATE(3710)] = 137425, + [SMALL_STATE(3711)] = 137472, + [SMALL_STATE(3712)] = 137515, + [SMALL_STATE(3713)] = 137562, [SMALL_STATE(3714)] = 137609, - [SMALL_STATE(3715)] = 137652, - [SMALL_STATE(3716)] = 137695, - [SMALL_STATE(3717)] = 137744, + [SMALL_STATE(3715)] = 137656, + [SMALL_STATE(3716)] = 137699, + [SMALL_STATE(3717)] = 137742, [SMALL_STATE(3718)] = 137791, - [SMALL_STATE(3719)] = 137834, - [SMALL_STATE(3720)] = 137881, - [SMALL_STATE(3721)] = 137928, - [SMALL_STATE(3722)] = 137975, - [SMALL_STATE(3723)] = 138022, - [SMALL_STATE(3724)] = 138065, + [SMALL_STATE(3719)] = 137838, + [SMALL_STATE(3720)] = 137885, + [SMALL_STATE(3721)] = 137974, + [SMALL_STATE(3722)] = 138021, + [SMALL_STATE(3723)] = 138064, + [SMALL_STATE(3724)] = 138111, [SMALL_STATE(3725)] = 138154, [SMALL_STATE(3726)] = 138197, [SMALL_STATE(3727)] = 138240, [SMALL_STATE(3728)] = 138283, [SMALL_STATE(3729)] = 138326, [SMALL_STATE(3730)] = 138373, - [SMALL_STATE(3731)] = 138417, - [SMALL_STATE(3732)] = 138483, - [SMALL_STATE(3733)] = 138549, - [SMALL_STATE(3734)] = 138617, - [SMALL_STATE(3735)] = 138673, - [SMALL_STATE(3736)] = 138723, - [SMALL_STATE(3737)] = 138781, - [SMALL_STATE(3738)] = 138827, - [SMALL_STATE(3739)] = 138895, - [SMALL_STATE(3740)] = 138965, - [SMALL_STATE(3741)] = 139037, - [SMALL_STATE(3742)] = 139097, - [SMALL_STATE(3743)] = 139151, - [SMALL_STATE(3744)] = 139213, - [SMALL_STATE(3745)] = 139277, - [SMALL_STATE(3746)] = 139343, - [SMALL_STATE(3747)] = 139403, - [SMALL_STATE(3748)] = 139445, - [SMALL_STATE(3749)] = 139493, - [SMALL_STATE(3750)] = 139563, - [SMALL_STATE(3751)] = 139605, - [SMALL_STATE(3752)] = 139651, - [SMALL_STATE(3753)] = 139699, - [SMALL_STATE(3754)] = 139741, - [SMALL_STATE(3755)] = 139783, - [SMALL_STATE(3756)] = 139855, - [SMALL_STATE(3757)] = 139897, - [SMALL_STATE(3758)] = 139971, - [SMALL_STATE(3759)] = 140033, - [SMALL_STATE(3760)] = 140077, - [SMALL_STATE(3761)] = 140133, - [SMALL_STATE(3762)] = 140197, - [SMALL_STATE(3763)] = 140263, - [SMALL_STATE(3764)] = 140331, - [SMALL_STATE(3765)] = 140379, - [SMALL_STATE(3766)] = 140421, - [SMALL_STATE(3767)] = 140477, - [SMALL_STATE(3768)] = 140521, - [SMALL_STATE(3769)] = 140579, - [SMALL_STATE(3770)] = 140629, - [SMALL_STATE(3771)] = 140681, - [SMALL_STATE(3772)] = 140739, - [SMALL_STATE(3773)] = 140799, - [SMALL_STATE(3774)] = 140845, - [SMALL_STATE(3775)] = 140893, - [SMALL_STATE(3776)] = 140961, - [SMALL_STATE(3777)] = 141031, - [SMALL_STATE(3778)] = 141101, - [SMALL_STATE(3779)] = 141173, - [SMALL_STATE(3780)] = 141245, - [SMALL_STATE(3781)] = 141319, - [SMALL_STATE(3782)] = 141379, - [SMALL_STATE(3783)] = 141441, - [SMALL_STATE(3784)] = 141495, - [SMALL_STATE(3785)] = 141551, - [SMALL_STATE(3786)] = 141613, - [SMALL_STATE(3787)] = 141677, - [SMALL_STATE(3788)] = 141741, - [SMALL_STATE(3789)] = 141807, - [SMALL_STATE(3790)] = 141873, - [SMALL_STATE(3791)] = 141941, - [SMALL_STATE(3792)] = 141999, - [SMALL_STATE(3793)] = 142041, - [SMALL_STATE(3794)] = 142093, - [SMALL_STATE(3795)] = 142135, - [SMALL_STATE(3796)] = 142195, - [SMALL_STATE(3797)] = 142241, - [SMALL_STATE(3798)] = 142289, - [SMALL_STATE(3799)] = 142359, - [SMALL_STATE(3800)] = 142431, - [SMALL_STATE(3801)] = 142475, - [SMALL_STATE(3802)] = 142549, - [SMALL_STATE(3803)] = 142613, - [SMALL_STATE(3804)] = 142669, - [SMALL_STATE(3805)] = 142733, - [SMALL_STATE(3806)] = 142799, - [SMALL_STATE(3807)] = 142847, - [SMALL_STATE(3808)] = 142915, - [SMALL_STATE(3809)] = 142967, - [SMALL_STATE(3810)] = 143025, - [SMALL_STATE(3811)] = 143081, - [SMALL_STATE(3812)] = 143131, - [SMALL_STATE(3813)] = 143173, - [SMALL_STATE(3814)] = 143231, - [SMALL_STATE(3815)] = 143277, - [SMALL_STATE(3816)] = 143325, - [SMALL_STATE(3817)] = 143393, - [SMALL_STATE(3818)] = 143463, - [SMALL_STATE(3819)] = 143535, - [SMALL_STATE(3820)] = 143583, - [SMALL_STATE(3821)] = 143631, - [SMALL_STATE(3822)] = 143673, - [SMALL_STATE(3823)] = 143715, - [SMALL_STATE(3824)] = 143775, - [SMALL_STATE(3825)] = 143823, - [SMALL_STATE(3826)] = 143877, - [SMALL_STATE(3827)] = 143939, - [SMALL_STATE(3828)] = 144003, - [SMALL_STATE(3829)] = 144045, - [SMALL_STATE(3830)] = 144087, - [SMALL_STATE(3831)] = 144153, - [SMALL_STATE(3832)] = 144209, - [SMALL_STATE(3833)] = 144251, - [SMALL_STATE(3834)] = 144299, - [SMALL_STATE(3835)] = 144357, - [SMALL_STATE(3836)] = 144407, - [SMALL_STATE(3837)] = 144459, - [SMALL_STATE(3838)] = 144517, - [SMALL_STATE(3839)] = 144559, - [SMALL_STATE(3840)] = 144619, - [SMALL_STATE(3841)] = 144665, - [SMALL_STATE(3842)] = 144713, - [SMALL_STATE(3843)] = 144781, - [SMALL_STATE(3844)] = 144825, - [SMALL_STATE(3845)] = 144895, - [SMALL_STATE(3846)] = 144937, - [SMALL_STATE(3847)] = 145007, - [SMALL_STATE(3848)] = 145079, - [SMALL_STATE(3849)] = 145123, - [SMALL_STATE(3850)] = 145165, - [SMALL_STATE(3851)] = 145207, - [SMALL_STATE(3852)] = 145279, - [SMALL_STATE(3853)] = 145353, - [SMALL_STATE(3854)] = 145413, - [SMALL_STATE(3855)] = 145475, - [SMALL_STATE(3856)] = 145529, - [SMALL_STATE(3857)] = 145571, - [SMALL_STATE(3858)] = 145627, - [SMALL_STATE(3859)] = 145669, - [SMALL_STATE(3860)] = 145731, - [SMALL_STATE(3861)] = 145795, + [SMALL_STATE(3731)] = 138441, + [SMALL_STATE(3732)] = 138489, + [SMALL_STATE(3733)] = 138559, + [SMALL_STATE(3734)] = 138605, + [SMALL_STATE(3735)] = 138649, + [SMALL_STATE(3736)] = 138721, + [SMALL_STATE(3737)] = 138769, + [SMALL_STATE(3738)] = 138843, + [SMALL_STATE(3739)] = 138885, + [SMALL_STATE(3740)] = 138929, + [SMALL_STATE(3741)] = 138973, + [SMALL_STATE(3742)] = 139035, + [SMALL_STATE(3743)] = 139091, + [SMALL_STATE(3744)] = 139155, + [SMALL_STATE(3745)] = 139221, + [SMALL_STATE(3746)] = 139265, + [SMALL_STATE(3747)] = 139333, + [SMALL_STATE(3748)] = 139375, + [SMALL_STATE(3749)] = 139417, + [SMALL_STATE(3750)] = 139473, + [SMALL_STATE(3751)] = 139523, + [SMALL_STATE(3752)] = 139565, + [SMALL_STATE(3753)] = 139623, + [SMALL_STATE(3754)] = 139669, + [SMALL_STATE(3755)] = 139711, + [SMALL_STATE(3756)] = 139753, + [SMALL_STATE(3757)] = 139795, + [SMALL_STATE(3758)] = 139837, + [SMALL_STATE(3759)] = 139879, + [SMALL_STATE(3760)] = 139921, + [SMALL_STATE(3761)] = 139989, + [SMALL_STATE(3762)] = 140059, + [SMALL_STATE(3763)] = 140131, + [SMALL_STATE(3764)] = 140191, + [SMALL_STATE(3765)] = 140245, + [SMALL_STATE(3766)] = 140307, + [SMALL_STATE(3767)] = 140349, + [SMALL_STATE(3768)] = 140413, + [SMALL_STATE(3769)] = 140479, + [SMALL_STATE(3770)] = 140523, + [SMALL_STATE(3771)] = 140579, + [SMALL_STATE(3772)] = 140637, + [SMALL_STATE(3773)] = 140687, + [SMALL_STATE(3774)] = 140739, + [SMALL_STATE(3775)] = 140797, + [SMALL_STATE(3776)] = 140839, + [SMALL_STATE(3777)] = 140899, + [SMALL_STATE(3778)] = 140945, + [SMALL_STATE(3779)] = 140993, + [SMALL_STATE(3780)] = 141061, + [SMALL_STATE(3781)] = 141131, + [SMALL_STATE(3782)] = 141201, + [SMALL_STATE(3783)] = 141273, + [SMALL_STATE(3784)] = 141345, + [SMALL_STATE(3785)] = 141419, + [SMALL_STATE(3786)] = 141461, + [SMALL_STATE(3787)] = 141503, + [SMALL_STATE(3788)] = 141563, + [SMALL_STATE(3789)] = 141625, + [SMALL_STATE(3790)] = 141671, + [SMALL_STATE(3791)] = 141725, + [SMALL_STATE(3792)] = 141781, + [SMALL_STATE(3793)] = 141823, + [SMALL_STATE(3794)] = 141885, + [SMALL_STATE(3795)] = 141949, + [SMALL_STATE(3796)] = 141997, + [SMALL_STATE(3797)] = 142061, + [SMALL_STATE(3798)] = 142127, + [SMALL_STATE(3799)] = 142193, + [SMALL_STATE(3800)] = 142261, + [SMALL_STATE(3801)] = 142309, + [SMALL_STATE(3802)] = 142351, + [SMALL_STATE(3803)] = 142411, + [SMALL_STATE(3804)] = 142467, + [SMALL_STATE(3805)] = 142515, + [SMALL_STATE(3806)] = 142565, + [SMALL_STATE(3807)] = 142623, + [SMALL_STATE(3808)] = 142669, + [SMALL_STATE(3809)] = 142717, + [SMALL_STATE(3810)] = 142759, + [SMALL_STATE(3811)] = 142827, + [SMALL_STATE(3812)] = 142897, + [SMALL_STATE(3813)] = 142945, + [SMALL_STATE(3814)] = 143017, + [SMALL_STATE(3815)] = 143077, + [SMALL_STATE(3816)] = 143131, + [SMALL_STATE(3817)] = 143193, + [SMALL_STATE(3818)] = 143257, + [SMALL_STATE(3819)] = 143299, + [SMALL_STATE(3820)] = 143365, + [SMALL_STATE(3821)] = 143413, + [SMALL_STATE(3822)] = 143455, + [SMALL_STATE(3823)] = 143499, + [SMALL_STATE(3824)] = 143557, + [SMALL_STATE(3825)] = 143609, + [SMALL_STATE(3826)] = 143669, + [SMALL_STATE(3827)] = 143717, + [SMALL_STATE(3828)] = 143787, + [SMALL_STATE(3829)] = 143859, + [SMALL_STATE(3830)] = 143933, + [SMALL_STATE(3831)] = 143995, + [SMALL_STATE(3832)] = 144051, + [SMALL_STATE(3833)] = 144115, + [SMALL_STATE(3834)] = 144181, + [SMALL_STATE(3835)] = 144249, + [SMALL_STATE(3836)] = 144291, + [SMALL_STATE(3837)] = 144343, + [SMALL_STATE(3838)] = 144399, + [SMALL_STATE(3839)] = 144457, + [SMALL_STATE(3840)] = 144507, + [SMALL_STATE(3841)] = 144559, + [SMALL_STATE(3842)] = 144617, + [SMALL_STATE(3843)] = 144677, + [SMALL_STATE(3844)] = 144723, + [SMALL_STATE(3845)] = 144771, + [SMALL_STATE(3846)] = 144839, + [SMALL_STATE(3847)] = 144909, + [SMALL_STATE(3848)] = 144979, + [SMALL_STATE(3849)] = 145051, + [SMALL_STATE(3850)] = 145123, + [SMALL_STATE(3851)] = 145197, + [SMALL_STATE(3852)] = 145257, + [SMALL_STATE(3853)] = 145319, + [SMALL_STATE(3854)] = 145373, + [SMALL_STATE(3855)] = 145429, + [SMALL_STATE(3856)] = 145487, + [SMALL_STATE(3857)] = 145549, + [SMALL_STATE(3858)] = 145613, + [SMALL_STATE(3859)] = 145677, + [SMALL_STATE(3860)] = 145743, + [SMALL_STATE(3861)] = 145809, [SMALL_STATE(3862)] = 145857, [SMALL_STATE(3863)] = 145940, - [SMALL_STATE(3864)] = 146023, - [SMALL_STATE(3865)] = 146106, - [SMALL_STATE(3866)] = 146189, - [SMALL_STATE(3867)] = 146230, - [SMALL_STATE(3868)] = 146275, - [SMALL_STATE(3869)] = 146348, - [SMALL_STATE(3870)] = 146431, - [SMALL_STATE(3871)] = 146514, - [SMALL_STATE(3872)] = 146559, - [SMALL_STATE(3873)] = 146642, - [SMALL_STATE(3874)] = 146683, - [SMALL_STATE(3875)] = 146724, - [SMALL_STATE(3876)] = 146765, - [SMALL_STATE(3877)] = 146816, - [SMALL_STATE(3878)] = 146857, - [SMALL_STATE(3879)] = 146904, - [SMALL_STATE(3880)] = 146947, - [SMALL_STATE(3881)] = 146988, - [SMALL_STATE(3882)] = 147041, - [SMALL_STATE(3883)] = 147082, - [SMALL_STATE(3884)] = 147125, - [SMALL_STATE(3885)] = 147208, - [SMALL_STATE(3886)] = 147249, - [SMALL_STATE(3887)] = 147312, - [SMALL_STATE(3888)] = 147353, - [SMALL_STATE(3889)] = 147418, - [SMALL_STATE(3890)] = 147459, - [SMALL_STATE(3891)] = 147500, - [SMALL_STATE(3892)] = 147567, - [SMALL_STATE(3893)] = 147650, - [SMALL_STATE(3894)] = 147691, - [SMALL_STATE(3895)] = 147746, - [SMALL_STATE(3896)] = 147787, - [SMALL_STATE(3897)] = 147870, - [SMALL_STATE(3898)] = 147911, - [SMALL_STATE(3899)] = 147952, - [SMALL_STATE(3900)] = 148001, - [SMALL_STATE(3901)] = 148042, - [SMALL_STATE(3902)] = 148099, - [SMALL_STATE(3903)] = 148144, - [SMALL_STATE(3904)] = 148185, - [SMALL_STATE(3905)] = 148226, - [SMALL_STATE(3906)] = 148287, - [SMALL_STATE(3907)] = 148360, - [SMALL_STATE(3908)] = 148401, - [SMALL_STATE(3909)] = 148442, - [SMALL_STATE(3910)] = 148483, - [SMALL_STATE(3911)] = 148566, - [SMALL_STATE(3912)] = 148649, - [SMALL_STATE(3913)] = 148732, - [SMALL_STATE(3914)] = 148815, - [SMALL_STATE(3915)] = 148898, - [SMALL_STATE(3916)] = 148971, - [SMALL_STATE(3917)] = 149044, - [SMALL_STATE(3918)] = 149127, - [SMALL_STATE(3919)] = 149210, - [SMALL_STATE(3920)] = 149293, - [SMALL_STATE(3921)] = 149366, - [SMALL_STATE(3922)] = 149439, - [SMALL_STATE(3923)] = 149522, - [SMALL_STATE(3924)] = 149605, - [SMALL_STATE(3925)] = 149688, - [SMALL_STATE(3926)] = 149771, - [SMALL_STATE(3927)] = 149854, - [SMALL_STATE(3928)] = 149895, - [SMALL_STATE(3929)] = 149978, - [SMALL_STATE(3930)] = 150061, - [SMALL_STATE(3931)] = 150144, + [SMALL_STATE(3864)] = 145987, + [SMALL_STATE(3865)] = 146032, + [SMALL_STATE(3866)] = 146105, + [SMALL_STATE(3867)] = 146188, + [SMALL_STATE(3868)] = 146261, + [SMALL_STATE(3869)] = 146302, + [SMALL_STATE(3870)] = 146355, + [SMALL_STATE(3871)] = 146396, + [SMALL_STATE(3872)] = 146445, + [SMALL_STATE(3873)] = 146488, + [SMALL_STATE(3874)] = 146529, + [SMALL_STATE(3875)] = 146584, + [SMALL_STATE(3876)] = 146643, + [SMALL_STATE(3877)] = 146684, + [SMALL_STATE(3878)] = 146725, + [SMALL_STATE(3879)] = 146808, + [SMALL_STATE(3880)] = 146849, + [SMALL_STATE(3881)] = 146890, + [SMALL_STATE(3882)] = 146951, + [SMALL_STATE(3883)] = 146992, + [SMALL_STATE(3884)] = 147075, + [SMALL_STATE(3885)] = 147132, + [SMALL_STATE(3886)] = 147173, + [SMALL_STATE(3887)] = 147256, + [SMALL_STATE(3888)] = 147299, + [SMALL_STATE(3889)] = 147344, + [SMALL_STATE(3890)] = 147427, + [SMALL_STATE(3891)] = 147468, + [SMALL_STATE(3892)] = 147541, + [SMALL_STATE(3893)] = 147624, + [SMALL_STATE(3894)] = 147687, + [SMALL_STATE(3895)] = 147770, + [SMALL_STATE(3896)] = 147853, + [SMALL_STATE(3897)] = 147936, + [SMALL_STATE(3898)] = 148019, + [SMALL_STATE(3899)] = 148102, + [SMALL_STATE(3900)] = 148175, + [SMALL_STATE(3901)] = 148258, + [SMALL_STATE(3902)] = 148341, + [SMALL_STATE(3903)] = 148382, + [SMALL_STATE(3904)] = 148423, + [SMALL_STATE(3905)] = 148468, + [SMALL_STATE(3906)] = 148509, + [SMALL_STATE(3907)] = 148592, + [SMALL_STATE(3908)] = 148633, + [SMALL_STATE(3909)] = 148716, + [SMALL_STATE(3910)] = 148757, + [SMALL_STATE(3911)] = 148840, + [SMALL_STATE(3912)] = 148881, + [SMALL_STATE(3913)] = 148954, + [SMALL_STATE(3914)] = 149019, + [SMALL_STATE(3915)] = 149102, + [SMALL_STATE(3916)] = 149175, + [SMALL_STATE(3917)] = 149258, + [SMALL_STATE(3918)] = 149299, + [SMALL_STATE(3919)] = 149350, + [SMALL_STATE(3920)] = 149391, + [SMALL_STATE(3921)] = 149458, + [SMALL_STATE(3922)] = 149499, + [SMALL_STATE(3923)] = 149582, + [SMALL_STATE(3924)] = 149665, + [SMALL_STATE(3925)] = 149748, + [SMALL_STATE(3926)] = 149831, + [SMALL_STATE(3927)] = 149914, + [SMALL_STATE(3928)] = 149955, + [SMALL_STATE(3929)] = 150038, + [SMALL_STATE(3930)] = 150079, + [SMALL_STATE(3931)] = 150120, [SMALL_STATE(3932)] = 150203, [SMALL_STATE(3933)] = 150245, - [SMALL_STATE(3934)] = 150311, - [SMALL_STATE(3935)] = 150379, - [SMALL_STATE(3936)] = 150435, - [SMALL_STATE(3937)] = 150485, - [SMALL_STATE(3938)] = 150543, - [SMALL_STATE(3939)] = 150603, - [SMALL_STATE(3940)] = 150665, - [SMALL_STATE(3941)] = 150709, - [SMALL_STATE(3942)] = 150751, - [SMALL_STATE(3943)] = 150791, - [SMALL_STATE(3944)] = 150833, - [SMALL_STATE(3945)] = 150875, - [SMALL_STATE(3946)] = 150917, - [SMALL_STATE(3947)] = 150963, - [SMALL_STATE(3948)] = 151005, - [SMALL_STATE(3949)] = 151069, - [SMALL_STATE(3950)] = 151111, - [SMALL_STATE(3951)] = 151153, - [SMALL_STATE(3952)] = 151197, - [SMALL_STATE(3953)] = 151261, - [SMALL_STATE(3954)] = 151327, - [SMALL_STATE(3955)] = 151395, - [SMALL_STATE(3956)] = 151451, - [SMALL_STATE(3957)] = 151495, - [SMALL_STATE(3958)] = 151547, - [SMALL_STATE(3959)] = 151591, - [SMALL_STATE(3960)] = 151649, - [SMALL_STATE(3961)] = 151703, - [SMALL_STATE(3962)] = 151745, - [SMALL_STATE(3963)] = 151805, - [SMALL_STATE(3964)] = 151867, - [SMALL_STATE(3965)] = 151917, - [SMALL_STATE(3966)] = 151959, - [SMALL_STATE(3967)] = 152011, + [SMALL_STATE(3934)] = 150303, + [SMALL_STATE(3935)] = 150345, + [SMALL_STATE(3936)] = 150389, + [SMALL_STATE(3937)] = 150431, + [SMALL_STATE(3938)] = 150475, + [SMALL_STATE(3939)] = 150527, + [SMALL_STATE(3940)] = 150577, + [SMALL_STATE(3941)] = 150623, + [SMALL_STATE(3942)] = 150681, + [SMALL_STATE(3943)] = 150741, + [SMALL_STATE(3944)] = 150801, + [SMALL_STATE(3945)] = 150863, + [SMALL_STATE(3946)] = 150907, + [SMALL_STATE(3947)] = 150969, + [SMALL_STATE(3948)] = 151011, + [SMALL_STATE(3949)] = 151067, + [SMALL_STATE(3950)] = 151109, + [SMALL_STATE(3951)] = 151149, + [SMALL_STATE(3952)] = 151191, + [SMALL_STATE(3953)] = 151255, + [SMALL_STATE(3954)] = 151321, + [SMALL_STATE(3955)] = 151365, + [SMALL_STATE(3956)] = 151407, + [SMALL_STATE(3957)] = 151475, + [SMALL_STATE(3958)] = 151527, + [SMALL_STATE(3959)] = 151583, + [SMALL_STATE(3960)] = 151633, + [SMALL_STATE(3961)] = 151675, + [SMALL_STATE(3962)] = 151721, + [SMALL_STATE(3963)] = 151775, + [SMALL_STATE(3964)] = 151817, + [SMALL_STATE(3965)] = 151859, + [SMALL_STATE(3966)] = 151923, + [SMALL_STATE(3967)] = 151989, [SMALL_STATE(3968)] = 152057, - [SMALL_STATE(3969)] = 152111, + [SMALL_STATE(3969)] = 152099, [SMALL_STATE(3970)] = 152153, - [SMALL_STATE(3971)] = 152230, - [SMALL_STATE(3972)] = 152307, - [SMALL_STATE(3973)] = 152346, - [SMALL_STATE(3974)] = 152423, - [SMALL_STATE(3975)] = 152500, - [SMALL_STATE(3976)] = 152577, - [SMALL_STATE(3977)] = 152616, - [SMALL_STATE(3978)] = 152661, - [SMALL_STATE(3979)] = 152738, - [SMALL_STATE(3980)] = 152777, - [SMALL_STATE(3981)] = 152844, - [SMALL_STATE(3982)] = 152911, - [SMALL_STATE(3983)] = 152978, - [SMALL_STATE(3984)] = 153045, - [SMALL_STATE(3985)] = 153112, - [SMALL_STATE(3986)] = 153189, - [SMALL_STATE(3987)] = 153256, - [SMALL_STATE(3988)] = 153333, - [SMALL_STATE(3989)] = 153372, - [SMALL_STATE(3990)] = 153449, - [SMALL_STATE(3991)] = 153526, - [SMALL_STATE(3992)] = 153565, - [SMALL_STATE(3993)] = 153632, - [SMALL_STATE(3994)] = 153709, - [SMALL_STATE(3995)] = 153786, + [SMALL_STATE(3971)] = 152192, + [SMALL_STATE(3972)] = 152269, + [SMALL_STATE(3973)] = 152336, + [SMALL_STATE(3974)] = 152413, + [SMALL_STATE(3975)] = 152490, + [SMALL_STATE(3976)] = 152567, + [SMALL_STATE(3977)] = 152634, + [SMALL_STATE(3978)] = 152673, + [SMALL_STATE(3979)] = 152750, + [SMALL_STATE(3980)] = 152789, + [SMALL_STATE(3981)] = 152856, + [SMALL_STATE(3982)] = 152923, + [SMALL_STATE(3983)] = 152990, + [SMALL_STATE(3984)] = 153067, + [SMALL_STATE(3985)] = 153106, + [SMALL_STATE(3986)] = 153151, + [SMALL_STATE(3987)] = 153228, + [SMALL_STATE(3988)] = 153305, + [SMALL_STATE(3989)] = 153344, + [SMALL_STATE(3990)] = 153421, + [SMALL_STATE(3991)] = 153488, + [SMALL_STATE(3992)] = 153527, + [SMALL_STATE(3993)] = 153604, + [SMALL_STATE(3994)] = 153681, + [SMALL_STATE(3995)] = 153748, [SMALL_STATE(3996)] = 153825, - [SMALL_STATE(3997)] = 153879, + [SMALL_STATE(3997)] = 153869, [SMALL_STATE(3998)] = 153923, - [SMALL_STATE(3999)] = 153974, + [SMALL_STATE(3999)] = 153976, [SMALL_STATE(4000)] = 154027, [SMALL_STATE(4001)] = 154078, - [SMALL_STATE(4002)] = 154134, - [SMALL_STATE(4003)] = 154174, - [SMALL_STATE(4004)] = 154224, - [SMALL_STATE(4005)] = 154264, + [SMALL_STATE(4002)] = 154128, + [SMALL_STATE(4003)] = 154168, + [SMALL_STATE(4004)] = 154218, + [SMALL_STATE(4005)] = 154274, [SMALL_STATE(4006)] = 154314, - [SMALL_STATE(4007)] = 154353, - [SMALL_STATE(4008)] = 154406, - [SMALL_STATE(4009)] = 154443, - [SMALL_STATE(4010)] = 154480, + [SMALL_STATE(4007)] = 154351, + [SMALL_STATE(4008)] = 154390, + [SMALL_STATE(4009)] = 154445, + [SMALL_STATE(4010)] = 154482, [SMALL_STATE(4011)] = 154535, [SMALL_STATE(4012)] = 154588, - [SMALL_STATE(4013)] = 154641, - [SMALL_STATE(4014)] = 154680, + [SMALL_STATE(4013)] = 154635, + [SMALL_STATE(4014)] = 154688, [SMALL_STATE(4015)] = 154727, - [SMALL_STATE(4016)] = 154765, - [SMALL_STATE(4017)] = 154799, - [SMALL_STATE(4018)] = 154835, - [SMALL_STATE(4019)] = 154871, - [SMALL_STATE(4020)] = 154905, - [SMALL_STATE(4021)] = 154943, - [SMALL_STATE(4022)] = 154993, - [SMALL_STATE(4023)] = 155045, - [SMALL_STATE(4024)] = 155079, - [SMALL_STATE(4025)] = 155131, - [SMALL_STATE(4026)] = 155169, - [SMALL_STATE(4027)] = 155219, - [SMALL_STATE(4028)] = 155261, - [SMALL_STATE(4029)] = 155303, - [SMALL_STATE(4030)] = 155353, - [SMALL_STATE(4031)] = 155403, + [SMALL_STATE(4016)] = 154769, + [SMALL_STATE(4017)] = 154807, + [SMALL_STATE(4018)] = 154849, + [SMALL_STATE(4019)] = 154895, + [SMALL_STATE(4020)] = 154929, + [SMALL_STATE(4021)] = 154979, + [SMALL_STATE(4022)] = 155017, + [SMALL_STATE(4023)] = 155053, + [SMALL_STATE(4024)] = 155087, + [SMALL_STATE(4025)] = 155125, + [SMALL_STATE(4026)] = 155175, + [SMALL_STATE(4027)] = 155211, + [SMALL_STATE(4028)] = 155263, + [SMALL_STATE(4029)] = 155301, + [SMALL_STATE(4030)] = 155335, + [SMALL_STATE(4031)] = 155387, [SMALL_STATE(4032)] = 155437, - [SMALL_STATE(4033)] = 155475, - [SMALL_STATE(4034)] = 155527, + [SMALL_STATE(4033)] = 155471, + [SMALL_STATE(4034)] = 155521, [SMALL_STATE(4035)] = 155573, [SMALL_STATE(4036)] = 155608, - [SMALL_STATE(4037)] = 155641, - [SMALL_STATE(4038)] = 155678, - [SMALL_STATE(4039)] = 155713, - [SMALL_STATE(4040)] = 155746, - [SMALL_STATE(4041)] = 155783, - [SMALL_STATE(4042)] = 155816, - [SMALL_STATE(4043)] = 155865, - [SMALL_STATE(4044)] = 155914, - [SMALL_STATE(4045)] = 155963, - [SMALL_STATE(4046)] = 155996, - [SMALL_STATE(4047)] = 156045, - [SMALL_STATE(4048)] = 156080, - [SMALL_STATE(4049)] = 156133, - [SMALL_STATE(4050)] = 156168, - [SMALL_STATE(4051)] = 156205, - [SMALL_STATE(4052)] = 156246, - [SMALL_STATE(4053)] = 156281, - [SMALL_STATE(4054)] = 156328, + [SMALL_STATE(4037)] = 155649, + [SMALL_STATE(4038)] = 155686, + [SMALL_STATE(4039)] = 155719, + [SMALL_STATE(4040)] = 155754, + [SMALL_STATE(4041)] = 155787, + [SMALL_STATE(4042)] = 155836, + [SMALL_STATE(4043)] = 155871, + [SMALL_STATE(4044)] = 155912, + [SMALL_STATE(4045)] = 155961, + [SMALL_STATE(4046)] = 155994, + [SMALL_STATE(4047)] = 156041, + [SMALL_STATE(4048)] = 156090, + [SMALL_STATE(4049)] = 156143, + [SMALL_STATE(4050)] = 156176, + [SMALL_STATE(4051)] = 156211, + [SMALL_STATE(4052)] = 156248, + [SMALL_STATE(4053)] = 156285, + [SMALL_STATE(4054)] = 156320, [SMALL_STATE(4055)] = 156369, [SMALL_STATE(4056)] = 156406, - [SMALL_STATE(4057)] = 156440, - [SMALL_STATE(4058)] = 156474, - [SMALL_STATE(4059)] = 156506, - [SMALL_STATE(4060)] = 156538, - [SMALL_STATE(4061)] = 156570, - [SMALL_STATE(4062)] = 156602, - [SMALL_STATE(4063)] = 156638, - [SMALL_STATE(4064)] = 156670, - [SMALL_STATE(4065)] = 156706, - [SMALL_STATE(4066)] = 156740, - [SMALL_STATE(4067)] = 156790, - [SMALL_STATE(4068)] = 156826, - [SMALL_STATE(4069)] = 156864, - [SMALL_STATE(4070)] = 156896, - [SMALL_STATE(4071)] = 156936, - [SMALL_STATE(4072)] = 156968, - [SMALL_STATE(4073)] = 157000, - [SMALL_STATE(4074)] = 157046, - [SMALL_STATE(4075)] = 157078, - [SMALL_STATE(4076)] = 157118, - [SMALL_STATE(4077)] = 157154, - [SMALL_STATE(4078)] = 157194, - [SMALL_STATE(4079)] = 157228, - [SMALL_STATE(4080)] = 157278, - [SMALL_STATE(4081)] = 157328, + [SMALL_STATE(4057)] = 156444, + [SMALL_STATE(4058)] = 156476, + [SMALL_STATE(4059)] = 156510, + [SMALL_STATE(4060)] = 156542, + [SMALL_STATE(4061)] = 156592, + [SMALL_STATE(4062)] = 156630, + [SMALL_STATE(4063)] = 156664, + [SMALL_STATE(4064)] = 156696, + [SMALL_STATE(4065)] = 156730, + [SMALL_STATE(4066)] = 156762, + [SMALL_STATE(4067)] = 156802, + [SMALL_STATE(4068)] = 156834, + [SMALL_STATE(4069)] = 156866, + [SMALL_STATE(4070)] = 156916, + [SMALL_STATE(4071)] = 156952, + [SMALL_STATE(4072)] = 157002, + [SMALL_STATE(4073)] = 157038, + [SMALL_STATE(4074)] = 157070, + [SMALL_STATE(4075)] = 157110, + [SMALL_STATE(4076)] = 157146, + [SMALL_STATE(4077)] = 157180, + [SMALL_STATE(4078)] = 157212, + [SMALL_STATE(4079)] = 157248, + [SMALL_STATE(4080)] = 157280, + [SMALL_STATE(4081)] = 157326, [SMALL_STATE(4082)] = 157366, - [SMALL_STATE(4083)] = 157413, - [SMALL_STATE(4084)] = 157460, - [SMALL_STATE(4085)] = 157493, - [SMALL_STATE(4086)] = 157532, - [SMALL_STATE(4087)] = 157563, - [SMALL_STATE(4088)] = 157596, - [SMALL_STATE(4089)] = 157629, - [SMALL_STATE(4090)] = 157660, - [SMALL_STATE(4091)] = 157697, - [SMALL_STATE(4092)] = 157728, - [SMALL_STATE(4093)] = 157759, - [SMALL_STATE(4094)] = 157792, - [SMALL_STATE(4095)] = 157829, - [SMALL_STATE(4096)] = 157864, - [SMALL_STATE(4097)] = 157899, - [SMALL_STATE(4098)] = 157938, - [SMALL_STATE(4099)] = 157969, - [SMALL_STATE(4100)] = 158000, - [SMALL_STATE(4101)] = 158037, - [SMALL_STATE(4102)] = 158084, - [SMALL_STATE(4103)] = 158131, - [SMALL_STATE(4104)] = 158172, - [SMALL_STATE(4105)] = 158207, - [SMALL_STATE(4106)] = 158238, - [SMALL_STATE(4107)] = 158273, + [SMALL_STATE(4083)] = 157397, + [SMALL_STATE(4084)] = 157436, + [SMALL_STATE(4085)] = 157467, + [SMALL_STATE(4086)] = 157502, + [SMALL_STATE(4087)] = 157537, + [SMALL_STATE(4088)] = 157584, + [SMALL_STATE(4089)] = 157617, + [SMALL_STATE(4090)] = 157648, + [SMALL_STATE(4091)] = 157687, + [SMALL_STATE(4092)] = 157722, + [SMALL_STATE(4093)] = 157753, + [SMALL_STATE(4094)] = 157784, + [SMALL_STATE(4095)] = 157831, + [SMALL_STATE(4096)] = 157878, + [SMALL_STATE(4097)] = 157919, + [SMALL_STATE(4098)] = 157956, + [SMALL_STATE(4099)] = 158003, + [SMALL_STATE(4100)] = 158040, + [SMALL_STATE(4101)] = 158071, + [SMALL_STATE(4102)] = 158106, + [SMALL_STATE(4103)] = 158137, + [SMALL_STATE(4104)] = 158168, + [SMALL_STATE(4105)] = 158203, + [SMALL_STATE(4106)] = 158236, + [SMALL_STATE(4107)] = 158275, [SMALL_STATE(4108)] = 158308, - [SMALL_STATE(4109)] = 158339, - [SMALL_STATE(4110)] = 158384, + [SMALL_STATE(4109)] = 158345, + [SMALL_STATE(4110)] = 158390, [SMALL_STATE(4111)] = 158423, - [SMALL_STATE(4112)] = 158459, - [SMALL_STATE(4113)] = 158489, - [SMALL_STATE(4114)] = 158523, - [SMALL_STATE(4115)] = 158561, - [SMALL_STATE(4116)] = 158601, - [SMALL_STATE(4117)] = 158631, - [SMALL_STATE(4118)] = 158661, - [SMALL_STATE(4119)] = 158691, - [SMALL_STATE(4120)] = 158723, - [SMALL_STATE(4121)] = 158761, - [SMALL_STATE(4122)] = 158793, - [SMALL_STATE(4123)] = 158825, + [SMALL_STATE(4112)] = 158453, + [SMALL_STATE(4113)] = 158491, + [SMALL_STATE(4114)] = 158525, + [SMALL_STATE(4115)] = 158563, + [SMALL_STATE(4116)] = 158613, + [SMALL_STATE(4117)] = 158647, + [SMALL_STATE(4118)] = 158677, + [SMALL_STATE(4119)] = 158707, + [SMALL_STATE(4120)] = 158737, + [SMALL_STATE(4121)] = 158767, + [SMALL_STATE(4122)] = 158797, + [SMALL_STATE(4123)] = 158829, [SMALL_STATE(4124)] = 158863, - [SMALL_STATE(4125)] = 158895, - [SMALL_STATE(4126)] = 158927, - [SMALL_STATE(4127)] = 158961, - [SMALL_STATE(4128)] = 158991, - [SMALL_STATE(4129)] = 159021, - [SMALL_STATE(4130)] = 159051, - [SMALL_STATE(4131)] = 159081, - [SMALL_STATE(4132)] = 159115, - [SMALL_STATE(4133)] = 159149, - [SMALL_STATE(4134)] = 159187, - [SMALL_STATE(4135)] = 159237, - [SMALL_STATE(4136)] = 159269, - [SMALL_STATE(4137)] = 159299, - [SMALL_STATE(4138)] = 159329, - [SMALL_STATE(4139)] = 159359, - [SMALL_STATE(4140)] = 159389, - [SMALL_STATE(4141)] = 159427, - [SMALL_STATE(4142)] = 159459, - [SMALL_STATE(4143)] = 159493, - [SMALL_STATE(4144)] = 159525, + [SMALL_STATE(4125)] = 158901, + [SMALL_STATE(4126)] = 158939, + [SMALL_STATE(4127)] = 158975, + [SMALL_STATE(4128)] = 159007, + [SMALL_STATE(4129)] = 159039, + [SMALL_STATE(4130)] = 159071, + [SMALL_STATE(4131)] = 159105, + [SMALL_STATE(4132)] = 159137, + [SMALL_STATE(4133)] = 159169, + [SMALL_STATE(4134)] = 159203, + [SMALL_STATE(4135)] = 159235, + [SMALL_STATE(4136)] = 159267, + [SMALL_STATE(4137)] = 159297, + [SMALL_STATE(4138)] = 159327, + [SMALL_STATE(4139)] = 159357, + [SMALL_STATE(4140)] = 159387, + [SMALL_STATE(4141)] = 159417, + [SMALL_STATE(4142)] = 159447, + [SMALL_STATE(4143)] = 159479, + [SMALL_STATE(4144)] = 159517, [SMALL_STATE(4145)] = 159557, [SMALL_STATE(4146)] = 159594, - [SMALL_STATE(4147)] = 159623, + [SMALL_STATE(4147)] = 159631, [SMALL_STATE(4148)] = 159660, [SMALL_STATE(4149)] = 159697, [SMALL_STATE(4150)] = 159734, - [SMALL_STATE(4151)] = 159767, - [SMALL_STATE(4152)] = 159798, - [SMALL_STATE(4153)] = 159831, - [SMALL_STATE(4154)] = 159860, - [SMALL_STATE(4155)] = 159889, - [SMALL_STATE(4156)] = 159920, - [SMALL_STATE(4157)] = 159951, - [SMALL_STATE(4158)] = 159980, - [SMALL_STATE(4159)] = 160013, - [SMALL_STATE(4160)] = 160044, - [SMALL_STATE(4161)] = 160075, - [SMALL_STATE(4162)] = 160104, - [SMALL_STATE(4163)] = 160141, - [SMALL_STATE(4164)] = 160178, - [SMALL_STATE(4165)] = 160209, - [SMALL_STATE(4166)] = 160246, - [SMALL_STATE(4167)] = 160277, - [SMALL_STATE(4168)] = 160306, - [SMALL_STATE(4169)] = 160343, - [SMALL_STATE(4170)] = 160372, - [SMALL_STATE(4171)] = 160409, - [SMALL_STATE(4172)] = 160442, - [SMALL_STATE(4173)] = 160475, - [SMALL_STATE(4174)] = 160512, - [SMALL_STATE(4175)] = 160543, - [SMALL_STATE(4176)] = 160572, - [SMALL_STATE(4177)] = 160601, - [SMALL_STATE(4178)] = 160634, - [SMALL_STATE(4179)] = 160671, - [SMALL_STATE(4180)] = 160700, - [SMALL_STATE(4181)] = 160731, - [SMALL_STATE(4182)] = 160762, - [SMALL_STATE(4183)] = 160799, - [SMALL_STATE(4184)] = 160832, - [SMALL_STATE(4185)] = 160869, - [SMALL_STATE(4186)] = 160900, - [SMALL_STATE(4187)] = 160937, - [SMALL_STATE(4188)] = 160966, - [SMALL_STATE(4189)] = 160995, - [SMALL_STATE(4190)] = 161026, - [SMALL_STATE(4191)] = 161063, - [SMALL_STATE(4192)] = 161100, - [SMALL_STATE(4193)] = 161129, - [SMALL_STATE(4194)] = 161158, - [SMALL_STATE(4195)] = 161195, - [SMALL_STATE(4196)] = 161224, - [SMALL_STATE(4197)] = 161253, - [SMALL_STATE(4198)] = 161290, - [SMALL_STATE(4199)] = 161319, - [SMALL_STATE(4200)] = 161356, - [SMALL_STATE(4201)] = 161387, - [SMALL_STATE(4202)] = 161424, - [SMALL_STATE(4203)] = 161461, - [SMALL_STATE(4204)] = 161492, - [SMALL_STATE(4205)] = 161529, - [SMALL_STATE(4206)] = 161560, + [SMALL_STATE(4151)] = 159771, + [SMALL_STATE(4152)] = 159808, + [SMALL_STATE(4153)] = 159845, + [SMALL_STATE(4154)] = 159882, + [SMALL_STATE(4155)] = 159919, + [SMALL_STATE(4156)] = 159956, + [SMALL_STATE(4157)] = 159993, + [SMALL_STATE(4158)] = 160030, + [SMALL_STATE(4159)] = 160067, + [SMALL_STATE(4160)] = 160104, + [SMALL_STATE(4161)] = 160141, + [SMALL_STATE(4162)] = 160178, + [SMALL_STATE(4163)] = 160209, + [SMALL_STATE(4164)] = 160246, + [SMALL_STATE(4165)] = 160275, + [SMALL_STATE(4166)] = 160312, + [SMALL_STATE(4167)] = 160345, + [SMALL_STATE(4168)] = 160376, + [SMALL_STATE(4169)] = 160405, + [SMALL_STATE(4170)] = 160438, + [SMALL_STATE(4171)] = 160471, + [SMALL_STATE(4172)] = 160508, + [SMALL_STATE(4173)] = 160539, + [SMALL_STATE(4174)] = 160572, + [SMALL_STATE(4175)] = 160601, + [SMALL_STATE(4176)] = 160632, + [SMALL_STATE(4177)] = 160661, + [SMALL_STATE(4178)] = 160698, + [SMALL_STATE(4179)] = 160729, + [SMALL_STATE(4180)] = 160758, + [SMALL_STATE(4181)] = 160791, + [SMALL_STATE(4182)] = 160828, + [SMALL_STATE(4183)] = 160857, + [SMALL_STATE(4184)] = 160886, + [SMALL_STATE(4185)] = 160917, + [SMALL_STATE(4186)] = 160946, + [SMALL_STATE(4187)] = 160981, + [SMALL_STATE(4188)] = 161010, + [SMALL_STATE(4189)] = 161039, + [SMALL_STATE(4190)] = 161070, + [SMALL_STATE(4191)] = 161103, + [SMALL_STATE(4192)] = 161134, + [SMALL_STATE(4193)] = 161171, + [SMALL_STATE(4194)] = 161202, + [SMALL_STATE(4195)] = 161233, + [SMALL_STATE(4196)] = 161262, + [SMALL_STATE(4197)] = 161293, + [SMALL_STATE(4198)] = 161322, + [SMALL_STATE(4199)] = 161359, + [SMALL_STATE(4200)] = 161390, + [SMALL_STATE(4201)] = 161421, + [SMALL_STATE(4202)] = 161452, + [SMALL_STATE(4203)] = 161481, + [SMALL_STATE(4204)] = 161510, + [SMALL_STATE(4205)] = 161539, + [SMALL_STATE(4206)] = 161568, [SMALL_STATE(4207)] = 161597, [SMALL_STATE(4208)] = 161634, - [SMALL_STATE(4209)] = 161669, - [SMALL_STATE(4210)] = 161698, - [SMALL_STATE(4211)] = 161735, - [SMALL_STATE(4212)] = 161764, - [SMALL_STATE(4213)] = 161795, - [SMALL_STATE(4214)] = 161832, - [SMALL_STATE(4215)] = 161869, - [SMALL_STATE(4216)] = 161898, - [SMALL_STATE(4217)] = 161929, - [SMALL_STATE(4218)] = 161958, - [SMALL_STATE(4219)] = 161995, - [SMALL_STATE(4220)] = 162032, - [SMALL_STATE(4221)] = 162061, - [SMALL_STATE(4222)] = 162090, - [SMALL_STATE(4223)] = 162127, - [SMALL_STATE(4224)] = 162164, + [SMALL_STATE(4209)] = 161663, + [SMALL_STATE(4210)] = 161700, + [SMALL_STATE(4211)] = 161729, + [SMALL_STATE(4212)] = 161758, + [SMALL_STATE(4213)] = 161789, + [SMALL_STATE(4214)] = 161826, + [SMALL_STATE(4215)] = 161863, + [SMALL_STATE(4216)] = 161900, + [SMALL_STATE(4217)] = 161933, + [SMALL_STATE(4218)] = 161962, + [SMALL_STATE(4219)] = 161999, + [SMALL_STATE(4220)] = 162030, + [SMALL_STATE(4221)] = 162059, + [SMALL_STATE(4222)] = 162096, + [SMALL_STATE(4223)] = 162133, + [SMALL_STATE(4224)] = 162170, [SMALL_STATE(4225)] = 162201, - [SMALL_STATE(4226)] = 162229, + [SMALL_STATE(4226)] = 162233, [SMALL_STATE(4227)] = 162265, - [SMALL_STATE(4228)] = 162293, + [SMALL_STATE(4228)] = 162299, [SMALL_STATE(4229)] = 162329, [SMALL_STATE(4230)] = 162359, - [SMALL_STATE(4231)] = 162395, - [SMALL_STATE(4232)] = 162431, - [SMALL_STATE(4233)] = 162459, - [SMALL_STATE(4234)] = 162495, - [SMALL_STATE(4235)] = 162539, + [SMALL_STATE(4231)] = 162389, + [SMALL_STATE(4232)] = 162433, + [SMALL_STATE(4233)] = 162461, + [SMALL_STATE(4234)] = 162493, + [SMALL_STATE(4235)] = 162541, [SMALL_STATE(4236)] = 162573, - [SMALL_STATE(4237)] = 162601, - [SMALL_STATE(4238)] = 162637, - [SMALL_STATE(4239)] = 162673, - [SMALL_STATE(4240)] = 162709, - [SMALL_STATE(4241)] = 162745, - [SMALL_STATE(4242)] = 162793, - [SMALL_STATE(4243)] = 162829, - [SMALL_STATE(4244)] = 162865, - [SMALL_STATE(4245)] = 162897, - [SMALL_STATE(4246)] = 162925, - [SMALL_STATE(4247)] = 162961, - [SMALL_STATE(4248)] = 162997, - [SMALL_STATE(4249)] = 163033, - [SMALL_STATE(4250)] = 163061, - [SMALL_STATE(4251)] = 163093, - [SMALL_STATE(4252)] = 163123, - [SMALL_STATE(4253)] = 163151, - [SMALL_STATE(4254)] = 163181, - [SMALL_STATE(4255)] = 163213, - [SMALL_STATE(4256)] = 163249, - [SMALL_STATE(4257)] = 163277, - [SMALL_STATE(4258)] = 163313, - [SMALL_STATE(4259)] = 163341, - [SMALL_STATE(4260)] = 163389, - [SMALL_STATE(4261)] = 163425, - [SMALL_STATE(4262)] = 163457, - [SMALL_STATE(4263)] = 163485, - [SMALL_STATE(4264)] = 163521, + [SMALL_STATE(4237)] = 162609, + [SMALL_STATE(4238)] = 162653, + [SMALL_STATE(4239)] = 162701, + [SMALL_STATE(4240)] = 162731, + [SMALL_STATE(4241)] = 162775, + [SMALL_STATE(4242)] = 162805, + [SMALL_STATE(4243)] = 162833, + [SMALL_STATE(4244)] = 162861, + [SMALL_STATE(4245)] = 162891, + [SMALL_STATE(4246)] = 162921, + [SMALL_STATE(4247)] = 162957, + [SMALL_STATE(4248)] = 162993, + [SMALL_STATE(4249)] = 163031, + [SMALL_STATE(4250)] = 163063, + [SMALL_STATE(4251)] = 163095, + [SMALL_STATE(4252)] = 163127, + [SMALL_STATE(4253)] = 163155, + [SMALL_STATE(4254)] = 163187, + [SMALL_STATE(4255)] = 163217, + [SMALL_STATE(4256)] = 163253, + [SMALL_STATE(4257)] = 163281, + [SMALL_STATE(4258)] = 163317, + [SMALL_STATE(4259)] = 163345, + [SMALL_STATE(4260)] = 163373, + [SMALL_STATE(4261)] = 163409, + [SMALL_STATE(4262)] = 163445, + [SMALL_STATE(4263)] = 163473, + [SMALL_STATE(4264)] = 163509, [SMALL_STATE(4265)] = 163557, [SMALL_STATE(4266)] = 163593, - [SMALL_STATE(4267)] = 163625, - [SMALL_STATE(4268)] = 163661, - [SMALL_STATE(4269)] = 163693, - [SMALL_STATE(4270)] = 163741, - [SMALL_STATE(4271)] = 163773, - [SMALL_STATE(4272)] = 163805, - [SMALL_STATE(4273)] = 163835, - [SMALL_STATE(4274)] = 163863, - [SMALL_STATE(4275)] = 163911, - [SMALL_STATE(4276)] = 163947, - [SMALL_STATE(4277)] = 163975, - [SMALL_STATE(4278)] = 164013, + [SMALL_STATE(4267)] = 163621, + [SMALL_STATE(4268)] = 163665, + [SMALL_STATE(4269)] = 163701, + [SMALL_STATE(4270)] = 163737, + [SMALL_STATE(4271)] = 163765, + [SMALL_STATE(4272)] = 163793, + [SMALL_STATE(4273)] = 163837, + [SMALL_STATE(4274)] = 163865, + [SMALL_STATE(4275)] = 163901, + [SMALL_STATE(4276)] = 163937, + [SMALL_STATE(4277)] = 163973, + [SMALL_STATE(4278)] = 164009, [SMALL_STATE(4279)] = 164045, - [SMALL_STATE(4280)] = 164073, - [SMALL_STATE(4281)] = 164109, - [SMALL_STATE(4282)] = 164137, - [SMALL_STATE(4283)] = 164167, - [SMALL_STATE(4284)] = 164197, - [SMALL_STATE(4285)] = 164227, - [SMALL_STATE(4286)] = 164263, - [SMALL_STATE(4287)] = 164299, - [SMALL_STATE(4288)] = 164335, - [SMALL_STATE(4289)] = 164371, - [SMALL_STATE(4290)] = 164415, - [SMALL_STATE(4291)] = 164445, - [SMALL_STATE(4292)] = 164477, - [SMALL_STATE(4293)] = 164521, - [SMALL_STATE(4294)] = 164549, - [SMALL_STATE(4295)] = 164585, - [SMALL_STATE(4296)] = 164615, - [SMALL_STATE(4297)] = 164643, - [SMALL_STATE(4298)] = 164681, - [SMALL_STATE(4299)] = 164713, + [SMALL_STATE(4280)] = 164081, + [SMALL_STATE(4281)] = 164117, + [SMALL_STATE(4282)] = 164153, + [SMALL_STATE(4283)] = 164189, + [SMALL_STATE(4284)] = 164227, + [SMALL_STATE(4285)] = 164263, + [SMALL_STATE(4286)] = 164299, + [SMALL_STATE(4287)] = 164335, + [SMALL_STATE(4288)] = 164363, + [SMALL_STATE(4289)] = 164399, + [SMALL_STATE(4290)] = 164435, + [SMALL_STATE(4291)] = 164463, + [SMALL_STATE(4292)] = 164499, + [SMALL_STATE(4293)] = 164529, + [SMALL_STATE(4294)] = 164561, + [SMALL_STATE(4295)] = 164597, + [SMALL_STATE(4296)] = 164625, + [SMALL_STATE(4297)] = 164661, + [SMALL_STATE(4298)] = 164693, + [SMALL_STATE(4299)] = 164729, [SMALL_STATE(4300)] = 164757, [SMALL_STATE(4301)] = 164787, [SMALL_STATE(4302)] = 164815, - [SMALL_STATE(4303)] = 164843, - [SMALL_STATE(4304)] = 164879, - [SMALL_STATE(4305)] = 164909, - [SMALL_STATE(4306)] = 164937, + [SMALL_STATE(4303)] = 164851, + [SMALL_STATE(4304)] = 164887, + [SMALL_STATE(4305)] = 164919, + [SMALL_STATE(4306)] = 164949, [SMALL_STATE(4307)] = 164981, - [SMALL_STATE(4308)] = 165009, - [SMALL_STATE(4309)] = 165041, - [SMALL_STATE(4310)] = 165073, - [SMALL_STATE(4311)] = 165109, - [SMALL_STATE(4312)] = 165137, - [SMALL_STATE(4313)] = 165167, - [SMALL_STATE(4314)] = 165203, + [SMALL_STATE(4308)] = 165011, + [SMALL_STATE(4309)] = 165047, + [SMALL_STATE(4310)] = 165095, + [SMALL_STATE(4311)] = 165123, + [SMALL_STATE(4312)] = 165155, + [SMALL_STATE(4313)] = 165183, + [SMALL_STATE(4314)] = 165211, [SMALL_STATE(4315)] = 165239, [SMALL_STATE(4316)] = 165267, - [SMALL_STATE(4317)] = 165294, - [SMALL_STATE(4318)] = 165325, - [SMALL_STATE(4319)] = 165356, - [SMALL_STATE(4320)] = 165383, - [SMALL_STATE(4321)] = 165414, - [SMALL_STATE(4322)] = 165445, - [SMALL_STATE(4323)] = 165476, - [SMALL_STATE(4324)] = 165507, - [SMALL_STATE(4325)] = 165542, - [SMALL_STATE(4326)] = 165577, - [SMALL_STATE(4327)] = 165604, - [SMALL_STATE(4328)] = 165637, - [SMALL_STATE(4329)] = 165670, - [SMALL_STATE(4330)] = 165705, - [SMALL_STATE(4331)] = 165740, - [SMALL_STATE(4332)] = 165765, - [SMALL_STATE(4333)] = 165792, - [SMALL_STATE(4334)] = 165817, - [SMALL_STATE(4335)] = 165842, - [SMALL_STATE(4336)] = 165869, - [SMALL_STATE(4337)] = 165900, + [SMALL_STATE(4317)] = 165298, + [SMALL_STATE(4318)] = 165333, + [SMALL_STATE(4319)] = 165360, + [SMALL_STATE(4320)] = 165391, + [SMALL_STATE(4321)] = 165424, + [SMALL_STATE(4322)] = 165451, + [SMALL_STATE(4323)] = 165482, + [SMALL_STATE(4324)] = 165509, + [SMALL_STATE(4325)] = 165536, + [SMALL_STATE(4326)] = 165565, + [SMALL_STATE(4327)] = 165594, + [SMALL_STATE(4328)] = 165621, + [SMALL_STATE(4329)] = 165652, + [SMALL_STATE(4330)] = 165683, + [SMALL_STATE(4331)] = 165710, + [SMALL_STATE(4332)] = 165743, + [SMALL_STATE(4333)] = 165770, + [SMALL_STATE(4334)] = 165799, + [SMALL_STATE(4335)] = 165828, + [SMALL_STATE(4336)] = 165859, + [SMALL_STATE(4337)] = 165890, [SMALL_STATE(4338)] = 165925, - [SMALL_STATE(4339)] = 165950, - [SMALL_STATE(4340)] = 165975, - [SMALL_STATE(4341)] = 166000, - [SMALL_STATE(4342)] = 166025, - [SMALL_STATE(4343)] = 166052, - [SMALL_STATE(4344)] = 166087, - [SMALL_STATE(4345)] = 166122, - [SMALL_STATE(4346)] = 166149, - [SMALL_STATE(4347)] = 166176, - [SMALL_STATE(4348)] = 166205, - [SMALL_STATE(4349)] = 166234, - [SMALL_STATE(4350)] = 166259, - [SMALL_STATE(4351)] = 166284, - [SMALL_STATE(4352)] = 166315, - [SMALL_STATE(4353)] = 166342, - [SMALL_STATE(4354)] = 166369, - [SMALL_STATE(4355)] = 166398, - [SMALL_STATE(4356)] = 166427, - [SMALL_STATE(4357)] = 166454, - [SMALL_STATE(4358)] = 166489, - [SMALL_STATE(4359)] = 166524, - [SMALL_STATE(4360)] = 166559, - [SMALL_STATE(4361)] = 166594, - [SMALL_STATE(4362)] = 166629, - [SMALL_STATE(4363)] = 166664, - [SMALL_STATE(4364)] = 166699, + [SMALL_STATE(4339)] = 165952, + [SMALL_STATE(4340)] = 165983, + [SMALL_STATE(4341)] = 166014, + [SMALL_STATE(4342)] = 166041, + [SMALL_STATE(4343)] = 166068, + [SMALL_STATE(4344)] = 166099, + [SMALL_STATE(4345)] = 166134, + [SMALL_STATE(4346)] = 166163, + [SMALL_STATE(4347)] = 166190, + [SMALL_STATE(4348)] = 166225, + [SMALL_STATE(4349)] = 166254, + [SMALL_STATE(4350)] = 166287, + [SMALL_STATE(4351)] = 166314, + [SMALL_STATE(4352)] = 166349, + [SMALL_STATE(4353)] = 166376, + [SMALL_STATE(4354)] = 166403, + [SMALL_STATE(4355)] = 166430, + [SMALL_STATE(4356)] = 166463, + [SMALL_STATE(4357)] = 166494, + [SMALL_STATE(4358)] = 166521, + [SMALL_STATE(4359)] = 166552, + [SMALL_STATE(4360)] = 166579, + [SMALL_STATE(4361)] = 166614, + [SMALL_STATE(4362)] = 166641, + [SMALL_STATE(4363)] = 166668, + [SMALL_STATE(4364)] = 166703, [SMALL_STATE(4365)] = 166730, - [SMALL_STATE(4366)] = 166765, - [SMALL_STATE(4367)] = 166800, - [SMALL_STATE(4368)] = 166827, - [SMALL_STATE(4369)] = 166862, - [SMALL_STATE(4370)] = 166897, - [SMALL_STATE(4371)] = 166932, - [SMALL_STATE(4372)] = 166959, - [SMALL_STATE(4373)] = 166986, - [SMALL_STATE(4374)] = 167013, - [SMALL_STATE(4375)] = 167048, - [SMALL_STATE(4376)] = 167083, - [SMALL_STATE(4377)] = 167118, - [SMALL_STATE(4378)] = 167153, - [SMALL_STATE(4379)] = 167184, - [SMALL_STATE(4380)] = 167215, - [SMALL_STATE(4381)] = 167250, - [SMALL_STATE(4382)] = 167285, - [SMALL_STATE(4383)] = 167316, - [SMALL_STATE(4384)] = 167347, - [SMALL_STATE(4385)] = 167378, - [SMALL_STATE(4386)] = 167407, - [SMALL_STATE(4387)] = 167436, - [SMALL_STATE(4388)] = 167463, - [SMALL_STATE(4389)] = 167494, - [SMALL_STATE(4390)] = 167521, - [SMALL_STATE(4391)] = 167548, - [SMALL_STATE(4392)] = 167583, - [SMALL_STATE(4393)] = 167614, - [SMALL_STATE(4394)] = 167641, - [SMALL_STATE(4395)] = 167674, - [SMALL_STATE(4396)] = 167705, - [SMALL_STATE(4397)] = 167736, - [SMALL_STATE(4398)] = 167771, - [SMALL_STATE(4399)] = 167802, - [SMALL_STATE(4400)] = 167831, - [SMALL_STATE(4401)] = 167862, - [SMALL_STATE(4402)] = 167887, - [SMALL_STATE(4403)] = 167914, - [SMALL_STATE(4404)] = 167941, - [SMALL_STATE(4405)] = 167970, - [SMALL_STATE(4406)] = 168003, - [SMALL_STATE(4407)] = 168040, - [SMALL_STATE(4408)] = 168069, - [SMALL_STATE(4409)] = 168096, - [SMALL_STATE(4410)] = 168127, - [SMALL_STATE(4411)] = 168158, - [SMALL_STATE(4412)] = 168185, - [SMALL_STATE(4413)] = 168212, - [SMALL_STATE(4414)] = 168241, - [SMALL_STATE(4415)] = 168270, - [SMALL_STATE(4416)] = 168305, - [SMALL_STATE(4417)] = 168340, - [SMALL_STATE(4418)] = 168371, - [SMALL_STATE(4419)] = 168402, - [SMALL_STATE(4420)] = 168429, - [SMALL_STATE(4421)] = 168456, - [SMALL_STATE(4422)] = 168487, - [SMALL_STATE(4423)] = 168514, - [SMALL_STATE(4424)] = 168541, - [SMALL_STATE(4425)] = 168568, - [SMALL_STATE(4426)] = 168595, - [SMALL_STATE(4427)] = 168622, - [SMALL_STATE(4428)] = 168649, - [SMALL_STATE(4429)] = 168676, - [SMALL_STATE(4430)] = 168705, - [SMALL_STATE(4431)] = 168734, - [SMALL_STATE(4432)] = 168765, - [SMALL_STATE(4433)] = 168796, - [SMALL_STATE(4434)] = 168827, - [SMALL_STATE(4435)] = 168858, - [SMALL_STATE(4436)] = 168891, - [SMALL_STATE(4437)] = 168922, - [SMALL_STATE(4438)] = 168955, - [SMALL_STATE(4439)] = 168982, - [SMALL_STATE(4440)] = 169013, - [SMALL_STATE(4441)] = 169044, - [SMALL_STATE(4442)] = 169077, - [SMALL_STATE(4443)] = 169110, - [SMALL_STATE(4444)] = 169137, - [SMALL_STATE(4445)] = 169164, - [SMALL_STATE(4446)] = 169191, - [SMALL_STATE(4447)] = 169218, - [SMALL_STATE(4448)] = 169249, - [SMALL_STATE(4449)] = 169280, - [SMALL_STATE(4450)] = 169309, - [SMALL_STATE(4451)] = 169338, - [SMALL_STATE(4452)] = 169369, - [SMALL_STATE(4453)] = 169400, - [SMALL_STATE(4454)] = 169427, - [SMALL_STATE(4455)] = 169454, - [SMALL_STATE(4456)] = 169485, - [SMALL_STATE(4457)] = 169516, - [SMALL_STATE(4458)] = 169549, - [SMALL_STATE(4459)] = 169582, - [SMALL_STATE(4460)] = 169609, - [SMALL_STATE(4461)] = 169636, - [SMALL_STATE(4462)] = 169667, - [SMALL_STATE(4463)] = 169698, - [SMALL_STATE(4464)] = 169729, - [SMALL_STATE(4465)] = 169760, - [SMALL_STATE(4466)] = 169791, - [SMALL_STATE(4467)] = 169822, - [SMALL_STATE(4468)] = 169851, - [SMALL_STATE(4469)] = 169880, - [SMALL_STATE(4470)] = 169909, - [SMALL_STATE(4471)] = 169942, - [SMALL_STATE(4472)] = 169973, - [SMALL_STATE(4473)] = 170004, - [SMALL_STATE(4474)] = 170031, - [SMALL_STATE(4475)] = 170058, - [SMALL_STATE(4476)] = 170089, - [SMALL_STATE(4477)] = 170116, - [SMALL_STATE(4478)] = 170143, - [SMALL_STATE(4479)] = 170172, - [SMALL_STATE(4480)] = 170201, - [SMALL_STATE(4481)] = 170232, - [SMALL_STATE(4482)] = 170265, - [SMALL_STATE(4483)] = 170296, - [SMALL_STATE(4484)] = 170327, - [SMALL_STATE(4485)] = 170358, - [SMALL_STATE(4486)] = 170389, - [SMALL_STATE(4487)] = 170422, - [SMALL_STATE(4488)] = 170457, - [SMALL_STATE(4489)] = 170490, - [SMALL_STATE(4490)] = 170523, - [SMALL_STATE(4491)] = 170556, - [SMALL_STATE(4492)] = 170583, - [SMALL_STATE(4493)] = 170610, - [SMALL_STATE(4494)] = 170637, - [SMALL_STATE(4495)] = 170666, - [SMALL_STATE(4496)] = 170695, - [SMALL_STATE(4497)] = 170726, - [SMALL_STATE(4498)] = 170757, - [SMALL_STATE(4499)] = 170784, - [SMALL_STATE(4500)] = 170811, - [SMALL_STATE(4501)] = 170838, - [SMALL_STATE(4502)] = 170865, - [SMALL_STATE(4503)] = 170892, - [SMALL_STATE(4504)] = 170919, - [SMALL_STATE(4505)] = 170948, - [SMALL_STATE(4506)] = 170977, - [SMALL_STATE(4507)] = 171008, - [SMALL_STATE(4508)] = 171039, - [SMALL_STATE(4509)] = 171070, - [SMALL_STATE(4510)] = 171101, - [SMALL_STATE(4511)] = 171128, - [SMALL_STATE(4512)] = 171155, - [SMALL_STATE(4513)] = 171186, - [SMALL_STATE(4514)] = 171217, - [SMALL_STATE(4515)] = 171248, + [SMALL_STATE(4366)] = 166757, + [SMALL_STATE(4367)] = 166784, + [SMALL_STATE(4368)] = 166811, + [SMALL_STATE(4369)] = 166840, + [SMALL_STATE(4370)] = 166873, + [SMALL_STATE(4371)] = 166908, + [SMALL_STATE(4372)] = 166943, + [SMALL_STATE(4373)] = 166970, + [SMALL_STATE(4374)] = 166999, + [SMALL_STATE(4375)] = 167026, + [SMALL_STATE(4376)] = 167057, + [SMALL_STATE(4377)] = 167088, + [SMALL_STATE(4378)] = 167123, + [SMALL_STATE(4379)] = 167150, + [SMALL_STATE(4380)] = 167177, + [SMALL_STATE(4381)] = 167204, + [SMALL_STATE(4382)] = 167229, + [SMALL_STATE(4383)] = 167264, + [SMALL_STATE(4384)] = 167291, + [SMALL_STATE(4385)] = 167320, + [SMALL_STATE(4386)] = 167349, + [SMALL_STATE(4387)] = 167376, + [SMALL_STATE(4388)] = 167411, + [SMALL_STATE(4389)] = 167438, + [SMALL_STATE(4390)] = 167465, + [SMALL_STATE(4391)] = 167496, + [SMALL_STATE(4392)] = 167527, + [SMALL_STATE(4393)] = 167562, + [SMALL_STATE(4394)] = 167593, + [SMALL_STATE(4395)] = 167628, + [SMALL_STATE(4396)] = 167655, + [SMALL_STATE(4397)] = 167684, + [SMALL_STATE(4398)] = 167717, + [SMALL_STATE(4399)] = 167752, + [SMALL_STATE(4400)] = 167783, + [SMALL_STATE(4401)] = 167818, + [SMALL_STATE(4402)] = 167853, + [SMALL_STATE(4403)] = 167882, + [SMALL_STATE(4404)] = 167917, + [SMALL_STATE(4405)] = 167952, + [SMALL_STATE(4406)] = 167983, + [SMALL_STATE(4407)] = 168014, + [SMALL_STATE(4408)] = 168045, + [SMALL_STATE(4409)] = 168076, + [SMALL_STATE(4410)] = 168109, + [SMALL_STATE(4411)] = 168142, + [SMALL_STATE(4412)] = 168173, + [SMALL_STATE(4413)] = 168200, + [SMALL_STATE(4414)] = 168231, + [SMALL_STATE(4415)] = 168264, + [SMALL_STATE(4416)] = 168297, + [SMALL_STATE(4417)] = 168324, + [SMALL_STATE(4418)] = 168351, + [SMALL_STATE(4419)] = 168382, + [SMALL_STATE(4420)] = 168407, + [SMALL_STATE(4421)] = 168432, + [SMALL_STATE(4422)] = 168463, + [SMALL_STATE(4423)] = 168494, + [SMALL_STATE(4424)] = 168519, + [SMALL_STATE(4425)] = 168544, + [SMALL_STATE(4426)] = 168577, + [SMALL_STATE(4427)] = 168608, + [SMALL_STATE(4428)] = 168633, + [SMALL_STATE(4429)] = 168658, + [SMALL_STATE(4430)] = 168683, + [SMALL_STATE(4431)] = 168710, + [SMALL_STATE(4432)] = 168737, + [SMALL_STATE(4433)] = 168764, + [SMALL_STATE(4434)] = 168793, + [SMALL_STATE(4435)] = 168822, + [SMALL_STATE(4436)] = 168851, + [SMALL_STATE(4437)] = 168880, + [SMALL_STATE(4438)] = 168905, + [SMALL_STATE(4439)] = 168930, + [SMALL_STATE(4440)] = 168959, + [SMALL_STATE(4441)] = 168986, + [SMALL_STATE(4442)] = 169013, + [SMALL_STATE(4443)] = 169042, + [SMALL_STATE(4444)] = 169071, + [SMALL_STATE(4445)] = 169102, + [SMALL_STATE(4446)] = 169131, + [SMALL_STATE(4447)] = 169158, + [SMALL_STATE(4448)] = 169189, + [SMALL_STATE(4449)] = 169218, + [SMALL_STATE(4450)] = 169253, + [SMALL_STATE(4451)] = 169284, + [SMALL_STATE(4452)] = 169315, + [SMALL_STATE(4453)] = 169342, + [SMALL_STATE(4454)] = 169375, + [SMALL_STATE(4455)] = 169406, + [SMALL_STATE(4456)] = 169437, + [SMALL_STATE(4457)] = 169466, + [SMALL_STATE(4458)] = 169497, + [SMALL_STATE(4459)] = 169532, + [SMALL_STATE(4460)] = 169567, + [SMALL_STATE(4461)] = 169598, + [SMALL_STATE(4462)] = 169629, + [SMALL_STATE(4463)] = 169664, + [SMALL_STATE(4464)] = 169695, + [SMALL_STATE(4465)] = 169726, + [SMALL_STATE(4466)] = 169757, + [SMALL_STATE(4467)] = 169784, + [SMALL_STATE(4468)] = 169811, + [SMALL_STATE(4469)] = 169842, + [SMALL_STATE(4470)] = 169869, + [SMALL_STATE(4471)] = 169900, + [SMALL_STATE(4472)] = 169927, + [SMALL_STATE(4473)] = 169958, + [SMALL_STATE(4474)] = 169985, + [SMALL_STATE(4475)] = 170012, + [SMALL_STATE(4476)] = 170039, + [SMALL_STATE(4477)] = 170068, + [SMALL_STATE(4478)] = 170099, + [SMALL_STATE(4479)] = 170132, + [SMALL_STATE(4480)] = 170167, + [SMALL_STATE(4481)] = 170202, + [SMALL_STATE(4482)] = 170231, + [SMALL_STATE(4483)] = 170266, + [SMALL_STATE(4484)] = 170297, + [SMALL_STATE(4485)] = 170332, + [SMALL_STATE(4486)] = 170363, + [SMALL_STATE(4487)] = 170394, + [SMALL_STATE(4488)] = 170425, + [SMALL_STATE(4489)] = 170456, + [SMALL_STATE(4490)] = 170487, + [SMALL_STATE(4491)] = 170518, + [SMALL_STATE(4492)] = 170543, + [SMALL_STATE(4493)] = 170578, + [SMALL_STATE(4494)] = 170611, + [SMALL_STATE(4495)] = 170644, + [SMALL_STATE(4496)] = 170679, + [SMALL_STATE(4497)] = 170714, + [SMALL_STATE(4498)] = 170741, + [SMALL_STATE(4499)] = 170768, + [SMALL_STATE(4500)] = 170795, + [SMALL_STATE(4501)] = 170826, + [SMALL_STATE(4502)] = 170857, + [SMALL_STATE(4503)] = 170888, + [SMALL_STATE(4504)] = 170921, + [SMALL_STATE(4505)] = 170954, + [SMALL_STATE(4506)] = 170985, + [SMALL_STATE(4507)] = 171018, + [SMALL_STATE(4508)] = 171049, + [SMALL_STATE(4509)] = 171076, + [SMALL_STATE(4510)] = 171107, + [SMALL_STATE(4511)] = 171134, + [SMALL_STATE(4512)] = 171165, + [SMALL_STATE(4513)] = 171192, + [SMALL_STATE(4514)] = 171223, + [SMALL_STATE(4515)] = 171250, [SMALL_STATE(4516)] = 171281, - [SMALL_STATE(4517)] = 171316, - [SMALL_STATE(4518)] = 171349, - [SMALL_STATE(4519)] = 171382, - [SMALL_STATE(4520)] = 171415, + [SMALL_STATE(4517)] = 171314, + [SMALL_STATE(4518)] = 171347, + [SMALL_STATE(4519)] = 171380, + [SMALL_STATE(4520)] = 171417, [SMALL_STATE(4521)] = 171448, [SMALL_STATE(4522)] = 171475, - [SMALL_STATE(4523)] = 171503, - [SMALL_STATE(4524)] = 171527, - [SMALL_STATE(4525)] = 171551, - [SMALL_STATE(4526)] = 171581, + [SMALL_STATE(4523)] = 171505, + [SMALL_STATE(4524)] = 171531, + [SMALL_STATE(4525)] = 171561, + [SMALL_STATE(4526)] = 171585, [SMALL_STATE(4527)] = 171611, - [SMALL_STATE(4528)] = 171639, - [SMALL_STATE(4529)] = 171665, - [SMALL_STATE(4530)] = 171693, - [SMALL_STATE(4531)] = 171723, - [SMALL_STATE(4532)] = 171749, - [SMALL_STATE(4533)] = 171775, - [SMALL_STATE(4534)] = 171827, - [SMALL_STATE(4535)] = 171853, - [SMALL_STATE(4536)] = 171883, - [SMALL_STATE(4537)] = 171913, - [SMALL_STATE(4538)] = 171943, - [SMALL_STATE(4539)] = 171969, - [SMALL_STATE(4540)] = 171999, - [SMALL_STATE(4541)] = 172027, - [SMALL_STATE(4542)] = 172057, - [SMALL_STATE(4543)] = 172087, - [SMALL_STATE(4544)] = 172113, - [SMALL_STATE(4545)] = 172143, - [SMALL_STATE(4546)] = 172173, - [SMALL_STATE(4547)] = 172201, - [SMALL_STATE(4548)] = 172229, - [SMALL_STATE(4549)] = 172259, - [SMALL_STATE(4550)] = 172311, - [SMALL_STATE(4551)] = 172363, - [SMALL_STATE(4552)] = 172389, - [SMALL_STATE(4553)] = 172421, - [SMALL_STATE(4554)] = 172445, - [SMALL_STATE(4555)] = 172471, - [SMALL_STATE(4556)] = 172499, - [SMALL_STATE(4557)] = 172551, - [SMALL_STATE(4558)] = 172581, - [SMALL_STATE(4559)] = 172611, - [SMALL_STATE(4560)] = 172637, - [SMALL_STATE(4561)] = 172663, - [SMALL_STATE(4562)] = 172693, - [SMALL_STATE(4563)] = 172721, - [SMALL_STATE(4564)] = 172751, - [SMALL_STATE(4565)] = 172781, - [SMALL_STATE(4566)] = 172805, - [SMALL_STATE(4567)] = 172831, - [SMALL_STATE(4568)] = 172857, - [SMALL_STATE(4569)] = 172883, - [SMALL_STATE(4570)] = 172913, - [SMALL_STATE(4571)] = 172943, - [SMALL_STATE(4572)] = 172971, - [SMALL_STATE(4573)] = 173003, - [SMALL_STATE(4574)] = 173031, - [SMALL_STATE(4575)] = 173083, - [SMALL_STATE(4576)] = 173107, - [SMALL_STATE(4577)] = 173137, - [SMALL_STATE(4578)] = 173163, - [SMALL_STATE(4579)] = 173189, - [SMALL_STATE(4580)] = 173219, - [SMALL_STATE(4581)] = 173247, - [SMALL_STATE(4582)] = 173299, - [SMALL_STATE(4583)] = 173323, - [SMALL_STATE(4584)] = 173347, - [SMALL_STATE(4585)] = 173377, - [SMALL_STATE(4586)] = 173405, - [SMALL_STATE(4587)] = 173433, - [SMALL_STATE(4588)] = 173457, - [SMALL_STATE(4589)] = 173481, - [SMALL_STATE(4590)] = 173507, - [SMALL_STATE(4591)] = 173535, - [SMALL_STATE(4592)] = 173565, - [SMALL_STATE(4593)] = 173617, - [SMALL_STATE(4594)] = 173669, - [SMALL_STATE(4595)] = 173695, - [SMALL_STATE(4596)] = 173719, - [SMALL_STATE(4597)] = 173749, - [SMALL_STATE(4598)] = 173775, - [SMALL_STATE(4599)] = 173807, - [SMALL_STATE(4600)] = 173831, - [SMALL_STATE(4601)] = 173861, - [SMALL_STATE(4602)] = 173891, - [SMALL_STATE(4603)] = 173921, - [SMALL_STATE(4604)] = 173947, - [SMALL_STATE(4605)] = 173977, - [SMALL_STATE(4606)] = 174029, - [SMALL_STATE(4607)] = 174081, - [SMALL_STATE(4608)] = 174111, - [SMALL_STATE(4609)] = 174137, - [SMALL_STATE(4610)] = 174163, - [SMALL_STATE(4611)] = 174187, - [SMALL_STATE(4612)] = 174215, - [SMALL_STATE(4613)] = 174245, - [SMALL_STATE(4614)] = 174273, - [SMALL_STATE(4615)] = 174319, - [SMALL_STATE(4616)] = 174349, - [SMALL_STATE(4617)] = 174377, + [SMALL_STATE(4528)] = 171635, + [SMALL_STATE(4529)] = 171687, + [SMALL_STATE(4530)] = 171713, + [SMALL_STATE(4531)] = 171737, + [SMALL_STATE(4532)] = 171765, + [SMALL_STATE(4533)] = 171811, + [SMALL_STATE(4534)] = 171835, + [SMALL_STATE(4535)] = 171865, + [SMALL_STATE(4536)] = 171895, + [SMALL_STATE(4537)] = 171925, + [SMALL_STATE(4538)] = 171955, + [SMALL_STATE(4539)] = 171985, + [SMALL_STATE(4540)] = 172013, + [SMALL_STATE(4541)] = 172065, + [SMALL_STATE(4542)] = 172095, + [SMALL_STATE(4543)] = 172125, + [SMALL_STATE(4544)] = 172155, + [SMALL_STATE(4545)] = 172185, + [SMALL_STATE(4546)] = 172211, + [SMALL_STATE(4547)] = 172237, + [SMALL_STATE(4548)] = 172289, + [SMALL_STATE(4549)] = 172317, + [SMALL_STATE(4550)] = 172343, + [SMALL_STATE(4551)] = 172371, + [SMALL_STATE(4552)] = 172399, + [SMALL_STATE(4553)] = 172451, + [SMALL_STATE(4554)] = 172479, + [SMALL_STATE(4555)] = 172507, + [SMALL_STATE(4556)] = 172559, + [SMALL_STATE(4557)] = 172589, + [SMALL_STATE(4558)] = 172615, + [SMALL_STATE(4559)] = 172643, + [SMALL_STATE(4560)] = 172675, + [SMALL_STATE(4561)] = 172705, + [SMALL_STATE(4562)] = 172731, + [SMALL_STATE(4563)] = 172757, + [SMALL_STATE(4564)] = 172787, + [SMALL_STATE(4565)] = 172817, + [SMALL_STATE(4566)] = 172843, + [SMALL_STATE(4567)] = 172873, + [SMALL_STATE(4568)] = 172903, + [SMALL_STATE(4569)] = 172927, + [SMALL_STATE(4570)] = 172953, + [SMALL_STATE(4571)] = 172985, + [SMALL_STATE(4572)] = 173009, + [SMALL_STATE(4573)] = 173061, + [SMALL_STATE(4574)] = 173087, + [SMALL_STATE(4575)] = 173115, + [SMALL_STATE(4576)] = 173167, + [SMALL_STATE(4577)] = 173219, + [SMALL_STATE(4578)] = 173249, + [SMALL_STATE(4579)] = 173275, + [SMALL_STATE(4580)] = 173299, + [SMALL_STATE(4581)] = 173325, + [SMALL_STATE(4582)] = 173355, + [SMALL_STATE(4583)] = 173381, + [SMALL_STATE(4584)] = 173405, + [SMALL_STATE(4585)] = 173435, + [SMALL_STATE(4586)] = 173465, + [SMALL_STATE(4587)] = 173495, + [SMALL_STATE(4588)] = 173525, + [SMALL_STATE(4589)] = 173549, + [SMALL_STATE(4590)] = 173579, + [SMALL_STATE(4591)] = 173607, + [SMALL_STATE(4592)] = 173633, + [SMALL_STATE(4593)] = 173665, + [SMALL_STATE(4594)] = 173691, + [SMALL_STATE(4595)] = 173743, + [SMALL_STATE(4596)] = 173771, + [SMALL_STATE(4597)] = 173799, + [SMALL_STATE(4598)] = 173829, + [SMALL_STATE(4599)] = 173859, + [SMALL_STATE(4600)] = 173885, + [SMALL_STATE(4601)] = 173915, + [SMALL_STATE(4602)] = 173945, + [SMALL_STATE(4603)] = 173997, + [SMALL_STATE(4604)] = 174021, + [SMALL_STATE(4605)] = 174049, + [SMALL_STATE(4606)] = 174075, + [SMALL_STATE(4607)] = 174103, + [SMALL_STATE(4608)] = 174131, + [SMALL_STATE(4609)] = 174155, + [SMALL_STATE(4610)] = 174185, + [SMALL_STATE(4611)] = 174215, + [SMALL_STATE(4612)] = 174239, + [SMALL_STATE(4613)] = 174269, + [SMALL_STATE(4614)] = 174295, + [SMALL_STATE(4615)] = 174321, + [SMALL_STATE(4616)] = 174345, + [SMALL_STATE(4617)] = 174373, [SMALL_STATE(4618)] = 174403, - [SMALL_STATE(4619)] = 174431, - [SMALL_STATE(4620)] = 174461, - [SMALL_STATE(4621)] = 174491, - [SMALL_STATE(4622)] = 174515, + [SMALL_STATE(4619)] = 174429, + [SMALL_STATE(4620)] = 174459, + [SMALL_STATE(4621)] = 174487, + [SMALL_STATE(4622)] = 174513, [SMALL_STATE(4623)] = 174541, [SMALL_STATE(4624)] = 174567, - [SMALL_STATE(4625)] = 174596, - [SMALL_STATE(4626)] = 174621, - [SMALL_STATE(4627)] = 174650, - [SMALL_STATE(4628)] = 174691, - [SMALL_STATE(4629)] = 174714, - [SMALL_STATE(4630)] = 174745, - [SMALL_STATE(4631)] = 174770, - [SMALL_STATE(4632)] = 174799, - [SMALL_STATE(4633)] = 174828, - [SMALL_STATE(4634)] = 174857, - [SMALL_STATE(4635)] = 174886, - [SMALL_STATE(4636)] = 174915, - [SMALL_STATE(4637)] = 174940, - [SMALL_STATE(4638)] = 174965, - [SMALL_STATE(4639)] = 174990, - [SMALL_STATE(4640)] = 175015, - [SMALL_STATE(4641)] = 175044, - [SMALL_STATE(4642)] = 175069, - [SMALL_STATE(4643)] = 175094, - [SMALL_STATE(4644)] = 175123, - [SMALL_STATE(4645)] = 175148, - [SMALL_STATE(4646)] = 175173, - [SMALL_STATE(4647)] = 175198, - [SMALL_STATE(4648)] = 175223, - [SMALL_STATE(4649)] = 175248, - [SMALL_STATE(4650)] = 175277, - [SMALL_STATE(4651)] = 175304, - [SMALL_STATE(4652)] = 175333, - [SMALL_STATE(4653)] = 175358, - [SMALL_STATE(4654)] = 175387, - [SMALL_STATE(4655)] = 175412, - [SMALL_STATE(4656)] = 175435, - [SMALL_STATE(4657)] = 175460, - [SMALL_STATE(4658)] = 175489, - [SMALL_STATE(4659)] = 175514, - [SMALL_STATE(4660)] = 175543, - [SMALL_STATE(4661)] = 175568, - [SMALL_STATE(4662)] = 175595, - [SMALL_STATE(4663)] = 175620, - [SMALL_STATE(4664)] = 175649, - [SMALL_STATE(4665)] = 175674, - [SMALL_STATE(4666)] = 175703, - [SMALL_STATE(4667)] = 175728, - [SMALL_STATE(4668)] = 175757, - [SMALL_STATE(4669)] = 175788, - [SMALL_STATE(4670)] = 175817, - [SMALL_STATE(4671)] = 175842, - [SMALL_STATE(4672)] = 175865, - [SMALL_STATE(4673)] = 175894, - [SMALL_STATE(4674)] = 175923, - [SMALL_STATE(4675)] = 175952, - [SMALL_STATE(4676)] = 175981, - [SMALL_STATE(4677)] = 176006, - [SMALL_STATE(4678)] = 176035, - [SMALL_STATE(4679)] = 176060, - [SMALL_STATE(4680)] = 176089, - [SMALL_STATE(4681)] = 176114, - [SMALL_STATE(4682)] = 176139, - [SMALL_STATE(4683)] = 176168, - [SMALL_STATE(4684)] = 176193, - [SMALL_STATE(4685)] = 176218, - [SMALL_STATE(4686)] = 176243, - [SMALL_STATE(4687)] = 176272, - [SMALL_STATE(4688)] = 176299, - [SMALL_STATE(4689)] = 176324, - [SMALL_STATE(4690)] = 176349, - [SMALL_STATE(4691)] = 176378, - [SMALL_STATE(4692)] = 176405, - [SMALL_STATE(4693)] = 176434, - [SMALL_STATE(4694)] = 176463, - [SMALL_STATE(4695)] = 176492, - [SMALL_STATE(4696)] = 176517, - [SMALL_STATE(4697)] = 176542, - [SMALL_STATE(4698)] = 176567, - [SMALL_STATE(4699)] = 176596, - [SMALL_STATE(4700)] = 176625, - [SMALL_STATE(4701)] = 176654, - [SMALL_STATE(4702)] = 176683, - [SMALL_STATE(4703)] = 176708, - [SMALL_STATE(4704)] = 176733, - [SMALL_STATE(4705)] = 176760, - [SMALL_STATE(4706)] = 176789, - [SMALL_STATE(4707)] = 176818, - [SMALL_STATE(4708)] = 176845, - [SMALL_STATE(4709)] = 176872, - [SMALL_STATE(4710)] = 176899, - [SMALL_STATE(4711)] = 176924, - [SMALL_STATE(4712)] = 176949, - [SMALL_STATE(4713)] = 176974, - [SMALL_STATE(4714)] = 176999, - [SMALL_STATE(4715)] = 177024, - [SMALL_STATE(4716)] = 177049, - [SMALL_STATE(4717)] = 177074, - [SMALL_STATE(4718)] = 177099, - [SMALL_STATE(4719)] = 177124, - [SMALL_STATE(4720)] = 177149, - [SMALL_STATE(4721)] = 177174, - [SMALL_STATE(4722)] = 177199, - [SMALL_STATE(4723)] = 177228, - [SMALL_STATE(4724)] = 177253, - [SMALL_STATE(4725)] = 177278, - [SMALL_STATE(4726)] = 177305, - [SMALL_STATE(4727)] = 177330, - [SMALL_STATE(4728)] = 177361, - [SMALL_STATE(4729)] = 177388, - [SMALL_STATE(4730)] = 177413, - [SMALL_STATE(4731)] = 177442, - [SMALL_STATE(4732)] = 177467, - [SMALL_STATE(4733)] = 177492, - [SMALL_STATE(4734)] = 177517, - [SMALL_STATE(4735)] = 177542, - [SMALL_STATE(4736)] = 177567, - [SMALL_STATE(4737)] = 177594, - [SMALL_STATE(4738)] = 177623, - [SMALL_STATE(4739)] = 177652, - [SMALL_STATE(4740)] = 177677, - [SMALL_STATE(4741)] = 177702, - [SMALL_STATE(4742)] = 177729, - [SMALL_STATE(4743)] = 177758, - [SMALL_STATE(4744)] = 177787, - [SMALL_STATE(4745)] = 177816, - [SMALL_STATE(4746)] = 177847, - [SMALL_STATE(4747)] = 177872, - [SMALL_STATE(4748)] = 177897, - [SMALL_STATE(4749)] = 177926, - [SMALL_STATE(4750)] = 177951, - [SMALL_STATE(4751)] = 177980, - [SMALL_STATE(4752)] = 178005, - [SMALL_STATE(4753)] = 178030, - [SMALL_STATE(4754)] = 178053, - [SMALL_STATE(4755)] = 178076, - [SMALL_STATE(4756)] = 178101, - [SMALL_STATE(4757)] = 178126, - [SMALL_STATE(4758)] = 178151, - [SMALL_STATE(4759)] = 178176, - [SMALL_STATE(4760)] = 178201, - [SMALL_STATE(4761)] = 178226, - [SMALL_STATE(4762)] = 178251, - [SMALL_STATE(4763)] = 178274, - [SMALL_STATE(4764)] = 178299, - [SMALL_STATE(4765)] = 178324, - [SMALL_STATE(4766)] = 178349, - [SMALL_STATE(4767)] = 178374, - [SMALL_STATE(4768)] = 178399, - [SMALL_STATE(4769)] = 178428, - [SMALL_STATE(4770)] = 178453, - [SMALL_STATE(4771)] = 178478, - [SMALL_STATE(4772)] = 178503, - [SMALL_STATE(4773)] = 178532, - [SMALL_STATE(4774)] = 178557, - [SMALL_STATE(4775)] = 178582, - [SMALL_STATE(4776)] = 178607, - [SMALL_STATE(4777)] = 178636, - [SMALL_STATE(4778)] = 178661, - [SMALL_STATE(4779)] = 178684, - [SMALL_STATE(4780)] = 178709, - [SMALL_STATE(4781)] = 178734, - [SMALL_STATE(4782)] = 178759, - [SMALL_STATE(4783)] = 178784, - [SMALL_STATE(4784)] = 178809, - [SMALL_STATE(4785)] = 178834, - [SMALL_STATE(4786)] = 178859, - [SMALL_STATE(4787)] = 178884, - [SMALL_STATE(4788)] = 178909, + [SMALL_STATE(4625)] = 174592, + [SMALL_STATE(4626)] = 174617, + [SMALL_STATE(4627)] = 174642, + [SMALL_STATE(4628)] = 174667, + [SMALL_STATE(4629)] = 174690, + [SMALL_STATE(4630)] = 174719, + [SMALL_STATE(4631)] = 174748, + [SMALL_STATE(4632)] = 174777, + [SMALL_STATE(4633)] = 174806, + [SMALL_STATE(4634)] = 174835, + [SMALL_STATE(4635)] = 174860, + [SMALL_STATE(4636)] = 174885, + [SMALL_STATE(4637)] = 174910, + [SMALL_STATE(4638)] = 174935, + [SMALL_STATE(4639)] = 174960, + [SMALL_STATE(4640)] = 174989, + [SMALL_STATE(4641)] = 175014, + [SMALL_STATE(4642)] = 175039, + [SMALL_STATE(4643)] = 175064, + [SMALL_STATE(4644)] = 175089, + [SMALL_STATE(4645)] = 175114, + [SMALL_STATE(4646)] = 175143, + [SMALL_STATE(4647)] = 175168, + [SMALL_STATE(4648)] = 175193, + [SMALL_STATE(4649)] = 175218, + [SMALL_STATE(4650)] = 175243, + [SMALL_STATE(4651)] = 175268, + [SMALL_STATE(4652)] = 175293, + [SMALL_STATE(4653)] = 175318, + [SMALL_STATE(4654)] = 175343, + [SMALL_STATE(4655)] = 175368, + [SMALL_STATE(4656)] = 175393, + [SMALL_STATE(4657)] = 175418, + [SMALL_STATE(4658)] = 175447, + [SMALL_STATE(4659)] = 175472, + [SMALL_STATE(4660)] = 175497, + [SMALL_STATE(4661)] = 175522, + [SMALL_STATE(4662)] = 175547, + [SMALL_STATE(4663)] = 175572, + [SMALL_STATE(4664)] = 175601, + [SMALL_STATE(4665)] = 175626, + [SMALL_STATE(4666)] = 175651, + [SMALL_STATE(4667)] = 175676, + [SMALL_STATE(4668)] = 175705, + [SMALL_STATE(4669)] = 175734, + [SMALL_STATE(4670)] = 175763, + [SMALL_STATE(4671)] = 175792, + [SMALL_STATE(4672)] = 175821, + [SMALL_STATE(4673)] = 175848, + [SMALL_STATE(4674)] = 175873, + [SMALL_STATE(4675)] = 175898, + [SMALL_STATE(4676)] = 175925, + [SMALL_STATE(4677)] = 175950, + [SMALL_STATE(4678)] = 175977, + [SMALL_STATE(4679)] = 176004, + [SMALL_STATE(4680)] = 176029, + [SMALL_STATE(4681)] = 176054, + [SMALL_STATE(4682)] = 176083, + [SMALL_STATE(4683)] = 176110, + [SMALL_STATE(4684)] = 176135, + [SMALL_STATE(4685)] = 176164, + [SMALL_STATE(4686)] = 176193, + [SMALL_STATE(4687)] = 176218, + [SMALL_STATE(4688)] = 176245, + [SMALL_STATE(4689)] = 176274, + [SMALL_STATE(4690)] = 176299, + [SMALL_STATE(4691)] = 176324, + [SMALL_STATE(4692)] = 176353, + [SMALL_STATE(4693)] = 176378, + [SMALL_STATE(4694)] = 176403, + [SMALL_STATE(4695)] = 176428, + [SMALL_STATE(4696)] = 176457, + [SMALL_STATE(4697)] = 176486, + [SMALL_STATE(4698)] = 176511, + [SMALL_STATE(4699)] = 176540, + [SMALL_STATE(4700)] = 176569, + [SMALL_STATE(4701)] = 176594, + [SMALL_STATE(4702)] = 176623, + [SMALL_STATE(4703)] = 176648, + [SMALL_STATE(4704)] = 176675, + [SMALL_STATE(4705)] = 176698, + [SMALL_STATE(4706)] = 176727, + [SMALL_STATE(4707)] = 176756, + [SMALL_STATE(4708)] = 176783, + [SMALL_STATE(4709)] = 176808, + [SMALL_STATE(4710)] = 176833, + [SMALL_STATE(4711)] = 176862, + [SMALL_STATE(4712)] = 176903, + [SMALL_STATE(4713)] = 176928, + [SMALL_STATE(4714)] = 176957, + [SMALL_STATE(4715)] = 176982, + [SMALL_STATE(4716)] = 177007, + [SMALL_STATE(4717)] = 177032, + [SMALL_STATE(4718)] = 177057, + [SMALL_STATE(4719)] = 177082, + [SMALL_STATE(4720)] = 177107, + [SMALL_STATE(4721)] = 177132, + [SMALL_STATE(4722)] = 177157, + [SMALL_STATE(4723)] = 177182, + [SMALL_STATE(4724)] = 177207, + [SMALL_STATE(4725)] = 177232, + [SMALL_STATE(4726)] = 177255, + [SMALL_STATE(4727)] = 177280, + [SMALL_STATE(4728)] = 177307, + [SMALL_STATE(4729)] = 177338, + [SMALL_STATE(4730)] = 177363, + [SMALL_STATE(4731)] = 177390, + [SMALL_STATE(4732)] = 177415, + [SMALL_STATE(4733)] = 177440, + [SMALL_STATE(4734)] = 177469, + [SMALL_STATE(4735)] = 177494, + [SMALL_STATE(4736)] = 177523, + [SMALL_STATE(4737)] = 177552, + [SMALL_STATE(4738)] = 177577, + [SMALL_STATE(4739)] = 177602, + [SMALL_STATE(4740)] = 177627, + [SMALL_STATE(4741)] = 177656, + [SMALL_STATE(4742)] = 177679, + [SMALL_STATE(4743)] = 177710, + [SMALL_STATE(4744)] = 177735, + [SMALL_STATE(4745)] = 177760, + [SMALL_STATE(4746)] = 177785, + [SMALL_STATE(4747)] = 177810, + [SMALL_STATE(4748)] = 177835, + [SMALL_STATE(4749)] = 177862, + [SMALL_STATE(4750)] = 177887, + [SMALL_STATE(4751)] = 177916, + [SMALL_STATE(4752)] = 177945, + [SMALL_STATE(4753)] = 177974, + [SMALL_STATE(4754)] = 178003, + [SMALL_STATE(4755)] = 178028, + [SMALL_STATE(4756)] = 178053, + [SMALL_STATE(4757)] = 178084, + [SMALL_STATE(4758)] = 178113, + [SMALL_STATE(4759)] = 178138, + [SMALL_STATE(4760)] = 178163, + [SMALL_STATE(4761)] = 178186, + [SMALL_STATE(4762)] = 178217, + [SMALL_STATE(4763)] = 178244, + [SMALL_STATE(4764)] = 178273, + [SMALL_STATE(4765)] = 178298, + [SMALL_STATE(4766)] = 178325, + [SMALL_STATE(4767)] = 178354, + [SMALL_STATE(4768)] = 178379, + [SMALL_STATE(4769)] = 178404, + [SMALL_STATE(4770)] = 178431, + [SMALL_STATE(4771)] = 178460, + [SMALL_STATE(4772)] = 178489, + [SMALL_STATE(4773)] = 178518, + [SMALL_STATE(4774)] = 178543, + [SMALL_STATE(4775)] = 178568, + [SMALL_STATE(4776)] = 178597, + [SMALL_STATE(4777)] = 178622, + [SMALL_STATE(4778)] = 178647, + [SMALL_STATE(4779)] = 178672, + [SMALL_STATE(4780)] = 178701, + [SMALL_STATE(4781)] = 178724, + [SMALL_STATE(4782)] = 178749, + [SMALL_STATE(4783)] = 178774, + [SMALL_STATE(4784)] = 178799, + [SMALL_STATE(4785)] = 178822, + [SMALL_STATE(4786)] = 178847, + [SMALL_STATE(4787)] = 178876, + [SMALL_STATE(4788)] = 178905, [SMALL_STATE(4789)] = 178934, - [SMALL_STATE(4790)] = 178959, - [SMALL_STATE(4791)] = 178984, - [SMALL_STATE(4792)] = 179009, - [SMALL_STATE(4793)] = 179034, - [SMALL_STATE(4794)] = 179061, - [SMALL_STATE(4795)] = 179090, - [SMALL_STATE(4796)] = 179115, - [SMALL_STATE(4797)] = 179139, - [SMALL_STATE(4798)] = 179185, - [SMALL_STATE(4799)] = 179209, - [SMALL_STATE(4800)] = 179233, - [SMALL_STATE(4801)] = 179257, - [SMALL_STATE(4802)] = 179281, - [SMALL_STATE(4803)] = 179305, - [SMALL_STATE(4804)] = 179349, - [SMALL_STATE(4805)] = 179371, - [SMALL_STATE(4806)] = 179395, - [SMALL_STATE(4807)] = 179417, - [SMALL_STATE(4808)] = 179441, - [SMALL_STATE(4809)] = 179463, - [SMALL_STATE(4810)] = 179487, - [SMALL_STATE(4811)] = 179533, - [SMALL_STATE(4812)] = 179557, - [SMALL_STATE(4813)] = 179581, - [SMALL_STATE(4814)] = 179605, - [SMALL_STATE(4815)] = 179629, - [SMALL_STATE(4816)] = 179653, - [SMALL_STATE(4817)] = 179677, - [SMALL_STATE(4818)] = 179701, - [SMALL_STATE(4819)] = 179725, - [SMALL_STATE(4820)] = 179749, - [SMALL_STATE(4821)] = 179773, - [SMALL_STATE(4822)] = 179797, - [SMALL_STATE(4823)] = 179821, - [SMALL_STATE(4824)] = 179845, - [SMALL_STATE(4825)] = 179869, - [SMALL_STATE(4826)] = 179893, - [SMALL_STATE(4827)] = 179917, - [SMALL_STATE(4828)] = 179941, - [SMALL_STATE(4829)] = 179979, - [SMALL_STATE(4830)] = 180021, - [SMALL_STATE(4831)] = 180045, - [SMALL_STATE(4832)] = 180069, - [SMALL_STATE(4833)] = 180093, - [SMALL_STATE(4834)] = 180117, - [SMALL_STATE(4835)] = 180141, - [SMALL_STATE(4836)] = 180165, - [SMALL_STATE(4837)] = 180189, - [SMALL_STATE(4838)] = 180213, - [SMALL_STATE(4839)] = 180237, - [SMALL_STATE(4840)] = 180261, - [SMALL_STATE(4841)] = 180285, - [SMALL_STATE(4842)] = 180311, - [SMALL_STATE(4843)] = 180335, - [SMALL_STATE(4844)] = 180359, - [SMALL_STATE(4845)] = 180383, - [SMALL_STATE(4846)] = 180407, - [SMALL_STATE(4847)] = 180433, - [SMALL_STATE(4848)] = 180457, - [SMALL_STATE(4849)] = 180481, - [SMALL_STATE(4850)] = 180505, - [SMALL_STATE(4851)] = 180551, - [SMALL_STATE(4852)] = 180575, - [SMALL_STATE(4853)] = 180599, - [SMALL_STATE(4854)] = 180625, - [SMALL_STATE(4855)] = 180649, - [SMALL_STATE(4856)] = 180673, - [SMALL_STATE(4857)] = 180697, - [SMALL_STATE(4858)] = 180721, - [SMALL_STATE(4859)] = 180763, - [SMALL_STATE(4860)] = 180787, - [SMALL_STATE(4861)] = 180809, - [SMALL_STATE(4862)] = 180831, - [SMALL_STATE(4863)] = 180855, - [SMALL_STATE(4864)] = 180879, - [SMALL_STATE(4865)] = 180903, - [SMALL_STATE(4866)] = 180927, - [SMALL_STATE(4867)] = 180953, - [SMALL_STATE(4868)] = 180977, - [SMALL_STATE(4869)] = 181011, - [SMALL_STATE(4870)] = 181035, - [SMALL_STATE(4871)] = 181059, - [SMALL_STATE(4872)] = 181081, - [SMALL_STATE(4873)] = 181105, - [SMALL_STATE(4874)] = 181129, - [SMALL_STATE(4875)] = 181151, - [SMALL_STATE(4876)] = 181197, - [SMALL_STATE(4877)] = 181219, - [SMALL_STATE(4878)] = 181257, - [SMALL_STATE(4879)] = 181303, - [SMALL_STATE(4880)] = 181349, - [SMALL_STATE(4881)] = 181395, - [SMALL_STATE(4882)] = 181435, - [SMALL_STATE(4883)] = 181459, - [SMALL_STATE(4884)] = 181481, - [SMALL_STATE(4885)] = 181505, - [SMALL_STATE(4886)] = 181527, - [SMALL_STATE(4887)] = 181551, - [SMALL_STATE(4888)] = 181575, - [SMALL_STATE(4889)] = 181599, - [SMALL_STATE(4890)] = 181623, - [SMALL_STATE(4891)] = 181647, - [SMALL_STATE(4892)] = 181671, - [SMALL_STATE(4893)] = 181695, - [SMALL_STATE(4894)] = 181719, - [SMALL_STATE(4895)] = 181743, - [SMALL_STATE(4896)] = 181765, - [SMALL_STATE(4897)] = 181789, - [SMALL_STATE(4898)] = 181833, - [SMALL_STATE(4899)] = 181857, - [SMALL_STATE(4900)] = 181881, - [SMALL_STATE(4901)] = 181905, - [SMALL_STATE(4902)] = 181931, - [SMALL_STATE(4903)] = 181955, - [SMALL_STATE(4904)] = 181977, - [SMALL_STATE(4905)] = 182001, - [SMALL_STATE(4906)] = 182025, - [SMALL_STATE(4907)] = 182049, - [SMALL_STATE(4908)] = 182073, - [SMALL_STATE(4909)] = 182097, - [SMALL_STATE(4910)] = 182119, - [SMALL_STATE(4911)] = 182143, - [SMALL_STATE(4912)] = 182169, - [SMALL_STATE(4913)] = 182191, - [SMALL_STATE(4914)] = 182213, - [SMALL_STATE(4915)] = 182235, - [SMALL_STATE(4916)] = 182259, - [SMALL_STATE(4917)] = 182281, - [SMALL_STATE(4918)] = 182305, - [SMALL_STATE(4919)] = 182329, - [SMALL_STATE(4920)] = 182351, - [SMALL_STATE(4921)] = 182375, - [SMALL_STATE(4922)] = 182399, - [SMALL_STATE(4923)] = 182423, - [SMALL_STATE(4924)] = 182447, - [SMALL_STATE(4925)] = 182469, - [SMALL_STATE(4926)] = 182493, - [SMALL_STATE(4927)] = 182515, - [SMALL_STATE(4928)] = 182539, - [SMALL_STATE(4929)] = 182563, - [SMALL_STATE(4930)] = 182587, - [SMALL_STATE(4931)] = 182609, - [SMALL_STATE(4932)] = 182633, - [SMALL_STATE(4933)] = 182679, - [SMALL_STATE(4934)] = 182721, - [SMALL_STATE(4935)] = 182745, - [SMALL_STATE(4936)] = 182785, - [SMALL_STATE(4937)] = 182809, - [SMALL_STATE(4938)] = 182849, - [SMALL_STATE(4939)] = 182873, - [SMALL_STATE(4940)] = 182897, - [SMALL_STATE(4941)] = 182921, - [SMALL_STATE(4942)] = 182945, - [SMALL_STATE(4943)] = 182969, - [SMALL_STATE(4944)] = 182993, - [SMALL_STATE(4945)] = 183017, - [SMALL_STATE(4946)] = 183041, - [SMALL_STATE(4947)] = 183065, - [SMALL_STATE(4948)] = 183089, - [SMALL_STATE(4949)] = 183111, - [SMALL_STATE(4950)] = 183139, - [SMALL_STATE(4951)] = 183167, - [SMALL_STATE(4952)] = 183195, - [SMALL_STATE(4953)] = 183223, - [SMALL_STATE(4954)] = 183251, - [SMALL_STATE(4955)] = 183279, - [SMALL_STATE(4956)] = 183307, - [SMALL_STATE(4957)] = 183335, - [SMALL_STATE(4958)] = 183363, - [SMALL_STATE(4959)] = 183391, - [SMALL_STATE(4960)] = 183419, - [SMALL_STATE(4961)] = 183447, - [SMALL_STATE(4962)] = 183485, - [SMALL_STATE(4963)] = 183509, - [SMALL_STATE(4964)] = 183533, - [SMALL_STATE(4965)] = 183557, - [SMALL_STATE(4966)] = 183581, - [SMALL_STATE(4967)] = 183605, - [SMALL_STATE(4968)] = 183629, - [SMALL_STATE(4969)] = 183653, - [SMALL_STATE(4970)] = 183677, - [SMALL_STATE(4971)] = 183701, - [SMALL_STATE(4972)] = 183725, - [SMALL_STATE(4973)] = 183749, - [SMALL_STATE(4974)] = 183773, - [SMALL_STATE(4975)] = 183797, - [SMALL_STATE(4976)] = 183821, - [SMALL_STATE(4977)] = 183845, - [SMALL_STATE(4978)] = 183869, - [SMALL_STATE(4979)] = 183893, - [SMALL_STATE(4980)] = 183917, - [SMALL_STATE(4981)] = 183939, - [SMALL_STATE(4982)] = 183963, - [SMALL_STATE(4983)] = 183987, - [SMALL_STATE(4984)] = 184011, - [SMALL_STATE(4985)] = 184033, - [SMALL_STATE(4986)] = 184057, - [SMALL_STATE(4987)] = 184081, - [SMALL_STATE(4988)] = 184105, - [SMALL_STATE(4989)] = 184129, - [SMALL_STATE(4990)] = 184153, - [SMALL_STATE(4991)] = 184177, - [SMALL_STATE(4992)] = 184201, - [SMALL_STATE(4993)] = 184225, - [SMALL_STATE(4994)] = 184249, - [SMALL_STATE(4995)] = 184273, - [SMALL_STATE(4996)] = 184319, - [SMALL_STATE(4997)] = 184341, - [SMALL_STATE(4998)] = 184365, - [SMALL_STATE(4999)] = 184389, - [SMALL_STATE(5000)] = 184413, - [SMALL_STATE(5001)] = 184437, - [SMALL_STATE(5002)] = 184483, - [SMALL_STATE(5003)] = 184507, - [SMALL_STATE(5004)] = 184533, - [SMALL_STATE(5005)] = 184557, - [SMALL_STATE(5006)] = 184583, - [SMALL_STATE(5007)] = 184604, - [SMALL_STATE(5008)] = 184625, - [SMALL_STATE(5009)] = 184646, - [SMALL_STATE(5010)] = 184667, - [SMALL_STATE(5011)] = 184690, - [SMALL_STATE(5012)] = 184711, - [SMALL_STATE(5013)] = 184734, - [SMALL_STATE(5014)] = 184757, - [SMALL_STATE(5015)] = 184778, - [SMALL_STATE(5016)] = 184799, - [SMALL_STATE(5017)] = 184820, - [SMALL_STATE(5018)] = 184843, - [SMALL_STATE(5019)] = 184864, - [SMALL_STATE(5020)] = 184885, - [SMALL_STATE(5021)] = 184926, - [SMALL_STATE(5022)] = 184947, - [SMALL_STATE(5023)] = 184970, - [SMALL_STATE(5024)] = 184991, - [SMALL_STATE(5025)] = 185014, - [SMALL_STATE(5026)] = 185055, - [SMALL_STATE(5027)] = 185076, - [SMALL_STATE(5028)] = 185097, - [SMALL_STATE(5029)] = 185118, - [SMALL_STATE(5030)] = 185139, - [SMALL_STATE(5031)] = 185162, - [SMALL_STATE(5032)] = 185183, - [SMALL_STATE(5033)] = 185204, - [SMALL_STATE(5034)] = 185243, - [SMALL_STATE(5035)] = 185266, - [SMALL_STATE(5036)] = 185289, - [SMALL_STATE(5037)] = 185328, - [SMALL_STATE(5038)] = 185349, - [SMALL_STATE(5039)] = 185370, - [SMALL_STATE(5040)] = 185393, - [SMALL_STATE(5041)] = 185416, - [SMALL_STATE(5042)] = 185457, - [SMALL_STATE(5043)] = 185478, - [SMALL_STATE(5044)] = 185505, - [SMALL_STATE(5045)] = 185526, - [SMALL_STATE(5046)] = 185547, - [SMALL_STATE(5047)] = 185568, - [SMALL_STATE(5048)] = 185589, - [SMALL_STATE(5049)] = 185610, - [SMALL_STATE(5050)] = 185637, - [SMALL_STATE(5051)] = 185676, - [SMALL_STATE(5052)] = 185697, - [SMALL_STATE(5053)] = 185736, - [SMALL_STATE(5054)] = 185759, - [SMALL_STATE(5055)] = 185780, - [SMALL_STATE(5056)] = 185801, - [SMALL_STATE(5057)] = 185822, - [SMALL_STATE(5058)] = 185843, - [SMALL_STATE(5059)] = 185870, - [SMALL_STATE(5060)] = 185897, - [SMALL_STATE(5061)] = 185924, - [SMALL_STATE(5062)] = 185951, - [SMALL_STATE(5063)] = 185978, - [SMALL_STATE(5064)] = 185999, - [SMALL_STATE(5065)] = 186022, - [SMALL_STATE(5066)] = 186059, - [SMALL_STATE(5067)] = 186080, - [SMALL_STATE(5068)] = 186101, - [SMALL_STATE(5069)] = 186124, - [SMALL_STATE(5070)] = 186151, - [SMALL_STATE(5071)] = 186178, - [SMALL_STATE(5072)] = 186205, - [SMALL_STATE(5073)] = 186232, - [SMALL_STATE(5074)] = 186259, - [SMALL_STATE(5075)] = 186282, - [SMALL_STATE(5076)] = 186305, - [SMALL_STATE(5077)] = 186346, - [SMALL_STATE(5078)] = 186373, - [SMALL_STATE(5079)] = 186400, - [SMALL_STATE(5080)] = 186427, - [SMALL_STATE(5081)] = 186454, - [SMALL_STATE(5082)] = 186491, - [SMALL_STATE(5083)] = 186518, - [SMALL_STATE(5084)] = 186555, - [SMALL_STATE(5085)] = 186582, - [SMALL_STATE(5086)] = 186619, - [SMALL_STATE(5087)] = 186656, - [SMALL_STATE(5088)] = 186693, - [SMALL_STATE(5089)] = 186730, - [SMALL_STATE(5090)] = 186769, - [SMALL_STATE(5091)] = 186790, - [SMALL_STATE(5092)] = 186811, - [SMALL_STATE(5093)] = 186838, - [SMALL_STATE(5094)] = 186861, - [SMALL_STATE(5095)] = 186882, - [SMALL_STATE(5096)] = 186903, - [SMALL_STATE(5097)] = 186926, - [SMALL_STATE(5098)] = 186947, - [SMALL_STATE(5099)] = 186968, - [SMALL_STATE(5100)] = 187007, - [SMALL_STATE(5101)] = 187028, - [SMALL_STATE(5102)] = 187069, - [SMALL_STATE(5103)] = 187090, - [SMALL_STATE(5104)] = 187111, - [SMALL_STATE(5105)] = 187152, - [SMALL_STATE(5106)] = 187173, - [SMALL_STATE(5107)] = 187194, - [SMALL_STATE(5108)] = 187215, - [SMALL_STATE(5109)] = 187238, - [SMALL_STATE(5110)] = 187259, - [SMALL_STATE(5111)] = 187282, - [SMALL_STATE(5112)] = 187303, - [SMALL_STATE(5113)] = 187338, - [SMALL_STATE(5114)] = 187373, - [SMALL_STATE(5115)] = 187408, - [SMALL_STATE(5116)] = 187443, - [SMALL_STATE(5117)] = 187466, - [SMALL_STATE(5118)] = 187487, - [SMALL_STATE(5119)] = 187508, - [SMALL_STATE(5120)] = 187529, - [SMALL_STATE(5121)] = 187550, - [SMALL_STATE(5122)] = 187571, - [SMALL_STATE(5123)] = 187594, - [SMALL_STATE(5124)] = 187615, - [SMALL_STATE(5125)] = 187656, - [SMALL_STATE(5126)] = 187679, - [SMALL_STATE(5127)] = 187700, - [SMALL_STATE(5128)] = 187727, - [SMALL_STATE(5129)] = 187748, - [SMALL_STATE(5130)] = 187769, - [SMALL_STATE(5131)] = 187810, - [SMALL_STATE(5132)] = 187831, - [SMALL_STATE(5133)] = 187854, - [SMALL_STATE(5134)] = 187877, - [SMALL_STATE(5135)] = 187900, - [SMALL_STATE(5136)] = 187923, - [SMALL_STATE(5137)] = 187944, - [SMALL_STATE(5138)] = 187965, - [SMALL_STATE(5139)] = 187988, - [SMALL_STATE(5140)] = 188011, - [SMALL_STATE(5141)] = 188032, - [SMALL_STATE(5142)] = 188065, - [SMALL_STATE(5143)] = 188088, - [SMALL_STATE(5144)] = 188125, - [SMALL_STATE(5145)] = 188148, - [SMALL_STATE(5146)] = 188169, - [SMALL_STATE(5147)] = 188190, - [SMALL_STATE(5148)] = 188213, - [SMALL_STATE(5149)] = 188236, - [SMALL_STATE(5150)] = 188257, - [SMALL_STATE(5151)] = 188280, - [SMALL_STATE(5152)] = 188307, - [SMALL_STATE(5153)] = 188330, - [SMALL_STATE(5154)] = 188351, - [SMALL_STATE(5155)] = 188372, - [SMALL_STATE(5156)] = 188393, - [SMALL_STATE(5157)] = 188416, - [SMALL_STATE(5158)] = 188453, - [SMALL_STATE(5159)] = 188490, - [SMALL_STATE(5160)] = 188531, - [SMALL_STATE(5161)] = 188552, - [SMALL_STATE(5162)] = 188575, - [SMALL_STATE(5163)] = 188598, - [SMALL_STATE(5164)] = 188619, - [SMALL_STATE(5165)] = 188658, - [SMALL_STATE(5166)] = 188699, - [SMALL_STATE(5167)] = 188726, - [SMALL_STATE(5168)] = 188747, - [SMALL_STATE(5169)] = 188768, - [SMALL_STATE(5170)] = 188791, - [SMALL_STATE(5171)] = 188814, - [SMALL_STATE(5172)] = 188837, - [SMALL_STATE(5173)] = 188860, - [SMALL_STATE(5174)] = 188881, - [SMALL_STATE(5175)] = 188904, - [SMALL_STATE(5176)] = 188925, - [SMALL_STATE(5177)] = 188952, - [SMALL_STATE(5178)] = 188973, - [SMALL_STATE(5179)] = 188999, - [SMALL_STATE(5180)] = 189033, - [SMALL_STATE(5181)] = 189059, - [SMALL_STATE(5182)] = 189093, - [SMALL_STATE(5183)] = 189125, - [SMALL_STATE(5184)] = 189151, - [SMALL_STATE(5185)] = 189187, - [SMALL_STATE(5186)] = 189217, - [SMALL_STATE(5187)] = 189253, - [SMALL_STATE(5188)] = 189283, - [SMALL_STATE(5189)] = 189313, - [SMALL_STATE(5190)] = 189337, - [SMALL_STATE(5191)] = 189367, - [SMALL_STATE(5192)] = 189397, - [SMALL_STATE(5193)] = 189431, - [SMALL_STATE(5194)] = 189463, - [SMALL_STATE(5195)] = 189497, - [SMALL_STATE(5196)] = 189523, - [SMALL_STATE(5197)] = 189553, - [SMALL_STATE(5198)] = 189583, - [SMALL_STATE(5199)] = 189619, - [SMALL_STATE(5200)] = 189649, - [SMALL_STATE(5201)] = 189679, - [SMALL_STATE(5202)] = 189717, - [SMALL_STATE(5203)] = 189741, - [SMALL_STATE(5204)] = 189765, - [SMALL_STATE(5205)] = 189795, - [SMALL_STATE(5206)] = 189825, - [SMALL_STATE(5207)] = 189849, - [SMALL_STATE(5208)] = 189879, - [SMALL_STATE(5209)] = 189909, - [SMALL_STATE(5210)] = 189939, - [SMALL_STATE(5211)] = 189975, - [SMALL_STATE(5212)] = 189999, - [SMALL_STATE(5213)] = 190029, - [SMALL_STATE(5214)] = 190065, - [SMALL_STATE(5215)] = 190103, - [SMALL_STATE(5216)] = 190129, - [SMALL_STATE(5217)] = 190159, - [SMALL_STATE(5218)] = 190195, - [SMALL_STATE(5219)] = 190221, - [SMALL_STATE(5220)] = 190257, - [SMALL_STATE(5221)] = 190279, - [SMALL_STATE(5222)] = 190309, - [SMALL_STATE(5223)] = 190335, - [SMALL_STATE(5224)] = 190361, - [SMALL_STATE(5225)] = 190391, - [SMALL_STATE(5226)] = 190415, - [SMALL_STATE(5227)] = 190441, - [SMALL_STATE(5228)] = 190473, - [SMALL_STATE(5229)] = 190507, - [SMALL_STATE(5230)] = 190543, - [SMALL_STATE(5231)] = 190569, - [SMALL_STATE(5232)] = 190595, - [SMALL_STATE(5233)] = 190627, - [SMALL_STATE(5234)] = 190651, - [SMALL_STATE(5235)] = 190681, - [SMALL_STATE(5236)] = 190711, - [SMALL_STATE(5237)] = 190747, - [SMALL_STATE(5238)] = 190777, - [SMALL_STATE(5239)] = 190803, - [SMALL_STATE(5240)] = 190833, - [SMALL_STATE(5241)] = 190863, - [SMALL_STATE(5242)] = 190897, - [SMALL_STATE(5243)] = 190925, - [SMALL_STATE(5244)] = 190957, - [SMALL_STATE(5245)] = 190987, - [SMALL_STATE(5246)] = 191013, - [SMALL_STATE(5247)] = 191037, - [SMALL_STATE(5248)] = 191072, - [SMALL_STATE(5249)] = 191103, - [SMALL_STATE(5250)] = 191126, - [SMALL_STATE(5251)] = 191149, - [SMALL_STATE(5252)] = 191174, - [SMALL_STATE(5253)] = 191199, - [SMALL_STATE(5254)] = 191234, - [SMALL_STATE(5255)] = 191269, - [SMALL_STATE(5256)] = 191290, - [SMALL_STATE(5257)] = 191325, - [SMALL_STATE(5258)] = 191350, - [SMALL_STATE(5259)] = 191385, - [SMALL_STATE(5260)] = 191410, - [SMALL_STATE(5261)] = 191431, - [SMALL_STATE(5262)] = 191460, - [SMALL_STATE(5263)] = 191481, - [SMALL_STATE(5264)] = 191508, - [SMALL_STATE(5265)] = 191533, - [SMALL_STATE(5266)] = 191558, - [SMALL_STATE(5267)] = 191593, - [SMALL_STATE(5268)] = 191614, - [SMALL_STATE(5269)] = 191649, - [SMALL_STATE(5270)] = 191684, - [SMALL_STATE(5271)] = 191715, - [SMALL_STATE(5272)] = 191736, - [SMALL_STATE(5273)] = 191771, - [SMALL_STATE(5274)] = 191796, - [SMALL_STATE(5275)] = 191831, - [SMALL_STATE(5276)] = 191866, - [SMALL_STATE(5277)] = 191901, - [SMALL_STATE(5278)] = 191936, - [SMALL_STATE(5279)] = 191971, - [SMALL_STATE(5280)] = 192006, - [SMALL_STATE(5281)] = 192035, - [SMALL_STATE(5282)] = 192068, - [SMALL_STATE(5283)] = 192091, - [SMALL_STATE(5284)] = 192114, - [SMALL_STATE(5285)] = 192143, - [SMALL_STATE(5286)] = 192178, - [SMALL_STATE(5287)] = 192213, - [SMALL_STATE(5288)] = 192246, - [SMALL_STATE(5289)] = 192275, - [SMALL_STATE(5290)] = 192304, - [SMALL_STATE(5291)] = 192333, - [SMALL_STATE(5292)] = 192366, - [SMALL_STATE(5293)] = 192401, - [SMALL_STATE(5294)] = 192436, - [SMALL_STATE(5295)] = 192465, - [SMALL_STATE(5296)] = 192494, - [SMALL_STATE(5297)] = 192523, - [SMALL_STATE(5298)] = 192552, - [SMALL_STATE(5299)] = 192581, - [SMALL_STATE(5300)] = 192610, - [SMALL_STATE(5301)] = 192639, - [SMALL_STATE(5302)] = 192668, - [SMALL_STATE(5303)] = 192697, - [SMALL_STATE(5304)] = 192726, - [SMALL_STATE(5305)] = 192755, - [SMALL_STATE(5306)] = 192784, - [SMALL_STATE(5307)] = 192813, - [SMALL_STATE(5308)] = 192842, - [SMALL_STATE(5309)] = 192871, - [SMALL_STATE(5310)] = 192906, - [SMALL_STATE(5311)] = 192935, - [SMALL_STATE(5312)] = 192970, - [SMALL_STATE(5313)] = 193005, - [SMALL_STATE(5314)] = 193034, - [SMALL_STATE(5315)] = 193063, - [SMALL_STATE(5316)] = 193092, - [SMALL_STATE(5317)] = 193127, - [SMALL_STATE(5318)] = 193162, - [SMALL_STATE(5319)] = 193197, - [SMALL_STATE(5320)] = 193232, - [SMALL_STATE(5321)] = 193265, - [SMALL_STATE(5322)] = 193300, - [SMALL_STATE(5323)] = 193335, - [SMALL_STATE(5324)] = 193368, - [SMALL_STATE(5325)] = 193397, - [SMALL_STATE(5326)] = 193426, - [SMALL_STATE(5327)] = 193459, - [SMALL_STATE(5328)] = 193484, - [SMALL_STATE(5329)] = 193509, - [SMALL_STATE(5330)] = 193538, - [SMALL_STATE(5331)] = 193573, - [SMALL_STATE(5332)] = 193608, - [SMALL_STATE(5333)] = 193641, - [SMALL_STATE(5334)] = 193674, - [SMALL_STATE(5335)] = 193695, - [SMALL_STATE(5336)] = 193716, - [SMALL_STATE(5337)] = 193737, - [SMALL_STATE(5338)] = 193772, - [SMALL_STATE(5339)] = 193807, - [SMALL_STATE(5340)] = 193828, - [SMALL_STATE(5341)] = 193863, - [SMALL_STATE(5342)] = 193898, - [SMALL_STATE(5343)] = 193921, - [SMALL_STATE(5344)] = 193944, - [SMALL_STATE(5345)] = 193967, - [SMALL_STATE(5346)] = 193990, - [SMALL_STATE(5347)] = 194013, - [SMALL_STATE(5348)] = 194034, - [SMALL_STATE(5349)] = 194069, - [SMALL_STATE(5350)] = 194090, - [SMALL_STATE(5351)] = 194111, - [SMALL_STATE(5352)] = 194132, - [SMALL_STATE(5353)] = 194161, - [SMALL_STATE(5354)] = 194192, - [SMALL_STATE(5355)] = 194225, - [SMALL_STATE(5356)] = 194258, - [SMALL_STATE(5357)] = 194287, - [SMALL_STATE(5358)] = 194312, - [SMALL_STATE(5359)] = 194341, - [SMALL_STATE(5360)] = 194365, - [SMALL_STATE(5361)] = 194393, - [SMALL_STATE(5362)] = 194421, - [SMALL_STATE(5363)] = 194449, - [SMALL_STATE(5364)] = 194477, - [SMALL_STATE(5365)] = 194505, - [SMALL_STATE(5366)] = 194533, - [SMALL_STATE(5367)] = 194561, - [SMALL_STATE(5368)] = 194589, - [SMALL_STATE(5369)] = 194617, - [SMALL_STATE(5370)] = 194645, - [SMALL_STATE(5371)] = 194673, - [SMALL_STATE(5372)] = 194701, - [SMALL_STATE(5373)] = 194729, - [SMALL_STATE(5374)] = 194757, - [SMALL_STATE(5375)] = 194777, - [SMALL_STATE(5376)] = 194799, - [SMALL_STATE(5377)] = 194823, - [SMALL_STATE(5378)] = 194843, - [SMALL_STATE(5379)] = 194863, - [SMALL_STATE(5380)] = 194883, - [SMALL_STATE(5381)] = 194903, - [SMALL_STATE(5382)] = 194933, - [SMALL_STATE(5383)] = 194965, - [SMALL_STATE(5384)] = 194993, - [SMALL_STATE(5385)] = 195023, - [SMALL_STATE(5386)] = 195043, - [SMALL_STATE(5387)] = 195073, - [SMALL_STATE(5388)] = 195093, - [SMALL_STATE(5389)] = 195123, - [SMALL_STATE(5390)] = 195153, - [SMALL_STATE(5391)] = 195175, - [SMALL_STATE(5392)] = 195197, - [SMALL_STATE(5393)] = 195229, - [SMALL_STATE(5394)] = 195249, - [SMALL_STATE(5395)] = 195277, - [SMALL_STATE(5396)] = 195301, - [SMALL_STATE(5397)] = 195333, - [SMALL_STATE(5398)] = 195353, - [SMALL_STATE(5399)] = 195373, - [SMALL_STATE(5400)] = 195405, - [SMALL_STATE(5401)] = 195431, - [SMALL_STATE(5402)] = 195461, - [SMALL_STATE(5403)] = 195483, - [SMALL_STATE(5404)] = 195505, - [SMALL_STATE(5405)] = 195531, - [SMALL_STATE(5406)] = 195561, - [SMALL_STATE(5407)] = 195591, - [SMALL_STATE(5408)] = 195621, - [SMALL_STATE(5409)] = 195643, - [SMALL_STATE(5410)] = 195673, - [SMALL_STATE(5411)] = 195703, - [SMALL_STATE(5412)] = 195733, - [SMALL_STATE(5413)] = 195757, - [SMALL_STATE(5414)] = 195777, - [SMALL_STATE(5415)] = 195799, - [SMALL_STATE(5416)] = 195819, - [SMALL_STATE(5417)] = 195845, - [SMALL_STATE(5418)] = 195875, - [SMALL_STATE(5419)] = 195897, - [SMALL_STATE(5420)] = 195927, - [SMALL_STATE(5421)] = 195951, - [SMALL_STATE(5422)] = 195981, - [SMALL_STATE(5423)] = 196011, - [SMALL_STATE(5424)] = 196033, - [SMALL_STATE(5425)] = 196053, - [SMALL_STATE(5426)] = 196083, - [SMALL_STATE(5427)] = 196113, - [SMALL_STATE(5428)] = 196139, - [SMALL_STATE(5429)] = 196163, - [SMALL_STATE(5430)] = 196187, - [SMALL_STATE(5431)] = 196217, - [SMALL_STATE(5432)] = 196241, - [SMALL_STATE(5433)] = 196271, - [SMALL_STATE(5434)] = 196301, - [SMALL_STATE(5435)] = 196331, - [SMALL_STATE(5436)] = 196359, - [SMALL_STATE(5437)] = 196389, - [SMALL_STATE(5438)] = 196419, - [SMALL_STATE(5439)] = 196443, - [SMALL_STATE(5440)] = 196463, - [SMALL_STATE(5441)] = 196493, - [SMALL_STATE(5442)] = 196521, - [SMALL_STATE(5443)] = 196541, - [SMALL_STATE(5444)] = 196571, - [SMALL_STATE(5445)] = 196601, - [SMALL_STATE(5446)] = 196625, - [SMALL_STATE(5447)] = 196645, - [SMALL_STATE(5448)] = 196675, - [SMALL_STATE(5449)] = 196705, - [SMALL_STATE(5450)] = 196735, - [SMALL_STATE(5451)] = 196755, - [SMALL_STATE(5452)] = 196785, - [SMALL_STATE(5453)] = 196805, - [SMALL_STATE(5454)] = 196825, - [SMALL_STATE(5455)] = 196845, - [SMALL_STATE(5456)] = 196875, - [SMALL_STATE(5457)] = 196905, - [SMALL_STATE(5458)] = 196925, - [SMALL_STATE(5459)] = 196953, - [SMALL_STATE(5460)] = 196979, - [SMALL_STATE(5461)] = 197009, - [SMALL_STATE(5462)] = 197039, - [SMALL_STATE(5463)] = 197069, - [SMALL_STATE(5464)] = 197099, - [SMALL_STATE(5465)] = 197119, - [SMALL_STATE(5466)] = 197149, - [SMALL_STATE(5467)] = 197179, - [SMALL_STATE(5468)] = 197207, - [SMALL_STATE(5469)] = 197227, - [SMALL_STATE(5470)] = 197247, - [SMALL_STATE(5471)] = 197277, - [SMALL_STATE(5472)] = 197301, - [SMALL_STATE(5473)] = 197333, - [SMALL_STATE(5474)] = 197363, - [SMALL_STATE(5475)] = 197393, - [SMALL_STATE(5476)] = 197417, - [SMALL_STATE(5477)] = 197449, - [SMALL_STATE(5478)] = 197471, - [SMALL_STATE(5479)] = 197499, - [SMALL_STATE(5480)] = 197527, - [SMALL_STATE(5481)] = 197551, - [SMALL_STATE(5482)] = 197581, - [SMALL_STATE(5483)] = 197605, - [SMALL_STATE(5484)] = 197635, - [SMALL_STATE(5485)] = 197665, - [SMALL_STATE(5486)] = 197695, - [SMALL_STATE(5487)] = 197723, - [SMALL_STATE(5488)] = 197751, - [SMALL_STATE(5489)] = 197781, - [SMALL_STATE(5490)] = 197809, - [SMALL_STATE(5491)] = 197833, - [SMALL_STATE(5492)] = 197863, - [SMALL_STATE(5493)] = 197887, - [SMALL_STATE(5494)] = 197915, - [SMALL_STATE(5495)] = 197943, - [SMALL_STATE(5496)] = 197973, - [SMALL_STATE(5497)] = 198003, - [SMALL_STATE(5498)] = 198033, - [SMALL_STATE(5499)] = 198057, - [SMALL_STATE(5500)] = 198076, - [SMALL_STATE(5501)] = 198105, - [SMALL_STATE(5502)] = 198124, + [SMALL_STATE(4790)] = 178963, + [SMALL_STATE(4791)] = 178992, + [SMALL_STATE(4792)] = 179017, + [SMALL_STATE(4793)] = 179042, + [SMALL_STATE(4794)] = 179067, + [SMALL_STATE(4795)] = 179092, + [SMALL_STATE(4796)] = 179117, + [SMALL_STATE(4797)] = 179142, + [SMALL_STATE(4798)] = 179168, + [SMALL_STATE(4799)] = 179192, + [SMALL_STATE(4800)] = 179216, + [SMALL_STATE(4801)] = 179240, + [SMALL_STATE(4802)] = 179264, + [SMALL_STATE(4803)] = 179288, + [SMALL_STATE(4804)] = 179312, + [SMALL_STATE(4805)] = 179336, + [SMALL_STATE(4806)] = 179360, + [SMALL_STATE(4807)] = 179384, + [SMALL_STATE(4808)] = 179408, + [SMALL_STATE(4809)] = 179430, + [SMALL_STATE(4810)] = 179452, + [SMALL_STATE(4811)] = 179476, + [SMALL_STATE(4812)] = 179500, + [SMALL_STATE(4813)] = 179522, + [SMALL_STATE(4814)] = 179546, + [SMALL_STATE(4815)] = 179588, + [SMALL_STATE(4816)] = 179612, + [SMALL_STATE(4817)] = 179636, + [SMALL_STATE(4818)] = 179674, + [SMALL_STATE(4819)] = 179698, + [SMALL_STATE(4820)] = 179732, + [SMALL_STATE(4821)] = 179756, + [SMALL_STATE(4822)] = 179802, + [SMALL_STATE(4823)] = 179826, + [SMALL_STATE(4824)] = 179852, + [SMALL_STATE(4825)] = 179874, + [SMALL_STATE(4826)] = 179912, + [SMALL_STATE(4827)] = 179936, + [SMALL_STATE(4828)] = 179958, + [SMALL_STATE(4829)] = 180004, + [SMALL_STATE(4830)] = 180028, + [SMALL_STATE(4831)] = 180074, + [SMALL_STATE(4832)] = 180098, + [SMALL_STATE(4833)] = 180122, + [SMALL_STATE(4834)] = 180146, + [SMALL_STATE(4835)] = 180192, + [SMALL_STATE(4836)] = 180216, + [SMALL_STATE(4837)] = 180240, + [SMALL_STATE(4838)] = 180264, + [SMALL_STATE(4839)] = 180286, + [SMALL_STATE(4840)] = 180310, + [SMALL_STATE(4841)] = 180336, + [SMALL_STATE(4842)] = 180362, + [SMALL_STATE(4843)] = 180386, + [SMALL_STATE(4844)] = 180410, + [SMALL_STATE(4845)] = 180456, + [SMALL_STATE(4846)] = 180480, + [SMALL_STATE(4847)] = 180526, + [SMALL_STATE(4848)] = 180550, + [SMALL_STATE(4849)] = 180574, + [SMALL_STATE(4850)] = 180598, + [SMALL_STATE(4851)] = 180622, + [SMALL_STATE(4852)] = 180646, + [SMALL_STATE(4853)] = 180670, + [SMALL_STATE(4854)] = 180694, + [SMALL_STATE(4855)] = 180718, + [SMALL_STATE(4856)] = 180742, + [SMALL_STATE(4857)] = 180766, + [SMALL_STATE(4858)] = 180790, + [SMALL_STATE(4859)] = 180814, + [SMALL_STATE(4860)] = 180840, + [SMALL_STATE(4861)] = 180864, + [SMALL_STATE(4862)] = 180888, + [SMALL_STATE(4863)] = 180910, + [SMALL_STATE(4864)] = 180932, + [SMALL_STATE(4865)] = 180976, + [SMALL_STATE(4866)] = 181020, + [SMALL_STATE(4867)] = 181044, + [SMALL_STATE(4868)] = 181068, + [SMALL_STATE(4869)] = 181092, + [SMALL_STATE(4870)] = 181116, + [SMALL_STATE(4871)] = 181138, + [SMALL_STATE(4872)] = 181160, + [SMALL_STATE(4873)] = 181184, + [SMALL_STATE(4874)] = 181208, + [SMALL_STATE(4875)] = 181230, + [SMALL_STATE(4876)] = 181252, + [SMALL_STATE(4877)] = 181276, + [SMALL_STATE(4878)] = 181300, + [SMALL_STATE(4879)] = 181324, + [SMALL_STATE(4880)] = 181348, + [SMALL_STATE(4881)] = 181394, + [SMALL_STATE(4882)] = 181418, + [SMALL_STATE(4883)] = 181442, + [SMALL_STATE(4884)] = 181466, + [SMALL_STATE(4885)] = 181508, + [SMALL_STATE(4886)] = 181532, + [SMALL_STATE(4887)] = 181578, + [SMALL_STATE(4888)] = 181602, + [SMALL_STATE(4889)] = 181642, + [SMALL_STATE(4890)] = 181666, + [SMALL_STATE(4891)] = 181708, + [SMALL_STATE(4892)] = 181748, + [SMALL_STATE(4893)] = 181772, + [SMALL_STATE(4894)] = 181796, + [SMALL_STATE(4895)] = 181820, + [SMALL_STATE(4896)] = 181844, + [SMALL_STATE(4897)] = 181868, + [SMALL_STATE(4898)] = 181890, + [SMALL_STATE(4899)] = 181914, + [SMALL_STATE(4900)] = 181938, + [SMALL_STATE(4901)] = 181962, + [SMALL_STATE(4902)] = 181986, + [SMALL_STATE(4903)] = 182010, + [SMALL_STATE(4904)] = 182034, + [SMALL_STATE(4905)] = 182056, + [SMALL_STATE(4906)] = 182080, + [SMALL_STATE(4907)] = 182102, + [SMALL_STATE(4908)] = 182128, + [SMALL_STATE(4909)] = 182152, + [SMALL_STATE(4910)] = 182176, + [SMALL_STATE(4911)] = 182200, + [SMALL_STATE(4912)] = 182224, + [SMALL_STATE(4913)] = 182248, + [SMALL_STATE(4914)] = 182272, + [SMALL_STATE(4915)] = 182300, + [SMALL_STATE(4916)] = 182328, + [SMALL_STATE(4917)] = 182356, + [SMALL_STATE(4918)] = 182384, + [SMALL_STATE(4919)] = 182412, + [SMALL_STATE(4920)] = 182440, + [SMALL_STATE(4921)] = 182468, + [SMALL_STATE(4922)] = 182496, + [SMALL_STATE(4923)] = 182524, + [SMALL_STATE(4924)] = 182552, + [SMALL_STATE(4925)] = 182580, + [SMALL_STATE(4926)] = 182608, + [SMALL_STATE(4927)] = 182632, + [SMALL_STATE(4928)] = 182670, + [SMALL_STATE(4929)] = 182694, + [SMALL_STATE(4930)] = 182718, + [SMALL_STATE(4931)] = 182742, + [SMALL_STATE(4932)] = 182766, + [SMALL_STATE(4933)] = 182790, + [SMALL_STATE(4934)] = 182814, + [SMALL_STATE(4935)] = 182838, + [SMALL_STATE(4936)] = 182862, + [SMALL_STATE(4937)] = 182886, + [SMALL_STATE(4938)] = 182910, + [SMALL_STATE(4939)] = 182934, + [SMALL_STATE(4940)] = 182958, + [SMALL_STATE(4941)] = 182982, + [SMALL_STATE(4942)] = 183006, + [SMALL_STATE(4943)] = 183030, + [SMALL_STATE(4944)] = 183052, + [SMALL_STATE(4945)] = 183076, + [SMALL_STATE(4946)] = 183102, + [SMALL_STATE(4947)] = 183126, + [SMALL_STATE(4948)] = 183150, + [SMALL_STATE(4949)] = 183174, + [SMALL_STATE(4950)] = 183198, + [SMALL_STATE(4951)] = 183224, + [SMALL_STATE(4952)] = 183248, + [SMALL_STATE(4953)] = 183272, + [SMALL_STATE(4954)] = 183296, + [SMALL_STATE(4955)] = 183320, + [SMALL_STATE(4956)] = 183344, + [SMALL_STATE(4957)] = 183366, + [SMALL_STATE(4958)] = 183390, + [SMALL_STATE(4959)] = 183414, + [SMALL_STATE(4960)] = 183460, + [SMALL_STATE(4961)] = 183484, + [SMALL_STATE(4962)] = 183506, + [SMALL_STATE(4963)] = 183530, + [SMALL_STATE(4964)] = 183554, + [SMALL_STATE(4965)] = 183578, + [SMALL_STATE(4966)] = 183602, + [SMALL_STATE(4967)] = 183626, + [SMALL_STATE(4968)] = 183650, + [SMALL_STATE(4969)] = 183674, + [SMALL_STATE(4970)] = 183698, + [SMALL_STATE(4971)] = 183722, + [SMALL_STATE(4972)] = 183746, + [SMALL_STATE(4973)] = 183770, + [SMALL_STATE(4974)] = 183816, + [SMALL_STATE(4975)] = 183840, + [SMALL_STATE(4976)] = 183864, + [SMALL_STATE(4977)] = 183886, + [SMALL_STATE(4978)] = 183908, + [SMALL_STATE(4979)] = 183932, + [SMALL_STATE(4980)] = 183954, + [SMALL_STATE(4981)] = 183978, + [SMALL_STATE(4982)] = 184002, + [SMALL_STATE(4983)] = 184024, + [SMALL_STATE(4984)] = 184048, + [SMALL_STATE(4985)] = 184072, + [SMALL_STATE(4986)] = 184096, + [SMALL_STATE(4987)] = 184118, + [SMALL_STATE(4988)] = 184140, + [SMALL_STATE(4989)] = 184164, + [SMALL_STATE(4990)] = 184188, + [SMALL_STATE(4991)] = 184228, + [SMALL_STATE(4992)] = 184252, + [SMALL_STATE(4993)] = 184276, + [SMALL_STATE(4994)] = 184300, + [SMALL_STATE(4995)] = 184324, + [SMALL_STATE(4996)] = 184348, + [SMALL_STATE(4997)] = 184372, + [SMALL_STATE(4998)] = 184396, + [SMALL_STATE(4999)] = 184418, + [SMALL_STATE(5000)] = 184442, + [SMALL_STATE(5001)] = 184466, + [SMALL_STATE(5002)] = 184490, + [SMALL_STATE(5003)] = 184514, + [SMALL_STATE(5004)] = 184538, + [SMALL_STATE(5005)] = 184562, + [SMALL_STATE(5006)] = 184586, + [SMALL_STATE(5007)] = 184610, + [SMALL_STATE(5008)] = 184647, + [SMALL_STATE(5009)] = 184686, + [SMALL_STATE(5010)] = 184709, + [SMALL_STATE(5011)] = 184732, + [SMALL_STATE(5012)] = 184759, + [SMALL_STATE(5013)] = 184786, + [SMALL_STATE(5014)] = 184807, + [SMALL_STATE(5015)] = 184828, + [SMALL_STATE(5016)] = 184849, + [SMALL_STATE(5017)] = 184870, + [SMALL_STATE(5018)] = 184897, + [SMALL_STATE(5019)] = 184936, + [SMALL_STATE(5020)] = 184975, + [SMALL_STATE(5021)] = 185014, + [SMALL_STATE(5022)] = 185035, + [SMALL_STATE(5023)] = 185074, + [SMALL_STATE(5024)] = 185095, + [SMALL_STATE(5025)] = 185116, + [SMALL_STATE(5026)] = 185139, + [SMALL_STATE(5027)] = 185160, + [SMALL_STATE(5028)] = 185183, + [SMALL_STATE(5029)] = 185206, + [SMALL_STATE(5030)] = 185229, + [SMALL_STATE(5031)] = 185252, + [SMALL_STATE(5032)] = 185275, + [SMALL_STATE(5033)] = 185298, + [SMALL_STATE(5034)] = 185321, + [SMALL_STATE(5035)] = 185344, + [SMALL_STATE(5036)] = 185367, + [SMALL_STATE(5037)] = 185390, + [SMALL_STATE(5038)] = 185413, + [SMALL_STATE(5039)] = 185436, + [SMALL_STATE(5040)] = 185459, + [SMALL_STATE(5041)] = 185482, + [SMALL_STATE(5042)] = 185505, + [SMALL_STATE(5043)] = 185528, + [SMALL_STATE(5044)] = 185551, + [SMALL_STATE(5045)] = 185574, + [SMALL_STATE(5046)] = 185597, + [SMALL_STATE(5047)] = 185620, + [SMALL_STATE(5048)] = 185643, + [SMALL_STATE(5049)] = 185664, + [SMALL_STATE(5050)] = 185685, + [SMALL_STATE(5051)] = 185708, + [SMALL_STATE(5052)] = 185731, + [SMALL_STATE(5053)] = 185754, + [SMALL_STATE(5054)] = 185777, + [SMALL_STATE(5055)] = 185800, + [SMALL_STATE(5056)] = 185821, + [SMALL_STATE(5057)] = 185844, + [SMALL_STATE(5058)] = 185871, + [SMALL_STATE(5059)] = 185892, + [SMALL_STATE(5060)] = 185915, + [SMALL_STATE(5061)] = 185936, + [SMALL_STATE(5062)] = 185977, + [SMALL_STATE(5063)] = 186000, + [SMALL_STATE(5064)] = 186021, + [SMALL_STATE(5065)] = 186062, + [SMALL_STATE(5066)] = 186083, + [SMALL_STATE(5067)] = 186104, + [SMALL_STATE(5068)] = 186127, + [SMALL_STATE(5069)] = 186150, + [SMALL_STATE(5070)] = 186173, + [SMALL_STATE(5071)] = 186196, + [SMALL_STATE(5072)] = 186223, + [SMALL_STATE(5073)] = 186246, + [SMALL_STATE(5074)] = 186267, + [SMALL_STATE(5075)] = 186288, + [SMALL_STATE(5076)] = 186309, + [SMALL_STATE(5077)] = 186330, + [SMALL_STATE(5078)] = 186351, + [SMALL_STATE(5079)] = 186372, + [SMALL_STATE(5080)] = 186393, + [SMALL_STATE(5081)] = 186414, + [SMALL_STATE(5082)] = 186441, + [SMALL_STATE(5083)] = 186482, + [SMALL_STATE(5084)] = 186509, + [SMALL_STATE(5085)] = 186530, + [SMALL_STATE(5086)] = 186551, + [SMALL_STATE(5087)] = 186592, + [SMALL_STATE(5088)] = 186613, + [SMALL_STATE(5089)] = 186654, + [SMALL_STATE(5090)] = 186691, + [SMALL_STATE(5091)] = 186732, + [SMALL_STATE(5092)] = 186753, + [SMALL_STATE(5093)] = 186774, + [SMALL_STATE(5094)] = 186795, + [SMALL_STATE(5095)] = 186816, + [SMALL_STATE(5096)] = 186837, + [SMALL_STATE(5097)] = 186860, + [SMALL_STATE(5098)] = 186897, + [SMALL_STATE(5099)] = 186918, + [SMALL_STATE(5100)] = 186939, + [SMALL_STATE(5101)] = 186960, + [SMALL_STATE(5102)] = 186981, + [SMALL_STATE(5103)] = 187002, + [SMALL_STATE(5104)] = 187023, + [SMALL_STATE(5105)] = 187044, + [SMALL_STATE(5106)] = 187065, + [SMALL_STATE(5107)] = 187086, + [SMALL_STATE(5108)] = 187107, + [SMALL_STATE(5109)] = 187128, + [SMALL_STATE(5110)] = 187149, + [SMALL_STATE(5111)] = 187170, + [SMALL_STATE(5112)] = 187191, + [SMALL_STATE(5113)] = 187224, + [SMALL_STATE(5114)] = 187245, + [SMALL_STATE(5115)] = 187266, + [SMALL_STATE(5116)] = 187307, + [SMALL_STATE(5117)] = 187328, + [SMALL_STATE(5118)] = 187349, + [SMALL_STATE(5119)] = 187370, + [SMALL_STATE(5120)] = 187391, + [SMALL_STATE(5121)] = 187412, + [SMALL_STATE(5122)] = 187433, + [SMALL_STATE(5123)] = 187454, + [SMALL_STATE(5124)] = 187475, + [SMALL_STATE(5125)] = 187496, + [SMALL_STATE(5126)] = 187517, + [SMALL_STATE(5127)] = 187538, + [SMALL_STATE(5128)] = 187559, + [SMALL_STATE(5129)] = 187580, + [SMALL_STATE(5130)] = 187601, + [SMALL_STATE(5131)] = 187622, + [SMALL_STATE(5132)] = 187643, + [SMALL_STATE(5133)] = 187664, + [SMALL_STATE(5134)] = 187691, + [SMALL_STATE(5135)] = 187712, + [SMALL_STATE(5136)] = 187733, + [SMALL_STATE(5137)] = 187754, + [SMALL_STATE(5138)] = 187795, + [SMALL_STATE(5139)] = 187818, + [SMALL_STATE(5140)] = 187845, + [SMALL_STATE(5141)] = 187868, + [SMALL_STATE(5142)] = 187907, + [SMALL_STATE(5143)] = 187948, + [SMALL_STATE(5144)] = 187987, + [SMALL_STATE(5145)] = 188014, + [SMALL_STATE(5146)] = 188041, + [SMALL_STATE(5147)] = 188068, + [SMALL_STATE(5148)] = 188095, + [SMALL_STATE(5149)] = 188116, + [SMALL_STATE(5150)] = 188137, + [SMALL_STATE(5151)] = 188164, + [SMALL_STATE(5152)] = 188191, + [SMALL_STATE(5153)] = 188218, + [SMALL_STATE(5154)] = 188245, + [SMALL_STATE(5155)] = 188286, + [SMALL_STATE(5156)] = 188313, + [SMALL_STATE(5157)] = 188340, + [SMALL_STATE(5158)] = 188367, + [SMALL_STATE(5159)] = 188394, + [SMALL_STATE(5160)] = 188431, + [SMALL_STATE(5161)] = 188468, + [SMALL_STATE(5162)] = 188505, + [SMALL_STATE(5163)] = 188542, + [SMALL_STATE(5164)] = 188579, + [SMALL_STATE(5165)] = 188606, + [SMALL_STATE(5166)] = 188633, + [SMALL_STATE(5167)] = 188654, + [SMALL_STATE(5168)] = 188689, + [SMALL_STATE(5169)] = 188724, + [SMALL_STATE(5170)] = 188759, + [SMALL_STATE(5171)] = 188794, + [SMALL_STATE(5172)] = 188815, + [SMALL_STATE(5173)] = 188838, + [SMALL_STATE(5174)] = 188861, + [SMALL_STATE(5175)] = 188884, + [SMALL_STATE(5176)] = 188905, + [SMALL_STATE(5177)] = 188942, + [SMALL_STATE(5178)] = 188979, + [SMALL_STATE(5179)] = 189000, + [SMALL_STATE(5180)] = 189026, + [SMALL_STATE(5181)] = 189056, + [SMALL_STATE(5182)] = 189086, + [SMALL_STATE(5183)] = 189116, + [SMALL_STATE(5184)] = 189146, + [SMALL_STATE(5185)] = 189176, + [SMALL_STATE(5186)] = 189206, + [SMALL_STATE(5187)] = 189236, + [SMALL_STATE(5188)] = 189266, + [SMALL_STATE(5189)] = 189296, + [SMALL_STATE(5190)] = 189326, + [SMALL_STATE(5191)] = 189356, + [SMALL_STATE(5192)] = 189386, + [SMALL_STATE(5193)] = 189416, + [SMALL_STATE(5194)] = 189446, + [SMALL_STATE(5195)] = 189476, + [SMALL_STATE(5196)] = 189506, + [SMALL_STATE(5197)] = 189538, + [SMALL_STATE(5198)] = 189568, + [SMALL_STATE(5199)] = 189604, + [SMALL_STATE(5200)] = 189634, + [SMALL_STATE(5201)] = 189658, + [SMALL_STATE(5202)] = 189688, + [SMALL_STATE(5203)] = 189718, + [SMALL_STATE(5204)] = 189748, + [SMALL_STATE(5205)] = 189778, + [SMALL_STATE(5206)] = 189808, + [SMALL_STATE(5207)] = 189842, + [SMALL_STATE(5208)] = 189874, + [SMALL_STATE(5209)] = 189912, + [SMALL_STATE(5210)] = 189938, + [SMALL_STATE(5211)] = 189974, + [SMALL_STATE(5212)] = 190006, + [SMALL_STATE(5213)] = 190040, + [SMALL_STATE(5214)] = 190064, + [SMALL_STATE(5215)] = 190090, + [SMALL_STATE(5216)] = 190120, + [SMALL_STATE(5217)] = 190156, + [SMALL_STATE(5218)] = 190182, + [SMALL_STATE(5219)] = 190210, + [SMALL_STATE(5220)] = 190236, + [SMALL_STATE(5221)] = 190268, + [SMALL_STATE(5222)] = 190302, + [SMALL_STATE(5223)] = 190326, + [SMALL_STATE(5224)] = 190360, + [SMALL_STATE(5225)] = 190394, + [SMALL_STATE(5226)] = 190430, + [SMALL_STATE(5227)] = 190452, + [SMALL_STATE(5228)] = 190490, + [SMALL_STATE(5229)] = 190526, + [SMALL_STATE(5230)] = 190550, + [SMALL_STATE(5231)] = 190574, + [SMALL_STATE(5232)] = 190598, + [SMALL_STATE(5233)] = 190634, + [SMALL_STATE(5234)] = 190666, + [SMALL_STATE(5235)] = 190690, + [SMALL_STATE(5236)] = 190716, + [SMALL_STATE(5237)] = 190740, + [SMALL_STATE(5238)] = 190776, + [SMALL_STATE(5239)] = 190812, + [SMALL_STATE(5240)] = 190838, + [SMALL_STATE(5241)] = 190864, + [SMALL_STATE(5242)] = 190890, + [SMALL_STATE(5243)] = 190916, + [SMALL_STATE(5244)] = 190942, + [SMALL_STATE(5245)] = 190978, + [SMALL_STATE(5246)] = 191012, + [SMALL_STATE(5247)] = 191038, + [SMALL_STATE(5248)] = 191064, + [SMALL_STATE(5249)] = 191099, + [SMALL_STATE(5250)] = 191122, + [SMALL_STATE(5251)] = 191143, + [SMALL_STATE(5252)] = 191166, + [SMALL_STATE(5253)] = 191187, + [SMALL_STATE(5254)] = 191222, + [SMALL_STATE(5255)] = 191247, + [SMALL_STATE(5256)] = 191278, + [SMALL_STATE(5257)] = 191307, + [SMALL_STATE(5258)] = 191332, + [SMALL_STATE(5259)] = 191365, + [SMALL_STATE(5260)] = 191400, + [SMALL_STATE(5261)] = 191435, + [SMALL_STATE(5262)] = 191470, + [SMALL_STATE(5263)] = 191501, + [SMALL_STATE(5264)] = 191536, + [SMALL_STATE(5265)] = 191571, + [SMALL_STATE(5266)] = 191606, + [SMALL_STATE(5267)] = 191641, + [SMALL_STATE(5268)] = 191670, + [SMALL_STATE(5269)] = 191695, + [SMALL_STATE(5270)] = 191724, + [SMALL_STATE(5271)] = 191759, + [SMALL_STATE(5272)] = 191794, + [SMALL_STATE(5273)] = 191827, + [SMALL_STATE(5274)] = 191848, + [SMALL_STATE(5275)] = 191877, + [SMALL_STATE(5276)] = 191912, + [SMALL_STATE(5277)] = 191947, + [SMALL_STATE(5278)] = 191982, + [SMALL_STATE(5279)] = 192015, + [SMALL_STATE(5280)] = 192050, + [SMALL_STATE(5281)] = 192085, + [SMALL_STATE(5282)] = 192120, + [SMALL_STATE(5283)] = 192155, + [SMALL_STATE(5284)] = 192188, + [SMALL_STATE(5285)] = 192217, + [SMALL_STATE(5286)] = 192246, + [SMALL_STATE(5287)] = 192269, + [SMALL_STATE(5288)] = 192292, + [SMALL_STATE(5289)] = 192321, + [SMALL_STATE(5290)] = 192356, + [SMALL_STATE(5291)] = 192377, + [SMALL_STATE(5292)] = 192406, + [SMALL_STATE(5293)] = 192429, + [SMALL_STATE(5294)] = 192464, + [SMALL_STATE(5295)] = 192493, + [SMALL_STATE(5296)] = 192528, + [SMALL_STATE(5297)] = 192557, + [SMALL_STATE(5298)] = 192586, + [SMALL_STATE(5299)] = 192615, + [SMALL_STATE(5300)] = 192644, + [SMALL_STATE(5301)] = 192673, + [SMALL_STATE(5302)] = 192702, + [SMALL_STATE(5303)] = 192731, + [SMALL_STATE(5304)] = 192760, + [SMALL_STATE(5305)] = 192783, + [SMALL_STATE(5306)] = 192812, + [SMALL_STATE(5307)] = 192841, + [SMALL_STATE(5308)] = 192870, + [SMALL_STATE(5309)] = 192899, + [SMALL_STATE(5310)] = 192928, + [SMALL_STATE(5311)] = 192957, + [SMALL_STATE(5312)] = 192986, + [SMALL_STATE(5313)] = 193015, + [SMALL_STATE(5314)] = 193050, + [SMALL_STATE(5315)] = 193085, + [SMALL_STATE(5316)] = 193118, + [SMALL_STATE(5317)] = 193151, + [SMALL_STATE(5318)] = 193184, + [SMALL_STATE(5319)] = 193205, + [SMALL_STATE(5320)] = 193234, + [SMALL_STATE(5321)] = 193269, + [SMALL_STATE(5322)] = 193304, + [SMALL_STATE(5323)] = 193339, + [SMALL_STATE(5324)] = 193374, + [SMALL_STATE(5325)] = 193395, + [SMALL_STATE(5326)] = 193418, + [SMALL_STATE(5327)] = 193443, + [SMALL_STATE(5328)] = 193468, + [SMALL_STATE(5329)] = 193503, + [SMALL_STATE(5330)] = 193528, + [SMALL_STATE(5331)] = 193555, + [SMALL_STATE(5332)] = 193590, + [SMALL_STATE(5333)] = 193625, + [SMALL_STATE(5334)] = 193658, + [SMALL_STATE(5335)] = 193683, + [SMALL_STATE(5336)] = 193704, + [SMALL_STATE(5337)] = 193735, + [SMALL_STATE(5338)] = 193760, + [SMALL_STATE(5339)] = 193795, + [SMALL_STATE(5340)] = 193830, + [SMALL_STATE(5341)] = 193859, + [SMALL_STATE(5342)] = 193884, + [SMALL_STATE(5343)] = 193905, + [SMALL_STATE(5344)] = 193926, + [SMALL_STATE(5345)] = 193961, + [SMALL_STATE(5346)] = 193982, + [SMALL_STATE(5347)] = 194011, + [SMALL_STATE(5348)] = 194032, + [SMALL_STATE(5349)] = 194065, + [SMALL_STATE(5350)] = 194094, + [SMALL_STATE(5351)] = 194127, + [SMALL_STATE(5352)] = 194162, + [SMALL_STATE(5353)] = 194183, + [SMALL_STATE(5354)] = 194218, + [SMALL_STATE(5355)] = 194239, + [SMALL_STATE(5356)] = 194268, + [SMALL_STATE(5357)] = 194291, + [SMALL_STATE(5358)] = 194316, + [SMALL_STATE(5359)] = 194339, + [SMALL_STATE(5360)] = 194368, + [SMALL_STATE(5361)] = 194398, + [SMALL_STATE(5362)] = 194418, + [SMALL_STATE(5363)] = 194440, + [SMALL_STATE(5364)] = 194470, + [SMALL_STATE(5365)] = 194500, + [SMALL_STATE(5366)] = 194526, + [SMALL_STATE(5367)] = 194556, + [SMALL_STATE(5368)] = 194586, + [SMALL_STATE(5369)] = 194616, + [SMALL_STATE(5370)] = 194640, + [SMALL_STATE(5371)] = 194670, + [SMALL_STATE(5372)] = 194700, + [SMALL_STATE(5373)] = 194724, + [SMALL_STATE(5374)] = 194754, + [SMALL_STATE(5375)] = 194784, + [SMALL_STATE(5376)] = 194812, + [SMALL_STATE(5377)] = 194838, + [SMALL_STATE(5378)] = 194870, + [SMALL_STATE(5379)] = 194900, + [SMALL_STATE(5380)] = 194930, + [SMALL_STATE(5381)] = 194952, + [SMALL_STATE(5382)] = 194982, + [SMALL_STATE(5383)] = 195010, + [SMALL_STATE(5384)] = 195040, + [SMALL_STATE(5385)] = 195070, + [SMALL_STATE(5386)] = 195100, + [SMALL_STATE(5387)] = 195130, + [SMALL_STATE(5388)] = 195160, + [SMALL_STATE(5389)] = 195190, + [SMALL_STATE(5390)] = 195222, + [SMALL_STATE(5391)] = 195242, + [SMALL_STATE(5392)] = 195272, + [SMALL_STATE(5393)] = 195302, + [SMALL_STATE(5394)] = 195332, + [SMALL_STATE(5395)] = 195362, + [SMALL_STATE(5396)] = 195392, + [SMALL_STATE(5397)] = 195412, + [SMALL_STATE(5398)] = 195442, + [SMALL_STATE(5399)] = 195472, + [SMALL_STATE(5400)] = 195502, + [SMALL_STATE(5401)] = 195532, + [SMALL_STATE(5402)] = 195552, + [SMALL_STATE(5403)] = 195582, + [SMALL_STATE(5404)] = 195612, + [SMALL_STATE(5405)] = 195640, + [SMALL_STATE(5406)] = 195664, + [SMALL_STATE(5407)] = 195684, + [SMALL_STATE(5408)] = 195708, + [SMALL_STATE(5409)] = 195740, + [SMALL_STATE(5410)] = 195762, + [SMALL_STATE(5411)] = 195790, + [SMALL_STATE(5412)] = 195822, + [SMALL_STATE(5413)] = 195842, + [SMALL_STATE(5414)] = 195866, + [SMALL_STATE(5415)] = 195886, + [SMALL_STATE(5416)] = 195908, + [SMALL_STATE(5417)] = 195938, + [SMALL_STATE(5418)] = 195966, + [SMALL_STATE(5419)] = 195990, + [SMALL_STATE(5420)] = 196010, + [SMALL_STATE(5421)] = 196032, + [SMALL_STATE(5422)] = 196062, + [SMALL_STATE(5423)] = 196084, + [SMALL_STATE(5424)] = 196108, + [SMALL_STATE(5425)] = 196134, + [SMALL_STATE(5426)] = 196164, + [SMALL_STATE(5427)] = 196186, + [SMALL_STATE(5428)] = 196214, + [SMALL_STATE(5429)] = 196244, + [SMALL_STATE(5430)] = 196268, + [SMALL_STATE(5431)] = 196296, + [SMALL_STATE(5432)] = 196324, + [SMALL_STATE(5433)] = 196348, + [SMALL_STATE(5434)] = 196372, + [SMALL_STATE(5435)] = 196392, + [SMALL_STATE(5436)] = 196424, + [SMALL_STATE(5437)] = 196452, + [SMALL_STATE(5438)] = 196472, + [SMALL_STATE(5439)] = 196502, + [SMALL_STATE(5440)] = 196524, + [SMALL_STATE(5441)] = 196546, + [SMALL_STATE(5442)] = 196576, + [SMALL_STATE(5443)] = 196604, + [SMALL_STATE(5444)] = 196628, + [SMALL_STATE(5445)] = 196658, + [SMALL_STATE(5446)] = 196682, + [SMALL_STATE(5447)] = 196712, + [SMALL_STATE(5448)] = 196742, + [SMALL_STATE(5449)] = 196772, + [SMALL_STATE(5450)] = 196802, + [SMALL_STATE(5451)] = 196828, + [SMALL_STATE(5452)] = 196856, + [SMALL_STATE(5453)] = 196884, + [SMALL_STATE(5454)] = 196912, + [SMALL_STATE(5455)] = 196940, + [SMALL_STATE(5456)] = 196970, + [SMALL_STATE(5457)] = 196996, + [SMALL_STATE(5458)] = 197020, + [SMALL_STATE(5459)] = 197040, + [SMALL_STATE(5460)] = 197068, + [SMALL_STATE(5461)] = 197098, + [SMALL_STATE(5462)] = 197118, + [SMALL_STATE(5463)] = 197142, + [SMALL_STATE(5464)] = 197166, + [SMALL_STATE(5465)] = 197196, + [SMALL_STATE(5466)] = 197226, + [SMALL_STATE(5467)] = 197256, + [SMALL_STATE(5468)] = 197286, + [SMALL_STATE(5469)] = 197306, + [SMALL_STATE(5470)] = 197334, + [SMALL_STATE(5471)] = 197364, + [SMALL_STATE(5472)] = 197394, + [SMALL_STATE(5473)] = 197424, + [SMALL_STATE(5474)] = 197446, + [SMALL_STATE(5475)] = 197466, + [SMALL_STATE(5476)] = 197486, + [SMALL_STATE(5477)] = 197506, + [SMALL_STATE(5478)] = 197526, + [SMALL_STATE(5479)] = 197554, + [SMALL_STATE(5480)] = 197578, + [SMALL_STATE(5481)] = 197606, + [SMALL_STATE(5482)] = 197626, + [SMALL_STATE(5483)] = 197654, + [SMALL_STATE(5484)] = 197682, + [SMALL_STATE(5485)] = 197710, + [SMALL_STATE(5486)] = 197730, + [SMALL_STATE(5487)] = 197750, + [SMALL_STATE(5488)] = 197778, + [SMALL_STATE(5489)] = 197798, + [SMALL_STATE(5490)] = 197826, + [SMALL_STATE(5491)] = 197854, + [SMALL_STATE(5492)] = 197884, + [SMALL_STATE(5493)] = 197912, + [SMALL_STATE(5494)] = 197940, + [SMALL_STATE(5495)] = 197960, + [SMALL_STATE(5496)] = 197980, + [SMALL_STATE(5497)] = 198008, + [SMALL_STATE(5498)] = 198028, + [SMALL_STATE(5499)] = 198060, + [SMALL_STATE(5500)] = 198084, + [SMALL_STATE(5501)] = 198101, + [SMALL_STATE(5502)] = 198122, [SMALL_STATE(5503)] = 198143, - [SMALL_STATE(5504)] = 198162, - [SMALL_STATE(5505)] = 198181, - [SMALL_STATE(5506)] = 198200, - [SMALL_STATE(5507)] = 198227, - [SMALL_STATE(5508)] = 198246, - [SMALL_STATE(5509)] = 198265, - [SMALL_STATE(5510)] = 198286, - [SMALL_STATE(5511)] = 198305, - [SMALL_STATE(5512)] = 198334, - [SMALL_STATE(5513)] = 198355, - [SMALL_STATE(5514)] = 198376, - [SMALL_STATE(5515)] = 198395, - [SMALL_STATE(5516)] = 198414, - [SMALL_STATE(5517)] = 198433, - [SMALL_STATE(5518)] = 198452, - [SMALL_STATE(5519)] = 198473, - [SMALL_STATE(5520)] = 198492, - [SMALL_STATE(5521)] = 198511, - [SMALL_STATE(5522)] = 198538, - [SMALL_STATE(5523)] = 198555, - [SMALL_STATE(5524)] = 198574, - [SMALL_STATE(5525)] = 198593, - [SMALL_STATE(5526)] = 198614, - [SMALL_STATE(5527)] = 198637, - [SMALL_STATE(5528)] = 198658, - [SMALL_STATE(5529)] = 198677, - [SMALL_STATE(5530)] = 198698, - [SMALL_STATE(5531)] = 198725, - [SMALL_STATE(5532)] = 198746, - [SMALL_STATE(5533)] = 198773, - [SMALL_STATE(5534)] = 198800, - [SMALL_STATE(5535)] = 198819, - [SMALL_STATE(5536)] = 198838, - [SMALL_STATE(5537)] = 198855, + [SMALL_STATE(5504)] = 198164, + [SMALL_STATE(5505)] = 198191, + [SMALL_STATE(5506)] = 198218, + [SMALL_STATE(5507)] = 198241, + [SMALL_STATE(5508)] = 198262, + [SMALL_STATE(5509)] = 198291, + [SMALL_STATE(5510)] = 198312, + [SMALL_STATE(5511)] = 198333, + [SMALL_STATE(5512)] = 198352, + [SMALL_STATE(5513)] = 198373, + [SMALL_STATE(5514)] = 198398, + [SMALL_STATE(5515)] = 198419, + [SMALL_STATE(5516)] = 198438, + [SMALL_STATE(5517)] = 198461, + [SMALL_STATE(5518)] = 198478, + [SMALL_STATE(5519)] = 198497, + [SMALL_STATE(5520)] = 198516, + [SMALL_STATE(5521)] = 198535, + [SMALL_STATE(5522)] = 198554, + [SMALL_STATE(5523)] = 198573, + [SMALL_STATE(5524)] = 198592, + [SMALL_STATE(5525)] = 198611, + [SMALL_STATE(5526)] = 198636, + [SMALL_STATE(5527)] = 198655, + [SMALL_STATE(5528)] = 198684, + [SMALL_STATE(5529)] = 198705, + [SMALL_STATE(5530)] = 198726, + [SMALL_STATE(5531)] = 198747, + [SMALL_STATE(5532)] = 198768, + [SMALL_STATE(5533)] = 198787, + [SMALL_STATE(5534)] = 198806, + [SMALL_STATE(5535)] = 198825, + [SMALL_STATE(5536)] = 198844, + [SMALL_STATE(5537)] = 198865, [SMALL_STATE(5538)] = 198882, - [SMALL_STATE(5539)] = 198911, - [SMALL_STATE(5540)] = 198928, - [SMALL_STATE(5541)] = 198955, - [SMALL_STATE(5542)] = 198972, - [SMALL_STATE(5543)] = 198991, - [SMALL_STATE(5544)] = 199008, - [SMALL_STATE(5545)] = 199035, - [SMALL_STATE(5546)] = 199058, - [SMALL_STATE(5547)] = 199075, - [SMALL_STATE(5548)] = 199098, - [SMALL_STATE(5549)] = 199117, - [SMALL_STATE(5550)] = 199144, - [SMALL_STATE(5551)] = 199163, - [SMALL_STATE(5552)] = 199180, - [SMALL_STATE(5553)] = 199197, - [SMALL_STATE(5554)] = 199214, - [SMALL_STATE(5555)] = 199241, - [SMALL_STATE(5556)] = 199258, - [SMALL_STATE(5557)] = 199275, - [SMALL_STATE(5558)] = 199302, - [SMALL_STATE(5559)] = 199329, - [SMALL_STATE(5560)] = 199346, - [SMALL_STATE(5561)] = 199373, - [SMALL_STATE(5562)] = 199400, - [SMALL_STATE(5563)] = 199423, - [SMALL_STATE(5564)] = 199444, - [SMALL_STATE(5565)] = 199465, - [SMALL_STATE(5566)] = 199492, - [SMALL_STATE(5567)] = 199519, - [SMALL_STATE(5568)] = 199546, - [SMALL_STATE(5569)] = 199573, - [SMALL_STATE(5570)] = 199592, - [SMALL_STATE(5571)] = 199619, - [SMALL_STATE(5572)] = 199640, - [SMALL_STATE(5573)] = 199661, - [SMALL_STATE(5574)] = 199688, - [SMALL_STATE(5575)] = 199715, - [SMALL_STATE(5576)] = 199742, - [SMALL_STATE(5577)] = 199769, - [SMALL_STATE(5578)] = 199796, - [SMALL_STATE(5579)] = 199823, - [SMALL_STATE(5580)] = 199850, - [SMALL_STATE(5581)] = 199877, - [SMALL_STATE(5582)] = 199904, - [SMALL_STATE(5583)] = 199931, - [SMALL_STATE(5584)] = 199958, - [SMALL_STATE(5585)] = 199985, - [SMALL_STATE(5586)] = 200012, - [SMALL_STATE(5587)] = 200039, - [SMALL_STATE(5588)] = 200066, - [SMALL_STATE(5589)] = 200093, - [SMALL_STATE(5590)] = 200120, - [SMALL_STATE(5591)] = 200147, - [SMALL_STATE(5592)] = 200174, - [SMALL_STATE(5593)] = 200201, - [SMALL_STATE(5594)] = 200228, - [SMALL_STATE(5595)] = 200255, - [SMALL_STATE(5596)] = 200282, - [SMALL_STATE(5597)] = 200309, - [SMALL_STATE(5598)] = 200336, - [SMALL_STATE(5599)] = 200357, - [SMALL_STATE(5600)] = 200376, - [SMALL_STATE(5601)] = 200395, - [SMALL_STATE(5602)] = 200416, - [SMALL_STATE(5603)] = 200445, - [SMALL_STATE(5604)] = 200464, - [SMALL_STATE(5605)] = 200491, + [SMALL_STATE(5539)] = 198899, + [SMALL_STATE(5540)] = 198926, + [SMALL_STATE(5541)] = 198943, + [SMALL_STATE(5542)] = 198960, + [SMALL_STATE(5543)] = 198977, + [SMALL_STATE(5544)] = 199000, + [SMALL_STATE(5545)] = 199017, + [SMALL_STATE(5546)] = 199044, + [SMALL_STATE(5547)] = 199071, + [SMALL_STATE(5548)] = 199094, + [SMALL_STATE(5549)] = 199121, + [SMALL_STATE(5550)] = 199140, + [SMALL_STATE(5551)] = 199159, + [SMALL_STATE(5552)] = 199186, + [SMALL_STATE(5553)] = 199207, + [SMALL_STATE(5554)] = 199234, + [SMALL_STATE(5555)] = 199253, + [SMALL_STATE(5556)] = 199274, + [SMALL_STATE(5557)] = 199301, + [SMALL_STATE(5558)] = 199320, + [SMALL_STATE(5559)] = 199339, + [SMALL_STATE(5560)] = 199366, + [SMALL_STATE(5561)] = 199393, + [SMALL_STATE(5562)] = 199420, + [SMALL_STATE(5563)] = 199443, + [SMALL_STATE(5564)] = 199462, + [SMALL_STATE(5565)] = 199489, + [SMALL_STATE(5566)] = 199516, + [SMALL_STATE(5567)] = 199535, + [SMALL_STATE(5568)] = 199562, + [SMALL_STATE(5569)] = 199583, + [SMALL_STATE(5570)] = 199610, + [SMALL_STATE(5571)] = 199637, + [SMALL_STATE(5572)] = 199664, + [SMALL_STATE(5573)] = 199691, + [SMALL_STATE(5574)] = 199718, + [SMALL_STATE(5575)] = 199745, + [SMALL_STATE(5576)] = 199772, + [SMALL_STATE(5577)] = 199799, + [SMALL_STATE(5578)] = 199826, + [SMALL_STATE(5579)] = 199853, + [SMALL_STATE(5580)] = 199880, + [SMALL_STATE(5581)] = 199907, + [SMALL_STATE(5582)] = 199934, + [SMALL_STATE(5583)] = 199961, + [SMALL_STATE(5584)] = 199988, + [SMALL_STATE(5585)] = 200015, + [SMALL_STATE(5586)] = 200042, + [SMALL_STATE(5587)] = 200069, + [SMALL_STATE(5588)] = 200096, + [SMALL_STATE(5589)] = 200123, + [SMALL_STATE(5590)] = 200150, + [SMALL_STATE(5591)] = 200177, + [SMALL_STATE(5592)] = 200204, + [SMALL_STATE(5593)] = 200231, + [SMALL_STATE(5594)] = 200258, + [SMALL_STATE(5595)] = 200285, + [SMALL_STATE(5596)] = 200312, + [SMALL_STATE(5597)] = 200339, + [SMALL_STATE(5598)] = 200358, + [SMALL_STATE(5599)] = 200377, + [SMALL_STATE(5600)] = 200404, + [SMALL_STATE(5601)] = 200423, + [SMALL_STATE(5602)] = 200442, + [SMALL_STATE(5603)] = 200461, + [SMALL_STATE(5604)] = 200480, + [SMALL_STATE(5605)] = 200499, [SMALL_STATE(5606)] = 200518, - [SMALL_STATE(5607)] = 200539, - [SMALL_STATE(5608)] = 200560, - [SMALL_STATE(5609)] = 200579, - [SMALL_STATE(5610)] = 200598, - [SMALL_STATE(5611)] = 200619, - [SMALL_STATE(5612)] = 200644, - [SMALL_STATE(5613)] = 200663, - [SMALL_STATE(5614)] = 200684, - [SMALL_STATE(5615)] = 200705, - [SMALL_STATE(5616)] = 200726, - [SMALL_STATE(5617)] = 200745, - [SMALL_STATE(5618)] = 200766, - [SMALL_STATE(5619)] = 200787, + [SMALL_STATE(5607)] = 200547, + [SMALL_STATE(5608)] = 200566, + [SMALL_STATE(5609)] = 200587, + [SMALL_STATE(5610)] = 200608, + [SMALL_STATE(5611)] = 200629, + [SMALL_STATE(5612)] = 200648, + [SMALL_STATE(5613)] = 200669, + [SMALL_STATE(5614)] = 200690, + [SMALL_STATE(5615)] = 200711, + [SMALL_STATE(5616)] = 200730, + [SMALL_STATE(5617)] = 200749, + [SMALL_STATE(5618)] = 200770, + [SMALL_STATE(5619)] = 200797, [SMALL_STATE(5620)] = 200814, [SMALL_STATE(5621)] = 200833, - [SMALL_STATE(5622)] = 200854, - [SMALL_STATE(5623)] = 200873, - [SMALL_STATE(5624)] = 200898, - [SMALL_STATE(5625)] = 200917, - [SMALL_STATE(5626)] = 200936, - [SMALL_STATE(5627)] = 200955, - [SMALL_STATE(5628)] = 200978, - [SMALL_STATE(5629)] = 200999, - [SMALL_STATE(5630)] = 201018, - [SMALL_STATE(5631)] = 201044, - [SMALL_STATE(5632)] = 201070, - [SMALL_STATE(5633)] = 201092, - [SMALL_STATE(5634)] = 201110, - [SMALL_STATE(5635)] = 201136, - [SMALL_STATE(5636)] = 201156, - [SMALL_STATE(5637)] = 201174, - [SMALL_STATE(5638)] = 201200, - [SMALL_STATE(5639)] = 201226, - [SMALL_STATE(5640)] = 201252, - [SMALL_STATE(5641)] = 201270, - [SMALL_STATE(5642)] = 201288, - [SMALL_STATE(5643)] = 201310, - [SMALL_STATE(5644)] = 201336, - [SMALL_STATE(5645)] = 201362, - [SMALL_STATE(5646)] = 201380, - [SMALL_STATE(5647)] = 201404, - [SMALL_STATE(5648)] = 201422, - [SMALL_STATE(5649)] = 201444, - [SMALL_STATE(5650)] = 201464, - [SMALL_STATE(5651)] = 201484, - [SMALL_STATE(5652)] = 201510, - [SMALL_STATE(5653)] = 201528, - [SMALL_STATE(5654)] = 201546, - [SMALL_STATE(5655)] = 201562, - [SMALL_STATE(5656)] = 201588, - [SMALL_STATE(5657)] = 201606, - [SMALL_STATE(5658)] = 201632, - [SMALL_STATE(5659)] = 201656, - [SMALL_STATE(5660)] = 201682, - [SMALL_STATE(5661)] = 201706, - [SMALL_STATE(5662)] = 201734, - [SMALL_STATE(5663)] = 201760, - [SMALL_STATE(5664)] = 201778, - [SMALL_STATE(5665)] = 201796, - [SMALL_STATE(5666)] = 201814, - [SMALL_STATE(5667)] = 201832, - [SMALL_STATE(5668)] = 201850, - [SMALL_STATE(5669)] = 201874, - [SMALL_STATE(5670)] = 201890, - [SMALL_STATE(5671)] = 201908, - [SMALL_STATE(5672)] = 201934, - [SMALL_STATE(5673)] = 201950, - [SMALL_STATE(5674)] = 201970, - [SMALL_STATE(5675)] = 201990, - [SMALL_STATE(5676)] = 202008, - [SMALL_STATE(5677)] = 202026, - [SMALL_STATE(5678)] = 202044, - [SMALL_STATE(5679)] = 202070, - [SMALL_STATE(5680)] = 202096, - [SMALL_STATE(5681)] = 202122, - [SMALL_STATE(5682)] = 202148, - [SMALL_STATE(5683)] = 202176, - [SMALL_STATE(5684)] = 202202, - [SMALL_STATE(5685)] = 202228, - [SMALL_STATE(5686)] = 202254, - [SMALL_STATE(5687)] = 202272, - [SMALL_STATE(5688)] = 202292, - [SMALL_STATE(5689)] = 202318, - [SMALL_STATE(5690)] = 202338, - [SMALL_STATE(5691)] = 202358, - [SMALL_STATE(5692)] = 202376, - [SMALL_STATE(5693)] = 202402, - [SMALL_STATE(5694)] = 202424, - [SMALL_STATE(5695)] = 202450, - [SMALL_STATE(5696)] = 202476, - [SMALL_STATE(5697)] = 202502, - [SMALL_STATE(5698)] = 202528, - [SMALL_STATE(5699)] = 202554, - [SMALL_STATE(5700)] = 202574, - [SMALL_STATE(5701)] = 202592, - [SMALL_STATE(5702)] = 202618, - [SMALL_STATE(5703)] = 202638, - [SMALL_STATE(5704)] = 202664, - [SMALL_STATE(5705)] = 202680, - [SMALL_STATE(5706)] = 202706, - [SMALL_STATE(5707)] = 202732, - [SMALL_STATE(5708)] = 202758, - [SMALL_STATE(5709)] = 202776, - [SMALL_STATE(5710)] = 202792, - [SMALL_STATE(5711)] = 202810, - [SMALL_STATE(5712)] = 202836, - [SMALL_STATE(5713)] = 202854, - [SMALL_STATE(5714)] = 202880, - [SMALL_STATE(5715)] = 202898, - [SMALL_STATE(5716)] = 202916, - [SMALL_STATE(5717)] = 202936, - [SMALL_STATE(5718)] = 202954, - [SMALL_STATE(5719)] = 202970, - [SMALL_STATE(5720)] = 202986, - [SMALL_STATE(5721)] = 203004, - [SMALL_STATE(5722)] = 203022, - [SMALL_STATE(5723)] = 203048, - [SMALL_STATE(5724)] = 203074, - [SMALL_STATE(5725)] = 203092, - [SMALL_STATE(5726)] = 203118, - [SMALL_STATE(5727)] = 203134, - [SMALL_STATE(5728)] = 203149, - [SMALL_STATE(5729)] = 203174, - [SMALL_STATE(5730)] = 203197, - [SMALL_STATE(5731)] = 203222, - [SMALL_STATE(5732)] = 203247, - [SMALL_STATE(5733)] = 203272, - [SMALL_STATE(5734)] = 203293, - [SMALL_STATE(5735)] = 203318, - [SMALL_STATE(5736)] = 203343, - [SMALL_STATE(5737)] = 203364, - [SMALL_STATE(5738)] = 203383, - [SMALL_STATE(5739)] = 203402, - [SMALL_STATE(5740)] = 203425, - [SMALL_STATE(5741)] = 203450, - [SMALL_STATE(5742)] = 203475, - [SMALL_STATE(5743)] = 203500, - [SMALL_STATE(5744)] = 203521, - [SMALL_STATE(5745)] = 203542, - [SMALL_STATE(5746)] = 203565, - [SMALL_STATE(5747)] = 203588, - [SMALL_STATE(5748)] = 203613, - [SMALL_STATE(5749)] = 203638, - [SMALL_STATE(5750)] = 203663, - [SMALL_STATE(5751)] = 203682, - [SMALL_STATE(5752)] = 203705, - [SMALL_STATE(5753)] = 203724, - [SMALL_STATE(5754)] = 203747, - [SMALL_STATE(5755)] = 203770, - [SMALL_STATE(5756)] = 203787, - [SMALL_STATE(5757)] = 203808, - [SMALL_STATE(5758)] = 203823, - [SMALL_STATE(5759)] = 203848, - [SMALL_STATE(5760)] = 203865, - [SMALL_STATE(5761)] = 203890, - [SMALL_STATE(5762)] = 203915, - [SMALL_STATE(5763)] = 203940, - [SMALL_STATE(5764)] = 203965, - [SMALL_STATE(5765)] = 203986, - [SMALL_STATE(5766)] = 204007, - [SMALL_STATE(5767)] = 204032, - [SMALL_STATE(5768)] = 204053, - [SMALL_STATE(5769)] = 204068, - [SMALL_STATE(5770)] = 204093, - [SMALL_STATE(5771)] = 204118, - [SMALL_STATE(5772)] = 204143, - [SMALL_STATE(5773)] = 204160, - [SMALL_STATE(5774)] = 204183, - [SMALL_STATE(5775)] = 204208, - [SMALL_STATE(5776)] = 204227, - [SMALL_STATE(5777)] = 204252, - [SMALL_STATE(5778)] = 204277, - [SMALL_STATE(5779)] = 204302, - [SMALL_STATE(5780)] = 204327, - [SMALL_STATE(5781)] = 204352, - [SMALL_STATE(5782)] = 204377, - [SMALL_STATE(5783)] = 204400, - [SMALL_STATE(5784)] = 204425, - [SMALL_STATE(5785)] = 204450, - [SMALL_STATE(5786)] = 204467, - [SMALL_STATE(5787)] = 204488, - [SMALL_STATE(5788)] = 204505, - [SMALL_STATE(5789)] = 204530, - [SMALL_STATE(5790)] = 204547, - [SMALL_STATE(5791)] = 204568, - [SMALL_STATE(5792)] = 204593, - [SMALL_STATE(5793)] = 204616, - [SMALL_STATE(5794)] = 204641, - [SMALL_STATE(5795)] = 204666, - [SMALL_STATE(5796)] = 204687, - [SMALL_STATE(5797)] = 204710, - [SMALL_STATE(5798)] = 204735, - [SMALL_STATE(5799)] = 204760, - [SMALL_STATE(5800)] = 204779, - [SMALL_STATE(5801)] = 204796, - [SMALL_STATE(5802)] = 204815, - [SMALL_STATE(5803)] = 204840, - [SMALL_STATE(5804)] = 204859, - [SMALL_STATE(5805)] = 204884, - [SMALL_STATE(5806)] = 204909, - [SMALL_STATE(5807)] = 204934, - [SMALL_STATE(5808)] = 204951, - [SMALL_STATE(5809)] = 204974, - [SMALL_STATE(5810)] = 204989, - [SMALL_STATE(5811)] = 205004, - [SMALL_STATE(5812)] = 205025, - [SMALL_STATE(5813)] = 205050, - [SMALL_STATE(5814)] = 205073, - [SMALL_STATE(5815)] = 205098, - [SMALL_STATE(5816)] = 205123, - [SMALL_STATE(5817)] = 205146, - [SMALL_STATE(5818)] = 205171, - [SMALL_STATE(5819)] = 205188, - [SMALL_STATE(5820)] = 205207, - [SMALL_STATE(5821)] = 205232, - [SMALL_STATE(5822)] = 205257, - [SMALL_STATE(5823)] = 205282, - [SMALL_STATE(5824)] = 205303, - [SMALL_STATE(5825)] = 205320, - [SMALL_STATE(5826)] = 205337, - [SMALL_STATE(5827)] = 205356, - [SMALL_STATE(5828)] = 205379, - [SMALL_STATE(5829)] = 205404, - [SMALL_STATE(5830)] = 205421, + [SMALL_STATE(5622)] = 200860, + [SMALL_STATE(5623)] = 200877, + [SMALL_STATE(5624)] = 200894, + [SMALL_STATE(5625)] = 200911, + [SMALL_STATE(5626)] = 200930, + [SMALL_STATE(5627)] = 200957, + [SMALL_STATE(5628)] = 200976, + [SMALL_STATE(5629)] = 200995, + [SMALL_STATE(5630)] = 201024, + [SMALL_STATE(5631)] = 201045, + [SMALL_STATE(5632)] = 201071, + [SMALL_STATE(5633)] = 201097, + [SMALL_STATE(5634)] = 201123, + [SMALL_STATE(5635)] = 201141, + [SMALL_STATE(5636)] = 201159, + [SMALL_STATE(5637)] = 201179, + [SMALL_STATE(5638)] = 201205, + [SMALL_STATE(5639)] = 201221, + [SMALL_STATE(5640)] = 201239, + [SMALL_STATE(5641)] = 201257, + [SMALL_STATE(5642)] = 201277, + [SMALL_STATE(5643)] = 201295, + [SMALL_STATE(5644)] = 201313, + [SMALL_STATE(5645)] = 201329, + [SMALL_STATE(5646)] = 201345, + [SMALL_STATE(5647)] = 201363, + [SMALL_STATE(5648)] = 201389, + [SMALL_STATE(5649)] = 201415, + [SMALL_STATE(5650)] = 201435, + [SMALL_STATE(5651)] = 201457, + [SMALL_STATE(5652)] = 201483, + [SMALL_STATE(5653)] = 201509, + [SMALL_STATE(5654)] = 201525, + [SMALL_STATE(5655)] = 201551, + [SMALL_STATE(5656)] = 201577, + [SMALL_STATE(5657)] = 201595, + [SMALL_STATE(5658)] = 201621, + [SMALL_STATE(5659)] = 201639, + [SMALL_STATE(5660)] = 201665, + [SMALL_STATE(5661)] = 201689, + [SMALL_STATE(5662)] = 201707, + [SMALL_STATE(5663)] = 201733, + [SMALL_STATE(5664)] = 201753, + [SMALL_STATE(5665)] = 201771, + [SMALL_STATE(5666)] = 201789, + [SMALL_STATE(5667)] = 201809, + [SMALL_STATE(5668)] = 201835, + [SMALL_STATE(5669)] = 201851, + [SMALL_STATE(5670)] = 201867, + [SMALL_STATE(5671)] = 201895, + [SMALL_STATE(5672)] = 201915, + [SMALL_STATE(5673)] = 201937, + [SMALL_STATE(5674)] = 201963, + [SMALL_STATE(5675)] = 201987, + [SMALL_STATE(5676)] = 202003, + [SMALL_STATE(5677)] = 202029, + [SMALL_STATE(5678)] = 202055, + [SMALL_STATE(5679)] = 202073, + [SMALL_STATE(5680)] = 202091, + [SMALL_STATE(5681)] = 202115, + [SMALL_STATE(5682)] = 202141, + [SMALL_STATE(5683)] = 202159, + [SMALL_STATE(5684)] = 202177, + [SMALL_STATE(5685)] = 202195, + [SMALL_STATE(5686)] = 202221, + [SMALL_STATE(5687)] = 202243, + [SMALL_STATE(5688)] = 202269, + [SMALL_STATE(5689)] = 202295, + [SMALL_STATE(5690)] = 202313, + [SMALL_STATE(5691)] = 202339, + [SMALL_STATE(5692)] = 202365, + [SMALL_STATE(5693)] = 202391, + [SMALL_STATE(5694)] = 202417, + [SMALL_STATE(5695)] = 202443, + [SMALL_STATE(5696)] = 202467, + [SMALL_STATE(5697)] = 202493, + [SMALL_STATE(5698)] = 202519, + [SMALL_STATE(5699)] = 202537, + [SMALL_STATE(5700)] = 202563, + [SMALL_STATE(5701)] = 202589, + [SMALL_STATE(5702)] = 202607, + [SMALL_STATE(5703)] = 202625, + [SMALL_STATE(5704)] = 202643, + [SMALL_STATE(5705)] = 202671, + [SMALL_STATE(5706)] = 202697, + [SMALL_STATE(5707)] = 202723, + [SMALL_STATE(5708)] = 202743, + [SMALL_STATE(5709)] = 202769, + [SMALL_STATE(5710)] = 202791, + [SMALL_STATE(5711)] = 202817, + [SMALL_STATE(5712)] = 202835, + [SMALL_STATE(5713)] = 202861, + [SMALL_STATE(5714)] = 202879, + [SMALL_STATE(5715)] = 202897, + [SMALL_STATE(5716)] = 202915, + [SMALL_STATE(5717)] = 202933, + [SMALL_STATE(5718)] = 202959, + [SMALL_STATE(5719)] = 202977, + [SMALL_STATE(5720)] = 202997, + [SMALL_STATE(5721)] = 203017, + [SMALL_STATE(5722)] = 203037, + [SMALL_STATE(5723)] = 203053, + [SMALL_STATE(5724)] = 203071, + [SMALL_STATE(5725)] = 203089, + [SMALL_STATE(5726)] = 203109, + [SMALL_STATE(5727)] = 203135, + [SMALL_STATE(5728)] = 203161, + [SMALL_STATE(5729)] = 203178, + [SMALL_STATE(5730)] = 203203, + [SMALL_STATE(5731)] = 203228, + [SMALL_STATE(5732)] = 203251, + [SMALL_STATE(5733)] = 203270, + [SMALL_STATE(5734)] = 203295, + [SMALL_STATE(5735)] = 203312, + [SMALL_STATE(5736)] = 203337, + [SMALL_STATE(5737)] = 203362, + [SMALL_STATE(5738)] = 203379, + [SMALL_STATE(5739)] = 203404, + [SMALL_STATE(5740)] = 203423, + [SMALL_STATE(5741)] = 203440, + [SMALL_STATE(5742)] = 203455, + [SMALL_STATE(5743)] = 203472, + [SMALL_STATE(5744)] = 203495, + [SMALL_STATE(5745)] = 203516, + [SMALL_STATE(5746)] = 203541, + [SMALL_STATE(5747)] = 203566, + [SMALL_STATE(5748)] = 203589, + [SMALL_STATE(5749)] = 203610, + [SMALL_STATE(5750)] = 203635, + [SMALL_STATE(5751)] = 203652, + [SMALL_STATE(5752)] = 203677, + [SMALL_STATE(5753)] = 203696, + [SMALL_STATE(5754)] = 203721, + [SMALL_STATE(5755)] = 203738, + [SMALL_STATE(5756)] = 203757, + [SMALL_STATE(5757)] = 203780, + [SMALL_STATE(5758)] = 203801, + [SMALL_STATE(5759)] = 203826, + [SMALL_STATE(5760)] = 203851, + [SMALL_STATE(5761)] = 203874, + [SMALL_STATE(5762)] = 203891, + [SMALL_STATE(5763)] = 203914, + [SMALL_STATE(5764)] = 203939, + [SMALL_STATE(5765)] = 203956, + [SMALL_STATE(5766)] = 203981, + [SMALL_STATE(5767)] = 203998, + [SMALL_STATE(5768)] = 204015, + [SMALL_STATE(5769)] = 204040, + [SMALL_STATE(5770)] = 204057, + [SMALL_STATE(5771)] = 204080, + [SMALL_STATE(5772)] = 204105, + [SMALL_STATE(5773)] = 204130, + [SMALL_STATE(5774)] = 204153, + [SMALL_STATE(5775)] = 204170, + [SMALL_STATE(5776)] = 204195, + [SMALL_STATE(5777)] = 204220, + [SMALL_STATE(5778)] = 204237, + [SMALL_STATE(5779)] = 204262, + [SMALL_STATE(5780)] = 204287, + [SMALL_STATE(5781)] = 204308, + [SMALL_STATE(5782)] = 204331, + [SMALL_STATE(5783)] = 204354, + [SMALL_STATE(5784)] = 204379, + [SMALL_STATE(5785)] = 204404, + [SMALL_STATE(5786)] = 204427, + [SMALL_STATE(5787)] = 204444, + [SMALL_STATE(5788)] = 204469, + [SMALL_STATE(5789)] = 204484, + [SMALL_STATE(5790)] = 204501, + [SMALL_STATE(5791)] = 204526, + [SMALL_STATE(5792)] = 204551, + [SMALL_STATE(5793)] = 204568, + [SMALL_STATE(5794)] = 204585, + [SMALL_STATE(5795)] = 204608, + [SMALL_STATE(5796)] = 204633, + [SMALL_STATE(5797)] = 204658, + [SMALL_STATE(5798)] = 204683, + [SMALL_STATE(5799)] = 204706, + [SMALL_STATE(5800)] = 204723, + [SMALL_STATE(5801)] = 204748, + [SMALL_STATE(5802)] = 204773, + [SMALL_STATE(5803)] = 204790, + [SMALL_STATE(5804)] = 204815, + [SMALL_STATE(5805)] = 204840, + [SMALL_STATE(5806)] = 204863, + [SMALL_STATE(5807)] = 204888, + [SMALL_STATE(5808)] = 204911, + [SMALL_STATE(5809)] = 204936, + [SMALL_STATE(5810)] = 204961, + [SMALL_STATE(5811)] = 204984, + [SMALL_STATE(5812)] = 205009, + [SMALL_STATE(5813)] = 205034, + [SMALL_STATE(5814)] = 205059, + [SMALL_STATE(5815)] = 205084, + [SMALL_STATE(5816)] = 205101, + [SMALL_STATE(5817)] = 205122, + [SMALL_STATE(5818)] = 205147, + [SMALL_STATE(5819)] = 205172, + [SMALL_STATE(5820)] = 205189, + [SMALL_STATE(5821)] = 205212, + [SMALL_STATE(5822)] = 205237, + [SMALL_STATE(5823)] = 205262, + [SMALL_STATE(5824)] = 205285, + [SMALL_STATE(5825)] = 205302, + [SMALL_STATE(5826)] = 205327, + [SMALL_STATE(5827)] = 205352, + [SMALL_STATE(5828)] = 205377, + [SMALL_STATE(5829)] = 205402, + [SMALL_STATE(5830)] = 205425, [SMALL_STATE(5831)] = 205446, - [SMALL_STATE(5832)] = 205471, + [SMALL_STATE(5832)] = 205469, [SMALL_STATE(5833)] = 205494, [SMALL_STATE(5834)] = 205519, - [SMALL_STATE(5835)] = 205536, + [SMALL_STATE(5835)] = 205544, [SMALL_STATE(5836)] = 205561, - [SMALL_STATE(5837)] = 205586, - [SMALL_STATE(5838)] = 205611, - [SMALL_STATE(5839)] = 205636, - [SMALL_STATE(5840)] = 205653, - [SMALL_STATE(5841)] = 205670, - [SMALL_STATE(5842)] = 205695, - [SMALL_STATE(5843)] = 205718, - [SMALL_STATE(5844)] = 205743, - [SMALL_STATE(5845)] = 205768, - [SMALL_STATE(5846)] = 205793, - [SMALL_STATE(5847)] = 205816, - [SMALL_STATE(5848)] = 205841, - [SMALL_STATE(5849)] = 205866, - [SMALL_STATE(5850)] = 205891, - [SMALL_STATE(5851)] = 205916, - [SMALL_STATE(5852)] = 205941, - [SMALL_STATE(5853)] = 205964, - [SMALL_STATE(5854)] = 205989, - [SMALL_STATE(5855)] = 206014, - [SMALL_STATE(5856)] = 206037, - [SMALL_STATE(5857)] = 206062, - [SMALL_STATE(5858)] = 206087, - [SMALL_STATE(5859)] = 206110, - [SMALL_STATE(5860)] = 206133, - [SMALL_STATE(5861)] = 206158, - [SMALL_STATE(5862)] = 206183, - [SMALL_STATE(5863)] = 206206, - [SMALL_STATE(5864)] = 206223, - [SMALL_STATE(5865)] = 206248, - [SMALL_STATE(5866)] = 206273, - [SMALL_STATE(5867)] = 206290, - [SMALL_STATE(5868)] = 206315, - [SMALL_STATE(5869)] = 206332, - [SMALL_STATE(5870)] = 206357, - [SMALL_STATE(5871)] = 206380, - [SMALL_STATE(5872)] = 206405, - [SMALL_STATE(5873)] = 206430, - [SMALL_STATE(5874)] = 206451, - [SMALL_STATE(5875)] = 206474, - [SMALL_STATE(5876)] = 206499, - [SMALL_STATE(5877)] = 206524, - [SMALL_STATE(5878)] = 206549, - [SMALL_STATE(5879)] = 206574, - [SMALL_STATE(5880)] = 206591, - [SMALL_STATE(5881)] = 206608, - [SMALL_STATE(5882)] = 206631, - [SMALL_STATE(5883)] = 206656, - [SMALL_STATE(5884)] = 206681, - [SMALL_STATE(5885)] = 206704, - [SMALL_STATE(5886)] = 206725, - [SMALL_STATE(5887)] = 206750, - [SMALL_STATE(5888)] = 206775, - [SMALL_STATE(5889)] = 206800, - [SMALL_STATE(5890)] = 206817, - [SMALL_STATE(5891)] = 206834, - [SMALL_STATE(5892)] = 206851, - [SMALL_STATE(5893)] = 206876, - [SMALL_STATE(5894)] = 206899, - [SMALL_STATE(5895)] = 206924, - [SMALL_STATE(5896)] = 206949, - [SMALL_STATE(5897)] = 206972, - [SMALL_STATE(5898)] = 206997, - [SMALL_STATE(5899)] = 207022, - [SMALL_STATE(5900)] = 207047, - [SMALL_STATE(5901)] = 207072, - [SMALL_STATE(5902)] = 207097, - [SMALL_STATE(5903)] = 207122, - [SMALL_STATE(5904)] = 207147, - [SMALL_STATE(5905)] = 207172, - [SMALL_STATE(5906)] = 207197, - [SMALL_STATE(5907)] = 207220, - [SMALL_STATE(5908)] = 207245, - [SMALL_STATE(5909)] = 207270, - [SMALL_STATE(5910)] = 207287, - [SMALL_STATE(5911)] = 207310, - [SMALL_STATE(5912)] = 207327, - [SMALL_STATE(5913)] = 207352, - [SMALL_STATE(5914)] = 207377, - [SMALL_STATE(5915)] = 207394, - [SMALL_STATE(5916)] = 207417, - [SMALL_STATE(5917)] = 207434, - [SMALL_STATE(5918)] = 207457, - [SMALL_STATE(5919)] = 207482, - [SMALL_STATE(5920)] = 207507, - [SMALL_STATE(5921)] = 207530, - [SMALL_STATE(5922)] = 207553, - [SMALL_STATE(5923)] = 207578, - [SMALL_STATE(5924)] = 207603, - [SMALL_STATE(5925)] = 207626, - [SMALL_STATE(5926)] = 207649, - [SMALL_STATE(5927)] = 207672, - [SMALL_STATE(5928)] = 207697, - [SMALL_STATE(5929)] = 207714, - [SMALL_STATE(5930)] = 207731, - [SMALL_STATE(5931)] = 207756, - [SMALL_STATE(5932)] = 207781, - [SMALL_STATE(5933)] = 207798, - [SMALL_STATE(5934)] = 207815, - [SMALL_STATE(5935)] = 207832, - [SMALL_STATE(5936)] = 207857, - [SMALL_STATE(5937)] = 207882, - [SMALL_STATE(5938)] = 207907, - [SMALL_STATE(5939)] = 207924, - [SMALL_STATE(5940)] = 207949, - [SMALL_STATE(5941)] = 207974, - [SMALL_STATE(5942)] = 207991, - [SMALL_STATE(5943)] = 208008, - [SMALL_STATE(5944)] = 208025, - [SMALL_STATE(5945)] = 208050, - [SMALL_STATE(5946)] = 208075, - [SMALL_STATE(5947)] = 208100, - [SMALL_STATE(5948)] = 208125, - [SMALL_STATE(5949)] = 208142, - [SMALL_STATE(5950)] = 208159, - [SMALL_STATE(5951)] = 208176, - [SMALL_STATE(5952)] = 208193, - [SMALL_STATE(5953)] = 208210, - [SMALL_STATE(5954)] = 208231, - [SMALL_STATE(5955)] = 208256, - [SMALL_STATE(5956)] = 208277, - [SMALL_STATE(5957)] = 208294, - [SMALL_STATE(5958)] = 208311, - [SMALL_STATE(5959)] = 208332, - [SMALL_STATE(5960)] = 208349, - [SMALL_STATE(5961)] = 208366, - [SMALL_STATE(5962)] = 208385, - [SMALL_STATE(5963)] = 208404, - [SMALL_STATE(5964)] = 208429, - [SMALL_STATE(5965)] = 208454, - [SMALL_STATE(5966)] = 208479, - [SMALL_STATE(5967)] = 208500, - [SMALL_STATE(5968)] = 208523, - [SMALL_STATE(5969)] = 208540, - [SMALL_STATE(5970)] = 208557, - [SMALL_STATE(5971)] = 208576, - [SMALL_STATE(5972)] = 208595, - [SMALL_STATE(5973)] = 208616, - [SMALL_STATE(5974)] = 208641, - [SMALL_STATE(5975)] = 208662, - [SMALL_STATE(5976)] = 208683, - [SMALL_STATE(5977)] = 208700, - [SMALL_STATE(5978)] = 208721, - [SMALL_STATE(5979)] = 208738, - [SMALL_STATE(5980)] = 208761, - [SMALL_STATE(5981)] = 208782, - [SMALL_STATE(5982)] = 208801, - [SMALL_STATE(5983)] = 208818, - [SMALL_STATE(5984)] = 208835, - [SMALL_STATE(5985)] = 208850, - [SMALL_STATE(5986)] = 208873, - [SMALL_STATE(5987)] = 208898, - [SMALL_STATE(5988)] = 208915, - [SMALL_STATE(5989)] = 208932, - [SMALL_STATE(5990)] = 208957, - [SMALL_STATE(5991)] = 208974, + [SMALL_STATE(5837)] = 205580, + [SMALL_STATE(5838)] = 205603, + [SMALL_STATE(5839)] = 205626, + [SMALL_STATE(5840)] = 205649, + [SMALL_STATE(5841)] = 205674, + [SMALL_STATE(5842)] = 205699, + [SMALL_STATE(5843)] = 205714, + [SMALL_STATE(5844)] = 205729, + [SMALL_STATE(5845)] = 205752, + [SMALL_STATE(5846)] = 205771, + [SMALL_STATE(5847)] = 205794, + [SMALL_STATE(5848)] = 205819, + [SMALL_STATE(5849)] = 205844, + [SMALL_STATE(5850)] = 205869, + [SMALL_STATE(5851)] = 205894, + [SMALL_STATE(5852)] = 205919, + [SMALL_STATE(5853)] = 205944, + [SMALL_STATE(5854)] = 205969, + [SMALL_STATE(5855)] = 205994, + [SMALL_STATE(5856)] = 206019, + [SMALL_STATE(5857)] = 206042, + [SMALL_STATE(5858)] = 206061, + [SMALL_STATE(5859)] = 206086, + [SMALL_STATE(5860)] = 206111, + [SMALL_STATE(5861)] = 206128, + [SMALL_STATE(5862)] = 206147, + [SMALL_STATE(5863)] = 206172, + [SMALL_STATE(5864)] = 206197, + [SMALL_STATE(5865)] = 206220, + [SMALL_STATE(5866)] = 206245, + [SMALL_STATE(5867)] = 206268, + [SMALL_STATE(5868)] = 206285, + [SMALL_STATE(5869)] = 206308, + [SMALL_STATE(5870)] = 206325, + [SMALL_STATE(5871)] = 206350, + [SMALL_STATE(5872)] = 206367, + [SMALL_STATE(5873)] = 206392, + [SMALL_STATE(5874)] = 206409, + [SMALL_STATE(5875)] = 206434, + [SMALL_STATE(5876)] = 206451, + [SMALL_STATE(5877)] = 206470, + [SMALL_STATE(5878)] = 206495, + [SMALL_STATE(5879)] = 206514, + [SMALL_STATE(5880)] = 206539, + [SMALL_STATE(5881)] = 206562, + [SMALL_STATE(5882)] = 206579, + [SMALL_STATE(5883)] = 206604, + [SMALL_STATE(5884)] = 206621, + [SMALL_STATE(5885)] = 206638, + [SMALL_STATE(5886)] = 206663, + [SMALL_STATE(5887)] = 206680, + [SMALL_STATE(5888)] = 206697, + [SMALL_STATE(5889)] = 206714, + [SMALL_STATE(5890)] = 206737, + [SMALL_STATE(5891)] = 206762, + [SMALL_STATE(5892)] = 206787, + [SMALL_STATE(5893)] = 206804, + [SMALL_STATE(5894)] = 206821, + [SMALL_STATE(5895)] = 206846, + [SMALL_STATE(5896)] = 206863, + [SMALL_STATE(5897)] = 206888, + [SMALL_STATE(5898)] = 206905, + [SMALL_STATE(5899)] = 206930, + [SMALL_STATE(5900)] = 206955, + [SMALL_STATE(5901)] = 206972, + [SMALL_STATE(5902)] = 206997, + [SMALL_STATE(5903)] = 207022, + [SMALL_STATE(5904)] = 207047, + [SMALL_STATE(5905)] = 207068, + [SMALL_STATE(5906)] = 207093, + [SMALL_STATE(5907)] = 207118, + [SMALL_STATE(5908)] = 207137, + [SMALL_STATE(5909)] = 207154, + [SMALL_STATE(5910)] = 207179, + [SMALL_STATE(5911)] = 207204, + [SMALL_STATE(5912)] = 207229, + [SMALL_STATE(5913)] = 207254, + [SMALL_STATE(5914)] = 207271, + [SMALL_STATE(5915)] = 207288, + [SMALL_STATE(5916)] = 207313, + [SMALL_STATE(5917)] = 207338, + [SMALL_STATE(5918)] = 207359, + [SMALL_STATE(5919)] = 207380, + [SMALL_STATE(5920)] = 207401, + [SMALL_STATE(5921)] = 207418, + [SMALL_STATE(5922)] = 207437, + [SMALL_STATE(5923)] = 207454, + [SMALL_STATE(5924)] = 207471, + [SMALL_STATE(5925)] = 207494, + [SMALL_STATE(5926)] = 207519, + [SMALL_STATE(5927)] = 207544, + [SMALL_STATE(5928)] = 207569, + [SMALL_STATE(5929)] = 207594, + [SMALL_STATE(5930)] = 207619, + [SMALL_STATE(5931)] = 207640, + [SMALL_STATE(5932)] = 207665, + [SMALL_STATE(5933)] = 207688, + [SMALL_STATE(5934)] = 207713, + [SMALL_STATE(5935)] = 207738, + [SMALL_STATE(5936)] = 207759, + [SMALL_STATE(5937)] = 207784, + [SMALL_STATE(5938)] = 207809, + [SMALL_STATE(5939)] = 207834, + [SMALL_STATE(5940)] = 207859, + [SMALL_STATE(5941)] = 207884, + [SMALL_STATE(5942)] = 207905, + [SMALL_STATE(5943)] = 207922, + [SMALL_STATE(5944)] = 207947, + [SMALL_STATE(5945)] = 207972, + [SMALL_STATE(5946)] = 207997, + [SMALL_STATE(5947)] = 208022, + [SMALL_STATE(5948)] = 208045, + [SMALL_STATE(5949)] = 208066, + [SMALL_STATE(5950)] = 208091, + [SMALL_STATE(5951)] = 208116, + [SMALL_STATE(5952)] = 208141, + [SMALL_STATE(5953)] = 208162, + [SMALL_STATE(5954)] = 208187, + [SMALL_STATE(5955)] = 208212, + [SMALL_STATE(5956)] = 208233, + [SMALL_STATE(5957)] = 208254, + [SMALL_STATE(5958)] = 208271, + [SMALL_STATE(5959)] = 208296, + [SMALL_STATE(5960)] = 208321, + [SMALL_STATE(5961)] = 208338, + [SMALL_STATE(5962)] = 208359, + [SMALL_STATE(5963)] = 208376, + [SMALL_STATE(5964)] = 208391, + [SMALL_STATE(5965)] = 208416, + [SMALL_STATE(5966)] = 208441, + [SMALL_STATE(5967)] = 208466, + [SMALL_STATE(5968)] = 208491, + [SMALL_STATE(5969)] = 208508, + [SMALL_STATE(5970)] = 208525, + [SMALL_STATE(5971)] = 208546, + [SMALL_STATE(5972)] = 208569, + [SMALL_STATE(5973)] = 208586, + [SMALL_STATE(5974)] = 208607, + [SMALL_STATE(5975)] = 208624, + [SMALL_STATE(5976)] = 208643, + [SMALL_STATE(5977)] = 208668, + [SMALL_STATE(5978)] = 208691, + [SMALL_STATE(5979)] = 208710, + [SMALL_STATE(5980)] = 208731, + [SMALL_STATE(5981)] = 208754, + [SMALL_STATE(5982)] = 208775, + [SMALL_STATE(5983)] = 208792, + [SMALL_STATE(5984)] = 208807, + [SMALL_STATE(5985)] = 208830, + [SMALL_STATE(5986)] = 208847, + [SMALL_STATE(5987)] = 208872, + [SMALL_STATE(5988)] = 208897, + [SMALL_STATE(5989)] = 208922, + [SMALL_STATE(5990)] = 208947, + [SMALL_STATE(5991)] = 208972, [SMALL_STATE(5992)] = 208991, - [SMALL_STATE(5993)] = 209016, - [SMALL_STATE(5994)] = 209037, - [SMALL_STATE(5995)] = 209062, - [SMALL_STATE(5996)] = 209087, - [SMALL_STATE(5997)] = 209104, - [SMALL_STATE(5998)] = 209127, - [SMALL_STATE(5999)] = 209144, - [SMALL_STATE(6000)] = 209169, - [SMALL_STATE(6001)] = 209194, - [SMALL_STATE(6002)] = 209211, - [SMALL_STATE(6003)] = 209236, - [SMALL_STATE(6004)] = 209253, - [SMALL_STATE(6005)] = 209270, - [SMALL_STATE(6006)] = 209295, - [SMALL_STATE(6007)] = 209316, - [SMALL_STATE(6008)] = 209337, - [SMALL_STATE(6009)] = 209356, - [SMALL_STATE(6010)] = 209373, - [SMALL_STATE(6011)] = 209394, - [SMALL_STATE(6012)] = 209415, - [SMALL_STATE(6013)] = 209436, - [SMALL_STATE(6014)] = 209453, - [SMALL_STATE(6015)] = 209478, - [SMALL_STATE(6016)] = 209495, - [SMALL_STATE(6017)] = 209514, - [SMALL_STATE(6018)] = 209533, - [SMALL_STATE(6019)] = 209552, - [SMALL_STATE(6020)] = 209577, - [SMALL_STATE(6021)] = 209598, - [SMALL_STATE(6022)] = 209615, - [SMALL_STATE(6023)] = 209632, - [SMALL_STATE(6024)] = 209655, - [SMALL_STATE(6025)] = 209680, - [SMALL_STATE(6026)] = 209705, - [SMALL_STATE(6027)] = 209730, - [SMALL_STATE(6028)] = 209755, - [SMALL_STATE(6029)] = 209780, - [SMALL_STATE(6030)] = 209802, - [SMALL_STATE(6031)] = 209820, - [SMALL_STATE(6032)] = 209842, - [SMALL_STATE(6033)] = 209860, - [SMALL_STATE(6034)] = 209882, - [SMALL_STATE(6035)] = 209904, - [SMALL_STATE(6036)] = 209920, - [SMALL_STATE(6037)] = 209942, - [SMALL_STATE(6038)] = 209956, - [SMALL_STATE(6039)] = 209978, - [SMALL_STATE(6040)] = 210000, - [SMALL_STATE(6041)] = 210022, - [SMALL_STATE(6042)] = 210042, - [SMALL_STATE(6043)] = 210064, - [SMALL_STATE(6044)] = 210084, - [SMALL_STATE(6045)] = 210106, - [SMALL_STATE(6046)] = 210122, - [SMALL_STATE(6047)] = 210142, - [SMALL_STATE(6048)] = 210164, - [SMALL_STATE(6049)] = 210186, - [SMALL_STATE(6050)] = 210206, - [SMALL_STATE(6051)] = 210224, - [SMALL_STATE(6052)] = 210242, - [SMALL_STATE(6053)] = 210264, - [SMALL_STATE(6054)] = 210286, - [SMALL_STATE(6055)] = 210308, - [SMALL_STATE(6056)] = 210328, - [SMALL_STATE(6057)] = 210348, - [SMALL_STATE(6058)] = 210364, - [SMALL_STATE(6059)] = 210378, - [SMALL_STATE(6060)] = 210398, - [SMALL_STATE(6061)] = 210418, - [SMALL_STATE(6062)] = 210440, - [SMALL_STATE(6063)] = 210458, - [SMALL_STATE(6064)] = 210476, - [SMALL_STATE(6065)] = 210498, - [SMALL_STATE(6066)] = 210520, - [SMALL_STATE(6067)] = 210536, - [SMALL_STATE(6068)] = 210558, - [SMALL_STATE(6069)] = 210580, - [SMALL_STATE(6070)] = 210598, - [SMALL_STATE(6071)] = 210620, - [SMALL_STATE(6072)] = 210642, - [SMALL_STATE(6073)] = 210664, - [SMALL_STATE(6074)] = 210682, - [SMALL_STATE(6075)] = 210704, - [SMALL_STATE(6076)] = 210722, - [SMALL_STATE(6077)] = 210740, - [SMALL_STATE(6078)] = 210758, - [SMALL_STATE(6079)] = 210776, - [SMALL_STATE(6080)] = 210796, - [SMALL_STATE(6081)] = 210814, - [SMALL_STATE(6082)] = 210836, - [SMALL_STATE(6083)] = 210856, - [SMALL_STATE(6084)] = 210876, - [SMALL_STATE(6085)] = 210898, - [SMALL_STATE(6086)] = 210918, - [SMALL_STATE(6087)] = 210940, - [SMALL_STATE(6088)] = 210962, - [SMALL_STATE(6089)] = 210984, - [SMALL_STATE(6090)] = 211004, - [SMALL_STATE(6091)] = 211026, - [SMALL_STATE(6092)] = 211044, - [SMALL_STATE(6093)] = 211066, - [SMALL_STATE(6094)] = 211084, - [SMALL_STATE(6095)] = 211102, - [SMALL_STATE(6096)] = 211124, - [SMALL_STATE(6097)] = 211146, - [SMALL_STATE(6098)] = 211164, - [SMALL_STATE(6099)] = 211186, - [SMALL_STATE(6100)] = 211208, - [SMALL_STATE(6101)] = 211224, - [SMALL_STATE(6102)] = 211242, - [SMALL_STATE(6103)] = 211260, - [SMALL_STATE(6104)] = 211280, - [SMALL_STATE(6105)] = 211302, - [SMALL_STATE(6106)] = 211324, - [SMALL_STATE(6107)] = 211346, - [SMALL_STATE(6108)] = 211368, - [SMALL_STATE(6109)] = 211390, - [SMALL_STATE(6110)] = 211408, - [SMALL_STATE(6111)] = 211430, - [SMALL_STATE(6112)] = 211452, - [SMALL_STATE(6113)] = 211474, - [SMALL_STATE(6114)] = 211496, - [SMALL_STATE(6115)] = 211518, - [SMALL_STATE(6116)] = 211540, - [SMALL_STATE(6117)] = 211562, - [SMALL_STATE(6118)] = 211578, - [SMALL_STATE(6119)] = 211600, - [SMALL_STATE(6120)] = 211618, - [SMALL_STATE(6121)] = 211640, - [SMALL_STATE(6122)] = 211662, - [SMALL_STATE(6123)] = 211684, - [SMALL_STATE(6124)] = 211706, - [SMALL_STATE(6125)] = 211720, - [SMALL_STATE(6126)] = 211742, - [SMALL_STATE(6127)] = 211758, - [SMALL_STATE(6128)] = 211776, - [SMALL_STATE(6129)] = 211790, - [SMALL_STATE(6130)] = 211812, - [SMALL_STATE(6131)] = 211826, - [SMALL_STATE(6132)] = 211848, - [SMALL_STATE(6133)] = 211870, - [SMALL_STATE(6134)] = 211890, - [SMALL_STATE(6135)] = 211912, - [SMALL_STATE(6136)] = 211930, - [SMALL_STATE(6137)] = 211946, - [SMALL_STATE(6138)] = 211962, - [SMALL_STATE(6139)] = 211984, - [SMALL_STATE(6140)] = 212006, - [SMALL_STATE(6141)] = 212028, - [SMALL_STATE(6142)] = 212044, - [SMALL_STATE(6143)] = 212066, - [SMALL_STATE(6144)] = 212082, - [SMALL_STATE(6145)] = 212104, - [SMALL_STATE(6146)] = 212126, - [SMALL_STATE(6147)] = 212148, - [SMALL_STATE(6148)] = 212170, - [SMALL_STATE(6149)] = 212192, - [SMALL_STATE(6150)] = 212214, - [SMALL_STATE(6151)] = 212236, - [SMALL_STATE(6152)] = 212258, - [SMALL_STATE(6153)] = 212280, - [SMALL_STATE(6154)] = 212302, - [SMALL_STATE(6155)] = 212324, - [SMALL_STATE(6156)] = 212346, - [SMALL_STATE(6157)] = 212368, - [SMALL_STATE(6158)] = 212388, - [SMALL_STATE(6159)] = 212410, - [SMALL_STATE(6160)] = 212432, - [SMALL_STATE(6161)] = 212454, - [SMALL_STATE(6162)] = 212474, - [SMALL_STATE(6163)] = 212490, - [SMALL_STATE(6164)] = 212508, - [SMALL_STATE(6165)] = 212530, - [SMALL_STATE(6166)] = 212552, - [SMALL_STATE(6167)] = 212574, - [SMALL_STATE(6168)] = 212596, - [SMALL_STATE(6169)] = 212618, - [SMALL_STATE(6170)] = 212640, - [SMALL_STATE(6171)] = 212656, - [SMALL_STATE(6172)] = 212678, - [SMALL_STATE(6173)] = 212700, - [SMALL_STATE(6174)] = 212722, - [SMALL_STATE(6175)] = 212744, - [SMALL_STATE(6176)] = 212766, - [SMALL_STATE(6177)] = 212786, - [SMALL_STATE(6178)] = 212808, - [SMALL_STATE(6179)] = 212830, - [SMALL_STATE(6180)] = 212852, - [SMALL_STATE(6181)] = 212874, - [SMALL_STATE(6182)] = 212896, - [SMALL_STATE(6183)] = 212912, - [SMALL_STATE(6184)] = 212934, - [SMALL_STATE(6185)] = 212956, - [SMALL_STATE(6186)] = 212978, - [SMALL_STATE(6187)] = 213000, - [SMALL_STATE(6188)] = 213018, - [SMALL_STATE(6189)] = 213036, - [SMALL_STATE(6190)] = 213058, - [SMALL_STATE(6191)] = 213080, - [SMALL_STATE(6192)] = 213102, - [SMALL_STATE(6193)] = 213124, - [SMALL_STATE(6194)] = 213146, - [SMALL_STATE(6195)] = 213168, - [SMALL_STATE(6196)] = 213190, - [SMALL_STATE(6197)] = 213212, - [SMALL_STATE(6198)] = 213234, - [SMALL_STATE(6199)] = 213256, - [SMALL_STATE(6200)] = 213278, - [SMALL_STATE(6201)] = 213300, - [SMALL_STATE(6202)] = 213322, - [SMALL_STATE(6203)] = 213342, - [SMALL_STATE(6204)] = 213364, - [SMALL_STATE(6205)] = 213386, - [SMALL_STATE(6206)] = 213408, - [SMALL_STATE(6207)] = 213430, - [SMALL_STATE(6208)] = 213444, - [SMALL_STATE(6209)] = 213466, - [SMALL_STATE(6210)] = 213488, - [SMALL_STATE(6211)] = 213510, - [SMALL_STATE(6212)] = 213532, - [SMALL_STATE(6213)] = 213554, - [SMALL_STATE(6214)] = 213576, - [SMALL_STATE(6215)] = 213598, - [SMALL_STATE(6216)] = 213614, - [SMALL_STATE(6217)] = 213636, - [SMALL_STATE(6218)] = 213652, - [SMALL_STATE(6219)] = 213674, - [SMALL_STATE(6220)] = 213696, - [SMALL_STATE(6221)] = 213714, - [SMALL_STATE(6222)] = 213732, - [SMALL_STATE(6223)] = 213754, - [SMALL_STATE(6224)] = 213772, - [SMALL_STATE(6225)] = 213790, - [SMALL_STATE(6226)] = 213812, - [SMALL_STATE(6227)] = 213832, - [SMALL_STATE(6228)] = 213850, - [SMALL_STATE(6229)] = 213868, - [SMALL_STATE(6230)] = 213884, - [SMALL_STATE(6231)] = 213904, - [SMALL_STATE(6232)] = 213920, - [SMALL_STATE(6233)] = 213942, - [SMALL_STATE(6234)] = 213964, - [SMALL_STATE(6235)] = 213982, - [SMALL_STATE(6236)] = 214004, - [SMALL_STATE(6237)] = 214022, - [SMALL_STATE(6238)] = 214044, - [SMALL_STATE(6239)] = 214066, - [SMALL_STATE(6240)] = 214082, - [SMALL_STATE(6241)] = 214104, - [SMALL_STATE(6242)] = 214126, - [SMALL_STATE(6243)] = 214140, - [SMALL_STATE(6244)] = 214162, - [SMALL_STATE(6245)] = 214175, - [SMALL_STATE(6246)] = 214192, - [SMALL_STATE(6247)] = 214211, - [SMALL_STATE(6248)] = 214228, - [SMALL_STATE(6249)] = 214241, - [SMALL_STATE(6250)] = 214256, - [SMALL_STATE(6251)] = 214269, - [SMALL_STATE(6252)] = 214282, - [SMALL_STATE(6253)] = 214295, - [SMALL_STATE(6254)] = 214308, - [SMALL_STATE(6255)] = 214321, - [SMALL_STATE(6256)] = 214340, - [SMALL_STATE(6257)] = 214353, - [SMALL_STATE(6258)] = 214366, - [SMALL_STATE(6259)] = 214383, - [SMALL_STATE(6260)] = 214402, - [SMALL_STATE(6261)] = 214415, - [SMALL_STATE(6262)] = 214434, - [SMALL_STATE(6263)] = 214453, - [SMALL_STATE(6264)] = 214466, - [SMALL_STATE(6265)] = 214479, - [SMALL_STATE(6266)] = 214498, - [SMALL_STATE(6267)] = 214517, - [SMALL_STATE(6268)] = 214536, - [SMALL_STATE(6269)] = 214555, - [SMALL_STATE(6270)] = 214568, - [SMALL_STATE(6271)] = 214585, - [SMALL_STATE(6272)] = 214604, - [SMALL_STATE(6273)] = 214621, - [SMALL_STATE(6274)] = 214638, - [SMALL_STATE(6275)] = 214657, - [SMALL_STATE(6276)] = 214674, - [SMALL_STATE(6277)] = 214687, - [SMALL_STATE(6278)] = 214700, - [SMALL_STATE(6279)] = 214715, - [SMALL_STATE(6280)] = 214728, - [SMALL_STATE(6281)] = 214741, - [SMALL_STATE(6282)] = 214754, - [SMALL_STATE(6283)] = 214767, - [SMALL_STATE(6284)] = 214780, - [SMALL_STATE(6285)] = 214797, - [SMALL_STATE(6286)] = 214810, - [SMALL_STATE(6287)] = 214829, - [SMALL_STATE(6288)] = 214842, - [SMALL_STATE(6289)] = 214855, - [SMALL_STATE(6290)] = 214872, - [SMALL_STATE(6291)] = 214885, - [SMALL_STATE(6292)] = 214898, - [SMALL_STATE(6293)] = 214911, - [SMALL_STATE(6294)] = 214928, - [SMALL_STATE(6295)] = 214941, - [SMALL_STATE(6296)] = 214958, - [SMALL_STATE(6297)] = 214973, - [SMALL_STATE(6298)] = 214992, - [SMALL_STATE(6299)] = 215011, - [SMALL_STATE(6300)] = 215024, - [SMALL_STATE(6301)] = 215037, - [SMALL_STATE(6302)] = 215052, - [SMALL_STATE(6303)] = 215067, - [SMALL_STATE(6304)] = 215084, - [SMALL_STATE(6305)] = 215103, - [SMALL_STATE(6306)] = 215118, - [SMALL_STATE(6307)] = 215131, - [SMALL_STATE(6308)] = 215146, - [SMALL_STATE(6309)] = 215161, - [SMALL_STATE(6310)] = 215178, - [SMALL_STATE(6311)] = 215195, - [SMALL_STATE(6312)] = 215210, - [SMALL_STATE(6313)] = 215229, - [SMALL_STATE(6314)] = 215244, - [SMALL_STATE(6315)] = 215263, - [SMALL_STATE(6316)] = 215282, - [SMALL_STATE(6317)] = 215297, - [SMALL_STATE(6318)] = 215314, - [SMALL_STATE(6319)] = 215331, - [SMALL_STATE(6320)] = 215346, - [SMALL_STATE(6321)] = 215361, - [SMALL_STATE(6322)] = 215380, - [SMALL_STATE(6323)] = 215399, - [SMALL_STATE(6324)] = 215418, + [SMALL_STATE(5993)] = 209014, + [SMALL_STATE(5994)] = 209035, + [SMALL_STATE(5995)] = 209060, + [SMALL_STATE(5996)] = 209083, + [SMALL_STATE(5997)] = 209100, + [SMALL_STATE(5998)] = 209125, + [SMALL_STATE(5999)] = 209148, + [SMALL_STATE(6000)] = 209173, + [SMALL_STATE(6001)] = 209198, + [SMALL_STATE(6002)] = 209223, + [SMALL_STATE(6003)] = 209246, + [SMALL_STATE(6004)] = 209263, + [SMALL_STATE(6005)] = 209284, + [SMALL_STATE(6006)] = 209305, + [SMALL_STATE(6007)] = 209324, + [SMALL_STATE(6008)] = 209341, + [SMALL_STATE(6009)] = 209362, + [SMALL_STATE(6010)] = 209383, + [SMALL_STATE(6011)] = 209404, + [SMALL_STATE(6012)] = 209421, + [SMALL_STATE(6013)] = 209446, + [SMALL_STATE(6014)] = 209471, + [SMALL_STATE(6015)] = 209488, + [SMALL_STATE(6016)] = 209507, + [SMALL_STATE(6017)] = 209526, + [SMALL_STATE(6018)] = 209545, + [SMALL_STATE(6019)] = 209570, + [SMALL_STATE(6020)] = 209587, + [SMALL_STATE(6021)] = 209608, + [SMALL_STATE(6022)] = 209633, + [SMALL_STATE(6023)] = 209654, + [SMALL_STATE(6024)] = 209675, + [SMALL_STATE(6025)] = 209692, + [SMALL_STATE(6026)] = 209715, + [SMALL_STATE(6027)] = 209732, + [SMALL_STATE(6028)] = 209757, + [SMALL_STATE(6029)] = 209782, + [SMALL_STATE(6030)] = 209807, + [SMALL_STATE(6031)] = 209823, + [SMALL_STATE(6032)] = 209845, + [SMALL_STATE(6033)] = 209867, + [SMALL_STATE(6034)] = 209889, + [SMALL_STATE(6035)] = 209911, + [SMALL_STATE(6036)] = 209933, + [SMALL_STATE(6037)] = 209949, + [SMALL_STATE(6038)] = 209963, + [SMALL_STATE(6039)] = 209979, + [SMALL_STATE(6040)] = 209997, + [SMALL_STATE(6041)] = 210015, + [SMALL_STATE(6042)] = 210037, + [SMALL_STATE(6043)] = 210055, + [SMALL_STATE(6044)] = 210071, + [SMALL_STATE(6045)] = 210093, + [SMALL_STATE(6046)] = 210115, + [SMALL_STATE(6047)] = 210131, + [SMALL_STATE(6048)] = 210151, + [SMALL_STATE(6049)] = 210173, + [SMALL_STATE(6050)] = 210191, + [SMALL_STATE(6051)] = 210205, + [SMALL_STATE(6052)] = 210227, + [SMALL_STATE(6053)] = 210249, + [SMALL_STATE(6054)] = 210271, + [SMALL_STATE(6055)] = 210293, + [SMALL_STATE(6056)] = 210315, + [SMALL_STATE(6057)] = 210337, + [SMALL_STATE(6058)] = 210359, + [SMALL_STATE(6059)] = 210381, + [SMALL_STATE(6060)] = 210399, + [SMALL_STATE(6061)] = 210417, + [SMALL_STATE(6062)] = 210435, + [SMALL_STATE(6063)] = 210453, + [SMALL_STATE(6064)] = 210471, + [SMALL_STATE(6065)] = 210493, + [SMALL_STATE(6066)] = 210513, + [SMALL_STATE(6067)] = 210529, + [SMALL_STATE(6068)] = 210551, + [SMALL_STATE(6069)] = 210573, + [SMALL_STATE(6070)] = 210595, + [SMALL_STATE(6071)] = 210617, + [SMALL_STATE(6072)] = 210639, + [SMALL_STATE(6073)] = 210655, + [SMALL_STATE(6074)] = 210677, + [SMALL_STATE(6075)] = 210699, + [SMALL_STATE(6076)] = 210721, + [SMALL_STATE(6077)] = 210743, + [SMALL_STATE(6078)] = 210765, + [SMALL_STATE(6079)] = 210787, + [SMALL_STATE(6080)] = 210809, + [SMALL_STATE(6081)] = 210831, + [SMALL_STATE(6082)] = 210853, + [SMALL_STATE(6083)] = 210869, + [SMALL_STATE(6084)] = 210891, + [SMALL_STATE(6085)] = 210909, + [SMALL_STATE(6086)] = 210927, + [SMALL_STATE(6087)] = 210949, + [SMALL_STATE(6088)] = 210969, + [SMALL_STATE(6089)] = 210987, + [SMALL_STATE(6090)] = 211005, + [SMALL_STATE(6091)] = 211025, + [SMALL_STATE(6092)] = 211045, + [SMALL_STATE(6093)] = 211063, + [SMALL_STATE(6094)] = 211081, + [SMALL_STATE(6095)] = 211101, + [SMALL_STATE(6096)] = 211115, + [SMALL_STATE(6097)] = 211137, + [SMALL_STATE(6098)] = 211157, + [SMALL_STATE(6099)] = 211175, + [SMALL_STATE(6100)] = 211197, + [SMALL_STATE(6101)] = 211215, + [SMALL_STATE(6102)] = 211233, + [SMALL_STATE(6103)] = 211251, + [SMALL_STATE(6104)] = 211271, + [SMALL_STATE(6105)] = 211287, + [SMALL_STATE(6106)] = 211303, + [SMALL_STATE(6107)] = 211319, + [SMALL_STATE(6108)] = 211337, + [SMALL_STATE(6109)] = 211353, + [SMALL_STATE(6110)] = 211375, + [SMALL_STATE(6111)] = 211389, + [SMALL_STATE(6112)] = 211411, + [SMALL_STATE(6113)] = 211429, + [SMALL_STATE(6114)] = 211451, + [SMALL_STATE(6115)] = 211467, + [SMALL_STATE(6116)] = 211489, + [SMALL_STATE(6117)] = 211509, + [SMALL_STATE(6118)] = 211527, + [SMALL_STATE(6119)] = 211543, + [SMALL_STATE(6120)] = 211559, + [SMALL_STATE(6121)] = 211579, + [SMALL_STATE(6122)] = 211595, + [SMALL_STATE(6123)] = 211617, + [SMALL_STATE(6124)] = 211637, + [SMALL_STATE(6125)] = 211659, + [SMALL_STATE(6126)] = 211679, + [SMALL_STATE(6127)] = 211697, + [SMALL_STATE(6128)] = 211717, + [SMALL_STATE(6129)] = 211739, + [SMALL_STATE(6130)] = 211761, + [SMALL_STATE(6131)] = 211783, + [SMALL_STATE(6132)] = 211803, + [SMALL_STATE(6133)] = 211825, + [SMALL_STATE(6134)] = 211847, + [SMALL_STATE(6135)] = 211869, + [SMALL_STATE(6136)] = 211891, + [SMALL_STATE(6137)] = 211913, + [SMALL_STATE(6138)] = 211935, + [SMALL_STATE(6139)] = 211957, + [SMALL_STATE(6140)] = 211979, + [SMALL_STATE(6141)] = 212001, + [SMALL_STATE(6142)] = 212023, + [SMALL_STATE(6143)] = 212045, + [SMALL_STATE(6144)] = 212067, + [SMALL_STATE(6145)] = 212089, + [SMALL_STATE(6146)] = 212103, + [SMALL_STATE(6147)] = 212121, + [SMALL_STATE(6148)] = 212143, + [SMALL_STATE(6149)] = 212165, + [SMALL_STATE(6150)] = 212179, + [SMALL_STATE(6151)] = 212201, + [SMALL_STATE(6152)] = 212215, + [SMALL_STATE(6153)] = 212237, + [SMALL_STATE(6154)] = 212259, + [SMALL_STATE(6155)] = 212281, + [SMALL_STATE(6156)] = 212299, + [SMALL_STATE(6157)] = 212321, + [SMALL_STATE(6158)] = 212341, + [SMALL_STATE(6159)] = 212361, + [SMALL_STATE(6160)] = 212383, + [SMALL_STATE(6161)] = 212405, + [SMALL_STATE(6162)] = 212427, + [SMALL_STATE(6163)] = 212445, + [SMALL_STATE(6164)] = 212467, + [SMALL_STATE(6165)] = 212489, + [SMALL_STATE(6166)] = 212511, + [SMALL_STATE(6167)] = 212533, + [SMALL_STATE(6168)] = 212555, + [SMALL_STATE(6169)] = 212571, + [SMALL_STATE(6170)] = 212587, + [SMALL_STATE(6171)] = 212605, + [SMALL_STATE(6172)] = 212623, + [SMALL_STATE(6173)] = 212639, + [SMALL_STATE(6174)] = 212661, + [SMALL_STATE(6175)] = 212683, + [SMALL_STATE(6176)] = 212703, + [SMALL_STATE(6177)] = 212725, + [SMALL_STATE(6178)] = 212743, + [SMALL_STATE(6179)] = 212761, + [SMALL_STATE(6180)] = 212783, + [SMALL_STATE(6181)] = 212805, + [SMALL_STATE(6182)] = 212827, + [SMALL_STATE(6183)] = 212845, + [SMALL_STATE(6184)] = 212863, + [SMALL_STATE(6185)] = 212885, + [SMALL_STATE(6186)] = 212907, + [SMALL_STATE(6187)] = 212929, + [SMALL_STATE(6188)] = 212951, + [SMALL_STATE(6189)] = 212973, + [SMALL_STATE(6190)] = 212991, + [SMALL_STATE(6191)] = 213013, + [SMALL_STATE(6192)] = 213035, + [SMALL_STATE(6193)] = 213057, + [SMALL_STATE(6194)] = 213077, + [SMALL_STATE(6195)] = 213095, + [SMALL_STATE(6196)] = 213117, + [SMALL_STATE(6197)] = 213139, + [SMALL_STATE(6198)] = 213161, + [SMALL_STATE(6199)] = 213183, + [SMALL_STATE(6200)] = 213205, + [SMALL_STATE(6201)] = 213227, + [SMALL_STATE(6202)] = 213249, + [SMALL_STATE(6203)] = 213271, + [SMALL_STATE(6204)] = 213293, + [SMALL_STATE(6205)] = 213315, + [SMALL_STATE(6206)] = 213337, + [SMALL_STATE(6207)] = 213359, + [SMALL_STATE(6208)] = 213381, + [SMALL_STATE(6209)] = 213403, + [SMALL_STATE(6210)] = 213425, + [SMALL_STATE(6211)] = 213447, + [SMALL_STATE(6212)] = 213469, + [SMALL_STATE(6213)] = 213491, + [SMALL_STATE(6214)] = 213513, + [SMALL_STATE(6215)] = 213535, + [SMALL_STATE(6216)] = 213557, + [SMALL_STATE(6217)] = 213579, + [SMALL_STATE(6218)] = 213601, + [SMALL_STATE(6219)] = 213623, + [SMALL_STATE(6220)] = 213645, + [SMALL_STATE(6221)] = 213667, + [SMALL_STATE(6222)] = 213689, + [SMALL_STATE(6223)] = 213711, + [SMALL_STATE(6224)] = 213733, + [SMALL_STATE(6225)] = 213755, + [SMALL_STATE(6226)] = 213777, + [SMALL_STATE(6227)] = 213799, + [SMALL_STATE(6228)] = 213821, + [SMALL_STATE(6229)] = 213843, + [SMALL_STATE(6230)] = 213865, + [SMALL_STATE(6231)] = 213887, + [SMALL_STATE(6232)] = 213909, + [SMALL_STATE(6233)] = 213931, + [SMALL_STATE(6234)] = 213953, + [SMALL_STATE(6235)] = 213975, + [SMALL_STATE(6236)] = 213997, + [SMALL_STATE(6237)] = 214019, + [SMALL_STATE(6238)] = 214041, + [SMALL_STATE(6239)] = 214063, + [SMALL_STATE(6240)] = 214085, + [SMALL_STATE(6241)] = 214107, + [SMALL_STATE(6242)] = 214127, + [SMALL_STATE(6243)] = 214147, + [SMALL_STATE(6244)] = 214167, + [SMALL_STATE(6245)] = 214189, + [SMALL_STATE(6246)] = 214206, + [SMALL_STATE(6247)] = 214219, + [SMALL_STATE(6248)] = 214232, + [SMALL_STATE(6249)] = 214251, + [SMALL_STATE(6250)] = 214264, + [SMALL_STATE(6251)] = 214279, + [SMALL_STATE(6252)] = 214296, + [SMALL_STATE(6253)] = 214311, + [SMALL_STATE(6254)] = 214324, + [SMALL_STATE(6255)] = 214341, + [SMALL_STATE(6256)] = 214354, + [SMALL_STATE(6257)] = 214367, + [SMALL_STATE(6258)] = 214380, + [SMALL_STATE(6259)] = 214399, + [SMALL_STATE(6260)] = 214418, + [SMALL_STATE(6261)] = 214435, + [SMALL_STATE(6262)] = 214454, + [SMALL_STATE(6263)] = 214471, + [SMALL_STATE(6264)] = 214490, + [SMALL_STATE(6265)] = 214503, + [SMALL_STATE(6266)] = 214522, + [SMALL_STATE(6267)] = 214541, + [SMALL_STATE(6268)] = 214560, + [SMALL_STATE(6269)] = 214579, + [SMALL_STATE(6270)] = 214598, + [SMALL_STATE(6271)] = 214617, + [SMALL_STATE(6272)] = 214636, + [SMALL_STATE(6273)] = 214655, + [SMALL_STATE(6274)] = 214674, + [SMALL_STATE(6275)] = 214687, + [SMALL_STATE(6276)] = 214700, + [SMALL_STATE(6277)] = 214715, + [SMALL_STATE(6278)] = 214732, + [SMALL_STATE(6279)] = 214745, + [SMALL_STATE(6280)] = 214760, + [SMALL_STATE(6281)] = 214773, + [SMALL_STATE(6282)] = 214786, + [SMALL_STATE(6283)] = 214805, + [SMALL_STATE(6284)] = 214820, + [SMALL_STATE(6285)] = 214833, + [SMALL_STATE(6286)] = 214846, + [SMALL_STATE(6287)] = 214859, + [SMALL_STATE(6288)] = 214874, + [SMALL_STATE(6289)] = 214887, + [SMALL_STATE(6290)] = 214900, + [SMALL_STATE(6291)] = 214917, + [SMALL_STATE(6292)] = 214930, + [SMALL_STATE(6293)] = 214943, + [SMALL_STATE(6294)] = 214956, + [SMALL_STATE(6295)] = 214973, + [SMALL_STATE(6296)] = 214986, + [SMALL_STATE(6297)] = 214999, + [SMALL_STATE(6298)] = 215012, + [SMALL_STATE(6299)] = 215025, + [SMALL_STATE(6300)] = 215038, + [SMALL_STATE(6301)] = 215051, + [SMALL_STATE(6302)] = 215064, + [SMALL_STATE(6303)] = 215083, + [SMALL_STATE(6304)] = 215102, + [SMALL_STATE(6305)] = 215121, + [SMALL_STATE(6306)] = 215140, + [SMALL_STATE(6307)] = 215159, + [SMALL_STATE(6308)] = 215178, + [SMALL_STATE(6309)] = 215197, + [SMALL_STATE(6310)] = 215216, + [SMALL_STATE(6311)] = 215229, + [SMALL_STATE(6312)] = 215242, + [SMALL_STATE(6313)] = 215257, + [SMALL_STATE(6314)] = 215270, + [SMALL_STATE(6315)] = 215287, + [SMALL_STATE(6316)] = 215300, + [SMALL_STATE(6317)] = 215313, + [SMALL_STATE(6318)] = 215328, + [SMALL_STATE(6319)] = 215341, + [SMALL_STATE(6320)] = 215354, + [SMALL_STATE(6321)] = 215371, + [SMALL_STATE(6322)] = 215384, + [SMALL_STATE(6323)] = 215397, + [SMALL_STATE(6324)] = 215416, [SMALL_STATE(6325)] = 215431, - [SMALL_STATE(6326)] = 215448, - [SMALL_STATE(6327)] = 215461, - [SMALL_STATE(6328)] = 215474, - [SMALL_STATE(6329)] = 215487, - [SMALL_STATE(6330)] = 215500, - [SMALL_STATE(6331)] = 215513, - [SMALL_STATE(6332)] = 215532, - [SMALL_STATE(6333)] = 215551, - [SMALL_STATE(6334)] = 215564, - [SMALL_STATE(6335)] = 215577, - [SMALL_STATE(6336)] = 215590, - [SMALL_STATE(6337)] = 215605, - [SMALL_STATE(6338)] = 215618, - [SMALL_STATE(6339)] = 215631, - [SMALL_STATE(6340)] = 215644, - [SMALL_STATE(6341)] = 215657, - [SMALL_STATE(6342)] = 215676, - [SMALL_STATE(6343)] = 215695, - [SMALL_STATE(6344)] = 215714, - [SMALL_STATE(6345)] = 215733, - [SMALL_STATE(6346)] = 215746, - [SMALL_STATE(6347)] = 215761, - [SMALL_STATE(6348)] = 215780, - [SMALL_STATE(6349)] = 215799, - [SMALL_STATE(6350)] = 215812, - [SMALL_STATE(6351)] = 215827, - [SMALL_STATE(6352)] = 215840, - [SMALL_STATE(6353)] = 215853, - [SMALL_STATE(6354)] = 215868, - [SMALL_STATE(6355)] = 215883, - [SMALL_STATE(6356)] = 215898, - [SMALL_STATE(6357)] = 215913, - [SMALL_STATE(6358)] = 215930, - [SMALL_STATE(6359)] = 215945, - [SMALL_STATE(6360)] = 215964, - [SMALL_STATE(6361)] = 215977, - [SMALL_STATE(6362)] = 215990, - [SMALL_STATE(6363)] = 216003, - [SMALL_STATE(6364)] = 216016, - [SMALL_STATE(6365)] = 216033, - [SMALL_STATE(6366)] = 216046, - [SMALL_STATE(6367)] = 216059, - [SMALL_STATE(6368)] = 216072, - [SMALL_STATE(6369)] = 216085, - [SMALL_STATE(6370)] = 216098, - [SMALL_STATE(6371)] = 216111, - [SMALL_STATE(6372)] = 216124, - [SMALL_STATE(6373)] = 216141, - [SMALL_STATE(6374)] = 216154, - [SMALL_STATE(6375)] = 216167, - [SMALL_STATE(6376)] = 216180, - [SMALL_STATE(6377)] = 216197, - [SMALL_STATE(6378)] = 216216, - [SMALL_STATE(6379)] = 216235, - [SMALL_STATE(6380)] = 216254, - [SMALL_STATE(6381)] = 216273, - [SMALL_STATE(6382)] = 216292, - [SMALL_STATE(6383)] = 216311, - [SMALL_STATE(6384)] = 216330, - [SMALL_STATE(6385)] = 216349, - [SMALL_STATE(6386)] = 216368, - [SMALL_STATE(6387)] = 216387, - [SMALL_STATE(6388)] = 216400, - [SMALL_STATE(6389)] = 216413, - [SMALL_STATE(6390)] = 216426, - [SMALL_STATE(6391)] = 216439, - [SMALL_STATE(6392)] = 216452, - [SMALL_STATE(6393)] = 216465, - [SMALL_STATE(6394)] = 216478, - [SMALL_STATE(6395)] = 216497, - [SMALL_STATE(6396)] = 216516, - [SMALL_STATE(6397)] = 216531, - [SMALL_STATE(6398)] = 216544, - [SMALL_STATE(6399)] = 216557, - [SMALL_STATE(6400)] = 216570, - [SMALL_STATE(6401)] = 216583, - [SMALL_STATE(6402)] = 216596, - [SMALL_STATE(6403)] = 216613, - [SMALL_STATE(6404)] = 216626, - [SMALL_STATE(6405)] = 216639, - [SMALL_STATE(6406)] = 216652, - [SMALL_STATE(6407)] = 216669, - [SMALL_STATE(6408)] = 216688, - [SMALL_STATE(6409)] = 216703, - [SMALL_STATE(6410)] = 216722, - [SMALL_STATE(6411)] = 216741, - [SMALL_STATE(6412)] = 216760, - [SMALL_STATE(6413)] = 216779, - [SMALL_STATE(6414)] = 216798, - [SMALL_STATE(6415)] = 216817, - [SMALL_STATE(6416)] = 216836, - [SMALL_STATE(6417)] = 216855, - [SMALL_STATE(6418)] = 216874, - [SMALL_STATE(6419)] = 216893, - [SMALL_STATE(6420)] = 216906, - [SMALL_STATE(6421)] = 216923, - [SMALL_STATE(6422)] = 216940, - [SMALL_STATE(6423)] = 216957, - [SMALL_STATE(6424)] = 216970, - [SMALL_STATE(6425)] = 216983, - [SMALL_STATE(6426)] = 217002, - [SMALL_STATE(6427)] = 217017, - [SMALL_STATE(6428)] = 217036, - [SMALL_STATE(6429)] = 217055, - [SMALL_STATE(6430)] = 217074, - [SMALL_STATE(6431)] = 217093, - [SMALL_STATE(6432)] = 217112, - [SMALL_STATE(6433)] = 217131, - [SMALL_STATE(6434)] = 217150, - [SMALL_STATE(6435)] = 217169, - [SMALL_STATE(6436)] = 217182, - [SMALL_STATE(6437)] = 217197, - [SMALL_STATE(6438)] = 217210, - [SMALL_STATE(6439)] = 217229, - [SMALL_STATE(6440)] = 217246, - [SMALL_STATE(6441)] = 217259, - [SMALL_STATE(6442)] = 217276, - [SMALL_STATE(6443)] = 217289, - [SMALL_STATE(6444)] = 217302, - [SMALL_STATE(6445)] = 217315, - [SMALL_STATE(6446)] = 217334, - [SMALL_STATE(6447)] = 217353, - [SMALL_STATE(6448)] = 217372, - [SMALL_STATE(6449)] = 217391, - [SMALL_STATE(6450)] = 217410, - [SMALL_STATE(6451)] = 217429, - [SMALL_STATE(6452)] = 217448, - [SMALL_STATE(6453)] = 217467, - [SMALL_STATE(6454)] = 217480, - [SMALL_STATE(6455)] = 217493, - [SMALL_STATE(6456)] = 217506, - [SMALL_STATE(6457)] = 217523, - [SMALL_STATE(6458)] = 217536, - [SMALL_STATE(6459)] = 217549, - [SMALL_STATE(6460)] = 217562, - [SMALL_STATE(6461)] = 217575, - [SMALL_STATE(6462)] = 217592, - [SMALL_STATE(6463)] = 217605, - [SMALL_STATE(6464)] = 217618, - [SMALL_STATE(6465)] = 217631, - [SMALL_STATE(6466)] = 217644, - [SMALL_STATE(6467)] = 217663, - [SMALL_STATE(6468)] = 217682, - [SMALL_STATE(6469)] = 217701, - [SMALL_STATE(6470)] = 217720, - [SMALL_STATE(6471)] = 217739, - [SMALL_STATE(6472)] = 217758, - [SMALL_STATE(6473)] = 217777, - [SMALL_STATE(6474)] = 217796, - [SMALL_STATE(6475)] = 217815, - [SMALL_STATE(6476)] = 217834, - [SMALL_STATE(6477)] = 217847, - [SMALL_STATE(6478)] = 217860, - [SMALL_STATE(6479)] = 217877, - [SMALL_STATE(6480)] = 217890, - [SMALL_STATE(6481)] = 217907, - [SMALL_STATE(6482)] = 217926, - [SMALL_STATE(6483)] = 217945, - [SMALL_STATE(6484)] = 217964, - [SMALL_STATE(6485)] = 217983, - [SMALL_STATE(6486)] = 218002, - [SMALL_STATE(6487)] = 218021, - [SMALL_STATE(6488)] = 218040, - [SMALL_STATE(6489)] = 218059, - [SMALL_STATE(6490)] = 218078, - [SMALL_STATE(6491)] = 218097, - [SMALL_STATE(6492)] = 218110, - [SMALL_STATE(6493)] = 218127, - [SMALL_STATE(6494)] = 218144, - [SMALL_STATE(6495)] = 218157, - [SMALL_STATE(6496)] = 218172, - [SMALL_STATE(6497)] = 218191, - [SMALL_STATE(6498)] = 218210, - [SMALL_STATE(6499)] = 218229, - [SMALL_STATE(6500)] = 218248, - [SMALL_STATE(6501)] = 218267, - [SMALL_STATE(6502)] = 218286, - [SMALL_STATE(6503)] = 218305, - [SMALL_STATE(6504)] = 218324, - [SMALL_STATE(6505)] = 218343, - [SMALL_STATE(6506)] = 218362, - [SMALL_STATE(6507)] = 218375, - [SMALL_STATE(6508)] = 218388, - [SMALL_STATE(6509)] = 218405, - [SMALL_STATE(6510)] = 218422, - [SMALL_STATE(6511)] = 218435, - [SMALL_STATE(6512)] = 218448, - [SMALL_STATE(6513)] = 218461, - [SMALL_STATE(6514)] = 218480, - [SMALL_STATE(6515)] = 218499, - [SMALL_STATE(6516)] = 218518, - [SMALL_STATE(6517)] = 218537, - [SMALL_STATE(6518)] = 218556, - [SMALL_STATE(6519)] = 218575, - [SMALL_STATE(6520)] = 218594, - [SMALL_STATE(6521)] = 218613, - [SMALL_STATE(6522)] = 218632, - [SMALL_STATE(6523)] = 218645, - [SMALL_STATE(6524)] = 218658, - [SMALL_STATE(6525)] = 218671, - [SMALL_STATE(6526)] = 218684, - [SMALL_STATE(6527)] = 218697, - [SMALL_STATE(6528)] = 218714, - [SMALL_STATE(6529)] = 218731, - [SMALL_STATE(6530)] = 218750, - [SMALL_STATE(6531)] = 218769, - [SMALL_STATE(6532)] = 218788, - [SMALL_STATE(6533)] = 218807, - [SMALL_STATE(6534)] = 218826, - [SMALL_STATE(6535)] = 218845, - [SMALL_STATE(6536)] = 218864, - [SMALL_STATE(6537)] = 218883, - [SMALL_STATE(6538)] = 218896, - [SMALL_STATE(6539)] = 218909, - [SMALL_STATE(6540)] = 218926, - [SMALL_STATE(6541)] = 218943, - [SMALL_STATE(6542)] = 218960, - [SMALL_STATE(6543)] = 218975, - [SMALL_STATE(6544)] = 218988, - [SMALL_STATE(6545)] = 219001, - [SMALL_STATE(6546)] = 219020, - [SMALL_STATE(6547)] = 219033, - [SMALL_STATE(6548)] = 219052, - [SMALL_STATE(6549)] = 219071, - [SMALL_STATE(6550)] = 219090, - [SMALL_STATE(6551)] = 219109, - [SMALL_STATE(6552)] = 219128, - [SMALL_STATE(6553)] = 219147, - [SMALL_STATE(6554)] = 219166, - [SMALL_STATE(6555)] = 219185, - [SMALL_STATE(6556)] = 219198, - [SMALL_STATE(6557)] = 219211, - [SMALL_STATE(6558)] = 219224, - [SMALL_STATE(6559)] = 219237, - [SMALL_STATE(6560)] = 219254, - [SMALL_STATE(6561)] = 219271, - [SMALL_STATE(6562)] = 219284, - [SMALL_STATE(6563)] = 219303, - [SMALL_STATE(6564)] = 219316, - [SMALL_STATE(6565)] = 219329, - [SMALL_STATE(6566)] = 219348, - [SMALL_STATE(6567)] = 219367, - [SMALL_STATE(6568)] = 219386, - [SMALL_STATE(6569)] = 219405, - [SMALL_STATE(6570)] = 219424, - [SMALL_STATE(6571)] = 219443, - [SMALL_STATE(6572)] = 219462, - [SMALL_STATE(6573)] = 219475, - [SMALL_STATE(6574)] = 219488, - [SMALL_STATE(6575)] = 219501, - [SMALL_STATE(6576)] = 219514, - [SMALL_STATE(6577)] = 219531, - [SMALL_STATE(6578)] = 219548, - [SMALL_STATE(6579)] = 219567, - [SMALL_STATE(6580)] = 219586, - [SMALL_STATE(6581)] = 219605, - [SMALL_STATE(6582)] = 219624, - [SMALL_STATE(6583)] = 219643, - [SMALL_STATE(6584)] = 219662, - [SMALL_STATE(6585)] = 219681, - [SMALL_STATE(6586)] = 219700, - [SMALL_STATE(6587)] = 219719, - [SMALL_STATE(6588)] = 219738, - [SMALL_STATE(6589)] = 219751, - [SMALL_STATE(6590)] = 219764, - [SMALL_STATE(6591)] = 219777, - [SMALL_STATE(6592)] = 219792, - [SMALL_STATE(6593)] = 219809, - [SMALL_STATE(6594)] = 219826, - [SMALL_STATE(6595)] = 219845, - [SMALL_STATE(6596)] = 219858, - [SMALL_STATE(6597)] = 219877, - [SMALL_STATE(6598)] = 219896, - [SMALL_STATE(6599)] = 219915, - [SMALL_STATE(6600)] = 219934, - [SMALL_STATE(6601)] = 219953, - [SMALL_STATE(6602)] = 219972, - [SMALL_STATE(6603)] = 219991, - [SMALL_STATE(6604)] = 220010, - [SMALL_STATE(6605)] = 220023, - [SMALL_STATE(6606)] = 220036, - [SMALL_STATE(6607)] = 220053, - [SMALL_STATE(6608)] = 220066, - [SMALL_STATE(6609)] = 220083, - [SMALL_STATE(6610)] = 220096, - [SMALL_STATE(6611)] = 220115, - [SMALL_STATE(6612)] = 220134, - [SMALL_STATE(6613)] = 220153, - [SMALL_STATE(6614)] = 220172, - [SMALL_STATE(6615)] = 220191, - [SMALL_STATE(6616)] = 220210, - [SMALL_STATE(6617)] = 220229, - [SMALL_STATE(6618)] = 220248, - [SMALL_STATE(6619)] = 220267, - [SMALL_STATE(6620)] = 220280, - [SMALL_STATE(6621)] = 220297, - [SMALL_STATE(6622)] = 220314, - [SMALL_STATE(6623)] = 220333, - [SMALL_STATE(6624)] = 220352, - [SMALL_STATE(6625)] = 220371, - [SMALL_STATE(6626)] = 220390, - [SMALL_STATE(6627)] = 220409, - [SMALL_STATE(6628)] = 220428, - [SMALL_STATE(6629)] = 220447, - [SMALL_STATE(6630)] = 220466, - [SMALL_STATE(6631)] = 220479, - [SMALL_STATE(6632)] = 220496, - [SMALL_STATE(6633)] = 220513, - [SMALL_STATE(6634)] = 220532, - [SMALL_STATE(6635)] = 220551, - [SMALL_STATE(6636)] = 220570, - [SMALL_STATE(6637)] = 220589, - [SMALL_STATE(6638)] = 220608, - [SMALL_STATE(6639)] = 220627, - [SMALL_STATE(6640)] = 220646, - [SMALL_STATE(6641)] = 220665, - [SMALL_STATE(6642)] = 220678, - [SMALL_STATE(6643)] = 220695, - [SMALL_STATE(6644)] = 220708, - [SMALL_STATE(6645)] = 220725, - [SMALL_STATE(6646)] = 220738, - [SMALL_STATE(6647)] = 220755, - [SMALL_STATE(6648)] = 220768, - [SMALL_STATE(6649)] = 220785, - [SMALL_STATE(6650)] = 220798, - [SMALL_STATE(6651)] = 220815, - [SMALL_STATE(6652)] = 220832, - [SMALL_STATE(6653)] = 220845, - [SMALL_STATE(6654)] = 220862, - [SMALL_STATE(6655)] = 220879, - [SMALL_STATE(6656)] = 220894, - [SMALL_STATE(6657)] = 220907, - [SMALL_STATE(6658)] = 220924, - [SMALL_STATE(6659)] = 220941, - [SMALL_STATE(6660)] = 220954, - [SMALL_STATE(6661)] = 220971, - [SMALL_STATE(6662)] = 220988, - [SMALL_STATE(6663)] = 221001, - [SMALL_STATE(6664)] = 221018, - [SMALL_STATE(6665)] = 221035, - [SMALL_STATE(6666)] = 221048, - [SMALL_STATE(6667)] = 221065, - [SMALL_STATE(6668)] = 221082, - [SMALL_STATE(6669)] = 221095, - [SMALL_STATE(6670)] = 221112, - [SMALL_STATE(6671)] = 221129, - [SMALL_STATE(6672)] = 221142, - [SMALL_STATE(6673)] = 221159, - [SMALL_STATE(6674)] = 221176, - [SMALL_STATE(6675)] = 221189, - [SMALL_STATE(6676)] = 221206, - [SMALL_STATE(6677)] = 221223, - [SMALL_STATE(6678)] = 221236, - [SMALL_STATE(6679)] = 221253, - [SMALL_STATE(6680)] = 221270, - [SMALL_STATE(6681)] = 221283, - [SMALL_STATE(6682)] = 221300, - [SMALL_STATE(6683)] = 221317, - [SMALL_STATE(6684)] = 221330, - [SMALL_STATE(6685)] = 221347, - [SMALL_STATE(6686)] = 221364, - [SMALL_STATE(6687)] = 221377, - [SMALL_STATE(6688)] = 221394, - [SMALL_STATE(6689)] = 221411, - [SMALL_STATE(6690)] = 221424, - [SMALL_STATE(6691)] = 221441, - [SMALL_STATE(6692)] = 221458, - [SMALL_STATE(6693)] = 221477, - [SMALL_STATE(6694)] = 221490, - [SMALL_STATE(6695)] = 221507, - [SMALL_STATE(6696)] = 221524, - [SMALL_STATE(6697)] = 221537, - [SMALL_STATE(6698)] = 221550, - [SMALL_STATE(6699)] = 221567, - [SMALL_STATE(6700)] = 221584, - [SMALL_STATE(6701)] = 221597, - [SMALL_STATE(6702)] = 221614, - [SMALL_STATE(6703)] = 221631, - [SMALL_STATE(6704)] = 221644, - [SMALL_STATE(6705)] = 221661, - [SMALL_STATE(6706)] = 221678, - [SMALL_STATE(6707)] = 221691, - [SMALL_STATE(6708)] = 221708, - [SMALL_STATE(6709)] = 221725, - [SMALL_STATE(6710)] = 221738, - [SMALL_STATE(6711)] = 221751, - [SMALL_STATE(6712)] = 221768, - [SMALL_STATE(6713)] = 221785, - [SMALL_STATE(6714)] = 221798, - [SMALL_STATE(6715)] = 221815, - [SMALL_STATE(6716)] = 221832, - [SMALL_STATE(6717)] = 221845, - [SMALL_STATE(6718)] = 221862, - [SMALL_STATE(6719)] = 221879, - [SMALL_STATE(6720)] = 221892, - [SMALL_STATE(6721)] = 221909, - [SMALL_STATE(6722)] = 221926, - [SMALL_STATE(6723)] = 221939, - [SMALL_STATE(6724)] = 221956, - [SMALL_STATE(6725)] = 221973, - [SMALL_STATE(6726)] = 221986, - [SMALL_STATE(6727)] = 222003, - [SMALL_STATE(6728)] = 222020, - [SMALL_STATE(6729)] = 222033, - [SMALL_STATE(6730)] = 222050, - [SMALL_STATE(6731)] = 222067, - [SMALL_STATE(6732)] = 222084, - [SMALL_STATE(6733)] = 222101, - [SMALL_STATE(6734)] = 222118, - [SMALL_STATE(6735)] = 222135, - [SMALL_STATE(6736)] = 222152, - [SMALL_STATE(6737)] = 222169, - [SMALL_STATE(6738)] = 222182, - [SMALL_STATE(6739)] = 222195, - [SMALL_STATE(6740)] = 222208, - [SMALL_STATE(6741)] = 222223, - [SMALL_STATE(6742)] = 222238, - [SMALL_STATE(6743)] = 222251, - [SMALL_STATE(6744)] = 222264, - [SMALL_STATE(6745)] = 222277, - [SMALL_STATE(6746)] = 222296, - [SMALL_STATE(6747)] = 222313, - [SMALL_STATE(6748)] = 222326, - [SMALL_STATE(6749)] = 222339, - [SMALL_STATE(6750)] = 222352, - [SMALL_STATE(6751)] = 222365, - [SMALL_STATE(6752)] = 222378, - [SMALL_STATE(6753)] = 222391, - [SMALL_STATE(6754)] = 222404, - [SMALL_STATE(6755)] = 222417, - [SMALL_STATE(6756)] = 222430, - [SMALL_STATE(6757)] = 222443, - [SMALL_STATE(6758)] = 222456, - [SMALL_STATE(6759)] = 222475, - [SMALL_STATE(6760)] = 222494, - [SMALL_STATE(6761)] = 222509, - [SMALL_STATE(6762)] = 222528, - [SMALL_STATE(6763)] = 222541, - [SMALL_STATE(6764)] = 222560, - [SMALL_STATE(6765)] = 222579, - [SMALL_STATE(6766)] = 222598, - [SMALL_STATE(6767)] = 222617, - [SMALL_STATE(6768)] = 222636, - [SMALL_STATE(6769)] = 222655, - [SMALL_STATE(6770)] = 222672, - [SMALL_STATE(6771)] = 222685, - [SMALL_STATE(6772)] = 222702, - [SMALL_STATE(6773)] = 222721, - [SMALL_STATE(6774)] = 222734, - [SMALL_STATE(6775)] = 222753, - [SMALL_STATE(6776)] = 222770, - [SMALL_STATE(6777)] = 222783, - [SMALL_STATE(6778)] = 222802, - [SMALL_STATE(6779)] = 222817, - [SMALL_STATE(6780)] = 222836, - [SMALL_STATE(6781)] = 222853, - [SMALL_STATE(6782)] = 222870, - [SMALL_STATE(6783)] = 222889, - [SMALL_STATE(6784)] = 222904, - [SMALL_STATE(6785)] = 222921, - [SMALL_STATE(6786)] = 222938, - [SMALL_STATE(6787)] = 222957, - [SMALL_STATE(6788)] = 222976, - [SMALL_STATE(6789)] = 222995, - [SMALL_STATE(6790)] = 223014, - [SMALL_STATE(6791)] = 223033, - [SMALL_STATE(6792)] = 223052, - [SMALL_STATE(6793)] = 223071, - [SMALL_STATE(6794)] = 223090, - [SMALL_STATE(6795)] = 223109, - [SMALL_STATE(6796)] = 223128, - [SMALL_STATE(6797)] = 223147, - [SMALL_STATE(6798)] = 223166, - [SMALL_STATE(6799)] = 223185, - [SMALL_STATE(6800)] = 223204, - [SMALL_STATE(6801)] = 223223, - [SMALL_STATE(6802)] = 223242, - [SMALL_STATE(6803)] = 223261, - [SMALL_STATE(6804)] = 223280, - [SMALL_STATE(6805)] = 223295, - [SMALL_STATE(6806)] = 223314, - [SMALL_STATE(6807)] = 223333, - [SMALL_STATE(6808)] = 223352, - [SMALL_STATE(6809)] = 223371, - [SMALL_STATE(6810)] = 223390, - [SMALL_STATE(6811)] = 223409, - [SMALL_STATE(6812)] = 223426, - [SMALL_STATE(6813)] = 223443, - [SMALL_STATE(6814)] = 223460, - [SMALL_STATE(6815)] = 223475, - [SMALL_STATE(6816)] = 223488, - [SMALL_STATE(6817)] = 223507, - [SMALL_STATE(6818)] = 223526, - [SMALL_STATE(6819)] = 223542, - [SMALL_STATE(6820)] = 223554, - [SMALL_STATE(6821)] = 223570, - [SMALL_STATE(6822)] = 223586, - [SMALL_STATE(6823)] = 223602, - [SMALL_STATE(6824)] = 223618, - [SMALL_STATE(6825)] = 223634, - [SMALL_STATE(6826)] = 223650, - [SMALL_STATE(6827)] = 223666, - [SMALL_STATE(6828)] = 223680, - [SMALL_STATE(6829)] = 223696, - [SMALL_STATE(6830)] = 223710, - [SMALL_STATE(6831)] = 223722, - [SMALL_STATE(6832)] = 223738, - [SMALL_STATE(6833)] = 223752, - [SMALL_STATE(6834)] = 223766, - [SMALL_STATE(6835)] = 223778, - [SMALL_STATE(6836)] = 223794, - [SMALL_STATE(6837)] = 223806, - [SMALL_STATE(6838)] = 223818, - [SMALL_STATE(6839)] = 223834, - [SMALL_STATE(6840)] = 223848, - [SMALL_STATE(6841)] = 223862, - [SMALL_STATE(6842)] = 223876, - [SMALL_STATE(6843)] = 223888, - [SMALL_STATE(6844)] = 223904, - [SMALL_STATE(6845)] = 223920, - [SMALL_STATE(6846)] = 223936, - [SMALL_STATE(6847)] = 223952, - [SMALL_STATE(6848)] = 223968, - [SMALL_STATE(6849)] = 223984, - [SMALL_STATE(6850)] = 224000, - [SMALL_STATE(6851)] = 224012, - [SMALL_STATE(6852)] = 224028, - [SMALL_STATE(6853)] = 224044, - [SMALL_STATE(6854)] = 224060, - [SMALL_STATE(6855)] = 224076, - [SMALL_STATE(6856)] = 224092, - [SMALL_STATE(6857)] = 224104, - [SMALL_STATE(6858)] = 224116, - [SMALL_STATE(6859)] = 224132, - [SMALL_STATE(6860)] = 224148, - [SMALL_STATE(6861)] = 224160, - [SMALL_STATE(6862)] = 224174, - [SMALL_STATE(6863)] = 224190, - [SMALL_STATE(6864)] = 224202, - [SMALL_STATE(6865)] = 224218, - [SMALL_STATE(6866)] = 224230, - [SMALL_STATE(6867)] = 224242, - [SMALL_STATE(6868)] = 224254, - [SMALL_STATE(6869)] = 224266, - [SMALL_STATE(6870)] = 224282, - [SMALL_STATE(6871)] = 224298, - [SMALL_STATE(6872)] = 224314, - [SMALL_STATE(6873)] = 224330, - [SMALL_STATE(6874)] = 224346, - [SMALL_STATE(6875)] = 224362, - [SMALL_STATE(6876)] = 224378, - [SMALL_STATE(6877)] = 224394, - [SMALL_STATE(6878)] = 224410, - [SMALL_STATE(6879)] = 224424, - [SMALL_STATE(6880)] = 224440, - [SMALL_STATE(6881)] = 224456, - [SMALL_STATE(6882)] = 224468, - [SMALL_STATE(6883)] = 224480, - [SMALL_STATE(6884)] = 224496, - [SMALL_STATE(6885)] = 224510, - [SMALL_STATE(6886)] = 224522, - [SMALL_STATE(6887)] = 224534, - [SMALL_STATE(6888)] = 224546, - [SMALL_STATE(6889)] = 224560, - [SMALL_STATE(6890)] = 224572, - [SMALL_STATE(6891)] = 224588, - [SMALL_STATE(6892)] = 224600, - [SMALL_STATE(6893)] = 224612, - [SMALL_STATE(6894)] = 224628, - [SMALL_STATE(6895)] = 224644, - [SMALL_STATE(6896)] = 224660, - [SMALL_STATE(6897)] = 224676, - [SMALL_STATE(6898)] = 224692, - [SMALL_STATE(6899)] = 224708, - [SMALL_STATE(6900)] = 224724, - [SMALL_STATE(6901)] = 224738, - [SMALL_STATE(6902)] = 224754, - [SMALL_STATE(6903)] = 224770, - [SMALL_STATE(6904)] = 224786, - [SMALL_STATE(6905)] = 224802, - [SMALL_STATE(6906)] = 224818, - [SMALL_STATE(6907)] = 224834, - [SMALL_STATE(6908)] = 224850, - [SMALL_STATE(6909)] = 224866, - [SMALL_STATE(6910)] = 224878, - [SMALL_STATE(6911)] = 224890, - [SMALL_STATE(6912)] = 224904, - [SMALL_STATE(6913)] = 224920, - [SMALL_STATE(6914)] = 224936, - [SMALL_STATE(6915)] = 224948, - [SMALL_STATE(6916)] = 224960, - [SMALL_STATE(6917)] = 224974, - [SMALL_STATE(6918)] = 224990, - [SMALL_STATE(6919)] = 225004, - [SMALL_STATE(6920)] = 225020, - [SMALL_STATE(6921)] = 225032, - [SMALL_STATE(6922)] = 225048, - [SMALL_STATE(6923)] = 225064, - [SMALL_STATE(6924)] = 225076, - [SMALL_STATE(6925)] = 225092, - [SMALL_STATE(6926)] = 225106, - [SMALL_STATE(6927)] = 225118, - [SMALL_STATE(6928)] = 225134, - [SMALL_STATE(6929)] = 225146, - [SMALL_STATE(6930)] = 225162, - [SMALL_STATE(6931)] = 225178, - [SMALL_STATE(6932)] = 225194, - [SMALL_STATE(6933)] = 225210, - [SMALL_STATE(6934)] = 225226, - [SMALL_STATE(6935)] = 225240, - [SMALL_STATE(6936)] = 225254, - [SMALL_STATE(6937)] = 225270, - [SMALL_STATE(6938)] = 225286, - [SMALL_STATE(6939)] = 225300, - [SMALL_STATE(6940)] = 225312, - [SMALL_STATE(6941)] = 225328, - [SMALL_STATE(6942)] = 225344, - [SMALL_STATE(6943)] = 225356, - [SMALL_STATE(6944)] = 225368, - [SMALL_STATE(6945)] = 225382, - [SMALL_STATE(6946)] = 225398, - [SMALL_STATE(6947)] = 225410, - [SMALL_STATE(6948)] = 225422, - [SMALL_STATE(6949)] = 225434, - [SMALL_STATE(6950)] = 225450, - [SMALL_STATE(6951)] = 225462, - [SMALL_STATE(6952)] = 225478, - [SMALL_STATE(6953)] = 225494, - [SMALL_STATE(6954)] = 225506, - [SMALL_STATE(6955)] = 225518, - [SMALL_STATE(6956)] = 225530, - [SMALL_STATE(6957)] = 225546, - [SMALL_STATE(6958)] = 225562, - [SMALL_STATE(6959)] = 225578, - [SMALL_STATE(6960)] = 225590, - [SMALL_STATE(6961)] = 225606, - [SMALL_STATE(6962)] = 225622, - [SMALL_STATE(6963)] = 225638, - [SMALL_STATE(6964)] = 225654, - [SMALL_STATE(6965)] = 225670, - [SMALL_STATE(6966)] = 225686, - [SMALL_STATE(6967)] = 225702, - [SMALL_STATE(6968)] = 225718, - [SMALL_STATE(6969)] = 225730, - [SMALL_STATE(6970)] = 225742, - [SMALL_STATE(6971)] = 225756, - [SMALL_STATE(6972)] = 225772, - [SMALL_STATE(6973)] = 225784, - [SMALL_STATE(6974)] = 225796, - [SMALL_STATE(6975)] = 225808, - [SMALL_STATE(6976)] = 225820, - [SMALL_STATE(6977)] = 225832, - [SMALL_STATE(6978)] = 225844, - [SMALL_STATE(6979)] = 225856, - [SMALL_STATE(6980)] = 225872, - [SMALL_STATE(6981)] = 225884, - [SMALL_STATE(6982)] = 225896, - [SMALL_STATE(6983)] = 225908, - [SMALL_STATE(6984)] = 225924, - [SMALL_STATE(6985)] = 225938, - [SMALL_STATE(6986)] = 225954, - [SMALL_STATE(6987)] = 225966, - [SMALL_STATE(6988)] = 225980, - [SMALL_STATE(6989)] = 225992, - [SMALL_STATE(6990)] = 226008, - [SMALL_STATE(6991)] = 226024, - [SMALL_STATE(6992)] = 226040, - [SMALL_STATE(6993)] = 226056, - [SMALL_STATE(6994)] = 226072, - [SMALL_STATE(6995)] = 226084, - [SMALL_STATE(6996)] = 226100, - [SMALL_STATE(6997)] = 226116, - [SMALL_STATE(6998)] = 226132, - [SMALL_STATE(6999)] = 226148, - [SMALL_STATE(7000)] = 226162, - [SMALL_STATE(7001)] = 226178, - [SMALL_STATE(7002)] = 226192, - [SMALL_STATE(7003)] = 226204, - [SMALL_STATE(7004)] = 226216, - [SMALL_STATE(7005)] = 226230, - [SMALL_STATE(7006)] = 226242, - [SMALL_STATE(7007)] = 226254, - [SMALL_STATE(7008)] = 226268, - [SMALL_STATE(7009)] = 226284, - [SMALL_STATE(7010)] = 226296, - [SMALL_STATE(7011)] = 226312, - [SMALL_STATE(7012)] = 226328, - [SMALL_STATE(7013)] = 226342, - [SMALL_STATE(7014)] = 226358, - [SMALL_STATE(7015)] = 226374, - [SMALL_STATE(7016)] = 226390, - [SMALL_STATE(7017)] = 226406, - [SMALL_STATE(7018)] = 226420, - [SMALL_STATE(7019)] = 226436, - [SMALL_STATE(7020)] = 226452, - [SMALL_STATE(7021)] = 226468, - [SMALL_STATE(7022)] = 226484, - [SMALL_STATE(7023)] = 226500, - [SMALL_STATE(7024)] = 226516, - [SMALL_STATE(7025)] = 226532, - [SMALL_STATE(7026)] = 226548, - [SMALL_STATE(7027)] = 226564, - [SMALL_STATE(7028)] = 226580, - [SMALL_STATE(7029)] = 226594, - [SMALL_STATE(7030)] = 226608, - [SMALL_STATE(7031)] = 226624, - [SMALL_STATE(7032)] = 226638, - [SMALL_STATE(7033)] = 226654, - [SMALL_STATE(7034)] = 226670, - [SMALL_STATE(7035)] = 226682, - [SMALL_STATE(7036)] = 226698, - [SMALL_STATE(7037)] = 226710, - [SMALL_STATE(7038)] = 226726, - [SMALL_STATE(7039)] = 226742, - [SMALL_STATE(7040)] = 226758, - [SMALL_STATE(7041)] = 226770, - [SMALL_STATE(7042)] = 226786, - [SMALL_STATE(7043)] = 226802, - [SMALL_STATE(7044)] = 226818, - [SMALL_STATE(7045)] = 226834, - [SMALL_STATE(7046)] = 226850, - [SMALL_STATE(7047)] = 226866, - [SMALL_STATE(7048)] = 226880, - [SMALL_STATE(7049)] = 226896, - [SMALL_STATE(7050)] = 226912, - [SMALL_STATE(7051)] = 226928, - [SMALL_STATE(7052)] = 226940, - [SMALL_STATE(7053)] = 226956, - [SMALL_STATE(7054)] = 226972, - [SMALL_STATE(7055)] = 226986, - [SMALL_STATE(7056)] = 226998, - [SMALL_STATE(7057)] = 227014, - [SMALL_STATE(7058)] = 227026, - [SMALL_STATE(7059)] = 227042, - [SMALL_STATE(7060)] = 227058, - [SMALL_STATE(7061)] = 227072, - [SMALL_STATE(7062)] = 227088, - [SMALL_STATE(7063)] = 227100, - [SMALL_STATE(7064)] = 227116, - [SMALL_STATE(7065)] = 227132, - [SMALL_STATE(7066)] = 227148, - [SMALL_STATE(7067)] = 227164, - [SMALL_STATE(7068)] = 227180, - [SMALL_STATE(7069)] = 227196, - [SMALL_STATE(7070)] = 227212, - [SMALL_STATE(7071)] = 227228, - [SMALL_STATE(7072)] = 227244, - [SMALL_STATE(7073)] = 227260, - [SMALL_STATE(7074)] = 227272, - [SMALL_STATE(7075)] = 227286, - [SMALL_STATE(7076)] = 227300, - [SMALL_STATE(7077)] = 227316, - [SMALL_STATE(7078)] = 227332, - [SMALL_STATE(7079)] = 227344, - [SMALL_STATE(7080)] = 227360, - [SMALL_STATE(7081)] = 227376, - [SMALL_STATE(7082)] = 227388, - [SMALL_STATE(7083)] = 227404, - [SMALL_STATE(7084)] = 227420, - [SMALL_STATE(7085)] = 227436, - [SMALL_STATE(7086)] = 227452, - [SMALL_STATE(7087)] = 227464, - [SMALL_STATE(7088)] = 227480, - [SMALL_STATE(7089)] = 227496, - [SMALL_STATE(7090)] = 227512, - [SMALL_STATE(7091)] = 227528, - [SMALL_STATE(7092)] = 227540, - [SMALL_STATE(7093)] = 227554, - [SMALL_STATE(7094)] = 227570, - [SMALL_STATE(7095)] = 227586, - [SMALL_STATE(7096)] = 227598, - [SMALL_STATE(7097)] = 227614, - [SMALL_STATE(7098)] = 227626, - [SMALL_STATE(7099)] = 227642, - [SMALL_STATE(7100)] = 227658, - [SMALL_STATE(7101)] = 227674, - [SMALL_STATE(7102)] = 227690, - [SMALL_STATE(7103)] = 227706, - [SMALL_STATE(7104)] = 227722, - [SMALL_STATE(7105)] = 227738, - [SMALL_STATE(7106)] = 227754, - [SMALL_STATE(7107)] = 227770, - [SMALL_STATE(7108)] = 227786, - [SMALL_STATE(7109)] = 227798, - [SMALL_STATE(7110)] = 227810, - [SMALL_STATE(7111)] = 227824, - [SMALL_STATE(7112)] = 227840, - [SMALL_STATE(7113)] = 227852, - [SMALL_STATE(7114)] = 227868, - [SMALL_STATE(7115)] = 227880, - [SMALL_STATE(7116)] = 227896, - [SMALL_STATE(7117)] = 227912, - [SMALL_STATE(7118)] = 227928, - [SMALL_STATE(7119)] = 227944, - [SMALL_STATE(7120)] = 227960, - [SMALL_STATE(7121)] = 227976, - [SMALL_STATE(7122)] = 227988, - [SMALL_STATE(7123)] = 228002, - [SMALL_STATE(7124)] = 228018, - [SMALL_STATE(7125)] = 228032, - [SMALL_STATE(7126)] = 228044, - [SMALL_STATE(7127)] = 228060, - [SMALL_STATE(7128)] = 228076, - [SMALL_STATE(7129)] = 228092, - [SMALL_STATE(7130)] = 228108, - [SMALL_STATE(7131)] = 228120, - [SMALL_STATE(7132)] = 228134, - [SMALL_STATE(7133)] = 228150, - [SMALL_STATE(7134)] = 228166, - [SMALL_STATE(7135)] = 228182, - [SMALL_STATE(7136)] = 228196, - [SMALL_STATE(7137)] = 228212, - [SMALL_STATE(7138)] = 228228, - [SMALL_STATE(7139)] = 228244, - [SMALL_STATE(7140)] = 228256, - [SMALL_STATE(7141)] = 228268, - [SMALL_STATE(7142)] = 228284, - [SMALL_STATE(7143)] = 228298, - [SMALL_STATE(7144)] = 228310, - [SMALL_STATE(7145)] = 228324, - [SMALL_STATE(7146)] = 228338, - [SMALL_STATE(7147)] = 228350, - [SMALL_STATE(7148)] = 228364, - [SMALL_STATE(7149)] = 228376, - [SMALL_STATE(7150)] = 228392, - [SMALL_STATE(7151)] = 228404, - [SMALL_STATE(7152)] = 228420, - [SMALL_STATE(7153)] = 228436, - [SMALL_STATE(7154)] = 228452, - [SMALL_STATE(7155)] = 228468, - [SMALL_STATE(7156)] = 228484, - [SMALL_STATE(7157)] = 228498, - [SMALL_STATE(7158)] = 228514, - [SMALL_STATE(7159)] = 228530, - [SMALL_STATE(7160)] = 228542, - [SMALL_STATE(7161)] = 228558, - [SMALL_STATE(7162)] = 228572, - [SMALL_STATE(7163)] = 228586, - [SMALL_STATE(7164)] = 228598, - [SMALL_STATE(7165)] = 228610, - [SMALL_STATE(7166)] = 228626, - [SMALL_STATE(7167)] = 228638, - [SMALL_STATE(7168)] = 228650, - [SMALL_STATE(7169)] = 228664, - [SMALL_STATE(7170)] = 228676, - [SMALL_STATE(7171)] = 228688, - [SMALL_STATE(7172)] = 228700, - [SMALL_STATE(7173)] = 228716, - [SMALL_STATE(7174)] = 228728, - [SMALL_STATE(7175)] = 228744, - [SMALL_STATE(7176)] = 228756, - [SMALL_STATE(7177)] = 228768, - [SMALL_STATE(7178)] = 228780, - [SMALL_STATE(7179)] = 228794, - [SMALL_STATE(7180)] = 228806, - [SMALL_STATE(7181)] = 228822, - [SMALL_STATE(7182)] = 228836, - [SMALL_STATE(7183)] = 228852, - [SMALL_STATE(7184)] = 228864, - [SMALL_STATE(7185)] = 228878, - [SMALL_STATE(7186)] = 228890, - [SMALL_STATE(7187)] = 228906, - [SMALL_STATE(7188)] = 228922, - [SMALL_STATE(7189)] = 228934, - [SMALL_STATE(7190)] = 228948, - [SMALL_STATE(7191)] = 228964, - [SMALL_STATE(7192)] = 228978, - [SMALL_STATE(7193)] = 228994, - [SMALL_STATE(7194)] = 229010, - [SMALL_STATE(7195)] = 229026, - [SMALL_STATE(7196)] = 229042, - [SMALL_STATE(7197)] = 229058, - [SMALL_STATE(7198)] = 229074, - [SMALL_STATE(7199)] = 229086, - [SMALL_STATE(7200)] = 229102, - [SMALL_STATE(7201)] = 229118, - [SMALL_STATE(7202)] = 229134, - [SMALL_STATE(7203)] = 229146, - [SMALL_STATE(7204)] = 229162, - [SMALL_STATE(7205)] = 229174, - [SMALL_STATE(7206)] = 229186, - [SMALL_STATE(7207)] = 229200, - [SMALL_STATE(7208)] = 229214, - [SMALL_STATE(7209)] = 229228, - [SMALL_STATE(7210)] = 229242, - [SMALL_STATE(7211)] = 229256, - [SMALL_STATE(7212)] = 229270, - [SMALL_STATE(7213)] = 229284, - [SMALL_STATE(7214)] = 229300, - [SMALL_STATE(7215)] = 229312, - [SMALL_STATE(7216)] = 229328, - [SMALL_STATE(7217)] = 229344, - [SMALL_STATE(7218)] = 229358, - [SMALL_STATE(7219)] = 229374, - [SMALL_STATE(7220)] = 229388, - [SMALL_STATE(7221)] = 229400, - [SMALL_STATE(7222)] = 229414, - [SMALL_STATE(7223)] = 229426, - [SMALL_STATE(7224)] = 229442, - [SMALL_STATE(7225)] = 229458, - [SMALL_STATE(7226)] = 229474, - [SMALL_STATE(7227)] = 229488, - [SMALL_STATE(7228)] = 229500, - [SMALL_STATE(7229)] = 229516, - [SMALL_STATE(7230)] = 229532, - [SMALL_STATE(7231)] = 229548, - [SMALL_STATE(7232)] = 229564, - [SMALL_STATE(7233)] = 229580, - [SMALL_STATE(7234)] = 229596, - [SMALL_STATE(7235)] = 229612, - [SMALL_STATE(7236)] = 229628, - [SMALL_STATE(7237)] = 229644, - [SMALL_STATE(7238)] = 229660, - [SMALL_STATE(7239)] = 229674, - [SMALL_STATE(7240)] = 229688, - [SMALL_STATE(7241)] = 229702, - [SMALL_STATE(7242)] = 229718, - [SMALL_STATE(7243)] = 229730, - [SMALL_STATE(7244)] = 229746, - [SMALL_STATE(7245)] = 229762, - [SMALL_STATE(7246)] = 229778, - [SMALL_STATE(7247)] = 229794, - [SMALL_STATE(7248)] = 229810, - [SMALL_STATE(7249)] = 229826, - [SMALL_STATE(7250)] = 229842, - [SMALL_STATE(7251)] = 229854, - [SMALL_STATE(7252)] = 229866, - [SMALL_STATE(7253)] = 229878, - [SMALL_STATE(7254)] = 229894, - [SMALL_STATE(7255)] = 229910, - [SMALL_STATE(7256)] = 229924, - [SMALL_STATE(7257)] = 229936, - [SMALL_STATE(7258)] = 229948, - [SMALL_STATE(7259)] = 229964, - [SMALL_STATE(7260)] = 229976, - [SMALL_STATE(7261)] = 229990, - [SMALL_STATE(7262)] = 230002, - [SMALL_STATE(7263)] = 230014, - [SMALL_STATE(7264)] = 230030, - [SMALL_STATE(7265)] = 230044, - [SMALL_STATE(7266)] = 230058, - [SMALL_STATE(7267)] = 230070, - [SMALL_STATE(7268)] = 230084, - [SMALL_STATE(7269)] = 230098, - [SMALL_STATE(7270)] = 230112, - [SMALL_STATE(7271)] = 230124, - [SMALL_STATE(7272)] = 230136, - [SMALL_STATE(7273)] = 230152, - [SMALL_STATE(7274)] = 230164, - [SMALL_STATE(7275)] = 230176, - [SMALL_STATE(7276)] = 230190, - [SMALL_STATE(7277)] = 230202, - [SMALL_STATE(7278)] = 230216, - [SMALL_STATE(7279)] = 230230, - [SMALL_STATE(7280)] = 230244, - [SMALL_STATE(7281)] = 230256, - [SMALL_STATE(7282)] = 230272, - [SMALL_STATE(7283)] = 230284, - [SMALL_STATE(7284)] = 230300, - [SMALL_STATE(7285)] = 230316, - [SMALL_STATE(7286)] = 230332, - [SMALL_STATE(7287)] = 230348, - [SMALL_STATE(7288)] = 230364, - [SMALL_STATE(7289)] = 230380, - [SMALL_STATE(7290)] = 230392, - [SMALL_STATE(7291)] = 230404, - [SMALL_STATE(7292)] = 230416, - [SMALL_STATE(7293)] = 230428, - [SMALL_STATE(7294)] = 230442, - [SMALL_STATE(7295)] = 230456, - [SMALL_STATE(7296)] = 230472, - [SMALL_STATE(7297)] = 230486, - [SMALL_STATE(7298)] = 230498, - [SMALL_STATE(7299)] = 230510, - [SMALL_STATE(7300)] = 230522, - [SMALL_STATE(7301)] = 230534, - [SMALL_STATE(7302)] = 230548, - [SMALL_STATE(7303)] = 230560, - [SMALL_STATE(7304)] = 230574, - [SMALL_STATE(7305)] = 230590, - [SMALL_STATE(7306)] = 230602, - [SMALL_STATE(7307)] = 230618, - [SMALL_STATE(7308)] = 230634, - [SMALL_STATE(7309)] = 230650, - [SMALL_STATE(7310)] = 230666, - [SMALL_STATE(7311)] = 230682, - [SMALL_STATE(7312)] = 230694, - [SMALL_STATE(7313)] = 230708, - [SMALL_STATE(7314)] = 230724, - [SMALL_STATE(7315)] = 230738, - [SMALL_STATE(7316)] = 230752, - [SMALL_STATE(7317)] = 230768, - [SMALL_STATE(7318)] = 230784, - [SMALL_STATE(7319)] = 230800, - [SMALL_STATE(7320)] = 230816, - [SMALL_STATE(7321)] = 230832, - [SMALL_STATE(7322)] = 230846, - [SMALL_STATE(7323)] = 230860, - [SMALL_STATE(7324)] = 230876, - [SMALL_STATE(7325)] = 230892, - [SMALL_STATE(7326)] = 230908, - [SMALL_STATE(7327)] = 230924, - [SMALL_STATE(7328)] = 230938, - [SMALL_STATE(7329)] = 230952, - [SMALL_STATE(7330)] = 230968, - [SMALL_STATE(7331)] = 230984, - [SMALL_STATE(7332)] = 231000, - [SMALL_STATE(7333)] = 231012, - [SMALL_STATE(7334)] = 231028, - [SMALL_STATE(7335)] = 231044, - [SMALL_STATE(7336)] = 231058, - [SMALL_STATE(7337)] = 231072, - [SMALL_STATE(7338)] = 231086, - [SMALL_STATE(7339)] = 231100, - [SMALL_STATE(7340)] = 231112, - [SMALL_STATE(7341)] = 231128, - [SMALL_STATE(7342)] = 231144, - [SMALL_STATE(7343)] = 231156, - [SMALL_STATE(7344)] = 231172, - [SMALL_STATE(7345)] = 231188, - [SMALL_STATE(7346)] = 231202, - [SMALL_STATE(7347)] = 231218, - [SMALL_STATE(7348)] = 231232, - [SMALL_STATE(7349)] = 231246, - [SMALL_STATE(7350)] = 231260, - [SMALL_STATE(7351)] = 231276, - [SMALL_STATE(7352)] = 231292, - [SMALL_STATE(7353)] = 231304, - [SMALL_STATE(7354)] = 231320, - [SMALL_STATE(7355)] = 231336, - [SMALL_STATE(7356)] = 231350, - [SMALL_STATE(7357)] = 231362, - [SMALL_STATE(7358)] = 231376, - [SMALL_STATE(7359)] = 231392, - [SMALL_STATE(7360)] = 231408, - [SMALL_STATE(7361)] = 231424, - [SMALL_STATE(7362)] = 231440, - [SMALL_STATE(7363)] = 231456, - [SMALL_STATE(7364)] = 231472, - [SMALL_STATE(7365)] = 231486, - [SMALL_STATE(7366)] = 231502, - [SMALL_STATE(7367)] = 231514, - [SMALL_STATE(7368)] = 231528, - [SMALL_STATE(7369)] = 231544, - [SMALL_STATE(7370)] = 231560, - [SMALL_STATE(7371)] = 231576, - [SMALL_STATE(7372)] = 231592, - [SMALL_STATE(7373)] = 231606, - [SMALL_STATE(7374)] = 231622, - [SMALL_STATE(7375)] = 231638, - [SMALL_STATE(7376)] = 231652, - [SMALL_STATE(7377)] = 231668, - [SMALL_STATE(7378)] = 231682, - [SMALL_STATE(7379)] = 231698, - [SMALL_STATE(7380)] = 231710, - [SMALL_STATE(7381)] = 231726, - [SMALL_STATE(7382)] = 231742, - [SMALL_STATE(7383)] = 231758, - [SMALL_STATE(7384)] = 231774, - [SMALL_STATE(7385)] = 231788, - [SMALL_STATE(7386)] = 231802, - [SMALL_STATE(7387)] = 231818, - [SMALL_STATE(7388)] = 231834, - [SMALL_STATE(7389)] = 231850, - [SMALL_STATE(7390)] = 231866, - [SMALL_STATE(7391)] = 231882, - [SMALL_STATE(7392)] = 231896, - [SMALL_STATE(7393)] = 231910, - [SMALL_STATE(7394)] = 231924, - [SMALL_STATE(7395)] = 231940, - [SMALL_STATE(7396)] = 231956, - [SMALL_STATE(7397)] = 231972, - [SMALL_STATE(7398)] = 231988, - [SMALL_STATE(7399)] = 232002, - [SMALL_STATE(7400)] = 232016, - [SMALL_STATE(7401)] = 232032, - [SMALL_STATE(7402)] = 232048, - [SMALL_STATE(7403)] = 232064, - [SMALL_STATE(7404)] = 232080, - [SMALL_STATE(7405)] = 232094, - [SMALL_STATE(7406)] = 232108, - [SMALL_STATE(7407)] = 232124, - [SMALL_STATE(7408)] = 232140, - [SMALL_STATE(7409)] = 232156, - [SMALL_STATE(7410)] = 232172, - [SMALL_STATE(7411)] = 232186, - [SMALL_STATE(7412)] = 232200, - [SMALL_STATE(7413)] = 232216, - [SMALL_STATE(7414)] = 232232, - [SMALL_STATE(7415)] = 232248, - [SMALL_STATE(7416)] = 232264, - [SMALL_STATE(7417)] = 232278, - [SMALL_STATE(7418)] = 232292, - [SMALL_STATE(7419)] = 232308, - [SMALL_STATE(7420)] = 232324, - [SMALL_STATE(7421)] = 232340, - [SMALL_STATE(7422)] = 232356, - [SMALL_STATE(7423)] = 232370, - [SMALL_STATE(7424)] = 232384, - [SMALL_STATE(7425)] = 232400, - [SMALL_STATE(7426)] = 232416, - [SMALL_STATE(7427)] = 232432, - [SMALL_STATE(7428)] = 232448, - [SMALL_STATE(7429)] = 232460, - [SMALL_STATE(7430)] = 232472, - [SMALL_STATE(7431)] = 232488, - [SMALL_STATE(7432)] = 232504, - [SMALL_STATE(7433)] = 232516, - [SMALL_STATE(7434)] = 232528, - [SMALL_STATE(7435)] = 232542, - [SMALL_STATE(7436)] = 232554, - [SMALL_STATE(7437)] = 232568, - [SMALL_STATE(7438)] = 232582, - [SMALL_STATE(7439)] = 232596, - [SMALL_STATE(7440)] = 232612, - [SMALL_STATE(7441)] = 232628, - [SMALL_STATE(7442)] = 232640, - [SMALL_STATE(7443)] = 232654, - [SMALL_STATE(7444)] = 232670, - [SMALL_STATE(7445)] = 232686, - [SMALL_STATE(7446)] = 232700, - [SMALL_STATE(7447)] = 232716, - [SMALL_STATE(7448)] = 232732, - [SMALL_STATE(7449)] = 232746, - [SMALL_STATE(7450)] = 232760, - [SMALL_STATE(7451)] = 232774, - [SMALL_STATE(7452)] = 232786, - [SMALL_STATE(7453)] = 232798, - [SMALL_STATE(7454)] = 232810, - [SMALL_STATE(7455)] = 232822, - [SMALL_STATE(7456)] = 232835, - [SMALL_STATE(7457)] = 232848, - [SMALL_STATE(7458)] = 232861, - [SMALL_STATE(7459)] = 232874, - [SMALL_STATE(7460)] = 232887, - [SMALL_STATE(7461)] = 232900, - [SMALL_STATE(7462)] = 232913, - [SMALL_STATE(7463)] = 232926, - [SMALL_STATE(7464)] = 232939, - [SMALL_STATE(7465)] = 232952, - [SMALL_STATE(7466)] = 232965, - [SMALL_STATE(7467)] = 232978, - [SMALL_STATE(7468)] = 232991, - [SMALL_STATE(7469)] = 233004, - [SMALL_STATE(7470)] = 233017, - [SMALL_STATE(7471)] = 233030, - [SMALL_STATE(7472)] = 233043, - [SMALL_STATE(7473)] = 233056, - [SMALL_STATE(7474)] = 233069, - [SMALL_STATE(7475)] = 233082, - [SMALL_STATE(7476)] = 233095, - [SMALL_STATE(7477)] = 233108, - [SMALL_STATE(7478)] = 233121, - [SMALL_STATE(7479)] = 233134, - [SMALL_STATE(7480)] = 233147, - [SMALL_STATE(7481)] = 233160, - [SMALL_STATE(7482)] = 233173, - [SMALL_STATE(7483)] = 233186, - [SMALL_STATE(7484)] = 233197, - [SMALL_STATE(7485)] = 233210, - [SMALL_STATE(7486)] = 233223, - [SMALL_STATE(7487)] = 233236, - [SMALL_STATE(7488)] = 233249, - [SMALL_STATE(7489)] = 233262, - [SMALL_STATE(7490)] = 233275, - [SMALL_STATE(7491)] = 233288, - [SMALL_STATE(7492)] = 233301, - [SMALL_STATE(7493)] = 233314, - [SMALL_STATE(7494)] = 233327, - [SMALL_STATE(7495)] = 233340, - [SMALL_STATE(7496)] = 233353, - [SMALL_STATE(7497)] = 233366, - [SMALL_STATE(7498)] = 233379, - [SMALL_STATE(7499)] = 233392, - [SMALL_STATE(7500)] = 233405, - [SMALL_STATE(7501)] = 233418, - [SMALL_STATE(7502)] = 233431, - [SMALL_STATE(7503)] = 233444, - [SMALL_STATE(7504)] = 233457, - [SMALL_STATE(7505)] = 233470, - [SMALL_STATE(7506)] = 233483, - [SMALL_STATE(7507)] = 233496, - [SMALL_STATE(7508)] = 233509, - [SMALL_STATE(7509)] = 233522, - [SMALL_STATE(7510)] = 233535, - [SMALL_STATE(7511)] = 233548, - [SMALL_STATE(7512)] = 233561, - [SMALL_STATE(7513)] = 233574, - [SMALL_STATE(7514)] = 233587, - [SMALL_STATE(7515)] = 233600, - [SMALL_STATE(7516)] = 233613, - [SMALL_STATE(7517)] = 233626, - [SMALL_STATE(7518)] = 233637, - [SMALL_STATE(7519)] = 233650, - [SMALL_STATE(7520)] = 233663, - [SMALL_STATE(7521)] = 233676, - [SMALL_STATE(7522)] = 233689, - [SMALL_STATE(7523)] = 233702, - [SMALL_STATE(7524)] = 233715, - [SMALL_STATE(7525)] = 233728, - [SMALL_STATE(7526)] = 233741, - [SMALL_STATE(7527)] = 233754, - [SMALL_STATE(7528)] = 233767, - [SMALL_STATE(7529)] = 233780, - [SMALL_STATE(7530)] = 233793, - [SMALL_STATE(7531)] = 233806, - [SMALL_STATE(7532)] = 233819, - [SMALL_STATE(7533)] = 233832, - [SMALL_STATE(7534)] = 233845, - [SMALL_STATE(7535)] = 233858, - [SMALL_STATE(7536)] = 233871, - [SMALL_STATE(7537)] = 233884, - [SMALL_STATE(7538)] = 233897, - [SMALL_STATE(7539)] = 233910, - [SMALL_STATE(7540)] = 233923, - [SMALL_STATE(7541)] = 233936, - [SMALL_STATE(7542)] = 233949, - [SMALL_STATE(7543)] = 233962, - [SMALL_STATE(7544)] = 233975, - [SMALL_STATE(7545)] = 233988, - [SMALL_STATE(7546)] = 234001, - [SMALL_STATE(7547)] = 234012, - [SMALL_STATE(7548)] = 234025, - [SMALL_STATE(7549)] = 234038, - [SMALL_STATE(7550)] = 234051, - [SMALL_STATE(7551)] = 234064, - [SMALL_STATE(7552)] = 234077, - [SMALL_STATE(7553)] = 234090, - [SMALL_STATE(7554)] = 234103, - [SMALL_STATE(7555)] = 234116, - [SMALL_STATE(7556)] = 234129, - [SMALL_STATE(7557)] = 234142, - [SMALL_STATE(7558)] = 234155, - [SMALL_STATE(7559)] = 234168, - [SMALL_STATE(7560)] = 234181, - [SMALL_STATE(7561)] = 234194, - [SMALL_STATE(7562)] = 234207, - [SMALL_STATE(7563)] = 234220, - [SMALL_STATE(7564)] = 234233, - [SMALL_STATE(7565)] = 234246, - [SMALL_STATE(7566)] = 234259, - [SMALL_STATE(7567)] = 234272, - [SMALL_STATE(7568)] = 234285, - [SMALL_STATE(7569)] = 234298, - [SMALL_STATE(7570)] = 234311, - [SMALL_STATE(7571)] = 234324, - [SMALL_STATE(7572)] = 234337, - [SMALL_STATE(7573)] = 234350, - [SMALL_STATE(7574)] = 234363, - [SMALL_STATE(7575)] = 234376, - [SMALL_STATE(7576)] = 234389, - [SMALL_STATE(7577)] = 234402, - [SMALL_STATE(7578)] = 234415, - [SMALL_STATE(7579)] = 234428, - [SMALL_STATE(7580)] = 234441, - [SMALL_STATE(7581)] = 234454, - [SMALL_STATE(7582)] = 234467, - [SMALL_STATE(7583)] = 234480, - [SMALL_STATE(7584)] = 234493, - [SMALL_STATE(7585)] = 234506, - [SMALL_STATE(7586)] = 234519, - [SMALL_STATE(7587)] = 234532, - [SMALL_STATE(7588)] = 234545, - [SMALL_STATE(7589)] = 234558, - [SMALL_STATE(7590)] = 234571, - [SMALL_STATE(7591)] = 234584, - [SMALL_STATE(7592)] = 234597, - [SMALL_STATE(7593)] = 234610, - [SMALL_STATE(7594)] = 234623, - [SMALL_STATE(7595)] = 234636, - [SMALL_STATE(7596)] = 234649, - [SMALL_STATE(7597)] = 234662, - [SMALL_STATE(7598)] = 234675, - [SMALL_STATE(7599)] = 234688, - [SMALL_STATE(7600)] = 234701, - [SMALL_STATE(7601)] = 234714, - [SMALL_STATE(7602)] = 234727, - [SMALL_STATE(7603)] = 234740, - [SMALL_STATE(7604)] = 234753, - [SMALL_STATE(7605)] = 234766, - [SMALL_STATE(7606)] = 234779, - [SMALL_STATE(7607)] = 234792, - [SMALL_STATE(7608)] = 234805, - [SMALL_STATE(7609)] = 234818, - [SMALL_STATE(7610)] = 234831, - [SMALL_STATE(7611)] = 234844, - [SMALL_STATE(7612)] = 234857, - [SMALL_STATE(7613)] = 234870, - [SMALL_STATE(7614)] = 234883, - [SMALL_STATE(7615)] = 234896, - [SMALL_STATE(7616)] = 234909, - [SMALL_STATE(7617)] = 234922, - [SMALL_STATE(7618)] = 234935, - [SMALL_STATE(7619)] = 234948, - [SMALL_STATE(7620)] = 234961, - [SMALL_STATE(7621)] = 234974, - [SMALL_STATE(7622)] = 234987, - [SMALL_STATE(7623)] = 235000, - [SMALL_STATE(7624)] = 235013, - [SMALL_STATE(7625)] = 235026, - [SMALL_STATE(7626)] = 235039, - [SMALL_STATE(7627)] = 235050, - [SMALL_STATE(7628)] = 235063, - [SMALL_STATE(7629)] = 235076, - [SMALL_STATE(7630)] = 235089, - [SMALL_STATE(7631)] = 235102, - [SMALL_STATE(7632)] = 235115, - [SMALL_STATE(7633)] = 235128, - [SMALL_STATE(7634)] = 235141, - [SMALL_STATE(7635)] = 235154, - [SMALL_STATE(7636)] = 235165, - [SMALL_STATE(7637)] = 235178, - [SMALL_STATE(7638)] = 235191, - [SMALL_STATE(7639)] = 235204, - [SMALL_STATE(7640)] = 235217, - [SMALL_STATE(7641)] = 235230, - [SMALL_STATE(7642)] = 235243, - [SMALL_STATE(7643)] = 235256, - [SMALL_STATE(7644)] = 235269, - [SMALL_STATE(7645)] = 235282, - [SMALL_STATE(7646)] = 235295, - [SMALL_STATE(7647)] = 235308, - [SMALL_STATE(7648)] = 235321, - [SMALL_STATE(7649)] = 235334, - [SMALL_STATE(7650)] = 235347, - [SMALL_STATE(7651)] = 235360, - [SMALL_STATE(7652)] = 235373, - [SMALL_STATE(7653)] = 235386, - [SMALL_STATE(7654)] = 235399, - [SMALL_STATE(7655)] = 235412, - [SMALL_STATE(7656)] = 235425, - [SMALL_STATE(7657)] = 235438, - [SMALL_STATE(7658)] = 235451, - [SMALL_STATE(7659)] = 235464, - [SMALL_STATE(7660)] = 235477, - [SMALL_STATE(7661)] = 235490, - [SMALL_STATE(7662)] = 235503, - [SMALL_STATE(7663)] = 235516, - [SMALL_STATE(7664)] = 235529, - [SMALL_STATE(7665)] = 235542, - [SMALL_STATE(7666)] = 235555, - [SMALL_STATE(7667)] = 235568, - [SMALL_STATE(7668)] = 235581, - [SMALL_STATE(7669)] = 235594, - [SMALL_STATE(7670)] = 235607, - [SMALL_STATE(7671)] = 235620, - [SMALL_STATE(7672)] = 235633, - [SMALL_STATE(7673)] = 235646, - [SMALL_STATE(7674)] = 235659, - [SMALL_STATE(7675)] = 235672, - [SMALL_STATE(7676)] = 235685, - [SMALL_STATE(7677)] = 235698, - [SMALL_STATE(7678)] = 235711, - [SMALL_STATE(7679)] = 235724, - [SMALL_STATE(7680)] = 235737, - [SMALL_STATE(7681)] = 235750, - [SMALL_STATE(7682)] = 235763, - [SMALL_STATE(7683)] = 235776, - [SMALL_STATE(7684)] = 235789, - [SMALL_STATE(7685)] = 235802, - [SMALL_STATE(7686)] = 235813, - [SMALL_STATE(7687)] = 235826, - [SMALL_STATE(7688)] = 235839, - [SMALL_STATE(7689)] = 235852, - [SMALL_STATE(7690)] = 235865, - [SMALL_STATE(7691)] = 235878, - [SMALL_STATE(7692)] = 235891, - [SMALL_STATE(7693)] = 235904, - [SMALL_STATE(7694)] = 235917, - [SMALL_STATE(7695)] = 235930, - [SMALL_STATE(7696)] = 235943, - [SMALL_STATE(7697)] = 235956, - [SMALL_STATE(7698)] = 235969, - [SMALL_STATE(7699)] = 235982, - [SMALL_STATE(7700)] = 235995, - [SMALL_STATE(7701)] = 236008, - [SMALL_STATE(7702)] = 236019, - [SMALL_STATE(7703)] = 236032, - [SMALL_STATE(7704)] = 236045, - [SMALL_STATE(7705)] = 236058, - [SMALL_STATE(7706)] = 236071, - [SMALL_STATE(7707)] = 236082, - [SMALL_STATE(7708)] = 236095, - [SMALL_STATE(7709)] = 236108, - [SMALL_STATE(7710)] = 236121, - [SMALL_STATE(7711)] = 236134, - [SMALL_STATE(7712)] = 236147, - [SMALL_STATE(7713)] = 236157, - [SMALL_STATE(7714)] = 236167, - [SMALL_STATE(7715)] = 236177, - [SMALL_STATE(7716)] = 236187, - [SMALL_STATE(7717)] = 236197, - [SMALL_STATE(7718)] = 236207, - [SMALL_STATE(7719)] = 236217, - [SMALL_STATE(7720)] = 236227, - [SMALL_STATE(7721)] = 236237, - [SMALL_STATE(7722)] = 236247, - [SMALL_STATE(7723)] = 236257, - [SMALL_STATE(7724)] = 236267, - [SMALL_STATE(7725)] = 236277, - [SMALL_STATE(7726)] = 236287, - [SMALL_STATE(7727)] = 236297, - [SMALL_STATE(7728)] = 236307, - [SMALL_STATE(7729)] = 236317, - [SMALL_STATE(7730)] = 236327, - [SMALL_STATE(7731)] = 236337, - [SMALL_STATE(7732)] = 236347, - [SMALL_STATE(7733)] = 236357, - [SMALL_STATE(7734)] = 236367, - [SMALL_STATE(7735)] = 236377, - [SMALL_STATE(7736)] = 236387, - [SMALL_STATE(7737)] = 236397, - [SMALL_STATE(7738)] = 236407, - [SMALL_STATE(7739)] = 236417, - [SMALL_STATE(7740)] = 236427, - [SMALL_STATE(7741)] = 236437, - [SMALL_STATE(7742)] = 236447, - [SMALL_STATE(7743)] = 236457, - [SMALL_STATE(7744)] = 236467, - [SMALL_STATE(7745)] = 236477, - [SMALL_STATE(7746)] = 236487, - [SMALL_STATE(7747)] = 236497, - [SMALL_STATE(7748)] = 236507, - [SMALL_STATE(7749)] = 236517, - [SMALL_STATE(7750)] = 236527, - [SMALL_STATE(7751)] = 236537, - [SMALL_STATE(7752)] = 236547, - [SMALL_STATE(7753)] = 236557, - [SMALL_STATE(7754)] = 236567, - [SMALL_STATE(7755)] = 236577, - [SMALL_STATE(7756)] = 236587, - [SMALL_STATE(7757)] = 236597, - [SMALL_STATE(7758)] = 236607, - [SMALL_STATE(7759)] = 236617, - [SMALL_STATE(7760)] = 236627, - [SMALL_STATE(7761)] = 236637, - [SMALL_STATE(7762)] = 236647, - [SMALL_STATE(7763)] = 236657, - [SMALL_STATE(7764)] = 236667, - [SMALL_STATE(7765)] = 236677, - [SMALL_STATE(7766)] = 236687, - [SMALL_STATE(7767)] = 236697, - [SMALL_STATE(7768)] = 236707, - [SMALL_STATE(7769)] = 236717, - [SMALL_STATE(7770)] = 236727, - [SMALL_STATE(7771)] = 236737, - [SMALL_STATE(7772)] = 236747, - [SMALL_STATE(7773)] = 236757, - [SMALL_STATE(7774)] = 236767, - [SMALL_STATE(7775)] = 236777, - [SMALL_STATE(7776)] = 236787, - [SMALL_STATE(7777)] = 236797, - [SMALL_STATE(7778)] = 236807, - [SMALL_STATE(7779)] = 236817, - [SMALL_STATE(7780)] = 236827, - [SMALL_STATE(7781)] = 236837, - [SMALL_STATE(7782)] = 236847, - [SMALL_STATE(7783)] = 236857, - [SMALL_STATE(7784)] = 236867, - [SMALL_STATE(7785)] = 236877, - [SMALL_STATE(7786)] = 236887, - [SMALL_STATE(7787)] = 236897, - [SMALL_STATE(7788)] = 236907, - [SMALL_STATE(7789)] = 236917, - [SMALL_STATE(7790)] = 236927, - [SMALL_STATE(7791)] = 236937, - [SMALL_STATE(7792)] = 236947, - [SMALL_STATE(7793)] = 236957, - [SMALL_STATE(7794)] = 236967, - [SMALL_STATE(7795)] = 236977, - [SMALL_STATE(7796)] = 236987, - [SMALL_STATE(7797)] = 236997, - [SMALL_STATE(7798)] = 237007, - [SMALL_STATE(7799)] = 237017, - [SMALL_STATE(7800)] = 237027, - [SMALL_STATE(7801)] = 237037, - [SMALL_STATE(7802)] = 237047, - [SMALL_STATE(7803)] = 237057, - [SMALL_STATE(7804)] = 237067, - [SMALL_STATE(7805)] = 237077, - [SMALL_STATE(7806)] = 237087, - [SMALL_STATE(7807)] = 237097, - [SMALL_STATE(7808)] = 237107, - [SMALL_STATE(7809)] = 237117, - [SMALL_STATE(7810)] = 237127, - [SMALL_STATE(7811)] = 237137, - [SMALL_STATE(7812)] = 237147, - [SMALL_STATE(7813)] = 237157, - [SMALL_STATE(7814)] = 237167, - [SMALL_STATE(7815)] = 237177, - [SMALL_STATE(7816)] = 237187, - [SMALL_STATE(7817)] = 237197, - [SMALL_STATE(7818)] = 237207, - [SMALL_STATE(7819)] = 237217, - [SMALL_STATE(7820)] = 237227, - [SMALL_STATE(7821)] = 237237, - [SMALL_STATE(7822)] = 237247, - [SMALL_STATE(7823)] = 237257, - [SMALL_STATE(7824)] = 237267, - [SMALL_STATE(7825)] = 237277, - [SMALL_STATE(7826)] = 237287, - [SMALL_STATE(7827)] = 237297, - [SMALL_STATE(7828)] = 237307, - [SMALL_STATE(7829)] = 237317, - [SMALL_STATE(7830)] = 237327, - [SMALL_STATE(7831)] = 237337, - [SMALL_STATE(7832)] = 237347, - [SMALL_STATE(7833)] = 237357, - [SMALL_STATE(7834)] = 237367, - [SMALL_STATE(7835)] = 237377, - [SMALL_STATE(7836)] = 237387, - [SMALL_STATE(7837)] = 237397, - [SMALL_STATE(7838)] = 237407, - [SMALL_STATE(7839)] = 237417, - [SMALL_STATE(7840)] = 237427, - [SMALL_STATE(7841)] = 237437, - [SMALL_STATE(7842)] = 237447, - [SMALL_STATE(7843)] = 237457, - [SMALL_STATE(7844)] = 237467, - [SMALL_STATE(7845)] = 237477, - [SMALL_STATE(7846)] = 237487, - [SMALL_STATE(7847)] = 237497, - [SMALL_STATE(7848)] = 237507, - [SMALL_STATE(7849)] = 237517, - [SMALL_STATE(7850)] = 237527, - [SMALL_STATE(7851)] = 237537, - [SMALL_STATE(7852)] = 237547, - [SMALL_STATE(7853)] = 237557, - [SMALL_STATE(7854)] = 237567, - [SMALL_STATE(7855)] = 237577, - [SMALL_STATE(7856)] = 237587, - [SMALL_STATE(7857)] = 237597, - [SMALL_STATE(7858)] = 237607, - [SMALL_STATE(7859)] = 237617, - [SMALL_STATE(7860)] = 237627, - [SMALL_STATE(7861)] = 237637, - [SMALL_STATE(7862)] = 237647, - [SMALL_STATE(7863)] = 237657, - [SMALL_STATE(7864)] = 237667, - [SMALL_STATE(7865)] = 237677, - [SMALL_STATE(7866)] = 237687, - [SMALL_STATE(7867)] = 237697, - [SMALL_STATE(7868)] = 237707, - [SMALL_STATE(7869)] = 237717, - [SMALL_STATE(7870)] = 237727, - [SMALL_STATE(7871)] = 237737, - [SMALL_STATE(7872)] = 237747, - [SMALL_STATE(7873)] = 237757, - [SMALL_STATE(7874)] = 237767, - [SMALL_STATE(7875)] = 237777, - [SMALL_STATE(7876)] = 237787, - [SMALL_STATE(7877)] = 237797, - [SMALL_STATE(7878)] = 237807, - [SMALL_STATE(7879)] = 237817, - [SMALL_STATE(7880)] = 237827, - [SMALL_STATE(7881)] = 237837, - [SMALL_STATE(7882)] = 237847, - [SMALL_STATE(7883)] = 237857, - [SMALL_STATE(7884)] = 237867, - [SMALL_STATE(7885)] = 237877, - [SMALL_STATE(7886)] = 237887, - [SMALL_STATE(7887)] = 237897, - [SMALL_STATE(7888)] = 237907, - [SMALL_STATE(7889)] = 237917, - [SMALL_STATE(7890)] = 237927, - [SMALL_STATE(7891)] = 237937, - [SMALL_STATE(7892)] = 237947, - [SMALL_STATE(7893)] = 237957, - [SMALL_STATE(7894)] = 237967, - [SMALL_STATE(7895)] = 237977, - [SMALL_STATE(7896)] = 237987, - [SMALL_STATE(7897)] = 237997, - [SMALL_STATE(7898)] = 238007, - [SMALL_STATE(7899)] = 238017, - [SMALL_STATE(7900)] = 238027, - [SMALL_STATE(7901)] = 238037, - [SMALL_STATE(7902)] = 238047, - [SMALL_STATE(7903)] = 238057, - [SMALL_STATE(7904)] = 238067, - [SMALL_STATE(7905)] = 238077, - [SMALL_STATE(7906)] = 238087, - [SMALL_STATE(7907)] = 238097, - [SMALL_STATE(7908)] = 238107, - [SMALL_STATE(7909)] = 238117, - [SMALL_STATE(7910)] = 238127, - [SMALL_STATE(7911)] = 238137, - [SMALL_STATE(7912)] = 238147, - [SMALL_STATE(7913)] = 238157, - [SMALL_STATE(7914)] = 238167, - [SMALL_STATE(7915)] = 238177, - [SMALL_STATE(7916)] = 238187, - [SMALL_STATE(7917)] = 238197, - [SMALL_STATE(7918)] = 238207, - [SMALL_STATE(7919)] = 238217, - [SMALL_STATE(7920)] = 238227, - [SMALL_STATE(7921)] = 238237, - [SMALL_STATE(7922)] = 238247, - [SMALL_STATE(7923)] = 238257, - [SMALL_STATE(7924)] = 238267, - [SMALL_STATE(7925)] = 238277, - [SMALL_STATE(7926)] = 238287, - [SMALL_STATE(7927)] = 238297, - [SMALL_STATE(7928)] = 238307, - [SMALL_STATE(7929)] = 238317, - [SMALL_STATE(7930)] = 238327, - [SMALL_STATE(7931)] = 238337, - [SMALL_STATE(7932)] = 238347, - [SMALL_STATE(7933)] = 238357, - [SMALL_STATE(7934)] = 238367, - [SMALL_STATE(7935)] = 238377, - [SMALL_STATE(7936)] = 238387, - [SMALL_STATE(7937)] = 238397, - [SMALL_STATE(7938)] = 238407, - [SMALL_STATE(7939)] = 238417, - [SMALL_STATE(7940)] = 238427, - [SMALL_STATE(7941)] = 238437, - [SMALL_STATE(7942)] = 238447, - [SMALL_STATE(7943)] = 238457, - [SMALL_STATE(7944)] = 238467, - [SMALL_STATE(7945)] = 238477, - [SMALL_STATE(7946)] = 238487, - [SMALL_STATE(7947)] = 238497, - [SMALL_STATE(7948)] = 238507, - [SMALL_STATE(7949)] = 238517, - [SMALL_STATE(7950)] = 238527, - [SMALL_STATE(7951)] = 238537, - [SMALL_STATE(7952)] = 238547, - [SMALL_STATE(7953)] = 238557, - [SMALL_STATE(7954)] = 238567, - [SMALL_STATE(7955)] = 238577, - [SMALL_STATE(7956)] = 238587, - [SMALL_STATE(7957)] = 238597, - [SMALL_STATE(7958)] = 238607, - [SMALL_STATE(7959)] = 238617, - [SMALL_STATE(7960)] = 238627, - [SMALL_STATE(7961)] = 238637, - [SMALL_STATE(7962)] = 238647, - [SMALL_STATE(7963)] = 238657, - [SMALL_STATE(7964)] = 238667, - [SMALL_STATE(7965)] = 238677, - [SMALL_STATE(7966)] = 238687, - [SMALL_STATE(7967)] = 238697, - [SMALL_STATE(7968)] = 238707, - [SMALL_STATE(7969)] = 238717, - [SMALL_STATE(7970)] = 238727, - [SMALL_STATE(7971)] = 238737, - [SMALL_STATE(7972)] = 238747, - [SMALL_STATE(7973)] = 238757, - [SMALL_STATE(7974)] = 238767, - [SMALL_STATE(7975)] = 238777, - [SMALL_STATE(7976)] = 238787, - [SMALL_STATE(7977)] = 238797, - [SMALL_STATE(7978)] = 238807, - [SMALL_STATE(7979)] = 238817, - [SMALL_STATE(7980)] = 238827, - [SMALL_STATE(7981)] = 238837, - [SMALL_STATE(7982)] = 238847, - [SMALL_STATE(7983)] = 238857, - [SMALL_STATE(7984)] = 238867, - [SMALL_STATE(7985)] = 238877, - [SMALL_STATE(7986)] = 238887, - [SMALL_STATE(7987)] = 238897, - [SMALL_STATE(7988)] = 238907, - [SMALL_STATE(7989)] = 238917, - [SMALL_STATE(7990)] = 238927, - [SMALL_STATE(7991)] = 238937, - [SMALL_STATE(7992)] = 238947, - [SMALL_STATE(7993)] = 238957, - [SMALL_STATE(7994)] = 238967, - [SMALL_STATE(7995)] = 238977, - [SMALL_STATE(7996)] = 238987, - [SMALL_STATE(7997)] = 238997, - [SMALL_STATE(7998)] = 239007, - [SMALL_STATE(7999)] = 239017, - [SMALL_STATE(8000)] = 239027, - [SMALL_STATE(8001)] = 239037, - [SMALL_STATE(8002)] = 239047, - [SMALL_STATE(8003)] = 239057, - [SMALL_STATE(8004)] = 239067, - [SMALL_STATE(8005)] = 239077, - [SMALL_STATE(8006)] = 239087, - [SMALL_STATE(8007)] = 239097, - [SMALL_STATE(8008)] = 239107, - [SMALL_STATE(8009)] = 239117, - [SMALL_STATE(8010)] = 239127, - [SMALL_STATE(8011)] = 239137, - [SMALL_STATE(8012)] = 239147, - [SMALL_STATE(8013)] = 239157, - [SMALL_STATE(8014)] = 239167, - [SMALL_STATE(8015)] = 239177, - [SMALL_STATE(8016)] = 239187, - [SMALL_STATE(8017)] = 239197, - [SMALL_STATE(8018)] = 239207, - [SMALL_STATE(8019)] = 239217, - [SMALL_STATE(8020)] = 239227, - [SMALL_STATE(8021)] = 239237, - [SMALL_STATE(8022)] = 239247, - [SMALL_STATE(8023)] = 239257, - [SMALL_STATE(8024)] = 239267, - [SMALL_STATE(8025)] = 239277, - [SMALL_STATE(8026)] = 239287, - [SMALL_STATE(8027)] = 239297, - [SMALL_STATE(8028)] = 239307, - [SMALL_STATE(8029)] = 239317, - [SMALL_STATE(8030)] = 239327, - [SMALL_STATE(8031)] = 239337, - [SMALL_STATE(8032)] = 239347, - [SMALL_STATE(8033)] = 239357, - [SMALL_STATE(8034)] = 239367, - [SMALL_STATE(8035)] = 239377, - [SMALL_STATE(8036)] = 239387, - [SMALL_STATE(8037)] = 239397, - [SMALL_STATE(8038)] = 239407, - [SMALL_STATE(8039)] = 239417, - [SMALL_STATE(8040)] = 239427, - [SMALL_STATE(8041)] = 239437, - [SMALL_STATE(8042)] = 239447, - [SMALL_STATE(8043)] = 239457, - [SMALL_STATE(8044)] = 239467, - [SMALL_STATE(8045)] = 239477, - [SMALL_STATE(8046)] = 239487, - [SMALL_STATE(8047)] = 239497, - [SMALL_STATE(8048)] = 239507, - [SMALL_STATE(8049)] = 239517, - [SMALL_STATE(8050)] = 239527, - [SMALL_STATE(8051)] = 239537, - [SMALL_STATE(8052)] = 239547, - [SMALL_STATE(8053)] = 239557, - [SMALL_STATE(8054)] = 239567, - [SMALL_STATE(8055)] = 239577, - [SMALL_STATE(8056)] = 239587, - [SMALL_STATE(8057)] = 239597, - [SMALL_STATE(8058)] = 239607, - [SMALL_STATE(8059)] = 239617, - [SMALL_STATE(8060)] = 239627, - [SMALL_STATE(8061)] = 239637, - [SMALL_STATE(8062)] = 239647, - [SMALL_STATE(8063)] = 239657, - [SMALL_STATE(8064)] = 239667, - [SMALL_STATE(8065)] = 239677, - [SMALL_STATE(8066)] = 239687, - [SMALL_STATE(8067)] = 239697, - [SMALL_STATE(8068)] = 239707, - [SMALL_STATE(8069)] = 239717, - [SMALL_STATE(8070)] = 239727, - [SMALL_STATE(8071)] = 239737, - [SMALL_STATE(8072)] = 239747, - [SMALL_STATE(8073)] = 239757, - [SMALL_STATE(8074)] = 239767, - [SMALL_STATE(8075)] = 239777, - [SMALL_STATE(8076)] = 239787, - [SMALL_STATE(8077)] = 239797, - [SMALL_STATE(8078)] = 239807, - [SMALL_STATE(8079)] = 239817, - [SMALL_STATE(8080)] = 239827, - [SMALL_STATE(8081)] = 239837, - [SMALL_STATE(8082)] = 239847, - [SMALL_STATE(8083)] = 239857, - [SMALL_STATE(8084)] = 239867, - [SMALL_STATE(8085)] = 239877, - [SMALL_STATE(8086)] = 239887, - [SMALL_STATE(8087)] = 239897, - [SMALL_STATE(8088)] = 239907, - [SMALL_STATE(8089)] = 239917, - [SMALL_STATE(8090)] = 239927, - [SMALL_STATE(8091)] = 239937, - [SMALL_STATE(8092)] = 239947, - [SMALL_STATE(8093)] = 239957, - [SMALL_STATE(8094)] = 239967, - [SMALL_STATE(8095)] = 239977, - [SMALL_STATE(8096)] = 239987, - [SMALL_STATE(8097)] = 239997, - [SMALL_STATE(8098)] = 240007, - [SMALL_STATE(8099)] = 240017, - [SMALL_STATE(8100)] = 240027, - [SMALL_STATE(8101)] = 240037, - [SMALL_STATE(8102)] = 240047, - [SMALL_STATE(8103)] = 240057, - [SMALL_STATE(8104)] = 240067, - [SMALL_STATE(8105)] = 240077, - [SMALL_STATE(8106)] = 240087, - [SMALL_STATE(8107)] = 240097, - [SMALL_STATE(8108)] = 240107, - [SMALL_STATE(8109)] = 240117, - [SMALL_STATE(8110)] = 240127, - [SMALL_STATE(8111)] = 240137, - [SMALL_STATE(8112)] = 240147, - [SMALL_STATE(8113)] = 240157, - [SMALL_STATE(8114)] = 240167, - [SMALL_STATE(8115)] = 240177, - [SMALL_STATE(8116)] = 240187, - [SMALL_STATE(8117)] = 240197, - [SMALL_STATE(8118)] = 240207, - [SMALL_STATE(8119)] = 240217, - [SMALL_STATE(8120)] = 240227, - [SMALL_STATE(8121)] = 240237, - [SMALL_STATE(8122)] = 240247, - [SMALL_STATE(8123)] = 240257, - [SMALL_STATE(8124)] = 240267, - [SMALL_STATE(8125)] = 240277, - [SMALL_STATE(8126)] = 240287, - [SMALL_STATE(8127)] = 240297, - [SMALL_STATE(8128)] = 240307, - [SMALL_STATE(8129)] = 240317, - [SMALL_STATE(8130)] = 240327, - [SMALL_STATE(8131)] = 240337, - [SMALL_STATE(8132)] = 240347, - [SMALL_STATE(8133)] = 240357, - [SMALL_STATE(8134)] = 240367, - [SMALL_STATE(8135)] = 240377, - [SMALL_STATE(8136)] = 240387, - [SMALL_STATE(8137)] = 240397, - [SMALL_STATE(8138)] = 240407, - [SMALL_STATE(8139)] = 240417, - [SMALL_STATE(8140)] = 240427, - [SMALL_STATE(8141)] = 240437, - [SMALL_STATE(8142)] = 240447, - [SMALL_STATE(8143)] = 240457, - [SMALL_STATE(8144)] = 240467, - [SMALL_STATE(8145)] = 240477, - [SMALL_STATE(8146)] = 240487, - [SMALL_STATE(8147)] = 240497, - [SMALL_STATE(8148)] = 240507, - [SMALL_STATE(8149)] = 240517, - [SMALL_STATE(8150)] = 240527, - [SMALL_STATE(8151)] = 240537, - [SMALL_STATE(8152)] = 240547, - [SMALL_STATE(8153)] = 240557, - [SMALL_STATE(8154)] = 240567, - [SMALL_STATE(8155)] = 240577, - [SMALL_STATE(8156)] = 240587, - [SMALL_STATE(8157)] = 240597, - [SMALL_STATE(8158)] = 240607, - [SMALL_STATE(8159)] = 240617, - [SMALL_STATE(8160)] = 240627, - [SMALL_STATE(8161)] = 240637, - [SMALL_STATE(8162)] = 240647, - [SMALL_STATE(8163)] = 240657, - [SMALL_STATE(8164)] = 240667, - [SMALL_STATE(8165)] = 240677, - [SMALL_STATE(8166)] = 240687, - [SMALL_STATE(8167)] = 240697, - [SMALL_STATE(8168)] = 240707, - [SMALL_STATE(8169)] = 240717, - [SMALL_STATE(8170)] = 240727, - [SMALL_STATE(8171)] = 240737, - [SMALL_STATE(8172)] = 240747, - [SMALL_STATE(8173)] = 240757, - [SMALL_STATE(8174)] = 240767, + [SMALL_STATE(6326)] = 215450, + [SMALL_STATE(6327)] = 215469, + [SMALL_STATE(6328)] = 215488, + [SMALL_STATE(6329)] = 215507, + [SMALL_STATE(6330)] = 215526, + [SMALL_STATE(6331)] = 215545, + [SMALL_STATE(6332)] = 215564, + [SMALL_STATE(6333)] = 215583, + [SMALL_STATE(6334)] = 215598, + [SMALL_STATE(6335)] = 215611, + [SMALL_STATE(6336)] = 215628, + [SMALL_STATE(6337)] = 215641, + [SMALL_STATE(6338)] = 215660, + [SMALL_STATE(6339)] = 215673, + [SMALL_STATE(6340)] = 215692, + [SMALL_STATE(6341)] = 215705, + [SMALL_STATE(6342)] = 215722, + [SMALL_STATE(6343)] = 215735, + [SMALL_STATE(6344)] = 215750, + [SMALL_STATE(6345)] = 215763, + [SMALL_STATE(6346)] = 215776, + [SMALL_STATE(6347)] = 215789, + [SMALL_STATE(6348)] = 215808, + [SMALL_STATE(6349)] = 215827, + [SMALL_STATE(6350)] = 215846, + [SMALL_STATE(6351)] = 215865, + [SMALL_STATE(6352)] = 215884, + [SMALL_STATE(6353)] = 215903, + [SMALL_STATE(6354)] = 215922, + [SMALL_STATE(6355)] = 215941, + [SMALL_STATE(6356)] = 215954, + [SMALL_STATE(6357)] = 215967, + [SMALL_STATE(6358)] = 215980, + [SMALL_STATE(6359)] = 215993, + [SMALL_STATE(6360)] = 216010, + [SMALL_STATE(6361)] = 216023, + [SMALL_STATE(6362)] = 216036, + [SMALL_STATE(6363)] = 216049, + [SMALL_STATE(6364)] = 216062, + [SMALL_STATE(6365)] = 216079, + [SMALL_STATE(6366)] = 216094, + [SMALL_STATE(6367)] = 216107, + [SMALL_STATE(6368)] = 216120, + [SMALL_STATE(6369)] = 216137, + [SMALL_STATE(6370)] = 216150, + [SMALL_STATE(6371)] = 216169, + [SMALL_STATE(6372)] = 216188, + [SMALL_STATE(6373)] = 216207, + [SMALL_STATE(6374)] = 216226, + [SMALL_STATE(6375)] = 216245, + [SMALL_STATE(6376)] = 216264, + [SMALL_STATE(6377)] = 216283, + [SMALL_STATE(6378)] = 216302, + [SMALL_STATE(6379)] = 216321, + [SMALL_STATE(6380)] = 216338, + [SMALL_STATE(6381)] = 216357, + [SMALL_STATE(6382)] = 216370, + [SMALL_STATE(6383)] = 216387, + [SMALL_STATE(6384)] = 216406, + [SMALL_STATE(6385)] = 216419, + [SMALL_STATE(6386)] = 216436, + [SMALL_STATE(6387)] = 216455, + [SMALL_STATE(6388)] = 216468, + [SMALL_STATE(6389)] = 216485, + [SMALL_STATE(6390)] = 216504, + [SMALL_STATE(6391)] = 216523, + [SMALL_STATE(6392)] = 216542, + [SMALL_STATE(6393)] = 216561, + [SMALL_STATE(6394)] = 216580, + [SMALL_STATE(6395)] = 216599, + [SMALL_STATE(6396)] = 216618, + [SMALL_STATE(6397)] = 216637, + [SMALL_STATE(6398)] = 216656, + [SMALL_STATE(6399)] = 216675, + [SMALL_STATE(6400)] = 216688, + [SMALL_STATE(6401)] = 216707, + [SMALL_STATE(6402)] = 216724, + [SMALL_STATE(6403)] = 216743, + [SMALL_STATE(6404)] = 216756, + [SMALL_STATE(6405)] = 216775, + [SMALL_STATE(6406)] = 216792, + [SMALL_STATE(6407)] = 216811, + [SMALL_STATE(6408)] = 216828, + [SMALL_STATE(6409)] = 216841, + [SMALL_STATE(6410)] = 216854, + [SMALL_STATE(6411)] = 216867, + [SMALL_STATE(6412)] = 216886, + [SMALL_STATE(6413)] = 216905, + [SMALL_STATE(6414)] = 216924, + [SMALL_STATE(6415)] = 216943, + [SMALL_STATE(6416)] = 216962, + [SMALL_STATE(6417)] = 216981, + [SMALL_STATE(6418)] = 217000, + [SMALL_STATE(6419)] = 217019, + [SMALL_STATE(6420)] = 217032, + [SMALL_STATE(6421)] = 217045, + [SMALL_STATE(6422)] = 217062, + [SMALL_STATE(6423)] = 217075, + [SMALL_STATE(6424)] = 217088, + [SMALL_STATE(6425)] = 217101, + [SMALL_STATE(6426)] = 217120, + [SMALL_STATE(6427)] = 217137, + [SMALL_STATE(6428)] = 217150, + [SMALL_STATE(6429)] = 217165, + [SMALL_STATE(6430)] = 217184, + [SMALL_STATE(6431)] = 217203, + [SMALL_STATE(6432)] = 217222, + [SMALL_STATE(6433)] = 217241, + [SMALL_STATE(6434)] = 217260, + [SMALL_STATE(6435)] = 217279, + [SMALL_STATE(6436)] = 217298, + [SMALL_STATE(6437)] = 217317, + [SMALL_STATE(6438)] = 217336, + [SMALL_STATE(6439)] = 217349, + [SMALL_STATE(6440)] = 217362, + [SMALL_STATE(6441)] = 217379, + [SMALL_STATE(6442)] = 217392, + [SMALL_STATE(6443)] = 217409, + [SMALL_STATE(6444)] = 217426, + [SMALL_STATE(6445)] = 217443, + [SMALL_STATE(6446)] = 217462, + [SMALL_STATE(6447)] = 217481, + [SMALL_STATE(6448)] = 217500, + [SMALL_STATE(6449)] = 217519, + [SMALL_STATE(6450)] = 217538, + [SMALL_STATE(6451)] = 217557, + [SMALL_STATE(6452)] = 217576, + [SMALL_STATE(6453)] = 217595, + [SMALL_STATE(6454)] = 217608, + [SMALL_STATE(6455)] = 217621, + [SMALL_STATE(6456)] = 217638, + [SMALL_STATE(6457)] = 217657, + [SMALL_STATE(6458)] = 217670, + [SMALL_STATE(6459)] = 217687, + [SMALL_STATE(6460)] = 217700, + [SMALL_STATE(6461)] = 217713, + [SMALL_STATE(6462)] = 217726, + [SMALL_STATE(6463)] = 217745, + [SMALL_STATE(6464)] = 217758, + [SMALL_STATE(6465)] = 217777, + [SMALL_STATE(6466)] = 217796, + [SMALL_STATE(6467)] = 217815, + [SMALL_STATE(6468)] = 217834, + [SMALL_STATE(6469)] = 217853, + [SMALL_STATE(6470)] = 217872, + [SMALL_STATE(6471)] = 217891, + [SMALL_STATE(6472)] = 217910, + [SMALL_STATE(6473)] = 217929, + [SMALL_STATE(6474)] = 217942, + [SMALL_STATE(6475)] = 217961, + [SMALL_STATE(6476)] = 217974, + [SMALL_STATE(6477)] = 217987, + [SMALL_STATE(6478)] = 218004, + [SMALL_STATE(6479)] = 218017, + [SMALL_STATE(6480)] = 218034, + [SMALL_STATE(6481)] = 218051, + [SMALL_STATE(6482)] = 218064, + [SMALL_STATE(6483)] = 218077, + [SMALL_STATE(6484)] = 218096, + [SMALL_STATE(6485)] = 218115, + [SMALL_STATE(6486)] = 218134, + [SMALL_STATE(6487)] = 218153, + [SMALL_STATE(6488)] = 218172, + [SMALL_STATE(6489)] = 218191, + [SMALL_STATE(6490)] = 218210, + [SMALL_STATE(6491)] = 218229, + [SMALL_STATE(6492)] = 218248, + [SMALL_STATE(6493)] = 218261, + [SMALL_STATE(6494)] = 218280, + [SMALL_STATE(6495)] = 218297, + [SMALL_STATE(6496)] = 218310, + [SMALL_STATE(6497)] = 218327, + [SMALL_STATE(6498)] = 218340, + [SMALL_STATE(6499)] = 218353, + [SMALL_STATE(6500)] = 218372, + [SMALL_STATE(6501)] = 218391, + [SMALL_STATE(6502)] = 218410, + [SMALL_STATE(6503)] = 218429, + [SMALL_STATE(6504)] = 218448, + [SMALL_STATE(6505)] = 218467, + [SMALL_STATE(6506)] = 218486, + [SMALL_STATE(6507)] = 218505, + [SMALL_STATE(6508)] = 218524, + [SMALL_STATE(6509)] = 218537, + [SMALL_STATE(6510)] = 218550, + [SMALL_STATE(6511)] = 218567, + [SMALL_STATE(6512)] = 218586, + [SMALL_STATE(6513)] = 218603, + [SMALL_STATE(6514)] = 218620, + [SMALL_STATE(6515)] = 218639, + [SMALL_STATE(6516)] = 218658, + [SMALL_STATE(6517)] = 218677, + [SMALL_STATE(6518)] = 218696, + [SMALL_STATE(6519)] = 218715, + [SMALL_STATE(6520)] = 218734, + [SMALL_STATE(6521)] = 218753, + [SMALL_STATE(6522)] = 218772, + [SMALL_STATE(6523)] = 218789, + [SMALL_STATE(6524)] = 218802, + [SMALL_STATE(6525)] = 218815, + [SMALL_STATE(6526)] = 218832, + [SMALL_STATE(6527)] = 218849, + [SMALL_STATE(6528)] = 218868, + [SMALL_STATE(6529)] = 218887, + [SMALL_STATE(6530)] = 218906, + [SMALL_STATE(6531)] = 218925, + [SMALL_STATE(6532)] = 218944, + [SMALL_STATE(6533)] = 218963, + [SMALL_STATE(6534)] = 218982, + [SMALL_STATE(6535)] = 219001, + [SMALL_STATE(6536)] = 219020, + [SMALL_STATE(6537)] = 219039, + [SMALL_STATE(6538)] = 219052, + [SMALL_STATE(6539)] = 219069, + [SMALL_STATE(6540)] = 219086, + [SMALL_STATE(6541)] = 219105, + [SMALL_STATE(6542)] = 219124, + [SMALL_STATE(6543)] = 219143, + [SMALL_STATE(6544)] = 219162, + [SMALL_STATE(6545)] = 219181, + [SMALL_STATE(6546)] = 219200, + [SMALL_STATE(6547)] = 219219, + [SMALL_STATE(6548)] = 219238, + [SMALL_STATE(6549)] = 219257, + [SMALL_STATE(6550)] = 219270, + [SMALL_STATE(6551)] = 219287, + [SMALL_STATE(6552)] = 219304, + [SMALL_STATE(6553)] = 219323, + [SMALL_STATE(6554)] = 219342, + [SMALL_STATE(6555)] = 219361, + [SMALL_STATE(6556)] = 219380, + [SMALL_STATE(6557)] = 219399, + [SMALL_STATE(6558)] = 219418, + [SMALL_STATE(6559)] = 219437, + [SMALL_STATE(6560)] = 219456, + [SMALL_STATE(6561)] = 219469, + [SMALL_STATE(6562)] = 219486, + [SMALL_STATE(6563)] = 219503, + [SMALL_STATE(6564)] = 219516, + [SMALL_STATE(6565)] = 219533, + [SMALL_STATE(6566)] = 219546, + [SMALL_STATE(6567)] = 219563, + [SMALL_STATE(6568)] = 219576, + [SMALL_STATE(6569)] = 219593, + [SMALL_STATE(6570)] = 219610, + [SMALL_STATE(6571)] = 219623, + [SMALL_STATE(6572)] = 219640, + [SMALL_STATE(6573)] = 219657, + [SMALL_STATE(6574)] = 219670, + [SMALL_STATE(6575)] = 219687, + [SMALL_STATE(6576)] = 219704, + [SMALL_STATE(6577)] = 219717, + [SMALL_STATE(6578)] = 219734, + [SMALL_STATE(6579)] = 219751, + [SMALL_STATE(6580)] = 219764, + [SMALL_STATE(6581)] = 219781, + [SMALL_STATE(6582)] = 219798, + [SMALL_STATE(6583)] = 219811, + [SMALL_STATE(6584)] = 219824, + [SMALL_STATE(6585)] = 219841, + [SMALL_STATE(6586)] = 219858, + [SMALL_STATE(6587)] = 219877, + [SMALL_STATE(6588)] = 219890, + [SMALL_STATE(6589)] = 219907, + [SMALL_STATE(6590)] = 219924, + [SMALL_STATE(6591)] = 219937, + [SMALL_STATE(6592)] = 219954, + [SMALL_STATE(6593)] = 219971, + [SMALL_STATE(6594)] = 219984, + [SMALL_STATE(6595)] = 220001, + [SMALL_STATE(6596)] = 220018, + [SMALL_STATE(6597)] = 220031, + [SMALL_STATE(6598)] = 220048, + [SMALL_STATE(6599)] = 220065, + [SMALL_STATE(6600)] = 220084, + [SMALL_STATE(6601)] = 220097, + [SMALL_STATE(6602)] = 220114, + [SMALL_STATE(6603)] = 220131, + [SMALL_STATE(6604)] = 220144, + [SMALL_STATE(6605)] = 220157, + [SMALL_STATE(6606)] = 220174, + [SMALL_STATE(6607)] = 220191, + [SMALL_STATE(6608)] = 220204, + [SMALL_STATE(6609)] = 220217, + [SMALL_STATE(6610)] = 220234, + [SMALL_STATE(6611)] = 220251, + [SMALL_STATE(6612)] = 220264, + [SMALL_STATE(6613)] = 220281, + [SMALL_STATE(6614)] = 220298, + [SMALL_STATE(6615)] = 220311, + [SMALL_STATE(6616)] = 220328, + [SMALL_STATE(6617)] = 220345, + [SMALL_STATE(6618)] = 220358, + [SMALL_STATE(6619)] = 220375, + [SMALL_STATE(6620)] = 220392, + [SMALL_STATE(6621)] = 220405, + [SMALL_STATE(6622)] = 220422, + [SMALL_STATE(6623)] = 220439, + [SMALL_STATE(6624)] = 220452, + [SMALL_STATE(6625)] = 220469, + [SMALL_STATE(6626)] = 220486, + [SMALL_STATE(6627)] = 220499, + [SMALL_STATE(6628)] = 220516, + [SMALL_STATE(6629)] = 220533, + [SMALL_STATE(6630)] = 220546, + [SMALL_STATE(6631)] = 220563, + [SMALL_STATE(6632)] = 220580, + [SMALL_STATE(6633)] = 220593, + [SMALL_STATE(6634)] = 220610, + [SMALL_STATE(6635)] = 220627, + [SMALL_STATE(6636)] = 220640, + [SMALL_STATE(6637)] = 220657, + [SMALL_STATE(6638)] = 220674, + [SMALL_STATE(6639)] = 220687, + [SMALL_STATE(6640)] = 220704, + [SMALL_STATE(6641)] = 220721, + [SMALL_STATE(6642)] = 220734, + [SMALL_STATE(6643)] = 220751, + [SMALL_STATE(6644)] = 220768, + [SMALL_STATE(6645)] = 220781, + [SMALL_STATE(6646)] = 220798, + [SMALL_STATE(6647)] = 220815, + [SMALL_STATE(6648)] = 220828, + [SMALL_STATE(6649)] = 220845, + [SMALL_STATE(6650)] = 220862, + [SMALL_STATE(6651)] = 220879, + [SMALL_STATE(6652)] = 220896, + [SMALL_STATE(6653)] = 220913, + [SMALL_STATE(6654)] = 220930, + [SMALL_STATE(6655)] = 220947, + [SMALL_STATE(6656)] = 220964, + [SMALL_STATE(6657)] = 220977, + [SMALL_STATE(6658)] = 220990, + [SMALL_STATE(6659)] = 221003, + [SMALL_STATE(6660)] = 221016, + [SMALL_STATE(6661)] = 221035, + [SMALL_STATE(6662)] = 221054, + [SMALL_STATE(6663)] = 221067, + [SMALL_STATE(6664)] = 221080, + [SMALL_STATE(6665)] = 221097, + [SMALL_STATE(6666)] = 221112, + [SMALL_STATE(6667)] = 221127, + [SMALL_STATE(6668)] = 221140, + [SMALL_STATE(6669)] = 221159, + [SMALL_STATE(6670)] = 221172, + [SMALL_STATE(6671)] = 221185, + [SMALL_STATE(6672)] = 221198, + [SMALL_STATE(6673)] = 221217, + [SMALL_STATE(6674)] = 221232, + [SMALL_STATE(6675)] = 221251, + [SMALL_STATE(6676)] = 221270, + [SMALL_STATE(6677)] = 221289, + [SMALL_STATE(6678)] = 221308, + [SMALL_STATE(6679)] = 221327, + [SMALL_STATE(6680)] = 221346, + [SMALL_STATE(6681)] = 221361, + [SMALL_STATE(6682)] = 221380, + [SMALL_STATE(6683)] = 221399, + [SMALL_STATE(6684)] = 221414, + [SMALL_STATE(6685)] = 221433, + [SMALL_STATE(6686)] = 221448, + [SMALL_STATE(6687)] = 221465, + [SMALL_STATE(6688)] = 221478, + [SMALL_STATE(6689)] = 221495, + [SMALL_STATE(6690)] = 221508, + [SMALL_STATE(6691)] = 221525, + [SMALL_STATE(6692)] = 221538, + [SMALL_STATE(6693)] = 221551, + [SMALL_STATE(6694)] = 221564, + [SMALL_STATE(6695)] = 221579, + [SMALL_STATE(6696)] = 221594, + [SMALL_STATE(6697)] = 221609, + [SMALL_STATE(6698)] = 221622, + [SMALL_STATE(6699)] = 221637, + [SMALL_STATE(6700)] = 221654, + [SMALL_STATE(6701)] = 221669, + [SMALL_STATE(6702)] = 221682, + [SMALL_STATE(6703)] = 221701, + [SMALL_STATE(6704)] = 221720, + [SMALL_STATE(6705)] = 221733, + [SMALL_STATE(6706)] = 221746, + [SMALL_STATE(6707)] = 221759, + [SMALL_STATE(6708)] = 221772, + [SMALL_STATE(6709)] = 221785, + [SMALL_STATE(6710)] = 221798, + [SMALL_STATE(6711)] = 221811, + [SMALL_STATE(6712)] = 221824, + [SMALL_STATE(6713)] = 221837, + [SMALL_STATE(6714)] = 221850, + [SMALL_STATE(6715)] = 221863, + [SMALL_STATE(6716)] = 221876, + [SMALL_STATE(6717)] = 221893, + [SMALL_STATE(6718)] = 221912, + [SMALL_STATE(6719)] = 221925, + [SMALL_STATE(6720)] = 221938, + [SMALL_STATE(6721)] = 221951, + [SMALL_STATE(6722)] = 221970, + [SMALL_STATE(6723)] = 221989, + [SMALL_STATE(6724)] = 222002, + [SMALL_STATE(6725)] = 222021, + [SMALL_STATE(6726)] = 222034, + [SMALL_STATE(6727)] = 222047, + [SMALL_STATE(6728)] = 222062, + [SMALL_STATE(6729)] = 222081, + [SMALL_STATE(6730)] = 222096, + [SMALL_STATE(6731)] = 222109, + [SMALL_STATE(6732)] = 222122, + [SMALL_STATE(6733)] = 222139, + [SMALL_STATE(6734)] = 222158, + [SMALL_STATE(6735)] = 222173, + [SMALL_STATE(6736)] = 222186, + [SMALL_STATE(6737)] = 222199, + [SMALL_STATE(6738)] = 222218, + [SMALL_STATE(6739)] = 222237, + [SMALL_STATE(6740)] = 222256, + [SMALL_STATE(6741)] = 222273, + [SMALL_STATE(6742)] = 222292, + [SMALL_STATE(6743)] = 222311, + [SMALL_STATE(6744)] = 222328, + [SMALL_STATE(6745)] = 222341, + [SMALL_STATE(6746)] = 222354, + [SMALL_STATE(6747)] = 222367, + [SMALL_STATE(6748)] = 222380, + [SMALL_STATE(6749)] = 222395, + [SMALL_STATE(6750)] = 222414, + [SMALL_STATE(6751)] = 222433, + [SMALL_STATE(6752)] = 222452, + [SMALL_STATE(6753)] = 222471, + [SMALL_STATE(6754)] = 222486, + [SMALL_STATE(6755)] = 222499, + [SMALL_STATE(6756)] = 222518, + [SMALL_STATE(6757)] = 222537, + [SMALL_STATE(6758)] = 222550, + [SMALL_STATE(6759)] = 222569, + [SMALL_STATE(6760)] = 222588, + [SMALL_STATE(6761)] = 222607, + [SMALL_STATE(6762)] = 222626, + [SMALL_STATE(6763)] = 222645, + [SMALL_STATE(6764)] = 222664, + [SMALL_STATE(6765)] = 222677, + [SMALL_STATE(6766)] = 222694, + [SMALL_STATE(6767)] = 222709, + [SMALL_STATE(6768)] = 222724, + [SMALL_STATE(6769)] = 222741, + [SMALL_STATE(6770)] = 222754, + [SMALL_STATE(6771)] = 222769, + [SMALL_STATE(6772)] = 222788, + [SMALL_STATE(6773)] = 222807, + [SMALL_STATE(6774)] = 222826, + [SMALL_STATE(6775)] = 222845, + [SMALL_STATE(6776)] = 222858, + [SMALL_STATE(6777)] = 222875, + [SMALL_STATE(6778)] = 222890, + [SMALL_STATE(6779)] = 222903, + [SMALL_STATE(6780)] = 222922, + [SMALL_STATE(6781)] = 222941, + [SMALL_STATE(6782)] = 222958, + [SMALL_STATE(6783)] = 222977, + [SMALL_STATE(6784)] = 222994, + [SMALL_STATE(6785)] = 223011, + [SMALL_STATE(6786)] = 223028, + [SMALL_STATE(6787)] = 223045, + [SMALL_STATE(6788)] = 223058, + [SMALL_STATE(6789)] = 223071, + [SMALL_STATE(6790)] = 223084, + [SMALL_STATE(6791)] = 223097, + [SMALL_STATE(6792)] = 223110, + [SMALL_STATE(6793)] = 223125, + [SMALL_STATE(6794)] = 223144, + [SMALL_STATE(6795)] = 223157, + [SMALL_STATE(6796)] = 223176, + [SMALL_STATE(6797)] = 223195, + [SMALL_STATE(6798)] = 223214, + [SMALL_STATE(6799)] = 223233, + [SMALL_STATE(6800)] = 223252, + [SMALL_STATE(6801)] = 223267, + [SMALL_STATE(6802)] = 223280, + [SMALL_STATE(6803)] = 223293, + [SMALL_STATE(6804)] = 223312, + [SMALL_STATE(6805)] = 223331, + [SMALL_STATE(6806)] = 223350, + [SMALL_STATE(6807)] = 223369, + [SMALL_STATE(6808)] = 223382, + [SMALL_STATE(6809)] = 223399, + [SMALL_STATE(6810)] = 223416, + [SMALL_STATE(6811)] = 223429, + [SMALL_STATE(6812)] = 223442, + [SMALL_STATE(6813)] = 223455, + [SMALL_STATE(6814)] = 223474, + [SMALL_STATE(6815)] = 223489, + [SMALL_STATE(6816)] = 223502, + [SMALL_STATE(6817)] = 223521, + [SMALL_STATE(6818)] = 223540, + [SMALL_STATE(6819)] = 223553, + [SMALL_STATE(6820)] = 223569, + [SMALL_STATE(6821)] = 223581, + [SMALL_STATE(6822)] = 223597, + [SMALL_STATE(6823)] = 223613, + [SMALL_STATE(6824)] = 223629, + [SMALL_STATE(6825)] = 223645, + [SMALL_STATE(6826)] = 223659, + [SMALL_STATE(6827)] = 223675, + [SMALL_STATE(6828)] = 223691, + [SMALL_STATE(6829)] = 223703, + [SMALL_STATE(6830)] = 223717, + [SMALL_STATE(6831)] = 223733, + [SMALL_STATE(6832)] = 223747, + [SMALL_STATE(6833)] = 223759, + [SMALL_STATE(6834)] = 223771, + [SMALL_STATE(6835)] = 223783, + [SMALL_STATE(6836)] = 223799, + [SMALL_STATE(6837)] = 223811, + [SMALL_STATE(6838)] = 223823, + [SMALL_STATE(6839)] = 223837, + [SMALL_STATE(6840)] = 223853, + [SMALL_STATE(6841)] = 223869, + [SMALL_STATE(6842)] = 223883, + [SMALL_STATE(6843)] = 223899, + [SMALL_STATE(6844)] = 223915, + [SMALL_STATE(6845)] = 223929, + [SMALL_STATE(6846)] = 223943, + [SMALL_STATE(6847)] = 223959, + [SMALL_STATE(6848)] = 223975, + [SMALL_STATE(6849)] = 223991, + [SMALL_STATE(6850)] = 224007, + [SMALL_STATE(6851)] = 224023, + [SMALL_STATE(6852)] = 224039, + [SMALL_STATE(6853)] = 224055, + [SMALL_STATE(6854)] = 224071, + [SMALL_STATE(6855)] = 224085, + [SMALL_STATE(6856)] = 224101, + [SMALL_STATE(6857)] = 224115, + [SMALL_STATE(6858)] = 224131, + [SMALL_STATE(6859)] = 224147, + [SMALL_STATE(6860)] = 224163, + [SMALL_STATE(6861)] = 224179, + [SMALL_STATE(6862)] = 224191, + [SMALL_STATE(6863)] = 224203, + [SMALL_STATE(6864)] = 224219, + [SMALL_STATE(6865)] = 224231, + [SMALL_STATE(6866)] = 224243, + [SMALL_STATE(6867)] = 224259, + [SMALL_STATE(6868)] = 224271, + [SMALL_STATE(6869)] = 224283, + [SMALL_STATE(6870)] = 224297, + [SMALL_STATE(6871)] = 224313, + [SMALL_STATE(6872)] = 224329, + [SMALL_STATE(6873)] = 224345, + [SMALL_STATE(6874)] = 224361, + [SMALL_STATE(6875)] = 224377, + [SMALL_STATE(6876)] = 224393, + [SMALL_STATE(6877)] = 224409, + [SMALL_STATE(6878)] = 224425, + [SMALL_STATE(6879)] = 224441, + [SMALL_STATE(6880)] = 224457, + [SMALL_STATE(6881)] = 224469, + [SMALL_STATE(6882)] = 224485, + [SMALL_STATE(6883)] = 224501, + [SMALL_STATE(6884)] = 224517, + [SMALL_STATE(6885)] = 224533, + [SMALL_STATE(6886)] = 224545, + [SMALL_STATE(6887)] = 224557, + [SMALL_STATE(6888)] = 224573, + [SMALL_STATE(6889)] = 224589, + [SMALL_STATE(6890)] = 224603, + [SMALL_STATE(6891)] = 224619, + [SMALL_STATE(6892)] = 224633, + [SMALL_STATE(6893)] = 224649, + [SMALL_STATE(6894)] = 224665, + [SMALL_STATE(6895)] = 224677, + [SMALL_STATE(6896)] = 224693, + [SMALL_STATE(6897)] = 224709, + [SMALL_STATE(6898)] = 224721, + [SMALL_STATE(6899)] = 224737, + [SMALL_STATE(6900)] = 224753, + [SMALL_STATE(6901)] = 224769, + [SMALL_STATE(6902)] = 224785, + [SMALL_STATE(6903)] = 224801, + [SMALL_STATE(6904)] = 224817, + [SMALL_STATE(6905)] = 224833, + [SMALL_STATE(6906)] = 224849, + [SMALL_STATE(6907)] = 224865, + [SMALL_STATE(6908)] = 224881, + [SMALL_STATE(6909)] = 224893, + [SMALL_STATE(6910)] = 224905, + [SMALL_STATE(6911)] = 224917, + [SMALL_STATE(6912)] = 224929, + [SMALL_STATE(6913)] = 224943, + [SMALL_STATE(6914)] = 224955, + [SMALL_STATE(6915)] = 224969, + [SMALL_STATE(6916)] = 224985, + [SMALL_STATE(6917)] = 224997, + [SMALL_STATE(6918)] = 225011, + [SMALL_STATE(6919)] = 225027, + [SMALL_STATE(6920)] = 225043, + [SMALL_STATE(6921)] = 225055, + [SMALL_STATE(6922)] = 225071, + [SMALL_STATE(6923)] = 225083, + [SMALL_STATE(6924)] = 225097, + [SMALL_STATE(6925)] = 225113, + [SMALL_STATE(6926)] = 225129, + [SMALL_STATE(6927)] = 225145, + [SMALL_STATE(6928)] = 225159, + [SMALL_STATE(6929)] = 225175, + [SMALL_STATE(6930)] = 225187, + [SMALL_STATE(6931)] = 225203, + [SMALL_STATE(6932)] = 225219, + [SMALL_STATE(6933)] = 225233, + [SMALL_STATE(6934)] = 225249, + [SMALL_STATE(6935)] = 225261, + [SMALL_STATE(6936)] = 225277, + [SMALL_STATE(6937)] = 225291, + [SMALL_STATE(6938)] = 225307, + [SMALL_STATE(6939)] = 225319, + [SMALL_STATE(6940)] = 225335, + [SMALL_STATE(6941)] = 225351, + [SMALL_STATE(6942)] = 225365, + [SMALL_STATE(6943)] = 225377, + [SMALL_STATE(6944)] = 225393, + [SMALL_STATE(6945)] = 225405, + [SMALL_STATE(6946)] = 225421, + [SMALL_STATE(6947)] = 225435, + [SMALL_STATE(6948)] = 225451, + [SMALL_STATE(6949)] = 225467, + [SMALL_STATE(6950)] = 225483, + [SMALL_STATE(6951)] = 225499, + [SMALL_STATE(6952)] = 225515, + [SMALL_STATE(6953)] = 225531, + [SMALL_STATE(6954)] = 225547, + [SMALL_STATE(6955)] = 225559, + [SMALL_STATE(6956)] = 225571, + [SMALL_STATE(6957)] = 225587, + [SMALL_STATE(6958)] = 225603, + [SMALL_STATE(6959)] = 225619, + [SMALL_STATE(6960)] = 225631, + [SMALL_STATE(6961)] = 225645, + [SMALL_STATE(6962)] = 225657, + [SMALL_STATE(6963)] = 225673, + [SMALL_STATE(6964)] = 225685, + [SMALL_STATE(6965)] = 225697, + [SMALL_STATE(6966)] = 225709, + [SMALL_STATE(6967)] = 225725, + [SMALL_STATE(6968)] = 225741, + [SMALL_STATE(6969)] = 225753, + [SMALL_STATE(6970)] = 225765, + [SMALL_STATE(6971)] = 225781, + [SMALL_STATE(6972)] = 225797, + [SMALL_STATE(6973)] = 225813, + [SMALL_STATE(6974)] = 225829, + [SMALL_STATE(6975)] = 225845, + [SMALL_STATE(6976)] = 225861, + [SMALL_STATE(6977)] = 225877, + [SMALL_STATE(6978)] = 225893, + [SMALL_STATE(6979)] = 225905, + [SMALL_STATE(6980)] = 225921, + [SMALL_STATE(6981)] = 225933, + [SMALL_STATE(6982)] = 225945, + [SMALL_STATE(6983)] = 225957, + [SMALL_STATE(6984)] = 225971, + [SMALL_STATE(6985)] = 225983, + [SMALL_STATE(6986)] = 225997, + [SMALL_STATE(6987)] = 226013, + [SMALL_STATE(6988)] = 226029, + [SMALL_STATE(6989)] = 226041, + [SMALL_STATE(6990)] = 226053, + [SMALL_STATE(6991)] = 226069, + [SMALL_STATE(6992)] = 226085, + [SMALL_STATE(6993)] = 226101, + [SMALL_STATE(6994)] = 226115, + [SMALL_STATE(6995)] = 226131, + [SMALL_STATE(6996)] = 226143, + [SMALL_STATE(6997)] = 226159, + [SMALL_STATE(6998)] = 226175, + [SMALL_STATE(6999)] = 226191, + [SMALL_STATE(7000)] = 226203, + [SMALL_STATE(7001)] = 226219, + [SMALL_STATE(7002)] = 226233, + [SMALL_STATE(7003)] = 226249, + [SMALL_STATE(7004)] = 226265, + [SMALL_STATE(7005)] = 226277, + [SMALL_STATE(7006)] = 226289, + [SMALL_STATE(7007)] = 226305, + [SMALL_STATE(7008)] = 226317, + [SMALL_STATE(7009)] = 226329, + [SMALL_STATE(7010)] = 226341, + [SMALL_STATE(7011)] = 226353, + [SMALL_STATE(7012)] = 226369, + [SMALL_STATE(7013)] = 226381, + [SMALL_STATE(7014)] = 226393, + [SMALL_STATE(7015)] = 226405, + [SMALL_STATE(7016)] = 226421, + [SMALL_STATE(7017)] = 226437, + [SMALL_STATE(7018)] = 226449, + [SMALL_STATE(7019)] = 226465, + [SMALL_STATE(7020)] = 226481, + [SMALL_STATE(7021)] = 226497, + [SMALL_STATE(7022)] = 226509, + [SMALL_STATE(7023)] = 226525, + [SMALL_STATE(7024)] = 226541, + [SMALL_STATE(7025)] = 226557, + [SMALL_STATE(7026)] = 226573, + [SMALL_STATE(7027)] = 226585, + [SMALL_STATE(7028)] = 226601, + [SMALL_STATE(7029)] = 226613, + [SMALL_STATE(7030)] = 226625, + [SMALL_STATE(7031)] = 226641, + [SMALL_STATE(7032)] = 226657, + [SMALL_STATE(7033)] = 226673, + [SMALL_STATE(7034)] = 226689, + [SMALL_STATE(7035)] = 226705, + [SMALL_STATE(7036)] = 226721, + [SMALL_STATE(7037)] = 226733, + [SMALL_STATE(7038)] = 226749, + [SMALL_STATE(7039)] = 226765, + [SMALL_STATE(7040)] = 226781, + [SMALL_STATE(7041)] = 226793, + [SMALL_STATE(7042)] = 226809, + [SMALL_STATE(7043)] = 226825, + [SMALL_STATE(7044)] = 226841, + [SMALL_STATE(7045)] = 226857, + [SMALL_STATE(7046)] = 226869, + [SMALL_STATE(7047)] = 226881, + [SMALL_STATE(7048)] = 226897, + [SMALL_STATE(7049)] = 226913, + [SMALL_STATE(7050)] = 226925, + [SMALL_STATE(7051)] = 226941, + [SMALL_STATE(7052)] = 226957, + [SMALL_STATE(7053)] = 226973, + [SMALL_STATE(7054)] = 226989, + [SMALL_STATE(7055)] = 227005, + [SMALL_STATE(7056)] = 227019, + [SMALL_STATE(7057)] = 227035, + [SMALL_STATE(7058)] = 227051, + [SMALL_STATE(7059)] = 227067, + [SMALL_STATE(7060)] = 227083, + [SMALL_STATE(7061)] = 227099, + [SMALL_STATE(7062)] = 227115, + [SMALL_STATE(7063)] = 227131, + [SMALL_STATE(7064)] = 227147, + [SMALL_STATE(7065)] = 227163, + [SMALL_STATE(7066)] = 227179, + [SMALL_STATE(7067)] = 227193, + [SMALL_STATE(7068)] = 227205, + [SMALL_STATE(7069)] = 227217, + [SMALL_STATE(7070)] = 227229, + [SMALL_STATE(7071)] = 227241, + [SMALL_STATE(7072)] = 227253, + [SMALL_STATE(7073)] = 227269, + [SMALL_STATE(7074)] = 227281, + [SMALL_STATE(7075)] = 227297, + [SMALL_STATE(7076)] = 227313, + [SMALL_STATE(7077)] = 227325, + [SMALL_STATE(7078)] = 227337, + [SMALL_STATE(7079)] = 227353, + [SMALL_STATE(7080)] = 227369, + [SMALL_STATE(7081)] = 227385, + [SMALL_STATE(7082)] = 227401, + [SMALL_STATE(7083)] = 227417, + [SMALL_STATE(7084)] = 227433, + [SMALL_STATE(7085)] = 227449, + [SMALL_STATE(7086)] = 227461, + [SMALL_STATE(7087)] = 227475, + [SMALL_STATE(7088)] = 227491, + [SMALL_STATE(7089)] = 227505, + [SMALL_STATE(7090)] = 227521, + [SMALL_STATE(7091)] = 227535, + [SMALL_STATE(7092)] = 227551, + [SMALL_STATE(7093)] = 227567, + [SMALL_STATE(7094)] = 227583, + [SMALL_STATE(7095)] = 227599, + [SMALL_STATE(7096)] = 227613, + [SMALL_STATE(7097)] = 227629, + [SMALL_STATE(7098)] = 227645, + [SMALL_STATE(7099)] = 227661, + [SMALL_STATE(7100)] = 227677, + [SMALL_STATE(7101)] = 227693, + [SMALL_STATE(7102)] = 227709, + [SMALL_STATE(7103)] = 227721, + [SMALL_STATE(7104)] = 227737, + [SMALL_STATE(7105)] = 227753, + [SMALL_STATE(7106)] = 227765, + [SMALL_STATE(7107)] = 227781, + [SMALL_STATE(7108)] = 227797, + [SMALL_STATE(7109)] = 227813, + [SMALL_STATE(7110)] = 227829, + [SMALL_STATE(7111)] = 227845, + [SMALL_STATE(7112)] = 227861, + [SMALL_STATE(7113)] = 227877, + [SMALL_STATE(7114)] = 227893, + [SMALL_STATE(7115)] = 227909, + [SMALL_STATE(7116)] = 227923, + [SMALL_STATE(7117)] = 227935, + [SMALL_STATE(7118)] = 227951, + [SMALL_STATE(7119)] = 227967, + [SMALL_STATE(7120)] = 227983, + [SMALL_STATE(7121)] = 227999, + [SMALL_STATE(7122)] = 228015, + [SMALL_STATE(7123)] = 228027, + [SMALL_STATE(7124)] = 228043, + [SMALL_STATE(7125)] = 228055, + [SMALL_STATE(7126)] = 228071, + [SMALL_STATE(7127)] = 228087, + [SMALL_STATE(7128)] = 228099, + [SMALL_STATE(7129)] = 228115, + [SMALL_STATE(7130)] = 228127, + [SMALL_STATE(7131)] = 228139, + [SMALL_STATE(7132)] = 228151, + [SMALL_STATE(7133)] = 228163, + [SMALL_STATE(7134)] = 228177, + [SMALL_STATE(7135)] = 228189, + [SMALL_STATE(7136)] = 228201, + [SMALL_STATE(7137)] = 228213, + [SMALL_STATE(7138)] = 228225, + [SMALL_STATE(7139)] = 228239, + [SMALL_STATE(7140)] = 228253, + [SMALL_STATE(7141)] = 228265, + [SMALL_STATE(7142)] = 228277, + [SMALL_STATE(7143)] = 228293, + [SMALL_STATE(7144)] = 228305, + [SMALL_STATE(7145)] = 228317, + [SMALL_STATE(7146)] = 228333, + [SMALL_STATE(7147)] = 228345, + [SMALL_STATE(7148)] = 228361, + [SMALL_STATE(7149)] = 228375, + [SMALL_STATE(7150)] = 228391, + [SMALL_STATE(7151)] = 228403, + [SMALL_STATE(7152)] = 228417, + [SMALL_STATE(7153)] = 228433, + [SMALL_STATE(7154)] = 228449, + [SMALL_STATE(7155)] = 228465, + [SMALL_STATE(7156)] = 228481, + [SMALL_STATE(7157)] = 228495, + [SMALL_STATE(7158)] = 228509, + [SMALL_STATE(7159)] = 228521, + [SMALL_STATE(7160)] = 228535, + [SMALL_STATE(7161)] = 228549, + [SMALL_STATE(7162)] = 228563, + [SMALL_STATE(7163)] = 228579, + [SMALL_STATE(7164)] = 228593, + [SMALL_STATE(7165)] = 228609, + [SMALL_STATE(7166)] = 228621, + [SMALL_STATE(7167)] = 228635, + [SMALL_STATE(7168)] = 228649, + [SMALL_STATE(7169)] = 228663, + [SMALL_STATE(7170)] = 228675, + [SMALL_STATE(7171)] = 228689, + [SMALL_STATE(7172)] = 228703, + [SMALL_STATE(7173)] = 228715, + [SMALL_STATE(7174)] = 228729, + [SMALL_STATE(7175)] = 228741, + [SMALL_STATE(7176)] = 228753, + [SMALL_STATE(7177)] = 228767, + [SMALL_STATE(7178)] = 228781, + [SMALL_STATE(7179)] = 228793, + [SMALL_STATE(7180)] = 228805, + [SMALL_STATE(7181)] = 228821, + [SMALL_STATE(7182)] = 228833, + [SMALL_STATE(7183)] = 228847, + [SMALL_STATE(7184)] = 228861, + [SMALL_STATE(7185)] = 228875, + [SMALL_STATE(7186)] = 228887, + [SMALL_STATE(7187)] = 228903, + [SMALL_STATE(7188)] = 228919, + [SMALL_STATE(7189)] = 228935, + [SMALL_STATE(7190)] = 228947, + [SMALL_STATE(7191)] = 228959, + [SMALL_STATE(7192)] = 228971, + [SMALL_STATE(7193)] = 228987, + [SMALL_STATE(7194)] = 228999, + [SMALL_STATE(7195)] = 229011, + [SMALL_STATE(7196)] = 229023, + [SMALL_STATE(7197)] = 229039, + [SMALL_STATE(7198)] = 229053, + [SMALL_STATE(7199)] = 229067, + [SMALL_STATE(7200)] = 229081, + [SMALL_STATE(7201)] = 229097, + [SMALL_STATE(7202)] = 229113, + [SMALL_STATE(7203)] = 229127, + [SMALL_STATE(7204)] = 229139, + [SMALL_STATE(7205)] = 229153, + [SMALL_STATE(7206)] = 229167, + [SMALL_STATE(7207)] = 229179, + [SMALL_STATE(7208)] = 229193, + [SMALL_STATE(7209)] = 229209, + [SMALL_STATE(7210)] = 229225, + [SMALL_STATE(7211)] = 229239, + [SMALL_STATE(7212)] = 229255, + [SMALL_STATE(7213)] = 229271, + [SMALL_STATE(7214)] = 229283, + [SMALL_STATE(7215)] = 229297, + [SMALL_STATE(7216)] = 229311, + [SMALL_STATE(7217)] = 229325, + [SMALL_STATE(7218)] = 229339, + [SMALL_STATE(7219)] = 229353, + [SMALL_STATE(7220)] = 229365, + [SMALL_STATE(7221)] = 229379, + [SMALL_STATE(7222)] = 229395, + [SMALL_STATE(7223)] = 229411, + [SMALL_STATE(7224)] = 229423, + [SMALL_STATE(7225)] = 229437, + [SMALL_STATE(7226)] = 229451, + [SMALL_STATE(7227)] = 229467, + [SMALL_STATE(7228)] = 229483, + [SMALL_STATE(7229)] = 229499, + [SMALL_STATE(7230)] = 229511, + [SMALL_STATE(7231)] = 229523, + [SMALL_STATE(7232)] = 229539, + [SMALL_STATE(7233)] = 229555, + [SMALL_STATE(7234)] = 229567, + [SMALL_STATE(7235)] = 229583, + [SMALL_STATE(7236)] = 229599, + [SMALL_STATE(7237)] = 229613, + [SMALL_STATE(7238)] = 229627, + [SMALL_STATE(7239)] = 229639, + [SMALL_STATE(7240)] = 229655, + [SMALL_STATE(7241)] = 229669, + [SMALL_STATE(7242)] = 229685, + [SMALL_STATE(7243)] = 229701, + [SMALL_STATE(7244)] = 229717, + [SMALL_STATE(7245)] = 229731, + [SMALL_STATE(7246)] = 229743, + [SMALL_STATE(7247)] = 229755, + [SMALL_STATE(7248)] = 229771, + [SMALL_STATE(7249)] = 229783, + [SMALL_STATE(7250)] = 229795, + [SMALL_STATE(7251)] = 229809, + [SMALL_STATE(7252)] = 229825, + [SMALL_STATE(7253)] = 229837, + [SMALL_STATE(7254)] = 229851, + [SMALL_STATE(7255)] = 229865, + [SMALL_STATE(7256)] = 229877, + [SMALL_STATE(7257)] = 229889, + [SMALL_STATE(7258)] = 229903, + [SMALL_STATE(7259)] = 229919, + [SMALL_STATE(7260)] = 229935, + [SMALL_STATE(7261)] = 229951, + [SMALL_STATE(7262)] = 229963, + [SMALL_STATE(7263)] = 229979, + [SMALL_STATE(7264)] = 229991, + [SMALL_STATE(7265)] = 230005, + [SMALL_STATE(7266)] = 230019, + [SMALL_STATE(7267)] = 230033, + [SMALL_STATE(7268)] = 230045, + [SMALL_STATE(7269)] = 230059, + [SMALL_STATE(7270)] = 230075, + [SMALL_STATE(7271)] = 230091, + [SMALL_STATE(7272)] = 230107, + [SMALL_STATE(7273)] = 230123, + [SMALL_STATE(7274)] = 230139, + [SMALL_STATE(7275)] = 230155, + [SMALL_STATE(7276)] = 230171, + [SMALL_STATE(7277)] = 230185, + [SMALL_STATE(7278)] = 230197, + [SMALL_STATE(7279)] = 230209, + [SMALL_STATE(7280)] = 230225, + [SMALL_STATE(7281)] = 230239, + [SMALL_STATE(7282)] = 230255, + [SMALL_STATE(7283)] = 230267, + [SMALL_STATE(7284)] = 230281, + [SMALL_STATE(7285)] = 230297, + [SMALL_STATE(7286)] = 230309, + [SMALL_STATE(7287)] = 230323, + [SMALL_STATE(7288)] = 230337, + [SMALL_STATE(7289)] = 230353, + [SMALL_STATE(7290)] = 230369, + [SMALL_STATE(7291)] = 230383, + [SMALL_STATE(7292)] = 230399, + [SMALL_STATE(7293)] = 230411, + [SMALL_STATE(7294)] = 230427, + [SMALL_STATE(7295)] = 230443, + [SMALL_STATE(7296)] = 230459, + [SMALL_STATE(7297)] = 230475, + [SMALL_STATE(7298)] = 230491, + [SMALL_STATE(7299)] = 230505, + [SMALL_STATE(7300)] = 230517, + [SMALL_STATE(7301)] = 230533, + [SMALL_STATE(7302)] = 230547, + [SMALL_STATE(7303)] = 230559, + [SMALL_STATE(7304)] = 230573, + [SMALL_STATE(7305)] = 230585, + [SMALL_STATE(7306)] = 230601, + [SMALL_STATE(7307)] = 230617, + [SMALL_STATE(7308)] = 230633, + [SMALL_STATE(7309)] = 230649, + [SMALL_STATE(7310)] = 230663, + [SMALL_STATE(7311)] = 230677, + [SMALL_STATE(7312)] = 230693, + [SMALL_STATE(7313)] = 230707, + [SMALL_STATE(7314)] = 230721, + [SMALL_STATE(7315)] = 230737, + [SMALL_STATE(7316)] = 230753, + [SMALL_STATE(7317)] = 230765, + [SMALL_STATE(7318)] = 230781, + [SMALL_STATE(7319)] = 230797, + [SMALL_STATE(7320)] = 230811, + [SMALL_STATE(7321)] = 230825, + [SMALL_STATE(7322)] = 230841, + [SMALL_STATE(7323)] = 230857, + [SMALL_STATE(7324)] = 230873, + [SMALL_STATE(7325)] = 230889, + [SMALL_STATE(7326)] = 230901, + [SMALL_STATE(7327)] = 230917, + [SMALL_STATE(7328)] = 230933, + [SMALL_STATE(7329)] = 230947, + [SMALL_STATE(7330)] = 230959, + [SMALL_STATE(7331)] = 230975, + [SMALL_STATE(7332)] = 230989, + [SMALL_STATE(7333)] = 231005, + [SMALL_STATE(7334)] = 231021, + [SMALL_STATE(7335)] = 231037, + [SMALL_STATE(7336)] = 231053, + [SMALL_STATE(7337)] = 231069, + [SMALL_STATE(7338)] = 231083, + [SMALL_STATE(7339)] = 231095, + [SMALL_STATE(7340)] = 231111, + [SMALL_STATE(7341)] = 231125, + [SMALL_STATE(7342)] = 231141, + [SMALL_STATE(7343)] = 231157, + [SMALL_STATE(7344)] = 231173, + [SMALL_STATE(7345)] = 231189, + [SMALL_STATE(7346)] = 231203, + [SMALL_STATE(7347)] = 231215, + [SMALL_STATE(7348)] = 231229, + [SMALL_STATE(7349)] = 231245, + [SMALL_STATE(7350)] = 231257, + [SMALL_STATE(7351)] = 231273, + [SMALL_STATE(7352)] = 231289, + [SMALL_STATE(7353)] = 231305, + [SMALL_STATE(7354)] = 231321, + [SMALL_STATE(7355)] = 231335, + [SMALL_STATE(7356)] = 231349, + [SMALL_STATE(7357)] = 231365, + [SMALL_STATE(7358)] = 231381, + [SMALL_STATE(7359)] = 231393, + [SMALL_STATE(7360)] = 231409, + [SMALL_STATE(7361)] = 231425, + [SMALL_STATE(7362)] = 231439, + [SMALL_STATE(7363)] = 231455, + [SMALL_STATE(7364)] = 231469, + [SMALL_STATE(7365)] = 231485, + [SMALL_STATE(7366)] = 231501, + [SMALL_STATE(7367)] = 231517, + [SMALL_STATE(7368)] = 231533, + [SMALL_STATE(7369)] = 231547, + [SMALL_STATE(7370)] = 231563, + [SMALL_STATE(7371)] = 231577, + [SMALL_STATE(7372)] = 231589, + [SMALL_STATE(7373)] = 231605, + [SMALL_STATE(7374)] = 231621, + [SMALL_STATE(7375)] = 231633, + [SMALL_STATE(7376)] = 231649, + [SMALL_STATE(7377)] = 231665, + [SMALL_STATE(7378)] = 231679, + [SMALL_STATE(7379)] = 231693, + [SMALL_STATE(7380)] = 231709, + [SMALL_STATE(7381)] = 231725, + [SMALL_STATE(7382)] = 231741, + [SMALL_STATE(7383)] = 231757, + [SMALL_STATE(7384)] = 231773, + [SMALL_STATE(7385)] = 231787, + [SMALL_STATE(7386)] = 231803, + [SMALL_STATE(7387)] = 231817, + [SMALL_STATE(7388)] = 231833, + [SMALL_STATE(7389)] = 231849, + [SMALL_STATE(7390)] = 231865, + [SMALL_STATE(7391)] = 231881, + [SMALL_STATE(7392)] = 231897, + [SMALL_STATE(7393)] = 231911, + [SMALL_STATE(7394)] = 231925, + [SMALL_STATE(7395)] = 231941, + [SMALL_STATE(7396)] = 231957, + [SMALL_STATE(7397)] = 231973, + [SMALL_STATE(7398)] = 231989, + [SMALL_STATE(7399)] = 232005, + [SMALL_STATE(7400)] = 232019, + [SMALL_STATE(7401)] = 232033, + [SMALL_STATE(7402)] = 232047, + [SMALL_STATE(7403)] = 232063, + [SMALL_STATE(7404)] = 232079, + [SMALL_STATE(7405)] = 232095, + [SMALL_STATE(7406)] = 232111, + [SMALL_STATE(7407)] = 232125, + [SMALL_STATE(7408)] = 232139, + [SMALL_STATE(7409)] = 232155, + [SMALL_STATE(7410)] = 232171, + [SMALL_STATE(7411)] = 232187, + [SMALL_STATE(7412)] = 232203, + [SMALL_STATE(7413)] = 232217, + [SMALL_STATE(7414)] = 232231, + [SMALL_STATE(7415)] = 232245, + [SMALL_STATE(7416)] = 232261, + [SMALL_STATE(7417)] = 232277, + [SMALL_STATE(7418)] = 232293, + [SMALL_STATE(7419)] = 232309, + [SMALL_STATE(7420)] = 232323, + [SMALL_STATE(7421)] = 232337, + [SMALL_STATE(7422)] = 232353, + [SMALL_STATE(7423)] = 232369, + [SMALL_STATE(7424)] = 232385, + [SMALL_STATE(7425)] = 232401, + [SMALL_STATE(7426)] = 232415, + [SMALL_STATE(7427)] = 232431, + [SMALL_STATE(7428)] = 232443, + [SMALL_STATE(7429)] = 232459, + [SMALL_STATE(7430)] = 232475, + [SMALL_STATE(7431)] = 232487, + [SMALL_STATE(7432)] = 232499, + [SMALL_STATE(7433)] = 232513, + [SMALL_STATE(7434)] = 232529, + [SMALL_STATE(7435)] = 232545, + [SMALL_STATE(7436)] = 232561, + [SMALL_STATE(7437)] = 232577, + [SMALL_STATE(7438)] = 232593, + [SMALL_STATE(7439)] = 232609, + [SMALL_STATE(7440)] = 232625, + [SMALL_STATE(7441)] = 232641, + [SMALL_STATE(7442)] = 232653, + [SMALL_STATE(7443)] = 232665, + [SMALL_STATE(7444)] = 232677, + [SMALL_STATE(7445)] = 232689, + [SMALL_STATE(7446)] = 232703, + [SMALL_STATE(7447)] = 232719, + [SMALL_STATE(7448)] = 232735, + [SMALL_STATE(7449)] = 232751, + [SMALL_STATE(7450)] = 232765, + [SMALL_STATE(7451)] = 232779, + [SMALL_STATE(7452)] = 232793, + [SMALL_STATE(7453)] = 232805, + [SMALL_STATE(7454)] = 232821, + [SMALL_STATE(7455)] = 232833, + [SMALL_STATE(7456)] = 232849, + [SMALL_STATE(7457)] = 232862, + [SMALL_STATE(7458)] = 232875, + [SMALL_STATE(7459)] = 232888, + [SMALL_STATE(7460)] = 232901, + [SMALL_STATE(7461)] = 232914, + [SMALL_STATE(7462)] = 232927, + [SMALL_STATE(7463)] = 232940, + [SMALL_STATE(7464)] = 232953, + [SMALL_STATE(7465)] = 232966, + [SMALL_STATE(7466)] = 232979, + [SMALL_STATE(7467)] = 232992, + [SMALL_STATE(7468)] = 233005, + [SMALL_STATE(7469)] = 233018, + [SMALL_STATE(7470)] = 233031, + [SMALL_STATE(7471)] = 233044, + [SMALL_STATE(7472)] = 233057, + [SMALL_STATE(7473)] = 233070, + [SMALL_STATE(7474)] = 233083, + [SMALL_STATE(7475)] = 233096, + [SMALL_STATE(7476)] = 233109, + [SMALL_STATE(7477)] = 233122, + [SMALL_STATE(7478)] = 233135, + [SMALL_STATE(7479)] = 233148, + [SMALL_STATE(7480)] = 233161, + [SMALL_STATE(7481)] = 233174, + [SMALL_STATE(7482)] = 233187, + [SMALL_STATE(7483)] = 233200, + [SMALL_STATE(7484)] = 233213, + [SMALL_STATE(7485)] = 233224, + [SMALL_STATE(7486)] = 233237, + [SMALL_STATE(7487)] = 233250, + [SMALL_STATE(7488)] = 233263, + [SMALL_STATE(7489)] = 233276, + [SMALL_STATE(7490)] = 233289, + [SMALL_STATE(7491)] = 233302, + [SMALL_STATE(7492)] = 233315, + [SMALL_STATE(7493)] = 233328, + [SMALL_STATE(7494)] = 233341, + [SMALL_STATE(7495)] = 233354, + [SMALL_STATE(7496)] = 233367, + [SMALL_STATE(7497)] = 233380, + [SMALL_STATE(7498)] = 233393, + [SMALL_STATE(7499)] = 233406, + [SMALL_STATE(7500)] = 233419, + [SMALL_STATE(7501)] = 233432, + [SMALL_STATE(7502)] = 233445, + [SMALL_STATE(7503)] = 233458, + [SMALL_STATE(7504)] = 233471, + [SMALL_STATE(7505)] = 233484, + [SMALL_STATE(7506)] = 233497, + [SMALL_STATE(7507)] = 233510, + [SMALL_STATE(7508)] = 233523, + [SMALL_STATE(7509)] = 233536, + [SMALL_STATE(7510)] = 233549, + [SMALL_STATE(7511)] = 233562, + [SMALL_STATE(7512)] = 233575, + [SMALL_STATE(7513)] = 233588, + [SMALL_STATE(7514)] = 233601, + [SMALL_STATE(7515)] = 233614, + [SMALL_STATE(7516)] = 233627, + [SMALL_STATE(7517)] = 233640, + [SMALL_STATE(7518)] = 233653, + [SMALL_STATE(7519)] = 233666, + [SMALL_STATE(7520)] = 233679, + [SMALL_STATE(7521)] = 233692, + [SMALL_STATE(7522)] = 233705, + [SMALL_STATE(7523)] = 233718, + [SMALL_STATE(7524)] = 233731, + [SMALL_STATE(7525)] = 233744, + [SMALL_STATE(7526)] = 233757, + [SMALL_STATE(7527)] = 233770, + [SMALL_STATE(7528)] = 233783, + [SMALL_STATE(7529)] = 233796, + [SMALL_STATE(7530)] = 233809, + [SMALL_STATE(7531)] = 233820, + [SMALL_STATE(7532)] = 233833, + [SMALL_STATE(7533)] = 233846, + [SMALL_STATE(7534)] = 233859, + [SMALL_STATE(7535)] = 233872, + [SMALL_STATE(7536)] = 233885, + [SMALL_STATE(7537)] = 233898, + [SMALL_STATE(7538)] = 233911, + [SMALL_STATE(7539)] = 233924, + [SMALL_STATE(7540)] = 233937, + [SMALL_STATE(7541)] = 233950, + [SMALL_STATE(7542)] = 233963, + [SMALL_STATE(7543)] = 233976, + [SMALL_STATE(7544)] = 233989, + [SMALL_STATE(7545)] = 234002, + [SMALL_STATE(7546)] = 234015, + [SMALL_STATE(7547)] = 234028, + [SMALL_STATE(7548)] = 234041, + [SMALL_STATE(7549)] = 234054, + [SMALL_STATE(7550)] = 234067, + [SMALL_STATE(7551)] = 234080, + [SMALL_STATE(7552)] = 234093, + [SMALL_STATE(7553)] = 234106, + [SMALL_STATE(7554)] = 234119, + [SMALL_STATE(7555)] = 234132, + [SMALL_STATE(7556)] = 234145, + [SMALL_STATE(7557)] = 234158, + [SMALL_STATE(7558)] = 234171, + [SMALL_STATE(7559)] = 234184, + [SMALL_STATE(7560)] = 234197, + [SMALL_STATE(7561)] = 234210, + [SMALL_STATE(7562)] = 234223, + [SMALL_STATE(7563)] = 234236, + [SMALL_STATE(7564)] = 234249, + [SMALL_STATE(7565)] = 234262, + [SMALL_STATE(7566)] = 234275, + [SMALL_STATE(7567)] = 234288, + [SMALL_STATE(7568)] = 234301, + [SMALL_STATE(7569)] = 234314, + [SMALL_STATE(7570)] = 234327, + [SMALL_STATE(7571)] = 234340, + [SMALL_STATE(7572)] = 234353, + [SMALL_STATE(7573)] = 234366, + [SMALL_STATE(7574)] = 234379, + [SMALL_STATE(7575)] = 234392, + [SMALL_STATE(7576)] = 234405, + [SMALL_STATE(7577)] = 234418, + [SMALL_STATE(7578)] = 234431, + [SMALL_STATE(7579)] = 234444, + [SMALL_STATE(7580)] = 234457, + [SMALL_STATE(7581)] = 234470, + [SMALL_STATE(7582)] = 234481, + [SMALL_STATE(7583)] = 234494, + [SMALL_STATE(7584)] = 234507, + [SMALL_STATE(7585)] = 234520, + [SMALL_STATE(7586)] = 234533, + [SMALL_STATE(7587)] = 234546, + [SMALL_STATE(7588)] = 234559, + [SMALL_STATE(7589)] = 234572, + [SMALL_STATE(7590)] = 234585, + [SMALL_STATE(7591)] = 234598, + [SMALL_STATE(7592)] = 234611, + [SMALL_STATE(7593)] = 234624, + [SMALL_STATE(7594)] = 234637, + [SMALL_STATE(7595)] = 234650, + [SMALL_STATE(7596)] = 234663, + [SMALL_STATE(7597)] = 234676, + [SMALL_STATE(7598)] = 234689, + [SMALL_STATE(7599)] = 234702, + [SMALL_STATE(7600)] = 234715, + [SMALL_STATE(7601)] = 234728, + [SMALL_STATE(7602)] = 234741, + [SMALL_STATE(7603)] = 234754, + [SMALL_STATE(7604)] = 234767, + [SMALL_STATE(7605)] = 234780, + [SMALL_STATE(7606)] = 234793, + [SMALL_STATE(7607)] = 234806, + [SMALL_STATE(7608)] = 234819, + [SMALL_STATE(7609)] = 234830, + [SMALL_STATE(7610)] = 234843, + [SMALL_STATE(7611)] = 234856, + [SMALL_STATE(7612)] = 234869, + [SMALL_STATE(7613)] = 234882, + [SMALL_STATE(7614)] = 234895, + [SMALL_STATE(7615)] = 234908, + [SMALL_STATE(7616)] = 234921, + [SMALL_STATE(7617)] = 234934, + [SMALL_STATE(7618)] = 234947, + [SMALL_STATE(7619)] = 234960, + [SMALL_STATE(7620)] = 234973, + [SMALL_STATE(7621)] = 234986, + [SMALL_STATE(7622)] = 234999, + [SMALL_STATE(7623)] = 235012, + [SMALL_STATE(7624)] = 235025, + [SMALL_STATE(7625)] = 235038, + [SMALL_STATE(7626)] = 235051, + [SMALL_STATE(7627)] = 235064, + [SMALL_STATE(7628)] = 235077, + [SMALL_STATE(7629)] = 235090, + [SMALL_STATE(7630)] = 235101, + [SMALL_STATE(7631)] = 235114, + [SMALL_STATE(7632)] = 235127, + [SMALL_STATE(7633)] = 235140, + [SMALL_STATE(7634)] = 235153, + [SMALL_STATE(7635)] = 235166, + [SMALL_STATE(7636)] = 235179, + [SMALL_STATE(7637)] = 235192, + [SMALL_STATE(7638)] = 235205, + [SMALL_STATE(7639)] = 235218, + [SMALL_STATE(7640)] = 235231, + [SMALL_STATE(7641)] = 235244, + [SMALL_STATE(7642)] = 235257, + [SMALL_STATE(7643)] = 235270, + [SMALL_STATE(7644)] = 235283, + [SMALL_STATE(7645)] = 235296, + [SMALL_STATE(7646)] = 235309, + [SMALL_STATE(7647)] = 235322, + [SMALL_STATE(7648)] = 235335, + [SMALL_STATE(7649)] = 235348, + [SMALL_STATE(7650)] = 235361, + [SMALL_STATE(7651)] = 235374, + [SMALL_STATE(7652)] = 235387, + [SMALL_STATE(7653)] = 235400, + [SMALL_STATE(7654)] = 235413, + [SMALL_STATE(7655)] = 235426, + [SMALL_STATE(7656)] = 235439, + [SMALL_STATE(7657)] = 235452, + [SMALL_STATE(7658)] = 235465, + [SMALL_STATE(7659)] = 235478, + [SMALL_STATE(7660)] = 235491, + [SMALL_STATE(7661)] = 235504, + [SMALL_STATE(7662)] = 235517, + [SMALL_STATE(7663)] = 235530, + [SMALL_STATE(7664)] = 235541, + [SMALL_STATE(7665)] = 235554, + [SMALL_STATE(7666)] = 235567, + [SMALL_STATE(7667)] = 235580, + [SMALL_STATE(7668)] = 235593, + [SMALL_STATE(7669)] = 235606, + [SMALL_STATE(7670)] = 235619, + [SMALL_STATE(7671)] = 235632, + [SMALL_STATE(7672)] = 235645, + [SMALL_STATE(7673)] = 235658, + [SMALL_STATE(7674)] = 235671, + [SMALL_STATE(7675)] = 235684, + [SMALL_STATE(7676)] = 235697, + [SMALL_STATE(7677)] = 235710, + [SMALL_STATE(7678)] = 235723, + [SMALL_STATE(7679)] = 235736, + [SMALL_STATE(7680)] = 235749, + [SMALL_STATE(7681)] = 235762, + [SMALL_STATE(7682)] = 235775, + [SMALL_STATE(7683)] = 235788, + [SMALL_STATE(7684)] = 235801, + [SMALL_STATE(7685)] = 235814, + [SMALL_STATE(7686)] = 235827, + [SMALL_STATE(7687)] = 235840, + [SMALL_STATE(7688)] = 235853, + [SMALL_STATE(7689)] = 235866, + [SMALL_STATE(7690)] = 235879, + [SMALL_STATE(7691)] = 235892, + [SMALL_STATE(7692)] = 235905, + [SMALL_STATE(7693)] = 235918, + [SMALL_STATE(7694)] = 235931, + [SMALL_STATE(7695)] = 235944, + [SMALL_STATE(7696)] = 235957, + [SMALL_STATE(7697)] = 235970, + [SMALL_STATE(7698)] = 235983, + [SMALL_STATE(7699)] = 235996, + [SMALL_STATE(7700)] = 236009, + [SMALL_STATE(7701)] = 236022, + [SMALL_STATE(7702)] = 236035, + [SMALL_STATE(7703)] = 236046, + [SMALL_STATE(7704)] = 236059, + [SMALL_STATE(7705)] = 236070, + [SMALL_STATE(7706)] = 236083, + [SMALL_STATE(7707)] = 236096, + [SMALL_STATE(7708)] = 236109, + [SMALL_STATE(7709)] = 236122, + [SMALL_STATE(7710)] = 236135, + [SMALL_STATE(7711)] = 236148, + [SMALL_STATE(7712)] = 236161, + [SMALL_STATE(7713)] = 236174, + [SMALL_STATE(7714)] = 236184, + [SMALL_STATE(7715)] = 236194, + [SMALL_STATE(7716)] = 236204, + [SMALL_STATE(7717)] = 236214, + [SMALL_STATE(7718)] = 236224, + [SMALL_STATE(7719)] = 236234, + [SMALL_STATE(7720)] = 236244, + [SMALL_STATE(7721)] = 236254, + [SMALL_STATE(7722)] = 236264, + [SMALL_STATE(7723)] = 236274, + [SMALL_STATE(7724)] = 236284, + [SMALL_STATE(7725)] = 236294, + [SMALL_STATE(7726)] = 236304, + [SMALL_STATE(7727)] = 236314, + [SMALL_STATE(7728)] = 236324, + [SMALL_STATE(7729)] = 236334, + [SMALL_STATE(7730)] = 236344, + [SMALL_STATE(7731)] = 236354, + [SMALL_STATE(7732)] = 236364, + [SMALL_STATE(7733)] = 236374, + [SMALL_STATE(7734)] = 236384, + [SMALL_STATE(7735)] = 236394, + [SMALL_STATE(7736)] = 236404, + [SMALL_STATE(7737)] = 236414, + [SMALL_STATE(7738)] = 236424, + [SMALL_STATE(7739)] = 236434, + [SMALL_STATE(7740)] = 236444, + [SMALL_STATE(7741)] = 236454, + [SMALL_STATE(7742)] = 236464, + [SMALL_STATE(7743)] = 236474, + [SMALL_STATE(7744)] = 236484, + [SMALL_STATE(7745)] = 236494, + [SMALL_STATE(7746)] = 236504, + [SMALL_STATE(7747)] = 236514, + [SMALL_STATE(7748)] = 236524, + [SMALL_STATE(7749)] = 236534, + [SMALL_STATE(7750)] = 236544, + [SMALL_STATE(7751)] = 236554, + [SMALL_STATE(7752)] = 236564, + [SMALL_STATE(7753)] = 236574, + [SMALL_STATE(7754)] = 236584, + [SMALL_STATE(7755)] = 236594, + [SMALL_STATE(7756)] = 236604, + [SMALL_STATE(7757)] = 236614, + [SMALL_STATE(7758)] = 236624, + [SMALL_STATE(7759)] = 236634, + [SMALL_STATE(7760)] = 236644, + [SMALL_STATE(7761)] = 236654, + [SMALL_STATE(7762)] = 236664, + [SMALL_STATE(7763)] = 236674, + [SMALL_STATE(7764)] = 236684, + [SMALL_STATE(7765)] = 236694, + [SMALL_STATE(7766)] = 236704, + [SMALL_STATE(7767)] = 236714, + [SMALL_STATE(7768)] = 236724, + [SMALL_STATE(7769)] = 236734, + [SMALL_STATE(7770)] = 236744, + [SMALL_STATE(7771)] = 236754, + [SMALL_STATE(7772)] = 236764, + [SMALL_STATE(7773)] = 236774, + [SMALL_STATE(7774)] = 236784, + [SMALL_STATE(7775)] = 236794, + [SMALL_STATE(7776)] = 236804, + [SMALL_STATE(7777)] = 236814, + [SMALL_STATE(7778)] = 236824, + [SMALL_STATE(7779)] = 236834, + [SMALL_STATE(7780)] = 236844, + [SMALL_STATE(7781)] = 236854, + [SMALL_STATE(7782)] = 236864, + [SMALL_STATE(7783)] = 236874, + [SMALL_STATE(7784)] = 236884, + [SMALL_STATE(7785)] = 236894, + [SMALL_STATE(7786)] = 236904, + [SMALL_STATE(7787)] = 236914, + [SMALL_STATE(7788)] = 236924, + [SMALL_STATE(7789)] = 236934, + [SMALL_STATE(7790)] = 236944, + [SMALL_STATE(7791)] = 236954, + [SMALL_STATE(7792)] = 236964, + [SMALL_STATE(7793)] = 236974, + [SMALL_STATE(7794)] = 236984, + [SMALL_STATE(7795)] = 236994, + [SMALL_STATE(7796)] = 237004, + [SMALL_STATE(7797)] = 237014, + [SMALL_STATE(7798)] = 237024, + [SMALL_STATE(7799)] = 237034, + [SMALL_STATE(7800)] = 237044, + [SMALL_STATE(7801)] = 237054, + [SMALL_STATE(7802)] = 237064, + [SMALL_STATE(7803)] = 237074, + [SMALL_STATE(7804)] = 237084, + [SMALL_STATE(7805)] = 237094, + [SMALL_STATE(7806)] = 237104, + [SMALL_STATE(7807)] = 237114, + [SMALL_STATE(7808)] = 237124, + [SMALL_STATE(7809)] = 237134, + [SMALL_STATE(7810)] = 237144, + [SMALL_STATE(7811)] = 237154, + [SMALL_STATE(7812)] = 237164, + [SMALL_STATE(7813)] = 237174, + [SMALL_STATE(7814)] = 237184, + [SMALL_STATE(7815)] = 237194, + [SMALL_STATE(7816)] = 237204, + [SMALL_STATE(7817)] = 237214, + [SMALL_STATE(7818)] = 237224, + [SMALL_STATE(7819)] = 237234, + [SMALL_STATE(7820)] = 237244, + [SMALL_STATE(7821)] = 237254, + [SMALL_STATE(7822)] = 237264, + [SMALL_STATE(7823)] = 237274, + [SMALL_STATE(7824)] = 237284, + [SMALL_STATE(7825)] = 237294, + [SMALL_STATE(7826)] = 237304, + [SMALL_STATE(7827)] = 237314, + [SMALL_STATE(7828)] = 237324, + [SMALL_STATE(7829)] = 237334, + [SMALL_STATE(7830)] = 237344, + [SMALL_STATE(7831)] = 237354, + [SMALL_STATE(7832)] = 237364, + [SMALL_STATE(7833)] = 237374, + [SMALL_STATE(7834)] = 237384, + [SMALL_STATE(7835)] = 237394, + [SMALL_STATE(7836)] = 237404, + [SMALL_STATE(7837)] = 237414, + [SMALL_STATE(7838)] = 237424, + [SMALL_STATE(7839)] = 237434, + [SMALL_STATE(7840)] = 237444, + [SMALL_STATE(7841)] = 237454, + [SMALL_STATE(7842)] = 237464, + [SMALL_STATE(7843)] = 237474, + [SMALL_STATE(7844)] = 237484, + [SMALL_STATE(7845)] = 237494, + [SMALL_STATE(7846)] = 237504, + [SMALL_STATE(7847)] = 237514, + [SMALL_STATE(7848)] = 237524, + [SMALL_STATE(7849)] = 237534, + [SMALL_STATE(7850)] = 237544, + [SMALL_STATE(7851)] = 237554, + [SMALL_STATE(7852)] = 237564, + [SMALL_STATE(7853)] = 237574, + [SMALL_STATE(7854)] = 237584, + [SMALL_STATE(7855)] = 237594, + [SMALL_STATE(7856)] = 237604, + [SMALL_STATE(7857)] = 237614, + [SMALL_STATE(7858)] = 237624, + [SMALL_STATE(7859)] = 237634, + [SMALL_STATE(7860)] = 237644, + [SMALL_STATE(7861)] = 237654, + [SMALL_STATE(7862)] = 237664, + [SMALL_STATE(7863)] = 237674, + [SMALL_STATE(7864)] = 237684, + [SMALL_STATE(7865)] = 237694, + [SMALL_STATE(7866)] = 237704, + [SMALL_STATE(7867)] = 237714, + [SMALL_STATE(7868)] = 237724, + [SMALL_STATE(7869)] = 237734, + [SMALL_STATE(7870)] = 237744, + [SMALL_STATE(7871)] = 237754, + [SMALL_STATE(7872)] = 237764, + [SMALL_STATE(7873)] = 237774, + [SMALL_STATE(7874)] = 237784, + [SMALL_STATE(7875)] = 237794, + [SMALL_STATE(7876)] = 237804, + [SMALL_STATE(7877)] = 237814, + [SMALL_STATE(7878)] = 237824, + [SMALL_STATE(7879)] = 237834, + [SMALL_STATE(7880)] = 237844, + [SMALL_STATE(7881)] = 237854, + [SMALL_STATE(7882)] = 237864, + [SMALL_STATE(7883)] = 237874, + [SMALL_STATE(7884)] = 237884, + [SMALL_STATE(7885)] = 237894, + [SMALL_STATE(7886)] = 237904, + [SMALL_STATE(7887)] = 237914, + [SMALL_STATE(7888)] = 237924, + [SMALL_STATE(7889)] = 237934, + [SMALL_STATE(7890)] = 237944, + [SMALL_STATE(7891)] = 237954, + [SMALL_STATE(7892)] = 237964, + [SMALL_STATE(7893)] = 237974, + [SMALL_STATE(7894)] = 237984, + [SMALL_STATE(7895)] = 237994, + [SMALL_STATE(7896)] = 238004, + [SMALL_STATE(7897)] = 238014, + [SMALL_STATE(7898)] = 238024, + [SMALL_STATE(7899)] = 238034, + [SMALL_STATE(7900)] = 238044, + [SMALL_STATE(7901)] = 238054, + [SMALL_STATE(7902)] = 238064, + [SMALL_STATE(7903)] = 238074, + [SMALL_STATE(7904)] = 238084, + [SMALL_STATE(7905)] = 238094, + [SMALL_STATE(7906)] = 238104, + [SMALL_STATE(7907)] = 238114, + [SMALL_STATE(7908)] = 238124, + [SMALL_STATE(7909)] = 238134, + [SMALL_STATE(7910)] = 238144, + [SMALL_STATE(7911)] = 238154, + [SMALL_STATE(7912)] = 238164, + [SMALL_STATE(7913)] = 238174, + [SMALL_STATE(7914)] = 238184, + [SMALL_STATE(7915)] = 238194, + [SMALL_STATE(7916)] = 238204, + [SMALL_STATE(7917)] = 238214, + [SMALL_STATE(7918)] = 238224, + [SMALL_STATE(7919)] = 238234, + [SMALL_STATE(7920)] = 238244, + [SMALL_STATE(7921)] = 238254, + [SMALL_STATE(7922)] = 238264, + [SMALL_STATE(7923)] = 238274, + [SMALL_STATE(7924)] = 238284, + [SMALL_STATE(7925)] = 238294, + [SMALL_STATE(7926)] = 238304, + [SMALL_STATE(7927)] = 238314, + [SMALL_STATE(7928)] = 238324, + [SMALL_STATE(7929)] = 238334, + [SMALL_STATE(7930)] = 238344, + [SMALL_STATE(7931)] = 238354, + [SMALL_STATE(7932)] = 238364, + [SMALL_STATE(7933)] = 238374, + [SMALL_STATE(7934)] = 238384, + [SMALL_STATE(7935)] = 238394, + [SMALL_STATE(7936)] = 238404, + [SMALL_STATE(7937)] = 238414, + [SMALL_STATE(7938)] = 238424, + [SMALL_STATE(7939)] = 238434, + [SMALL_STATE(7940)] = 238444, + [SMALL_STATE(7941)] = 238454, + [SMALL_STATE(7942)] = 238464, + [SMALL_STATE(7943)] = 238474, + [SMALL_STATE(7944)] = 238484, + [SMALL_STATE(7945)] = 238494, + [SMALL_STATE(7946)] = 238504, + [SMALL_STATE(7947)] = 238514, + [SMALL_STATE(7948)] = 238524, + [SMALL_STATE(7949)] = 238534, + [SMALL_STATE(7950)] = 238544, + [SMALL_STATE(7951)] = 238554, + [SMALL_STATE(7952)] = 238564, + [SMALL_STATE(7953)] = 238574, + [SMALL_STATE(7954)] = 238584, + [SMALL_STATE(7955)] = 238594, + [SMALL_STATE(7956)] = 238604, + [SMALL_STATE(7957)] = 238614, + [SMALL_STATE(7958)] = 238624, + [SMALL_STATE(7959)] = 238634, + [SMALL_STATE(7960)] = 238644, + [SMALL_STATE(7961)] = 238654, + [SMALL_STATE(7962)] = 238664, + [SMALL_STATE(7963)] = 238674, + [SMALL_STATE(7964)] = 238684, + [SMALL_STATE(7965)] = 238694, + [SMALL_STATE(7966)] = 238704, + [SMALL_STATE(7967)] = 238714, + [SMALL_STATE(7968)] = 238724, + [SMALL_STATE(7969)] = 238734, + [SMALL_STATE(7970)] = 238744, + [SMALL_STATE(7971)] = 238754, + [SMALL_STATE(7972)] = 238764, + [SMALL_STATE(7973)] = 238774, + [SMALL_STATE(7974)] = 238784, + [SMALL_STATE(7975)] = 238794, + [SMALL_STATE(7976)] = 238804, + [SMALL_STATE(7977)] = 238814, + [SMALL_STATE(7978)] = 238824, + [SMALL_STATE(7979)] = 238834, + [SMALL_STATE(7980)] = 238844, + [SMALL_STATE(7981)] = 238854, + [SMALL_STATE(7982)] = 238864, + [SMALL_STATE(7983)] = 238874, + [SMALL_STATE(7984)] = 238884, + [SMALL_STATE(7985)] = 238894, + [SMALL_STATE(7986)] = 238904, + [SMALL_STATE(7987)] = 238914, + [SMALL_STATE(7988)] = 238924, + [SMALL_STATE(7989)] = 238934, + [SMALL_STATE(7990)] = 238944, + [SMALL_STATE(7991)] = 238954, + [SMALL_STATE(7992)] = 238964, + [SMALL_STATE(7993)] = 238974, + [SMALL_STATE(7994)] = 238984, + [SMALL_STATE(7995)] = 238994, + [SMALL_STATE(7996)] = 239004, + [SMALL_STATE(7997)] = 239014, + [SMALL_STATE(7998)] = 239024, + [SMALL_STATE(7999)] = 239034, + [SMALL_STATE(8000)] = 239044, + [SMALL_STATE(8001)] = 239054, + [SMALL_STATE(8002)] = 239064, + [SMALL_STATE(8003)] = 239074, + [SMALL_STATE(8004)] = 239084, + [SMALL_STATE(8005)] = 239094, + [SMALL_STATE(8006)] = 239104, + [SMALL_STATE(8007)] = 239114, + [SMALL_STATE(8008)] = 239124, + [SMALL_STATE(8009)] = 239134, + [SMALL_STATE(8010)] = 239144, + [SMALL_STATE(8011)] = 239154, + [SMALL_STATE(8012)] = 239164, + [SMALL_STATE(8013)] = 239174, + [SMALL_STATE(8014)] = 239184, + [SMALL_STATE(8015)] = 239194, + [SMALL_STATE(8016)] = 239204, + [SMALL_STATE(8017)] = 239214, + [SMALL_STATE(8018)] = 239224, + [SMALL_STATE(8019)] = 239234, + [SMALL_STATE(8020)] = 239244, + [SMALL_STATE(8021)] = 239254, + [SMALL_STATE(8022)] = 239264, + [SMALL_STATE(8023)] = 239274, + [SMALL_STATE(8024)] = 239284, + [SMALL_STATE(8025)] = 239294, + [SMALL_STATE(8026)] = 239304, + [SMALL_STATE(8027)] = 239314, + [SMALL_STATE(8028)] = 239324, + [SMALL_STATE(8029)] = 239334, + [SMALL_STATE(8030)] = 239344, + [SMALL_STATE(8031)] = 239354, + [SMALL_STATE(8032)] = 239364, + [SMALL_STATE(8033)] = 239374, + [SMALL_STATE(8034)] = 239384, + [SMALL_STATE(8035)] = 239394, + [SMALL_STATE(8036)] = 239404, + [SMALL_STATE(8037)] = 239414, + [SMALL_STATE(8038)] = 239424, + [SMALL_STATE(8039)] = 239434, + [SMALL_STATE(8040)] = 239444, + [SMALL_STATE(8041)] = 239454, + [SMALL_STATE(8042)] = 239464, + [SMALL_STATE(8043)] = 239474, + [SMALL_STATE(8044)] = 239484, + [SMALL_STATE(8045)] = 239494, + [SMALL_STATE(8046)] = 239504, + [SMALL_STATE(8047)] = 239514, + [SMALL_STATE(8048)] = 239524, + [SMALL_STATE(8049)] = 239534, + [SMALL_STATE(8050)] = 239544, + [SMALL_STATE(8051)] = 239554, + [SMALL_STATE(8052)] = 239564, + [SMALL_STATE(8053)] = 239574, + [SMALL_STATE(8054)] = 239584, + [SMALL_STATE(8055)] = 239594, + [SMALL_STATE(8056)] = 239604, + [SMALL_STATE(8057)] = 239614, + [SMALL_STATE(8058)] = 239624, + [SMALL_STATE(8059)] = 239634, + [SMALL_STATE(8060)] = 239644, + [SMALL_STATE(8061)] = 239654, + [SMALL_STATE(8062)] = 239664, + [SMALL_STATE(8063)] = 239674, + [SMALL_STATE(8064)] = 239684, + [SMALL_STATE(8065)] = 239694, + [SMALL_STATE(8066)] = 239704, + [SMALL_STATE(8067)] = 239714, + [SMALL_STATE(8068)] = 239724, + [SMALL_STATE(8069)] = 239734, + [SMALL_STATE(8070)] = 239744, + [SMALL_STATE(8071)] = 239754, + [SMALL_STATE(8072)] = 239764, + [SMALL_STATE(8073)] = 239774, + [SMALL_STATE(8074)] = 239784, + [SMALL_STATE(8075)] = 239794, + [SMALL_STATE(8076)] = 239804, + [SMALL_STATE(8077)] = 239814, + [SMALL_STATE(8078)] = 239824, + [SMALL_STATE(8079)] = 239834, + [SMALL_STATE(8080)] = 239844, + [SMALL_STATE(8081)] = 239854, + [SMALL_STATE(8082)] = 239864, + [SMALL_STATE(8083)] = 239874, + [SMALL_STATE(8084)] = 239884, + [SMALL_STATE(8085)] = 239894, + [SMALL_STATE(8086)] = 239904, + [SMALL_STATE(8087)] = 239914, + [SMALL_STATE(8088)] = 239924, + [SMALL_STATE(8089)] = 239934, + [SMALL_STATE(8090)] = 239944, + [SMALL_STATE(8091)] = 239954, + [SMALL_STATE(8092)] = 239964, + [SMALL_STATE(8093)] = 239974, + [SMALL_STATE(8094)] = 239984, + [SMALL_STATE(8095)] = 239994, + [SMALL_STATE(8096)] = 240004, + [SMALL_STATE(8097)] = 240014, + [SMALL_STATE(8098)] = 240024, + [SMALL_STATE(8099)] = 240034, + [SMALL_STATE(8100)] = 240044, + [SMALL_STATE(8101)] = 240054, + [SMALL_STATE(8102)] = 240064, + [SMALL_STATE(8103)] = 240074, + [SMALL_STATE(8104)] = 240084, + [SMALL_STATE(8105)] = 240094, + [SMALL_STATE(8106)] = 240104, + [SMALL_STATE(8107)] = 240114, + [SMALL_STATE(8108)] = 240124, + [SMALL_STATE(8109)] = 240134, + [SMALL_STATE(8110)] = 240144, + [SMALL_STATE(8111)] = 240154, + [SMALL_STATE(8112)] = 240164, + [SMALL_STATE(8113)] = 240174, + [SMALL_STATE(8114)] = 240184, + [SMALL_STATE(8115)] = 240194, + [SMALL_STATE(8116)] = 240204, + [SMALL_STATE(8117)] = 240214, + [SMALL_STATE(8118)] = 240224, + [SMALL_STATE(8119)] = 240234, + [SMALL_STATE(8120)] = 240244, + [SMALL_STATE(8121)] = 240254, + [SMALL_STATE(8122)] = 240264, + [SMALL_STATE(8123)] = 240274, + [SMALL_STATE(8124)] = 240284, + [SMALL_STATE(8125)] = 240294, + [SMALL_STATE(8126)] = 240304, + [SMALL_STATE(8127)] = 240314, + [SMALL_STATE(8128)] = 240324, + [SMALL_STATE(8129)] = 240334, + [SMALL_STATE(8130)] = 240344, + [SMALL_STATE(8131)] = 240354, + [SMALL_STATE(8132)] = 240364, + [SMALL_STATE(8133)] = 240374, + [SMALL_STATE(8134)] = 240384, + [SMALL_STATE(8135)] = 240394, + [SMALL_STATE(8136)] = 240404, + [SMALL_STATE(8137)] = 240414, + [SMALL_STATE(8138)] = 240424, + [SMALL_STATE(8139)] = 240434, + [SMALL_STATE(8140)] = 240444, + [SMALL_STATE(8141)] = 240454, + [SMALL_STATE(8142)] = 240464, + [SMALL_STATE(8143)] = 240474, + [SMALL_STATE(8144)] = 240484, + [SMALL_STATE(8145)] = 240494, + [SMALL_STATE(8146)] = 240504, + [SMALL_STATE(8147)] = 240514, + [SMALL_STATE(8148)] = 240524, + [SMALL_STATE(8149)] = 240534, + [SMALL_STATE(8150)] = 240544, + [SMALL_STATE(8151)] = 240554, + [SMALL_STATE(8152)] = 240564, + [SMALL_STATE(8153)] = 240574, + [SMALL_STATE(8154)] = 240584, + [SMALL_STATE(8155)] = 240594, + [SMALL_STATE(8156)] = 240604, + [SMALL_STATE(8157)] = 240614, + [SMALL_STATE(8158)] = 240624, + [SMALL_STATE(8159)] = 240634, + [SMALL_STATE(8160)] = 240644, + [SMALL_STATE(8161)] = 240654, + [SMALL_STATE(8162)] = 240664, + [SMALL_STATE(8163)] = 240674, + [SMALL_STATE(8164)] = 240684, + [SMALL_STATE(8165)] = 240694, + [SMALL_STATE(8166)] = 240704, + [SMALL_STATE(8167)] = 240714, + [SMALL_STATE(8168)] = 240724, + [SMALL_STATE(8169)] = 240734, + [SMALL_STATE(8170)] = 240744, + [SMALL_STATE(8171)] = 240754, + [SMALL_STATE(8172)] = 240764, + [SMALL_STATE(8173)] = 240774, + [SMALL_STATE(8174)] = 240784, + [SMALL_STATE(8175)] = 240794, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6019), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2661), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6243), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6146), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6147), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2432), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7509), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2600), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(62), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7991), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8099), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4806), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4808), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5500), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7650), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2175), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5213), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2159), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5381), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1166), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2782), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5382), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3872), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5227), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2138), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(840), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7806), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6402), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1771), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5792), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1758), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7886), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6025), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2664), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6204), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6205), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2432), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7509), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2600), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(62), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7991), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8099), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5121), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5128), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5500), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7650), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2175), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6241), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5381), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6407), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1166), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2782), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5382), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3706), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5227), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2138), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(840), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7806), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6402), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1771), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5792), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1813), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7886), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6773), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5121), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5128), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6407), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6773), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4808), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3872), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8061), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(74), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6686), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7986), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(99), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7738), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3725), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6420), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1544), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(211), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7830), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(74), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6656), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7986), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3725), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6420), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1544), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(207), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7869), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5594), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6018), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2637), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6195), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6196), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6197), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2443), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7545), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2616), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2666), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2794), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(865), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(58), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6288), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7952), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8100), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4982), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4986), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5629), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2151), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5228), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2172), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5383), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7646), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1172), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3412), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6400), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3886), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5233), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5421), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(825), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(825), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(855), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1927), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7807), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2093), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1832), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5932), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4616), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4616), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7887), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6027), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2655), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6234), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6235), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6236), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2443), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7545), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2616), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2666), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2794), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(865), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(58), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6288), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7952), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8100), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5092), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5629), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2151), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6045), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5383), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6684), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1172), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3412), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6400), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3641), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5233), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5421), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(825), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(825), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(855), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1787), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1927), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7807), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2093), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1832), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5932), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1797), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4751), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4751), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7887), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8100), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4982), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5421), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8100), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5093), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6684), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5421), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1925), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(312), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(315), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(315), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8032), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6608), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8017), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(74), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8128), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3685), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2389), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2389), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6314), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1541), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(341), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8169), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6573), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8017), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(100), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7744), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3685), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2389), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2389), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6314), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1541), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(340), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5594), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1926), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(797), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(861), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6674), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1639), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5331), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1612), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1644), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1262), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1262), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1359), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1306), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1812), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1714), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7955), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1634), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6576), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6092), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5893), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7570), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7570), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8019), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2868), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(861), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(55), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6674), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1639), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1641), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5330), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5331), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1612), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1644), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1262), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1262), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1359), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1306), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1812), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1706), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1714), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7955), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1634), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6576), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1791), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6092), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5893), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7570), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7570), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1701), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8019), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(853), - [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(48), - [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6649), - [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1696), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1697), - [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5266), - [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5268), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1711), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1656), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1946), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), - [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7867), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1715), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6492), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6211), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5852), - [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1824), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7954), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(852), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(52), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6369), - [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), - [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5256), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5258), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6331), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6760), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), - [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5127), - [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5127), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5260), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5189), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7054), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7069), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6247), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8003), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6341), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6372), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5625), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6144), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5729), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(858), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7465), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7465), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7092), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7864), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6437), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7010), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5277), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6258), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6804), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5439), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6426), - [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6540), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1241), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(56), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6683), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(212), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5253), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5272), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3057), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3063), - [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2562), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2562), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2680), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2608), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3146), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3035), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3031), - [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7968), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3037), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6650), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3125), - [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7465), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7465), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3156), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(8068), - [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5561), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5565), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [5076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5597), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1926), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1926), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1926), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1926), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7560), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7560), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3623), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3792), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3646), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6372), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5625), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7864), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5589), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [5702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [5817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5590), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2964), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3053), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6207), - [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6004), - [6391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6013), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), - [6493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5567), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [7348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1926), - [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1926), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1926), - [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), - [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1926), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(436), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), - [7689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4388), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), - [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), - [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1926), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1926), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5003), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8008), - [7803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7559), - [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7900), - [7809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7829), - [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1926), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1926), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1926), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1926), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [7846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1926), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(304), - [7878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1926), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1926), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1926), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1926), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5869), - [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1926), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(485), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(485), - [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(472), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(288), - [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1926), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1926), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1926), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), - [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), - [8003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5728), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(296), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(298), - [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1926), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [8057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(259), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [8232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(267), - [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(268), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), - [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), - [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(235), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), - [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(244), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(250), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(876), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(59), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6593), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1602), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1645), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5314), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1628), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1644), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1296), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1754), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1693), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1667), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7956), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1619), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6494), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1798), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6152), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5807), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7543), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7543), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1661), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8020), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2879), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(876), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(59), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6593), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1602), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1645), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5313), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5314), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1628), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1644), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1260), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1260), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1352), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1296), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1754), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1693), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1667), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7956), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1619), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6494), + [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1798), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6152), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5807), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7543), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7543), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1661), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8020), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(870), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(62), + [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6567), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1723), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5351), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5248), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1709), + [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1286), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1286), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1381), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1371), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1930), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1814), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1755), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7868), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1686), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6133), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5756), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1833), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7955), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(883), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(60), + [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6249), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5344), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(100), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5353), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6749), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6365), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7744), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5081), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5081), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5290), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5230), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7157), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7201), + [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6781), + [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7962), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6258), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6251), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5550), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6076), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5880), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(867), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7645), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7645), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7250), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7865), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6334), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6918), + [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5275), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6716), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5235), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5235), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5474), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7543), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7543), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5559), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5569), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1242), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(61), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6604), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(344), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5338), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5339), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3028), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3029), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2708), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2645), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3159), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3049), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3095), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7969), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3062), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6568), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3164), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7645), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7645), + [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3134), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(8069), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5621), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5565), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5567), + [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5599), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1925), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1925), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1925), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1925), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), + [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3636), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3748), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3661), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6251), + [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5550), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7865), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5589), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), + [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2825), + [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2879), + [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5590), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3050), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6110), + [6398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5920), + [6401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5923), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3430), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5564), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7922), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [7191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [7298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [7439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [7514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1925), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), + [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1925), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1925), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1925), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7525), + [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8158), + [7726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4322), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1925), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1925), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(461), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(257), + [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1925), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [7886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5953), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(517), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [7910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(273), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), + [7919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1925), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(514), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(514), + [7942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1925), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1925), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1925), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1925), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [8018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [8022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(265), + [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1925), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1925), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(267), + [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1925), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1925), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1925), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1925), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5882), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1925), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [8088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1925), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(234), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(242), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(244), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(250), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), + [8407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), - [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), - [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), - [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), - [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5619), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), - [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [8665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5592), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5453), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5613), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6660), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5539), - [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(8071), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), - [8882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [8964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5627), - [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), - [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [9402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), - [9405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [9416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5789), - [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5789), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [9468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5975), - [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5974), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [9586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [9611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(115), - [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6301), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6133), - [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(118), - [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7001), - [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [9949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), - [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), - [9953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [10027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), - [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [10177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [10187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [10253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [10277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), - [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), - [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), - [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [10357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [10511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), - [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [10895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7222), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [10934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6884), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [10971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7442), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [11028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [11090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(869), - [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [11151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [11189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [11202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [11218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(207), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [8556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(215), + [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(217), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(223), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5343), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5390), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5555), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6577), + [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5619), + [8723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(8072), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5592), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), + [8916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5418), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [9106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), + [9109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [9436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5960), + [9439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5960), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5930), + [9451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5973), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [9489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), + [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [9680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [9697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [9703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [9747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(114), + [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6680), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [9781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6193), + [9784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6183), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [9821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [9991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), + [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [10003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [10005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [10055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), + [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [10083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(111), + [10086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7090), + [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [10141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [10155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [10205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [10335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [10385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [10445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [10533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [10557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [10723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [10835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), + [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [10854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [10860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [10872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6832), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [10949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [10961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [10977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [11001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), + [11004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [11050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [11106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [11322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [11290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [11296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [11330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [11338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [11358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [11408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), - [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [11417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [11437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), - [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [11457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [11485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [11493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [11557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), - [11561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7577), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [11613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), - [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), - [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), - [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), - [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [11629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [11653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [11675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [11695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7485), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), - [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [11814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [11834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), - [11880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [11946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [11958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [11960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [12066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [12194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [12236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [12248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [12326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [12330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [12334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [12412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [12422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [11356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [11370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [11384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [11392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [11396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [11400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [11434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7133), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [11455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [11478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(879), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [11605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7634), + [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [11630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), + [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [11643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [11655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [11665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [11675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7681), + [11678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [11712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), + [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [11722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), + [11724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), + [11726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), + [11728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [11734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [11738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [11754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [11768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [11774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [11802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11868] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [11906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [11942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [12034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [12056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [12064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [12070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [12112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [12134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [12180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [12188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [12242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [12244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [12276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [12290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [12410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [12444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [12454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [12458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [12472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [12476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [12484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/expr/range.nu b/test/corpus/expr/range.nu index 6504cc7..df90902 100644 --- a/test/corpus/expr/range.nu +++ b/test/corpus/expr/range.nu @@ -733,8 +733,7 @@ range ($n + 1)..($n + 3)..=([$a $b] | math max) (identifier)))))) (pipe_element (command - (cmd_identifier) - (val_string)))))))))) + (cmd_identifier)))))))))) ===== range-018-cmd-subexpr-without-end @@ -825,5 +824,4 @@ range ..($n + 3)..=([$a $b] | math max) (identifier)))))) (pipe_element (command - (cmd_identifier) - (val_string)))))))))) + (cmd_identifier)))))))))) diff --git a/test/corpus/expr/record.nu b/test/corpus/expr/record.nu index 47b08a7..b3742fe 100644 --- a/test/corpus/expr/record.nu +++ b/test/corpus/expr/record.nu @@ -136,7 +136,6 @@ record-006-subexpression-key (pipe_element (command (cmd_identifier) - (val_string) (val_string))))) (val_string))))))) diff --git a/test/corpus/expr/spread-operator.nu b/test/corpus/expr/spread-operator.nu index 2b1f102..ee8b5d8 100644 --- a/test/corpus/expr/spread-operator.nu +++ b/test/corpus/expr/spread-operator.nu @@ -79,8 +79,7 @@ spread-002-record-literals (pipeline (pipe_element (command - head: (cmd_identifier) - arg_str: (val_string))))))))))) + head: (cmd_identifier))))))))))) ==== spread-003-command-arguments diff --git a/test/corpus/expr/subexpr.nu b/test/corpus/expr/subexpr.nu index 0a8b0e2..30736bd 100644 --- a/test/corpus/expr/subexpr.nu +++ b/test/corpus/expr/subexpr.nu @@ -92,7 +92,6 @@ subexpr-004-pipeline-multiline (command (cmd_identifier) (val_string) - (val_string) (val_string)))))))) ===== diff --git a/test/corpus/pipe/commands.nu b/test/corpus/pipe/commands.nu index 490c848..3fa77fa 100644 --- a/test/corpus/pipe/commands.nu +++ b/test/corpus/pipe/commands.nu @@ -376,8 +376,7 @@ print 192.168.0.1 (pipeline (pipe_element (command - (cmd_identifier) - (val_string)))) + (cmd_identifier)))) (pipeline (pipe_element (command diff --git a/test/corpus/pipe/pipe.nu b/test/corpus/pipe/pipe.nu index e721668..6c76d23 100644 --- a/test/corpus/pipe/pipe.nu +++ b/test/corpus/pipe/pipe.nu @@ -37,12 +37,10 @@ echo this (pipe_element (command (cmd_identifier) - (val_string) (val_string))) (pipe_element (command - (cmd_identifier) - (val_string))))) + (cmd_identifier))))) ===== pipe-003-crossing-too-much-lines @@ -67,12 +65,10 @@ echo this (pipe_element (command (cmd_identifier) - (val_string) (val_string))) (pipe_element (command - (cmd_identifier) - (val_string))) + (cmd_identifier))) (pipe_element (command (cmd_identifier) @@ -97,12 +93,10 @@ echo this (pipe_element (command (cmd_identifier) - (val_string) (val_string))) (pipe_element (command - (cmd_identifier) - (val_string))))) + (cmd_identifier))))) ===== pipe-005-unquoted-1-character @@ -119,7 +113,6 @@ pipe-005-unquoted-1-character (pipe_element (command (cmd_identifier) - (val_string) (val_string))))) ===== diff --git a/test/corpus/pipe/where.nu b/test/corpus/pipe/where.nu index fc68bbd..aa2ae3c 100644 --- a/test/corpus/pipe/where.nu +++ b/test/corpus/pipe/where.nu @@ -45,7 +45,6 @@ where-002-parenthesized (pipe_element (command (cmd_identifier) - (val_string) (val_string))))))))) ===== diff --git a/test/corpus/stmt/const.nu b/test/corpus/stmt/const.nu index 69d315a..1bc23c2 100644 --- a/test/corpus/stmt/const.nu +++ b/test/corpus/stmt/const.nu @@ -45,8 +45,7 @@ const x = 42 | math sin (val_number)) (pipe_element (command - (cmd_identifier) - (val_string)))))) + (cmd_identifier)))))) ===== const-004-exported diff --git a/test/corpus/stmt/let.nu b/test/corpus/stmt/let.nu index 6aa557c..ad4b890 100644 --- a/test/corpus/stmt/let.nu +++ b/test/corpus/stmt/let.nu @@ -45,8 +45,7 @@ let x = 42 | math sin (val_number)) (pipe_element (command - (cmd_identifier) - (val_string)))))) + (cmd_identifier)))))) ===== let-004-with-type diff --git a/test/corpus/stmt/mut.nu b/test/corpus/stmt/mut.nu index dfb0dfe..11e307f 100644 --- a/test/corpus/stmt/mut.nu +++ b/test/corpus/stmt/mut.nu @@ -45,5 +45,4 @@ mut x = 42 | math sin (val_number)) (pipe_element (command - (cmd_identifier) - (val_string)))))) + (cmd_identifier))))))